diff --git a/.eslintrc.js b/.eslintrc.js index cc55b4443c..aec82a5036 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -3,9 +3,9 @@ const path = require('path'); module.exports = { extends: [ '@edx/eslint-config', - 'plugin:import/typescript', ], - parser: '@babel/eslint-parser', + plugins: ['@typescript-eslint'], + parser: '@typescript-eslint/parser', parserOptions: { requireConfigFile: true, babelOptions: { @@ -28,9 +28,11 @@ module.exports = { { devDependencies: [ '**/*.stories.jsx', - 'src/setupTest.js', + 'src/setupTest.ts', '**/*.test.jsx', + '**/*.test.tsx', '**/*.test.js', + '**/*.test.ts', 'config/*.js', '*.config.ts', '*.config.*.js', @@ -62,13 +64,4 @@ module.exports = { globals: { newrelic: false, }, - overrides: [ - { - files: ['**/*.ts', '**/*.tsx'], - extends: 'airbnb-typescript', - parserOptions: { - project: './tsconfig.json', - }, - }, - ], }; diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000000..9186f7421b --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,7 @@ +version: 2 +updates: + # Adding new check for github-actions + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" diff --git a/.github/workflows/analyze-dependents.yml b/.github/workflows/analyze-dependents.yml index e3de0115cf..43024cc304 100644 --- a/.github/workflows/analyze-dependents.yml +++ b/.github/workflows/analyze-dependents.yml @@ -2,183 +2,178 @@ name: Analyze Dependents on: workflow_dispatch: - schedule: - - cron: "0 14 * * *" # daily at 10am EST (Github Actions works with UTC) + schedule: + - cron: "0 14 * * *" # daily at 10am EST (Github Actions works with UTC) jobs: # clones known dependent Git repositories from Open edX checkout-dependents: runs-on: ubuntu-latest steps: - - name: Checkout edx/credentials-themes + - name: Checkout openedx/credentials-themes uses: actions/checkout@v3 with: - repository: edx/credentials-themes + repository: openedx/credentials-themes path: dependent-usage-analyzer/.projects/credentials-themes - - name: Checkout edx/credentials + - name: Checkout openedx/credentials uses: actions/checkout@v3 with: - repository: edx/credentials + repository: openedx/credentials path: dependent-usage-analyzer/.projects/credentials - - name: Checkout edx/edx-enterprise + - name: Checkout openedx/edx-enterprise uses: actions/checkout@v3 with: - repository: edx/edx-enterprise + repository: openedx/edx-enterprise path: dependent-usage-analyzer/.projects/edx-enterprise - - name: Checkout edx/edx-ora2 + - name: Checkout openedx/edx-ora2 uses: actions/checkout@v3 with: - repository: edx/edx-ora2 + repository: openedx/edx-ora2 path: dependent-usage-analyzer/.projects/edx-ora2 - - name: Checkout edx/edx-platform + - name: Checkout openedx/edx-platform uses: actions/checkout@v3 with: - repository: edx/edx-platform + repository: openedx/edx-platform path: dependent-usage-analyzer/.projects/edx-platform - - name: Checkout edx/frontend-app-account + - name: Checkout openedx/frontend-app-account uses: actions/checkout@v3 with: - repository: edx/frontend-app-account + repository: openedx/frontend-app-account path: dependent-usage-analyzer/.projects/frontend-app-account - - name: Checkout edx/frontend-app-admin-portal + - name: Checkout openedx/frontend-app-admin-portal uses: actions/checkout@v3 with: - repository: edx/frontend-app-admin-portal + repository: openedx/frontend-app-admin-portal path: dependent-usage-analyzer/.projects/frontend-app-admin-portal - - name: Checkout edx/frontend-app-authn + - name: Checkout openedx/frontend-app-authn uses: actions/checkout@v3 with: - repository: edx/frontend-app-authn + repository: openedx/frontend-app-authn path: dependent-usage-analyzer/.projects/frontend-app-authn - - name: Checkout edx/frontend-app-communications + - name: Checkout openedx/frontend-app-communications uses: actions/checkout@v3 with: - repository: edx/frontend-app-communications + repository: openedx/frontend-app-communications path: dependent-usage-analyzer/.projects/frontend-app-communications - - name: Checkout edx/frontend-app-course-authoring + - name: Checkout openedx/frontend-app-course-authoring uses: actions/checkout@v3 with: - repository: edx/frontend-app-course-authoring + repository: openedx/frontend-app-course-authoring path: dependent-usage-analyzer/.projects/frontend-app-course-authoring - - name: Checkout edx/frontend-app-discussions + - name: Checkout openedx/frontend-app-discussions uses: actions/checkout@v3 with: - repository: edx/frontend-app-discussions + repository: openedx/frontend-app-discussions path: dependent-usage-analyzer/.projects/frontend-app-discussions - - name: Checkout edx/frontend-app-ecommerce + - name: Checkout openedx/frontend-app-ecommerce uses: actions/checkout@v3 with: - repository: edx/frontend-app-ecommerce + repository: openedx/frontend-app-ecommerce path: dependent-usage-analyzer/.projects/frontend-app-ecommerce - - name: Checkout edx/frontend-app-enterprise-public-catalog + - name: Checkout openedx/frontend-app-enterprise-public-catalog uses: actions/checkout@v3 with: - repository: edx/frontend-app-enterprise-public-catalog + repository: openedx/frontend-app-enterprise-public-catalog path: dependent-usage-analyzer/.projects/frontend-app-enterprise-public-catalog - - name: Checkout edx/frontend-app-gradebook + - name: Checkout openedx/frontend-app-gradebook uses: actions/checkout@v3 with: - repository: edx/frontend-app-gradebook + repository: openedx/frontend-app-gradebook path: dependent-usage-analyzer/.projects/frontend-app-gradebook - - name: Checkout edx/frontend-app-learner-portal-enterprise + - name: Checkout openedx/frontend-app-learner-portal-enterprise uses: actions/checkout@v3 with: - repository: edx/frontend-app-learner-portal-enterprise + repository: openedx/frontend-app-learner-portal-enterprise path: dependent-usage-analyzer/.projects/frontend-app-learner-portal-enterprise - - name: Checkout edx/frontend-app-learner-portal-programs + - name: Checkout openedx/frontend-app-learner-portal-programs uses: actions/checkout@v3 with: - repository: edx/frontend-app-learner-portal-programs + repository: openedx/frontend-app-learner-portal-programs path: dependent-usage-analyzer/.projects/frontend-app-learner-portal-programs - - name: Checkout edx/frontend-app-learner-record + - name: Checkout openedx/frontend-app-learner-record uses: actions/checkout@v3 with: - repository: edx/frontend-app-learner-record + repository: openedx/frontend-app-learner-record path: dependent-usage-analyzer/.projects/frontend-app-learner-record - - name: Checkout edx/frontend-app-learning + - name: Checkout openedx/frontend-app-learning uses: actions/checkout@v3 with: - repository: edx/frontend-app-learning + repository: openedx/frontend-app-learning path: dependent-usage-analyzer/.projects/frontend-app-learning - - name: Checkout edx/frontend-app-library-authoring + - name: Checkout openedx/frontend-app-library-authoring uses: actions/checkout@v3 with: - repository: edx/frontend-app-library-authoring + repository: openedx/frontend-app-library-authoring path: dependent-usage-analyzer/.projects/frontend-app-library-authoring - - name: Checkout edx/frontend-app-ora-grading + - name: Checkout openedx/frontend-app-ora-grading uses: actions/checkout@v3 with: - repository: edx/frontend-app-ora-grading + repository: openedx/frontend-app-ora-grading path: dependent-usage-analyzer/.projects/frontend-app-ora-grading - - name: Checkout edx/frontend-app-payment + - name: Checkout openedx/frontend-app-payment uses: actions/checkout@v3 with: - repository: edx/frontend-app-payment + repository: openedx/frontend-app-payment path: dependent-usage-analyzer/.projects/frontend-app-payment - - name: Checkout edx/frontend-app-profile + - name: Checkout openedx/frontend-app-profile uses: actions/checkout@v3 with: - repository: edx/frontend-app-profile + repository: openedx/frontend-app-profile path: dependent-usage-analyzer/.projects/frontend-app-profile - - name: Checkout edx/frontend-app-program-console + - name: Checkout openedx/frontend-app-program-console uses: actions/checkout@v3 with: - repository: edx/frontend-app-program-console + repository: openedx/frontend-app-program-console path: dependent-usage-analyzer/.projects/frontend-app-program-console - - name: Checkout edx/frontend-app-publisher + - name: Checkout openedx/frontend-app-publisher uses: actions/checkout@v3 with: - repository: edx/frontend-app-publisher + repository: openedx/frontend-app-publisher path: dependent-usage-analyzer/.projects/frontend-app-publisher - - name: Checkout edx/frontend-app-support-tools + - name: Checkout openedx/frontend-app-support-tools uses: actions/checkout@v3 with: - repository: edx/frontend-app-support-tools + repository: openedx/frontend-app-support-tools path: dependent-usage-analyzer/.projects/frontend-app-support-tools - - name: Checkout edx/frontend-component-cookie-policy-banner + - name: Checkout openedx/frontend-component-cookie-policy-banner uses: actions/checkout@v3 with: - repository: edx/frontend-component-cookie-policy-banner + repository: openedx/frontend-component-cookie-policy-banner path: dependent-usage-analyzer/.projects/frontend-component-cookie-policy-banner - name: Checkout edx/frontend-component-header-edx uses: actions/checkout@v3 with: repository: edx/frontend-component-header-edx path: dependent-usage-analyzer/.projects/frontend-component-header-edx - - name: Checkout edx/frontend-component-header + - name: Checkout openedx/frontend-component-header uses: actions/checkout@v3 with: - repository: edx/frontend-component-header + repository: openedx/frontend-component-header path: dependent-usage-analyzer/.projects/frontend-component-header - - name: Checkout edx/frontend-enterprise + - name: Checkout openedx/frontend-enterprise uses: actions/checkout@v3 with: - repository: edx/frontend-enterprise + repository: openedx/frontend-enterprise path: dependent-usage-analyzer/.projects/frontend-enterprise - - name: Checkout edx/frontend-learner-portal-base + - name: Checkout openedx/frontend-learner-portal-base uses: actions/checkout@v3 with: - repository: edx/frontend-learner-portal-base + repository: openedx/frontend-learner-portal-base path: dependent-usage-analyzer/.projects/frontend-learner-portal-base - - name: Checkout edx/frontend-lib-content-components + - name: Checkout openedx/frontend-lib-special-exams uses: actions/checkout@v3 with: - repository: edx/frontend-lib-content-components - path: dependent-usage-analyzer/.projects/frontend-lib-content-components - - name: Checkout edx/frontend-lib-special-exams - uses: actions/checkout@v3 - with: - repository: edx/frontend-lib-special-exams + repository: openedx/frontend-lib-special-exams path: dependent-usage-analyzer/.projects/frontend-lib-special-exams - - name: Checkout edx/frontend-platform + - name: Checkout openedx/frontend-platform uses: actions/checkout@v3 with: - repository: edx/frontend-platform + repository: openedx/frontend-platform path: dependent-usage-analyzer/.projects/frontend-platform - - name: Checkout edx/frontend-template-application + - name: Checkout openedx/frontend-template-application uses: actions/checkout@v3 with: - repository: edx/frontend-template-application + repository: openedx/frontend-template-application path: dependent-usage-analyzer/.projects/frontend-template-application - name: Checkout edx/prospectus uses: actions/checkout@v3 @@ -186,20 +181,20 @@ jobs: repository: edx/prospectus path: dependent-usage-analyzer/.projects/prospectus token: ${{ secrets.SEMANTIC_RELEASE_GITHUB_TOKEN }} - - name: Checkout edx/studio-frontend + - name: Checkout openedx/studio-frontend uses: actions/checkout@v3 with: - repository: edx/studio-frontend + repository: openedx/studio-frontend path: dependent-usage-analyzer/.projects/studio-frontend - - name: Checkout edx/frontend-app-communications + - name: Checkout openedx/frontend-app-communications uses: actions/checkout@v3 with: - repository: edx/frontend-app-communications + repository: openedx/frontend-app-communications path: dependent-usage-analyzer/.projects/frontend-app-communications - - name: Checkout edx/frontend-app-learner-dashboard + - name: Checkout openedx/frontend-app-learner-dashboard uses: actions/checkout@v3 with: - repository: edx/frontend-app-learner-dashboard + repository: openedx/frontend-app-learner-dashboard path: dependent-usage-analyzer/.projects/frontend-app-learner-dashboard - name: Verify checkouts working-directory: dependent-usage-analyzer @@ -209,7 +204,7 @@ jobs: with: args: zip -qq -r dependent-usage-analyzer/dependent-projects.zip dependent-usage-analyzer/.projects - name: Upload dependent projects checkouts - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: dependent-project-checkouts path: dependent-usage-analyzer/dependent-projects.zip @@ -230,7 +225,7 @@ jobs: run: npm ci working-directory: dependent-usage-analyzer - name: Download dependent project checkouts - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: name: dependent-project-checkouts path: dependent-usage-analyzer @@ -247,7 +242,7 @@ jobs: run: npm run analyze .projects -- --out "${GITHUB_WORKSPACE}/dependent-usage.json" working-directory: dependent-usage-analyzer - name: Upload analysis output - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: dependent-usage-json path: dependent-usage.json @@ -267,7 +262,7 @@ jobs: with: node-version: ${{ env.NODE_VER }} - name: Download analysis output - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: name: dependent-usage-json - name: Create pull request for dependent project usages diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c03fc42a0f..01fdb88ca3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,12 +13,10 @@ jobs: uses: actions/checkout@v3 with: fetch-depth: 0 - - name: Setup Nodejs Env - run: echo "NODE_VER=`cat .nvmrc`" >> $GITHUB_ENV - name: Setup Nodejs - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: - node-version: ${{env.NODE_VER }} + node-version-file: '.nvmrc' - name: Install dependencies run: npm ci - name: Check Types diff --git a/.nvmrc b/.nvmrc index 3c032078a4..209e3ef4b6 100644 --- a/.nvmrc +++ b/.nvmrc @@ -1 +1 @@ -18 +20 diff --git a/catalog-info.yml b/catalog-info.yaml similarity index 100% rename from catalog-info.yml rename to catalog-info.yaml diff --git a/dependent-usage-analyzer/checkout-dependents.sh b/dependent-usage-analyzer/checkout-dependents.sh index 09019b6252..fb80335c7a 100644 --- a/dependent-usage-analyzer/checkout-dependents.sh +++ b/dependent-usage-analyzer/checkout-dependents.sh @@ -32,7 +32,6 @@ mkdir .projects git clone git@github.com:openedx/frontend-component-header.git --depth 1 git clone git@github.com:openedx/frontend-enterprise.git --depth 1 git clone git@github.com:openedx/frontend-learner-portal-base.git --depth 1 - git clone git@github.com:edx/frontend-lib-content-components.git --depth 1 git clone git@github.com:edx/frontend-lib-special-exams.git --depth 1 git clone git@github.com:openedx/frontend-platform.git --depth 1 git clone git@github.com:openedx/frontend-template-application.git --depth 1 diff --git a/dependent-usage.json b/dependent-usage.json index f49741edb3..b36e635b5c 100644 --- a/dependent-usage.json +++ b/dependent-usage.json @@ -1,6 +1,118 @@ { - "lastModified": 1703772478478, + "lastModified": 1731507359815, "projectUsages": [ + { + "version": "22.10.0", + "name": "edx-credentials", + "repository": { + "type": "git", + "url": "git://github.com/openedx/credentials" + }, + "folderName": "credentials", + "usages": {} + }, + { + "version": "21.13.1", + "name": "edx-enterprise", + "repository": { + "type": "git", + "url": "git://github.com/openedx/edx-enterprise" + }, + "folderName": "edx-enterprise", + "usages": {} + }, + { + "version": "21.13.1", + "name": "edx-ora2", + "repository": "https://github.com/openedx/edx-ora2.git", + "folderName": "edx-ora2", + "usages": { + "Alert": [ + { + "filePath": "openassessment/xblock/static/js/src/lms/components/WaitingStepContent.jsx", + "line": 45, + "column": 6, + "index": 1304 + }, + { + "filePath": "openassessment/xblock/static/js/src/lms/containers/WaitingStepDetailsContainer.jsx", + "line": 107, + "column": 12, + "index": 3091 + } + ], + "Button": [ + { + "filePath": "openassessment/xblock/static/js/src/lms/components/WaitingStepList.jsx", + "line": 20, + "column": 4, + "index": 498 + }, + { + "filePath": "openassessment/xblock/static/js/src/lms/components/WaitingStepList.jsx", + "line": 41, + "column": 16, + "index": 1186 + } + ], + "DataTable": [ + { + "filePath": "openassessment/xblock/static/js/src/lms/components/WaitingStepList.jsx", + "line": 28, + "column": 4, + "index": 680 + } + ], + "DataTable.TableControlBar": [ + { + "filePath": "openassessment/xblock/static/js/src/lms/components/WaitingStepList.jsx", + "line": 82, + "column": 6, + "index": 2237 + } + ], + "DataTable.Table": [ + { + "filePath": "openassessment/xblock/static/js/src/lms/components/WaitingStepList.jsx", + "line": 83, + "column": 6, + "index": 2273 + } + ], + "DataTable.TableFooter": [ + { + "filePath": "openassessment/xblock/static/js/src/lms/components/WaitingStepList.jsx", + "line": 84, + "column": 6, + "index": 2299 + } + ], + "Container": [ + { + "filePath": "openassessment/xblock/static/js/src/lms/containers/WaitingStepDetailsContainer.jsx", + "line": 88, + "column": 12, + "index": 2405 + } + ], + "Row": [ + { + "filePath": "openassessment/xblock/static/js/src/lms/containers/WaitingStepDetailsContainer.jsx", + "line": 89, + "column": 14, + "index": 2448 + } + ], + "Spinner": [ + { + "filePath": "openassessment/xblock/static/js/src/lms/containers/WaitingStepDetailsContainer.jsx", + "line": 90, + "column": 16, + "index": 2508 + } + ] + } + }, { "version": "2.6.4", "name": "edx", @@ -560,7 +672,7 @@ } }, { - "version": "20.46.3", + "version": "22.9.0", "name": "@edx/frontend-app-account", "repository": { "type": "git", @@ -571,335 +683,335 @@ "Alert": [ { "filePath": "src/account-settings/AccountSettingsPage.jsx", - "line": 206, + "line": 219, "column": 8, - "index": 7413 + "index": 7966 }, { "filePath": "src/account-settings/AccountSettingsPage.jsx", - "line": 228, + "line": 241, "column": 8, - "index": 8127 + "index": 8680 }, { "filePath": "src/account-settings/AccountSettingsPage.jsx", - "line": 321, + "line": 324, "column": 4, - "index": 11457 + "index": 11542 }, { "filePath": "src/account-settings/name-change/NameChange.jsx", "line": 106, "column": 8, - "index": 3008 + "index": 3012 }, { "filePath": "src/account-settings/OneTimeDismissibleAlert.jsx", "line": 15, "column": 4, - "index": 368 + "index": 372 }, { "filePath": "src/id-verification/ImageFileUpload.jsx", "line": 45, "column": 6, - "index": 1333 + "index": 1337 }, { "filePath": "src/id-verification/panels/ReviewRequirementsPanel.jsx", "line": 34, "column": 8, - "index": 1120 + "index": 1124 }, { "filePath": "src/id-verification/panels/SummaryPanel.jsx", "line": 151, "column": 8, - "index": 5212 + "index": 5216 } ], "Hyperlink": [ { "filePath": "src/account-settings/AccountSettingsPage.jsx", - "line": 236, + "line": 249, "column": 16, - "index": 8606 + "index": 9159 }, { "filePath": "src/account-settings/BetaLanguageBanner.jsx", "line": 77, "column": 12, - "index": 2869 + "index": 2873 }, { "filePath": "src/account-settings/delete-account/BeforeProceedingBanner.jsx", "line": 29, "column": 12, - "index": 1179 + "index": 1183 }, { "filePath": "src/account-settings/delete-account/DeleteAccount.jsx", "line": 102, "column": 10, - "index": 3093 + "index": 3097 }, { "filePath": "src/account-settings/delete-account/PrintingInstructions.jsx", "line": 10, "column": 4, - "index": 314 - }, - { - "filePath": "src/account-settings/demographics/DemographicsSection.jsx", - "line": 170, - "column": 10, - "index": 6766 + "index": 318 }, { "filePath": "src/account-settings/reset-password/ConfirmationAlert.jsx", "line": 15, "column": 4, - "index": 498 + "index": 502 }, { "filePath": "src/account-settings/third-party-auth/ThirdPartyAuth.jsx", "line": 25, "column": 8, - "index": 832 + "index": 836 }, { "filePath": "src/id-verification/panels/ReviewRequirementsPanel.jsx", "line": 43, "column": 16, - "index": 1819 + "index": 1823 }, { "filePath": "src/id-verification/panels/SummaryPanel.jsx", "line": 53, "column": 14, - "index": 2073 + "index": 2077 }, { "filePath": "src/notification-preferences/NotificationPreferences.jsx", - "line": 66, + "line": 67, "column": 8, - "index": 2338 + "index": 2600 } ], "CheckCircle": [ { "filePath": "src/account-settings/AccountSettingsPage.jsx", - "line": 282, + "line": 295, "column": 14, - "index": 9979 + "index": 10532 }, { "filePath": "src/account-settings/AccountSettingsPage.jsx", - "line": 382, + "line": 385, "column": 27, - "index": 13335 + "index": 13420 }, { "filePath": "src/account-settings/AccountSettingsPage.jsx", - "line": 512, + "line": 507, "column": 20, - "index": 17685 + "index": 17576 } ], "Error": [ { "filePath": "src/account-settings/AccountSettingsPage.jsx", - "line": 297, + "line": 310, "column": 14, - "index": 10545 + "index": 11098 } ], - "Button": [ + "WarningFilled": [ { "filePath": "src/account-settings/AccountSettingsPage.jsx", - "line": 306, + "line": 326, + "column": 12, + "index": 11585 + }, + { + "filePath": "src/account-settings/AccountSettingsPage.jsx", + "line": 387, + "column": 27, + "index": 13564 + } + ], + "Alert.Heading": [ + { + "filePath": "src/account-settings/AccountSettingsPage.jsx", + "line": 328, + "column": 6, + "index": 11612 + }, + { + "filePath": "src/account-settings/OneTimeDismissibleAlert.jsx", + "line": 22, + "column": 6, + "index": 510 + } + ], + "Icon": [ + { + "filePath": "src/account-settings/AccountSettingsPage.jsx", + "line": 385, + "column": 16, + "index": 13409 + }, + { + "filePath": "src/account-settings/AccountSettingsPage.jsx", + "line": 387, + "column": 16, + "index": 13553 + }, + { + "filePath": "src/account-settings/JumpNav.jsx", + "line": 77, "column": 16, - "index": 10974 + "index": 2794 + }, + { + "filePath": "src/notification-preferences/NotificationCourses.jsx", + "line": 56, + "column": 16, + "index": 1987 + }, + { + "filePath": "src/notification-preferences/NotificationPreferences.jsx", + "line": 79, + "column": 12, + "index": 3099 }, + { + "filePath": "src/notification-preferences/NotificationTypes.jsx", + "line": 46, + "column": 16, + "index": 1688 + } + ], + "Button": [ { "filePath": "src/account-settings/BetaLanguageBanner.jsx", "line": 71, "column": 12, - "index": 2562 + "index": 2566 }, { "filePath": "src/account-settings/delete-account/ConfirmationModal.jsx", "line": 83, "column": 12, - "index": 2801 + "index": 2805 }, { "filePath": "src/account-settings/delete-account/ConfirmationModal.jsx", "line": 84, "column": 12, - "index": 2871 + "index": 2875 }, { "filePath": "src/account-settings/delete-account/DeleteAccount.jsx", "line": 107, "column": 10, - "index": 3359 + "index": 3353 }, { "filePath": "src/account-settings/DOBForm.jsx", "line": 75, "column": 6, - "index": 2126 + "index": 2130 }, { "filePath": "src/account-settings/EditableField.jsx", "line": 66, "column": 13, - "index": 1471 + "index": 1475 }, { "filePath": "src/account-settings/EditableField.jsx", "line": 138, "column": 16, - "index": 4049 + "index": 4053 }, { "filePath": "src/account-settings/EditableField.jsx", "line": 154, "column": 16, - "index": 4654 + "index": 4658 }, { "filePath": "src/account-settings/EditableSelectField.jsx", "line": 66, "column": 13, - "index": 1453 + "index": 1457 }, { "filePath": "src/account-settings/EditableSelectField.jsx", - "line": 153, + "line": 172, "column": 16, - "index": 4590 + "index": 5102 }, { "filePath": "src/account-settings/EditableSelectField.jsx", - "line": 169, + "line": 188, "column": 16, - "index": 5195 + "index": 5707 }, { "filePath": "src/account-settings/EmailField.jsx", "line": 91, "column": 13, - "index": 2274 + "index": 2278 }, { "filePath": "src/account-settings/EmailField.jsx", "line": 145, "column": 14, - "index": 4358 + "index": 4362 }, { "filePath": "src/account-settings/EmailField.jsx", "line": 159, "column": 16, - "index": 4834 + "index": 4838 }, { "filePath": "src/account-settings/name-change/NameChange.jsx", "line": 137, "column": 8, - "index": 3918 + "index": 3922 }, { "filePath": "src/id-verification/CollapsibleImageHelp.jsx", "line": 38, "column": 6, - "index": 1347 + "index": 1351 }, { "filePath": "src/id-verification/IdVerificationPage.jsx", "line": 74, "column": 10, - "index": 3245 + "index": 3249 }, { "filePath": "src/id-verification/panels/SummaryPanel.jsx", "line": 92, "column": 6, - "index": 3253 - }, - { - "filePath": "src/notification-preferences/NotificationCourses.jsx", - "line": 74, - "column": 8, - "index": 2421 - } - ], - "WarningFilled": [ - { - "filePath": "src/account-settings/AccountSettingsPage.jsx", - "line": 323, - "column": 12, - "index": 11500 - }, - { - "filePath": "src/account-settings/AccountSettingsPage.jsx", - "line": 384, - "column": 27, - "index": 13479 - } - ], - "Alert.Heading": [ - { - "filePath": "src/account-settings/AccountSettingsPage.jsx", - "line": 325, - "column": 6, - "index": 11527 + "index": 3257 }, { - "filePath": "src/account-settings/OneTimeDismissibleAlert.jsx", - "line": 22, + "filePath": "src/notification-preferences/EmailCadences.jsx", + "line": 27, "column": 6, - "index": 506 - } - ], - "Icon": [ - { - "filePath": "src/account-settings/AccountSettingsPage.jsx", - "line": 382, - "column": 16, - "index": 13324 - }, - { - "filePath": "src/account-settings/AccountSettingsPage.jsx", - "line": 384, - "column": 16, - "index": 13468 + "index": 828 }, { - "filePath": "src/account-settings/JumpNav.jsx", - "line": 88, - "column": 16, - "index": 3207 + "filePath": "src/notification-preferences/EmailCadences.jsx", + "line": 50, + "column": 18, + "index": 1619 }, { "filePath": "src/notification-preferences/NotificationCourses.jsx", - "line": 57, - "column": 16, - "index": 1983 - }, - { - "filePath": "src/notification-preferences/NotificationPreferenceRow.jsx", - "line": 60, - "column": 14, - "index": 2144 - }, - { - "filePath": "src/notification-preferences/NotificationPreferences.jsx", - "line": 78, - "column": 12, - "index": 2837 + "line": 73, + "column": 8, + "index": 2425 } ], "Form.Checkbox": [ @@ -907,13 +1019,7 @@ "filePath": "src/account-settings/certificate-preference/CertificatePreference.jsx", "line": 95, "column": 6, - "index": 2296 - }, - { - "filePath": "src/account-settings/demographics/Checkboxes.jsx", - "line": 43, - "column": 8, - "index": 1245 + "index": 2300 } ], "ModalDialog": [ @@ -921,25 +1027,25 @@ "filePath": "src/account-settings/certificate-preference/CertificatePreference.jsx", "line": 99, "column": 6, - "index": 2512 + "index": 2516 }, { "filePath": "src/account-settings/DOBForm.jsx", "line": 78, "column": 6, - "index": 2271 + "index": 2275 }, { "filePath": "src/account-settings/name-change/NameChange.jsx", "line": 156, "column": 4, - "index": 4369 + "index": 4373 }, { "filePath": "src/id-verification/IdVerificationPage.jsx", "line": 79, "column": 6, - "index": 3409 + "index": 3413 } ], "Form": [ @@ -947,19 +1053,19 @@ "filePath": "src/account-settings/certificate-preference/CertificatePreference.jsx", "line": 107, "column": 8, - "index": 2771 + "index": 2775 }, { "filePath": "src/account-settings/name-change/NameChange.jsx", "line": 163, "column": 6, - "index": 4493 + "index": 4497 }, { "filePath": "src/id-verification/panels/GetNameIdPanel.jsx", "line": 53, "column": 6, - "index": 1614 + "index": 1618 } ], "ModalDialog.Header": [ @@ -967,25 +1073,25 @@ "filePath": "src/account-settings/certificate-preference/CertificatePreference.jsx", "line": 108, "column": 10, - "index": 2812 + "index": 2816 }, { "filePath": "src/account-settings/DOBForm.jsx", "line": 87, "column": 10, - "index": 2539 + "index": 2543 }, { "filePath": "src/account-settings/name-change/NameChange.jsx", "line": 164, "column": 8, - "index": 4532 + "index": 4536 }, { "filePath": "src/id-verification/IdVerificationPage.jsx", "line": 86, "column": 8, - "index": 3587 + "index": 3591 } ], "ModalDialog.Title": [ @@ -993,25 +1099,25 @@ "filePath": "src/account-settings/certificate-preference/CertificatePreference.jsx", "line": 109, "column": 12, - "index": 2845 + "index": 2849 }, { "filePath": "src/account-settings/DOBForm.jsx", "line": 88, "column": 12, - "index": 2572 + "index": 2576 }, { "filePath": "src/account-settings/name-change/NameChange.jsx", "line": 165, "column": 10, - "index": 4563 + "index": 4567 }, { "filePath": "src/id-verification/IdVerificationPage.jsx", "line": 87, "column": 10, - "index": 3618 + "index": 3622 } ], "ModalDialog.Body": [ @@ -1019,25 +1125,25 @@ "filePath": "src/account-settings/certificate-preference/CertificatePreference.jsx", "line": 114, "column": 10, - "index": 3041 + "index": 3045 }, { "filePath": "src/account-settings/DOBForm.jsx", "line": 93, "column": 10, - "index": 2754 + "index": 2758 }, { "filePath": "src/account-settings/name-change/NameChange.jsx", "line": 170, "column": 8, - "index": 4681 + "index": 4685 }, { "filePath": "src/id-verification/IdVerificationPage.jsx", "line": 91, "column": 8, - "index": 3812 + "index": 3816 } ], "Form.Group": [ @@ -1045,55 +1151,55 @@ "filePath": "src/account-settings/certificate-preference/CertificatePreference.jsx", "line": 115, "column": 12, - "index": 3100 + "index": 3104 }, { "filePath": "src/account-settings/DOBForm.jsx", "line": 95, "column": 12, - "index": 2938 + "index": 2942 }, { "filePath": "src/account-settings/DOBForm.jsx", "line": 110, "column": 12, - "index": 3570 + "index": 3574 }, { "filePath": "src/account-settings/EditableField.jsx", "line": 100, "column": 14, - "index": 2297 + "index": 2301 }, { "filePath": "src/account-settings/EditableSelectField.jsx", - "line": 112, + "line": 131, "column": 14, - "index": 2739 + "index": 3251 }, { "filePath": "src/account-settings/EmailField.jsx", "line": 109, "column": 12, - "index": 2751 + "index": 2755 }, { "filePath": "src/account-settings/name-change/NameChange.jsx", "line": 118, "column": 6, - "index": 3318 + "index": 3322 }, { "filePath": "src/id-verification/Camera.jsx", "line": 285, "column": 8, - "index": 9026 + "index": 9030 }, { "filePath": "src/id-verification/panels/GetNameIdPanel.jsx", "line": 54, "column": 8, - "index": 1653 + "index": 1657 } ], "Form.Label": [ @@ -1101,49 +1207,49 @@ "filePath": "src/account-settings/certificate-preference/CertificatePreference.jsx", "line": 116, "column": 14, - "index": 3144 + "index": 3148 }, { "filePath": "src/account-settings/DOBForm.jsx", "line": 96, "column": 14, - "index": 2965 + "index": 2969 }, { "filePath": "src/account-settings/DOBForm.jsx", "line": 111, "column": 14, - "index": 3597 + "index": 3601 }, { "filePath": "src/account-settings/EditableField.jsx", "line": 104, "column": 16, - "index": 2414 + "index": 2418 }, { "filePath": "src/account-settings/EditableSelectField.jsx", - "line": 116, + "line": 135, "column": 16, - "index": 2856 + "index": 3368 }, { "filePath": "src/account-settings/EmailField.jsx", "line": 113, "column": 14, - "index": 2860 + "index": 2864 }, { "filePath": "src/account-settings/name-change/NameChange.jsx", "line": 119, "column": 8, - "index": 3391 + "index": 3395 }, { "filePath": "src/id-verification/panels/GetNameIdPanel.jsx", "line": 55, "column": 10, - "index": 1676 + "index": 1680 } ], "Form.RadioSet": [ @@ -1151,7 +1257,7 @@ "filePath": "src/account-settings/certificate-preference/CertificatePreference.jsx", "line": 119, "column": 14, - "index": 3302 + "index": 3306 } ], "Form.Radio": [ @@ -1159,13 +1265,13 @@ "filePath": "src/account-settings/certificate-preference/CertificatePreference.jsx", "line": 124, "column": 16, - "index": 3502 + "index": 3506 }, { "filePath": "src/account-settings/certificate-preference/CertificatePreference.jsx", "line": 128, "column": 16, - "index": 3732 + "index": 3736 } ], "ModalDialog.Footer": [ @@ -1173,25 +1279,25 @@ "filePath": "src/account-settings/certificate-preference/CertificatePreference.jsx", "line": 136, "column": 10, - "index": 4056 + "index": 4060 }, { "filePath": "src/account-settings/DOBForm.jsx", "line": 128, "column": 10, - "index": 4259 + "index": 4263 }, { "filePath": "src/account-settings/name-change/NameChange.jsx", "line": 174, "column": 8, - "index": 4795 + "index": 4799 }, { "filePath": "src/id-verification/IdVerificationPage.jsx", "line": 114, "column": 8, - "index": 4676 + "index": 4680 } ], "ActionRow": [ @@ -1199,31 +1305,31 @@ "filePath": "src/account-settings/certificate-preference/CertificatePreference.jsx", "line": 137, "column": 12, - "index": 4089 + "index": 4093 }, { "filePath": "src/account-settings/delete-account/ConfirmationModal.jsx", "line": 82, "column": 10, - "index": 2777 + "index": 2781 }, { "filePath": "src/account-settings/DOBForm.jsx", "line": 129, "column": 12, - "index": 4292 + "index": 4296 }, { "filePath": "src/account-settings/name-change/NameChange.jsx", "line": 175, "column": 10, - "index": 4826 + "index": 4830 }, { "filePath": "src/id-verification/IdVerificationPage.jsx", "line": 115, "column": 10, - "index": 4723 + "index": 4727 } ], "ModalDialog.CloseButton": [ @@ -1231,25 +1337,25 @@ "filePath": "src/account-settings/certificate-preference/CertificatePreference.jsx", "line": 138, "column": 14, - "index": 4115 + "index": 4119 }, { "filePath": "src/account-settings/DOBForm.jsx", "line": 130, "column": 14, - "index": 4318 + "index": 4322 }, { "filePath": "src/account-settings/name-change/NameChange.jsx", "line": 176, "column": 12, - "index": 4850 + "index": 4854 }, { "filePath": "src/id-verification/IdVerificationPage.jsx", "line": 116, "column": 12, - "index": 4747 + "index": 4751 } ], "StatefulButton": [ @@ -1257,49 +1363,49 @@ "filePath": "src/account-settings/certificate-preference/CertificatePreference.jsx", "line": 141, "column": 14, - "index": 4359 + "index": 4363 }, { "filePath": "src/account-settings/DOBForm.jsx", "line": 133, "column": 14, - "index": 4441 + "index": 4445 }, { "filePath": "src/account-settings/EditableField.jsx", "line": 119, "column": 16, - "index": 3035 + "index": 3039 }, { "filePath": "src/account-settings/EditableSelectField.jsx", - "line": 134, + "line": 153, "column": 16, - "index": 3576 + "index": 4088 }, { "filePath": "src/account-settings/EmailField.jsx", "line": 126, "column": 14, - "index": 3382 + "index": 3386 }, { "filePath": "src/account-settings/name-change/NameChange.jsx", "line": 144, "column": 6, - "index": 4122 + "index": 4126 }, { "filePath": "src/account-settings/reset-password/ResetPassword.jsx", "line": 24, "column": 8, - "index": 817 + "index": 821 }, { "filePath": "src/account-settings/third-party-auth/ThirdPartyAuth.jsx", "line": 62, "column": 8, - "index": 2166 + "index": 2170 } ], "AlertModal": [ @@ -1307,7 +1413,7 @@ "filePath": "src/account-settings/delete-account/ConfirmationModal.jsx", "line": 77, "column": 6, - "index": 2591 + "index": 2595 } ], "ValidationFormGroup": [ @@ -1315,7 +1421,7 @@ "filePath": "src/account-settings/delete-account/ConfirmationModal.jsx", "line": 110, "column": 10, - "index": 3711 + "index": 3715 } ], "Input": [ @@ -1323,7 +1429,7 @@ "filePath": "src/account-settings/delete-account/ConfirmationModal.jsx", "line": 118, "column": 12, - "index": 4083 + "index": 4087 } ], "ModalLayer": [ @@ -1331,7 +1437,7 @@ "filePath": "src/account-settings/delete-account/SuccessModal.jsx", "line": 12, "column": 4, - "index": 330 + "index": 334 } ], "ModalCloseButton": [ @@ -1339,77 +1445,71 @@ "filePath": "src/account-settings/delete-account/SuccessModal.jsx", "line": 23, "column": 10, - "index": 775 + "index": 779 } ], - "Form.Control": [ + "useToggle": [ { - "filePath": "src/account-settings/demographics/DemographicsSection.jsx", - "line": 202, - "column": 16, - "index": 8239 + "filePath": "src/account-settings/DOBForm.jsx", + "line": 24, + "column": 40, + "index": 773 }, { - "filePath": "src/account-settings/demographics/DemographicsSection.jsx", - "line": 279, - "column": 16, - "index": 12678 - }, + "filePath": "src/notification-preferences/EmailCadences.jsx", + "line": 21, + "column": 32, + "index": 659 + } + ], + "Form.Control": [ { "filePath": "src/account-settings/DOBForm.jsx", "line": 99, "column": 14, - "index": 3103 + "index": 3107 }, { "filePath": "src/account-settings/DOBForm.jsx", "line": 114, "column": 14, - "index": 3734 + "index": 3738 }, { "filePath": "src/account-settings/EditableField.jsx", "line": 105, "column": 16, - "index": 2509 + "index": 2513 }, { "filePath": "src/account-settings/EditableSelectField.jsx", - "line": 117, + "line": 136, "column": 16, - "index": 2951 + "index": 3463 }, { "filePath": "src/account-settings/EmailField.jsx", "line": 114, "column": 14, - "index": 2943 + "index": 2947 }, { "filePath": "src/account-settings/name-change/NameChange.jsx", "line": 122, "column": 8, - "index": 3521 + "index": 3525 }, { "filePath": "src/id-verification/panels/GetNameIdPanel.jsx", "line": 58, "column": 10, - "index": 1855 + "index": 1859 }, { "filePath": "src/id-verification/panels/SummaryPanel.jsx", "line": 208, "column": 10, - "index": 7336 - } - ], - "useToggle": [ - { - "filePath": "src/account-settings/DOBForm.jsx", - "line": 24, - "column": 40, - "index": 769 + "index": 7340 } ], "Form.Text": [ @@ -1417,49 +1517,61 @@ "filePath": "src/account-settings/EditableField.jsx", "line": 114, "column": 31, - "index": 2798 + "index": 2802 }, { "filePath": "src/account-settings/EditableSelectField.jsx", - "line": 129, + "line": 148, "column": 31, - "index": 3355 + "index": 3867 }, { "filePath": "src/account-settings/EmailField.jsx", "line": 122, "column": 29, - "index": 3187 + "index": 3191 }, { "filePath": "src/id-verification/Camera.jsx", "line": 296, "column": 10, - "index": 9751 + "index": 9755 } ], "useWindowSize": [ { "filePath": "src/account-settings/JumpNav.jsx", - "line": 19, + "line": 17, "column": 21, - "index": 736 + "index": 681 + }, + { + "filePath": "src/hooks.js", + "line": 73, + "column": 21, + "index": 2121 } ], "breakpoints": [ { "filePath": "src/account-settings/JumpNav.jsx", - "line": 19, + "line": 17, "column": 45, - "index": 760 + "index": 705 + }, + { + "filePath": "src/hooks.js", + "line": 74, + "column": 29, + "index": 2167 } ], "OpenInNew": [ { "filePath": "src/account-settings/JumpNav.jsx", - "line": 88, + "line": 77, "column": 72, - "index": 3263 + "index": 2850 } ], "Col": [ @@ -1467,7 +1579,7 @@ "filePath": "src/account-settings/name-change/NameChange.jsx", "line": 118, "column": 22, - "index": 3334 + "index": 3338 } ], "TransitionReplace": [ @@ -1475,7 +1587,7 @@ "filePath": "src/account-settings/SwitchContent.jsx", "line": 44, "column": 4, - "index": 1393 + "index": 1397 } ], "Form.Check": [ @@ -1483,7 +1595,7 @@ "filePath": "src/id-verification/Camera.jsx", "line": 286, "column": 10, - "index": 9122 + "index": 9126 } ], "Spinner": [ @@ -1491,25 +1603,25 @@ "filePath": "src/id-verification/Camera.jsx", "line": 295, "column": 53, - "index": 9636 + "index": 9640 }, { "filePath": "src/id-verification/panels/SummaryPanel.jsx", "line": 235, "column": 23, - "index": 8264 + "index": 8268 }, { "filePath": "src/notification-preferences/NotificationCourses.jsx", - "line": 65, + "line": 64, "column": 10, - "index": 2188 + "index": 2192 }, { "filePath": "src/notification-preferences/NotificationPreferences.jsx", - "line": 87, + "line": 110, "column": 12, - "index": 3154 + "index": 4318 } ], "Collapsible": [ @@ -1517,25 +1629,25 @@ "filePath": "src/id-verification/CameraHelp.jsx", "line": 11, "column": 4, - "index": 324 + "index": 328 }, { "filePath": "src/id-verification/CameraHelp.jsx", "line": 21, "column": 4, - "index": 695 + "index": 699 }, { "filePath": "src/id-verification/CameraHelpWithUpload.jsx", "line": 28, "column": 6, - "index": 983 + "index": 987 }, { "filePath": "src/id-verification/CollapsibleImageHelp.jsx", "line": 25, "column": 4, - "index": 800 + "index": 804 } ], "Alert.Link": [ @@ -1543,99 +1655,129 @@ "filePath": "src/id-verification/panels/SummaryPanel.jsx", "line": 133, "column": 12, - "index": 4747 + "index": 4751 + } + ], + "ModalPopup": [ + { + "filePath": "src/notification-preferences/EmailCadences.jsx", + "line": 38, + "column": 6, + "index": 1249 + } + ], + "Dropdown.Item": [ + { + "filePath": "src/notification-preferences/EmailCadences.jsx", + "line": 48, + "column": 12, + "index": 1558 } ], "Container": [ { "filePath": "src/notification-preferences/NotificationCourses.jsx", - "line": 41, + "line": 40, "column": 4, - "index": 1394 + "index": 1398 }, { "filePath": "src/notification-preferences/NotificationPreferences.jsx", - "line": 60, + "line": 61, "column": 4, - "index": 2030 + "index": 2262 } ], "ArrowForwardIos": [ { "filePath": "src/notification-preferences/NotificationCourses.jsx", - "line": 57, + "line": 56, "column": 27, - "index": 1994 + "index": 1998 } ], "Collapsible.Advanced": [ { "filePath": "src/notification-preferences/NotificationPreferenceApp.jsx", - "line": 44, + "line": 31, "column": 4, - "index": 1552 + "index": 1187 } ], "Collapsible.Trigger": [ { "filePath": "src/notification-preferences/NotificationPreferenceApp.jsx", - "line": 45, + "line": 36, "column": 6, - "index": 1646 + "index": 1346 } ], "Collapsible.Body": [ { "filePath": "src/notification-preferences/NotificationPreferenceApp.jsx", - "line": 61, + "line": 43, "column": 6, - "index": 2248 - } - ], - "OverlayTrigger": [ - { - "filePath": "src/notification-preferences/NotificationPreferenceRow.jsx", - "line": 49, - "column": 10, - "index": 1840 + "index": 1676 } ], - "Tooltip": [ + "NavItem": [ { - "filePath": "src/notification-preferences/NotificationPreferenceRow.jsx", - "line": 54, - "column": 14, - "index": 1983 - } - ], - "InfoOutline": [ + "filePath": "src/notification-preferences/NotificationPreferenceColumn.jsx", + "line": 78, + "column": 6, + "index": 2805 + }, { - "filePath": "src/notification-preferences/NotificationPreferenceRow.jsx", - "line": 60, - "column": 25, - "index": 2155 + "filePath": "src/notification-preferences/NotificationPreferences.jsx", + "line": 90, + "column": 16, + "index": 3637 } ], "ArrowBack": [ { "filePath": "src/notification-preferences/NotificationPreferences.jsx", - "line": 78, + "line": 79, "column": 52, - "index": 2877 + "index": 3139 } ], - "Form.Switch": [ + "OverlayTrigger": [ { - "filePath": "src/notification-preferences/ToggleSwitch.jsx", - "line": 11, - "column": 2, - "index": 176 - } - ] + "filePath": "src/notification-preferences/NotificationTypes.jsx", + "line": 35, + "column": 12, + "index": 1328 + } + ], + "Tooltip": [ + { + "filePath": "src/notification-preferences/NotificationTypes.jsx", + "line": 40, + "column": 16, + "index": 1498 + } + ], + "InfoOutline": [ + { + "filePath": "src/notification-preferences/NotificationTypes.jsx", + "line": 46, + "column": 27, + "index": 1699 + } + ], + "Form.Switch": [ + { + "filePath": "src/notification-preferences/ToggleSwitch.jsx", + "line": 15, + "column": 2, + "index": 201 + } + ] } }, { - "version": "20.46.3", + "version": "21.13.1", "name": "frontend-app-admin-portal", "repository": "https://github.com/openedx/frontend-app-admin-portal", "folderName": "frontend-app-admin-portal", @@ -1645,817 +1787,967 @@ "filePath": "src/components/ActionButtonWithModal/index.jsx", "line": 15, "column": 6, - "index": 311 + "index": 315 }, { "filePath": "src/components/Admin/AIAnalyticsSummary.jsx", - "line": 33, - "column": 8, - "index": 1070 + "line": 49, + "column": 10, + "index": 1875 }, { "filePath": "src/components/Admin/AIAnalyticsSummary.jsx", - "line": 60, + "line": 77, "column": 8, - "index": 2057 + "index": 2883 }, { "filePath": "src/components/Admin/AIAnalyticsSummary.jsx", - "line": 75, + "line": 93, "column": 8, - "index": 2630 + "index": 3554 }, { "filePath": "src/components/Admin/SubscriptionDetails.jsx", - "line": 48, + "line": 52, "column": 18, - "index": 1993 + "index": 2264 + }, + { + "filePath": "src/components/BudgetExpiryAlertAndModal/index.jsx", + "line": 82, + "column": 12, + "index": 2526 + }, + { + "filePath": "src/components/BudgetExpiryAlertAndModal/index.jsx", + "line": 116, + "column": 14, + "index": 3657 + }, + { + "filePath": "src/components/BudgetExpiryAlertAndModal/index.jsx", + "line": 123, + "column": 14, + "index": 3973 }, { "filePath": "src/components/BulkEnrollmentPage/BulkEnrollButton.jsx", "line": 15, "column": 2, - "index": 591 + "index": 599 }, { "filePath": "src/components/BulkEnrollmentPage/BulkEnrollmentWarningModal.jsx", "line": 24, "column": 8, - "index": 580 + "index": 588 }, { "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentStepper.jsx", "line": 83, "column": 12, - "index": 2815 + "index": 2819 }, { "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentStepper.jsx", "line": 92, "column": 12, - "index": 3146 + "index": 3150 }, { "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentSubmit.jsx", "line": 42, "column": 8, - "index": 1046 + "index": 1050 }, { "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentSubmit.jsx", "line": 146, "column": 8, - "index": 4245 + "index": 4249 }, { "filePath": "src/components/BulkEnrollmentPage/stepper/ReviewList.jsx", "line": 17, "column": 11, - "index": 421 + "index": 425 }, { "filePath": "src/components/BulkEnrollmentPage/stepper/ReviewList.jsx", "line": 20, "column": 9, - "index": 553 + "index": 557 }, { "filePath": "src/components/BulkEnrollmentPage/stepper/ReviewList.jsx", "line": 66, "column": 16, - "index": 1952 + "index": 1956 }, { "filePath": "src/components/BulkEnrollmentPage/table/BaseSelectionStatus.jsx", "line": 23, "column": 8, - "index": 764 + "index": 768 }, { "filePath": "src/components/BulkEnrollmentPage/table/CourseSearchResultsCells.jsx", "line": 38, "column": 4, - "index": 1051 + "index": 1055 }, { "filePath": "src/components/CodeAssignmentModal/index.jsx", - "line": 414, - "column": 10, - "index": 12369 + "line": 419, + "column": 12, + "index": 12557 }, { "filePath": "src/components/CodeManagement/ManageCodesTab.jsx", "line": 275, "column": 12, - "index": 8125 + "index": 8375 }, { "filePath": "src/components/CodeReminderModal/index.jsx", - "line": 226, - "column": 10, - "index": 6465 + "line": 233, + "column": 12, + "index": 6657 }, { "filePath": "src/components/CodeRevokeModal/index.jsx", - "line": 237, - "column": 10, - "index": 6630 + "line": 241, + "column": 12, + "index": 6814 }, { "filePath": "src/components/CodeSearchResults/CodeSearchResultsHeading.jsx", "line": 14, "column": 6, - "index": 531 + "index": 539 }, { "filePath": "src/components/ConfirmationModal/index.jsx", - "line": 56, - "column": 8, - "index": 1173 + "line": 117, + "column": 10, + "index": 3755 }, { "filePath": "src/components/ContentHighlights/CatalogVisibility/ContentHighlightCatalogVisibilityAlert.jsx", - "line": 72, + "line": 81, "column": 12, - "index": 2110 + "index": 2773 + }, + { + "filePath": "src/components/ContentHighlights/ContentHighlightsCardItemsContainer.jsx", + "line": 118, + "column": 12, + "index": 4114 }, { "filePath": "src/components/ContentHighlights/CurrentContentHighlightHeader.jsx", - "line": 73, + "line": 86, "column": 8, - "index": 2310 + "index": 2855 + }, + { + "filePath": "src/components/ContentHighlights/DeleteArchivedHighlightsDialogs.jsx", + "line": 69, + "column": 10, + "index": 2512 + }, + { + "filePath": "src/components/ContentHighlights/DeleteArchivedHighlightsDialogs.jsx", + "line": 104, + "column": 10, + "index": 3917 }, { "filePath": "src/components/ContentHighlights/DeleteHighlightSet.jsx", - "line": 105, + "line": 107, "column": 6, - "index": 3474 + "index": 3592 }, { "filePath": "src/components/ContentHighlights/DeleteHighlightSet.jsx", - "line": 112, + "line": 124, "column": 12, - "index": 3723 + "index": 4242 }, { "filePath": "src/components/ContentHighlights/HighlightStepper/ContentHighlightStepper.jsx", - "line": 272, + "line": 274, "column": 16, - "index": 10427 + "index": 10536 }, { "filePath": "src/components/ContentHighlights/HighlightStepper/ContentHighlightStepper.jsx", - "line": 278, + "line": 280, "column": 16, - "index": 10610 + "index": 10719 }, { "filePath": "src/components/ContentHighlights/HighlightStepper/ContentHighlightStepper.jsx", - "line": 290, + "line": 292, "column": 16, - "index": 11082 + "index": 11191 }, { "filePath": "src/components/ContentHighlights/HighlightStepper/ContentHighlightStepper.jsx", - "line": 296, + "line": 298, "column": 16, - "index": 11270 + "index": 11379 }, { "filePath": "src/components/ContentHighlights/HighlightStepper/ContentHighlightStepper.jsx", - "line": 308, + "line": 310, "column": 16, - "index": 11746 + "index": 11855 }, { "filePath": "src/components/ContentHighlights/HighlightStepper/ContentHighlightStepper.jsx", - "line": 365, + "line": 387, "column": 10, - "index": 13688 + "index": 14933 }, { "filePath": "src/components/ContentHighlights/HighlightStepper/ContentHighlightStepper.jsx", - "line": 366, + "line": 394, "column": 10, - "index": 13813 + "index": 15273 }, { "filePath": "src/components/ContentHighlights/HighlightStepper/SelectContentSelectionStatus.jsx", "line": 27, "column": 8, - "index": 1005 + "index": 1009 }, { "filePath": "src/components/ContentHighlights/ZeroState/ZeroStateHighlights.jsx", - "line": 54, + "line": 63, "column": 12, - "index": 2002 + "index": 2635 }, { "filePath": "src/components/CouponDetails/ActionButton.jsx", "line": 80, "column": 4, - "index": 1874 + "index": 1878 }, { "filePath": "src/components/CouponDetails/CouponBulkActions.jsx", "line": 68, "column": 6, - "index": 1931 + "index": 1935 }, { "filePath": "src/components/CouponDetails/index.jsx", - "line": 601, + "line": 603, "column": 26, - "index": 18457 + "index": 18597 }, { "filePath": "src/components/CouponDetails/index.jsx", - "line": 616, + "line": 618, "column": 26, - "index": 19120 + "index": 19260 }, { "filePath": "src/components/CouponDetails/index.jsx", - "line": 647, + "line": 649, "column": 28, - "index": 20676 + "index": 20816 }, { "filePath": "src/components/DownloadCsvButton/index.jsx", "line": 27, "column": 6, - "index": 694 + "index": 702 }, { "filePath": "src/components/FileInput/index.jsx", - "line": 131, + "line": 129, "column": 12, - "index": 3215 + "index": 3145 }, { "filePath": "src/components/InviteLearnersModal/index.jsx", - "line": 192, - "column": 10, - "index": 5398 + "line": 261, + "column": 12, + "index": 8403 + }, + { + "filePath": "src/components/learner-credit-management/assignment-modal/AssignmentModalSummaryLearnerList.jsx", + "line": 62, + "column": 8, + "index": 2543 + }, + { + "filePath": "src/components/learner-credit-management/assignment-modal/NewAssignmentModalButton.jsx", + "line": 248, + "column": 12, + "index": 9230 + }, + { + "filePath": "src/components/learner-credit-management/assignment-modal/NewAssignmentModalButton.jsx", + "line": 270, + "column": 12, + "index": 10110 }, { "filePath": "src/components/learner-credit-management/AssignmentsTableRefreshAction.jsx", - "line": 38, + "line": 39, "column": 4, - "index": 1402 + "index": 1470 }, { "filePath": "src/components/learner-credit-management/AssignmentTableCancel.jsx", - "line": 46, + "line": 125, "column": 6, - "index": 1506 + "index": 3542 }, { "filePath": "src/components/learner-credit-management/AssignmentTableRemind.jsx", - "line": 48, + "line": 126, "column": 6, - "index": 1716 + "index": 3768 }, { "filePath": "src/components/learner-credit-management/AssignMoreCoursesEmptyStateMinimal.jsx", - "line": 40, + "line": 55, "column": 8, - "index": 1517 + "index": 2244 }, { "filePath": "src/components/learner-credit-management/BudgetDetailPageOverviewAvailability.jsx", - "line": 56, + "line": 96, "column": 10, - "index": 2066 + "index": 3484 }, { "filePath": "src/components/learner-credit-management/BudgetDetailPageOverviewAvailability.jsx", - "line": 68, + "line": 139, + "column": 14, + "index": 5348 + }, + { + "filePath": "src/components/learner-credit-management/BudgetDetailPageOverviewAvailability.jsx", + "line": 169, + "column": 10, + "index": 6604 + }, + { + "filePath": "src/components/learner-credit-management/BudgetDetailPageOverviewAvailability.jsx", + "line": 213, + "column": 16, + "index": 8706 + }, + { + "filePath": "src/components/learner-credit-management/BudgetDetailPageOverviewAvailability.jsx", + "line": 246, + "column": 16, + "index": 10227 + }, + { + "filePath": "src/components/learner-credit-management/BudgetDetailPageOverviewAvailability.jsx", + "line": 279, + "column": 16, + "index": 11782 + }, + { + "filePath": "src/components/learner-credit-management/BudgetDetailPageOverviewAvailability.jsx", + "line": 309, + "column": 12, + "index": 13128 + }, + { + "filePath": "src/components/learner-credit-management/BudgetDetailPageOverviewAvailability.jsx", + "line": 343, + "column": 10, + "index": 14467 + }, + { + "filePath": "src/components/learner-credit-management/BudgetDetailPageOverviewAvailability.jsx", + "line": 382, "column": 8, - "index": 2487 + "index": 15954 }, { "filePath": "src/components/learner-credit-management/BudgetDetailPageOverviewUtilization.jsx", - "line": 37, + "line": 64, "column": 6, - "index": 954 + "index": 2105 }, { "filePath": "src/components/learner-credit-management/cards/assignment-allocation-status-modals/ContentNotInCatalogErrorAlertModal.jsx", "line": 33, "column": 10, - "index": 970 + "index": 978 }, { "filePath": "src/components/learner-credit-management/cards/assignment-allocation-status-modals/NotEnoughBalanceAlertModal.jsx", "line": 35, "column": 10, - "index": 979 + "index": 987 }, { "filePath": "src/components/learner-credit-management/cards/assignment-allocation-status-modals/NotEnoughBalanceAlertModal.jsx", "line": 36, "column": 10, - "index": 1072 + "index": 1080 }, { "filePath": "src/components/learner-credit-management/cards/assignment-allocation-status-modals/SystemErrorAlertModal.jsx", "line": 29, "column": 10, - "index": 664 + "index": 672 }, { "filePath": "src/components/learner-credit-management/cards/assignment-allocation-status-modals/SystemErrorAlertModal.jsx", "line": 30, "column": 10, - "index": 757 + "index": 765 }, { - "filePath": "src/components/learner-credit-management/cards/AssignmentModalSummaryLearnerList.jsx", - "line": 54, - "column": 8, - "index": 2004 + "filePath": "src/components/learner-credit-management/cards/CourseCardFooterActions.jsx", + "line": 31, + "column": 6, + "index": 1145 }, { - "filePath": "src/components/learner-credit-management/cards/CourseCardFooterActions.jsx", - "line": 23, - "column": 4, - "index": 724 + "filePath": "src/components/learner-credit-management/empty-state/NoAssignableBudgetActivity.jsx", + "line": 91, + "column": 12, + "index": 3309 }, { - "filePath": "src/components/learner-credit-management/cards/NewAssignmentModalButton.jsx", - "line": 178, - "column": 6, - "index": 6381 + "filePath": "src/components/learner-credit-management/empty-state/NoBnEBudgetActivity.jsx", + "line": 97, + "column": 12, + "index": 3545 }, { - "filePath": "src/components/learner-credit-management/cards/NewAssignmentModalButton.jsx", - "line": 193, + "filePath": "src/components/learner-credit-management/FlexGroupDropdown.jsx", + "line": 39, + "column": 10, + "index": 1228 + }, + { + "filePath": "src/components/learner-credit-management/invite-modal/EnterpriseCustomerUserDatatable.jsx", + "line": 110, + "column": 4, + "index": 3140 + }, + { + "filePath": "src/components/learner-credit-management/invite-modal/InviteMembersModalWrapper.jsx", + "line": 104, "column": 12, - "index": 6889 + "index": 3775 }, { - "filePath": "src/components/learner-credit-management/cards/NewAssignmentModalButton.jsx", - "line": 207, + "filePath": "src/components/learner-credit-management/invite-modal/InviteMembersModalWrapper.jsx", + "line": 113, "column": 12, - "index": 7409 + "index": 4064 }, { - "filePath": "src/components/learner-credit-management/NoBudgetActivityEmptyState.jsx", - "line": 91, + "filePath": "src/components/learner-credit-management/invite-modal/InviteModalSummaryLearnerList.jsx", + "line": 50, + "column": 8, + "index": 1898 + }, + { + "filePath": "src/components/learner-credit-management/members-tab/bulk-actions/MemberRemoveAction.jsx", + "line": 23, + "column": 6, + "index": 708 + }, + { + "filePath": "src/components/learner-credit-management/members-tab/GroupMembersCsvDownloadTableAction.jsx", + "line": 98, "column": 12, - "index": 3320 + "index": 3768 + }, + { + "filePath": "src/components/learner-credit-management/members-tab/GroupMembersCsvDownloadTableAction.jsx", + "line": 120, + "column": 6, + "index": 4631 }, { "filePath": "src/components/learner-credit-management/SubBudgetCard.jsx", - "line": 42, + "line": 106, "column": 4, - "index": 1094 + "index": 3023 }, { "filePath": "src/components/learner-credit-management/tests/BudgetDetailPageWrapper.test.jsx", - "line": 118, + "line": 129, "column": 10, - "index": 3773 + "index": 4266 }, { "filePath": "src/components/learner-credit-management/tests/BudgetDetailPageWrapper.test.jsx", - "line": 119, + "line": 130, "column": 10, - "index": 3840 + "index": 4333 }, { "filePath": "src/components/learner-credit-management/tests/BudgetDetailPageWrapper.test.jsx", - "line": 177, + "line": 188, "column": 10, - "index": 5654 + "index": 6147 }, { "filePath": "src/components/learner-credit-management/tests/BudgetDetailPageWrapper.test.jsx", - "line": 178, + "line": 189, "column": 10, - "index": 5721 + "index": 6214 }, { "filePath": "src/components/learner-credit-management/tests/BudgetDetailPageWrapper.test.jsx", - "line": 236, + "line": 247, "column": 10, - "index": 7351 + "index": 7844 }, { "filePath": "src/components/learner-credit-management/tests/BudgetDetailPageWrapper.test.jsx", - "line": 237, + "line": 248, "column": 10, - "index": 7418 + "index": 7911 }, { "filePath": "src/components/NewFeatureAlertBrowseAndRequest/index.jsx", - "line": 50, + "line": 49, "column": 8, - "index": 1619 + "index": 1590 }, { "filePath": "src/components/NumberCard/index.jsx", - "line": 201, + "line": 203, "column": 14, - "index": 5987 + "index": 6159 + }, + { + "filePath": "src/components/PeopleManagement/CreateGroupModal.jsx", + "line": 90, + "column": 12, + "index": 2899 + }, + { + "filePath": "src/components/PeopleManagement/DeleteGroupModal.jsx", + "line": 70, + "column": 12, + "index": 2380 + }, + { + "filePath": "src/components/PeopleManagement/GeneralErrorModal.jsx", + "line": 35, + "column": 8, + "index": 1032 + }, + { + "filePath": "src/components/PeopleManagement/index.jsx", + "line": 74, + "column": 10, + "index": 2989 }, { "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 434, + "line": 570, "column": 12, - "index": 16720 + "index": 23477 }, { "filePath": "src/components/RequestCodesPage/RequestCodesForm.jsx", - "line": 117, + "line": 116, "column": 14, - "index": 3175 + "index": 3149 }, { "filePath": "src/components/settings/SettingsAccessTab/ActionsTableCell.jsx", - "line": 72, + "line": 78, "column": 12, - "index": 2159 + "index": 2202 }, { "filePath": "src/components/settings/SettingsAccessTab/ActionsTableCell.jsx", - "line": 74, + "line": 86, "column": 10, - "index": 2258 + "index": 2517 }, { "filePath": "src/components/settings/SettingsAccessTab/DisableLinkManagementAlertModal.jsx", - "line": 38, + "line": 52, "column": 10, - "index": 730 + "index": 1393 }, { "filePath": "src/components/settings/SettingsAccessTab/LinkDeactivationAlertModal.jsx", - "line": 58, + "line": 72, "column": 10, - "index": 1284 + "index": 1973 }, { "filePath": "src/components/settings/SettingsApiCredentialsTab/CopyButton.jsx", "line": 30, "column": 6, - "index": 878 + "index": 886 }, { "filePath": "src/components/settings/SettingsApiCredentialsTab/RegenerateCredentialWarningModal.jsx", "line": 41, "column": 6, - "index": 1164 + "index": 1172 }, { "filePath": "src/components/settings/SettingsApiCredentialsTab/RegenerateCredentialWarningModal.jsx", "line": 79, "column": 12, - "index": 2358 + "index": 2366 }, { "filePath": "src/components/settings/SettingsApiCredentialsTab/ZeroStateCard.jsx", - "line": 80, + "line": 105, "column": 8, - "index": 2757 + "index": 4256 }, { "filePath": "src/components/settings/SettingsAppearanceTab/CustomThemeModal.jsx", - "line": 145, + "line": 184, "column": 10, - "index": 5498 + "index": 7644 }, { "filePath": "src/components/settings/SettingsAppearanceTab/index.jsx", - "line": 166, - "column": 8, - "index": 6197 + "line": 202, + "column": 10, + "index": 7830 }, { "filePath": "src/components/settings/SettingsAppearanceTab/index.jsx", - "line": 180, + "line": 220, "column": 6, - "index": 6682 + "index": 8536 }, { "filePath": "src/components/settings/SettingsAppearanceTab/ThemeCard.jsx", "line": 41, "column": 8, - "index": 1173 + "index": 1177 }, { "filePath": "src/components/settings/SettingsAppearanceTab/ThemeCard.jsx", "line": 42, "column": 8, - "index": 1268 + "index": 1272 }, { "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", "line": 151, "column": 10, - "index": 5177 + "index": 5184 }, { "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", "line": 153, "column": 12, - "index": 5319 + "index": 5326 }, { "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", "line": 161, "column": 10, - "index": 5512 + "index": 5519 }, { "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", "line": 163, "column": 12, - "index": 5658 + "index": 5665 }, { "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", "line": 165, "column": 10, - "index": 5737 + "index": 5744 }, { "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", "line": 171, "column": 8, - "index": 5914 + "index": 5921 }, { "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", "line": 173, "column": 10, - "index": 6056 + "index": 6063 }, { "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", "line": 188, "column": 12, - "index": 6415 + "index": 6422 }, { "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", "line": 195, "column": 12, - "index": 6630 + "index": 6637 }, { "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 105, - "column": 17, - "index": 3050 + "line": 132, + "column": 12, + "index": 3892 }, { "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 109, - "column": 15, - "index": 3240 + "line": 143, + "column": 10, + "index": 4306 }, { "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 111, - "column": 15, - "index": 3393 + "line": 152, + "column": 10, + "index": 4665 }, { "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 142, + "line": 215, "column": 12, - "index": 4485 + "index": 6814 }, { "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 149, + "line": 226, "column": 12, - "index": 4700 + "index": 7294 }, { "filePath": "src/components/settings/SettingsLMSTab/index.jsx", - "line": 158, + "line": 168, "column": 12, - "index": 6119 + "index": 6637 }, { "filePath": "src/components/settings/SettingsLMSTab/index.jsx", - "line": 177, + "line": 191, "column": 14, - "index": 6688 + "index": 7423 }, { "filePath": "src/components/settings/SettingsLMSTab/NoConfigCard.jsx", - "line": 34, - "column": 8, - "index": 1193 + "line": 44, + "column": 10, + "index": 1720 }, { "filePath": "src/components/settings/SettingsSSOTab/index.jsx", - "line": 94, + "line": 115, "column": 14, - "index": 3916 + "index": 5110 }, { "filePath": "src/components/settings/SettingsSSOTab/index.jsx", - "line": 112, + "line": 143, "column": 14, - "index": 4574 + "index": 6242 }, { "filePath": "src/components/settings/SettingsSSOTab/NewSSOConfigAlerts.jsx", - "line": 59, + "line": 60, "column": 10, - "index": 1811 + "index": 1883 }, { "filePath": "src/components/settings/SettingsSSOTab/NewSSOConfigAlerts.jsx", - "line": 83, + "line": 99, "column": 10, - "index": 2606 + "index": 3294 }, { "filePath": "src/components/settings/SettingsSSOTab/NewSSOConfigCard.jsx", - "line": 140, + "line": 164, "column": 8, - "index": 4418 + "index": 5385 }, { "filePath": "src/components/settings/SettingsSSOTab/NewSSOConfigCard.jsx", - "line": 150, + "line": 178, "column": 8, - "index": 4726 + "index": 5876 }, { "filePath": "src/components/settings/SettingsSSOTab/NoSSOCard.jsx", - "line": 33, + "line": 47, "column": 8, - "index": 1105 + "index": 1742 }, { "filePath": "src/components/settings/SettingsSSOTab/SSOConfigConfiguredCard.jsx", "line": 106, "column": 12, - "index": 3894 + "index": 3902 }, { "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", "line": 178, "column": 14, - "index": 6768 + "index": 6776 }, { "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", "line": 183, "column": 12, - "index": 6923 + "index": 6931 }, { "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", "line": 205, "column": 12, - "index": 7706 + "index": 7714 }, { "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", "line": 208, "column": 12, - "index": 7841 + "index": 7849 }, { "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", "line": 212, "column": 12, - "index": 7982 + "index": 7990 }, { "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", "line": 219, "column": 12, - "index": 8246 + "index": 8254 }, { "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", "line": 222, "column": 12, - "index": 8393 + "index": 8401 }, { "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", "line": 234, "column": 12, - "index": 8713 + "index": 8721 }, { "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", "line": 240, "column": 12, - "index": 8970 + "index": 8978 }, { "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", "line": 243, "column": 12, - "index": 9111 + "index": 9119 }, { "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", "line": 248, "column": 14, - "index": 9290 + "index": 9298 }, { "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", "line": 186, "column": 10, - "index": 6593 + "index": 6601 }, { "filePath": "src/components/SidebarToggle/index.jsx", "line": 18, "column": 4, - "index": 382 + "index": 390 }, { "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/bulk-actions/EnrollBulkAction.jsx", "line": 113, "column": 6, - "index": 4014 + "index": 4022 }, { "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/bulk-actions/RemindBulkAction.jsx", "line": 117, "column": 6, - "index": 3509 + "index": 3517 }, { "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/bulk-actions/RevokeBulkAction.jsx", "line": 114, "column": 6, - "index": 3513 + "index": 3521 }, { "filePath": "src/components/subscriptions/SubscriptionCard.jsx", "line": 56, "column": 6, - "index": 1588 + "index": 1592 }, { "filePath": "src/components/subscriptions/SubscriptionDetails.jsx", - "line": 39, + "line": 40, "column": 12, - "index": 1505 + "index": 1588 }, { "filePath": "src/components/subsidy-request-modals/ApproveCouponCodeRequestModal.jsx", - "line": 163, + "line": 164, "column": 12, - "index": 5260 + "index": 5318 }, { "filePath": "src/components/subsidy-request-modals/ApproveLicenseRequestModal.jsx", - "line": 162, + "line": 231, "column": 12, - "index": 5555 + "index": 9220 }, { "filePath": "src/components/subsidy-request-modals/DeclineSubsidyRequestModal.jsx", "line": 109, "column": 10, - "index": 3185 + "index": 3193 }, { "filePath": "src/components/SubsidyRequestManagementTable/ActionCell.jsx", "line": 16, "column": 6, - "index": 306 + "index": 310 }, { "filePath": "src/components/SubsidyRequestManagementTable/ActionCell.jsx", "line": 23, "column": 6, - "index": 457 + "index": 461 }, { "filePath": "src/components/SubsidyRequestManagementTable/CourseTitleCell.jsx", "line": 76, "column": 4, - "index": 1987 + "index": 1991 }, { "filePath": "src/components/TemplateSourceFields/index.jsx", "line": 127, "column": 14, - "index": 4196 + "index": 4200 }, { "filePath": "src/components/TemplateSourceFields/index.jsx", "line": 153, "column": 14, - "index": 5237 + "index": 5241 } ], "Skeleton": [ @@ -2463,40412 +2755,48378 @@ "filePath": "src/components/Admin/AdminCardsSkeleton.jsx", "line": 9, "column": 4, - "index": 223 + "index": 227 }, { "filePath": "src/components/Admin/AdminCardsSkeleton.jsx", "line": 10, "column": 4, - "index": 240 + "index": 244 }, { "filePath": "src/components/Admin/AdminCardsSkeleton.jsx", "line": 11, "column": 4, - "index": 257 + "index": 261 }, { "filePath": "src/components/Admin/AdminCardsSkeleton.jsx", "line": 12, "column": 4, - "index": 274 + "index": 278 }, { "filePath": "src/components/Admin/AIAnalyticsSummarySkeleton.jsx", "line": 6, "column": 4, - "index": 164 + "index": 168 }, { "filePath": "src/components/Admin/AIAnalyticsSummarySkeleton.jsx", "line": 8, "column": 4, - "index": 325 + "index": 329 }, { "filePath": "src/components/BulkEnrollmentPage/CourseSearchResults.jsx", "line": 132, "column": 8, - "index": 4145 + "index": 4153 }, { "filePath": "src/components/BulkEnrollmentPage/stepper/ReviewList.jsx", "line": 58, "column": 10, - "index": 1647 + "index": 1651 }, { "filePath": "src/components/ContentHighlights/CurrentContentHighlightItemsHeader.jsx", "line": 11, "column": 12, - "index": 406 + "index": 410 }, { "filePath": "src/components/ContentHighlights/CurrentContentHighlightItemsHeader.jsx", "line": 13, "column": 8, - "index": 461 + "index": 465 }, { "filePath": "src/components/EnterpriseApp/EnterpriseAppSkeleton.jsx", "line": 7, "column": 4, - "index": 162 + "index": 166 }, { "filePath": "src/components/EnterpriseApp/EnterpriseAppSkeleton.jsx", "line": 8, "column": 4, - "index": 193 + "index": 197 }, { "filePath": "src/components/learner-credit-management/BudgetDetailActivityTabContents.jsx", - "line": 29, + "line": 35, "column": 8, - "index": 1274 + "index": 1715 }, { "filePath": "src/components/learner-credit-management/BudgetDetailPage.jsx", - "line": 28, + "line": 44, "column": 8, - "index": 1031 + "index": 1663 }, { "filePath": "src/components/learner-credit-management/BudgetDetailPage.jsx", - "line": 29, + "line": 45, "column": 8, - "index": 1064 + "index": 1696 }, { "filePath": "src/components/learner-credit-management/BudgetDetailPage.jsx", - "line": 30, + "line": 46, "column": 8, - "index": 1097 + "index": 1729 }, { "filePath": "src/components/learner-credit-management/BudgetDetailPage.jsx", - "line": 31, + "line": 47, "column": 8, - "index": 1131 + "index": 1763 }, { - "filePath": "src/components/learner-credit-management/BudgetDetailPageHeader.jsx", - "line": 66, + "filePath": "src/components/learner-credit-management/BudgetOverviewContent.jsx", + "line": 59, + "column": 8, + "index": 1965 + }, + { + "filePath": "src/components/learner-credit-management/invite-modal/InviteModalBudgetCard.jsx", + "line": 62, "column": 8, - "index": 2126 + "index": 2036 }, { "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", "line": 15, "column": 12, - "index": 465 + "index": 469 }, { "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", "line": 24, "column": 12, - "index": 788 + "index": 792 }, { "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", "line": 33, "column": 12, - "index": 1084 + "index": 1088 + }, + { + "filePath": "src/components/learner-credit-management/members-tab/BudgetDetailMembersTabContents.jsx", + "line": 68, + "column": 10, + "index": 2408 }, { "filePath": "src/components/learner-credit-management/MultipleBudgetsPage.jsx", - "line": 33, + "line": 49, "column": 12, - "index": 746 + "index": 1411 }, { "filePath": "src/components/learner-credit-management/MultipleBudgetsPage.jsx", - "line": 34, + "line": 50, "column": 8, - "index": 772 + "index": 1437 }, { - "filePath": "src/components/learner-credit-management/SubBudgetCard.jsx", - "line": 87, - "column": 33, - "index": 2573 + "filePath": "src/components/learner-credit-management/SubBudgetCardUtilization.jsx", + "line": 45, + "column": 37, + "index": 1460 }, { - "filePath": "src/components/learner-credit-management/SubBudgetCard.jsx", - "line": 94, - "column": 35, - "index": 2869 + "filePath": "src/components/learner-credit-management/SubBudgetCardUtilization.jsx", + "line": 58, + "column": 37, + "index": 2018 }, { - "filePath": "src/components/learner-credit-management/SubBudgetCard.jsx", - "line": 101, + "filePath": "src/components/learner-credit-management/SubBudgetCardUtilization.jsx", + "line": 77, "column": 33, - "index": 3140 + "index": 2740 + }, + { + "filePath": "src/components/PeopleManagement/GroupDetailPage.jsx", + "line": 122, + "column": 10, + "index": 4318 }, { "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", "line": 216, "column": 37, - "index": 7236 + "index": 7243 }, { "filePath": "src/components/settings/SettingsLMSTab/index.jsx", - "line": 197, + "line": 227, "column": 55, - "index": 7313 + "index": 8766 }, { "filePath": "src/components/settings/SettingsSSOTab/index.jsx", - "line": 181, + "line": 220, "column": 39, - "index": 7346 + "index": 9417 }, { "filePath": "src/components/settings/SettingsSSOTab/index.jsx", - "line": 245, + "line": 284, "column": 37, - "index": 9820 + "index": 11891 }, { "filePath": "src/components/settings/SettingsSSOTab/NewExistingSSOConfigs.jsx", - "line": 220, + "line": 239, "column": 10, - "index": 7634 + "index": 8657 }, { "filePath": "src/components/settings/SettingsSSOTab/NewExistingSSOConfigs.jsx", - "line": 221, + "line": 240, "column": 10, - "index": 7657 + "index": 8680 }, { "filePath": "src/components/settings/SettingsSSOTab/NewExistingSSOConfigs.jsx", - "line": 222, + "line": 241, "column": 10, - "index": 7680 + "index": 8703 }, { "filePath": "src/components/settings/SettingsSSOTab/NewExistingSSOConfigs.jsx", - "line": 223, + "line": 242, "column": 10, - "index": 7703 + "index": 8726 }, { "filePath": "src/components/subscriptions/SubscriptionDetailsSkeleton.jsx", "line": 10, "column": 4, - "index": 241 + "index": 245 }, { "filePath": "src/components/subscriptions/SubscriptionDetailsSkeleton.jsx", "line": 11, "column": 4, - "index": 271 + "index": 275 }, { "filePath": "src/components/subscriptions/SubscriptionDetailsSkeleton.jsx", "line": 14, "column": 8, - "index": 375 + "index": 379 }, { "filePath": "src/components/subscriptions/SubscriptionDetailsSkeleton.jsx", "line": 17, "column": 8, - "index": 492 + "index": 496 }, { "filePath": "src/components/subsidy-request-modals/ApproveCouponCodeRequestModal.jsx", - "line": 112, + "line": 113, "column": 14, - "index": 3284 + "index": 3342 }, { "filePath": "src/components/subsidy-request-modals/ApproveLicenseRequestModal.jsx", - "line": 111, + "line": 135, "column": 14, - "index": 3423 + "index": 4552 }, { "filePath": "src/components/SubsidyRequestManagementTable/CourseTitleCell.jsx", "line": 22, "column": 8, - "index": 582 + "index": 586 }, { "filePath": "src/components/TableComponent/TableLoadingSkeleton.jsx", "line": 7, "column": 4, - "index": 180 + "index": 184 } ], "Form.Group": [ { "filePath": "src/components/Admin/AdminSearchForm.jsx", - "line": 58, + "line": 81, "column": 14, - "index": 1732 + "index": 2481 }, { "filePath": "src/components/Admin/AdminSearchForm.jsx", - "line": 79, + "line": 114, + "column": 14, + "index": 3903 + }, + { + "filePath": "src/components/Admin/AdminSearchForm.jsx", + "line": 200, "column": 14, - "index": 2518 + "index": 8354 + }, + { + "filePath": "src/components/AdvanceAnalyticsV2/AnalyticsV2Page.jsx", + "line": 58, + "column": 12, + "index": 2150 + }, + { + "filePath": "src/components/AdvanceAnalyticsV2/AnalyticsV2Page.jsx", + "line": 76, + "column": 12, + "index": 2818 + }, + { + "filePath": "src/components/AdvanceAnalyticsV2/AnalyticsV2Page.jsx", + "line": 94, + "column": 12, + "index": 3485 + }, + { + "filePath": "src/components/AdvanceAnalyticsV2/AnalyticsV2Page.jsx", + "line": 140, + "column": 12, + "index": 5547 }, { "filePath": "src/components/ContentHighlights/CatalogVisibility/ContentHighlightCatalogVisibilityRadioInput.jsx", - "line": 110, + "line": 120, "column": 6, - "index": 4372 + "index": 4784 }, { "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperTitleInput.jsx", "line": 59, "column": 4, - "index": 2219 + "index": 2223 }, { "filePath": "src/components/CouponDetails/CouponBulkActions.jsx", "line": 46, "column": 6, - "index": 1194 + "index": 1198 }, { "filePath": "src/components/CouponDetails/CouponFilters.jsx", "line": 9, "column": 2, - "index": 217 + "index": 221 }, { - "filePath": "src/components/learner-credit-management/cards/AssignmentModalContent.jsx", - "line": 92, + "filePath": "src/components/FileInput/index.jsx", + "line": 72, + "column": 6, + "index": 1530 + }, + { + "filePath": "src/components/learner-credit-management/assignment-modal/AssignmentModalContent.jsx", + "line": 162, "column": 12, - "index": 3420 + "index": 6219 + }, + { + "filePath": "src/components/learner-credit-management/FlexGroupDropdown.jsx", + "line": 31, + "column": 4, + "index": 801 + }, + { + "filePath": "src/components/learner-credit-management/invite-modal/FileUpload.jsx", + "line": 34, + "column": 4, + "index": 1129 + }, + { + "filePath": "src/components/learner-credit-management/invite-modal/InviteModalContent.jsx", + "line": 110, + "column": 10, + "index": 4108 + }, + { + "filePath": "src/components/learner-credit-management/invite-modal/InviteModalContent.jsx", + "line": 132, + "column": 12, + "index": 5077 }, { "filePath": "src/components/learner-credit-management/TableTextFilter.jsx", "line": 23, "column": 4, - "index": 520 + "index": 528 }, { "filePath": "src/components/MultipleFileInputField/MultipleFileInputField.jsx", "line": 59, "column": 4, - "index": 1819 + "index": 1827 }, { "filePath": "src/components/ReduxFormSelect/index.jsx", "line": 10, "column": 4, - "index": 290 + "index": 294 }, { "filePath": "src/components/RenderField/index.jsx", "line": 19, "column": 4, - "index": 324 + "index": 328 + }, + { + "filePath": "src/components/ReportingConfig/EmailDeliveryMethodForm.jsx", + "line": 13, + "column": 8, + "index": 465 + }, + { + "filePath": "src/components/ReportingConfig/EmailDeliveryMethodForm.jsx", + "line": 52, + "column": 10, + "index": 2195 + }, + { + "filePath": "src/components/ReportingConfig/EmailDeliveryMethodForm.jsx", + "line": 67, + "column": 8, + "index": 2774 + }, + { + "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", + "line": 190, + "column": 6, + "index": 6680 + }, + { + "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", + "line": 224, + "column": 6, + "index": 7750 + }, + { + "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", + "line": 277, + "column": 10, + "index": 9505 + }, + { + "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", + "line": 416, + "column": 8, + "index": 16798 + }, + { + "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", + "line": 460, + "column": 10, + "index": 18422 + }, + { + "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", + "line": 491, + "column": 10, + "index": 19816 + }, + { + "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", + "line": 519, + "column": 10, + "index": 21210 + }, + { + "filePath": "src/components/ReportingConfig/SFTPDeliveryMethodForm.jsx", + "line": 13, + "column": 10, + "index": 395 + }, + { + "filePath": "src/components/ReportingConfig/SFTPDeliveryMethodForm.jsx", + "line": 43, + "column": 10, + "index": 1677 + }, + { + "filePath": "src/components/ReportingConfig/SFTPDeliveryMethodForm.jsx", + "line": 81, + "column": 10, + "index": 3209 + }, + { + "filePath": "src/components/ReportingConfig/SFTPDeliveryMethodForm.jsx", + "line": 116, + "column": 12, + "index": 4744 + }, + { + "filePath": "src/components/ReportingConfig/SFTPDeliveryMethodForm.jsx", + "line": 131, + "column": 10, + "index": 5324 + }, + { + "filePath": "src/components/ReportingConfig/SFTPDeliveryMethodForm.jsx", + "line": 160, + "column": 10, + "index": 6659 }, { "filePath": "src/components/settings/SettingsAppearanceTab/CustomThemeModal.jsx", - "line": 83, + "line": 106, "column": 10, - "index": 3053 + "index": 4245 }, { "filePath": "src/components/settings/SettingsAppearanceTab/CustomThemeModal.jsx", - "line": 100, + "line": 127, "column": 10, - "index": 3777 + "index": 5206 }, { "filePath": "src/components/settings/SettingsAppearanceTab/CustomThemeModal.jsx", - "line": 117, + "line": 148, "column": 10, - "index": 4501 + "index": 6167 }, { "filePath": "src/components/settings/SettingsSSOTab/SSOConfigConfiguredCard.jsx", "line": 89, "column": 8, - "index": 3389 + "index": 3397 }, { "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", "line": 222, "column": 8, - "index": 7732 + "index": 7740 }, { "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", "line": 230, "column": 10, - "index": 7997 + "index": 8005 }, { "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", "line": 247, "column": 10, - "index": 8694 + "index": 8702 }, { "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", "line": 269, "column": 10, - "index": 9624 + "index": 9632 }, { "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", "line": 285, "column": 10, - "index": 10248 + "index": 10256 }, { "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", "line": 301, "column": 10, - "index": 10845 + "index": 10853 }, { "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", "line": 317, "column": 10, - "index": 11447 + "index": 11455 }, { "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", "line": 333, "column": 10, - "index": 12044 + "index": 12052 }, { "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", "line": 349, "column": 10, - "index": 12649 + "index": 12657 }, { "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", "line": 374, "column": 10, - "index": 13569 + "index": 13577 }, { "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", "line": 392, "column": 10, - "index": 14267 + "index": 14275 }, { "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", "line": 411, "column": 10, - "index": 15017 + "index": 15025 }, { "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", "line": 425, "column": 10, - "index": 15557 + "index": 15565 }, { "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", "line": 439, "column": 10, - "index": 16107 + "index": 16115 }, { "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", "line": 461, "column": 10, - "index": 17027 + "index": 17035 }, { "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", "line": 483, "column": 10, - "index": 17898 + "index": 17906 }, { "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", "line": 499, "column": 10, - "index": 18527 + "index": 18535 }, { "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigIDPStep.jsx", "line": 27, "column": 8, - "index": 1110 + "index": 1114 }, { "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRemindModal.jsx", - "line": 176, + "line": 187, "column": 10, - "index": 5266 + "index": 5925 }, { "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRemindModal.jsx", - "line": 186, + "line": 197, "column": 10, - "index": 5670 + "index": 6329 }, { "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRemindModal.jsx", - "line": 196, + "line": 207, "column": 10, - "index": 5978 + "index": 6637 }, { "filePath": "src/components/subsidy-request-modals/ApproveCouponCodeRequestModal.jsx", - "line": 121, + "line": 122, "column": 14, - "index": 3593 + "index": 3651 }, { "filePath": "src/components/subsidy-request-modals/ApproveLicenseRequestModal.jsx", - "line": 120, + "line": 154, "column": 14, - "index": 3753 + "index": 5427 }, { "filePath": "src/components/TextAreaAutoSize/index.jsx", "line": 17, "column": 4, - "index": 313 + "index": 317 } ], "Form.Label": [ { "filePath": "src/components/Admin/AdminSearchForm.jsx", - "line": 59, + "line": 82, "column": 16, - "index": 1761 + "index": 2510 }, { "filePath": "src/components/Admin/AdminSearchForm.jsx", - "line": 80, + "line": 115, "column": 16, - "index": 2547 + "index": 3932 }, { "filePath": "src/components/Admin/AdminSearchForm.jsx", - "line": 111, + "line": 174, "column": 14, - "index": 3821 + "index": 7030 + }, + { + "filePath": "src/components/Admin/AdminSearchForm.jsx", + "line": 201, + "column": 16, + "index": 8383 + }, + { + "filePath": "src/components/AdvanceAnalyticsV2/AnalyticsV2Page.jsx", + "line": 59, + "column": 14, + "index": 2177 + }, + { + "filePath": "src/components/AdvanceAnalyticsV2/AnalyticsV2Page.jsx", + "line": 77, + "column": 14, + "index": 2845 + }, + { + "filePath": "src/components/AdvanceAnalyticsV2/AnalyticsV2Page.jsx", + "line": 95, + "column": 14, + "index": 3512 + }, + { + "filePath": "src/components/AdvanceAnalyticsV2/AnalyticsV2Page.jsx", + "line": 141, + "column": 14, + "index": 5574 }, { "filePath": "src/components/MultipleFileInputField/MultipleFileInputField.jsx", "line": 60, "column": 6, - "index": 1868 + "index": 1876 }, { "filePath": "src/components/MultipleFileInputField/MultipleFileInputField.jsx", "line": 65, "column": 6, - "index": 1992 + "index": 2000 }, { "filePath": "src/components/ReduxFormSelect/index.jsx", "line": 11, "column": 6, - "index": 309 + "index": 313 }, { "filePath": "src/components/RenderField/index.jsx", "line": 20, "column": 6, - "index": 373 + "index": 377 + }, + { + "filePath": "src/components/ReportingConfig/EmailDeliveryMethodForm.jsx", + "line": 14, + "column": 10, + "index": 541 + }, + { + "filePath": "src/components/ReportingConfig/EmailDeliveryMethodForm.jsx", + "line": 53, + "column": 12, + "index": 2247 + }, + { + "filePath": "src/components/ReportingConfig/EmailDeliveryMethodForm.jsx", + "line": 71, + "column": 10, + "index": 2900 + }, + { + "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", + "line": 194, + "column": 8, + "index": 6781 + }, + { + "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", + "line": 228, + "column": 8, + "index": 7885 + }, + { + "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", + "line": 419, + "column": 10, + "index": 16881 + }, + { + "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", + "line": 463, + "column": 12, + "index": 18512 + }, + { + "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", + "line": 492, + "column": 12, + "index": 19880 + }, + { + "filePath": "src/components/ReportingConfig/SFTPDeliveryMethodForm.jsx", + "line": 17, + "column": 12, + "index": 519 + }, + { + "filePath": "src/components/ReportingConfig/SFTPDeliveryMethodForm.jsx", + "line": 47, + "column": 12, + "index": 1793 + }, + { + "filePath": "src/components/ReportingConfig/SFTPDeliveryMethodForm.jsx", + "line": 85, + "column": 12, + "index": 3333 + }, + { + "filePath": "src/components/ReportingConfig/SFTPDeliveryMethodForm.jsx", + "line": 117, + "column": 14, + "index": 4771 + }, + { + "filePath": "src/components/ReportingConfig/SFTPDeliveryMethodForm.jsx", + "line": 135, + "column": 12, + "index": 5466 + }, + { + "filePath": "src/components/ReportingConfig/SFTPDeliveryMethodForm.jsx", + "line": 164, + "column": 12, + "index": 6783 }, { "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigIDPStep.jsx", "line": 28, "column": 10, - "index": 1133 + "index": 1137 }, { "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRemindModal.jsx", - "line": 177, + "line": 188, "column": 12, - "index": 5327 + "index": 5986 }, { "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRemindModal.jsx", - "line": 187, + "line": 198, "column": 12, - "index": 5727 + "index": 6386 }, { "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRemindModal.jsx", - "line": 197, + "line": 208, "column": 12, - "index": 6038 + "index": 6697 }, { "filePath": "src/components/TextAreaAutoSize/index.jsx", "line": 18, "column": 6, - "index": 332 + "index": 336 } ], "Form.Control": [ { "filePath": "src/components/Admin/AdminSearchForm.jsx", - "line": 60, + "line": 89, "column": 16, - "index": 1849 + "index": 2885 }, { "filePath": "src/components/Admin/AdminSearchForm.jsx", - "line": 88, + "line": 137, "column": 16, - "index": 2908 + "index": 5214 + }, + { + "filePath": "src/components/Admin/AdminSearchForm.jsx", + "line": 208, + "column": 16, + "index": 8758 }, { "filePath": "src/components/Admin/EmbeddedSubscription.jsx", - "line": 45, + "line": 58, "column": 22, - "index": 1964 + "index": 2687 + }, + { + "filePath": "src/components/AdvanceAnalyticsV2/AnalyticsV2Page.jsx", + "line": 66, + "column": 14, + "index": 2464 + }, + { + "filePath": "src/components/AdvanceAnalyticsV2/AnalyticsV2Page.jsx", + "line": 84, + "column": 14, + "index": 3126 + }, + { + "filePath": "src/components/AdvanceAnalyticsV2/AnalyticsV2Page.jsx", + "line": 102, + "column": 14, + "index": 3817 + }, + { + "filePath": "src/components/AdvanceAnalyticsV2/AnalyticsV2Page.jsx", + "line": 148, + "column": 14, + "index": 5864 }, { "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperTitleInput.jsx", "line": 62, "column": 6, - "index": 2271 + "index": 2275 }, { "filePath": "src/components/CouponDetails/CouponBulkActions.jsx", "line": 47, "column": 8, - "index": 1297 + "index": 1301 }, { "filePath": "src/components/CouponDetails/CouponFilters.jsx", "line": 10, "column": 4, - "index": 275 + "index": 279 }, { - "filePath": "src/components/learner-credit-management/cards/AssignmentModalContent.jsx", - "line": 93, + "filePath": "src/components/learner-credit-management/assignment-modal/AssignmentModalContent.jsx", + "line": 163, "column": 14, - "index": 3464 + "index": 6263 + }, + { + "filePath": "src/components/learner-credit-management/invite-modal/InviteModalContent.jsx", + "line": 133, + "column": 14, + "index": 5121 }, { "filePath": "src/components/learner-credit-management/TableTextFilter.jsx", "line": 24, "column": 6, - "index": 539 + "index": 547 }, { "filePath": "src/components/MultipleFileInputField/MultipleFileInputField.jsx", "line": 77, "column": 6, - "index": 2258 + "index": 2266 + }, + { + "filePath": "src/components/PeopleManagement/CreateGroupModalContent.jsx", + "line": 110, + "column": 10, + "index": 3851 + }, + { + "filePath": "src/components/PeopleManagement/EditGroupNameModal.jsx", + "line": 67, + "column": 10, + "index": 1964 }, { "filePath": "src/components/RenderField/index.jsx", "line": 21, "column": 6, - "index": 412 + "index": 416 + }, + { + "filePath": "src/components/ReportingConfig/EmailDeliveryMethodForm.jsx", + "line": 21, + "column": 10, + "index": 842 + }, + { + "filePath": "src/components/ReportingConfig/EmailDeliveryMethodForm.jsx", + "line": 78, + "column": 10, + "index": 3207 + }, + { + "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", + "line": 195, + "column": 8, + "index": 6827 + }, + { + "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", + "line": 229, + "column": 8, + "index": 7931 + }, + { + "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", + "line": 426, + "column": 10, + "index": 17193 + }, + { + "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", + "line": 499, + "column": 12, + "index": 20237 + }, + { + "filePath": "src/components/ReportingConfig/SFTPDeliveryMethodForm.jsx", + "line": 24, + "column": 12, + "index": 848 + }, + { + "filePath": "src/components/ReportingConfig/SFTPDeliveryMethodForm.jsx", + "line": 54, + "column": 12, + "index": 2110 + }, + { + "filePath": "src/components/ReportingConfig/SFTPDeliveryMethodForm.jsx", + "line": 92, + "column": 12, + "index": 3662 + }, + { + "filePath": "src/components/ReportingConfig/SFTPDeliveryMethodForm.jsx", + "line": 136, + "column": 12, + "index": 5517 + }, + { + "filePath": "src/components/ReportingConfig/SFTPDeliveryMethodForm.jsx", + "line": 171, + "column": 12, + "index": 7115 }, { "filePath": "src/components/settings/SettingsApiCredentialsTab/APICredentialsPage.jsx", - "line": 57, + "line": 107, "column": 8, - "index": 1799 + "index": 4321 }, { "filePath": "src/components/settings/SettingsAppearanceTab/CustomThemeModal.jsx", - "line": 84, + "line": 107, "column": 12, - "index": 3104 + "index": 4296 }, { "filePath": "src/components/settings/SettingsAppearanceTab/CustomThemeModal.jsx", - "line": 101, + "line": 128, "column": 12, - "index": 3828 + "index": 5257 }, { "filePath": "src/components/settings/SettingsAppearanceTab/CustomThemeModal.jsx", - "line": 118, + "line": 149, "column": 12, - "index": 4552 + "index": 6218 }, { "filePath": "src/components/settings/SettingsSSOTab/SSOConfigConfiguredCard.jsx", "line": 90, "column": 10, - "index": 3412 + "index": 3420 }, { "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", "line": 231, "column": 12, - "index": 8022 + "index": 8030 }, { "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", "line": 248, "column": 12, - "index": 8719 + "index": 8727 }, { "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", "line": 270, "column": 12, - "index": 9649 + "index": 9657 }, { "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", "line": 286, "column": 12, - "index": 10273 + "index": 10281 }, { "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", "line": 302, "column": 12, - "index": 10870 + "index": 10878 }, { "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", "line": 318, "column": 12, - "index": 11472 + "index": 11480 }, { "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", "line": 334, "column": 12, - "index": 12069 + "index": 12077 }, { "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", "line": 350, "column": 12, - "index": 12674 + "index": 12682 }, { "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", "line": 375, "column": 12, - "index": 13594 + "index": 13602 }, { "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", "line": 393, "column": 12, - "index": 14292 + "index": 14300 }, { "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", "line": 412, "column": 12, - "index": 15042 + "index": 15050 }, { "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", "line": 426, "column": 12, - "index": 15582 + "index": 15590 }, { "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", "line": 440, "column": 12, - "index": 16132 + "index": 16140 }, { "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", "line": 462, "column": 12, - "index": 17052 + "index": 17060 }, { "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", "line": 484, "column": 12, - "index": 17923 + "index": 17931 }, { "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", "line": 500, "column": 12, - "index": 18552 + "index": 18560 }, { "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigIDPStep.jsx", "line": 31, "column": 10, - "index": 1250 + "index": 1254 }, { "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigIDPStep.jsx", "line": 38, "column": 10, - "index": 1508 + "index": 1512 }, { "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigIDPStep.jsx", "line": 54, "column": 14, - "index": 2117 + "index": 2121 }, { "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigIDPStep.jsx", "line": 61, "column": 14, - "index": 2394 + "index": 2398 }, { "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigIDPStep.jsx", "line": 70, "column": 18, - "index": 2791 + "index": 2795 }, { "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRemindModal.jsx", - "line": 178, + "line": 189, "column": 12, - "index": 5383 + "index": 6042 }, { "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRemindModal.jsx", - "line": 188, + "line": 199, "column": 12, - "index": 5769 + "index": 6428 }, { "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRemindModal.jsx", - "line": 198, + "line": 209, "column": 12, - "index": 6093 + "index": 6752 }, { "filePath": "src/components/TextAreaAutoSize/index.jsx", "line": 19, "column": 6, - "index": 371 + "index": 375 } ], "Info": [ { "filePath": "src/components/Admin/AdminSearchForm.jsx", - "line": 83, + "line": 124, "column": 26, - "index": 2690 + "index": 4421 }, { "filePath": "src/components/CodeManagement/ManageCodesTab.jsx", "line": 175, "column": 36, - "index": 4869 + "index": 5068 }, { "filePath": "src/components/CodeRevokeModal/index.jsx", - "line": 203, + "line": 194, "column": 18, - "index": 5905 + "index": 5729 }, { "filePath": "src/components/ConfirmationModal/index.jsx", - "line": 41, - "column": 16, - "index": 853 + "line": 94, + "column": 18, + "index": 3030 }, { "filePath": "src/components/ContentHighlights/CatalogVisibility/ContentHighlightCatalogVisibilityAlert.jsx", - "line": 47, + "line": 48, "column": 18, - "index": 1591 + "index": 1651 }, { "filePath": "src/components/ContentHighlights/CatalogVisibility/ContentHighlightCatalogVisibilityAlert.jsx", - "line": 70, + "line": 79, "column": 16, - "index": 2071 + "index": 2734 }, { "filePath": "src/components/ContentHighlights/CurrentContentHighlightHeader.jsx", - "line": 85, + "line": 106, "column": 14, - "index": 2593 + "index": 3610 }, { "filePath": "src/components/ContentHighlights/DeleteHighlightSet.jsx", - "line": 131, + "line": 162, "column": 16, - "index": 4348 + "index": 5943 + }, + { + "filePath": "src/components/FeatureNotSupportedPage/index.jsx", + "line": 17, + "column": 34, + "index": 417 }, { "filePath": "src/components/learner-credit-management/LearnerCreditDisclaimer.jsx", "line": 9, "column": 15, - "index": 257 + "index": 265 }, { "filePath": "src/components/learner-credit-management/OfferUtilizationAlerts.jsx", "line": 81, "column": 14, - "index": 2621 + "index": 2629 }, { "filePath": "src/components/settings/SettingsAccessTab/DisableLinkManagementAlertModal.jsx", - "line": 44, + "line": 70, "column": 21, - "index": 984 + "index": 2095 }, { "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessLinkManagement.jsx", - "line": 93, + "line": 96, "column": 21, - "index": 3139 + "index": 3264 }, { "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessLinkManagement.jsx", - "line": 108, + "line": 132, "column": 23, - "index": 3871 + "index": 4918 }, { "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessSSOManagement.jsx", - "line": 41, + "line": 43, "column": 21, - "index": 1166 + "index": 1273 }, { "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessSubsidyRequestManagement.jsx", - "line": 56, + "line": 58, "column": 21, - "index": 1746 + "index": 1853 }, { "filePath": "src/components/settings/SettingsAppearanceTab/index.jsx", - "line": 100, + "line": 110, "column": 14, - "index": 4061 + "index": 4519 }, { "filePath": "src/components/settings/SettingsLMSTab/index.jsx", - "line": 174, + "line": 188, "column": 16, - "index": 6583 + "index": 7318 }, { "filePath": "src/components/settings/SettingsSSOTab/NewExistingSSOConfigs.jsx", - "line": 72, + "line": 74, "column": 28, - "index": 2782 + "index": 2889 }, { "filePath": "src/components/settings/SettingsSSOTab/NewSSOConfigAlerts.jsx", - "line": 56, + "line": 57, "column": 14, - "index": 1740 + "index": 1812 }, { "filePath": "src/components/settings/SettingsSSOTab/NewSSOConfigAlerts.jsx", - "line": 79, + "line": 95, "column": 14, - "index": 2505 + "index": 3193 }, { "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", "line": 210, "column": 16, - "index": 7290 + "index": 7298 }, { "filePath": "src/components/subsidy-request-modals/ApproveCouponCodeRequestModal.jsx", - "line": 100, + "line": 101, "column": 20, - "index": 2832 + "index": 2890 }, { "filePath": "src/components/subsidy-request-modals/ApproveCouponCodeRequestModal.jsx", - "line": 152, + "line": 153, "column": 20, - "index": 4859 + "index": 4917 }, { "filePath": "src/components/subsidy-request-modals/ApproveLicenseRequestModal.jsx", - "line": 99, + "line": 113, "column": 20, - "index": 2973 + "index": 3579 }, { "filePath": "src/components/subsidy-request-modals/ApproveLicenseRequestModal.jsx", - "line": 151, + "line": 210, "column": 20, - "index": 5141 + "index": 8191 }, { "filePath": "src/components/subsidy-request-modals/DeclineSubsidyRequestModal.jsx", "line": 75, "column": 18, - "index": 1881 + "index": 1889 } ], "Card": [ { "filePath": "src/components/Admin/AIAnalyticsSummary.jsx", - "line": 17, - "column": 2, - "index": 450 + "line": 34, + "column": 4, + "index": 1261 }, { "filePath": "src/components/BulkEnrollmentPage/stepper/ReviewItem.jsx", "line": 19, "column": 6, - "index": 398 + "index": 406 }, { "filePath": "src/components/ContentHighlights/ContentHighlightCardItem.jsx", - "line": 34, + "line": 62, "column": 4, - "index": 1159 + "index": 2219 }, { "filePath": "src/components/ContentHighlights/ContentHighlightSetCard.jsx", - "line": 34, + "line": 58, "column": 4, - "index": 951 + "index": 1871 }, { "filePath": "src/components/ContentHighlights/SkeletonContentCard.jsx", "line": 5, "column": 2, - "index": 103 + "index": 107 }, { "filePath": "src/components/ContentHighlights/ZeroState/ZeroStateHighlights.jsx", - "line": 43, + "line": 44, "column": 8, - "index": 1518 + "index": 1577 + }, + { + "filePath": "src/components/learner-credit-management/assignment-modal/AssignmentModalContent.jsx", + "line": 221, + "column": 14, + "index": 9245 + }, + { + "filePath": "src/components/learner-credit-management/assignment-modal/AssignmentModalContent.jsx", + "line": 244, + "column": 16, + "index": 10463 + }, + { + "filePath": "src/components/learner-credit-management/assignment-modal/AssignmentModalSummary.jsx", + "line": 59, + "column": 8, + "index": 1763 + }, + { + "filePath": "src/components/learner-credit-management/assignment-modal/AssignmentModalSummary.jsx", + "line": 75, + "column": 10, + "index": 2283 }, { "filePath": "src/components/learner-credit-management/AssignMoreCoursesEmptyStateMinimal.jsx", - "line": 23, + "line": 24, "column": 4, - "index": 751 + "index": 810 }, { - "filePath": "src/components/learner-credit-management/BudgetDetailPageHeader.jsx", - "line": 75, - "column": 6, - "index": 2358 + "filePath": "src/components/learner-credit-management/BudgetOverviewContent.jsx", + "line": 72, + "column": 4, + "index": 2289 }, { - "filePath": "src/components/learner-credit-management/cards/AssignmentModalContent.jsx", - "line": 126, - "column": 14, - "index": 4889 + "filePath": "src/components/learner-credit-management/cards/BaseCourseCard.jsx", + "line": 40, + "column": 4, + "index": 1111 }, { - "filePath": "src/components/learner-credit-management/cards/AssignmentModalContent.jsx", - "line": 143, - "column": 16, - "index": 5764 + "filePath": "src/components/learner-credit-management/empty-state/NoAssignableBudgetActivity.jsx", + "line": 34, + "column": 4, + "index": 1222 }, { - "filePath": "src/components/learner-credit-management/cards/AssignmentModalSummary.jsx", - "line": 53, + "filePath": "src/components/learner-credit-management/empty-state/NoBnEBudgetActivity.jsx", + "line": 39, + "column": 4, + "index": 1311 + }, + { + "filePath": "src/components/learner-credit-management/invite-modal/InviteModalBudgetCard.jsx", + "line": 70, + "column": 4, + "index": 2231 + }, + { + "filePath": "src/components/learner-credit-management/invite-modal/InviteModalPermissions.jsx", + "line": 25, "column": 8, - "index": 1454 + "index": 846 }, { - "filePath": "src/components/learner-credit-management/cards/AssignmentModalSummary.jsx", - "line": 69, - "column": 10, - "index": 1968 + "filePath": "src/components/learner-credit-management/invite-modal/InviteModalPermissions.jsx", + "line": 34, + "column": 8, + "index": 1250 }, { - "filePath": "src/components/learner-credit-management/cards/BaseCourseCard.jsx", - "line": 43, - "column": 4, - "index": 1003 + "filePath": "src/components/learner-credit-management/invite-modal/InviteModalSummary.jsx", + "line": 23, + "column": 6, + "index": 768 + }, + { + "filePath": "src/components/learner-credit-management/invite-modal/InviteSummaryCount.jsx", + "line": 6, + "column": 2, + "index": 166 }, { "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", "line": 12, "column": 6, - "index": 295 + "index": 299 }, { "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", "line": 21, "column": 6, - "index": 618 + "index": 622 }, { "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", "line": 30, "column": 6, - "index": 914 + "index": 918 }, { "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", "line": 60, "column": 10, - "index": 1613 + "index": 1617 }, { "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", "line": 72, "column": 10, - "index": 2090 + "index": 2094 }, { "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", "line": 84, "column": 10, - "index": 2533 + "index": 2537 }, { "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", "line": 108, "column": 8, - "index": 3385 + "index": 3389 }, { "filePath": "src/components/learner-credit-management/MultipleBudgetsPage.jsx", - "line": 45, + "line": 67, "column": 8, - "index": 1029 + "index": 1853 }, { - "filePath": "src/components/learner-credit-management/NoBudgetActivityEmptyState.jsx", - "line": 34, + "filePath": "src/components/learner-credit-management/SubBudgetCard.jsx", + "line": 153, "column": 4, - "index": 1233 + "index": 4563 }, { - "filePath": "src/components/learner-credit-management/SubBudgetCard.jsx", - "line": 109, + "filePath": "src/components/PeopleManagement/GroupDetailCard.jsx", + "line": 9, "column": 4, - "index": 3262 + "index": 292 + }, + { + "filePath": "src/components/PeopleManagement/GroupDetailPage.jsx", + "line": 73, + "column": 10, + "index": 2576 + }, + { + "filePath": "src/components/PeopleManagement/ZeroState.jsx", + "line": 19, + "column": 4, + "index": 705 }, { "filePath": "src/components/settings/SettingsApiCredentialsTab/ZeroStateCard.jsx", - "line": 34, + "line": 35, "column": 4, - "index": 1133 + "index": 1205 }, { "filePath": "src/components/settings/SettingsAppearanceTab/ThemeCard.jsx", "line": 25, "column": 4, - "index": 595 + "index": 599 }, { "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", "line": 226, "column": 10, - "index": 7501 + "index": 7508 }, { "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 164, + "line": 248, "column": 6, - "index": 5156 + "index": 8270 }, { "filePath": "src/components/settings/SettingsLMSTab/NoConfigCard.jsx", - "line": 19, + "line": 20, "column": 4, - "index": 468 + "index": 540 }, { "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", "line": 103, "column": 10, - "index": 2963 + "index": 2971 }, { "filePath": "src/components/settings/SettingsSSOTab/NewSSOConfigCard.jsx", - "line": 163, + "line": 195, "column": 4, - "index": 4998 + "index": 6318 }, { "filePath": "src/components/settings/SettingsSSOTab/NoSSOCard.jsx", - "line": 18, + "line": 20, "column": 4, - "index": 427 + "index": 534 }, { "filePath": "src/components/subscriptions/MultipleSubscriptionsPage.jsx", - "line": 38, + "line": 39, "column": 6, - "index": 1050 + "index": 1118 }, { "filePath": "src/components/subscriptions/SubscriptionCard.jsx", "line": 120, "column": 4, - "index": 3216 + "index": 3220 }, { "filePath": "src/components/subscriptions/SubscriptionZeroStateMessage.jsx", - "line": 19, + "line": 20, "column": 6, - "index": 715 + "index": 783 } ], "Card.Section": [ { "filePath": "src/components/Admin/AIAnalyticsSummary.jsx", - "line": 18, - "column": 4, - "index": 505 + "line": 35, + "column": 6, + "index": 1318 }, { "filePath": "src/components/BulkEnrollmentPage/stepper/ReviewItem.jsx", "line": 20, "column": 8, - "index": 413 + "index": 421 }, { "filePath": "src/components/ContentHighlights/ContentHighlightCardItem.jsx", - "line": 48, + "line": 78, "column": 10, - "index": 1651 + "index": 2733 }, { "filePath": "src/components/ContentHighlights/ContentHighlightSetCard.jsx", - "line": 41, + "line": 65, "column": 6, - "index": 1154 + "index": 2074 }, { "filePath": "src/components/ContentHighlights/SkeletonContentCard.jsx", "line": 7, "column": 4, - "index": 192 + "index": 196 }, { "filePath": "src/components/ContentHighlights/ZeroState/ZeroStateCardText.jsx", "line": 6, "column": 2, - "index": 173 + "index": 177 + }, + { + "filePath": "src/components/learner-credit-management/assignment-modal/AssignmentModalContent.jsx", + "line": 222, + "column": 16, + "index": 9302 + }, + { + "filePath": "src/components/learner-credit-management/assignment-modal/AssignmentModalContent.jsx", + "line": 245, + "column": 18, + "index": 10522 + }, + { + "filePath": "src/components/learner-credit-management/assignment-modal/AssignmentModalSummary.jsx", + "line": 65, + "column": 10, + "index": 1942 + }, + { + "filePath": "src/components/learner-credit-management/assignment-modal/AssignmentModalSummary.jsx", + "line": 81, + "column": 12, + "index": 2505 }, { "filePath": "src/components/learner-credit-management/AssignMoreCoursesEmptyStateMinimal.jsx", - "line": 29, + "line": 30, "column": 8, - "index": 1032 + "index": 1091 }, { - "filePath": "src/components/learner-credit-management/BudgetDetailPageHeader.jsx", - "line": 76, + "filePath": "src/components/learner-credit-management/BudgetOverviewContent.jsx", + "line": 73, + "column": 6, + "index": 2302 + }, + { + "filePath": "src/components/learner-credit-management/cards/BaseCourseCard.jsx", + "line": 64, "column": 8, - "index": 2406 + "index": 1987 }, { - "filePath": "src/components/learner-credit-management/cards/AssignmentModalContent.jsx", - "line": 127, - "column": 16, - "index": 4946 + "filePath": "src/components/learner-credit-management/empty-state/NoAssignableBudgetActivity.jsx", + "line": 35, + "column": 6, + "index": 1235 }, { - "filePath": "src/components/learner-credit-management/cards/AssignmentModalContent.jsx", - "line": 144, - "column": 18, - "index": 5823 + "filePath": "src/components/learner-credit-management/empty-state/NoAssignableBudgetActivity.jsx", + "line": 53, + "column": 6, + "index": 1812 }, { - "filePath": "src/components/learner-credit-management/cards/AssignmentModalSummary.jsx", - "line": 59, - "column": 10, - "index": 1633 + "filePath": "src/components/learner-credit-management/empty-state/NoBnEBudgetActivity.jsx", + "line": 40, + "column": 6, + "index": 1341 }, { - "filePath": "src/components/learner-credit-management/cards/AssignmentModalSummary.jsx", - "line": 75, - "column": 12, - "index": 2189 + "filePath": "src/components/learner-credit-management/empty-state/NoBnEBudgetActivity.jsx", + "line": 58, + "column": 6, + "index": 1945 }, { - "filePath": "src/components/learner-credit-management/cards/BaseCourseCard.jsx", - "line": 61, + "filePath": "src/components/learner-credit-management/invite-modal/InviteModalBudgetCard.jsx", + "line": 71, + "column": 6, + "index": 2277 + }, + { + "filePath": "src/components/learner-credit-management/invite-modal/InviteModalSummary.jsx", + "line": 29, "column": 8, - "index": 1564 + "index": 953 }, { "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", "line": 13, "column": 8, - "index": 328 + "index": 332 }, { "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", "line": 22, "column": 8, - "index": 651 + "index": 655 }, { "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", "line": 31, "column": 8, - "index": 947 + "index": 951 }, { "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", "line": 61, "column": 12, - "index": 1650 + "index": 1654 }, { "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", "line": 73, "column": 12, - "index": 2127 + "index": 2131 }, { "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", "line": 85, "column": 12, - "index": 2570 + "index": 2574 }, { "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", "line": 109, "column": 10, - "index": 3420 + "index": 3424 }, { "filePath": "src/components/learner-credit-management/MultipleBudgetsPage.jsx", - "line": 46, + "line": 68, "column": 10, - "index": 1046 + "index": 1870 }, { - "filePath": "src/components/learner-credit-management/NoBudgetActivityEmptyState.jsx", - "line": 35, - "column": 6, - "index": 1246 + "filePath": "src/components/learner-credit-management/SubBudgetCardUtilization.jsx", + "line": 21, + "column": 4, + "index": 552 }, { - "filePath": "src/components/learner-credit-management/NoBudgetActivityEmptyState.jsx", - "line": 53, + "filePath": "src/components/PeopleManagement/GroupDetailCard.jsx", + "line": 11, "column": 6, - "index": 1823 + "index": 376 }, { - "filePath": "src/components/learner-credit-management/SubBudgetCard.jsx", - "line": 79, - "column": 4, - "index": 2250 + "filePath": "src/components/PeopleManagement/GroupDetailPage.jsx", + "line": 93, + "column": 14, + "index": 3300 }, { "filePath": "src/components/settings/SettingsApiCredentialsTab/ZeroStateCard.jsx", - "line": 40, + "line": 41, "column": 6, - "index": 1304 + "index": 1376 }, { "filePath": "src/components/settings/SettingsAppearanceTab/ThemeCard.jsx", "line": 26, "column": 6, - "index": 635 + "index": 639 }, { "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", "line": 227, "column": 12, - "index": 7537 + "index": 7544 }, { "filePath": "src/components/settings/SettingsLMSTab/NoConfigCard.jsx", - "line": 25, + "line": 26, "column": 6, - "index": 639 + "index": 711 }, { "filePath": "src/components/settings/SettingsSSOTab/NoSSOCard.jsx", - "line": 24, + "line": 30, "column": 6, - "index": 597 + "index": 894 }, { "filePath": "src/components/subscriptions/MultipleSubscriptionsPage.jsx", - "line": 39, + "line": 40, "column": 8, - "index": 1065 + "index": 1133 }, { "filePath": "src/components/subscriptions/SubscriptionCard.jsx", "line": 103, "column": 6, - "index": 2649 + "index": 2653 }, { "filePath": "src/components/subscriptions/SubscriptionZeroStateMessage.jsx", - "line": 20, + "line": 21, "column": 8, - "index": 747 + "index": 815 } ], "Badge": [ { "filePath": "src/components/Admin/AIAnalyticsSummary.jsx", - "line": 19, - "column": 6, - "index": 526 + "line": 36, + "column": 8, + "index": 1341 }, { "filePath": "src/components/Admin/licenses/LicenseAllocationHeader.jsx", - "line": 23, + "line": 30, "column": 8, - "index": 1181 + "index": 1509 }, { "filePath": "src/components/Admin/licenses/LicenseAllocationHeader.jsx", - "line": 27, + "line": 41, "column": 8, - "index": 1365 + "index": 2074 }, { - "filePath": "src/components/learner-credit-management/BudgetDetailPageHeader.jsx", - "line": 26, - "column": 4, - "index": 769 + "filePath": "src/components/learner-credit-management/BudgetStatusSubtitle.jsx", + "line": 92, + "column": 8, + "index": 3874 }, { "filePath": "src/components/learner-credit-management/cards/BaseCourseCard.jsx", - "line": 62, - "column": 10, - "index": 1589 + "line": 67, + "column": 14, + "index": 2062 }, { "filePath": "src/components/learner-credit-management/SubBudgetCard.jsx", - "line": 55, + "line": 131, "column": 8, - "index": 1501 + "index": 3817 }, { "filePath": "src/components/settings/SettingsAccessTab/StatusTableCell.jsx", - "line": 8, + "line": 9, "column": 4, - "index": 192 + "index": 260 }, { "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", "line": 239, "column": 18, - "index": 7901 - }, - { - "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 252, - "column": 20, - "index": 8500 + "index": 7908 }, { "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 257, + "line": 367, "column": 16, - "index": 8674 + "index": 13413 }, { "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", "line": 168, "column": 43, - "index": 5565 + "index": 5573 }, { "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", "line": 169, "column": 63, - "index": 5675 + "index": 5683 }, { "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", "line": 170, "column": 64, - "index": 5781 + "index": 5789 }, { "filePath": "src/components/settings/SettingsSSOTab/NewSSOConfigCard.jsx", - "line": 117, + "line": 133, "column": 8, - "index": 3819 + "index": 4433 }, { "filePath": "src/components/settings/SettingsSSOTab/NewSSOConfigCard.jsx", - "line": 126, + "line": 146, "column": 8, - "index": 4082 + "index": 4875 }, { "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/LicenseManagementUserBadge.jsx", "line": 18, "column": 11, - "index": 352 + "index": 356 }, { "filePath": "src/components/subscriptions/SubscriptionCard.jsx", "line": 71, "column": 10, - "index": 1935 + "index": 1939 }, { "filePath": "src/components/SubsidyRequestManagementTable/RequestStatusCell.jsx", "line": 23, "column": 4, - "index": 519 + "index": 523 } ], "Stack": [ { "filePath": "src/components/Admin/AIAnalyticsSummary.jsx", - "line": 22, - "column": 6, - "index": 701 + "line": 39, + "column": 8, + "index": 1522 }, { "filePath": "src/components/Admin/AIAnalyticsSummary.jsx", - "line": 59, + "line": 76, "column": 6, - "index": 2010 + "index": 2836 }, { "filePath": "src/components/Admin/AIAnalyticsSummarySkeleton.jsx", "line": 5, "column": 2, - "index": 121 + "index": 125 + }, + { + "filePath": "src/components/AdvanceAnalyticsV2/AnalyticsV2Page.jsx", + "line": 42, + "column": 6, + "index": 1554 }, { "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentSubmit.jsx", "line": 138, "column": 6, - "index": 3994 + "index": 3998 }, { "filePath": "src/components/CodeManagement/ManageRequestsTab.jsx", "line": 50, "column": 4, - "index": 1835 + "index": 1839 }, { "filePath": "src/components/ContentHighlights/ContentHighlightCardContainer.jsx", - "line": 12, + "line": 14, "column": 4, - "index": 511 + "index": 596 }, { "filePath": "src/components/ContentHighlights/CurrentContentHighlights.jsx", "line": 10, "column": 2, - "index": 267 + "index": 271 }, { - "filePath": "src/components/learner-credit-management/AssignmentDetailsTableCell.jsx", - "line": 25, + "filePath": "src/components/learner-credit-management/assignment-modal/AssignmentAllocationHelpCollapsibles.jsx", + "line": 14, "column": 4, - "index": 954 + "index": 618 }, { - "filePath": "src/components/learner-credit-management/AssignmentRowActionTableCell.jsx", - "line": 10, - "column": 4, - "index": 396 + "filePath": "src/components/learner-credit-management/assignment-modal/AssignmentModalContent.jsx", + "line": 130, + "column": 6, + "index": 4834 }, { - "filePath": "src/components/learner-credit-management/BudgetDetailActivityTabContents.jsx", - "line": 52, - "column": 4, - "index": 2007 + "filePath": "src/components/learner-credit-management/assignment-modal/AssignmentModalContent.jsx", + "line": 220, + "column": 12, + "index": 9213 }, { - "filePath": "src/components/learner-credit-management/BudgetDetailPage.jsx", - "line": 48, - "column": 6, - "index": 1714 + "filePath": "src/components/learner-credit-management/assignment-modal/AssignmentModalContent.jsx", + "line": 223, + "column": 18, + "index": 9358 }, { - "filePath": "src/components/learner-credit-management/BudgetDetailPageHeader.jsx", - "line": 25, - "column": 2, - "index": 726 + "filePath": "src/components/learner-credit-management/assignment-modal/AssignmentModalContent.jsx", + "line": 224, + "column": 20, + "index": 9396 }, { - "filePath": "src/components/learner-credit-management/BudgetDetailPageHeader.jsx", - "line": 73, - "column": 4, - "index": 2260 + "filePath": "src/components/learner-credit-management/assignment-modal/AssignmentModalContent.jsx", + "line": 235, + "column": 22, + "index": 10038 }, { - "filePath": "src/components/learner-credit-management/BudgetDetailPageOverviewAvailability.jsx", - "line": 17, - "column": 4, - "index": 583 + "filePath": "src/components/learner-credit-management/assignment-modal/AssignmentModalmportantDates.jsx", + "line": 36, + "column": 2, + "index": 1437 }, { - "filePath": "src/components/learner-credit-management/BudgetDetailPageOverviewAvailability.jsx", - "line": 19, + "filePath": "src/components/learner-credit-management/assignment-modal/AssignmentModalmportantDates.jsx", + "line": 64, "column": 6, - "index": 662 + "index": 2317 }, { - "filePath": "src/components/learner-credit-management/BudgetDetailPageOverviewAvailability.jsx", - "line": 25, + "filePath": "src/components/learner-credit-management/assignment-modal/AssignmentModalSummary.jsx", + "line": 58, "column": 6, - "index": 1007 + "index": 1737 }, { - "filePath": "src/components/learner-credit-management/BudgetDetailPageOverviewAvailability.jsx", - "line": 95, - "column": 2, - "index": 3122 + "filePath": "src/components/learner-credit-management/assignment-modal/AssignmentModalSummary.jsx", + "line": 82, + "column": 14, + "index": 2551 }, { - "filePath": "src/components/learner-credit-management/BudgetDetailPageOverviewUtilization.jsx", - "line": 59, - "column": 6, - "index": 1485 + "filePath": "src/components/learner-credit-management/assignment-modal/AssignmentModalSummary.jsx", + "line": 84, + "column": 16, + "index": 2703 }, { - "filePath": "src/components/learner-credit-management/BudgetDetailPageOverviewUtilization.jsx", - "line": 62, - "column": 12, - "index": 1565 + "filePath": "src/components/learner-credit-management/assignment-modal/AssignmentModalSummaryErrorState.jsx", + "line": 7, + "column": 2, + "index": 239 }, { - "filePath": "src/components/learner-credit-management/BudgetDetailPageOverviewUtilization.jsx", - "line": 64, - "column": 14, - "index": 1688 + "filePath": "src/components/learner-credit-management/assignment-modal/AssignmentModalSummaryLearnerList.jsx", + "line": 37, + "column": 6, + "index": 1563 }, { - "filePath": "src/components/learner-credit-management/BudgetDetailPageOverviewUtilization.jsx", - "line": 70, + "filePath": "src/components/learner-credit-management/assignment-modal/AssignmentModalSummaryLearnerList.jsx", + "line": 42, "column": 16, - "index": 2054 + "index": 1810 + }, + { + "filePath": "src/components/learner-credit-management/assignment-modal/NewAssignmentModalDropdown.jsx", + "line": 69, + "column": 12, + "index": 2935 + }, + { + "filePath": "src/components/learner-credit-management/AssignmentDetailsTableCell.jsx", + "line": 26, + "column": 4, + "index": 1070 + }, + { + "filePath": "src/components/learner-credit-management/AssignmentEnrollByDateCell.jsx", + "line": 41, + "column": 4, + "index": 1356 + }, + { + "filePath": "src/components/learner-credit-management/AssignmentEnrollByDateHeader.jsx", + "line": 22, + "column": 4, + "index": 888 }, { - "filePath": "src/components/learner-credit-management/cards/AssignmentAllocationHelpCollapsibles.jsx", + "filePath": "src/components/learner-credit-management/AssignmentRowActionTableCell.jsx", "line": 10, - "column": 2, - "index": 416 + "column": 4, + "index": 400 }, { - "filePath": "src/components/learner-credit-management/cards/AssignmentModalContent.jsx", - "line": 82, + "filePath": "src/components/learner-credit-management/BudgetDetail.jsx", + "line": 15, "column": 6, - "index": 3056 + "index": 458 }, { - "filePath": "src/components/learner-credit-management/cards/AssignmentModalContent.jsx", - "line": 125, - "column": 12, - "index": 4857 + "filePath": "src/components/learner-credit-management/BudgetDetail.jsx", + "line": 17, + "column": 8, + "index": 537 }, { - "filePath": "src/components/learner-credit-management/cards/AssignmentModalContent.jsx", - "line": 128, - "column": 18, - "index": 5002 + "filePath": "src/components/learner-credit-management/BudgetDetail.jsx", + "line": 30, + "column": 4, + "index": 992 }, { - "filePath": "src/components/learner-credit-management/cards/AssignmentModalContent.jsx", - "line": 129, - "column": 20, - "index": 5040 + "filePath": "src/components/learner-credit-management/BudgetDetail.jsx", + "line": 32, + "column": 6, + "index": 1071 }, { - "filePath": "src/components/learner-credit-management/cards/AssignmentModalContent.jsx", - "line": 134, - "column": 22, - "index": 5339 + "filePath": "src/components/learner-credit-management/BudgetDetail.jsx", + "line": 38, + "column": 6, + "index": 1416 }, { - "filePath": "src/components/learner-credit-management/cards/AssignmentModalSummary.jsx", - "line": 52, - "column": 6, - "index": 1428 + "filePath": "src/components/learner-credit-management/BudgetDetailActivityTabContents.jsx", + "line": 83, + "column": 4, + "index": 3188 }, { - "filePath": "src/components/learner-credit-management/cards/AssignmentModalSummary.jsx", - "line": 76, - "column": 14, - "index": 2235 + "filePath": "src/components/learner-credit-management/BudgetDetailPage.jsx", + "line": 70, + "column": 6, + "index": 2523 }, { - "filePath": "src/components/learner-credit-management/cards/AssignmentModalSummary.jsx", - "line": 78, - "column": 16, - "index": 2386 + "filePath": "src/components/learner-credit-management/BudgetDetailPageHeader.jsx", + "line": 25, + "column": 4, + "index": 775 }, { - "filePath": "src/components/learner-credit-management/cards/AssignmentModalSummaryErrorState.jsx", - "line": 6, + "filePath": "src/components/learner-credit-management/BudgetDetailPageOverviewAvailability.jsx", + "line": 425, "column": 2, - "index": 167 + "index": 17274 }, { - "filePath": "src/components/learner-credit-management/cards/AssignmentModalSummaryLearnerList.jsx", - "line": 29, + "filePath": "src/components/learner-credit-management/BudgetDetailPageOverviewUtilization.jsx", + "line": 105, "column": 6, - "index": 1038 + "index": 3233 }, { - "filePath": "src/components/learner-credit-management/cards/AssignmentModalSummaryLearnerList.jsx", - "line": 34, + "filePath": "src/components/learner-credit-management/BudgetDetailPageOverviewUtilization.jsx", + "line": 108, + "column": 12, + "index": 3313 + }, + { + "filePath": "src/components/learner-credit-management/BudgetDetailPageOverviewUtilization.jsx", + "line": 116, + "column": 14, + "index": 3701 + }, + { + "filePath": "src/components/learner-credit-management/BudgetDetailPageOverviewUtilization.jsx", + "line": 126, "column": 16, - "index": 1285 + "index": 4325 + }, + { + "filePath": "src/components/learner-credit-management/BudgetStatusSubtitle.jsx", + "line": 90, + "column": 4, + "index": 3793 }, { "filePath": "src/components/learner-credit-management/cards/BaseCourseCard.jsx", - "line": 55, + "line": 52, "column": 12, - "index": 1342 + "index": 1450 + }, + { + "filePath": "src/components/learner-credit-management/cards/BaseCourseCard.jsx", + "line": 65, + "column": 10, + "index": 2012 }, { "filePath": "src/components/learner-credit-management/EmailAddressTableCell.jsx", "line": 51, "column": 4, - "index": 2088 + "index": 2096 }, { - "filePath": "src/components/learner-credit-management/LearnerCreditDisclaimer.jsx", - "line": 8, + "filePath": "src/components/learner-credit-management/invite-modal/EnterpriseCustomerUserDatatable.jsx", + "line": 27, "column": 2, - "index": 194 + "index": 798 }, { - "filePath": "src/components/learner-credit-management/MultipleBudgetsPage.jsx", - "line": 42, + "filePath": "src/components/learner-credit-management/invite-modal/InviteModalPermissions.jsx", + "line": 24, "column": 6, - "index": 939 + "index": 820 }, { - "filePath": "src/components/learner-credit-management/MultipleBudgetsPicker.jsx", - "line": 20, + "filePath": "src/components/learner-credit-management/invite-modal/InviteModalSummary.jsx", + "line": 22, "column": 4, - "index": 378 + "index": 727 }, { - "filePath": "src/components/learner-credit-management/MultipleBudgetsPicker.jsx", - "line": 26, - "column": 10, - "index": 507 + "filePath": "src/components/learner-credit-management/invite-modal/InviteModalSummaryDuplicate.jsx", + "line": 6, + "column": 2, + "index": 170 + }, + { + "filePath": "src/components/learner-credit-management/invite-modal/InviteModalSummaryErrorState.jsx", + "line": 6, + "column": 2, + "index": 171 + }, + { + "filePath": "src/components/learner-credit-management/invite-modal/InviteModalSummaryLearnerList.jsx", + "line": 28, + "column": 6, + "index": 1035 + }, + { + "filePath": "src/components/learner-credit-management/invite-modal/InviteModalSummaryLearnerList.jsx", + "line": 33, + "column": 16, + "index": 1282 + }, + { + "filePath": "src/components/learner-credit-management/LearnerCreditDisclaimer.jsx", + "line": 8, + "column": 2, + "index": 202 + }, + { + "filePath": "src/components/learner-credit-management/members-tab/MemberDetailsTableCell.jsx", + "line": 68, + "column": 4, + "index": 1849 + }, + { + "filePath": "src/components/learner-credit-management/members-tab/MemberEnrollmentsTableColumnHeader.jsx", + "line": 12, + "column": 2, + "index": 281 + }, + { + "filePath": "src/components/learner-credit-management/members-tab/MemberStatusTableColumnHeader.jsx", + "line": 12, + "column": 2, + "index": 276 + }, + { + "filePath": "src/components/learner-credit-management/MultipleBudgetsPage.jsx", + "line": 64, + "column": 6, + "index": 1763 }, { "filePath": "src/components/learner-credit-management/SpendTableAmountContents.jsx", "line": 10, "column": 4, - "index": 279 + "index": 283 }, { "filePath": "src/components/learner-credit-management/SpendTableEnrollmentDetails.jsx", "line": 18, "column": 2, - "index": 546 + "index": 550 }, { "filePath": "src/components/learner-credit-management/SubBudgetCard.jsx", - "line": 54, + "line": 130, "column": 6, - "index": 1452 + "index": 3768 }, { "filePath": "src/components/learner-credit-management/SubBudgetCard.jsx", - "line": 114, + "line": 159, "column": 8, - "index": 3359 + "index": 4703 }, { "filePath": "src/components/settings/SettingsSSOTab/SsoErrorPage.jsx", - "line": 46, + "line": 67, "column": 8, - "index": 1353 + "index": 1997 }, { "filePath": "src/components/subscriptions/SubscriptionCard.jsx", "line": 70, "column": 8, - "index": 1886 + "index": 1890 }, { "filePath": "src/components/subscriptions/SubscriptionCard.jsx", "line": 127, "column": 8, - "index": 3393 + "index": 3397 }, { "filePath": "src/components/subscriptions/SubscriptionSubsidyRequests.jsx", - "line": 44, + "line": 45, "column": 4, - "index": 1770 + "index": 1838 } ], "useToggle": [ { "filePath": "src/components/Admin/AIAnalyticsSummary.jsx", - "line": 52, + "line": 69, "column": 70, - "index": 1764 + "index": 2590 }, { "filePath": "src/components/Admin/AIAnalyticsSummary.jsx", - "line": 53, + "line": 70, "column": 82, - "index": 1864 + "index": 2690 + }, + { + "filePath": "src/components/Admin/tabs/DownloadCSVButton.jsx", + "line": 14, + "column": 32, + "index": 544 + }, + { + "filePath": "src/components/AdvanceAnalyticsV2/DownloadCSVButton.jsx", + "line": 14, + "column": 49, + "index": 506 + }, + { + "filePath": "src/components/BudgetExpiryAlertAndModal/index.jsx", + "line": 21, + "column": 47, + "index": 809 + }, + { + "filePath": "src/components/BudgetExpiryAlertAndModal/index.jsx", + "line": 22, + "column": 47, + "index": 874 }, { "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentSubmit.jsx", "line": 100, "column": 74, - "index": 3004 + "index": 3008 }, { "filePath": "src/components/BulkEnrollmentPage/stepper/ReviewList.jsx", "line": 44, "column": 42, - "index": 1235 + "index": 1239 }, { - "filePath": "src/components/ContentHighlights/DeleteHighlightSet.jsx", + "filePath": "src/components/ContentHighlights/ContentHighlightsCardItemsContainer.jsx", "line": 25, + "column": 65, + "index": 1080 + }, + { + "filePath": "src/components/ContentHighlights/DeleteArchivedHighlightsDialogs.jsx", + "line": 20, + "column": 47, + "index": 964 + }, + { + "filePath": "src/components/ContentHighlights/DeleteHighlightSet.jsx", + "line": 26, "column": 32, - "index": 1008 + "index": 1090 }, { "filePath": "src/components/ContentHighlights/HighlightStepper/ContentHighlightStepper.jsx", - "line": 52, + "line": 54, "column": 62, - "index": 2048 + "index": 2150 }, { - "filePath": "src/components/learner-credit-management/assignments-status-chips/FailedBadEmail.jsx", - "line": 10, - "column": 32, - "index": 367 + "filePath": "src/components/learner-credit-management/assignment-modal/CreateAllocationErrorAlertModals.jsx", + "line": 17, + "column": 74, + "index": 840 }, { - "filePath": "src/components/learner-credit-management/assignments-status-chips/FailedCancellation.jsx", - "line": 9, - "column": 32, - "index": 319 + "filePath": "src/components/learner-credit-management/assignment-modal/CreateAllocationErrorAlertModals.jsx", + "line": 18, + "column": 71, + "index": 929 }, { - "filePath": "src/components/learner-credit-management/assignments-status-chips/FailedRedemption.jsx", - "line": 9, - "column": 32, - "index": 317 + "filePath": "src/components/learner-credit-management/assignment-modal/CreateAllocationErrorAlertModals.jsx", + "line": 19, + "column": 74, + "index": 1021 }, { - "filePath": "src/components/learner-credit-management/assignments-status-chips/FailedReminder.jsx", - "line": 7, + "filePath": "src/components/learner-credit-management/assignment-modal/NewAssignmentModalButton.jsx", + "line": 42, "column": 32, - "index": 255 + "index": 1964 }, { - "filePath": "src/components/learner-credit-management/assignments-status-chips/FailedSystem.jsx", - "line": 9, - "column": 32, - "index": 313 + "filePath": "src/components/learner-credit-management/BudgetDetailPageWrapper.jsx", + "line": 84, + "column": 65, + "index": 3005 }, { - "filePath": "src/components/learner-credit-management/assignments-status-chips/NotifyingLearner.jsx", - "line": 8, + "filePath": "src/components/learner-credit-management/data/hooks/useCancelContentAssignments.js", + "line": 17, "column": 32, - "index": 297 + "index": 638 }, { - "filePath": "src/components/learner-credit-management/assignments-status-chips/WaitingForLearner.jsx", - "line": 11, + "filePath": "src/components/learner-credit-management/data/hooks/useRemindContentAssignments.js", + "line": 17, "column": 32, - "index": 432 + "index": 638 }, { - "filePath": "src/components/learner-credit-management/cards/CreateAllocationErrorAlertModals.jsx", + "filePath": "src/components/learner-credit-management/data/hooks/useStatusChip.jsx", "line": 17, - "column": 74, - "index": 815 + "column": 41, + "index": 708 }, { - "filePath": "src/components/learner-credit-management/cards/CreateAllocationErrorAlertModals.jsx", - "line": 18, - "column": 71, - "index": 904 + "filePath": "src/components/learner-credit-management/invite-modal/InviteMembersModalWrapper.jsx", + "line": 33, + "column": 80, + "index": 1555 }, { - "filePath": "src/components/learner-credit-management/cards/CreateAllocationErrorAlertModals.jsx", - "line": 19, - "column": 74, - "index": 996 + "filePath": "src/components/PeopleManagement/CreateGroupModal.jsx", + "line": 25, + "column": 80, + "index": 1178 }, { - "filePath": "src/components/learner-credit-management/cards/NewAssignmentModalButton.jsx", - "line": 40, - "column": 32, - "index": 1642 + "filePath": "src/components/PeopleManagement/DeleteGroupModal.jsx", + "line": 20, + "column": 47, + "index": 706 }, { - "filePath": "src/components/learner-credit-management/data/hooks/useCancelContentAssignments.js", - "line": 15, - "column": 32, - "index": 555 + "filePath": "src/components/PeopleManagement/EditGroupNameModal.jsx", + "line": 17, + "column": 47, + "index": 619 }, { - "filePath": "src/components/learner-credit-management/data/hooks/useRemindContentAssignments.js", - "line": 15, - "column": 32, - "index": 555 + "filePath": "src/components/PeopleManagement/GroupDetailPage.jsx", + "line": 19, + "column": 65, + "index": 884 + }, + { + "filePath": "src/components/PeopleManagement/GroupDetailPage.jsx", + "line": 20, + "column": 59, + "index": 961 + }, + { + "filePath": "src/components/PeopleManagement/index.jsx", + "line": 33, + "column": 47, + "index": 1495 }, { "filePath": "src/components/settings/SettingsApiCredentialsTab/RegenerateCredentialWarningModal.jsx", "line": 20, "column": 32, - "index": 518 + "index": 526 }, { "filePath": "src/components/settings/SettingsAppearanceTab/index.jsx", - "line": 23, + "line": 24, "column": 65, - "index": 1256 + "index": 1328 }, { "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/DownloadCsvButton.jsx", "line": 38, "column": 32, - "index": 1163 + "index": 1171 }, { "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", "line": 40, "column": 47, - "index": 1636 + "index": 1643 }, { "filePath": "src/components/settings/SettingsLMSTab/ExistingLMSCardDeck.jsx", - "line": 14, + "line": 15, "column": 47, - "index": 421 + "index": 489 }, { "filePath": "src/components/settings/SettingsLMSTab/index.jsx", - "line": 47, + "line": 48, "column": 62, - "index": 1838 + "index": 1910 }, { "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", "line": 19, "column": 47, - "index": 789 + "index": 797 }, { "filePath": "src/components/settings/SettingsSSOTab/index.jsx", - "line": 30, + "line": 31, "column": 32, - "index": 1550 + "index": 1631 }, { "filePath": "src/components/settings/SettingsSSOTab/NewExistingSSOConfigs.jsx", - "line": 36, + "line": 37, "column": 48, - "index": 1626 + "index": 1707 }, { "filePath": "src/components/subscriptions/expiration/SubscriptionExpirationModals.jsx", "line": 84, "column": 68, - "index": 3499 + "index": 3503 }, { "filePath": "src/components/subscriptions/expiration/SubscriptionExpirationModals.jsx", "line": 85, "column": 71, - "index": 3604 + "index": 3608 } ], "AutoFixHigh": [ { "filePath": "src/components/Admin/AIAnalyticsSummary.jsx", - "line": 70, + "line": 88, "column": 12, - "index": 2332 + "index": 3256 } ], "Groups": [ { "filePath": "src/components/Admin/AIAnalyticsSummary.jsx", - "line": 85, + "line": 103, "column": 12, - "index": 2895 + "index": 3819 + }, + { + "filePath": "src/components/learner-credit-management/BudgetStatusSubtitle.jsx", + "line": 74, + "column": 33, + "index": 3272 }, { "filePath": "src/components/NumberCard/NumberCard.test.jsx", "line": 18, "column": 12, - "index": 487 + "index": 491 } ], "Icon": [ { "filePath": "src/components/Admin/EmbeddedSubscription.jsx", - "line": 61, + "line": 74, "column": 16, - "index": 2764 + "index": 3487 }, { "filePath": "src/components/Admin/EmbeddedSubscription.jsx", - "line": 75, + "line": 103, "column": 18, - "index": 3371 + "index": 4951 }, { "filePath": "src/components/Admin/index.jsx", - "line": 233, + "line": 316, "column": 8, - "index": 7949 + "index": 11743 }, { "filePath": "src/components/Admin/index.jsx", - "line": 250, + "line": 337, "column": 8, - "index": 8605 + "index": 12598 + }, + { + "filePath": "src/components/Admin/tabs/DownloadCSVButton.jsx", + "line": 85, + "column": 19, + "index": 3085 + }, + { + "filePath": "src/components/Admin/tabs/DownloadCSVButton.jsx", + "line": 87, + "column": 20, + "index": 3207 + }, + { + "filePath": "src/components/Admin/tabs/DownloadCSVButton.jsx", + "line": 88, + "column": 23, + "index": 3252 + }, + { + "filePath": "src/components/AdvanceAnalyticsV2/DownloadCSVButton.jsx", + "line": 85, + "column": 19, + "index": 3062 + }, + { + "filePath": "src/components/AdvanceAnalyticsV2/DownloadCSVButton.jsx", + "line": 87, + "column": 20, + "index": 3184 + }, + { + "filePath": "src/components/AdvanceAnalyticsV2/DownloadCSVButton.jsx", + "line": 88, + "column": 17, + "index": 3223 + }, + { + "filePath": "src/components/AdvanceAnalyticsV2/tabs/AnalyticsTable.jsx", + "line": 66, + "column": 14, + "index": 1874 }, { "filePath": "src/components/BulkEnrollmentPage/BulkEnrollmentWarningModal.jsx", "line": 17, "column": 8, - "index": 404 + "index": 412 }, { "filePath": "src/components/BulkEnrollmentPage/stepper/ReviewItem.jsx", "line": 25, "column": 22, - "index": 614 + "index": 622 }, { "filePath": "src/components/CodeManagement/ManageCodesTab.jsx", "line": 282, "column": 16, - "index": 8320 + "index": 8570 }, { "filePath": "src/components/CodeManagement/ManageCodesTab.jsx", "line": 291, "column": 16, - "index": 8675 + "index": 8925 }, { "filePath": "src/components/CodeModal/ModalError.jsx", "line": 12, "column": 6, - "index": 298 + "index": 306 }, { "filePath": "src/components/CodeSearchResults/CodeSearchResultsHeading.jsx", "line": 19, "column": 8, - "index": 660 + "index": 668 }, { "filePath": "src/components/CodeSearchResults/CodeSearchResultsTable.jsx", "line": 116, "column": 8, - "index": 2877 + "index": 2908 + }, + { + "filePath": "src/components/ContentHighlights/ContentHighlightCardItem.jsx", + "line": 81, + "column": 12, + "index": 2895 }, { "filePath": "src/components/ContentHighlights/HighlightStepper/ContentConfirmContentCard.jsx", "line": 67, "column": 16, - "index": 2050 + "index": 2058 }, { "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperConfirmContent.jsx", "line": 145, "column": 12, - "index": 4488 + "index": 4496 }, { "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperSelectContentHeader.jsx", "line": 13, "column": 8, - "index": 540 + "index": 548 }, { "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperTitle.jsx", "line": 15, "column": 10, - "index": 427 + "index": 444 }, { "filePath": "src/components/Coupon/index.jsx", "line": 91, "column": 6, - "index": 2529 + "index": 2537 }, { "filePath": "src/components/Coupon/index.jsx", "line": 101, "column": 6, - "index": 2740 + "index": 2748 }, { "filePath": "src/components/CouponDetails/index.jsx", - "line": 401, + "line": 403, "column": 10, - "index": 12050 + "index": 12190 }, { "filePath": "src/components/FileInput/index.jsx", - "line": 140, + "line": 138, "column": 14, - "index": 3539 + "index": 3469 }, { "filePath": "src/components/IconWithTooltip/index.jsx", "line": 23, "column": 6, - "index": 685 + "index": 689 }, { - "filePath": "src/components/learner-credit-management/assignments-status-chips/BaseModalPopup.jsx", - "line": 10, - "column": 6, - "index": 384 + "filePath": "src/components/learner-credit-management/assignment-modal/AssignmentModalmportantDates.jsx", + "line": 37, + "column": 4, + "index": 1480 }, { - "filePath": "src/components/learner-credit-management/cards/AssignmentModalSummary.jsx", - "line": 77, - "column": 50, - "index": 2324 + "filePath": "src/components/learner-credit-management/assignment-modal/AssignmentModalSummary.jsx", + "line": 83, + "column": 51, + "index": 2641 }, { - "filePath": "src/components/learner-credit-management/cards/AssignmentModalSummaryErrorState.jsx", - "line": 7, + "filePath": "src/components/learner-credit-management/assignment-modal/AssignmentModalSummaryErrorState.jsx", + "line": 8, "column": 4, - "index": 210 - }, - { - "filePath": "src/components/learner-credit-management/cards/AssignmentModalSummaryLearnerList.jsx", - "line": 35, - "column": 18, - "index": 1373 + "index": 282 }, { - "filePath": "src/components/learner-credit-management/EmailAddressTableCell.jsx", - "line": 81, + "filePath": "src/components/learner-credit-management/assignment-modal/AssignmentModalSummaryLearnerList.jsx", + "line": 43, "column": 18, - "index": 3287 + "index": 1898 }, { - "filePath": "src/components/learner-credit-management/LearnerCreditDisclaimer.jsx", - "line": 9, - "column": 4, - "index": 246 + "filePath": "src/components/learner-credit-management/AssignmentEnrollByDateCell.jsx", + "line": 24, + "column": 14, + "index": 930 }, { - "filePath": "src/components/learner-credit-management/PendingAssignmentCancelButton.jsx", - "line": 24, + "filePath": "src/components/learner-credit-management/AssignmentEnrollByDateHeader.jsx", + "line": 30, "column": 16, - "index": 836 + "index": 1235 }, { - "filePath": "src/components/learner-credit-management/PendingAssignmentRemindButton.jsx", - "line": 24, - "column": 16, - "index": 822 + "filePath": "src/components/learner-credit-management/assignments-status-chips/BaseModalPopup.jsx", + "line": 10, + "column": 6, + "index": 388 }, { - "filePath": "src/components/learner-credit-management/TableTextFilter.jsx", - "line": 28, - "column": 25, - "index": 680 + "filePath": "src/components/learner-credit-management/BudgetStatusSubtitle.jsx", + "line": 36, + "column": 12, + "index": 1560 }, { - "filePath": "src/components/NumberCard/index.jsx", - "line": 185, - "column": 16, - "index": 5508 + "filePath": "src/components/learner-credit-management/BudgetStatusSubtitle.jsx", + "line": 59, + "column": 12, + "index": 2549 + }, + { + "filePath": "src/components/learner-credit-management/BudgetStatusSubtitle.jsx", + "line": 74, + "column": 12, + "index": 3251 + }, + { + "filePath": "src/components/learner-credit-management/EmailAddressTableCell.jsx", + "line": 81, + "column": 18, + "index": 3295 + }, + { + "filePath": "src/components/learner-credit-management/invite-modal/FileUpload.jsx", + "line": 16, + "column": 8, + "index": 572 + }, + { + "filePath": "src/components/learner-credit-management/invite-modal/InviteModalPermissions.jsx", + "line": 31, + "column": 12, + "index": 1163 + }, + { + "filePath": "src/components/learner-credit-management/invite-modal/InviteModalPermissions.jsx", + "line": 40, + "column": 12, + "index": 1562 + }, + { + "filePath": "src/components/learner-credit-management/invite-modal/InviteModalSummaryDuplicate.jsx", + "line": 7, + "column": 4, + "index": 243 + }, + { + "filePath": "src/components/learner-credit-management/invite-modal/InviteModalSummaryErrorState.jsx", + "line": 7, + "column": 4, + "index": 214 + }, + { + "filePath": "src/components/learner-credit-management/invite-modal/InviteModalSummaryLearnerList.jsx", + "line": 34, + "column": 18, + "index": 1370 + }, + { + "filePath": "src/components/learner-credit-management/LearnerCreditDisclaimer.jsx", + "line": 9, + "column": 4, + "index": 254 + }, + { + "filePath": "src/components/learner-credit-management/members-tab/bulk-actions/MemberRemoveModal.jsx", + "line": 211, + "column": 23, + "index": 8199 + }, + { + "filePath": "src/components/learner-credit-management/members-tab/LearnerCreditGroupMembersTable.jsx", + "line": 40, + "column": 18, + "index": 1715 + }, + { + "filePath": "src/components/learner-credit-management/members-tab/LearnerCreditGroupMembersTable.jsx", + "line": 45, + "column": 12, + "index": 1850 + }, + { + "filePath": "src/components/learner-credit-management/members-tab/MemberDetailsTableCell.jsx", + "line": 20, + "column": 14, + "index": 423 + }, + { + "filePath": "src/components/learner-credit-management/members-tab/MemberDetailsTableCell.jsx", + "line": 45, + "column": 16, + "index": 1233 + }, + { + "filePath": "src/components/learner-credit-management/members-tab/MemberEnrollmentsTableColumnHeader.jsx", + "line": 35, + "column": 6, + "index": 1176 + }, + { + "filePath": "src/components/learner-credit-management/members-tab/MemberStatusTableColumnHeader.jsx", + "line": 35, + "column": 6, + "index": 1110 + }, + { + "filePath": "src/components/learner-credit-management/PendingAssignmentCancelButton.jsx", + "line": 95, + "column": 16, + "index": 2564 + }, + { + "filePath": "src/components/learner-credit-management/PendingAssignmentRemindButton.jsx", + "line": 95, + "column": 16, + "index": 2571 + }, + { + "filePath": "src/components/learner-credit-management/TableTextFilter.jsx", + "line": 28, + "column": 25, + "index": 688 }, { "filePath": "src/components/NumberCard/index.jsx", - "line": 215, + "line": 187, + "column": 16, + "index": 5680 + }, + { + "filePath": "src/components/NumberCard/index.jsx", + "line": 217, "column": 20, - "index": 6669 + "index": 6841 + }, + { + "filePath": "src/components/PeopleManagement/GroupDetailPage.jsx", + "line": 82, + "column": 30, + "index": 2907 + }, + { + "filePath": "src/components/PeopleManagement/GroupDetailPage.jsx", + "line": 107, + "column": 24, + "index": 3844 }, { "filePath": "src/components/ReportingConfig/index.jsx", - "line": 147, + "line": 148, "column": 22, - "index": 4771 + "index": 4898 }, { "filePath": "src/components/ReportingConfig/index.jsx", - "line": 152, + "line": 153, "column": 22, - "index": 4945 + "index": 5072 }, { "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 423, + "line": 550, "column": 25, - "index": 16297 + "index": 22582 }, { "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 425, + "line": 552, "column": 26, - "index": 16431 + "index": 22716 }, { "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 426, + "line": 553, "column": 23, - "index": 16476 + "index": 22761 }, { "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 438, + "line": 575, "column": 14, - "index": 16874 + "index": 23677 }, { "filePath": "src/components/SaveTemplateButton/index.jsx", "line": 154, "column": 20, - "index": 5007 + "index": 5015 }, { "filePath": "src/components/settings/SettingsApiCredentialsTab/RegenerateCredentialWarningModal.jsx", "line": 60, "column": 14, - "index": 1627 + "index": 1635 }, { "filePath": "src/components/settings/SettingsApiCredentialsTab/ZeroStateCard.jsx", - "line": 76, - "column": 10, - "index": 2646 + "line": 101, + "column": 12, + "index": 4141 }, { "filePath": "src/components/settings/SettingsAppearanceTab/CustomThemeModal.jsx", - "line": 131, + "line": 166, "column": 10, - "index": 5095 + "index": 6998 }, { "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/DownloadCsvButton.jsx", "line": 74, "column": 19, - "index": 2111 + "index": 2119 }, { "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/DownloadCsvButton.jsx", "line": 76, "column": 20, - "index": 2233 + "index": 2241 }, { "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/DownloadCsvButton.jsx", "line": 77, "column": 23, - "index": 2278 + "index": 2286 }, { "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", "line": 99, "column": 12, - "index": 3825 + "index": 3832 }, { "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", "line": 109, "column": 12, - "index": 4175 + "index": 4182 }, { "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 120, - "column": 51, - "index": 3745 + "line": 175, + "column": 10, + "index": 5508 }, { "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 124, - "column": 43, - "index": 3968 + "line": 189, + "column": 10, + "index": 6042 }, { "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 178, + "line": 262, "column": 24, - "index": 5632 + "index": 8746 }, { "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 267, + "line": 383, "column": 14, - "index": 8990 + "index": 14020 }, { "filePath": "src/components/settings/SettingsLMSTab/NoConfigCard.jsx", - "line": 39, - "column": 36, - "index": 1435 + "line": 56, + "column": 12, + "index": 2252 }, { "filePath": "src/components/settings/SettingsLMSTab/NoConfigCard.jsx", - "line": 44, - "column": 10, - "index": 1742 + "line": 67, + "column": 12, + "index": 2832 }, { "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", "line": 120, "column": 28, - "index": 3565 + "index": 3573 }, { "filePath": "src/components/settings/SettingsSSOTab/NewSSOConfigCard.jsx", - "line": 188, + "line": 225, "column": 22, - "index": 5838 + "index": 7386 }, { "filePath": "src/components/settings/SettingsSSOTab/SSOConfigConfiguredCard.jsx", "line": 110, "column": 14, - "index": 4060 + "index": 4068 }, { "filePath": "src/components/Sidebar/IconLink.test.jsx", "line": 31, "column": 12, - "index": 875 + "index": 883 }, { "filePath": "src/components/Sidebar/IconLink.test.jsx", "line": 41, "column": 12, - "index": 1245 + "index": 1253 }, { "filePath": "src/components/Sidebar/index.jsx", - "line": 73, + "line": 120, "column": 12, - "index": 2386 + "index": 4299 }, { "filePath": "src/components/Sidebar/index.jsx", - "line": 78, + "line": 125, "column": 12, - "index": 2519 + "index": 4432 }, { "filePath": "src/components/Sidebar/index.jsx", - "line": 84, + "line": 131, "column": 12, - "index": 2733 + "index": 4639 }, { "filePath": "src/components/Sidebar/index.jsx", - "line": 91, + "line": 137, "column": 12, - "index": 3015 + "index": 4830 }, { "filePath": "src/components/Sidebar/index.jsx", - "line": 99, + "line": 144, "column": 12, - "index": 3324 + "index": 5112 }, { "filePath": "src/components/Sidebar/index.jsx", - "line": 106, + "line": 152, "column": 12, - "index": 3550 + "index": 5421 }, { "filePath": "src/components/Sidebar/index.jsx", - "line": 112, + "line": 158, "column": 12, - "index": 3788 + "index": 5610 }, { "filePath": "src/components/Sidebar/index.jsx", - "line": 119, + "line": 169, "column": 12, - "index": 4043 + "index": 5995 }, { "filePath": "src/components/Sidebar/index.jsx", - "line": 125, + "line": 176, + "column": 12, + "index": 6302 + }, + { + "filePath": "src/components/Sidebar/index.jsx", + "line": 183, + "column": 12, + "index": 6557 + }, + { + "filePath": "src/components/Sidebar/index.jsx", + "line": 189, "column": 12, - "index": 4216 + "index": 6730 }, { "filePath": "src/components/subscriptions/buttons/DownloadCsvButton.jsx", - "line": 51, + "line": 64, "column": 17, - "index": 1704 + "index": 2356 }, { "filePath": "src/components/subscriptions/buttons/DownloadCsvButton.jsx", - "line": 53, + "line": 66, "column": 18, - "index": 1822 + "index": 2474 }, { "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRevokeModal.jsx", - "line": 198, + "line": 238, "column": 23, - "index": 5911 + "index": 7544 }, { "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/LicenseManagementTableActionColumn.jsx", "line": 124, "column": 18, - "index": 3253 + "index": 3261 }, { "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/LicenseManagementTableActionColumn.jsx", "line": 146, "column": 18, - "index": 3792 + "index": 3800 }, { "filePath": "src/components/subscriptions/SubscriptionDetails.jsx", - "line": 40, + "line": 41, "column": 14, - "index": 1554 + "index": 1637 }, { "filePath": "src/components/system-wide-banner/SystemWideWarningBanner.jsx", "line": 8, "column": 4, - "index": 254 + "index": 262 } ], "Lightbulb": [ { "filePath": "src/components/Admin/EmbeddedSubscription.jsx", - "line": 61, + "line": 74, "column": 27, - "index": 2775 + "index": 3498 } ], "ArrowOutward": [ { "filePath": "src/components/Admin/EmbeddedSubscription.jsx", - "line": 75, + "line": 103, "column": 60, - "index": 3413 + "index": 4993 } ], "Undo": [ { "filePath": "src/components/Admin/index.jsx", - "line": 233, + "line": 316, "column": 19, - "index": 7960 + "index": 11754 }, { "filePath": "src/components/Admin/index.jsx", - "line": 250, + "line": 337, "column": 19, - "index": 8616 + "index": 12609 } ], "Alert": [ { "filePath": "src/components/Admin/index.jsx", - "line": 258, + "line": 349, "column": 6, - "index": 8734 + "index": 12933 }, { "filePath": "src/components/Admin/index.jsx", - "line": 270, + "line": 374, "column": 6, - "index": 9005 + "index": 13686 + }, + { + "filePath": "src/components/BudgetExpiryAlertAndModal/index.jsx", + "line": 78, + "column": 8, + "index": 2416 }, { "filePath": "src/components/BulkEnrollmentPage/CourseSearchResults.jsx", "line": 139, "column": 6, - "index": 4274 + "index": 4282 }, { "filePath": "src/components/BulkEnrollmentPage/CourseSearchResults.jsx", "line": 149, "column": 6, - "index": 4484 + "index": 4492 }, { "filePath": "src/components/BulkEnrollmentPage/stepper/DismissibleCourseWarning.jsx", "line": 13, "column": 4, - "index": 380 + "index": 388 }, { "filePath": "src/components/BulkEnrollmentPage/stepper/ReviewList.jsx", "line": 64, "column": 14, - "index": 1798 + "index": 1802 }, { "filePath": "src/components/CodeManagement/ManageCodesTab.jsx", "line": 175, "column": 6, - "index": 4839 + "index": 5038 }, { "filePath": "src/components/CodeManagement/ManageCodesTab.jsx", "line": 216, "column": 6, - "index": 6116 + "index": 6366 }, { "filePath": "src/components/CodeManagement/ManageCodesTab.jsx", "line": 231, "column": 6, - "index": 6530 + "index": 6780 }, { "filePath": "src/components/CodeModal/ModalError.jsx", "line": 11, "column": 4, - "index": 267 + "index": 275 }, { "filePath": "src/components/CodeSearchResults/index.jsx", - "line": 61, + "line": 65, "column": 4, - "index": 1456 + "index": 1656 }, { "filePath": "src/components/ConfirmationModal/index.jsx", - "line": 40, - "column": 8, - "index": 830 + "line": 93, + "column": 10, + "index": 3005 }, { "filePath": "src/components/ContentHighlights/CatalogVisibility/ContentHighlightCatalogVisibilityAlert.jsx", - "line": 45, + "line": 46, "column": 10, - "index": 1537 + "index": 1597 }, { "filePath": "src/components/ContentHighlights/CatalogVisibility/ContentHighlightCatalogVisibilityAlert.jsx", - "line": 68, + "line": 77, + "column": 8, + "index": 2684 + }, + { + "filePath": "src/components/ContentHighlights/ContentHighlightArchivedAlert.jsx", + "line": 48, + "column": 4, + "index": 1966 + }, + { + "filePath": "src/components/ContentHighlights/ContentHighlights.jsx", + "line": 107, "column": 8, - "index": 2021 + "index": 4439 }, { "filePath": "src/components/ContentHighlights/ContentHighlightsCardItemsContainer.jsx", - "line": 26, + "line": 37, "column": 6, - "index": 937 + "index": 1381 }, { "filePath": "src/components/ContentHighlights/CurrentContentHighlightHeader.jsx", - "line": 83, + "line": 104, "column": 6, - "index": 2547 + "index": 3564 }, { "filePath": "src/components/ContentHighlights/DeleteHighlightSet.jsx", - "line": 126, + "line": 152, "column": 8, - "index": 4194 + "index": 5510 }, { "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperConfirmContent.jsx", "line": 110, "column": 6, - "index": 3581 + "index": 3589 }, { "filePath": "src/components/CouponDetails/index.jsx", - "line": 459, + "line": 461, "column": 6, - "index": 13916 + "index": 14056 }, { "filePath": "src/components/CouponDetails/index.jsx", - "line": 476, + "line": 478, "column": 6, - "index": 14230 + "index": 14370 }, { "filePath": "src/components/CouponDetails/index.jsx", - "line": 496, + "line": 498, "column": 6, - "index": 14698 + "index": 14838 }, { "filePath": "src/components/ErrorPage/index.jsx", - "line": 29, - "column": 10, - "index": 735 + "line": 33, + "column": 12, + "index": 850 }, { "filePath": "src/components/FeatureAnnouncementBanner/index.jsx", "line": 50, "column": 6, - "index": 1609 + "index": 1613 + }, + { + "filePath": "src/components/FeatureNotSupportedPage/index.jsx", + "line": 17, + "column": 6, + "index": 389 }, { "filePath": "src/components/InviteLearnersModal/index.jsx", - "line": 161, + "line": 203, "column": 8, - "index": 4726 + "index": 6714 + }, + { + "filePath": "src/components/learner-credit-management/members-tab/bulk-actions/MemberRemoveModal.jsx", + "line": 152, + "column": 12, + "index": 5491 }, { "filePath": "src/components/learner-credit-management/OfferUtilizationAlerts.jsx", "line": 56, "column": 6, - "index": 1725 + "index": 1733 }, { "filePath": "src/components/learner-credit-management/OfferUtilizationAlerts.jsx", "line": 78, "column": 6, - "index": 2542 + "index": 2550 }, { "filePath": "src/components/learner-credit-management/search/CatalogSearchResults.jsx", - "line": 71, + "line": 72, "column": 6, - "index": 2095 + "index": 2102 }, { "filePath": "src/components/NewFeatureAlertBrowseAndRequest/index.jsx", - "line": 45, + "line": 44, "column": 4, - "index": 1515 + "index": 1486 }, { "filePath": "src/components/PlotlyAnalytics/PlotlyAnalyticsPage.jsx", "line": 28, "column": 4, - "index": 746 + "index": 770 }, { "filePath": "src/components/RequestCodesPage/RequestCodesForm.jsx", "line": 30, "column": 6, - "index": 811 + "index": 804 }, { "filePath": "src/components/settings/SettingsAccessTab/DisableLinkManagementAlertModal.jsx", - "line": 44, + "line": 70, "column": 8, - "index": 971 + "index": 2082 }, { "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessLinkManagement.jsx", - "line": 93, + "line": 96, "column": 8, - "index": 3126 + "index": 3251 }, { "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessLinkManagement.jsx", - "line": 108, + "line": 132, "column": 10, - "index": 3858 + "index": 4905 }, { "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessSSOManagement.jsx", - "line": 41, + "line": 43, "column": 8, - "index": 1153 + "index": 1260 }, { "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessSubsidyRequestManagement.jsx", - "line": 56, + "line": 58, "column": 8, - "index": 1733 + "index": 1840 }, { "filePath": "src/components/settings/SettingsApiCredentialsTab/FailedAlert.jsx", "line": 6, "column": 2, - "index": 167 + "index": 175 }, { "filePath": "src/components/settings/SettingsAppearanceTab/index.jsx", - "line": 97, + "line": 107, "column": 6, - "index": 3970 + "index": 4428 }, { "filePath": "src/components/settings/SettingsLMSTab/index.jsx", - "line": 171, + "line": 185, "column": 8, - "index": 6482 + "index": 7217 }, { "filePath": "src/components/settings/SettingsSSOTab/index.jsx", - "line": 163, + "line": 202, "column": 18, - "index": 6720 + "index": 8791 }, { "filePath": "src/components/settings/SettingsSSOTab/index.jsx", - "line": 226, + "line": 265, "column": 12, - "index": 9180 + "index": 11251 }, { "filePath": "src/components/settings/SettingsSSOTab/index.jsx", - "line": 231, + "line": 270, "column": 12, - "index": 9379 + "index": 11450 }, { "filePath": "src/components/settings/SettingsSSOTab/NewExistingSSOConfigs.jsx", - "line": 69, + "line": 71, "column": 20, - "index": 2674 + "index": 2781 }, { "filePath": "src/components/settings/SettingsSSOTab/NewSSOConfigAlerts.jsx", - "line": 54, + "line": 55, "column": 6, - "index": 1694 + "index": 1766 }, { "filePath": "src/components/settings/SettingsSSOTab/NewSSOConfigAlerts.jsx", - "line": 77, + "line": 93, "column": 6, - "index": 2459 + "index": 3147 }, { "filePath": "src/components/settings/SettingsSSOTab/NewSSOConfigAlerts.jsx", - "line": 101, + "line": 132, "column": 8, - "index": 3207 + "index": 4504 }, { "filePath": "src/components/settings/SettingsSSOTab/NewSSOConfigAlerts.jsx", - "line": 116, + "line": 167, "column": 8, - "index": 3822 + "index": 5981 }, { "filePath": "src/components/settings/SettingsSSOTab/NewSSOConfigAlerts.jsx", - "line": 146, + "line": 225, "column": 8, - "index": 5122 + "index": 8694 }, { "filePath": "src/components/settings/SettingsSSOTab/NewSSOConfigForm.jsx", - "line": 29, + "line": 33, "column": 8, - "index": 1112 + "index": 1362 }, { "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", "line": 199, "column": 8, - "index": 6974 + "index": 6982 }, { "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConnectStep.jsx", "line": 54, "column": 8, - "index": 2177 + "index": 2181 }, { "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConnectStep.jsx", "line": 59, "column": 30, - "index": 2412 + "index": 2416 }, { "filePath": "src/components/subscriptions/expiration/SubscriptionExpirationBanner.jsx", - "line": 122, + "line": 159, "column": 4, - "index": 4156 + "index": 6342 }, { "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRemindModal.jsx", - "line": 164, + "line": 175, "column": 12, - "index": 4822 + "index": 5481 }, { "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRevokeModal.jsx", - "line": 159, + "line": 196, "column": 12, - "index": 4359 + "index": 5838 }, { "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRevokeModal.jsx", - "line": 171, + "line": 211, "column": 12, - "index": 4854 + "index": 6487 }, { "filePath": "src/components/subscriptions/SubscriptionData.jsx", - "line": 36, + "line": 38, "column": 4, - "index": 841 + "index": 926 }, { "filePath": "src/components/subsidy-request-management-alerts/NoAvailableCodesBanner.jsx", "line": 23, "column": 4, - "index": 602 + "index": 606 }, { "filePath": "src/components/subsidy-request-management-alerts/NoAvailableLicensesBanner.jsx", - "line": 19, + "line": 20, "column": 4, - "index": 476 + "index": 544 }, { "filePath": "src/components/subsidy-request-modals/ApproveCouponCodeRequestModal.jsx", - "line": 98, + "line": 99, "column": 12, - "index": 2774 + "index": 2832 }, { "filePath": "src/components/subsidy-request-modals/ApproveCouponCodeRequestModal.jsx", - "line": 151, + "line": 152, "column": 12, - "index": 4832 + "index": 4890 }, { "filePath": "src/components/subsidy-request-modals/ApproveLicenseRequestModal.jsx", - "line": 97, + "line": 111, "column": 12, - "index": 2915 + "index": 3521 }, { "filePath": "src/components/subsidy-request-modals/ApproveLicenseRequestModal.jsx", - "line": 150, + "line": 209, "column": 12, - "index": 5114 + "index": 8164 }, { "filePath": "src/components/subsidy-request-modals/DeclineSubsidyRequestModal.jsx", "line": 74, "column": 10, - "index": 1856 + "index": 1864 }, { "filePath": "src/components/TableComponent/index.jsx", - "line": 130, + "line": 133, "column": 6, - "index": 3995 + "index": 4171 }, { "filePath": "src/components/TableComponent/index.jsx", - "line": 142, + "line": 145, "column": 6, - "index": 4259 + "index": 4435 }, { "filePath": "src/components/UserActivationPage/index.jsx", - "line": 84, + "line": 83, "column": 10, - "index": 2697 + "index": 2682 } ], "Error": [ { "filePath": "src/components/Admin/index.jsx", - "line": 260, + "line": 351, "column": 14, - "index": 8780 + "index": 12979 }, { "filePath": "src/components/Admin/index.jsx", - "line": 273, + "line": 377, "column": 14, - "index": 9076 + "index": 13757 }, { "filePath": "src/components/BulkEnrollmentPage/BulkEnrollmentWarningModal.jsx", "line": 17, "column": 50, - "index": 446 + "index": 454 }, { "filePath": "src/components/BulkEnrollmentPage/CourseSearchResults.jsx", "line": 141, "column": 14, - "index": 4320 + "index": 4328 }, { "filePath": "src/components/Coupon/index.jsx", "line": 103, "column": 13, - "index": 2811 + "index": 2819 }, { "filePath": "src/components/CouponDetails/index.jsx", - "line": 401, + "line": 403, "column": 63, - "index": 12103 + "index": 12243 }, { "filePath": "src/components/CouponDetails/index.jsx", - "line": 461, + "line": 463, "column": 14, - "index": 13962 + "index": 14102 + }, + { + "filePath": "src/components/learner-credit-management/assignment-modal/AssignmentModalSummary.jsx", + "line": 83, + "column": 86, + "index": 2676 + }, + { + "filePath": "src/components/learner-credit-management/assignment-modal/AssignmentModalSummaryErrorState.jsx", + "line": 8, + "column": 39, + "index": 317 }, { "filePath": "src/components/learner-credit-management/assignments-status-chips/FailedBadEmail.jsx", - "line": 17, + "line": 33, "column": 20, - "index": 506 + "index": 1055 }, { "filePath": "src/components/learner-credit-management/assignments-status-chips/FailedBadEmail.jsx", - "line": 29, + "line": 45, "column": 38, - "index": 776 + "index": 1361 }, { "filePath": "src/components/learner-credit-management/assignments-status-chips/FailedCancellation.jsx", - "line": 16, + "line": 33, "column": 20, - "index": 458 + "index": 1073 }, { "filePath": "src/components/learner-credit-management/assignments-status-chips/FailedCancellation.jsx", - "line": 28, + "line": 45, "column": 38, - "index": 731 + "index": 1382 }, { "filePath": "src/components/learner-credit-management/assignments-status-chips/FailedRedemption.jsx", - "line": 16, + "line": 35, "column": 20, - "index": 456 + "index": 1065 }, { "filePath": "src/components/learner-credit-management/assignments-status-chips/FailedRedemption.jsx", - "line": 28, + "line": 47, "column": 38, - "index": 727 + "index": 1372 }, { "filePath": "src/components/learner-credit-management/assignments-status-chips/FailedReminder.jsx", - "line": 14, + "line": 32, "column": 20, - "index": 394 + "index": 1052 }, { "filePath": "src/components/learner-credit-management/assignments-status-chips/FailedReminder.jsx", - "line": 26, + "line": 44, "column": 38, - "index": 663 + "index": 1357 }, { "filePath": "src/components/learner-credit-management/assignments-status-chips/FailedSystem.jsx", - "line": 16, + "line": 34, "column": 20, - "index": 452 + "index": 1044 }, { "filePath": "src/components/learner-credit-management/assignments-status-chips/FailedSystem.jsx", - "line": 28, + "line": 46, "column": 38, - "index": 719 + "index": 1347 + }, + { + "filePath": "src/components/learner-credit-management/assignments-status-chips/IncompleteAssignment.jsx", + "line": 36, + "column": 20, + "index": 1276 + }, + { + "filePath": "src/components/learner-credit-management/assignments-status-chips/IncompleteAssignment.jsx", + "line": 48, + "column": 38, + "index": 1575 }, { "filePath": "src/components/learner-credit-management/cards/assignment-allocation-status-modals/ContentNotInCatalogErrorAlertModal.jsx", "line": 27, "column": 12, - "index": 775 + "index": 783 }, { "filePath": "src/components/learner-credit-management/cards/assignment-allocation-status-modals/NotEnoughBalanceAlertModal.jsx", "line": 29, "column": 12, - "index": 825 + "index": 833 }, { "filePath": "src/components/learner-credit-management/cards/assignment-allocation-status-modals/SystemErrorAlertModal.jsx", "line": 23, "column": 12, - "index": 508 + "index": 516 }, { - "filePath": "src/components/learner-credit-management/cards/AssignmentModalSummary.jsx", - "line": 77, - "column": 85, - "index": 2359 + "filePath": "src/components/learner-credit-management/invite-modal/InviteModalSummaryDuplicate.jsx", + "line": 7, + "column": 41, + "index": 280 }, { - "filePath": "src/components/learner-credit-management/cards/AssignmentModalSummaryErrorState.jsx", + "filePath": "src/components/learner-credit-management/invite-modal/InviteModalSummaryErrorState.jsx", "line": 7, "column": 39, - "index": 245 + "index": 249 + }, + { + "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", + "line": 208, + "column": 39, + "index": 7368 + }, + { + "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", + "line": 240, + "column": 39, + "index": 8339 }, { "filePath": "src/components/settings/SettingsApiCredentialsTab/FailedAlert.jsx", "line": 6, "column": 32, - "index": 197 + "index": 205 }, { "filePath": "src/components/settings/SettingsApiCredentialsTab/ZeroStateCard.jsx", - "line": 76, - "column": 44, - "index": 2680 + "line": 101, + "column": 46, + "index": 4175 }, { "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", "line": 99, "column": 23, - "index": 3836 + "index": 3843 }, { "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/utils.jsx", "line": 30, "column": 8, - "index": 1203 + "index": 1211 }, { "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/utils.jsx", "line": 40, "column": 37, - "index": 1537 + "index": 1545 }, { "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 120, - "column": 101, - "index": 3795 + "line": 175, + "column": 60, + "index": 5558 }, { "filePath": "src/components/settings/SettingsLMSTab/NoConfigCard.jsx", - "line": 39, - "column": 70, - "index": 1469 + "line": 56, + "column": 46, + "index": 2286 }, { "filePath": "src/components/TableComponent/index.jsx", - "line": 132, + "line": 135, "column": 14, - "index": 4041 + "index": 4217 }, { "filePath": "src/components/TableComponent/index.jsx", - "line": 144, + "line": 147, "column": 14, - "index": 4306 + "index": 4482 } ], "Alert.Heading": [ { "filePath": "src/components/Admin/index.jsx", - "line": 262, + "line": 353, "column": 8, - "index": 8803 + "index": 13002 }, { "filePath": "src/components/Admin/index.jsx", - "line": 275, + "line": 379, "column": 8, - "index": 9099 + "index": 13780 + }, + { + "filePath": "src/components/BudgetExpiryAlertAndModal/index.jsx", + "line": 103, + "column": 10, + "index": 3324 }, { "filePath": "src/components/BulkEnrollmentPage/stepper/DismissibleCourseWarning.jsx", "line": 20, "column": 6, - "index": 527 + "index": 535 }, { "filePath": "src/components/CodeManagement/ManageCodesTab.jsx", "line": 176, "column": 8, - "index": 4884 + "index": 5083 }, { "filePath": "src/components/CodeManagement/ManageCodesTab.jsx", "line": 223, "column": 8, - "index": 6324 + "index": 6574 }, { "filePath": "src/components/CodeModal/ModalError.jsx", "line": 14, "column": 8, - "index": 397 + "index": 405 }, { "filePath": "src/components/ConfirmationModal/index.jsx", - "line": 44, - "column": 10, - "index": 906 + "line": 97, + "column": 12, + "index": 3089 }, { "filePath": "src/components/ContentHighlights/CatalogVisibility/ContentHighlightCatalogVisibilityAlert.jsx", - "line": 49, + "line": 50, "column": 12, - "index": 1621 + "index": 1681 }, { "filePath": "src/components/ContentHighlights/CatalogVisibility/ContentHighlightCatalogVisibilityAlert.jsx", - "line": 81, + "line": 94, "column": 10, - "index": 2401 + "index": 3286 + }, + { + "filePath": "src/components/ContentHighlights/ContentHighlightArchivedAlert.jsx", + "line": 59, + "column": 6, + "index": 2349 + }, + { + "filePath": "src/components/ContentHighlights/ContentHighlights.jsx", + "line": 108, + "column": 10, + "index": 4518 }, { "filePath": "src/components/ContentHighlights/CurrentContentHighlightHeader.jsx", - "line": 91, + "line": 116, "column": 8, - "index": 2759 + "index": 4062 }, { "filePath": "src/components/CouponDetails/index.jsx", - "line": 463, + "line": 465, "column": 8, - "index": 13985 + "index": 14125 }, { "filePath": "src/components/CouponDetails/index.jsx", - "line": 483, + "line": 485, "column": 8, - "index": 14456 + "index": 14596 }, { "filePath": "src/components/CouponDetails/index.jsx", - "line": 500, + "line": 502, "column": 8, - "index": 14829 + "index": 14969 }, { "filePath": "src/components/ErrorPage/index.jsx", - "line": 33, - "column": 12, - "index": 824 + "line": 37, + "column": 14, + "index": 947 }, { "filePath": "src/components/FeatureAnnouncementBanner/index.jsx", "line": 51, "column": 8, - "index": 1673 + "index": 1677 }, { "filePath": "src/components/InviteLearnersModal/index.jsx", - "line": 165, + "line": 207, "column": 10, - "index": 4807 + "index": 6795 }, { "filePath": "src/components/learner-credit-management/OfferUtilizationAlerts.jsx", "line": 72, "column": 8, - "index": 2232 + "index": 2240 }, { "filePath": "src/components/learner-credit-management/OfferUtilizationAlerts.jsx", "line": 92, "column": 8, - "index": 2972 + "index": 2980 }, { "filePath": "src/components/PlotlyAnalytics/PlotlyAnalyticsPage.jsx", "line": 34, "column": 6, - "index": 957 + "index": 981 }, { "filePath": "src/components/RequestCodesPage/RequestCodesForm.jsx", "line": 35, "column": 8, - "index": 905 + "index": 898 }, { "filePath": "src/components/settings/SettingsAccessTab/DisableLinkManagementAlertModal.jsx", - "line": 45, + "line": 71, "column": 10, - "index": 1030 + "index": 2141 }, { "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessLinkManagement.jsx", - "line": 94, + "line": 97, "column": 10, - "index": 3185 + "index": 3310 }, { "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessSSOManagement.jsx", - "line": 42, + "line": 44, "column": 10, - "index": 1212 + "index": 1319 }, { "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessSubsidyRequestManagement.jsx", - "line": 57, + "line": 59, "column": 10, - "index": 1792 + "index": 1899 }, { "filePath": "src/components/settings/SettingsApiCredentialsTab/FailedAlert.jsx", "line": 7, "column": 4, - "index": 209 + "index": 217 }, { "filePath": "src/components/settings/SettingsAppearanceTab/index.jsx", - "line": 105, + "line": 115, "column": 8, - "index": 4172 + "index": 4630 }, { "filePath": "src/components/settings/SettingsLMSTab/index.jsx", - "line": 181, + "line": 201, "column": 10, - "index": 6773 + "index": 7759 }, { "filePath": "src/components/settings/SettingsSSOTab/NewExistingSSOConfigs.jsx", - "line": 75, + "line": 77, "column": 22, - "index": 2893 + "index": 3000 }, { "filePath": "src/components/settings/SettingsSSOTab/NewSSOConfigAlerts.jsx", - "line": 66, + "line": 73, "column": 8, - "index": 2067 + "index": 2349 }, { "filePath": "src/components/settings/SettingsSSOTab/NewSSOConfigAlerts.jsx", - "line": 89, + "line": 111, "column": 8, - "index": 2824 + "index": 3722 }, { "filePath": "src/components/settings/SettingsSSOTab/NewSSOConfigAlerts.jsx", - "line": 108, + "line": 139, "column": 10, - "index": 3384 + "index": 4681 }, { "filePath": "src/components/settings/SettingsSSOTab/NewSSOConfigAlerts.jsx", - "line": 123, + "line": 174, "column": 10, - "index": 3999 + "index": 6158 }, { "filePath": "src/components/settings/SettingsSSOTab/NewSSOConfigAlerts.jsx", - "line": 153, + "line": 232, "column": 10, - "index": 5317 + "index": 8889 }, { "filePath": "src/components/settings/SettingsSSOTab/NewSSOConfigForm.jsx", - "line": 43, + "line": 47, "column": 10, - "index": 1468 + "index": 1718 }, { "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", "line": 212, "column": 10, - "index": 7316 + "index": 7324 }, { "filePath": "src/components/subscriptions/expiration/SubscriptionExpirationBanner.jsx", - "line": 33, + "line": 36, "column": 6, - "index": 1291 + "index": 1377 }, { "filePath": "src/components/subscriptions/expiration/SubscriptionExpirationBanner.jsx", - "line": 42, + "line": 51, "column": 6, - "index": 1622 + "index": 2192 }, { "filePath": "src/components/subscriptions/expiration/SubscriptionExpirationBanner.jsx", - "line": 52, + "line": 74, "column": 6, - "index": 2033 + "index": 3185 }, { "filePath": "src/components/subscriptions/expiration/SubscriptionExpirationBanner.jsx", - "line": 59, + "line": 89, "column": 6, - "index": 2222 + "index": 3860 }, { "filePath": "src/components/subsidy-request-management-alerts/NoAvailableCodesBanner.jsx", "line": 32, "column": 6, - "index": 802 + "index": 806 }, { "filePath": "src/components/subsidy-request-management-alerts/NoAvailableLicensesBanner.jsx", - "line": 28, + "line": 29, "column": 6, - "index": 676 + "index": 744 }, { "filePath": "src/components/subsidy-request-modals/ApproveCouponCodeRequestModal.jsx", - "line": 104, + "line": 105, "column": 14, - "index": 2971 + "index": 3029 }, { "filePath": "src/components/subsidy-request-modals/ApproveCouponCodeRequestModal.jsx", - "line": 156, + "line": 157, "column": 14, - "index": 5003 + "index": 5061 }, { "filePath": "src/components/subsidy-request-modals/ApproveLicenseRequestModal.jsx", - "line": 103, + "line": 117, "column": 14, - "index": 3108 + "index": 3714 }, { "filePath": "src/components/subsidy-request-modals/ApproveLicenseRequestModal.jsx", - "line": 155, + "line": 214, "column": 14, - "index": 5287 + "index": 8337 }, { "filePath": "src/components/subsidy-request-modals/DeclineSubsidyRequestModal.jsx", "line": 79, "column": 12, - "index": 2002 + "index": 2010 }, { "filePath": "src/components/TableComponent/index.jsx", - "line": 134, + "line": 137, "column": 8, - "index": 4064 + "index": 4240 + } + ], + "Tabs": [ + { + "filePath": "src/components/Admin/index.jsx", + "line": 510, + "column": 16, + "index": 18914 + }, + { + "filePath": "src/components/AdvanceAnalyticsV2/AnalyticsV2Page.jsx", + "line": 196, + "column": 10, + "index": 7955 + }, + { + "filePath": "src/components/CodeManagement/CouponCodeTabs.jsx", + "line": 107, + "column": 4, + "index": 3515 + }, + { + "filePath": "src/components/ContentHighlights/ContentHighlightsDashboard.jsx", + "line": 49, + "column": 6, + "index": 1887 + }, + { + "filePath": "src/components/learner-credit-management/BudgetDetailTabsAndRoutes.jsx", + "line": 145, + "column": 6, + "index": 4523 + }, + { + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/ErrorReportingTable.jsx", + "line": 16, + "column": 6, + "index": 687 + }, + { + "filePath": "src/components/settings/SettingsTabs.jsx", + "line": 205, + "column": 6, + "index": 6130 + }, + { + "filePath": "src/components/subscriptions/SubscriptionTabs.jsx", + "line": 116, + "column": 4, + "index": 4132 + } + ], + "Tab": [ + { + "filePath": "src/components/Admin/index.jsx", + "line": 517, + "column": 18, + "index": 19144 + }, + { + "filePath": "src/components/Admin/index.jsx", + "line": 551, + "column": 18, + "index": 20863 + }, + { + "filePath": "src/components/AdvanceAnalyticsV2/AnalyticsV2Page.jsx", + "line": 204, + "column": 12, + "index": 8187 + }, + { + "filePath": "src/components/AdvanceAnalyticsV2/AnalyticsV2Page.jsx", + "line": 220, + "column": 12, + "index": 8771 + }, + { + "filePath": "src/components/AdvanceAnalyticsV2/AnalyticsV2Page.jsx", + "line": 236, + "column": 12, + "index": 9355 + }, + { + "filePath": "src/components/AdvanceAnalyticsV2/AnalyticsV2Page.jsx", + "line": 252, + "column": 12, + "index": 9940 + }, + { + "filePath": "src/components/AdvanceAnalyticsV2/AnalyticsV2Page.jsx", + "line": 266, + "column": 12, + "index": 10441 + }, + { + "filePath": "src/components/CodeManagement/CouponCodeTabs.jsx", + "line": 62, + "column": 6, + "index": 2165 + }, + { + "filePath": "src/components/CodeManagement/CouponCodeTabs.jsx", + "line": 80, + "column": 8, + "index": 2679 + }, + { + "filePath": "src/components/ContentHighlights/ContentHighlightsDashboard.jsx", + "line": 57, + "column": 8, + "index": 2075 + }, + { + "filePath": "src/components/ContentHighlights/ContentHighlightsDashboard.jsx", + "line": 67, + "column": 8, + "index": 2466 + }, + { + "filePath": "src/components/learner-credit-management/data/hooks/useBudgetDetailTabs.jsx", + "line": 37, + "column": 6, + "index": 1294 + }, + { + "filePath": "src/components/learner-credit-management/data/hooks/useBudgetDetailTabs.jsx", + "line": 56, + "column": 8, + "index": 1901 + }, + { + "filePath": "src/components/learner-credit-management/data/hooks/useBudgetDetailTabs.jsx", + "line": 77, + "column": 8, + "index": 2587 + }, + { + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/ErrorReportingTable.jsx", + "line": 22, + "column": 8, + "index": 830 + }, + { + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/ErrorReportingTable.jsx", + "line": 27, + "column": 8, + "index": 1160 + }, + { + "filePath": "src/components/settings/SettingsTabs.jsx", + "line": 90, + "column": 8, + "index": 2683 + }, + { + "filePath": "src/components/settings/SettingsTabs.jsx", + "line": 109, + "column": 8, + "index": 3404 + }, + { + "filePath": "src/components/settings/SettingsTabs.jsx", + "line": 123, + "column": 8, + "index": 3788 + }, + { + "filePath": "src/components/settings/SettingsTabs.jsx", + "line": 140, + "column": 8, + "index": 4306 + }, + { + "filePath": "src/components/settings/SettingsTabs.jsx", + "line": 155, + "column": 8, + "index": 4796 + }, + { + "filePath": "src/components/subscriptions/SubscriptionTabs.jsx", + "line": 67, + "column": 6, + "index": 2402 + }, + { + "filePath": "src/components/subscriptions/SubscriptionTabs.jsx", + "line": 84, + "column": 8, + "index": 3015 } ], "DataTable": [ { "filePath": "src/components/Admin/licenses/LicenseManagementTable/index.jsx", - "line": 54, + "line": 67, "column": 10, - "index": 2194 + "index": 3143 }, { "filePath": "src/components/Admin/licenses/LicenseManagementTable/index.jsx", - "line": 55, + "line": 68, "column": 8, - "index": 2236 + "index": 3185 }, { "filePath": "src/components/Admin/licenses/LicenseManagementTable/index.jsx", - "line": 209, + "line": 231, "column": 6, - "index": 7119 + "index": 8568 }, { "filePath": "src/components/Admin/licenses/LicenseManagementTable/index.jsx", - "line": 218, + "line": 240, + "column": 34, + "index": 8842 + }, + { + "filePath": "src/components/Admin/tabs/ModuleActivityReport.jsx", + "line": 65, + "column": 6, + "index": 2331 + }, + { + "filePath": "src/components/Admin/tabs/ModuleActivityReport.jsx", + "line": 67, "column": 34, - "index": 7393 + "index": 2406 + }, + { + "filePath": "src/components/AdvanceAnalyticsV2/tabs/AnalyticsTable.jsx", + "line": 76, + "column": 8, + "index": 2317 }, { "filePath": "src/components/BulkEnrollmentPage/CourseSearchResults.jsx", "line": 159, "column": 6, - "index": 4678 + "index": 4686 }, { "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperSelectContentSearch.jsx", "line": 57, "column": 4, - "index": 2157 + "index": 2161 + }, + { + "filePath": "src/components/EnterpriseList/index.jsx", + "line": 67, + "column": 8, + "index": 1777 }, { "filePath": "src/components/learner-credit-management/BudgetAssignmentsTable.jsx", - "line": 33, + "line": 40, "column": 10, - "index": 1247 + "index": 1578 }, { "filePath": "src/components/learner-credit-management/BudgetAssignmentsTable.jsx", - "line": 34, + "line": 41, "column": 8, - "index": 1289 + "index": 1620 }, { "filePath": "src/components/learner-credit-management/BudgetAssignmentsTable.jsx", - "line": 52, + "line": 82, "column": 4, - "index": 1735 + "index": 2616 }, { "filePath": "src/components/learner-credit-management/BudgetAssignmentsTable.jsx", - "line": 64, + "line": 94, "column": 32, - "index": 2080 + "index": 2983 + }, + { + "filePath": "src/components/learner-credit-management/invite-modal/EnterpriseCustomerUserDatatable.jsx", + "line": 118, + "column": 10, + "index": 3277 + }, + { + "filePath": "src/components/learner-credit-management/invite-modal/EnterpriseCustomerUserDatatable.jsx", + "line": 119, + "column": 8, + "index": 3319 + }, + { + "filePath": "src/components/learner-credit-management/invite-modal/EnterpriseCustomerUserDatatable.jsx", + "line": 137, + "column": 4, + "index": 3776 + }, + { + "filePath": "src/components/learner-credit-management/invite-modal/EnterpriseCustomerUserDatatable.jsx", + "line": 180, + "column": 32, + "index": 5099 }, { "filePath": "src/components/learner-credit-management/LearnerCreditAllocationTable.jsx", - "line": 22, - "column": 2, - "index": 625 + "line": 26, + "column": 4, + "index": 724 + }, + { + "filePath": "src/components/learner-credit-management/members-tab/LearnerCreditGroupMembersTable.jsx", + "line": 70, + "column": 10, + "index": 2639 + }, + { + "filePath": "src/components/learner-credit-management/members-tab/LearnerCreditGroupMembersTable.jsx", + "line": 71, + "column": 8, + "index": 2681 + }, + { + "filePath": "src/components/learner-credit-management/members-tab/LearnerCreditGroupMembersTable.jsx", + "line": 87, + "column": 6, + "index": 2988 + }, + { + "filePath": "src/components/learner-credit-management/members-tab/LearnerCreditGroupMembersTable.jsx", + "line": 91, + "column": 34, + "index": 3094 + }, + { + "filePath": "src/components/learner-credit-management/MultipleBudgetsPicker.jsx", + "line": 73, + "column": 6, + "index": 1926 }, { "filePath": "src/components/learner-credit-management/search/CatalogSearchResults.jsx", - "line": 83, + "line": 84, "column": 6, - "index": 2499 + "index": 2506 }, { "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessLinkManagement.jsx", - "line": 112, + "line": 141, "column": 8, - "index": 4041 + "index": 5352 }, { "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/ContentMetadataTable.jsx", "line": 92, "column": 6, - "index": 2640 + "index": 2644 }, { "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/LearnerMetadataTable.jsx", "line": 93, "column": 6, - "index": 2754 + "index": 2758 }, { "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/index.jsx", - "line": 51, + "line": 64, "column": 10, - "index": 1770 + "index": 2604 }, { "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/index.jsx", - "line": 52, + "line": 65, "column": 8, - "index": 1812 + "index": 2646 }, { "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/index.jsx", - "line": 200, + "line": 226, "column": 6, - "index": 6309 + "index": 7756 }, { "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/index.jsx", - "line": 207, + "line": 233, "column": 34, - "index": 6558 + "index": 8005 }, { "filePath": "src/components/SubsidyRequestManagementTable/SubsidyRequestManagementTable.jsx", - "line": 61, + "line": 80, "column": 4, - "index": 1367 + "index": 2441 } ], "DataTable.EmptyTable": [ { "filePath": "src/components/Admin/licenses/LicenseManagementTable/index.jsx", - "line": 237, - "column": 19, - "index": 7981 + "line": 260, + "column": 14, + "index": 9446 + }, + { + "filePath": "src/components/Admin/tabs/ModuleActivityReport.jsx", + "line": 161, + "column": 8, + "index": 6029 + }, + { + "filePath": "src/components/AdvanceAnalyticsV2/tabs/AnalyticsTable.jsx", + "line": 92, + "column": 10, + "index": 2780 }, { "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperSelectContentSearch.jsx", "line": 116, "column": 6, - "index": 3720 + "index": 3724 }, { "filePath": "src/components/learner-credit-management/CustomDataTableEmptyState.jsx", - "line": 9, - "column": 9, - "index": 249 + "line": 12, + "column": 4, + "index": 340 }, { "filePath": "src/components/learner-credit-management/search/CatalogSearchResults.jsx", - "line": 103, + "line": 104, "column": 8, - "index": 3088 + "index": 3095 }, { "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessLinkManagement.jsx", - "line": 164, - "column": 28, - "index": 5601 + "line": 217, + "column": 12, + "index": 8258 }, { "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/ContentMetadataTable.jsx", "line": 147, "column": 8, - "index": 4199 + "index": 4203 }, { "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/LearnerMetadataTable.jsx", "line": 154, "column": 8, - "index": 4485 + "index": 4489 }, { "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/index.jsx", - "line": 227, - "column": 19, - "index": 7190 + "line": 254, + "column": 16, + "index": 8667 }, { "filePath": "src/components/SubsidyRequestManagementTable/SubsidyRequestManagementTable.jsx", - "line": 93, + "line": 112, "column": 8, - "index": 2232 + "index": 3306 } ], "Toast": [ { "filePath": "src/components/Admin/licenses/LicenseManagementTable/index.jsx", - "line": 318, + "line": 368, "column": 6, - "index": 10740 + "index": 13899 }, { "filePath": "src/components/Admin/SubscriptionDetails.jsx", - "line": 66, + "line": 78, "column": 6, - "index": 2745 + "index": 3694 + }, + { + "filePath": "src/components/Admin/tabs/DownloadCSVButton.jsx", + "line": 54, + "column": 5, + "index": 1631 + }, + { + "filePath": "src/components/AdvanceAnalyticsV2/DownloadCSVButton.jsx", + "line": 53, + "column": 5, + "index": 1584 }, { "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentSubmit.jsx", "line": 155, "column": 8, - "index": 4507 + "index": 4511 }, { "filePath": "src/components/BulkEnrollmentResultsDownloadPage/index.jsx", "line": 51, "column": 8, - "index": 1687 + "index": 1691 }, { "filePath": "src/components/BulkEnrollmentResultsDownloadPage/index.jsx", "line": 64, "column": 8, - "index": 1964 + "index": 1976 }, { "filePath": "src/components/ContentHighlights/ContentHighlightToast.jsx", "line": 16, "column": 4, - "index": 502 + "index": 506 }, { "filePath": "src/components/learner-credit-management/BudgetDetailPageWrapper.jsx", - "line": 79, + "line": 115, "column": 6, - "index": 2977 + "index": 4207 }, { "filePath": "src/components/learner-credit-management/BudgetDetailPageWrapper.jsx", - "line": 86, + "line": 122, "column": 6, - "index": 3176 + "index": 4406 }, { "filePath": "src/components/learner-credit-management/BudgetDetailPageWrapper.jsx", - "line": 93, + "line": 129, "column": 6, - "index": 3381 + "index": 4611 + }, + { + "filePath": "src/components/learner-credit-management/BudgetDetailPageWrapper.jsx", + "line": 136, + "column": 6, + "index": 4804 + }, + { + "filePath": "src/components/learner-credit-management/BudgetDetailPageWrapper.jsx", + "line": 142, + "column": 6, + "index": 4972 }, { "filePath": "src/components/settings/SettingsAccessTab/LinkCopiedToast.jsx", - "line": 5, + "line": 6, "column": 2, - "index": 105 + "index": 173 }, { "filePath": "src/components/settings/SettingsApiCredentialsTab/CopiedToast.jsx", "line": 6, "column": 2, - "index": 152 + "index": 156 }, { "filePath": "src/components/settings/SettingsApiCredentialsTab/index.jsx", - "line": 56, + "line": 67, "column": 12, - "index": 2070 + "index": 2616 }, { "filePath": "src/components/settings/SettingsAppearanceTab/index.jsx", - "line": 136, + "line": 160, "column": 6, - "index": 5082 + "index": 6131 }, { "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/DownloadCsvButton.jsx", "line": 59, "column": 5, - "index": 1702 + "index": 1710 }, { "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", "line": 254, "column": 8, - "index": 8309 + "index": 8316 }, { "filePath": "src/components/settings/SettingsLMSTab/index.jsx", - "line": 220, + "line": 250, "column": 8, - "index": 8101 + "index": 9554 }, { "filePath": "src/components/settings/SettingsSSOTab/index.jsx", - "line": 168, + "line": 207, "column": 16, - "index": 6941 + "index": 9012 }, { "filePath": "src/components/settings/SettingsSSOTab/index.jsx", - "line": 236, + "line": 275, "column": 12, - "index": 9581 + "index": 11652 }, { "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/index.jsx", - "line": 311, + "line": 371, "column": 6, - "index": 9989 + "index": 13381 }, { "filePath": "src/components/subscriptions/SubscriptionDetails.jsx", - "line": 99, + "line": 129, "column": 6, - "index": 3998 + "index": 5739 }, { "filePath": "src/components/subscriptions/SubscriptionZeroStateMessage.jsx", - "line": 36, + "line": 52, "column": 6, - "index": 1387 + "index": 2244 }, { "filePath": "src/components/UserActivationPage/index.jsx", - "line": 64, + "line": 63, "column": 8, - "index": 1998 + "index": 1983 } ], "Row": [ { "filePath": "src/components/Admin/SubscriptionDetails.jsx", - "line": 35, + "line": 39, "column": 6, - "index": 1433 + "index": 1766 }, { "filePath": "src/components/BulkEnrollmentPage/stepper/ReviewStep.jsx", "line": 29, "column": 6, - "index": 844 + "index": 848 }, { "filePath": "src/components/ContentHighlights/CatalogVisibility/ContentHighlightCatalogVisibilityAlert.jsx", - "line": 43, + "line": 44, "column": 6, - "index": 1458 + "index": 1518 }, { "filePath": "src/components/ContentHighlights/CatalogVisibility/ContentHighlightCatalogVisibilityAlert.jsx", - "line": 66, + "line": 75, "column": 4, - "index": 1946 + "index": 2609 }, { "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperConfirmContent.jsx", "line": 142, "column": 6, - "index": 4376 + "index": 4384 }, { "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperSelectContent.jsx", "line": 11, "column": 4, - "index": 377 + "index": 381 }, { "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperSelectContent.jsx", "line": 16, "column": 4, - "index": 493 + "index": 497 }, { "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperTitle.jsx", "line": 12, "column": 4, - "index": 321 + "index": 338 }, { "filePath": "src/components/ContentHighlights/ZeroState/ZeroStateHighlights.jsx", - "line": 41, + "line": 42, "column": 4, - "index": 1438 + "index": 1497 + }, + { + "filePath": "src/components/EnterpriseList/index.jsx", + "line": 62, + "column": 8, + "index": 1675 + }, + { + "filePath": "src/components/learner-credit-management/assignment-modal/AssignmentModalContent.jsx", + "line": 131, + "column": 8, + "index": 4858 + }, + { + "filePath": "src/components/learner-credit-management/assignment-modal/AssignmentModalContent.jsx", + "line": 143, + "column": 8, + "index": 5385 }, { "filePath": "src/components/learner-credit-management/BudgetDetailCatalogTabContents.jsx", - "line": 51, + "line": 50, "column": 4, - "index": 1674 + "index": 1707 }, { "filePath": "src/components/learner-credit-management/BudgetDetailPageOverviewAvailability.jsx", - "line": 96, + "line": 426, "column": 4, - "index": 3151 + "index": 17303 }, { "filePath": "src/components/learner-credit-management/BudgetDetailPageOverviewUtilization.jsx", - "line": 60, + "line": 106, "column": 8, - "index": 1524 + "index": 3272 }, { "filePath": "src/components/learner-credit-management/BudgetDetailPageOverviewUtilization.jsx", - "line": 71, + "line": 127, "column": 18, - "index": 2098 + "index": 4369 }, { "filePath": "src/components/learner-credit-management/BudgetDetailPageOverviewUtilization.jsx", - "line": 83, + "line": 145, "column": 18, - "index": 2666 + "index": 5241 }, { - "filePath": "src/components/learner-credit-management/cards/AssignmentModalContent.jsx", - "line": 83, + "filePath": "src/components/learner-credit-management/empty-state/NoAssignableBudgetActivity.jsx", + "line": 40, + "column": 10, + "index": 1500 + }, + { + "filePath": "src/components/learner-credit-management/empty-state/NoAssignableBudgetActivity.jsx", + "line": 54, "column": 8, - "index": 3080 + "index": 1859 }, { - "filePath": "src/components/learner-credit-management/cards/AssignmentModalContent.jsx", + "filePath": "src/components/learner-credit-management/empty-state/NoAssignableBudgetActivity.jsx", "line": 89, "column": 8, - "index": 3298 + "index": 3275 }, { - "filePath": "src/components/learner-credit-management/MultipleBudgetsPage.jsx", - "line": 47, - "column": 12, - "index": 1097 + "filePath": "src/components/learner-credit-management/empty-state/NoBnEBudgetActivity.jsx", + "line": 45, + "column": 10, + "index": 1638 }, { - "filePath": "src/components/learner-credit-management/MultipleBudgetsPicker.jsx", - "line": 21, - "column": 6, - "index": 400 + "filePath": "src/components/learner-credit-management/empty-state/NoBnEBudgetActivity.jsx", + "line": 59, + "column": 8, + "index": 1992 }, { - "filePath": "src/components/learner-credit-management/MultipleBudgetsPicker.jsx", - "line": 24, + "filePath": "src/components/learner-credit-management/empty-state/NoBnEBudgetActivity.jsx", + "line": 95, + "column": 8, + "index": 3511 + }, + { + "filePath": "src/components/learner-credit-management/invite-modal/InviteModalBudgetCard.jsx", + "line": 72, + "column": 8, + "index": 2300 + }, + { + "filePath": "src/components/learner-credit-management/invite-modal/InviteModalContent.jsx", + "line": 107, "column": 6, - "index": 469 + "index": 4010 }, { - "filePath": "src/components/learner-credit-management/NoBudgetActivityEmptyState.jsx", - "line": 40, - "column": 10, - "index": 1511 + "filePath": "src/components/learner-credit-management/MultipleBudgetsPage.jsx", + "line": 69, + "column": 12, + "index": 1921 }, { - "filePath": "src/components/learner-credit-management/NoBudgetActivityEmptyState.jsx", - "line": 54, - "column": 8, - "index": 1870 + "filePath": "src/components/learner-credit-management/MultipleBudgetsPicker.jsx", + "line": 62, + "column": 6, + "index": 1630 }, { - "filePath": "src/components/learner-credit-management/NoBudgetActivityEmptyState.jsx", - "line": 89, - "column": 8, - "index": 3286 + "filePath": "src/components/PeopleManagement/CreateGroupModalContent.jsx", + "line": 107, + "column": 6, + "index": 3769 }, { - "filePath": "src/components/learner-credit-management/SubBudgetCard.jsx", - "line": 83, + "filePath": "src/components/PeopleManagement/CreateGroupModalContent.jsx", + "line": 123, "column": 6, - "index": 2319 + "index": 4249 }, { "filePath": "src/components/settings/SettingsAccessTab/index.jsx", - "line": 61, + "line": 62, "column": 6, - "index": 2711 + "index": 2779 }, { "filePath": "src/components/settings/SettingsAccessTab/index.jsx", - "line": 66, + "line": 73, "column": 6, - "index": 2810 + "index": 3133 }, { "filePath": "src/components/subscriptions/MultipleSubscriptionPicker.jsx", "line": 14, "column": 2, - "index": 307 + "index": 311 }, { "filePath": "src/components/subscriptions/MultipleSubscriptionsPage.jsx", - "line": 40, + "line": 41, "column": 10, - "index": 1114 + "index": 1182 }, { "filePath": "src/components/subscriptions/SubscriptionCard.jsx", "line": 107, "column": 8, - "index": 2718 + "index": 2722 }, { "filePath": "src/components/subscriptions/SubscriptionDetails.jsx", - "line": 37, + "line": 38, "column": 8, - "index": 1419 + "index": 1502 }, { "filePath": "src/components/subscriptions/SubscriptionDetails.jsx", - "line": 47, + "line": 52, "column": 6, - "index": 1770 + "index": 2098 }, { "filePath": "src/components/UserActivationPage/index.jsx", - "line": 82, + "line": 81, "column": 6, - "index": 2603 + "index": 2588 } ], "Col": [ { "filePath": "src/components/Admin/SubscriptionDetails.jsx", - "line": 36, + "line": 40, "column": 8, - "index": 1464 + "index": 1797 }, { "filePath": "src/components/ContentHighlights/CatalogVisibility/ContentHighlightCatalogVisibilityAlert.jsx", - "line": 44, + "line": 45, "column": 8, - "index": 1491 + "index": 1551 }, { "filePath": "src/components/ContentHighlights/CatalogVisibility/ContentHighlightCatalogVisibilityAlert.jsx", - "line": 67, + "line": 76, "column": 6, - "index": 1977 + "index": 2640 }, { "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperConfirmContent.jsx", "line": 143, "column": 8, - "index": 4390 + "index": 4398 }, { "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperSelectContent.jsx", "line": 12, "column": 6, - "index": 389 + "index": 393 }, { "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperSelectContent.jsx", "line": 17, "column": 6, - "index": 505 + "index": 509 }, { "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperTitle.jsx", "line": 13, "column": 6, - "index": 333 + "index": 350 }, { "filePath": "src/components/ContentHighlights/ZeroState/ZeroStateHighlights.jsx", - "line": 42, + "line": 43, "column": 6, - "index": 1467 + "index": 1526 + }, + { + "filePath": "src/components/EnterpriseList/index.jsx", + "line": 63, + "column": 10, + "index": 1691 + }, + { + "filePath": "src/components/learner-credit-management/assignment-modal/AssignmentModalContent.jsx", + "line": 132, + "column": 10, + "index": 4874 + }, + { + "filePath": "src/components/learner-credit-management/assignment-modal/AssignmentModalContent.jsx", + "line": 144, + "column": 10, + "index": 5401 + }, + { + "filePath": "src/components/learner-credit-management/assignment-modal/AssignmentModalContent.jsx", + "line": 198, + "column": 10, + "index": 8059 }, { "filePath": "src/components/learner-credit-management/BudgetDetailCatalogTabContents.jsx", - "line": 52, + "line": 51, "column": 6, - "index": 1761 + "index": 1794 }, { "filePath": "src/components/learner-credit-management/BudgetDetailPageOverviewAvailability.jsx", - "line": 97, + "line": 427, "column": 6, - "index": 3163 + "index": 17315 }, { "filePath": "src/components/learner-credit-management/BudgetDetailPageOverviewAvailability.jsx", - "line": 100, + "line": 430, "column": 6, - "index": 3276 + "index": 17444 }, { "filePath": "src/components/learner-credit-management/BudgetDetailPageOverviewUtilization.jsx", - "line": 61, + "line": 107, "column": 10, - "index": 1540 + "index": 3288 }, { "filePath": "src/components/learner-credit-management/BudgetDetailPageOverviewUtilization.jsx", - "line": 72, + "line": 128, "column": 20, - "index": 2124 + "index": 4395 }, { "filePath": "src/components/learner-credit-management/BudgetDetailPageOverviewUtilization.jsx", - "line": 73, + "line": 135, "column": 20, - "index": 2206 + "index": 4781 }, { "filePath": "src/components/learner-credit-management/BudgetDetailPageOverviewUtilization.jsx", - "line": 76, + "line": 138, "column": 20, - "index": 2396 + "index": 4971 }, { "filePath": "src/components/learner-credit-management/BudgetDetailPageOverviewUtilization.jsx", - "line": 84, + "line": 146, "column": 20, - "index": 2692 + "index": 5267 }, { "filePath": "src/components/learner-credit-management/BudgetDetailPageOverviewUtilization.jsx", - "line": 85, + "line": 153, "column": 20, - "index": 2771 + "index": 5644 }, { "filePath": "src/components/learner-credit-management/BudgetDetailPageOverviewUtilization.jsx", - "line": 88, + "line": 156, "column": 20, - "index": 2957 + "index": 5830 }, { - "filePath": "src/components/learner-credit-management/cards/AssignmentModalContent.jsx", - "line": 84, + "filePath": "src/components/learner-credit-management/empty-state/NoAssignableBudgetActivity.jsx", + "line": 41, + "column": 12, + "index": 1518 + }, + { + "filePath": "src/components/learner-credit-management/empty-state/NoAssignableBudgetActivity.jsx", + "line": 44, + "column": 12, + "index": 1604 + }, + { + "filePath": "src/components/learner-credit-management/empty-state/NoAssignableBudgetActivity.jsx", + "line": 47, + "column": 12, + "index": 1688 + }, + { + "filePath": "src/components/learner-credit-management/empty-state/NoAssignableBudgetActivity.jsx", + "line": 55, "column": 10, - "index": 3096 + "index": 1928 + }, + { + "filePath": "src/components/learner-credit-management/empty-state/NoAssignableBudgetActivity.jsx", + "line": 66, + "column": 10, + "index": 2379 + }, + { + "filePath": "src/components/learner-credit-management/empty-state/NoAssignableBudgetActivity.jsx", + "line": 77, + "column": 10, + "index": 2817 }, { - "filePath": "src/components/learner-credit-management/cards/AssignmentModalContent.jsx", + "filePath": "src/components/learner-credit-management/empty-state/NoAssignableBudgetActivity.jsx", "line": 90, "column": 10, - "index": 3314 + "index": 3291 }, { - "filePath": "src/components/learner-credit-management/cards/AssignmentModalContent.jsx", - "line": 114, + "filePath": "src/components/learner-credit-management/empty-state/NoBnEBudgetActivity.jsx", + "line": 46, + "column": 12, + "index": 1656 + }, + { + "filePath": "src/components/learner-credit-management/empty-state/NoBnEBudgetActivity.jsx", + "line": 49, + "column": 12, + "index": 1739 + }, + { + "filePath": "src/components/learner-credit-management/empty-state/NoBnEBudgetActivity.jsx", + "line": 52, + "column": 12, + "index": 1819 + }, + { + "filePath": "src/components/learner-credit-management/empty-state/NoBnEBudgetActivity.jsx", + "line": 60, + "column": 10, + "index": 2061 + }, + { + "filePath": "src/components/learner-credit-management/empty-state/NoBnEBudgetActivity.jsx", + "line": 71, "column": 10, - "index": 4371 + "index": 2492 + }, + { + "filePath": "src/components/learner-credit-management/empty-state/NoBnEBudgetActivity.jsx", + "line": 82, + "column": 10, + "index": 2959 + }, + { + "filePath": "src/components/learner-credit-management/empty-state/NoBnEBudgetActivity.jsx", + "line": 96, + "column": 10, + "index": 3527 + }, + { + "filePath": "src/components/learner-credit-management/invite-modal/InviteModalBudgetCard.jsx", + "line": 73, + "column": 10, + "index": 2316 + }, + { + "filePath": "src/components/learner-credit-management/invite-modal/InviteModalBudgetCard.jsx", + "line": 86, + "column": 10, + "index": 2737 + }, + { + "filePath": "src/components/learner-credit-management/invite-modal/InviteModalContent.jsx", + "line": 108, + "column": 8, + "index": 4041 + }, + { + "filePath": "src/components/learner-credit-management/invite-modal/InviteModalContent.jsx", + "line": 152, + "column": 8, + "index": 5880 }, { "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", "line": 11, "column": 4, - "index": 225 + "index": 229 }, { "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", "line": 20, "column": 4, - "index": 548 + "index": 552 }, { "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", "line": 29, "column": 4, - "index": 871 + "index": 875 }, { "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", "line": 59, "column": 8, - "index": 1539 + "index": 1543 }, { "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", "line": 71, "column": 8, - "index": 2016 + "index": 2020 }, { "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", "line": 83, "column": 8, - "index": 2486 + "index": 2490 }, { "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", "line": 107, "column": 6, - "index": 3313 + "index": 3317 }, { "filePath": "src/components/learner-credit-management/LearnerCreditDisclaimer.jsx", "line": 10, "column": 4, - "index": 299 + "index": 307 }, { "filePath": "src/components/learner-credit-management/MultipleBudgetsPage.jsx", - "line": 48, + "line": 70, "column": 14, - "index": 1117 - }, - { - "filePath": "src/components/learner-credit-management/MultipleBudgetsPicker.jsx", - "line": 22, - "column": 8, - "index": 414 + "index": 1941 }, { "filePath": "src/components/learner-credit-management/MultipleBudgetsPicker.jsx", - "line": 25, + "line": 63, "column": 8, - "index": 483 + "index": 1661 }, { - "filePath": "src/components/learner-credit-management/NoBudgetActivityEmptyState.jsx", - "line": 41, - "column": 12, - "index": 1529 + "filePath": "src/components/learner-credit-management/SubBudgetCardUtilization.jsx", + "line": 33, + "column": 6, + "index": 867 }, { - "filePath": "src/components/learner-credit-management/NoBudgetActivityEmptyState.jsx", - "line": 44, + "filePath": "src/components/learner-credit-management/SubBudgetCardUtilization.jsx", + "line": 36, "column": 12, - "index": 1615 + "index": 1014 }, { - "filePath": "src/components/learner-credit-management/NoBudgetActivityEmptyState.jsx", - "line": 47, + "filePath": "src/components/learner-credit-management/SubBudgetCardUtilization.jsx", + "line": 49, "column": 12, - "index": 1699 - }, - { - "filePath": "src/components/learner-credit-management/NoBudgetActivityEmptyState.jsx", - "line": 55, - "column": 10, - "index": 1939 - }, - { - "filePath": "src/components/learner-credit-management/NoBudgetActivityEmptyState.jsx", - "line": 66, - "column": 10, - "index": 2390 + "index": 1583 }, { - "filePath": "src/components/learner-credit-management/NoBudgetActivityEmptyState.jsx", - "line": 77, - "column": 10, - "index": 2828 + "filePath": "src/components/learner-credit-management/SubBudgetCardUtilization.jsx", + "line": 64, + "column": 8, + "index": 2144 }, { - "filePath": "src/components/learner-credit-management/NoBudgetActivityEmptyState.jsx", - "line": 90, - "column": 10, - "index": 3302 + "filePath": "src/components/PeopleManagement/CreateGroupModalContent.jsx", + "line": 108, + "column": 8, + "index": 3783 }, { - "filePath": "src/components/learner-credit-management/SubBudgetCard.jsx", - "line": 84, + "filePath": "src/components/PeopleManagement/CreateGroupModalContent.jsx", + "line": 121, "column": 8, - "index": 2391 + "index": 4222 }, { - "filePath": "src/components/learner-credit-management/SubBudgetCard.jsx", - "line": 91, - "column": 10, - "index": 2682 + "filePath": "src/components/PeopleManagement/CreateGroupModalContent.jsx", + "line": 124, + "column": 8, + "index": 4263 }, { - "filePath": "src/components/learner-credit-management/SubBudgetCard.jsx", - "line": 98, + "filePath": "src/components/PeopleManagement/CreateGroupModalContent.jsx", + "line": 138, "column": 8, - "index": 2962 + "index": 4816 }, { "filePath": "src/components/settings/SettingsAccessTab/index.jsx", - "line": 62, + "line": 63, "column": 8, - "index": 2725 + "index": 2793 }, { "filePath": "src/components/settings/SettingsAccessTab/index.jsx", - "line": 67, + "line": 74, "column": 8, - "index": 2865 + "index": 3188 }, { "filePath": "src/components/settings/SettingsAccessTab/index.jsx", - "line": 72, + "line": 83, "column": 8, - "index": 3039 + "index": 3636 }, { "filePath": "src/components/subscriptions/MultipleSubscriptionPicker.jsx", "line": 15, "column": 4, - "index": 317 + "index": 321 }, { "filePath": "src/components/subscriptions/MultipleSubscriptionPicker.jsx", "line": 19, "column": 4, - "index": 391 + "index": 395 }, { "filePath": "src/components/subscriptions/MultipleSubscriptionsPage.jsx", - "line": 41, + "line": 42, "column": 12, - "index": 1132 + "index": 1200 }, { "filePath": "src/components/subscriptions/SubscriptionCard.jsx", "line": 109, "column": 12, - "index": 2883 + "index": 2887 }, { "filePath": "src/components/subscriptions/SubscriptionDetails.jsx", - "line": 48, + "line": 53, "column": 8, - "index": 1801 + "index": 2129 }, { "filePath": "src/components/UserActivationPage/index.jsx", - "line": 83, + "line": 82, "column": 8, - "index": 2660 + "index": 2645 } ], - "BookOpen": [ + "StatefulButton": [ { - "filePath": "src/components/BulkEnrollmentPage/BulkEnrollButton.jsx", - "line": 18, - "column": 16, - "index": 668 + "filePath": "src/components/Admin/tabs/DownloadCSVButton.jsx", + "line": 58, + "column": 6, + "index": 1716 }, { - "filePath": "src/components/Sidebar/index.jsx", - "line": 106, - "column": 23, - "index": 3561 + "filePath": "src/components/AdvanceAnalyticsV2/DownloadCSVButton.jsx", + "line": 57, + "column": 6, + "index": 1676 }, { - "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/ConfirmationModal/index.jsx", + "line": 120, + "column": 10, + "index": 3929 }, { - "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentSubmit.jsx", - "line": 36, - "column": 2, - "index": 909 + "filePath": "src/components/ContentHighlights/DeleteArchivedHighlightsDialogs.jsx", + "line": 111, + "column": 10, + "index": 4304 }, { "filePath": "src/components/ContentHighlights/DeleteHighlightSet.jsx", - "line": 106, - "column": 6, - "index": 3573 + "line": 131, + "column": 12, + "index": 4599 }, { "filePath": "src/components/ContentHighlights/HighlightStepper/ContentHighlightStepper.jsx", - "line": 356, - "column": 6, - "index": 13433 - }, - { - "filePath": "src/components/learner-credit-management/cards/assignment-allocation-status-modals/ContentNotInCatalogErrorAlertModal.jsx", - "line": 24, - "column": 4, - "index": 711 + "line": 316, + "column": 16, + "index": 12044 }, { - "filePath": "src/components/learner-credit-management/cards/assignment-allocation-status-modals/NotEnoughBalanceAlertModal.jsx", - "line": 26, - "column": 4, - "index": 761 + "filePath": "src/components/learner-credit-management/assignment-modal/NewAssignmentModalButton.jsx", + "line": 290, + "column": 12, + "index": 10855 }, { - "filePath": "src/components/learner-credit-management/cards/assignment-allocation-status-modals/SystemErrorAlertModal.jsx", - "line": 20, + "filePath": "src/components/learner-credit-management/CancelAssignmentModal.jsx", + "line": 71, + "column": 10, + "index": 2565 + }, + { + "filePath": "src/components/learner-credit-management/invite-modal/EnterpriseCustomerUserDatatable.jsx", + "line": 65, "column": 4, - "index": 444 + "index": 1684 + }, + { + "filePath": "src/components/learner-credit-management/invite-modal/InviteMembersModalWrapper.jsx", + "line": 114, + "column": 12, + "index": 4152 + }, + { + "filePath": "src/components/learner-credit-management/members-tab/bulk-actions/MemberRemoveModal.jsx", + "line": 203, + "column": 10, + "index": 7883 + }, + { + "filePath": "src/components/learner-credit-management/RemindAssignmentModal.jsx", + "line": 65, + "column": 10, + "index": 2408 + }, + { + "filePath": "src/components/PeopleManagement/CreateGroupModal.jsx", + "line": 91, + "column": 12, + "index": 2992 + }, + { + "filePath": "src/components/PeopleManagement/EditGroupNameModal.jsx", + "line": 84, + "column": 12, + "index": 2500 + }, + { + "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", + "line": 523, + "column": 12, + "index": 21335 + }, + { + "filePath": "src/components/SaveTemplateButton/index.jsx", + "line": 142, + "column": 6, + "index": 4568 }, { "filePath": "src/components/settings/SettingsAccessTab/DisableLinkManagementAlertModal.jsx", - "line": 32, - "column": 4, - "index": 594 + "line": 59, + "column": 10, + "index": 1718 }, { "filePath": "src/components/settings/SettingsAccessTab/LinkDeactivationAlertModal.jsx", - "line": 52, + "line": 79, + "column": 10, + "index": 2268 + }, + { + "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessGenerateLinkButton.jsx", + "line": 64, "column": 4, - "index": 1144 + "index": 2046 }, { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", - "line": 181, + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/DownloadCsvButton.jsx", + "line": 63, "column": 6, - "index": 6205 + "index": 1795 }, { - "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 135, - "column": 6, - "index": 4275 - } - ], - "ActionRow": [ + "filePath": "src/components/subscriptions/buttons/DownloadCsvButton.jsx", + "line": 43, + "column": 4, + "index": 1561 + }, { - "filePath": "src/components/BulkEnrollmentPage/BulkEnrollmentWarningModal.jsx", - "line": 23, - "column": 6, - "index": 560 + "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRemindModal.jsx", + "line": 225, + "column": 10, + "index": 7238 }, { - "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentSubmit.jsx", - "line": 41, - "column": 6, - "index": 1026 + "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRevokeModal.jsx", + "line": 231, + "column": 10, + "index": 7261 }, { - "filePath": "src/components/ConfirmationModal/index.jsx", - "line": 55, - "column": 6, - "index": 1153 + "filePath": "src/components/subsidy-request-modals/ApproveCouponCodeRequestModal.jsx", + "line": 167, + "column": 12, + "index": 5418 }, { - "filePath": "src/components/ContentHighlights/CurrentContentHighlightHeader.jsx", - "line": 67, - "column": 6, - "index": 2178 + "filePath": "src/components/subsidy-request-modals/ApproveLicenseRequestModal.jsx", + "line": 238, + "column": 12, + "index": 9551 }, { - "filePath": "src/components/ContentHighlights/CurrentContentHighlightItemsHeader.jsx", - "line": 10, - "column": 6, - "index": 352 + "filePath": "src/components/subsidy-request-modals/DeclineSubsidyRequestModal.jsx", + "line": 112, + "column": 10, + "index": 3341 + } + ], + "Download": [ + { + "filePath": "src/components/Admin/tabs/DownloadCSVButton.jsx", + "line": 85, + "column": 30, + "index": 3096 }, { - "filePath": "src/components/ContentHighlights/CurrentContentHighlightItemsHeader.jsx", - "line": 20, - "column": 6, - "index": 602 + "filePath": "src/components/Admin/tabs/DownloadCSVButton.jsx", + "line": 88, + "column": 34, + "index": 3263 }, { - "filePath": "src/components/ContentHighlights/DeleteHighlightSet.jsx", - "line": 111, - "column": 10, - "index": 3699 + "filePath": "src/components/AdvanceAnalyticsV2/DownloadCSVButton.jsx", + "line": 85, + "column": 30, + "index": 3073 }, { - "filePath": "src/components/ContentHighlights/HighlightStepper/ContentHighlightStepper.jsx", - "line": 364, - "column": 8, - "index": 13666 + "filePath": "src/components/AdvanceAnalyticsV2/tabs/AnalyticsTable.jsx", + "line": 66, + "column": 25, + "index": 1885 }, { - "filePath": "src/components/ContentHighlights/HighlightStepper/SelectContentSearchPagination.jsx", - "line": 11, - "column": 2, - "index": 281 + "filePath": "src/components/learner-credit-management/members-tab/GroupMembersCsvDownloadTableAction.jsx", + "line": 122, + "column": 20, + "index": 4696 }, { - "filePath": "src/components/learner-credit-management/CancelAssignmentModal.jsx", - "line": 46, - "column": 8, - "index": 1283 + "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", + "line": 550, + "column": 36, + "index": 22593 }, { - "filePath": "src/components/learner-credit-management/cards/assignment-allocation-status-modals/ContentNotInCatalogErrorAlertModal.jsx", - "line": 32, - "column": 8, - "index": 948 + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/DownloadCsvButton.jsx", + "line": 74, + "column": 30, + "index": 2130 }, { - "filePath": "src/components/learner-credit-management/cards/assignment-allocation-status-modals/NotEnoughBalanceAlertModal.jsx", - "line": 34, - "column": 8, - "index": 957 + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/DownloadCsvButton.jsx", + "line": 77, + "column": 34, + "index": 2297 }, { - "filePath": "src/components/learner-credit-management/cards/assignment-allocation-status-modals/SystemErrorAlertModal.jsx", - "line": 28, - "column": 8, - "index": 642 + "filePath": "src/components/subscriptions/buttons/DownloadCsvButton.jsx", + "line": 64, + "column": 28, + "index": 2367 + } + ], + "Spinner": [ + { + "filePath": "src/components/Admin/tabs/DownloadCSVButton.jsx", + "line": 86, + "column": 19, + "index": 3129 }, { - "filePath": "src/components/learner-credit-management/cards/NewAssignmentModalButton.jsx", - "line": 192, + "filePath": "src/components/AdvanceAnalyticsV2/charts/ChartWrapper.jsx", + "line": 31, "column": 10, - "index": 6865 + "index": 814 }, { - "filePath": "src/components/learner-credit-management/RemindAssignmentModal.jsx", - "line": 43, - "column": 8, - "index": 1280 + "filePath": "src/components/AdvanceAnalyticsV2/DownloadCSVButton.jsx", + "line": 86, + "column": 19, + "index": 3106 }, { - "filePath": "src/components/settings/SettingsAccessTab/ActionsTableCell.jsx", - "line": 70, - "column": 8, - "index": 2106 + "filePath": "src/components/AdvanceAnalyticsV2/ProgressOverlay.jsx", + "line": 10, + "column": 34, + "index": 400 }, { - "filePath": "src/components/settings/SettingsAccessTab/DisableLinkManagementAlertModal.jsx", - "line": 37, + "filePath": "src/components/AdvanceAnalyticsV2/Stats.jsx", + "line": 29, "column": 8, - "index": 708 + "index": 892 }, { - "filePath": "src/components/settings/SettingsAccessTab/LinkDeactivationAlertModal.jsx", - "line": 57, - "column": 8, - "index": 1262 + "filePath": "src/components/CodeAssignmentModal/index.jsx", + "line": 426, + "column": 62, + "index": 12843 }, { - "filePath": "src/components/settings/SettingsApiCredentialsTab/index.jsx", - "line": 42, + "filePath": "src/components/CodeReminderModal/index.jsx", + "line": 240, + "column": 55, + "index": 6933 + }, + { + "filePath": "src/components/CodeRevokeModal/index.jsx", + "line": 248, + "column": 62, + "index": 7097 + }, + { + "filePath": "src/components/ContentHighlights/CatalogVisibility/ContentHighlightCatalogVisibilityRadioInput.jsx", + "line": 128, "column": 12, - "index": 1516 + "index": 5055 }, { - "filePath": "src/components/settings/SettingsApiCredentialsTab/RegenerateCredentialWarningModal.jsx", - "line": 75, - "column": 10, - "index": 2217 + "filePath": "src/components/ContentHighlights/CatalogVisibility/ContentHighlightCatalogVisibilityRadioInput.jsx", + "line": 155, + "column": 12, + "index": 6353 }, { - "filePath": "src/components/settings/SettingsAppearanceTab/CustomThemeModal.jsx", - "line": 144, - "column": 8, - "index": 5476 + "filePath": "src/components/DownloadCsvButton/index.jsx", + "line": 39, + "column": 24, + "index": 1076 }, { - "filePath": "src/components/settings/SettingsAppearanceTab/ThemeCard.jsx", - "line": 40, - "column": 6, - "index": 1126 + "filePath": "src/components/InviteLearnersModal/index.jsx", + "line": 268, + "column": 31, + "index": 8668 }, { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", - "line": 150, - "column": 8, - "index": 5155 + "filePath": "src/components/learner-credit-management/members-tab/bulk-actions/MemberRemoveModal.jsx", + "line": 212, + "column": 23, + "index": 8251 }, { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", - "line": 160, - "column": 8, - "index": 5490 + "filePath": "src/components/NumberCard/index.jsx", + "line": 156, + "column": 15, + "index": 4878 }, { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", - "line": 170, - "column": 6, - "index": 5894 + "filePath": "src/components/PeopleManagement/EditGroupNameModal.jsx", + "line": 108, + "column": 18, + "index": 3672 }, { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", - "line": 187, - "column": 10, - "index": 6391 + "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", + "line": 551, + "column": 25, + "index": 22632 }, { - "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 141, - "column": 10, - "index": 4461 + "filePath": "src/components/RequestCodesPage/RequestCodesForm.jsx", + "line": 122, + "column": 33, + "index": 3344 }, { - "filePath": "src/components/settings/SettingsSSOTab/index.jsx", - "line": 90, - "column": 12, - "index": 3767 + "filePath": "src/components/SaveTemplateButton/index.jsx", + "line": 153, + "column": 19, + "index": 4935 }, { - "filePath": "src/components/subscriptions/expiration/SubscriptionExpiredModal.jsx", - "line": 36, + "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessTabSection.jsx", + "line": 33, "column": 8, - "index": 1283 + "index": 675 }, { - "filePath": "src/components/subscriptions/expiration/SubscriptionExpiringModal.jsx", - "line": 57, - "column": 8, - "index": 1893 + "filePath": "src/components/settings/SettingsApiCredentialsTab/ZeroStateCard.jsx", + "line": 112, + "column": 24, + "index": 4440 + }, + { + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/DownloadCsvButton.jsx", + "line": 75, + "column": 19, + "index": 2163 + }, + { + "filePath": "src/components/settings/SettingsSSOTab/index.jsx", + "line": 121, + "column": 18, + "index": 5332 + }, + { + "filePath": "src/components/subscriptions/buttons/DownloadCsvButton.jsx", + "line": 65, + "column": 17, + "index": 2398 }, { "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRemindModal.jsx", - "line": 210, - "column": 8, - "index": 6446 + "line": 232, + "column": 23, + "index": 7522 }, { "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRevokeModal.jsx", - "line": 187, - "column": 8, - "index": 5495 + "line": 239, + "column": 23, + "index": 7596 + } + ], + "Check": [ + { + "filePath": "src/components/Admin/tabs/DownloadCSVButton.jsx", + "line": 87, + "column": 31, + "index": 3218 }, { - "filePath": "src/components/subsidy-request-modals/ApproveCouponCodeRequestModal.jsx", - "line": 162, - "column": 10, - "index": 5236 + "filePath": "src/components/AdvanceAnalyticsV2/DownloadCSVButton.jsx", + "line": 87, + "column": 31, + "index": 3195 }, { - "filePath": "src/components/subsidy-request-modals/ApproveLicenseRequestModal.jsx", - "line": 161, - "column": 10, - "index": 5531 + "filePath": "src/components/CodeSearchResults/CodeSearchResultsTable.jsx", + "line": 116, + "column": 44, + "index": 2944 }, { - "filePath": "src/components/subsidy-request-modals/DeclineSubsidyRequestModal.jsx", - "line": 108, - "column": 8, - "index": 3163 + "filePath": "src/components/learner-credit-management/invite-modal/InviteModalPermissions.jsx", + "line": 31, + "column": 23, + "index": 1174 }, { - "filePath": "src/components/SubsidyRequestManagementTable/ActionCell.jsx", - "line": 15, - "column": 4, - "index": 288 - } - ], - "ErrorOutline": [ + "filePath": "src/components/learner-credit-management/invite-modal/InviteModalPermissions.jsx", + "line": 40, + "column": 23, + "index": 1573 + }, { - "filePath": "src/components/BulkEnrollmentPage/CourseSearchResults.jsx", - "line": 151, - "column": 14, - "index": 4531 + "filePath": "src/components/ReportingConfig/index.jsx", + "line": 150, + "column": 29, + "index": 4992 + }, + { + "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", + "line": 552, + "column": 37, + "index": 22727 + }, + { + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/DownloadCsvButton.jsx", + "line": 76, + "column": 31, + "index": 2252 + }, + { + "filePath": "src/components/subscriptions/buttons/DownloadCsvButton.jsx", + "line": 66, + "column": 29, + "index": 2485 } ], "DataTable.TableControlBar": [ + { + "filePath": "src/components/Admin/tabs/ModuleActivityReport.jsx", + "line": 159, + "column": 8, + "index": 5963 + }, + { + "filePath": "src/components/AdvanceAnalyticsV2/tabs/AnalyticsTable.jsx", + "line": 90, + "column": 10, + "index": 2710 + }, { "filePath": "src/components/BulkEnrollmentPage/CourseSearchResults.jsx", "line": 178, "column": 8, - "index": 5310 + "index": 5318 }, { "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperSelectContentSearch.jsx", "line": 102, "column": 6, - "index": 3337 + "index": 3341 + }, + { + "filePath": "src/components/learner-credit-management/MultipleBudgetsPicker.jsx", + "line": 96, + "column": 8, + "index": 2626 }, { "filePath": "src/components/learner-credit-management/search/CatalogSearchResults.jsx", - "line": 98, + "line": 99, "column": 8, - "index": 2949 + "index": 2956 }, { "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessLinkManagement.jsx", - "line": 162, + "line": 214, "column": 10, - "index": 5513 + "index": 8156 }, { "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/ContentMetadataTable.jsx", "line": 145, "column": 8, - "index": 4133 + "index": 4137 }, { "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/LearnerMetadataTable.jsx", "line": 152, "column": 8, - "index": 4419 + "index": 4423 }, { "filePath": "src/components/SubsidyRequestManagementTable/SubsidyRequestManagementTable.jsx", - "line": 90, + "line": 109, "column": 6, - "index": 2145 + "index": 3219 } ], "DataTable.Table": [ + { + "filePath": "src/components/Admin/tabs/ModuleActivityReport.jsx", + "line": 160, + "column": 8, + "index": 6001 + }, + { + "filePath": "src/components/AdvanceAnalyticsV2/tabs/AnalyticsTable.jsx", + "line": 91, + "column": 10, + "index": 2750 + }, { "filePath": "src/components/BulkEnrollmentPage/CourseSearchResults.jsx", "line": 179, "column": 8, - "index": 5348 + "index": 5356 }, { "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperSelectContentSearch.jsx", "line": 115, "column": 33, - "index": 3692 + "index": 3696 }, { "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessLinkManagement.jsx", - "line": 163, + "line": 215, "column": 10, - "index": 5553 + "index": 8196 }, { "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/ContentMetadataTable.jsx", "line": 146, "column": 8, - "index": 4171 + "index": 4175 }, { "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/LearnerMetadataTable.jsx", "line": 153, "column": 8, - "index": 4457 + "index": 4461 }, { "filePath": "src/components/SubsidyRequestManagementTable/SubsidyRequestManagementTable.jsx", - "line": 91, + "line": 110, "column": 6, - "index": 2181 + "index": 3255 } ], "DataTable.TableFooter": [ + { + "filePath": "src/components/Admin/tabs/ModuleActivityReport.jsx", + "line": 168, + "column": 8, + "index": 6334 + }, + { + "filePath": "src/components/AdvanceAnalyticsV2/tabs/AnalyticsTable.jsx", + "line": 99, + "column": 10, + "index": 3061 + }, { "filePath": "src/components/BulkEnrollmentPage/CourseSearchResults.jsx", "line": 180, "column": 8, - "index": 5376 + "index": 5384 }, { "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperSelectContentSearch.jsx", "line": 117, "column": 6, - "index": 3778 + "index": 3782 + }, + { + "filePath": "src/components/learner-credit-management/MultipleBudgetsPicker.jsx", + "line": 101, + "column": 8, + "index": 2765 }, { "filePath": "src/components/learner-credit-management/search/CatalogSearchResults.jsx", - "line": 104, + "line": 105, "column": 8, - "index": 3148 + "index": 3155 }, { "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/ContentMetadataTable.jsx", "line": 148, "column": 8, - "index": 4259 + "index": 4263 }, { "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/LearnerMetadataTable.jsx", "line": 155, "column": 8, - "index": 4545 + "index": 4549 }, { "filePath": "src/components/SubsidyRequestManagementTable/SubsidyRequestManagementTable.jsx", - "line": 95, + "line": 119, "column": 6, - "index": 2299 + "index": 3636 } ], - "DataTable.RowStatus": [ + "Close": [ { - "filePath": "src/components/BulkEnrollmentPage/CourseSearchResults.jsx", - "line": 181, - "column": 10, - "index": 5410 + "filePath": "src/components/AdvanceAnalyticsV2/DownloadCSVButton.jsx", + "line": 88, + "column": 28, + "index": 3234 }, { - "filePath": "src/components/ContentHighlights/HighlightStepper/SelectContentSearchPagination.jsx", - "line": 12, - "column": 4, - "index": 297 - } - ], - "Stepper": [ + "filePath": "src/components/CodeSearchResults/CodeSearchResultsHeading.jsx", + "line": 19, + "column": 36, + "index": 696 + }, { - "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentStepper.jsx", - "line": 50, - "column": 4, - "index": 1648 + "filePath": "src/components/FileInput/index.jsx", + "line": 138, + "column": 25, + "index": 3480 }, { - "filePath": "src/components/ContentHighlights/HighlightStepper/ContentHighlightStepper.jsx", - "line": 258, - "column": 6, - "index": 9704 + "filePath": "src/components/MultipleFileInputField/MultipleFileInputField.jsx", + "line": 94, + "column": 47, + "index": 2979 }, { - "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", - "line": 136, - "column": 6, - "index": 5169 + "filePath": "src/components/ReportingConfig/index.jsx", + "line": 155, + "column": 29, + "index": 5165 + }, + { + "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", + "line": 553, + "column": 34, + "index": 22772 + }, + { + "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", + "line": 575, + "column": 25, + "index": 23688 } ], - "ModalDialog": [ + "Hyperlink": [ { - "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentStepper.jsx", - "line": 51, - "column": 6, - "index": 1688 + "filePath": "src/components/BudgetExpiryAlertAndModal/index.jsx", + "line": 83, + "column": 18, + "index": 2552 }, { - "filePath": "src/components/ConfirmationModal/index.jsx", - "line": 28, - "column": 2, - "index": 537 + "filePath": "src/components/BudgetExpiryAlertAndModal/index.jsx", + "line": 125, + "column": 20, + "index": 4035 }, { - "filePath": "src/components/learner-credit-management/CancelAssignmentModal.jsx", - "line": 26, + "filePath": "src/components/ContactCustomerSupportButton/index.jsx", + "line": 17, "column": 4, - "index": 679 + "index": 418 }, { - "filePath": "src/components/learner-credit-management/RemindAssignmentModal.jsx", - "line": 22, - "column": 4, - "index": 649 + "filePath": "src/components/ContentHighlights/ContentHighlightCardItem.jsx", + "line": 56, + "column": 6, + "index": 1954 }, { - "filePath": "src/components/settings/SettingsApiCredentialsTab/RegenerateCredentialWarningModal.jsx", - "line": 48, + "filePath": "src/components/ContentHighlights/DeleteArchivedHighlightsDialogs.jsx", + "line": 70, + "column": 10, + "index": 2611 + }, + { + "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperFooterHelpLink.jsx", + "line": 33, "column": 6, - "index": 1320 + "index": 1158 }, { - "filePath": "src/components/settings/SettingsAppearanceTab/CustomThemeModal.jsx", - "line": 66, - "column": 4, - "index": 2663 + "filePath": "src/components/learner-credit-management/assignment-modal/NewAssignmentModalButton.jsx", + "line": 250, + "column": 18, + "index": 9289 }, { - "filePath": "src/components/settings/SettingsSSOTab/index.jsx", - "line": 67, + "filePath": "src/components/learner-credit-management/AssignmentDetailsTableCell.jsx", + "line": 33, "column": 8, - "index": 2900 + "index": 1267 }, { - "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", - "line": 160, - "column": 6, - "index": 5766 + "filePath": "src/components/learner-credit-management/assignments-status-chips/FailedBadEmail.jsx", + "line": 60, + "column": 16, + "index": 2012 }, { - "filePath": "src/components/subscriptions/expiration/SubscriptionExpiredModal.jsx", - "line": 21, - "column": 4, - "index": 679 + "filePath": "src/components/learner-credit-management/assignments-status-chips/FailedCancellation.jsx", + "line": 61, + "column": 16, + "index": 2046 }, { - "filePath": "src/components/subscriptions/expiration/SubscriptionExpiringModal.jsx", - "line": 34, - "column": 4, - "index": 1140 + "filePath": "src/components/learner-credit-management/assignments-status-chips/FailedRedemption.jsx", + "line": 66, + "column": 16, + "index": 2164 }, { - "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRemindModal.jsx", - "line": 150, - "column": 4, - "index": 4492 + "filePath": "src/components/learner-credit-management/assignments-status-chips/FailedReminder.jsx", + "line": 60, + "column": 16, + "index": 2063 }, { - "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRevokeModal.jsx", - "line": 145, - "column": 4, - "index": 4029 + "filePath": "src/components/learner-credit-management/assignments-status-chips/FailedSystem.jsx", + "line": 59, + "column": 16, + "index": 1904 }, { - "filePath": "src/components/subsidy-request-modals/ApproveCouponCodeRequestModal.jsx", - "line": 85, - "column": 4, - "index": 2438 + "filePath": "src/components/learner-credit-management/assignments-status-chips/IncompleteAssignment.jsx", + "line": 59, + "column": 16, + "index": 2127 }, { - "filePath": "src/components/subsidy-request-modals/ApproveLicenseRequestModal.jsx", - "line": 84, - "column": 4, - "index": 2580 + "filePath": "src/components/learner-credit-management/assignments-status-chips/IncompleteAssignment.jsx", + "line": 69, + "column": 16, + "index": 2459 }, { - "filePath": "src/components/subsidy-request-modals/DeclineSubsidyRequestModal.jsx", - "line": 62, - "column": 4, - "index": 1554 - } - ], - "ModalDialog.Header": [ + "filePath": "src/components/learner-credit-management/assignments-status-chips/WaitingForLearner.jsx", + "line": 58, + "column": 14, + "index": 2059 + }, { - "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentStepper.jsx", - "line": 60, - "column": 8, - "index": 1915 + "filePath": "src/components/learner-credit-management/BudgetDetailAssignments.jsx", + "line": 87, + "column": 14, + "index": 3635 }, { - "filePath": "src/components/ConfirmationModal/index.jsx", - "line": 35, - "column": 4, - "index": 667 + "filePath": "src/components/learner-credit-management/BudgetDetailPageOverviewAvailability.jsx", + "line": 98, + "column": 16, + "index": 3546 }, { - "filePath": "src/components/learner-credit-management/CancelAssignmentModal.jsx", + "filePath": "src/components/learner-credit-management/BudgetDetailPageOverviewAvailability.jsx", + "line": 171, + "column": 16, + "index": 6666 + }, + { + "filePath": "src/components/learner-credit-management/BudgetDetailPageOverviewAvailability.jsx", + "line": 345, + "column": 16, + "index": 14529 + }, + { + "filePath": "src/components/learner-credit-management/BudgetDetailRedemptions.jsx", + "line": 53, + "column": 14, + "index": 2344 + }, + { + "filePath": "src/components/learner-credit-management/cards/CourseCardFooterActions.jsx", "line": 32, - "column": 6, - "index": 797 + "column": 12, + "index": 1165 }, { - "filePath": "src/components/learner-credit-management/RemindAssignmentModal.jsx", - "line": 28, - "column": 6, - "index": 767 + "filePath": "src/components/learner-credit-management/invite-modal/InviteMembersModalWrapper.jsx", + "line": 106, + "column": 18, + "index": 3834 }, { - "filePath": "src/components/settings/SettingsApiCredentialsTab/RegenerateCredentialWarningModal.jsx", - "line": 57, - "column": 8, - "index": 1525 + "filePath": "src/components/learner-credit-management/members-tab/bulk-actions/MemberRemoveModal.jsx", + "line": 168, + "column": 22, + "index": 6365 }, { - "filePath": "src/components/settings/SettingsAppearanceTab/CustomThemeModal.jsx", - "line": 74, - "column": 6, - "index": 2820 + "filePath": "src/components/learner-credit-management/members-tab/status-chips/BaseStatusChip.jsx", + "line": 59, + "column": 18, + "index": 1787 }, { - "filePath": "src/components/settings/SettingsSSOTab/index.jsx", - "line": 75, - "column": 10, - "index": 3108 + "filePath": "src/components/learner-credit-management/MultipleBudgetsPage.jsx", + "line": 85, + "column": 16, + "index": 2709 }, { - "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", - "line": 165, + "filePath": "src/components/learner-credit-management/SpendTableEnrollmentDetails.jsx", + "line": 32, "column": 8, - "index": 5894 + "index": 1065 }, { - "filePath": "src/components/subscriptions/expiration/SubscriptionExpiringModal.jsx", - "line": 40, - "column": 6, - "index": 1279 + "filePath": "src/components/PeopleManagement/GroupDetailCard.jsx", + "line": 15, + "column": 8, + "index": 510 }, { - "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRemindModal.jsx", - "line": 156, - "column": 6, - "index": 4616 + "filePath": "src/components/PeopleManagement/GroupDetailPage.jsx", + "line": 112, + "column": 14, + "index": 4004 }, { - "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRevokeModal.jsx", - "line": 151, - "column": 6, - "index": 4153 + "filePath": "src/components/settings/HelpCenterButton.jsx", + "line": 14, + "column": 4, + "index": 285 }, { - "filePath": "src/components/subsidy-request-modals/ApproveCouponCodeRequestModal.jsx", - "line": 93, - "column": 8, - "index": 2627 + "filePath": "src/components/settings/SettingsApiCredentialsTab/APICredentialsPage.jsx", + "line": 146, + "column": 16, + "index": 6048 }, { - "filePath": "src/components/subsidy-request-modals/ApproveLicenseRequestModal.jsx", - "line": 92, - "column": 8, - "index": 2765 + "filePath": "src/components/settings/SettingsApiCredentialsTab/ZeroStateCard.jsx", + "line": 58, + "column": 16, + "index": 2391 }, { - "filePath": "src/components/subsidy-request-modals/DeclineSubsidyRequestModal.jsx", - "line": 69, - "column": 6, - "index": 1724 - } - ], - "ModalDialog.Title": [ + "filePath": "src/components/settings/SettingsApiCredentialsTab/ZeroStateCard.jsx", + "line": 84, + "column": 10, + "index": 3479 + }, { - "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentStepper.jsx", - "line": 61, + "filePath": "src/components/settings/SettingsAppearanceTab/CustomThemeModal.jsx", + "line": 167, "column": 10, - "index": 1946 + "index": 7063 }, { - "filePath": "src/components/ConfirmationModal/index.jsx", - "line": 36, - "column": 6, - "index": 694 + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", + "line": 152, + "column": 10, + "index": 5274 }, { - "filePath": "src/components/learner-credit-management/CancelAssignmentModal.jsx", - "line": 33, + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", + "line": 162, + "column": 10, + "index": 5613 + }, + { + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", + "line": 172, "column": 8, - "index": 826 + "index": 6013 }, { - "filePath": "src/components/learner-credit-management/RemindAssignmentModal.jsx", - "line": 29, + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/utils.jsx", + "line": 45, + "column": 9, + "index": 1782 + }, + { + "filePath": "src/components/settings/SettingsSSOTab/index.jsx", + "line": 156, + "column": 12, + "index": 6708 + }, + { + "filePath": "src/components/settings/SettingsSSOTab/index.jsx", + "line": 228, "column": 8, - "index": 796 + "index": 9590 }, { - "filePath": "src/components/settings/SettingsApiCredentialsTab/RegenerateCredentialWarningModal.jsx", - "line": 58, - "column": 10, - "index": 1556 + "filePath": "src/components/settings/SettingsSSOTab/NewSSOConfigForm.jsx", + "line": 38, + "column": 12, + "index": 1479 }, { - "filePath": "src/components/settings/SettingsAppearanceTab/CustomThemeModal.jsx", - "line": 75, + "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", + "line": 151, "column": 8, - "index": 2849 + "index": 5375 }, { - "filePath": "src/components/settings/SettingsSSOTab/index.jsx", - "line": 76, + "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", + "line": 202, "column": 12, - "index": 3141 + "index": 7049 }, { "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", - "line": 166, - "column": 10, - "index": 5948 + "line": 370, + "column": 12, + "index": 13421 }, { - "filePath": "src/components/subscriptions/expiration/SubscriptionExpiringModal.jsx", - "line": 41, - "column": 8, - "index": 1308 + "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigServiceProviderStep.jsx", + "line": 35, + "column": 41, + "index": 1205 }, { "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRemindModal.jsx", - "line": 157, - "column": 8, - "index": 4645 + "line": 179, + "column": 16, + "index": 5662 }, { "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRevokeModal.jsx", - "line": 152, - "column": 8, - "index": 4182 + "line": 200, + "column": 16, + "index": 6018 }, { - "filePath": "src/components/subsidy-request-modals/ApproveCouponCodeRequestModal.jsx", - "line": 94, + "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRevokeModal.jsx", + "line": 218, "column": 10, - "index": 2658 + "index": 6841 }, { - "filePath": "src/components/subsidy-request-modals/ApproveLicenseRequestModal.jsx", - "line": 93, - "column": 10, - "index": 2796 + "filePath": "src/components/subscriptions/MultipleSubscriptionsPage.jsx", + "line": 57, + "column": 14, + "index": 2049 }, { - "filePath": "src/components/subsidy-request-modals/DeclineSubsidyRequestModal.jsx", - "line": 70, + "filePath": "src/components/SubsidyRequestManagementTable/CourseTitleCell.jsx", + "line": 40, "column": 8, - "index": 1753 + "index": 999 } ], - "ModalDialog.Body": [ + "AlertModal": [ { - "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentStepper.jsx", - "line": 65, + "filePath": "src/components/BudgetExpiryAlertAndModal/index.jsx", + "line": 109, "column": 8, - "index": 2071 + "index": 3469 }, { - "filePath": "src/components/ConfirmationModal/index.jsx", - "line": 51, - "column": 4, - "index": 1066 + "filePath": "src/components/BulkEnrollmentPage/BulkEnrollmentWarningModal.jsx", + "line": 14, + "column": 2, + "index": 329 }, { - "filePath": "src/components/learner-credit-management/CancelAssignmentModal.jsx", - "line": 38, - "column": 6, - "index": 939 + "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentSubmit.jsx", + "line": 36, + "column": 2, + "index": 913 }, { - "filePath": "src/components/learner-credit-management/RemindAssignmentModal.jsx", - "line": 33, + "filePath": "src/components/ContentHighlights/DeleteHighlightSet.jsx", + "line": 114, "column": 6, - "index": 905 - }, - { - "filePath": "src/components/settings/SettingsApiCredentialsTab/RegenerateCredentialWarningModal.jsx", - "line": 65, - "column": 8, - "index": 1838 + "index": 3881 }, { - "filePath": "src/components/settings/SettingsAppearanceTab/CustomThemeModal.jsx", - "line": 81, + "filePath": "src/components/ContentHighlights/HighlightStepper/ContentHighlightStepper.jsx", + "line": 370, "column": 6, - "index": 3009 - }, - { - "filePath": "src/components/settings/SettingsSSOTab/index.jsx", - "line": 80, - "column": 10, - "index": 3280 + "index": 14261 }, { - "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", - "line": 170, - "column": 8, - "index": 6080 + "filePath": "src/components/learner-credit-management/cards/assignment-allocation-status-modals/ContentNotInCatalogErrorAlertModal.jsx", + "line": 24, + "column": 4, + "index": 719 }, { - "filePath": "src/components/subscriptions/expiration/SubscriptionExpiredModal.jsx", - "line": 27, - "column": 6, - "index": 813 + "filePath": "src/components/learner-credit-management/cards/assignment-allocation-status-modals/NotEnoughBalanceAlertModal.jsx", + "line": 26, + "column": 4, + "index": 769 }, { - "filePath": "src/components/subscriptions/expiration/SubscriptionExpiringModal.jsx", - "line": 46, - "column": 6, - "index": 1479 + "filePath": "src/components/learner-credit-management/cards/assignment-allocation-status-modals/SystemErrorAlertModal.jsx", + "line": 20, + "column": 4, + "index": 452 }, { - "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRemindModal.jsx", - "line": 161, + "filePath": "src/components/learner-credit-management/members-tab/GroupMembersCsvDownloadTableAction.jsx", + "line": 88, "column": 6, - "index": 4746 + "index": 3378 }, { - "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRevokeModal.jsx", - "line": 156, - "column": 6, - "index": 4283 + "filePath": "src/components/settings/SettingsAccessTab/DisableLinkManagementAlertModal.jsx", + "line": 42, + "column": 4, + "index": 1076 }, { - "filePath": "src/components/subsidy-request-modals/ApproveCouponCodeRequestModal.jsx", - "line": 109, - "column": 8, - "index": 3133 + "filePath": "src/components/settings/SettingsAccessTab/LinkDeactivationAlertModal.jsx", + "line": 62, + "column": 4, + "index": 1634 }, { - "filePath": "src/components/subsidy-request-modals/ApproveLicenseRequestModal.jsx", - "line": 108, - "column": 8, - "index": 3270 + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", + "line": 181, + "column": 6, + "index": 6212 }, { - "filePath": "src/components/subsidy-request-modals/DeclineSubsidyRequestModal.jsx", - "line": 84, + "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", + "line": 208, "column": 6, - "index": 2148 + "index": 6604 } ], - "Stepper.Step": [ + "ActionRow": [ { - "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentStepper.jsx", - "line": 66, - "column": 10, - "index": 2100 + "filePath": "src/components/BudgetExpiryAlertAndModal/index.jsx", + "line": 115, + "column": 12, + "index": 3631 }, { - "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentStepper.jsx", - "line": 74, - "column": 10, - "index": 2436 + "filePath": "src/components/BulkEnrollmentPage/BulkEnrollmentWarningModal.jsx", + "line": 23, + "column": 6, + "index": 568 }, { - "filePath": "src/components/ContentHighlights/HighlightStepper/ContentHighlightStepper.jsx", - "line": 328, - "column": 10, - "index": 12331 + "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentSubmit.jsx", + "line": 41, + "column": 6, + "index": 1030 }, { - "filePath": "src/components/ContentHighlights/HighlightStepper/ContentHighlightStepper.jsx", - "line": 338, + "filePath": "src/components/CodeAssignmentModal/index.jsx", + "line": 415, "column": 10, - "index": 12716 + "index": 12420 }, { - "filePath": "src/components/ContentHighlights/HighlightStepper/ContentHighlightStepper.jsx", - "line": 346, + "filePath": "src/components/CodeReminderModal/index.jsx", + "line": 229, "column": 10, - "index": 13036 + "index": 6520 }, { - "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", - "line": 140, + "filePath": "src/components/CodeRevokeModal/index.jsx", + "line": 237, "column": 10, - "index": 5288 + "index": 6678 }, { - "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", - "line": 144, - "column": 10, - "index": 5414 + "filePath": "src/components/ConfirmationModal/index.jsx", + "line": 116, + "column": 8, + "index": 3733 }, { - "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", - "line": 148, + "filePath": "src/components/ContentHighlights/ContentHighlightsCardItemsContainer.jsx", + "line": 109, "column": 10, - "index": 5563 + "index": 3738 }, { - "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", - "line": 166, - "column": 10, - "index": 6331 - } - ], - "ModalDialog.Footer": [ - { - "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentStepper.jsx", - "line": 81, - "column": 8, - "index": 2724 + "filePath": "src/components/ContentHighlights/CurrentContentHighlightHeader.jsx", + "line": 76, + "column": 6, + "index": 2539 }, { - "filePath": "src/components/ConfirmationModal/index.jsx", - "line": 54, - "column": 4, - "index": 1126 + "filePath": "src/components/ContentHighlights/CurrentContentHighlightItemsHeader.jsx", + "line": 10, + "column": 6, + "index": 356 }, { - "filePath": "src/components/learner-credit-management/CancelAssignmentModal.jsx", - "line": 45, + "filePath": "src/components/ContentHighlights/CurrentContentHighlightItemsHeader.jsx", + "line": 20, "column": 6, - "index": 1254 + "index": 606 }, { - "filePath": "src/components/learner-credit-management/RemindAssignmentModal.jsx", - "line": 42, - "column": 6, - "index": 1251 + "filePath": "src/components/ContentHighlights/DeleteHighlightSet.jsx", + "line": 123, + "column": 10, + "index": 4218 }, { - "filePath": "src/components/settings/SettingsApiCredentialsTab/RegenerateCredentialWarningModal.jsx", - "line": 74, + "filePath": "src/components/ContentHighlights/HighlightStepper/ContentHighlightStepper.jsx", + "line": 386, "column": 8, - "index": 2186 + "index": 14911 }, { - "filePath": "src/components/settings/SettingsAppearanceTab/CustomThemeModal.jsx", - "line": 143, - "column": 6, - "index": 5447 + "filePath": "src/components/ContentHighlights/HighlightStepper/SelectContentSearchPagination.jsx", + "line": 11, + "column": 2, + "index": 285 }, { - "filePath": "src/components/settings/SettingsSSOTab/index.jsx", - "line": 89, + "filePath": "src/components/InviteLearnersModal/index.jsx", + "line": 253, "column": 10, - "index": 3734 + "index": 8070 }, { - "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", - "line": 175, - "column": 8, - "index": 6259 + "filePath": "src/components/learner-credit-management/assignment-modal/NewAssignmentModalButton.jsx", + "line": 247, + "column": 10, + "index": 9206 }, { - "filePath": "src/components/subscriptions/expiration/SubscriptionExpiredModal.jsx", - "line": 35, - "column": 6, - "index": 1254 + "filePath": "src/components/learner-credit-management/CancelAssignmentModal.jsx", + "line": 63, + "column": 8, + "index": 2200 }, { - "filePath": "src/components/subscriptions/expiration/SubscriptionExpiringModal.jsx", - "line": 56, - "column": 6, - "index": 1864 + "filePath": "src/components/learner-credit-management/cards/assignment-allocation-status-modals/ContentNotInCatalogErrorAlertModal.jsx", + "line": 32, + "column": 8, + "index": 956 }, { - "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRemindModal.jsx", - "line": 209, - "column": 6, - "index": 6417 - }, - { - "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRevokeModal.jsx", - "line": 186, - "column": 6, - "index": 5466 - }, - { - "filePath": "src/components/subsidy-request-modals/ApproveCouponCodeRequestModal.jsx", - "line": 161, + "filePath": "src/components/learner-credit-management/cards/assignment-allocation-status-modals/NotEnoughBalanceAlertModal.jsx", + "line": 34, "column": 8, - "index": 5205 + "index": 965 }, { - "filePath": "src/components/subsidy-request-modals/ApproveLicenseRequestModal.jsx", - "line": 160, + "filePath": "src/components/learner-credit-management/cards/assignment-allocation-status-modals/SystemErrorAlertModal.jsx", + "line": 28, "column": 8, - "index": 5500 - }, - { - "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": 2755 + "index": 650 }, { - "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentStepper.jsx", - "line": 91, + "filePath": "src/components/learner-credit-management/invite-modal/InviteMembersModalWrapper.jsx", + "line": 103, "column": 10, - "index": 3091 + "index": 3751 }, { - "filePath": "src/components/ContentHighlights/HighlightStepper/ContentHighlightStepper.jsx", - "line": 267, - "column": 14, - "index": 10067 + "filePath": "src/components/learner-credit-management/members-tab/bulk-actions/MemberRemoveModal.jsx", + "line": 195, + "column": 8, + "index": 7511 }, { - "filePath": "src/components/ContentHighlights/HighlightStepper/ContentHighlightStepper.jsx", - "line": 287, - "column": 14, - "index": 10904 + "filePath": "src/components/learner-credit-management/members-tab/GroupMembersCsvDownloadTableAction.jsx", + "line": 97, + "column": 10, + "index": 3744 }, { - "filePath": "src/components/ContentHighlights/HighlightStepper/ContentHighlightStepper.jsx", - "line": 305, - "column": 14, - "index": 11567 + "filePath": "src/components/learner-credit-management/RemindAssignmentModal.jsx", + "line": 57, + "column": 8, + "index": 2041 }, { - "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", - "line": 176, + "filePath": "src/components/PeopleManagement/CreateGroupModal.jsx", + "line": 88, "column": 10, - "index": 6677 + "index": 2842 }, { - "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", - "line": 204, + "filePath": "src/components/PeopleManagement/DeleteGroupModal.jsx", + "line": 66, "column": 10, - "index": 7647 + "index": 2238 }, { - "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", - "line": 218, + "filePath": "src/components/PeopleManagement/EditGroupNameModal.jsx", + "line": 80, "column": 10, - "index": 8193 + "index": 2359 }, { - "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/PeopleManagement/GeneralErrorModal.jsx", + "line": 34, "column": 6, - "index": 1180 - }, - { - "filePath": "src/components/ForbiddenPage/index.jsx", - "line": 17, - "column": 10, - "index": 511 + "index": 1012 }, { - "filePath": "src/components/UserActivationPage/index.jsx", - "line": 98, - "column": 32, - "index": 3479 - } - ], - "Form.Checkbox": [ - { - "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentSubmit.jsx", - "line": 139, + "filePath": "src/components/PeopleManagement/index.jsx", + "line": 47, "column": 8, - "index": 4041 + "index": 1788 }, { - "filePath": "src/components/CodeAssignmentModal/index.jsx", - "line": 372, - "column": 10, - "index": 11454 + "filePath": "src/components/settings/SettingsAccessTab/ActionsTableCell.jsx", + "line": 76, + "column": 8, + "index": 2149 }, { - "filePath": "src/components/CouponDetails/index.jsx", - "line": 245, + "filePath": "src/components/settings/SettingsAccessTab/DisableLinkManagementAlertModal.jsx", + "line": 51, "column": 8, - "index": 7192 + "index": 1371 }, { - "filePath": "src/components/CouponDetails/index.jsx", - "line": 417, + "filePath": "src/components/settings/SettingsAccessTab/LinkDeactivationAlertModal.jsx", + "line": 71, "column": 8, - "index": 12740 + "index": 1951 }, { - "filePath": "src/components/ReduxFormCheckbox/index.jsx", - "line": 16, - "column": 6, - "index": 256 + "filePath": "src/components/settings/SettingsApiCredentialsTab/index.jsx", + "line": 43, + "column": 12, + "index": 1584 }, { - "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", - "line": 223, + "filePath": "src/components/settings/SettingsApiCredentialsTab/RegenerateCredentialWarningModal.jsx", + "line": 75, "column": 10, - "index": 7772 + "index": 2225 }, { - "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigServiceProviderStep.jsx", - "line": 44, - "column": 6, - "index": 1580 + "filePath": "src/components/settings/SettingsAppearanceTab/CustomThemeModal.jsx", + "line": 183, + "column": 8, + "index": 7622 }, { - "filePath": "src/components/subsidy-request-modals/DeclineSubsidyRequestModal.jsx", - "line": 89, - "column": 8, - "index": 2353 + "filePath": "src/components/settings/SettingsAppearanceTab/ThemeCard.jsx", + "line": 40, + "column": 6, + "index": 1130 }, { - "filePath": "src/components/subsidy-request-modals/DeclineSubsidyRequestModal.jsx", - "line": 97, + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", + "line": 150, "column": 8, - "index": 2674 - } - ], - "WarningFilled": [ - { - "filePath": "src/components/BulkEnrollmentPage/stepper/DismissibleCourseWarning.jsx", - "line": 16, - "column": 12, - "index": 441 + "index": 5162 }, { - "filePath": "src/components/CodeManagement/ManageCodesTab.jsx", - "line": 231, - "column": 37, - "index": 6561 + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", + "line": 160, + "column": 8, + "index": 5497 }, { - "filePath": "src/components/learner-credit-management/OfferUtilizationAlerts.jsx", - "line": 59, - "column": 14, - "index": 1807 + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", + "line": 170, + "column": 6, + "index": 5901 }, { - "filePath": "src/components/settings/SettingsSSOTab/index.jsx", - "line": 163, - "column": 49, - "index": 6751 + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", + "line": 187, + "column": 10, + "index": 6398 }, { - "filePath": "src/components/settings/SettingsSSOTab/index.jsx", - "line": 226, - "column": 43, - "index": 9211 + "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", + "line": 214, + "column": 10, + "index": 6790 }, { "filePath": "src/components/settings/SettingsSSOTab/index.jsx", - "line": 231, - "column": 43, - "index": 9410 - }, - { - "filePath": "src/components/settings/SettingsSSOTab/NewSSOConfigForm.jsx", - "line": 32, - "column": 16, - "index": 1181 - }, - { - "filePath": "src/components/system-wide-banner/SystemWideWarningBanner.jsx", - "line": 8, - "column": 15, - "index": 265 - } - ], - "IconButton": [ - { - "filePath": "src/components/BulkEnrollmentPage/stepper/ReviewItem.jsx", - "line": 23, + "line": 107, "column": 12, - "index": 553 + "index": 4721 }, { - "filePath": "src/components/ContentHighlights/HighlightStepper/ContentConfirmContentCard.jsx", - "line": 65, - "column": 6, - "index": 2001 + "filePath": "src/components/subscriptions/expiration/SubscriptionExpiredModal.jsx", + "line": 45, + "column": 8, + "index": 1766 }, { - "filePath": "src/components/learner-credit-management/EmailAddressTableCell.jsx", - "line": 79, + "filePath": "src/components/subscriptions/expiration/SubscriptionExpiringModal.jsx", + "line": 77, "column": 8, - "index": 3229 + "index": 3019 }, { - "filePath": "src/components/MultipleFileInputField/MultipleFileInputField.jsx", - "line": 94, - "column": 12, - "index": 2936 + "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRemindModal.jsx", + "line": 221, + "column": 8, + "index": 7105 }, { - "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 176, - "column": 20, - "index": 5565 + "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRevokeModal.jsx", + "line": 227, + "column": 8, + "index": 7128 }, { - "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", - "line": 118, - "column": 24, - "index": 3490 + "filePath": "src/components/subsidy-request-modals/ApproveCouponCodeRequestModal.jsx", + "line": 163, + "column": 10, + "index": 5294 }, { - "filePath": "src/components/settings/SettingsSSOTab/NewSSOConfigCard.jsx", - "line": 186, - "column": 18, - "index": 5775 + "filePath": "src/components/subsidy-request-modals/ApproveLicenseRequestModal.jsx", + "line": 230, + "column": 10, + "index": 9196 }, { - "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/LicenseManagementTableActionColumn.jsx", - "line": 120, + "filePath": "src/components/subsidy-request-modals/DeclineSubsidyRequestModal.jsx", + "line": 108, "column": 8, - "index": 3145 + "index": 3171 }, { - "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/LicenseManagementTableActionColumn.jsx", - "line": 141, - "column": 8, - "index": 3620 + "filePath": "src/components/SubsidyRequestManagementTable/ActionCell.jsx", + "line": 15, + "column": 4, + "index": 292 } ], - "Delete": [ + "BookOpen": [ { - "filePath": "src/components/BulkEnrollmentPage/stepper/ReviewItem.jsx", - "line": 24, - "column": 19, - "index": 584 + "filePath": "src/components/BulkEnrollmentPage/BulkEnrollButton.jsx", + "line": 18, + "column": 16, + "index": 676 }, { - "filePath": "src/components/ContentHighlights/HighlightStepper/ContentConfirmContentCard.jsx", - "line": 66, - "column": 13, - "index": 2026 + "filePath": "src/components/Sidebar/index.jsx", + "line": 169, + "column": 23, + "index": 6006 }, { - "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", - "line": 154, - "column": 24, - "index": 5089 + "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/bulk-actions/EnrollBulkAction.jsx", + "line": 115, + "column": 20, + "index": 4076 } ], - "DataTableContext.Provider": [ + "ErrorOutline": [ { - "filePath": "src/components/BulkEnrollmentPage/table/BaseSelectionStatus.test.jsx", - "line": 44, - "column": 2, - "index": 1161 + "filePath": "src/components/BulkEnrollmentPage/CourseSearchResults.jsx", + "line": 151, + "column": 14, + "index": 4539 } ], - "CheckboxControl": [ + "DataTable.RowStatus": [ { - "filePath": "src/components/BulkEnrollmentPage/table/BulkEnrollSelect.jsx", - "line": 18, - "column": 6, - "index": 399 + "filePath": "src/components/BulkEnrollmentPage/CourseSearchResults.jsx", + "line": 181, + "column": 10, + "index": 5418 }, { - "filePath": "src/components/ContentHighlights/HighlightStepper/SelectContentSelectionCheckbox.jsx", - "line": 25, - "column": 6, - "index": 771 + "filePath": "src/components/ContentHighlights/HighlightStepper/SelectContentSearchPagination.jsx", + "line": 12, + "column": 4, + "index": 301 } ], - "OverlayTrigger": [ - { - "filePath": "src/components/BulkEnrollmentPage/table/CourseSearchResultsCells.jsx", - "line": 12, - "column": 2, - "index": 328 - }, + "Stepper": [ { - "filePath": "src/components/IconWithTooltip/index.jsx", - "line": 13, + "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentStepper.jsx", + "line": 50, "column": 4, - "index": 447 + "index": 1652 }, { - "filePath": "src/components/InfoHover/index.jsx", - "line": 9, - "column": 2, - "index": 238 + "filePath": "src/components/ContentHighlights/HighlightStepper/ContentHighlightStepper.jsx", + "line": 260, + "column": 6, + "index": 9813 }, { - "filePath": "src/components/learner-credit-management/EmailAddressTableCell.jsx", - "line": 53, + "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", + "line": 136, "column": 6, - "index": 2194 - }, + "index": 5177 + } + ], + "ModalDialog": [ { - "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessConfiguredSubsidyType.jsx", - "line": 16, + "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentStepper.jsx", + "line": 51, "column": 6, - "index": 404 + "index": 1692 }, { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/utils.jsx", - "line": 32, - "column": 8, - "index": 1268 + "filePath": "src/components/CodeAssignmentModal/index.jsx", + "line": 399, + "column": 6, + "index": 12004 }, { - "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 237, - "column": 16, - "index": 7865 + "filePath": "src/components/CodeReminderModal/index.jsx", + "line": 213, + "column": 6, + "index": 6106 }, { - "filePath": "src/components/settings/SettingsSSOTab/NewSSOConfigCard.jsx", - "line": 84, - "column": 8, - "index": 2704 + "filePath": "src/components/CodeRevokeModal/index.jsx", + "line": 222, + "column": 6, + "index": 6284 }, { - "filePath": "src/components/settings/SettingsSSOTab/NewSSOConfigCard.jsx", - "line": 96, - "column": 8, - "index": 3149 + "filePath": "src/components/ConfirmationModal/index.jsx", + "line": 81, + "column": 4, + "index": 2632 }, { - "filePath": "src/components/settings/SettingsSSOTab/SSOConfigConfiguredCard.jsx", - "line": 95, - "column": 10, - "index": 3571 + "filePath": "src/components/ContentHighlights/DeleteArchivedHighlightsDialogs.jsx", + "line": 54, + "column": 6, + "index": 1990 }, { - "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/LicenseManagementTableActionColumn.jsx", - "line": 112, + "filePath": "src/components/ContentHighlights/DeleteArchivedHighlightsDialogs.jsx", + "line": 79, "column": 6, - "index": 2973 + "index": 2873 }, { - "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/LicenseManagementTableActionColumn.jsx", - "line": 133, + "filePath": "src/components/InviteLearnersModal/index.jsx", + "line": 234, "column": 6, - "index": 3448 + "index": 7479 }, { - "filePath": "src/components/SubsidyRequestManagementTable/CourseTitleCell.jsx", - "line": 63, - "column": 2, - "index": 1609 + "filePath": "src/components/learner-credit-management/CancelAssignmentModal.jsx", + "line": 29, + "column": 4, + "index": 817 }, { - "filePath": "src/components/TemplateSourceFields/index.jsx", - "line": 116, - "column": 10, - "index": 3743 + "filePath": "src/components/learner-credit-management/members-tab/bulk-actions/MemberRemoveModal.jsx", + "line": 138, + "column": 4, + "index": 5163 }, { - "filePath": "src/components/TemplateSourceFields/index.jsx", - "line": 142, - "column": 10, - "index": 4804 - } - ], - "Popover": [ + "filePath": "src/components/learner-credit-management/RemindAssignmentModal.jsx", + "line": 24, + "column": 4, + "index": 785 + }, { - "filePath": "src/components/BulkEnrollmentPage/table/CourseSearchResultsCells.jsx", - "line": 18, + "filePath": "src/components/PeopleManagement/DeleteGroupModal.jsx", + "line": 38, "column": 6, - "index": 433 + "index": 1188 }, { - "filePath": "src/components/learner-credit-management/EmailAddressTableCell.jsx", - "line": 57, - "column": 10, - "index": 2293 + "filePath": "src/components/PeopleManagement/EditGroupNameModal.jsx", + "line": 56, + "column": 6, + "index": 1655 }, { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/utils.jsx", - "line": 38, - "column": 12, - "index": 1422 + "filePath": "src/components/PeopleManagement/GeneralErrorModal.jsx", + "line": 8, + "column": 2, + "index": 224 }, { - "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 242, - "column": 20, - "index": 8076 + "filePath": "src/components/settings/SettingsApiCredentialsTab/RegenerateCredentialWarningModal.jsx", + "line": 48, + "column": 6, + "index": 1328 }, { - "filePath": "src/components/settings/SettingsSSOTab/SSOConfigConfiguredCard.jsx", - "line": 99, - "column": 14, - "index": 3680 + "filePath": "src/components/settings/SettingsAppearanceTab/CustomThemeModal.jsx", + "line": 85, + "column": 4, + "index": 3664 }, { - "filePath": "src/components/SubsidyRequestManagementTable/CourseTitleCell.jsx", - "line": 68, - "column": 6, - "index": 1700 - } - ], - "Popover.Title": [ - { - "filePath": "src/components/BulkEnrollmentPage/table/CourseSearchResultsCells.jsx", - "line": 19, + "filePath": "src/components/settings/SettingsSSOTab/index.jsx", + "line": 69, "column": 8, - "index": 479 + "index": 3007 }, { - "filePath": "src/components/learner-credit-management/EmailAddressTableCell.jsx", - "line": 58, - "column": 12, - "index": 2341 + "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", + "line": 160, + "column": 6, + "index": 5774 }, { - "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 243, - "column": 22, - "index": 8160 + "filePath": "src/components/subscriptions/expiration/SubscriptionExpiredModal.jsx", + "line": 22, + "column": 4, + "index": 747 }, { - "filePath": "src/components/SubsidyRequestManagementTable/CourseTitleCell.jsx", - "line": 69, - "column": 8, - "index": 1761 - } - ], - "Popover.Content": [ + "filePath": "src/components/subscriptions/expiration/SubscriptionExpiringModal.jsx", + "line": 36, + "column": 4, + "index": 1225 + }, { - "filePath": "src/components/BulkEnrollmentPage/table/CourseSearchResultsCells.jsx", - "line": 20, - "column": 8, - "index": 526 + "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRemindModal.jsx", + "line": 161, + "column": 4, + "index": 5151 }, { - "filePath": "src/components/learner-credit-management/EmailAddressTableCell.jsx", - "line": 59, - "column": 12, - "index": 2405 + "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRevokeModal.jsx", + "line": 182, + "column": 4, + "index": 5508 }, { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/utils.jsx", - "line": 39, - "column": 14, - "index": 1482 + "filePath": "src/components/subsidy-request-modals/ApproveCouponCodeRequestModal.jsx", + "line": 86, + "column": 4, + "index": 2496 }, { - "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 244, - "column": 22, - "index": 8232 + "filePath": "src/components/subsidy-request-modals/ApproveLicenseRequestModal.jsx", + "line": 88, + "column": 4, + "index": 2738 }, { - "filePath": "src/components/settings/SettingsSSOTab/SSOConfigConfiguredCard.jsx", - "line": 100, - "column": 16, - "index": 3734 - }, - { - "filePath": "src/components/SubsidyRequestManagementTable/CourseTitleCell.jsx", - "line": 70, - "column": 8, - "index": 1835 + "filePath": "src/components/subsidy-request-modals/DeclineSubsidyRequestModal.jsx", + "line": 62, + "column": 4, + "index": 1562 } ], - "Modal": [ + "ModalDialog.Header": [ + { + "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentStepper.jsx", + "line": 60, + "column": 8, + "index": 1919 + }, { "filePath": "src/components/CodeAssignmentModal/index.jsx", - "line": 408, - "column": 6, - "index": 12195 + "line": 406, + "column": 8, + "index": 12151 }, { "filePath": "src/components/CodeReminderModal/index.jsx", "line": 220, - "column": 6, - "index": 6293 + "column": 8, + "index": 6251 }, { "filePath": "src/components/CodeRevokeModal/index.jsx", - "line": 231, - "column": 6, - "index": 6460 + "line": 228, + "column": 8, + "index": 6409 }, { - "filePath": "src/components/InviteLearnersModal/index.jsx", - "line": 186, + "filePath": "src/components/ConfirmationModal/index.jsx", + "line": 88, "column": 6, - "index": 5233 - } - ], - "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 + "index": 2776 }, { - "filePath": "src/components/CodeRevokeModal/index.jsx", - "line": 243, - "column": 58, - "index": 6882 + "filePath": "src/components/ContentHighlights/DeleteArchivedHighlightsDialogs.jsx", + "line": 59, + "column": 8, + "index": 2113 }, { - "filePath": "src/components/ContentHighlights/CatalogVisibility/ContentHighlightCatalogVisibilityRadioInput.jsx", - "line": 118, - "column": 12, - "index": 4643 + "filePath": "src/components/ContentHighlights/DeleteArchivedHighlightsDialogs.jsx", + "line": 85, + "column": 8, + "index": 3041 }, { - "filePath": "src/components/ContentHighlights/CatalogVisibility/ContentHighlightCatalogVisibilityRadioInput.jsx", - "line": 141, - "column": 12, - "index": 5646 + "filePath": "src/components/InviteLearnersModal/index.jsx", + "line": 240, + "column": 8, + "index": 7602 }, { - "filePath": "src/components/DownloadCsvButton/index.jsx", - "line": 39, - "column": 24, - "index": 1068 + "filePath": "src/components/learner-credit-management/CancelAssignmentModal.jsx", + "line": 35, + "column": 6, + "index": 935 }, { - "filePath": "src/components/InviteLearnersModal/index.jsx", - "line": 199, - "column": 29, - "index": 5649 + "filePath": "src/components/learner-credit-management/members-tab/bulk-actions/MemberRemoveModal.jsx", + "line": 144, + "column": 6, + "index": 5287 }, { - "filePath": "src/components/NumberCard/index.jsx", - "line": 154, - "column": 15, - "index": 4706 + "filePath": "src/components/learner-credit-management/RemindAssignmentModal.jsx", + "line": 30, + "column": 6, + "index": 903 }, { - "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 424, - "column": 25, - "index": 16347 + "filePath": "src/components/PeopleManagement/DeleteGroupModal.jsx", + "line": 45, + "column": 8, + "index": 1346 }, { - "filePath": "src/components/RequestCodesPage/RequestCodesForm.jsx", - "line": 123, - "column": 33, - "index": 3370 + "filePath": "src/components/PeopleManagement/EditGroupNameModal.jsx", + "line": 63, + "column": 8, + "index": 1811 }, { - "filePath": "src/components/SaveTemplateButton/index.jsx", - "line": 153, - "column": 19, - "index": 4927 + "filePath": "src/components/PeopleManagement/GeneralErrorModal.jsx", + "line": 15, + "column": 4, + "index": 362 }, { - "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessTabSection.jsx", - "line": 32, + "filePath": "src/components/settings/SettingsApiCredentialsTab/RegenerateCredentialWarningModal.jsx", + "line": 57, "column": 8, - "index": 607 + "index": 1533 }, { - "filePath": "src/components/settings/SettingsApiCredentialsTab/ZeroStateCard.jsx", - "line": 87, - "column": 24, - "index": 2941 + "filePath": "src/components/settings/SettingsAppearanceTab/CustomThemeModal.jsx", + "line": 93, + "column": 6, + "index": 3821 }, { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/DownloadCsvButton.jsx", - "line": 75, - "column": 19, - "index": 2155 + "filePath": "src/components/settings/SettingsSSOTab/index.jsx", + "line": 81, + "column": 10, + "index": 3425 }, { - "filePath": "src/components/settings/SettingsSSOTab/index.jsx", - "line": 100, - "column": 18, - "index": 4138 + "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", + "line": 165, + "column": 8, + "index": 5902 }, { - "filePath": "src/components/subscriptions/buttons/DownloadCsvButton.jsx", - "line": 52, - "column": 17, - "index": 1746 + "filePath": "src/components/subscriptions/expiration/SubscriptionExpiringModal.jsx", + "line": 46, + "column": 6, + "index": 1584 }, { "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRemindModal.jsx", - "line": 221, - "column": 23, - "index": 6863 + "line": 167, + "column": 6, + "index": 5275 }, { "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRevokeModal.jsx", - "line": 199, - "column": 23, - "index": 5963 - } - ], - "Tab": [ - { - "filePath": "src/components/CodeManagement/CouponCodeTabs.jsx", - "line": 60, + "line": 188, "column": 6, - "index": 2112 + "index": 5632 }, { - "filePath": "src/components/CodeManagement/CouponCodeTabs.jsx", - "line": 77, + "filePath": "src/components/subsidy-request-modals/ApproveCouponCodeRequestModal.jsx", + "line": 94, "column": 8, - "index": 2668 + "index": 2685 }, { - "filePath": "src/components/ContentHighlights/ContentHighlightsDashboard.jsx", - "line": 55, + "filePath": "src/components/subsidy-request-modals/ApproveLicenseRequestModal.jsx", + "line": 102, "column": 8, - "index": 1990 + "index": 3130 }, { - "filePath": "src/components/ContentHighlights/ContentHighlightsDashboard.jsx", + "filePath": "src/components/subsidy-request-modals/DeclineSubsidyRequestModal.jsx", + "line": 69, + "column": 6, + "index": 1732 + } + ], + "ModalDialog.Title": [ + { + "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentStepper.jsx", "line": 61, - "column": 8, - "index": 2219 + "column": 10, + "index": 1950 }, { - "filePath": "src/components/learner-credit-management/data/hooks/useBudgetDetailTabs.jsx", - "line": 22, - "column": 6, - "index": 456 + "filePath": "src/components/CodeAssignmentModal/index.jsx", + "line": 407, + "column": 10, + "index": 12182 }, { - "filePath": "src/components/learner-credit-management/data/hooks/useBudgetDetailTabs.jsx", - "line": 35, - "column": 8, - "index": 875 + "filePath": "src/components/CodeReminderModal/index.jsx", + "line": 221, + "column": 10, + "index": 6282 }, { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/ErrorReportingTable.jsx", - "line": 22, - "column": 8, - "index": 826 + "filePath": "src/components/CodeRevokeModal/index.jsx", + "line": 229, + "column": 10, + "index": 6440 }, { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/ErrorReportingTable.jsx", - "line": 27, + "filePath": "src/components/ConfirmationModal/index.jsx", + "line": 89, "column": 8, - "index": 1156 + "index": 2805 }, { - "filePath": "src/components/settings/SettingsTabs.jsx", - "line": 59, - "column": 8, - "index": 1624 + "filePath": "src/components/ContentHighlights/DeleteArchivedHighlightsDialogs.jsx", + "line": 60, + "column": 10, + "index": 2144 }, { - "filePath": "src/components/settings/SettingsTabs.jsx", - "line": 78, - "column": 8, - "index": 2359 + "filePath": "src/components/ContentHighlights/DeleteArchivedHighlightsDialogs.jsx", + "line": 86, + "column": 10, + "index": 3072 }, { - "filePath": "src/components/settings/SettingsTabs.jsx", - "line": 92, + "filePath": "src/components/InviteLearnersModal/index.jsx", + "line": 241, + "column": 10, + "index": 7633 + }, + { + "filePath": "src/components/learner-credit-management/CancelAssignmentModal.jsx", + "line": 36, "column": 8, - "index": 2757 + "index": 964 }, { - "filePath": "src/components/settings/SettingsTabs.jsx", - "line": 109, + "filePath": "src/components/learner-credit-management/members-tab/bulk-actions/MemberRemoveModal.jsx", + "line": 145, "column": 8, - "index": 3289 + "index": 5316 }, { - "filePath": "src/components/settings/SettingsTabs.jsx", - "line": 124, + "filePath": "src/components/learner-credit-management/RemindAssignmentModal.jsx", + "line": 31, "column": 8, - "index": 3793 + "index": 932 }, { - "filePath": "src/components/subscriptions/SubscriptionTabs.jsx", + "filePath": "src/components/PeopleManagement/DeleteGroupModal.jsx", + "line": 46, + "column": 10, + "index": 1377 + }, + { + "filePath": "src/components/PeopleManagement/EditGroupNameModal.jsx", "line": 64, + "column": 10, + "index": 1842 + }, + { + "filePath": "src/components/PeopleManagement/GeneralErrorModal.jsx", + "line": 16, "column": 6, - "index": 2296 + "index": 389 }, { - "filePath": "src/components/subscriptions/SubscriptionTabs.jsx", - "line": 77, + "filePath": "src/components/settings/SettingsApiCredentialsTab/RegenerateCredentialWarningModal.jsx", + "line": 58, + "column": 10, + "index": 1564 + }, + { + "filePath": "src/components/settings/SettingsAppearanceTab/CustomThemeModal.jsx", + "line": 94, "column": 8, - "index": 2726 - } - ], - "Tabs": [ + "index": 3850 + }, { - "filePath": "src/components/CodeManagement/CouponCodeTabs.jsx", - "line": 98, - "column": 4, - "index": 3372 + "filePath": "src/components/settings/SettingsSSOTab/index.jsx", + "line": 82, + "column": 12, + "index": 3458 }, { - "filePath": "src/components/ContentHighlights/ContentHighlightsDashboard.jsx", + "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", + "line": 166, + "column": 10, + "index": 5956 + }, + { + "filePath": "src/components/subscriptions/expiration/SubscriptionExpiringModal.jsx", "line": 47, - "column": 6, - "index": 1802 + "column": 8, + "index": 1613 }, { - "filePath": "src/components/learner-credit-management/BudgetDetailTabsAndRoutes.jsx", - "line": 96, - "column": 4, - "index": 3149 + "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRemindModal.jsx", + "line": 168, + "column": 8, + "index": 5304 }, { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/ErrorReportingTable.jsx", - "line": 16, - "column": 6, - "index": 683 + "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRevokeModal.jsx", + "line": 189, + "column": 8, + "index": 5661 }, { - "filePath": "src/components/settings/SettingsTabs.jsx", - "line": 174, - "column": 6, - "index": 5097 + "filePath": "src/components/subsidy-request-modals/ApproveCouponCodeRequestModal.jsx", + "line": 95, + "column": 10, + "index": 2716 }, { - "filePath": "src/components/subscriptions/SubscriptionTabs.jsx", - "line": 98, - "column": 4, - "index": 3456 + "filePath": "src/components/subsidy-request-modals/ApproveLicenseRequestModal.jsx", + "line": 103, + "column": 10, + "index": 3161 + }, + { + "filePath": "src/components/subsidy-request-modals/DeclineSubsidyRequestModal.jsx", + "line": 70, + "column": 8, + "index": 1761 } ], - "Container": [ + "ModalDialog.Body": [ { - "filePath": "src/components/CodeManagement/index.jsx", - "line": 15, - "column": 6, - "index": 361 + "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentStepper.jsx", + "line": 65, + "column": 8, + "index": 2075 }, { - "filePath": "src/components/ContentHighlights/CatalogVisibility/ContentHighlightCatalogVisibilityRadioInput.jsx", - "line": 109, - "column": 4, - "index": 4354 + "filePath": "src/components/CodeAssignmentModal/index.jsx", + "line": 411, + "column": 8, + "index": 12304 }, { - "filePath": "src/components/ContentHighlights/ContentHighlightsDashboard.jsx", - "line": 15, - "column": 2, - "index": 808 + "filePath": "src/components/CodeReminderModal/index.jsx", + "line": 225, + "column": 8, + "index": 6404 }, { - "filePath": "src/components/ContentHighlights/ContentHighlightSet.jsx", - "line": 12, - "column": 4, - "index": 507 + "filePath": "src/components/CodeRevokeModal/index.jsx", + "line": 233, + "column": 8, + "index": 6562 }, { - "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperConfirmContent.jsx", - "line": 141, - "column": 4, - "index": 4358 + "filePath": "src/components/ConfirmationModal/index.jsx", + "line": 112, + "column": 6, + "index": 3638 }, { - "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperSelectContent.jsx", - "line": 10, - "column": 2, - "index": 361 + "filePath": "src/components/ContentHighlights/DeleteArchivedHighlightsDialogs.jsx", + "line": 62, + "column": 8, + "index": 2242 }, { - "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperTitle.jsx", - "line": 11, - "column": 2, - "index": 305 + "filePath": "src/components/ContentHighlights/DeleteArchivedHighlightsDialogs.jsx", + "line": 94, + "column": 8, + "index": 3416 }, { - "filePath": "src/components/learner-credit-management/BudgetDetailPageWrapper.jsx", - "line": 69, - "column": 6, - "index": 2422 + "filePath": "src/components/InviteLearnersModal/index.jsx", + "line": 249, + "column": 8, + "index": 7954 }, { - "filePath": "src/components/learner-credit-management/cards/AssignmentModalContent.jsx", - "line": 81, - "column": 4, - "index": 3011 + "filePath": "src/components/learner-credit-management/CancelAssignmentModal.jsx", + "line": 45, + "column": 6, + "index": 1283 }, { - "filePath": "src/components/learner-credit-management/MultipleBudgetsPage.jsx", - "line": 73, + "filePath": "src/components/learner-credit-management/members-tab/bulk-actions/MemberRemoveModal.jsx", + "line": 149, "column": 6, - "index": 1882 + "index": 5417 }, { - "filePath": "src/components/settings/SettingsSSOTab/SsoErrorPage.jsx", - "line": 33, + "filePath": "src/components/learner-credit-management/RemindAssignmentModal.jsx", + "line": 39, "column": 6, - "index": 914 + "index": 1247 }, { - "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", - "line": 139, + "filePath": "src/components/PeopleManagement/DeleteGroupModal.jsx", + "line": 48, "column": 8, - "index": 5239 - }, - { - "filePath": "src/components/settings/SettingsTabs.jsx", - "line": 173, - "column": 4, - "index": 5056 + "index": 1468 }, { - "filePath": "src/components/subscriptions/SubscriptionManagementPage.jsx", - "line": 18, - "column": 6, - "index": 601 + "filePath": "src/components/PeopleManagement/EditGroupNameModal.jsx", + "line": 66, + "column": 8, + "index": 1935 }, { - "filePath": "src/components/UserActivationPage/index.jsx", - "line": 81, + "filePath": "src/components/PeopleManagement/GeneralErrorModal.jsx", + "line": 25, "column": 4, - "index": 2559 - } - ], - "Pagination": [ - { - "filePath": "src/components/CodeManagement/ManageCodesTab.jsx", - "line": 199, - "column": 10, - "index": 5669 + "index": 660 }, { - "filePath": "src/components/ContentHighlights/HighlightStepper/SelectContentSearchPagination.jsx", - "line": 20, - "column": 4, - "index": 524 + "filePath": "src/components/settings/SettingsApiCredentialsTab/RegenerateCredentialWarningModal.jsx", + "line": 65, + "column": 8, + "index": 1846 }, { - "filePath": "src/components/TableComponent/index.jsx", - "line": 106, - "column": 12, - "index": 3395 - } - ], - "CheckCircle": [ - { - "filePath": "src/components/CodeManagement/ManageCodesTab.jsx", - "line": 220, - "column": 14, - "index": 6275 + "filePath": "src/components/settings/SettingsAppearanceTab/CustomThemeModal.jsx", + "line": 104, + "column": 6, + "index": 4201 }, { - "filePath": "src/components/CodeSearchResults/index.jsx", - "line": 63, - "column": 12, - "index": 1499 + "filePath": "src/components/settings/SettingsSSOTab/index.jsx", + "line": 90, + "column": 10, + "index": 3816 }, { - "filePath": "src/components/CouponDetails/index.jsx", - "line": 478, - "column": 14, - "index": 14277 + "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", + "line": 170, + "column": 8, + "index": 6088 }, { - "filePath": "src/components/SaveTemplateButton/index.jsx", - "line": 154, - "column": 31, - "index": 5018 + "filePath": "src/components/subscriptions/expiration/SubscriptionExpiredModal.jsx", + "line": 28, + "column": 6, + "index": 881 }, { - "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessConfiguredSubsidyType.jsx", - "line": 26, - "column": 10, - "index": 699 + "filePath": "src/components/subscriptions/expiration/SubscriptionExpiringModal.jsx", + "line": 56, + "column": 6, + "index": 2048 }, { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", - "line": 109, - "column": 23, - "index": 4186 + "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRemindModal.jsx", + "line": 172, + "column": 6, + "index": 5405 }, { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/utils.jsx", - "line": 26, - "column": 31, - "index": 1021 + "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRevokeModal.jsx", + "line": 193, + "column": 6, + "index": 5762 }, { - "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 124, - "column": 94, - "index": 4019 + "filePath": "src/components/subsidy-request-modals/ApproveCouponCodeRequestModal.jsx", + "line": 110, + "column": 8, + "index": 3191 }, { - "filePath": "src/components/settings/SettingsSSOTab/NewSSOConfigAlerts.jsx", - "line": 149, - "column": 16, - "index": 5216 + "filePath": "src/components/subsidy-request-modals/ApproveLicenseRequestModal.jsx", + "line": 132, + "column": 8, + "index": 4399 }, { - "filePath": "src/components/settings/SettingsSSOTab/SSOConfigConfiguredCard.jsx", - "line": 123, - "column": 10, - "index": 4476 + "filePath": "src/components/subsidy-request-modals/DeclineSubsidyRequestModal.jsx", + "line": 84, + "column": 6, + "index": 2156 } ], - "SpinnerIcon": [ + "Stepper.Step": [ { - "filePath": "src/components/CodeManagement/ManageCodesTab.jsx", - "line": 282, - "column": 71, - "index": 8375 - } - ], - "Plus": [ - { - "filePath": "src/components/CodeManagement/ManageCodesTab.jsx", - "line": 291, - "column": 27, - "index": 8686 - } - ], - "Warning": [ - { - "filePath": "src/components/CodeModal/ModalError.jsx", - "line": 12, - "column": 17, - "index": 309 + "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentStepper.jsx", + "line": 66, + "column": 10, + "index": 2104 }, { - "filePath": "src/components/settings/SettingsApiCredentialsTab/RegenerateCredentialWarningModal.jsx", - "line": 60, - "column": 25, - "index": 1638 + "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentStepper.jsx", + "line": 74, + "column": 10, + "index": 2440 }, { - "filePath": "src/components/settings/SettingsSSOTab/NewSSOConfigAlerts.jsx", - "line": 103, - "column": 16, - "index": 3258 + "filePath": "src/components/ContentHighlights/HighlightStepper/ContentHighlightStepper.jsx", + "line": 330, + "column": 10, + "index": 12440 }, { - "filePath": "src/components/settings/SettingsSSOTab/NewSSOConfigAlerts.jsx", - "line": 118, - "column": 16, - "index": 3873 - } - ], - "Close": [ - { - "filePath": "src/components/CodeSearchResults/CodeSearchResultsHeading.jsx", - "line": 19, - "column": 36, - "index": 688 + "filePath": "src/components/ContentHighlights/HighlightStepper/ContentHighlightStepper.jsx", + "line": 344, + "column": 10, + "index": 13062 }, { - "filePath": "src/components/FileInput/index.jsx", - "line": 140, - "column": 25, - "index": 3550 + "filePath": "src/components/ContentHighlights/HighlightStepper/ContentHighlightStepper.jsx", + "line": 356, + "column": 10, + "index": 13619 }, { - "filePath": "src/components/MultipleFileInputField/MultipleFileInputField.jsx", - "line": 94, - "column": 47, - "index": 2971 + "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", + "line": 140, + "column": 10, + "index": 5296 }, { - "filePath": "src/components/ReportingConfig/index.jsx", - "line": 154, - "column": 29, - "index": 5038 + "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", + "line": 144, + "column": 10, + "index": 5422 }, { - "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 426, - "column": 34, - "index": 16487 + "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", + "line": 148, + "column": 10, + "index": 5571 }, { - "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 438, - "column": 25, - "index": 16885 + "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", + "line": 166, + "column": 10, + "index": 6339 } ], - "Check": [ + "ModalDialog.Footer": [ { - "filePath": "src/components/CodeSearchResults/CodeSearchResultsTable.jsx", - "line": 116, - "column": 44, - "index": 2913 + "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentStepper.jsx", + "line": 81, + "column": 8, + "index": 2728 }, { - "filePath": "src/components/ReportingConfig/index.jsx", - "line": 149, - "column": 29, - "index": 4865 + "filePath": "src/components/CodeAssignmentModal/index.jsx", + "line": 414, + "column": 8, + "index": 12389 }, { - "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 425, - "column": 37, - "index": 16442 + "filePath": "src/components/CodeReminderModal/index.jsx", + "line": 228, + "column": 8, + "index": 6489 }, { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/DownloadCsvButton.jsx", - "line": 76, - "column": 31, - "index": 2244 + "filePath": "src/components/CodeRevokeModal/index.jsx", + "line": 236, + "column": 8, + "index": 6647 }, { - "filePath": "src/components/subscriptions/buttons/DownloadCsvButton.jsx", - "line": 53, - "column": 29, - "index": 1833 - } - ], - "TransitionReplace": [ - { - "filePath": "src/components/CodeSearchResults/index.jsx", - "line": 79, + "filePath": "src/components/ConfirmationModal/index.jsx", + "line": 115, "column": 6, - "index": 1832 - } - ], - "StatefulButton": [ + "index": 3704 + }, { - "filePath": "src/components/ConfirmationModal/index.jsx", - "line": 59, + "filePath": "src/components/ContentHighlights/DeleteArchivedHighlightsDialogs.jsx", + "line": 68, "column": 8, - "index": 1275 + "index": 2481 }, { - "filePath": "src/components/ContentHighlights/DeleteHighlightSet.jsx", - "line": 113, - "column": 12, - "index": 3812 + "filePath": "src/components/ContentHighlights/DeleteArchivedHighlightsDialogs.jsx", + "line": 103, + "column": 8, + "index": 3886 }, { - "filePath": "src/components/ContentHighlights/HighlightStepper/ContentHighlightStepper.jsx", - "line": 314, - "column": 16, - "index": 11935 + "filePath": "src/components/InviteLearnersModal/index.jsx", + "line": 252, + "column": 8, + "index": 8039 }, { "filePath": "src/components/learner-credit-management/CancelAssignmentModal.jsx", - "line": 48, - "column": 10, - "index": 1393 + "line": 62, + "column": 6, + "index": 2171 }, { - "filePath": "src/components/learner-credit-management/cards/NewAssignmentModalButton.jsx", - "line": 220, - "column": 12, - "index": 7828 + "filePath": "src/components/learner-credit-management/members-tab/bulk-actions/MemberRemoveModal.jsx", + "line": 194, + "column": 6, + "index": 7482 }, { "filePath": "src/components/learner-credit-management/RemindAssignmentModal.jsx", - "line": 45, - "column": 10, - "index": 1390 + "line": 56, + "column": 6, + "index": 2012 }, { - "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 412, - "column": 12, - "index": 15955 + "filePath": "src/components/PeopleManagement/DeleteGroupModal.jsx", + "line": 65, + "column": 8, + "index": 2207 }, { - "filePath": "src/components/SaveTemplateButton/index.jsx", - "line": 142, - "column": 6, - "index": 4560 + "filePath": "src/components/PeopleManagement/EditGroupNameModal.jsx", + "line": 79, + "column": 8, + "index": 2328 }, { - "filePath": "src/components/settings/SettingsAccessTab/DisableLinkManagementAlertModal.jsx", - "line": 39, - "column": 10, - "index": 823 + "filePath": "src/components/PeopleManagement/GeneralErrorModal.jsx", + "line": 33, + "column": 4, + "index": 985 }, { - "filePath": "src/components/settings/SettingsAccessTab/LinkDeactivationAlertModal.jsx", - "line": 59, + "filePath": "src/components/settings/SettingsApiCredentialsTab/RegenerateCredentialWarningModal.jsx", + "line": 74, + "column": 8, + "index": 2194 + }, + { + "filePath": "src/components/settings/SettingsAppearanceTab/CustomThemeModal.jsx", + "line": 182, + "column": 6, + "index": 7593 + }, + { + "filePath": "src/components/settings/SettingsSSOTab/index.jsx", + "line": 106, "column": 10, - "index": 1360 + "index": 4688 }, { - "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessGenerateLinkButton.jsx", - "line": 50, - "column": 4, - "index": 1362 + "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", + "line": 175, + "column": 8, + "index": 6267 }, { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/DownloadCsvButton.jsx", - "line": 63, + "filePath": "src/components/subscriptions/expiration/SubscriptionExpiredModal.jsx", + "line": 44, "column": 6, - "index": 1787 + "index": 1737 }, { - "filePath": "src/components/subscriptions/buttons/DownloadCsvButton.jsx", - "line": 42, - "column": 4, - "index": 1476 + "filePath": "src/components/subscriptions/expiration/SubscriptionExpiringModal.jsx", + "line": 76, + "column": 6, + "index": 2990 }, { "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRemindModal.jsx", - "line": 214, - "column": 10, - "index": 6579 + "line": 220, + "column": 6, + "index": 7076 }, { "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRevokeModal.jsx", - "line": 191, - "column": 10, - "index": 5628 + "line": 226, + "column": 6, + "index": 7099 }, { "filePath": "src/components/subsidy-request-modals/ApproveCouponCodeRequestModal.jsx", - "line": 166, - "column": 12, - "index": 5360 + "line": 162, + "column": 8, + "index": 5263 }, { "filePath": "src/components/subsidy-request-modals/ApproveLicenseRequestModal.jsx", - "line": 165, - "column": 12, - "index": 5655 + "line": 229, + "column": 8, + "index": 9165 }, { "filePath": "src/components/subsidy-request-modals/DeclineSubsidyRequestModal.jsx", - "line": 112, - "column": 10, - "index": 3333 + "line": 107, + "column": 6, + "index": 3142 } ], - "Hyperlink": [ + "Stepper.ActionRow": [ { - "filePath": "src/components/ContactCustomerSupportButton/index.jsx", - "line": 16, - "column": 4, - "index": 350 + "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentStepper.jsx", + "line": 82, + "column": 10, + "index": 2759 }, { - "filePath": "src/components/ContentHighlights/ContentHighlightCardItem.jsx", - "line": 28, - "column": 6, - "index": 913 + "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentStepper.jsx", + "line": 91, + "column": 10, + "index": 3095 }, { - "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperFooterHelpLink.jsx", - "line": 33, - "column": 6, - "index": 1154 + "filePath": "src/components/ContentHighlights/HighlightStepper/ContentHighlightStepper.jsx", + "line": 269, + "column": 14, + "index": 10176 }, { - "filePath": "src/components/learner-credit-management/AssignmentDetailsTableCell.jsx", - "line": 32, - "column": 8, - "index": 1151 + "filePath": "src/components/ContentHighlights/HighlightStepper/ContentHighlightStepper.jsx", + "line": 289, + "column": 14, + "index": 11013 }, { - "filePath": "src/components/learner-credit-management/assignments-status-chips/FailedBadEmail.jsx", - "line": 44, - "column": 16, - "index": 1427 + "filePath": "src/components/ContentHighlights/HighlightStepper/ContentHighlightStepper.jsx", + "line": 307, + "column": 14, + "index": 11676 }, { - "filePath": "src/components/learner-credit-management/assignments-status-chips/FailedCancellation.jsx", - "line": 44, - "column": 16, - "index": 1395 + "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", + "line": 176, + "column": 10, + "index": 6685 }, { - "filePath": "src/components/learner-credit-management/assignments-status-chips/FailedRedemption.jsx", - "line": 47, - "column": 16, - "index": 1519 + "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", + "line": 204, + "column": 10, + "index": 7655 }, { - "filePath": "src/components/learner-credit-management/assignments-status-chips/FailedReminder.jsx", - "line": 42, - "column": 16, - "index": 1369 + "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", + "line": 218, + "column": 10, + "index": 8201 }, { - "filePath": "src/components/learner-credit-management/assignments-status-chips/FailedSystem.jsx", - "line": 41, - "column": 16, - "index": 1276 - }, + "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", + "line": 239, + "column": 10, + "index": 8927 + } + ], + "MailtoLink": [ { - "filePath": "src/components/learner-credit-management/assignments-status-chips/WaitingForLearner.jsx", - "line": 43, - "column": 14, - "index": 1472 + "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentSubmit.jsx", + "line": 48, + "column": 6, + "index": 1184 }, { - "filePath": "src/components/learner-credit-management/BudgetDetailAssignments.jsx", - "line": 63, - "column": 8, - "index": 2326 + "filePath": "src/components/ForbiddenPage/index.jsx", + "line": 17, + "column": 10, + "index": 539 }, { - "filePath": "src/components/learner-credit-management/BudgetDetailPageOverviewAvailability.jsx", - "line": 56, - "column": 48, - "index": 2104 - }, + "filePath": "src/components/UserActivationPage/index.jsx", + "line": 97, + "column": 32, + "index": 3464 + } + ], + "Form.Checkbox": [ { - "filePath": "src/components/learner-credit-management/BudgetDetailRedemptions.jsx", - "line": 48, - "column": 10, - "index": 1762 + "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentSubmit.jsx", + "line": 139, + "column": 8, + "index": 4045 }, { - "filePath": "src/components/learner-credit-management/cards/CourseCardFooterActions.jsx", - "line": 25, + "filePath": "src/components/CodeAssignmentModal/index.jsx", + "line": 363, "column": 10, - "index": 769 - }, - { - "filePath": "src/components/learner-credit-management/cards/NewAssignmentModalButton.jsx", - "line": 195, - "column": 18, - "index": 6948 + "index": 11264 }, { - "filePath": "src/components/learner-credit-management/MultipleBudgetsPage.jsx", - "line": 54, - "column": 16, - "index": 1440 + "filePath": "src/components/CouponDetails/index.jsx", + "line": 247, + "column": 8, + "index": 7332 }, { - "filePath": "src/components/learner-credit-management/SpendTableEnrollmentDetails.jsx", - "line": 32, + "filePath": "src/components/CouponDetails/index.jsx", + "line": 419, "column": 8, - "index": 1033 + "index": 12880 }, { - "filePath": "src/components/settings/HelpCenterButton.jsx", - "line": 13, - "column": 4, - "index": 217 + "filePath": "src/components/ReduxFormCheckbox/index.jsx", + "line": 16, + "column": 6, + "index": 260 }, { - "filePath": "src/components/settings/SettingsApiCredentialsTab/APICredentialsPage.jsx", - "line": 77, - "column": 10, - "index": 2410 + "filePath": "src/components/ReportingConfig/EmailDeliveryMethodForm.jsx", + "line": 60, + "column": 12, + "index": 2586 }, { - "filePath": "src/components/settings/SettingsApiCredentialsTab/ZeroStateCard.jsx", - "line": 47, - "column": 10, - "index": 1663 + "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", + "line": 278, + "column": 12, + "index": 9530 }, { - "filePath": "src/components/settings/SettingsApiCredentialsTab/ZeroStateCard.jsx", - "line": 63, - "column": 10, - "index": 2218 + "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", + "line": 470, + "column": 12, + "index": 18839 }, { - "filePath": "src/components/settings/SettingsAppearanceTab/CustomThemeModal.jsx", - "line": 132, - "column": 10, - "index": 5160 + "filePath": "src/components/ReportingConfig/SFTPDeliveryMethodForm.jsx", + "line": 124, + "column": 14, + "index": 5122 }, { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", - "line": 152, + "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", + "line": 223, "column": 10, - "index": 5267 + "index": 7780 }, { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", - "line": 162, - "column": 10, - "index": 5606 + "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigServiceProviderStep.jsx", + "line": 44, + "column": 6, + "index": 1584 }, { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", - "line": 172, + "filePath": "src/components/subsidy-request-modals/DeclineSubsidyRequestModal.jsx", + "line": 89, "column": 8, - "index": 6006 + "index": 2361 }, { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/utils.jsx", - "line": 45, - "column": 9, - "index": 1774 - }, + "filePath": "src/components/subsidy-request-modals/DeclineSubsidyRequestModal.jsx", + "line": 97, + "column": 8, + "index": 2682 + } + ], + "WarningFilled": [ { - "filePath": "src/components/settings/SettingsSSOTab/index.jsx", - "line": 121, + "filePath": "src/components/BulkEnrollmentPage/stepper/DismissibleCourseWarning.jsx", + "line": 16, "column": 12, - "index": 4835 + "index": 449 }, { - "filePath": "src/components/settings/SettingsSSOTab/index.jsx", - "line": 189, - "column": 8, - "index": 7519 + "filePath": "src/components/CodeManagement/ManageCodesTab.jsx", + "line": 231, + "column": 37, + "index": 6811 }, { - "filePath": "src/components/settings/SettingsSSOTab/NewSSOConfigForm.jsx", - "line": 34, - "column": 12, - "index": 1229 + "filePath": "src/components/ContentHighlights/ContentHighlights.jsx", + "line": 107, + "column": 61, + "index": 4492 }, { - "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", - "line": 151, - "column": 8, - "index": 5367 + "filePath": "src/components/learner-credit-management/OfferUtilizationAlerts.jsx", + "line": 59, + "column": 14, + "index": 1815 }, { - "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", + "filePath": "src/components/settings/SettingsSSOTab/index.jsx", "line": 202, - "column": 12, - "index": 7041 + "column": 49, + "index": 8822 }, { - "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", - "line": 370, - "column": 12, - "index": 13413 + "filePath": "src/components/settings/SettingsSSOTab/index.jsx", + "line": 265, + "column": 43, + "index": 11282 }, { - "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigServiceProviderStep.jsx", - "line": 35, - "column": 41, - "index": 1201 + "filePath": "src/components/settings/SettingsSSOTab/index.jsx", + "line": 270, + "column": 43, + "index": 11481 }, { - "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRemindModal.jsx", - "line": 168, + "filePath": "src/components/settings/SettingsSSOTab/NewSSOConfigForm.jsx", + "line": 36, "column": 16, - "index": 5003 + "index": 1431 }, { - "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRevokeModal.jsx", - "line": 163, - "column": 16, - "index": 4539 + "filePath": "src/components/system-wide-banner/SystemWideWarningBanner.jsx", + "line": 8, + "column": 15, + "index": 273 + } + ], + "IconButton": [ + { + "filePath": "src/components/BulkEnrollmentPage/stepper/ReviewItem.jsx", + "line": 23, + "column": 12, + "index": 561 }, { - "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRevokeModal.jsx", - "line": 178, - "column": 10, - "index": 5208 + "filePath": "src/components/ContentHighlights/HighlightStepper/ContentConfirmContentCard.jsx", + "line": 65, + "column": 6, + "index": 2009 }, { - "filePath": "src/components/subscriptions/MultipleSubscriptionsPage.jsx", - "line": 47, + "filePath": "src/components/learner-credit-management/EmailAddressTableCell.jsx", + "line": 79, + "column": 8, + "index": 3237 + }, + { + "filePath": "src/components/learner-credit-management/members-tab/LearnerCreditGroupMembersTable.jsx", + "line": 38, "column": 14, - "index": 1472 + "index": 1660 }, { - "filePath": "src/components/SubsidyRequestManagementTable/CourseTitleCell.jsx", - "line": 40, - "column": 8, - "index": 995 - } - ], - "Add": [ - { - "filePath": "src/components/ContentHighlights/CatalogVisibility/ContentHighlightCatalogVisibilityAlert.jsx", - "line": 75, - "column": 26, - "index": 2280 + "filePath": "src/components/learner-credit-management/members-tab/MemberDetailsTableCell.jsx", + "line": 16, + "column": 4, + "index": 344 }, { - "filePath": "src/components/ContentHighlights/CurrentContentHighlightHeader.jsx", - "line": 74, - "column": 22, - "index": 2340 + "filePath": "src/components/learner-credit-management/members-tab/MemberDetailsTableCell.jsx", + "line": 40, + "column": 6, + "index": 1129 }, { - "filePath": "src/components/ContentHighlights/ZeroState/ZeroStateHighlights.jsx", - "line": 56, - "column": 26, - "index": 2084 + "filePath": "src/components/MultipleFileInputField/MultipleFileInputField.jsx", + "line": 94, + "column": 12, + "index": 2944 }, { - "filePath": "src/components/learner-credit-management/BudgetDetailPageOverviewAvailability.jsx", - "line": 70, - "column": 22, - "index": 2544 + "filePath": "src/components/PeopleManagement/GroupDetailPage.jsx", + "line": 79, + "column": 20, + "index": 2787 }, { - "filePath": "src/components/settings/SettingsLMSTab/index.jsx", - "line": 161, - "column": 26, - "index": 6223 + "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", + "line": 260, + "column": 20, + "index": 8679 }, { - "filePath": "src/components/settings/SettingsLMSTab/NoConfigCard.jsx", - "line": 34, - "column": 28, - "index": 1213 + "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", + "line": 118, + "column": 24, + "index": 3498 }, { - "filePath": "src/components/settings/SettingsLMSTab/NoConfigCard.jsx", - "line": 44, - "column": 21, - "index": 1753 + "filePath": "src/components/settings/SettingsSSOTab/NewSSOConfigCard.jsx", + "line": 223, + "column": 18, + "index": 7323 }, { - "filePath": "src/components/settings/SettingsSSOTab/index.jsx", - "line": 114, - "column": 28, - "index": 4667 + "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/LicenseManagementTableActionColumn.jsx", + "line": 120, + "column": 8, + "index": 3153 }, { - "filePath": "src/components/settings/SettingsSSOTab/NoSSOCard.jsx", - "line": 33, - "column": 28, - "index": 1125 + "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/LicenseManagementTableActionColumn.jsx", + "line": 141, + "column": 8, + "index": 3628 } ], - "Form.RadioSet": [ + "Delete": [ { - "filePath": "src/components/ContentHighlights/CatalogVisibility/ContentHighlightCatalogVisibilityRadioInput.jsx", - "line": 111, - "column": 8, - "index": 4393 + "filePath": "src/components/BulkEnrollmentPage/stepper/ReviewItem.jsx", + "line": 24, + "column": 19, + "index": 592 }, { - "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessSubsidyTypeSelection.jsx", - "line": 58, - "column": 6, - "index": 1712 + "filePath": "src/components/ContentHighlights/HighlightStepper/ContentConfirmContentCard.jsx", + "line": 66, + "column": 13, + "index": 2034 }, { - "filePath": "src/components/subsidy-request-modals/ApproveCouponCodeRequestModal.jsx", - "line": 122, - "column": 16, - "index": 3622 + "filePath": "src/components/PeopleManagement/GroupDetailPage.jsx", + "line": 106, + "column": 21, + "index": 3812 }, { - "filePath": "src/components/subsidy-request-modals/ApproveLicenseRequestModal.jsx", - "line": 121, - "column": 16, - "index": 3782 + "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", + "line": 154, + "column": 24, + "index": 5097 } ], - "Form.Radio": [ + "DataTableContext.Provider": [ { - "filePath": "src/components/ContentHighlights/CatalogVisibility/ContentHighlightCatalogVisibilityRadioInput.jsx", - "line": 130, - "column": 12, - "index": 5061 - }, + "filePath": "src/components/BulkEnrollmentPage/table/BaseSelectionStatus.test.jsx", + "line": 44, + "column": 2, + "index": 1165 + } + ], + "CheckboxControl": [ { - "filePath": "src/components/ContentHighlights/CatalogVisibility/ContentHighlightCatalogVisibilityRadioInput.jsx", - "line": 155, - "column": 12, - "index": 6119 + "filePath": "src/components/BulkEnrollmentPage/table/BulkEnrollSelect.jsx", + "line": 18, + "column": 6, + "index": 403 }, { - "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessSubsidyTypeSelection.jsx", - "line": 66, - "column": 12, - "index": 1957 - }, + "filePath": "src/components/ContentHighlights/HighlightStepper/SelectContentSelectionCheckbox.jsx", + "line": 25, + "column": 6, + "index": 775 + } + ], + "OverlayTrigger": [ { - "filePath": "src/components/settings/SettingsAppearanceTab/ThemeCard.jsx", - "line": 31, - "column": 8, - "index": 842 + "filePath": "src/components/BulkEnrollmentPage/table/CourseSearchResultsCells.jsx", + "line": 12, + "column": 2, + "index": 332 }, { - "filePath": "src/components/subsidy-request-modals/ApproveCouponCodeRequestModal.jsx", - "line": 127, - "column": 20, - "index": 3849 + "filePath": "src/components/IconWithTooltip/index.jsx", + "line": 13, + "column": 4, + "index": 451 }, { - "filePath": "src/components/subsidy-request-modals/ApproveLicenseRequestModal.jsx", - "line": 126, - "column": 20, - "index": 4035 - } - ], - "Card.ImageCap": [ + "filePath": "src/components/InfoHover/index.jsx", + "line": 9, + "column": 2, + "index": 246 + }, { - "filePath": "src/components/ContentHighlights/ContentHighlightCardItem.jsx", - "line": 35, - "column": 6, - "index": 1239 + "filePath": "src/components/learner-credit-management/BudgetStatusSubtitle.jsx", + "line": 104, + "column": 16, + "index": 4261 }, { - "filePath": "src/components/ContentHighlights/ContentHighlightSetCard.jsx", - "line": 39, + "filePath": "src/components/learner-credit-management/EmailAddressTableCell.jsx", + "line": 53, "column": 6, - "index": 1066 + "index": 2202 }, { - "filePath": "src/components/ContentHighlights/SkeletonContentCard.jsx", - "line": 6, + "filePath": "src/components/learner-credit-management/members-tab/MemberEnrollmentsTableColumnHeader.jsx", + "line": 20, "column": 4, - "index": 157 + "index": 632 }, { - "filePath": "src/components/ContentHighlights/ZeroState/ZeroStateCardImage.jsx", - "line": 7, + "filePath": "src/components/learner-credit-management/members-tab/MemberStatusTableColumnHeader.jsx", + "line": 20, "column": 4, - "index": 238 + "index": 607 }, { - "filePath": "src/components/learner-credit-management/AssignMoreCoursesEmptyStateMinimal.jsx", - "line": 24, + "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessConfiguredSubsidyType.jsx", + "line": 23, "column": 6, - "index": 841 + "index": 689 }, { - "filePath": "src/components/learner-credit-management/cards/BaseCourseCard.jsx", - "line": 44, - "column": 6, - "index": 1092 + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/utils.jsx", + "line": 32, + "column": 8, + "index": 1276 }, { - "filePath": "src/components/settings/SettingsApiCredentialsTab/ZeroStateCard.jsx", - "line": 35, - "column": 6, - "index": 1171 + "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", + "line": 337, + "column": 16, + "index": 12018 }, { - "filePath": "src/components/settings/SettingsLMSTab/NoConfigCard.jsx", - "line": 20, - "column": 6, - "index": 506 + "filePath": "src/components/settings/SettingsSSOTab/NewSSOConfigCard.jsx", + "line": 86, + "column": 8, + "index": 2811 }, { - "filePath": "src/components/settings/SettingsSSOTab/NoSSOCard.jsx", - "line": 19, - "column": 6, - "index": 465 - } - ], - "Card.Header": [ + "filePath": "src/components/settings/SettingsSSOTab/NewSSOConfigCard.jsx", + "line": 106, + "column": 8, + "index": 3516 + }, { - "filePath": "src/components/ContentHighlights/ContentHighlightCardItem.jsx", - "line": 42, - "column": 6, - "index": 1445 + "filePath": "src/components/settings/SettingsSSOTab/SSOConfigConfiguredCard.jsx", + "line": 95, + "column": 10, + "index": 3579 }, { - "filePath": "src/components/ContentHighlights/ContentHighlightSetCard.jsx", - "line": 40, + "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/LicenseManagementTableActionColumn.jsx", + "line": 112, "column": 6, - "index": 1118 + "index": 2981 }, { - "filePath": "src/components/learner-credit-management/cards/BaseCourseCard.jsx", - "line": 51, - "column": 8, - "index": 1242 + "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/LicenseManagementTableActionColumn.jsx", + "line": 133, + "column": 6, + "index": 3456 }, { - "filePath": "src/components/learner-credit-management/SubBudgetCard.jsx", + "filePath": "src/components/SubsidyRequestManagementTable/CourseTitleCell.jsx", "line": 63, + "column": 2, + "index": 1613 + }, + { + "filePath": "src/components/TemplateSourceFields/index.jsx", + "line": 116, + "column": 10, + "index": 3747 + }, + { + "filePath": "src/components/TemplateSourceFields/index.jsx", + "line": 142, + "column": 10, + "index": 4808 + } + ], + "Popover": [ + { + "filePath": "src/components/BulkEnrollmentPage/table/CourseSearchResultsCells.jsx", + "line": 18, "column": 6, - "index": 1716 + "index": 437 }, { - "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 169, - "column": 8, - "index": 5286 + "filePath": "src/components/learner-credit-management/EmailAddressTableCell.jsx", + "line": 57, + "column": 10, + "index": 2301 }, { - "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", - "line": 107, + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/utils.jsx", + "line": 38, "column": 12, - "index": 3064 + "index": 1430 }, { - "filePath": "src/components/settings/SettingsSSOTab/NewSSOConfigCard.jsx", - "line": 167, - "column": 6, - "index": 5118 + "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", + "line": 342, + "column": 20, + "index": 12229 }, { - "filePath": "src/components/subscriptions/SubscriptionCard.jsx", - "line": 82, + "filePath": "src/components/settings/SettingsSSOTab/SSOConfigConfiguredCard.jsx", + "line": 99, + "column": 14, + "index": 3688 + }, + { + "filePath": "src/components/SubsidyRequestManagementTable/CourseTitleCell.jsx", + "line": 68, "column": 6, - "index": 2216 + "index": 1704 } ], - "Card.Footer": [ + "Popover.Title": [ { - "filePath": "src/components/ContentHighlights/ContentHighlightCardItem.jsx", - "line": 49, - "column": 10, - "index": 1678 + "filePath": "src/components/BulkEnrollmentPage/table/CourseSearchResultsCells.jsx", + "line": 19, + "column": 8, + "index": 483 }, { - "filePath": "src/components/ContentHighlights/SkeletonContentCard.jsx", - "line": 8, - "column": 4, - "index": 230 + "filePath": "src/components/learner-credit-management/EmailAddressTableCell.jsx", + "line": 58, + "column": 12, + "index": 2349 }, { - "filePath": "src/components/ContentHighlights/ZeroState/ZeroStateCardFooter.jsx", - "line": 6, - "column": 2, - "index": 168 + "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", + "line": 343, + "column": 22, + "index": 12313 }, { - "filePath": "src/components/learner-credit-management/AssignMoreCoursesEmptyStateMinimal.jsx", - "line": 39, - "column": 6, - "index": 1430 - }, + "filePath": "src/components/SubsidyRequestManagementTable/CourseTitleCell.jsx", + "line": 69, + "column": 8, + "index": 1765 + } + ], + "Popover.Content": [ { - "filePath": "src/components/learner-credit-management/cards/BaseCourseCard.jsx", - "line": 66, + "filePath": "src/components/BulkEnrollmentPage/table/CourseSearchResultsCells.jsx", + "line": 20, "column": 8, - "index": 1727 + "index": 530 }, { - "filePath": "src/components/settings/SettingsApiCredentialsTab/ZeroStateCard.jsx", - "line": 73, - "column": 6, - "index": 2484 + "filePath": "src/components/learner-credit-management/EmailAddressTableCell.jsx", + "line": 59, + "column": 12, + "index": 2413 }, { - "filePath": "src/components/settings/SettingsAppearanceTab/ThemeCard.jsx", - "line": 29, - "column": 6, - "index": 737 + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/utils.jsx", + "line": 39, + "column": 14, + "index": 1490 }, { "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 263, - "column": 8, - "index": 8802 - }, - { - "filePath": "src/components/settings/SettingsLMSTab/NoConfigCard.jsx", - "line": 33, - "column": 6, - "index": 1136 + "line": 350, + "column": 22, + "index": 12727 }, { - "filePath": "src/components/settings/SettingsLMSTab/NoConfigCard.jsx", - "line": 38, - "column": 6, - "index": 1360 + "filePath": "src/components/settings/SettingsSSOTab/SSOConfigConfiguredCard.jsx", + "line": 100, + "column": 16, + "index": 3742 }, { - "filePath": "src/components/settings/SettingsSSOTab/NoSSOCard.jsx", - "line": 32, - "column": 6, - "index": 1048 + "filePath": "src/components/SubsidyRequestManagementTable/CourseTitleCell.jsx", + "line": 70, + "column": 8, + "index": 1839 } ], - "CardGrid": [ + "ModalDialog.CloseButton": [ { - "filePath": "src/components/ContentHighlights/ContentHighlightsCardItemsContainer.jsx", - "line": 42, - "column": 4, - "index": 1375 + "filePath": "src/components/CodeAssignmentModal/index.jsx", + "line": 416, + "column": 12, + "index": 12444 }, { - "filePath": "src/components/ContentHighlights/HighlightSetSection.jsx", - "line": 36, - "column": 6, - "index": 1136 + "filePath": "src/components/CodeReminderModal/index.jsx", + "line": 230, + "column": 12, + "index": 6544 }, { - "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperConfirmContent.jsx", - "line": 50, - "column": 4, - "index": 1548 + "filePath": "src/components/CodeRevokeModal/index.jsx", + "line": 238, + "column": 12, + "index": 6702 }, { - "filePath": "src/components/ContentHighlights/SkeletonContentCardContainer.jsx", - "line": 8, - "column": 2, - "index": 315 + "filePath": "src/components/InviteLearnersModal/index.jsx", + "line": 254, + "column": 12, + "index": 8094 }, { - "filePath": "src/components/settings/SettingsAppearanceTab/index.jsx", - "line": 146, - "column": 6, - "index": 5407 + "filePath": "src/components/learner-credit-management/CancelAssignmentModal.jsx", + "line": 64, + "column": 10, + "index": 2222 }, { - "filePath": "src/components/settings/SettingsLMSTab/ExistingLMSCardDeck.jsx", - "line": 53, - "column": 8, - "index": 1652 + "filePath": "src/components/learner-credit-management/members-tab/bulk-actions/MemberRemoveModal.jsx", + "line": 196, + "column": 10, + "index": 7533 }, { - "filePath": "src/components/settings/SettingsLMSTab/ExistingLMSCardDeck.jsx", - "line": 69, - "column": 8, - "index": 1982 + "filePath": "src/components/learner-credit-management/RemindAssignmentModal.jsx", + "line": 58, + "column": 10, + "index": 2063 }, { - "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", - "line": 92, - "column": 6, - "index": 2754 + "filePath": "src/components/PeopleManagement/DeleteGroupModal.jsx", + "line": 67, + "column": 12, + "index": 2262 }, { - "filePath": "src/components/settings/SettingsSSOTab/NewExistingSSOConfigs.jsx", - "line": 46, - "column": 10, - "index": 1915 - } - ], - "ActionRow.Spacer": [ + "filePath": "src/components/PeopleManagement/EditGroupNameModal.jsx", + "line": 81, + "column": 12, + "index": 2383 + }, { - "filePath": "src/components/ContentHighlights/CurrentContentHighlightHeader.jsx", - "line": 71, - "column": 8, - "index": 2280 + "filePath": "src/components/settings/SettingsApiCredentialsTab/RegenerateCredentialWarningModal.jsx", + "line": 76, + "column": 12, + "index": 2249 }, { - "filePath": "src/components/ContentHighlights/CurrentContentHighlightItemsHeader.jsx", - "line": 12, - "column": 8, - "index": 432 + "filePath": "src/components/settings/SettingsSSOTab/index.jsx", + "line": 108, + "column": 14, + "index": 4747 }, { - "filePath": "src/components/ContentHighlights/CurrentContentHighlightItemsHeader.jsx", - "line": 24, - "column": 8, - "index": 711 + "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", + "line": 176, + "column": 10, + "index": 6298 }, { - "filePath": "src/components/ContentHighlights/HighlightStepper/SelectContentSearchPagination.jsx", - "line": 13, - "column": 4, - "index": 325 + "filePath": "src/components/subscriptions/expiration/SubscriptionExpiredModal.jsx", + "line": 46, + "column": 10, + "index": 1788 }, { - "filePath": "src/components/ContentHighlights/HighlightStepper/SelectContentSearchPagination.jsx", - "line": 19, - "column": 4, - "index": 499 + "filePath": "src/components/subscriptions/expiration/SubscriptionExpiringModal.jsx", + "line": 78, + "column": 10, + "index": 3041 }, { - "filePath": "src/components/learner-credit-management/cards/NewAssignmentModalButton.jsx", - "line": 206, - "column": 12, - "index": 7376 + "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRemindModal.jsx", + "line": 222, + "column": 10, + "index": 7127 }, { - "filePath": "src/components/settings/SettingsApiCredentialsTab/index.jsx", - "line": 44, - "column": 14, - "index": 1581 + "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRevokeModal.jsx", + "line": 228, + "column": 10, + "index": 7150 } ], - "FullscreenModal": [ + "Container": [ { - "filePath": "src/components/ContentHighlights/HighlightStepper/ContentHighlightStepper.jsx", - "line": 259, - "column": 8, - "index": 9746 + "filePath": "src/components/CodeManagement/index.jsx", + "line": 15, + "column": 6, + "index": 369 }, { - "filePath": "src/components/learner-credit-management/cards/NewAssignmentModalButton.jsx", - "line": 179, - "column": 6, - "index": 6451 + "filePath": "src/components/ContentHighlights/CatalogVisibility/ContentHighlightCatalogVisibilityRadioInput.jsx", + "line": 119, + "column": 4, + "index": 4766 }, { - "filePath": "src/components/settings/SettingsSSOTab/SsoErrorPage.jsx", - "line": 20, - "column": 4, - "index": 537 - } - ], - "Stepper.Header": [ - { - "filePath": "src/components/ContentHighlights/HighlightStepper/ContentHighlightStepper.jsx", - "line": 264, - "column": 26, - "index": 9955 + "filePath": "src/components/ContentHighlights/ContentHighlightsDashboard.jsx", + "line": 16, + "column": 2, + "index": 867 }, { - "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", - "line": 137, - "column": 8, - "index": 5211 - } - ], - "Assignment": [ + "filePath": "src/components/ContentHighlights/ContentHighlightSet.jsx", + "line": 12, + "column": 4, + "index": 531 + }, { "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperConfirmContent.jsx", - "line": 145, - "column": 23, - "index": 4499 - } - ], - "AddCircle": [ - { - "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperSelectContentHeader.jsx", - "line": 13, - "column": 19, - "index": 551 + "line": 141, + "column": 4, + "index": 4366 }, { - "filePath": "src/components/settings/SettingsSSOTab/SSOConfigConfiguredCard.jsx", - "line": 110, - "column": 25, - "index": 4071 - } - ], - "CardView": [ - { - "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperSelectContentSearch.jsx", - "line": 104, - "column": 8, - "index": 3410 + "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperSelectContent.jsx", + "line": 10, + "column": 2, + "index": 365 }, - { - "filePath": "src/components/learner-credit-management/search/CatalogSearchResults.jsx", - "line": 99, - "column": 8, - "index": 2987 - } - ], - "EditCircle": [ { "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperTitle.jsx", - "line": 15, - "column": 21, - "index": 438 - } - ], - "Pagination.Reduced": [ - { - "filePath": "src/components/ContentHighlights/HighlightStepper/SelectContentSearchPagination.jsx", - "line": 14, - "column": 4, - "index": 350 - } - ], - "FileDownload": [ - { - "filePath": "src/components/DownloadCsvButton/index.jsx", - "line": 39, - "column": 102, - "index": 1146 - } - ], - "MediaQuery": [ - { - "filePath": "src/components/EnterpriseApp/index.jsx", - "line": 132, - "column": 10, - "index": 3906 - } - ], - "breakpoints": [ - { - "filePath": "src/components/EnterpriseApp/index.jsx", - "line": 132, - "column": 32, - "index": 3928 - }, - { - "filePath": "src/components/learner-credit-management/BudgetDetailPageOverviewAvailability.jsx", - "line": 45, - "column": 71, - "index": 1666 + "line": 11, + "column": 2, + "index": 322 }, { - "filePath": "src/components/learner-credit-management/cards/BaseCourseCard.jsx", - "line": 22, - "column": 44, - "index": 505 + "filePath": "src/components/EnterpriseList/index.jsx", + "line": 61, + "column": 6, + "index": 1638 }, { - "filePath": "src/components/learner-credit-management/cards/BaseCourseCard.jsx", - "line": 23, - "column": 49, - "index": 585 + "filePath": "src/components/learner-credit-management/assignment-modal/AssignmentModalContent.jsx", + "line": 129, + "column": 4, + "index": 4789 }, { - "filePath": "src/components/learner-credit-management/data/hooks/useIsLargeOrGreater.js", - "line": 3, - "column": 72, - "index": 132 + "filePath": "src/components/learner-credit-management/BudgetDetailPageWrapper.jsx", + "line": 105, + "column": 6, + "index": 3652 }, { - "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/index.jsx", - "line": 60, - "column": 53, - "index": 2105 + "filePath": "src/components/learner-credit-management/invite-modal/InviteModalContent.jsx", + "line": 104, + "column": 4, + "index": 3888 }, { - "filePath": "src/components/subscriptions/tests/SubscriptionCard.test.jsx", - "line": 29, - "column": 40, - "index": 679 + "filePath": "src/components/learner-credit-management/MultipleBudgetsPage.jsx", + "line": 108, + "column": 6, + "index": 3357 }, { - "filePath": "src/containers/EnterpriseApp/EnterpriseApp.test.jsx", - "line": 188, - "column": 26, - "index": 5465 - } - ], - "ErrorIcon": [ - { - "filePath": "src/components/ErrorPage/index.jsx", - "line": 31, - "column": 18, - "index": 789 + "filePath": "src/components/PeopleManagement/CreateGroupModalContent.jsx", + "line": 99, + "column": 4, + "index": 3468 }, { - "filePath": "src/components/InviteLearnersModal/index.jsx", - "line": 163, - "column": 16, - "index": 4776 - } - ], - "ValidationFormGroup": [ - { - "filePath": "src/components/FileInput/index.jsx", - "line": 72, + "filePath": "src/components/settings/SettingsSSOTab/SsoErrorPage.jsx", + "line": 39, "column": 6, - "index": 1537 + "index": 1037 }, { - "filePath": "src/components/ReportingConfig/EmailDeliveryMethodForm.jsx", - "line": 13, + "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", + "line": 139, "column": 8, - "index": 420 + "index": 5247 }, { - "filePath": "src/components/ReportingConfig/EmailDeliveryMethodForm.jsx", - "line": 45, - "column": 8, - "index": 1600 + "filePath": "src/components/settings/SettingsTabs.jsx", + "line": 204, + "column": 4, + "index": 6089 }, { - "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 198, - "column": 10, - "index": 7008 + "filePath": "src/components/subscriptions/SubscriptionManagementPage.jsx", + "line": 24, + "column": 8, + "index": 873 }, { - "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 214, - "column": 12, - "index": 7516 - }, + "filePath": "src/components/UserActivationPage/index.jsx", + "line": 80, + "column": 4, + "index": 2544 + } + ], + "Pagination": [ { - "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 228, - "column": 12, - "index": 8242 + "filePath": "src/components/CodeManagement/ManageCodesTab.jsx", + "line": 199, + "column": 10, + "index": 5868 }, { - "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 243, - "column": 12, - "index": 8886 + "filePath": "src/components/ContentHighlights/HighlightStepper/SelectContentSearchPagination.jsx", + "line": 20, + "column": 4, + "index": 528 }, { - "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 266, + "filePath": "src/components/TableComponent/index.jsx", + "line": 109, "column": 12, - "index": 9965 - }, + "index": 3520 + } + ], + "CheckCircle": [ { - "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 284, - "column": 12, - "index": 10694 + "filePath": "src/components/CodeManagement/ManageCodesTab.jsx", + "line": 220, + "column": 14, + "index": 6525 }, { - "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 303, + "filePath": "src/components/CodeSearchResults/index.jsx", + "line": 67, "column": 12, - "index": 11496 + "index": 1699 }, { - "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 319, - "column": 12, - "index": 12211 + "filePath": "src/components/CouponDetails/index.jsx", + "line": 480, + "column": 14, + "index": 14417 }, { - "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 336, - "column": 8, - "index": 12915 + "filePath": "src/components/SaveTemplateButton/index.jsx", + "line": 154, + "column": 31, + "index": 5026 }, { - "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 367, + "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessConfiguredSubsidyType.jsx", + "line": 37, "column": 10, - "index": 13997 + "index": 1202 }, { - "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 385, - "column": 10, - "index": 14804 + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", + "line": 109, + "column": 23, + "index": 4193 }, { - "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 406, - "column": 10, - "index": 15714 + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/utils.jsx", + "line": 26, + "column": 31, + "index": 1029 }, { - "filePath": "src/components/ReportingConfig/SFTPDeliveryMethodForm.jsx", - "line": 12, - "column": 10, - "index": 349 + "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", + "line": 189, + "column": 61, + "index": 6093 }, { - "filePath": "src/components/ReportingConfig/SFTPDeliveryMethodForm.jsx", - "line": 30, - "column": 10, - "index": 1011 + "filePath": "src/components/settings/SettingsSSOTab/NewSSOConfigAlerts.jsx", + "line": 228, + "column": 16, + "index": 8788 }, { - "filePath": "src/components/ReportingConfig/SFTPDeliveryMethodForm.jsx", - "line": 49, + "filePath": "src/components/settings/SettingsSSOTab/SSOConfigConfiguredCard.jsx", + "line": 123, "column": 10, - "index": 1641 - }, + "index": 4484 + } + ], + "SpinnerIcon": [ { - "filePath": "src/components/ReportingConfig/SFTPDeliveryMethodForm.jsx", - "line": 77, - "column": 10, - "index": 2651 - }, + "filePath": "src/components/CodeManagement/ManageCodesTab.jsx", + "line": 282, + "column": 71, + "index": 8625 + } + ], + "Plus": [ { - "filePath": "src/components/ReportingConfig/SFTPDeliveryMethodForm.jsx", - "line": 93, - "column": 10, - "index": 3360 + "filePath": "src/components/CodeManagement/ManageCodesTab.jsx", + "line": 291, + "column": 27, + "index": 8936 } ], - "Dropdown": [ + "Warning": [ { - "filePath": "src/components/Header/index.jsx", - "line": 46, - "column": 4, - "index": 1177 + "filePath": "src/components/CodeModal/ModalError.jsx", + "line": 12, + "column": 17, + "index": 317 }, { - "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 172, - "column": 12, - "index": 5371 + "filePath": "src/components/learner-credit-management/AssignmentEnrollByDateCell.jsx", + "line": 23, + "column": 11, + "index": 907 }, { - "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", - "line": 114, + "filePath": "src/components/settings/SettingsApiCredentialsTab/RegenerateCredentialWarningModal.jsx", + "line": 60, + "column": 25, + "index": 1646 + }, + { + "filePath": "src/components/settings/SettingsSSOTab/NewSSOConfigAlerts.jsx", + "line": 134, "column": 16, - "index": 3280 + "index": 4555 }, { - "filePath": "src/components/settings/SettingsSSOTab/NewSSOConfigCard.jsx", - "line": 182, - "column": 10, - "index": 5587 + "filePath": "src/components/settings/SettingsSSOTab/NewSSOConfigAlerts.jsx", + "line": 169, + "column": 16, + "index": 6032 } ], - "Dropdown.Toggle": [ + "TransitionReplace": [ { - "filePath": "src/components/Header/index.jsx", - "line": 47, + "filePath": "src/components/CodeSearchResults/index.jsx", + "line": 83, "column": 6, - "index": 1194 + "index": 2032 + } + ], + "Add": [ + { + "filePath": "src/components/ContentHighlights/CatalogVisibility/ContentHighlightCatalogVisibilityAlert.jsx", + "line": 84, + "column": 26, + "index": 2943 }, { - "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 173, - "column": 14, - "index": 5396 + "filePath": "src/components/ContentHighlights/CurrentContentHighlightHeader.jsx", + "line": 87, + "column": 22, + "index": 2885 }, { - "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", - "line": 115, - "column": 18, - "index": 3309 + "filePath": "src/components/ContentHighlights/ZeroState/ZeroStateHighlights.jsx", + "line": 65, + "column": 26, + "index": 2717 }, { - "filePath": "src/components/settings/SettingsSSOTab/NewSSOConfigCard.jsx", - "line": 183, - "column": 12, - "index": 5627 - } - ], - "AvatarButton": [ + "filePath": "src/components/learner-credit-management/BudgetDetailPageOverviewAvailability.jsx", + "line": 313, + "column": 26, + "index": 13262 + }, { - "filePath": "src/components/Header/index.jsx", - "line": 48, - "column": 12, - "index": 1223 - } - ], - "Dropdown.Menu": [ + "filePath": "src/components/learner-credit-management/BudgetDetailPageOverviewAvailability.jsx", + "line": 385, + "column": 22, + "index": 16037 + }, { - "filePath": "src/components/Header/index.jsx", - "line": 56, - "column": 6, - "index": 1405 + "filePath": "src/components/PeopleManagement/index.jsx", + "line": 74, + "column": 30, + "index": 3009 }, { - "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 182, - "column": 14, - "index": 5742 + "filePath": "src/components/settings/SettingsLMSTab/index.jsx", + "line": 171, + "column": 26, + "index": 6741 }, { - "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", - "line": 124, - "column": 18, - "index": 3691 + "filePath": "src/components/settings/SettingsLMSTab/NoConfigCard.jsx", + "line": 44, + "column": 30, + "index": 1740 }, { - "filePath": "src/components/settings/SettingsSSOTab/NewSSOConfigCard.jsx", - "line": 192, - "column": 12, - "index": 5940 + "filePath": "src/components/settings/SettingsLMSTab/NoConfigCard.jsx", + "line": 67, + "column": 23, + "index": 2843 + }, + { + "filePath": "src/components/settings/SettingsSSOTab/index.jsx", + "line": 145, + "column": 28, + "index": 6335 + }, + { + "filePath": "src/components/settings/SettingsSSOTab/NoSSOCard.jsx", + "line": 47, + "column": 28, + "index": 1762 } ], - "Dropdown.Item": [ + "Form.RadioSet": [ { - "filePath": "src/components/Header/index.jsx", - "line": 57, + "filePath": "src/components/ContentHighlights/CatalogVisibility/ContentHighlightCatalogVisibilityRadioInput.jsx", + "line": 121, "column": 8, - "index": 1429 + "index": 4805 }, { - "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 185, - "column": 20, - "index": 5878 + "filePath": "src/components/learner-credit-management/invite-modal/InviteModalContent.jsx", + "line": 121, + "column": 12, + "index": 4598 }, { - "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 195, - "column": 20, - "index": 6274 + "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessSubsidyTypeSelection.jsx", + "line": 67, + "column": 6, + "index": 2162 }, { - "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 205, - "column": 20, - "index": 6683 + "filePath": "src/components/subsidy-request-modals/ApproveCouponCodeRequestModal.jsx", + "line": 123, + "column": 16, + "index": 3680 }, { - "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 216, - "column": 20, - "index": 7118 + "filePath": "src/components/subsidy-request-modals/ApproveLicenseRequestModal.jsx", + "line": 155, + "column": 16, + "index": 5456 + } + ], + "Form.Radio": [ + { + "filePath": "src/components/ContentHighlights/CatalogVisibility/ContentHighlightCatalogVisibilityRadioInput.jsx", + "line": 140, + "column": 12, + "index": 5473 }, { - "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", - "line": 126, - "column": 20, - "index": 3794 + "filePath": "src/components/ContentHighlights/CatalogVisibility/ContentHighlightCatalogVisibilityRadioInput.jsx", + "line": 169, + "column": 12, + "index": 6826 }, { - "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", - "line": 133, - "column": 20, - "index": 4095 + "filePath": "src/components/learner-credit-management/invite-modal/InviteModalContent.jsx", + "line": 127, + "column": 14, + "index": 4803 }, { - "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", - "line": 141, - "column": 22, - "index": 4422 + "filePath": "src/components/learner-credit-management/invite-modal/InviteModalContent.jsx", + "line": 128, + "column": 14, + "index": 4906 }, { - "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", - "line": 158, - "column": 20, - "index": 5216 + "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessSubsidyTypeSelection.jsx", + "line": 75, + "column": 12, + "index": 2407 }, { - "filePath": "src/components/settings/SettingsSSOTab/NewSSOConfigCard.jsx", - "line": 194, - "column": 16, - "index": 6002 + "filePath": "src/components/settings/SettingsAppearanceTab/ThemeCard.jsx", + "line": 31, + "column": 8, + "index": 846 }, { - "filePath": "src/components/settings/SettingsSSOTab/NewSSOConfigCard.jsx", - "line": 202, - "column": 16, - "index": 6332 + "filePath": "src/components/subsidy-request-modals/ApproveCouponCodeRequestModal.jsx", + "line": 128, + "column": 20, + "index": 3907 }, { - "filePath": "src/components/settings/SettingsSSOTab/NewSSOConfigCard.jsx", - "line": 210, - "column": 16, - "index": 6621 + "filePath": "src/components/subsidy-request-modals/ApproveLicenseRequestModal.jsx", + "line": 160, + "column": 20, + "index": 5709 } ], - "Navbar": [ + "Truncate": [ { - "filePath": "src/components/Header/index.jsx", - "line": 88, - "column": 6, - "index": 2163 - } - ], - "Nav": [ + "filePath": "src/components/ContentHighlights/ContentHighlightCardItem.jsx", + "line": 48, + "column": 15, + "index": 1638 + }, { - "filePath": "src/components/Header/index.jsx", - "line": 89, + "filePath": "src/components/ContentHighlights/ContentHighlightCardItem.jsx", + "line": 57, "column": 8, - "index": 2246 + "index": 2102 }, { - "filePath": "src/components/Header/index.jsx", - "line": 99, - "column": 10, - "index": 2591 - } - ], - "Nav.Link": [ - { - "filePath": "src/components/Header/index.jsx", - "line": 91, + "filePath": "src/components/ContentHighlights/ContentHighlightCardItem.jsx", + "line": 73, "column": 10, - "index": 2330 + "index": 2583 } ], - "useWindowSize": [ + "Card.ImageCap": [ { - "filePath": "src/components/IconWithTooltip/index.jsx", - "line": 10, - "column": 20, - "index": 346 + "filePath": "src/components/ContentHighlights/ContentHighlightCardItem.jsx", + "line": 63, + "column": 6, + "index": 2299 }, { - "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": 583 + "filePath": "src/components/ContentHighlights/ContentHighlightSetCard.jsx", + "line": 63, + "column": 6, + "index": 1986 }, { - "filePath": "src/components/InfoHover/index.jsx", - "line": 11, - "column": 13, - "index": 287 + "filePath": "src/components/ContentHighlights/SkeletonContentCard.jsx", + "line": 6, + "column": 4, + "index": 161 }, { - "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessConfiguredSubsidyType.jsx", - "line": 20, - "column": 10, - "index": 512 + "filePath": "src/components/ContentHighlights/ZeroState/ZeroStateCardImage.jsx", + "line": 7, + "column": 4, + "index": 242 }, { - "filePath": "src/components/settings/SettingsSSOTab/NewSSOConfigCard.jsx", - "line": 87, - "column": 19, - "index": 2796 + "filePath": "src/components/learner-credit-management/AssignMoreCoursesEmptyStateMinimal.jsx", + "line": 25, + "column": 6, + "index": 900 }, { - "filePath": "src/components/settings/SettingsSSOTab/NewSSOConfigCard.jsx", - "line": 100, - "column": 12, - "index": 3260 + "filePath": "src/components/learner-credit-management/cards/BaseCourseCard.jsx", + "line": 41, + "column": 6, + "index": 1200 }, { - "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/LicenseManagementTableActionColumn.jsx", - "line": 115, - "column": 10, - "index": 3042 + "filePath": "src/components/PeopleManagement/ZeroState.jsx", + "line": 20, + "column": 6, + "index": 718 }, { - "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/LicenseManagementTableActionColumn.jsx", - "line": 136, - "column": 10, - "index": 3517 + "filePath": "src/components/settings/SettingsApiCredentialsTab/ZeroStateCard.jsx", + "line": 36, + "column": 6, + "index": 1243 }, { - "filePath": "src/components/TemplateSourceFields/index.jsx", - "line": 120, - "column": 14, - "index": 3864 + "filePath": "src/components/settings/SettingsLMSTab/NoConfigCard.jsx", + "line": 21, + "column": 6, + "index": 578 }, { - "filePath": "src/components/TemplateSourceFields/index.jsx", - "line": 146, - "column": 14, - "index": 4929 + "filePath": "src/components/settings/SettingsSSOTab/NoSSOCard.jsx", + "line": 21, + "column": 6, + "index": 572 } ], - "InfoOutline": [ + "Card.Header": [ { - "filePath": "src/components/InfoHover/index.jsx", - "line": 13, - "column": 4, - "index": 352 + "filePath": "src/components/ContentHighlights/ContentHighlightCardItem.jsx", + "line": 70, + "column": 6, + "index": 2505 }, { - "filePath": "src/components/learner-credit-management/EmailAddressTableCell.jsx", - "line": 80, - "column": 15, - "index": 3256 + "filePath": "src/components/ContentHighlights/ContentHighlightSetCard.jsx", + "line": 64, + "column": 6, + "index": 2038 }, { - "filePath": "src/components/settings/SettingsAppearanceTab/CustomThemeModal.jsx", - "line": 131, - "column": 21, - "index": 5106 - } - ], - "ModalPopup": [ - { - "filePath": "src/components/learner-credit-management/assignments-status-chips/BaseModalPopup.jsx", - "line": 33, - "column": 2, - "index": 737 - } - ], - "Chip": [ + "filePath": "src/components/learner-credit-management/cards/BaseCourseCard.jsx", + "line": 48, + "column": 8, + "index": 1350 + }, { - "filePath": "src/components/learner-credit-management/assignments-status-chips/FailedBadEmail.jsx", - "line": 15, + "filePath": "src/components/learner-credit-management/SubBudgetCard.jsx", + "line": 143, "column": 6, - "index": 456 + "index": 4178 }, { - "filePath": "src/components/learner-credit-management/assignments-status-chips/FailedCancellation.jsx", - "line": 14, + "filePath": "src/components/PeopleManagement/GroupDetailCard.jsx", + "line": 10, "column": 6, - "index": 408 + "index": 335 }, { - "filePath": "src/components/learner-credit-management/assignments-status-chips/FailedRedemption.jsx", - "line": 14, - "column": 6, - "index": 406 + "filePath": "src/components/PeopleManagement/GroupDetailPage.jsx", + "line": 75, + "column": 14, + "index": 2646 }, { - "filePath": "src/components/learner-credit-management/assignments-status-chips/FailedReminder.jsx", - "line": 12, - "column": 6, - "index": 344 + "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", + "line": 253, + "column": 8, + "index": 8400 }, { - "filePath": "src/components/learner-credit-management/assignments-status-chips/FailedSystem.jsx", - "line": 14, - "column": 6, - "index": 402 + "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", + "line": 107, + "column": 12, + "index": 3072 }, { - "filePath": "src/components/learner-credit-management/assignments-status-chips/NotifyingLearner.jsx", - "line": 13, + "filePath": "src/components/settings/SettingsSSOTab/NewSSOConfigCard.jsx", + "line": 199, "column": 6, - "index": 386 + "index": 6438 }, { - "filePath": "src/components/learner-credit-management/assignments-status-chips/WaitingForLearner.jsx", - "line": 16, + "filePath": "src/components/subscriptions/SubscriptionCard.jsx", + "line": 82, "column": 6, - "index": 521 - }, + "index": 2220 + } + ], + "Archive": [ { - "filePath": "src/components/learner-credit-management/AssignmentStatusTableCell.jsx", - "line": 67, - "column": 9, - "index": 2434 + "filePath": "src/components/ContentHighlights/ContentHighlightCardItem.jsx", + "line": 81, + "column": 23, + "index": 2906 } ], - "Send": [ + "Card.Footer": [ { - "filePath": "src/components/learner-credit-management/assignments-status-chips/NotifyingLearner.jsx", - "line": 15, - "column": 20, - "index": 436 + "filePath": "src/components/ContentHighlights/ContentHighlightCardItem.jsx", + "line": 89, + "column": 10, + "index": 3231 }, { - "filePath": "src/components/learner-credit-management/assignments-status-chips/NotifyingLearner.jsx", - "line": 27, - "column": 38, - "index": 705 - } - ], - "Timelapse": [ + "filePath": "src/components/ContentHighlights/SkeletonContentCard.jsx", + "line": 8, + "column": 4, + "index": 234 + }, { - "filePath": "src/components/learner-credit-management/assignments-status-chips/WaitingForLearner.jsx", - "line": 18, - "column": 20, - "index": 571 + "filePath": "src/components/ContentHighlights/ZeroState/ZeroStateCardFooter.jsx", + "line": 6, + "column": 2, + "index": 172 }, { - "filePath": "src/components/learner-credit-management/assignments-status-chips/WaitingForLearner.jsx", - "line": 30, - "column": 38, - "index": 847 - } - ], - "DoNotDisturbOn": [ + "filePath": "src/components/learner-credit-management/AssignMoreCoursesEmptyStateMinimal.jsx", + "line": 54, + "column": 6, + "index": 2157 + }, { - "filePath": "src/components/learner-credit-management/AssignmentTableCancel.jsx", - "line": 46, - "column": 43, - "index": 1543 + "filePath": "src/components/learner-credit-management/cards/BaseCourseCard.jsx", + "line": 89, + "column": 8, + "index": 2953 }, { - "filePath": "src/components/learner-credit-management/PendingAssignmentCancelButton.jsx", + "filePath": "src/components/learner-credit-management/invite-modal/InviteModalPermissions.jsx", "line": 26, - "column": 13, - "index": 878 - } - ], - "Mail": [ + "column": 10, + "index": 914 + }, { - "filePath": "src/components/learner-credit-management/AssignmentTableRemind.jsx", - "line": 51, - "column": 20, - "index": 1868 + "filePath": "src/components/learner-credit-management/invite-modal/InviteModalPermissions.jsx", + "line": 35, + "column": 10, + "index": 1318 }, { - "filePath": "src/components/learner-credit-management/PendingAssignmentRemindButton.jsx", - "line": 26, - "column": 13, - "index": 864 - } - ], - "Card.Body": [ + "filePath": "src/components/learner-credit-management/invite-modal/InviteSummaryCount.jsx", + "line": 7, + "column": 4, + "index": 233 + }, { - "filePath": "src/components/learner-credit-management/AssignMoreCoursesEmptyStateMinimal.jsx", - "line": 28, + "filePath": "src/components/PeopleManagement/GroupDetailCard.jsx", + "line": 14, "column": 6, - "index": 969 + "index": 464 }, { - "filePath": "src/components/learner-credit-management/cards/BaseCourseCard.jsx", - "line": 50, - "column": 6, - "index": 1222 + "filePath": "src/components/PeopleManagement/GroupDetailPage.jsx", + "line": 97, + "column": 12, + "index": 3473 }, { - "filePath": "src/components/learner-credit-management/SubBudgetCard.jsx", - "line": 113, + "filePath": "src/components/settings/SettingsApiCredentialsTab/ZeroStateCard.jsx", + "line": 98, "column": 6, - "index": 3339 + "index": 3975 }, { - "filePath": "src/components/subscriptions/SubscriptionCard.jsx", - "line": 126, + "filePath": "src/components/settings/SettingsAppearanceTab/ThemeCard.jsx", + "line": 29, "column": 6, - "index": 3373 - } - ], - "DataTable.FilterStatus": [ - { - "filePath": "src/components/learner-credit-management/BudgetAssignmentsTable.jsx", - "line": 15, - "column": 31, - "index": 841 + "index": 741 }, { - "filePath": "src/components/learner-credit-management/LearnerCreditAllocationTable.jsx", - "line": 15, - "column": 31, - "index": 465 - } - ], - "Breadcrumb": [ - { - "filePath": "src/components/learner-credit-management/BudgetDetailPageBreadcrumbs.jsx", - "line": 10, - "column": 4, - "index": 361 + "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", + "line": 379, + "column": 8, + "index": 13840 }, { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", - "line": 220, - "column": 10, - "index": 7315 - } - ], - "ProgressBar": [ + "filePath": "src/components/settings/SettingsLMSTab/NoConfigCard.jsx", + "line": 43, + "column": 8, + "index": 1661 + }, { - "filePath": "src/components/learner-credit-management/BudgetDetailPageOverviewAvailability.jsx", - "line": 26, + "filePath": "src/components/settings/SettingsLMSTab/NoConfigCard.jsx", + "line": 54, "column": 8, - "index": 1048 + "index": 2162 + }, + { + "filePath": "src/components/settings/SettingsSSOTab/NoSSOCard.jsx", + "line": 46, + "column": 6, + "index": 1685 } ], - "useMediaQuery": [ + "CardGrid": [ { - "filePath": "src/components/learner-credit-management/BudgetDetailPageOverviewAvailability.jsx", - "line": 45, - "column": 33, - "index": 1628 + "filePath": "src/components/ContentHighlights/ContentHighlightsCardItemsContainer.jsx", + "line": 74, + "column": 6, + "index": 2472 }, { - "filePath": "src/components/learner-credit-management/cards/BaseCourseCard.jsx", - "line": 22, - "column": 18, - "index": 479 + "filePath": "src/components/ContentHighlights/ContentHighlightsCardItemsContainer.jsx", + "line": 133, + "column": 10, + "index": 4917 }, { - "filePath": "src/components/learner-credit-management/cards/BaseCourseCard.jsx", - "line": 23, - "column": 23, - "index": 559 + "filePath": "src/components/ContentHighlights/HighlightSetSection.jsx", + "line": 36, + "column": 6, + "index": 1140 }, { - "filePath": "src/components/learner-credit-management/data/hooks/useIsLargeOrGreater.js", - "line": 3, - "column": 34, - "index": 94 - } - ], - "ArrowDownward": [ + "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperConfirmContent.jsx", + "line": 50, + "column": 4, + "index": 1556 + }, { - "filePath": "src/components/learner-credit-management/BudgetDetailPageOverviewUtilization.jsx", - "line": 40, - "column": 19, - "index": 1022 - } - ], - "Collapsible": [ + "filePath": "src/components/ContentHighlights/SkeletonContentCardContainer.jsx", + "line": 8, + "column": 2, + "index": 319 + }, { - "filePath": "src/components/learner-credit-management/BudgetDetailPageOverviewUtilization.jsx", - "line": 54, - "column": 4, - "index": 1326 + "filePath": "src/components/PeopleManagement/GroupCardGrid.jsx", + "line": 20, + "column": 6, + "index": 577 }, { - "filePath": "src/components/learner-credit-management/cards/AssignmentAllocationHelpCollapsibles.jsx", - "line": 11, - "column": 4, - "index": 436 + "filePath": "src/components/PeopleManagement/GroupCardGrid.jsx", + "line": 37, + "column": 10, + "index": 979 }, { - "filePath": "src/components/learner-credit-management/cards/AssignmentAllocationHelpCollapsibles.jsx", - "line": 36, - "column": 4, - "index": 1312 + "filePath": "src/components/settings/SettingsAppearanceTab/index.jsx", + "line": 178, + "column": 6, + "index": 6831 }, { - "filePath": "src/components/learner-credit-management/cards/AssignmentAllocationHelpCollapsibles.jsx", + "filePath": "src/components/settings/SettingsLMSTab/ExistingLMSCardDeck.jsx", "line": 60, - "column": 4, - "index": 2151 + "column": 8, + "index": 1947 }, { - "filePath": "src/components/ReportingConfig/index.jsx", - "line": 141, - "column": 14, - "index": 4533 + "filePath": "src/components/settings/SettingsLMSTab/ExistingLMSCardDeck.jsx", + "line": 82, + "column": 8, + "index": 2508 }, { - "filePath": "src/components/ReportingConfig/index.jsx", - "line": 184, - "column": 10, - "index": 6242 + "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", + "line": 92, + "column": 6, + "index": 2762 }, { - "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessTabSection.jsx", - "line": 52, + "filePath": "src/components/settings/SettingsSSOTab/NewExistingSSOConfigs.jsx", + "line": 48, "column": 10, - "index": 1127 + "index": 2022 } ], - "ModalDialog.CloseButton": [ + "ActionRow.Spacer": [ { - "filePath": "src/components/learner-credit-management/CancelAssignmentModal.jsx", - "line": 47, - "column": 10, - "index": 1305 + "filePath": "src/components/ContentHighlights/ContentHighlightsCardItemsContainer.jsx", + "line": 117, + "column": 12, + "index": 4081 }, { - "filePath": "src/components/learner-credit-management/RemindAssignmentModal.jsx", - "line": 44, - "column": 10, - "index": 1302 + "filePath": "src/components/ContentHighlights/CurrentContentHighlightHeader.jsx", + "line": 84, + "column": 8, + "index": 2825 }, { - "filePath": "src/components/settings/SettingsApiCredentialsTab/RegenerateCredentialWarningModal.jsx", - "line": 76, - "column": 12, - "index": 2241 + "filePath": "src/components/ContentHighlights/CurrentContentHighlightItemsHeader.jsx", + "line": 12, + "column": 8, + "index": 436 }, { - "filePath": "src/components/settings/SettingsSSOTab/index.jsx", - "line": 91, - "column": 14, - "index": 3793 + "filePath": "src/components/ContentHighlights/CurrentContentHighlightItemsHeader.jsx", + "line": 24, + "column": 8, + "index": 715 }, { - "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", - "line": 176, - "column": 10, - "index": 6290 + "filePath": "src/components/ContentHighlights/HighlightStepper/SelectContentSearchPagination.jsx", + "line": 13, + "column": 4, + "index": 329 }, { - "filePath": "src/components/subscriptions/expiration/SubscriptionExpiredModal.jsx", - "line": 37, - "column": 10, - "index": 1305 + "filePath": "src/components/ContentHighlights/HighlightStepper/SelectContentSearchPagination.jsx", + "line": 19, + "column": 4, + "index": 503 }, { - "filePath": "src/components/subscriptions/expiration/SubscriptionExpiringModal.jsx", - "line": 58, - "column": 10, - "index": 1915 + "filePath": "src/components/learner-credit-management/assignment-modal/NewAssignmentModalButton.jsx", + "line": 269, + "column": 12, + "index": 10077 }, { - "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRemindModal.jsx", - "line": 211, - "column": 10, - "index": 6468 + "filePath": "src/components/learner-credit-management/invite-modal/InviteMembersModalWrapper.jsx", + "line": 112, + "column": 12, + "index": 4031 }, { - "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRevokeModal.jsx", - "line": 188, + "filePath": "src/components/PeopleManagement/CreateGroupModal.jsx", + "line": 89, + "column": 12, + "index": 2866 + }, + { + "filePath": "src/components/PeopleManagement/index.jsx", + "line": 73, "column": 10, - "index": 5517 - } - ], - "Person": [ + "index": 2958 + }, { - "filePath": "src/components/learner-credit-management/cards/AssignmentModalSummaryLearnerList.jsx", - "line": 35, - "column": 39, - "index": 1394 + "filePath": "src/components/settings/SettingsApiCredentialsTab/index.jsx", + "line": 51, + "column": 14, + "index": 1893 } ], - "ProgressBar.Annotated": [ + "FullscreenModal": [ { - "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", - "line": 87, - "column": 16, - "index": 2707 - } - ], - "IconButtonWithTooltip": [ + "filePath": "src/components/ContentHighlights/HighlightStepper/ContentHighlightStepper.jsx", + "line": 261, + "column": 8, + "index": 9855 + }, { - "filePath": "src/components/learner-credit-management/PendingAssignmentCancelButton.jsx", - "line": 21, + "filePath": "src/components/learner-credit-management/assignment-modal/NewAssignmentModalButton.jsx", + "line": 225, "column": 6, - "index": 684 + "index": 8430 }, { - "filePath": "src/components/learner-credit-management/PendingAssignmentRemindButton.jsx", - "line": 21, + "filePath": "src/components/learner-credit-management/invite-modal/InviteMembersModalWrapper.jsx", + "line": 95, "column": 6, - "index": 673 + "index": 3531 + }, + { + "filePath": "src/components/PeopleManagement/CreateGroupModal.jsx", + "line": 78, + "column": 6, + "index": 2458 + }, + { + "filePath": "src/components/settings/SettingsSSOTab/SsoErrorPage.jsx", + "line": 22, + "column": 4, + "index": 501 } ], - "Search": [ + "Stepper.Header": [ { - "filePath": "src/components/learner-credit-management/TableTextFilter.jsx", - "line": 28, - "column": 36, - "index": 691 + "filePath": "src/components/ContentHighlights/HighlightStepper/ContentHighlightStepper.jsx", + "line": 266, + "column": 26, + "index": 10064 + }, + { + "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", + "line": 137, + "column": 8, + "index": 5219 } ], - "FormControl.Feedback": [ + "Assignment": [ { - "filePath": "src/components/MultipleFileInputField/MultipleFileInputField.jsx", - "line": 87, + "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperConfirmContent.jsx", + "line": 145, + "column": 23, + "index": 4507 + } + ], + "AddCircle": [ + { + "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperSelectContentHeader.jsx", + "line": 13, + "column": 19, + "index": 559 + }, + { + "filePath": "src/components/settings/SettingsSSOTab/SSOConfigConfiguredCard.jsx", + "line": 110, "column": 25, - "index": 2536 + "index": 4079 + } + ], + "CardView": [ + { + "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperSelectContentSearch.jsx", + "line": 104, + "column": 8, + "index": 3414 }, { - "filePath": "src/components/MultipleFileInputField/MultipleFileInputField.jsx", - "line": 88, - "column": 19, - "index": 2633 + "filePath": "src/components/learner-credit-management/MultipleBudgetsPicker.jsx", + "line": 97, + "column": 8, + "index": 2664 }, { - "filePath": "src/components/ReduxFormSelect/index.jsx", + "filePath": "src/components/learner-credit-management/search/CatalogSearchResults.jsx", + "line": 100, + "column": 8, + "index": 2994 + } + ], + "EditCircle": [ + { + "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperTitle.jsx", "line": 15, - "column": 19, - "index": 545 + "column": 21, + "index": 455 + } + ], + "Pagination.Reduced": [ + { + "filePath": "src/components/ContentHighlights/HighlightStepper/SelectContentSearchPagination.jsx", + "line": 14, + "column": 4, + "index": 354 + } + ], + "FileDownload": [ + { + "filePath": "src/components/DownloadCsvButton/index.jsx", + "line": 39, + "column": 102, + "index": 1154 + } + ], + "MediaQuery": [ + { + "filePath": "src/components/EnterpriseApp/index.jsx", + "line": 127, + "column": 10, + "index": 3995 + } + ], + "breakpoints": [ + { + "filePath": "src/components/EnterpriseApp/index.jsx", + "line": 127, + "column": 32, + "index": 4017 }, { - "filePath": "src/components/RenderField/index.jsx", - "line": 31, - "column": 19, - "index": 667 + "filePath": "src/components/learner-credit-management/cards/BaseCourseCard.jsx", + "line": 21, + "column": 44, + "index": 673 }, { - "filePath": "src/components/TextAreaAutoSize/index.jsx", - "line": 31, - "column": 19, - "index": 670 + "filePath": "src/components/learner-credit-management/cards/BaseCourseCard.jsx", + "line": 22, + "column": 49, + "index": 753 + }, + { + "filePath": "src/components/learner-credit-management/data/hooks/useIsLargeOrGreater.js", + "line": 3, + "column": 72, + "index": 136 + }, + { + "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/index.jsx", + "line": 73, + "column": 53, + "index": 2939 + }, + { + "filePath": "src/components/subscriptions/tests/SubscriptionCard.test.jsx", + "line": 29, + "column": 40, + "index": 683 + }, + { + "filePath": "src/containers/EnterpriseApp/EnterpriseApp.test.jsx", + "line": 191, + "column": 26, + "index": 5555 + } + ], + "ErrorIcon": [ + { + "filePath": "src/components/ErrorPage/index.jsx", + "line": 35, + "column": 20, + "index": 908 + }, + { + "filePath": "src/components/InviteLearnersModal/index.jsx", + "line": 205, + "column": 16, + "index": 6764 } ], "Form.Text": [ + { + "filePath": "src/components/FileInput/index.jsx", + "line": 143, + "column": 8, + "index": 3586 + }, { "filePath": "src/components/MultipleFileInputField/MultipleFileInputField.jsx", "line": 89, "column": 22, - "index": 2724 + "index": 2732 }, { "filePath": "src/components/ReduxFormSelect/index.jsx", "line": 16, "column": 22, - "index": 636 + "index": 640 }, { "filePath": "src/components/RenderField/index.jsx", "line": 32, "column": 22, - "index": 758 + "index": 762 + }, + { + "filePath": "src/components/ReportingConfig/EmailDeliveryMethodForm.jsx", + "line": 34, + "column": 10, + "index": 1317 + }, + { + "filePath": "src/components/ReportingConfig/EmailDeliveryMethodForm.jsx", + "line": 85, + "column": 10, + "index": 3420 + }, + { + "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", + "line": 206, + "column": 26, + "index": 7228 + }, + { + "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", + "line": 238, + "column": 8, + "index": 8200 + }, + { + "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", + "line": 432, + "column": 10, + "index": 17402 + }, + { + "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", + "line": 476, + "column": 12, + "index": 19115 + }, + { + "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", + "line": 509, + "column": 12, + "index": 20652 + }, + { + "filePath": "src/components/ReportingConfig/SFTPDeliveryMethodForm.jsx", + "line": 30, + "column": 12, + "index": 1066 + }, + { + "filePath": "src/components/ReportingConfig/SFTPDeliveryMethodForm.jsx", + "line": 60, + "column": 12, + "index": 2310 + }, + { + "filePath": "src/components/ReportingConfig/SFTPDeliveryMethodForm.jsx", + "line": 98, + "column": 12, + "index": 3880 + }, + { + "filePath": "src/components/ReportingConfig/SFTPDeliveryMethodForm.jsx", + "line": 143, + "column": 12, + "index": 5748 + }, + { + "filePath": "src/components/ReportingConfig/SFTPDeliveryMethodForm.jsx", + "line": 177, + "column": 12, + "index": 7333 }, { "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", "line": 240, "column": 12, - "index": 8387 + "index": 8395 }, { "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", "line": 257, "column": 12, - "index": 9110 + "index": 9118 }, { "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", "line": 280, "column": 12, - "index": 10062 + "index": 10070 }, { "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", "line": 296, "column": 12, - "index": 10674 + "index": 10682 }, { "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", "line": 312, "column": 12, - "index": 11275 + "index": 11283 }, { "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", "line": 328, "column": 12, - "index": 11873 + "index": 11881 }, { "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", "line": 344, "column": 12, - "index": 12470 + "index": 12478 }, { "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", "line": 360, "column": 12, - "index": 13082 + "index": 13090 }, { "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", "line": 384, "column": 12, - "index": 13959 + "index": 13967 }, { "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", "line": 403, "column": 12, - "index": 14694 + "index": 14702 }, { "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", "line": 422, "column": 12, - "index": 15446 + "index": 15454 }, { "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", "line": 436, "column": 12, - "index": 15983 + "index": 15991 }, { "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", "line": 450, "column": 12, - "index": 16558 + "index": 16566 }, { "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", "line": 472, "column": 12, - "index": 17473 + "index": 17481 }, { "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", "line": 494, "column": 12, - "index": 18343 + "index": 18351 }, { "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", "line": 510, "column": 12, - "index": 18947 + "index": 18955 }, { "filePath": "src/components/TextAreaAutoSize/index.jsx", "line": 32, "column": 22, - "index": 761 + "index": 765 } ], - "ProductTour": [ + "Dropdown": [ { - "filePath": "src/components/ProductTours/ProductTours.jsx", - "line": 70, + "filePath": "src/components/Header/index.jsx", + "line": 46, "column": 4, - "index": 2435 - } - ], - "Form": [ + "index": 1181 + }, { - "filePath": "src/components/ReduxFormCheckbox/index.jsx", - "line": 15, + "filePath": "src/components/learner-credit-management/assignment-modal/NewAssignmentModalDropdown.jsx", + "line": 48, "column": 4, - "index": 243 + "index": 1949 }, { - "filePath": "src/components/settings/SettingsAppearanceTab/CustomThemeModal.jsx", - "line": 82, - "column": 8, - "index": 3036 + "filePath": "src/components/learner-credit-management/FlexGroupDropdown.jsx", + "line": 32, + "column": 6, + "index": 861 }, { - "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRemindModal.jsx", - "line": 175, - "column": 8, - "index": 5249 + "filePath": "src/components/learner-credit-management/members-tab/LearnerCreditGroupMembersTable.jsx", + "line": 34, + "column": 6, + "index": 1520 }, { - "filePath": "src/components/subsidy-request-modals/ApproveCouponCodeRequestModal.jsx", - "line": 92, - "column": 6, - "index": 2612 + "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", + "line": 256, + "column": 12, + "index": 8485 }, { - "filePath": "src/components/subsidy-request-modals/ApproveLicenseRequestModal.jsx", - "line": 91, - "column": 6, - "index": 2750 - } - ], - "FormControl": [ + "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", + "line": 114, + "column": 16, + "index": 3288 + }, { - "filePath": "src/components/ReduxFormSelect/index.jsx", - "line": 12, - "column": 6, - "index": 352 + "filePath": "src/components/settings/SettingsSSOTab/NewSSOConfigCard.jsx", + "line": 219, + "column": 10, + "index": 7135 } ], - "Input": [ + "Dropdown.Toggle": [ { - "filePath": "src/components/ReportingConfig/EmailDeliveryMethodForm.jsx", - "line": 20, - "column": 10, - "index": 767 + "filePath": "src/components/Header/index.jsx", + "line": 47, + "column": 6, + "index": 1198 }, { - "filePath": "src/components/ReportingConfig/EmailDeliveryMethodForm.jsx", - "line": 36, - "column": 12, - "index": 1363 + "filePath": "src/components/learner-credit-management/assignment-modal/NewAssignmentModalDropdown.jsx", + "line": 55, + "column": 6, + "index": 2261 }, { - "filePath": "src/components/ReportingConfig/EmailDeliveryMethodForm.jsx", - "line": 52, - "column": 10, - "index": 1975 + "filePath": "src/components/learner-credit-management/FlexGroupDropdown.jsx", + "line": 34, + "column": 8, + "index": 960 }, { - "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 202, - "column": 12, - "index": 7129 + "filePath": "src/components/learner-credit-management/members-tab/LearnerCreditGroupMembersTable.jsx", + "line": 35, + "column": 8, + "index": 1550 }, { - "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 219, + "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", + "line": 257, "column": 14, - "index": 7822 + "index": 8510 }, { - "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 233, - "column": 14, - "index": 8458 + "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", + "line": 115, + "column": 18, + "index": 3317 }, { - "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 250, - "column": 14, - "index": 9216 + "filePath": "src/components/settings/SettingsSSOTab/NewSSOConfigCard.jsx", + "line": 220, + "column": 12, + "index": 7175 + } + ], + "AvatarButton": [ + { + "filePath": "src/components/Header/index.jsx", + "line": 48, + "column": 12, + "index": 1227 + } + ], + "Dropdown.Menu": [ + { + "filePath": "src/components/Header/index.jsx", + "line": 56, + "column": 6, + "index": 1409 }, { - "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 271, - "column": 14, - "index": 10210 + "filePath": "src/components/learner-credit-management/assignment-modal/NewAssignmentModalDropdown.jsx", + "line": 58, + "column": 6, + "index": 2402 }, { - "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 290, - "column": 14, - "index": 11047 + "filePath": "src/components/learner-credit-management/FlexGroupDropdown.jsx", + "line": 37, + "column": 8, + "index": 1128 }, { - "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 308, - "column": 14, - "index": 11768 + "filePath": "src/components/learner-credit-management/members-tab/LearnerCreditGroupMembersTable.jsx", + "line": 43, + "column": 8, + "index": 1768 }, { - "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 326, + "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", + "line": 266, "column": 14, - "index": 12604 + "index": 8856 }, { - "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 343, - "column": 10, - "index": 13242 + "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", + "line": 124, + "column": 18, + "index": 3699 }, { - "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 374, + "filePath": "src/components/settings/SettingsSSOTab/NewSSOConfigCard.jsx", + "line": 234, "column": 12, - "index": 14402 + "index": 7688 + } + ], + "Dropdown.Item": [ + { + "filePath": "src/components/Header/index.jsx", + "line": 57, + "column": 8, + "index": 1433 }, { - "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 390, - "column": 12, - "index": 15112 + "filePath": "src/components/learner-credit-management/assignment-modal/NewAssignmentModalDropdown.jsx", + "line": 63, + "column": 10, + "index": 2693 }, { - "filePath": "src/components/ReportingConfig/SFTPDeliveryMethodForm.jsx", - "line": 19, - "column": 12, - "index": 660 + "filePath": "src/components/learner-credit-management/members-tab/LearnerCreditGroupMembersTable.jsx", + "line": 44, + "column": 10, + "index": 1794 }, { - "filePath": "src/components/ReportingConfig/SFTPDeliveryMethodForm.jsx", - "line": 37, - "column": 12, - "index": 1303 + "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", + "line": 269, + "column": 20, + "index": 8984 }, { - "filePath": "src/components/ReportingConfig/SFTPDeliveryMethodForm.jsx", - "line": 56, - "column": 12, - "index": 1958 + "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", + "line": 283, + "column": 18, + "index": 9655 }, { - "filePath": "src/components/ReportingConfig/SFTPDeliveryMethodForm.jsx", - "line": 68, - "column": 14, - "index": 2396 + "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", + "line": 297, + "column": 18, + "index": 10316 }, { - "filePath": "src/components/ReportingConfig/SFTPDeliveryMethodForm.jsx", - "line": 84, - "column": 12, - "index": 3064 + "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", + "line": 312, + "column": 18, + "index": 11004 }, { - "filePath": "src/components/ReportingConfig/SFTPDeliveryMethodForm.jsx", - "line": 100, - "column": 12, - "index": 3658 - } - ], - "Download": [ + "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", + "line": 126, + "column": 20, + "index": 3802 + }, { - "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 423, - "column": 36, - "index": 16308 + "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", + "line": 133, + "column": 20, + "index": 4103 }, { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/DownloadCsvButton.jsx", - "line": 74, - "column": 30, - "index": 2122 + "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", + "line": 141, + "column": 22, + "index": 4430 }, { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/DownloadCsvButton.jsx", - "line": 77, - "column": 34, - "index": 2289 + "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", + "line": 158, + "column": 20, + "index": 5224 }, { - "filePath": "src/components/subscriptions/buttons/DownloadCsvButton.jsx", - "line": 51, - "column": 28, - "index": 1715 - } - ], - "SearchField": [ + "filePath": "src/components/settings/SettingsSSOTab/NewSSOConfigCard.jsx", + "line": 236, + "column": 16, + "index": 7750 + }, { - "filePath": "src/components/SearchBar/index.jsx", - "line": 6, - "column": 2, - "index": 139 + "filePath": "src/components/settings/SettingsSSOTab/NewSSOConfigCard.jsx", + "line": 248, + "column": 16, + "index": 8308 + }, + { + "filePath": "src/components/settings/SettingsSSOTab/NewSSOConfigCard.jsx", + "line": 260, + "column": 16, + "index": 8806 } ], - "Form.Switch": [ + "Navbar": [ { - "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessTabSection.jsx", - "line": 40, - "column": 8, - "index": 805 + "filePath": "src/components/Header/index.jsx", + "line": 88, + "column": 6, + "index": 2167 } ], - "ContentCopy": [ + "Nav": [ { - "filePath": "src/components/settings/SettingsApiCredentialsTab/CopyButton.jsx", - "line": 32, - "column": 19, - "index": 931 + "filePath": "src/components/Header/index.jsx", + "line": 89, + "column": 8, + "index": 2250 + }, + { + "filePath": "src/components/Header/index.jsx", + "line": 99, + "column": 10, + "index": 2595 } ], - "Dropzone": [ + "Nav.Link": [ { - "filePath": "src/components/settings/SettingsAppearanceTab/index.jsx", - "line": 115, - "column": 6, - "index": 4523 + "filePath": "src/components/Header/index.jsx", + "line": 91, + "column": 10, + "index": 2334 } ], - "Image": [ + "useWindowSize": [ { - "filePath": "src/components/settings/SettingsAppearanceTab/index.jsx", - "line": 130, - "column": 8, - "index": 4980 + "filePath": "src/components/IconWithTooltip/index.jsx", + "line": 10, + "column": 20, + "index": 350 }, { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", - "line": 233, - "column": 16, - "index": 7672 - }, + "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/index.jsx", + "line": 72, + "column": 20, + "index": 2869 + } + ], + "Tooltip": [ { - "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 228, - "column": 14, - "index": 7494 + "filePath": "src/components/IconWithTooltip/index.jsx", + "line": 18, + "column": 8, + "index": 587 }, { - "filePath": "src/components/settings/SettingsSSOTab/SsoErrorPage.jsx", - "line": 26, - "column": 8, - "index": 757 + "filePath": "src/components/InfoHover/index.jsx", + "line": 11, + "column": 13, + "index": 295 }, { - "filePath": "src/components/settings/SettingsSSOTab/SsoErrorPage.jsx", - "line": 34, - "column": 8, - "index": 966 - } - ], - "Card.Status": [ + "filePath": "src/components/learner-credit-management/BudgetStatusSubtitle.jsx", + "line": 108, + "column": 20, + "index": 4399 + }, { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", - "line": 97, + "filePath": "src/components/learner-credit-management/members-tab/MemberEnrollmentsTableColumnHeader.jsx", + "line": 24, "column": 8, - "index": 3695 + "index": 734 }, { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", - "line": 107, + "filePath": "src/components/learner-credit-management/members-tab/MemberStatusTableColumnHeader.jsx", + "line": 24, "column": 8, - "index": 4052 - } - ], - "Sync": [ + "index": 704 + }, { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", - "line": 97, - "column": 27, - "index": 3714 + "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessConfiguredSubsidyType.jsx", + "line": 27, + "column": 10, + "index": 797 }, { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", - "line": 107, - "column": 27, - "index": 4071 + "filePath": "src/components/settings/SettingsSSOTab/NewSSOConfigCard.jsx", + "line": 90, + "column": 12, + "index": 2917 }, { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/utils.jsx", - "line": 27, - "column": 34, - "index": 1117 + "filePath": "src/components/settings/SettingsSSOTab/NewSSOConfigCard.jsx", + "line": 110, + "column": 12, + "index": 3628 }, { - "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 267, - "column": 48, - "index": 9024 - } - ], - "MoreVert": [ + "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/LicenseManagementTableActionColumn.jsx", + "line": 115, + "column": 10, + "index": 3050 + }, { - "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 177, - "column": 21, - "index": 5598 + "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/LicenseManagementTableActionColumn.jsx", + "line": 136, + "column": 10, + "index": 3525 }, { - "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", - "line": 119, - "column": 25, - "index": 3527 + "filePath": "src/components/TemplateSourceFields/index.jsx", + "line": 120, + "column": 14, + "index": 3868 }, { - "filePath": "src/components/settings/SettingsSSOTab/NewSSOConfigCard.jsx", - "line": 187, - "column": 19, - "index": 5806 + "filePath": "src/components/TemplateSourceFields/index.jsx", + "line": 146, + "column": 14, + "index": 4933 } ], - "PlayCircleFilled": [ + "InfoOutline": [ { - "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", - "line": 129, - "column": 22, - "index": 3921 - } - ], - "RemoveCircle": [ + "filePath": "src/components/InfoHover/index.jsx", + "line": 13, + "column": 4, + "index": 360 + }, { - "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", - "line": 136, - "column": 22, - "index": 4223 + "filePath": "src/components/learner-credit-management/AssignmentEnrollByDateHeader.jsx", + "line": 29, + "column": 13, + "index": 1206 }, { - "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRevokeModal.jsx", - "line": 198, - "column": 34, - "index": 5922 + "filePath": "src/components/learner-credit-management/EmailAddressTableCell.jsx", + "line": 80, + "column": 15, + "index": 3264 }, { - "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/bulk-actions/RevokeBulkAction.jsx", - "line": 116, - "column": 20, - "index": 3566 + "filePath": "src/components/learner-credit-management/members-tab/MemberEnrollmentsTableColumnHeader.jsx", + "line": 35, + "column": 27, + "index": 1197 }, { - "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/LicenseManagementTableActionColumn.jsx", - "line": 144, - "column": 15, - "index": 3703 - } - ], - "Edit": [ + "filePath": "src/components/learner-credit-management/members-tab/MemberStatusTableColumnHeader.jsx", + "line": 35, + "column": 27, + "index": 1131 + }, { - "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", - "line": 161, - "column": 22, - "index": 5340 + "filePath": "src/components/settings/SettingsAppearanceTab/CustomThemeModal.jsx", + "line": 166, + "column": 21, + "index": 7009 } ], - "KeyOff": [ + "Collapsible": [ { - "filePath": "src/components/settings/SettingsSSOTab/NewSSOConfigCard.jsx", - "line": 75, - "column": 4, - "index": 2484 - } - ], - "Key": [ + "filePath": "src/components/learner-credit-management/assignment-modal/AssignmentAllocationHelpCollapsibles.jsx", + "line": 15, + "column": 6, + "index": 640 + }, { - "filePath": "src/components/settings/SettingsSSOTab/NewSSOConfigCard.jsx", - "line": 89, - "column": 10, - "index": 2913 - } - ], - "ArrowForward": [ + "filePath": "src/components/learner-credit-management/assignment-modal/AssignmentAllocationHelpCollapsibles.jsx", + "line": 60, + "column": 6, + "index": 2599 + }, { - "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", - "line": 200, - "column": 18, - "index": 7549 + "filePath": "src/components/learner-credit-management/assignment-modal/AssignmentAllocationHelpCollapsibles.jsx", + "line": 98, + "column": 6, + "index": 4366 }, { - "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", - "line": 214, - "column": 14, - "index": 8095 + "filePath": "src/components/learner-credit-management/BudgetDetailPageOverviewUtilization.jsx", + "line": 85, + "column": 4, + "index": 2610 }, { - "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", - "line": 236, - "column": 14, - "index": 8822 - } - ], - "ArrowBack": [ + "filePath": "src/components/learner-credit-management/invite-modal/InviteModalMembershipInfo.jsx", + "line": 35, + "column": 6, + "index": 1325 + }, { - "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", - "line": 206, - "column": 14, - "index": 7793 + "filePath": "src/components/learner-credit-management/invite-modal/InviteModalMembershipInfo.jsx", + "line": 51, + "column": 6, + "index": 1991 }, { - "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", - "line": 220, - "column": 14, - "index": 8345 + "filePath": "src/components/learner-credit-management/invite-modal/InviteModalMembershipInfo.jsx", + "line": 69, + "column": 6, + "index": 2767 }, { - "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", - "line": 241, + "filePath": "src/components/PeopleManagement/GroupCardGrid.jsx", + "line": 33, + "column": 8, + "index": 867 + }, + { + "filePath": "src/components/ReportingConfig/index.jsx", + "line": 142, "column": 14, - "index": 9063 - } - ], - "Bubble": [ + "index": 4660 + }, { - "filePath": "src/components/Sidebar/IconLink.jsx", - "line": 54, + "filePath": "src/components/ReportingConfig/index.jsx", + "line": 203, "column": 10, - "index": 1537 - } - ], - "School": [ - { - "filePath": "src/components/Sidebar/IconLink.test.jsx", - "line": 31, - "column": 23, - "index": 886 + "index": 7266 }, { - "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 + "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessTabSection.jsx", + "line": 57, + "column": 10, + "index": 1375 } ], - "InsertChartOutlined": [ + "Calendar": [ { - "filePath": "src/components/Sidebar/index.jsx", - "line": 78, - "column": 23, - "index": 2530 + "filePath": "src/components/learner-credit-management/assignment-modal/AssignmentModalmportantDates.jsx", + "line": 37, + "column": 25, + "index": 1501 } ], - "Tag": [ + "Person": [ { - "filePath": "src/components/Sidebar/index.jsx", - "line": 84, - "column": 23, - "index": 2744 - } - ], - "CreditCard": [ + "filePath": "src/components/learner-credit-management/assignment-modal/AssignmentModalSummaryLearnerList.jsx", + "line": 43, + "column": 39, + "index": 1919 + }, { - "filePath": "src/components/Sidebar/index.jsx", - "line": 91, - "column": 23, - "index": 3026 - } - ], - "MoneyOutline": [ + "filePath": "src/components/learner-credit-management/invite-modal/InviteModalSummaryLearnerList.jsx", + "line": 34, + "column": 39, + "index": 1391 + }, { - "filePath": "src/components/Sidebar/index.jsx", - "line": 99, - "column": 23, - "index": 3335 - } - ], - "Description": [ + "filePath": "src/components/learner-credit-management/members-tab/MemberDetailsTableCell.jsx", + "line": 19, + "column": 11, + "index": 401 + }, { - "filePath": "src/components/Sidebar/index.jsx", - "line": 112, - "column": 23, - "index": 3799 - } - ], - "Settings": [ + "filePath": "src/components/learner-credit-management/members-tab/MemberDetailsTableCell.jsx", + "line": 44, + "column": 13, + "index": 1209 + }, { "filePath": "src/components/Sidebar/index.jsx", - "line": 119, + "line": 158, "column": 23, - "index": 4054 + "index": 5621 } ], - "Support": [ + "Dropdown.Header": [ { - "filePath": "src/components/Sidebar/index.jsx", - "line": 125, - "column": 23, - "index": 4227 + "filePath": "src/components/learner-credit-management/assignment-modal/NewAssignmentModalDropdown.jsx", + "line": 59, + "column": 8, + "index": 2426 } ], - "Email": [ + "IconButtonWithTooltip": [ { - "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/bulk-actions/RemindBulkAction.jsx", - "line": 119, - "column": 20, - "index": 3571 + "filePath": "src/components/learner-credit-management/AssignmentEnrollByDateCell.jsx", + "line": 19, + "column": 4, + "index": 752 }, { - "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/LicenseManagementTableActionColumn.jsx", - "line": 123, - "column": 15, - "index": 3228 - } - ], - "ArrowBackIos": [ + "filePath": "src/components/learner-credit-management/AssignmentEnrollByDateHeader.jsx", + "line": 26, + "column": 6, + "index": 1062 + }, { - "filePath": "src/components/subscriptions/SubscriptionDetails.jsx", - "line": 40, - "column": 25, - "index": 1565 - } - ], - "ResponsiveContext.Provider": [ + "filePath": "src/components/learner-credit-management/PendingAssignmentCancelButton.jsx", + "line": 92, + "column": 6, + "index": 2412 + }, { - "filePath": "src/components/subscriptions/tests/SubscriptionCard.test.jsx", - "line": 52, + "filePath": "src/components/learner-credit-management/PendingAssignmentRemindButton.jsx", + "line": 92, "column": 6, - "index": 1507 + "index": 2422 + }, + { + "filePath": "src/components/PeopleManagement/GroupDetailPage.jsx", + "line": 101, + "column": 14, + "index": 3599 } ], - "PageBanner": [ + "ModalPopup": [ { - "filePath": "src/components/system-wide-banner/SystemWideWarningBanner.jsx", - "line": 7, + "filePath": "src/components/learner-credit-management/assignments-status-chips/BaseModalPopup.jsx", + "line": 33, "column": 2, - "index": 219 + "index": 741 } ], - "Table": [ - { - "filePath": "src/components/TableComponent/index.jsx", - "line": 92, - "column": 14, - "index": 2909 - } - ] - } - }, - { - "version": "20.46.2", - "name": "@edx/frontend-app-authn", - "repository": { - "type": "git", - "url": "git+https://github.com/openedx/frontend-app-authn.git" - }, - "folderName": "frontend-app-authn", - "usages": { - "Hyperlink": [ + "Chip": [ { - "filePath": "src/base-container/components/default-layout/LargeLayout.jsx", - "line": 16, - "column": 8, - "index": 427 + "filePath": "src/components/learner-credit-management/assignments-status-chips/FailedBadEmail.jsx", + "line": 31, + "column": 6, + "index": 1005 }, { - "filePath": "src/base-container/components/default-layout/MediumLayout.jsx", - "line": 18, - "column": 10, - "index": 509 + "filePath": "src/components/learner-credit-management/assignments-status-chips/FailedCancellation.jsx", + "line": 31, + "column": 6, + "index": 1023 }, { - "filePath": "src/base-container/components/default-layout/SmallLayout.jsx", - "line": 17, - "column": 8, - "index": 461 + "filePath": "src/components/learner-credit-management/assignments-status-chips/FailedRedemption.jsx", + "line": 33, + "column": 6, + "index": 1015 }, { - "filePath": "src/base-container/components/image-layout/ExtraSmallLayout.jsx", - "line": 17, + "filePath": "src/components/learner-credit-management/assignments-status-chips/FailedReminder.jsx", + "line": 30, "column": 6, - "index": 481 + "index": 1002 }, { - "filePath": "src/base-container/components/image-layout/LargeLayout.jsx", - "line": 18, + "filePath": "src/components/learner-credit-management/assignments-status-chips/FailedSystem.jsx", + "line": 32, "column": 6, - "index": 485 + "index": 994 }, { - "filePath": "src/base-container/components/image-layout/MediumLayout.jsx", - "line": 18, + "filePath": "src/components/learner-credit-management/assignments-status-chips/IncompleteAssignment.jsx", + "line": 34, "column": 6, - "index": 494 + "index": 1226 }, { - "filePath": "src/base-container/components/image-layout/SmallLayout.jsx", - "line": 17, + "filePath": "src/components/learner-credit-management/assignments-status-chips/NotifyingLearner.jsx", + "line": 24, "column": 6, - "index": 464 + "index": 743 }, { - "filePath": "src/base-container/components/welcome-page-layout/LargeLayout.jsx", - "line": 16, - "column": 8, - "index": 441 + "filePath": "src/components/learner-credit-management/assignments-status-chips/WaitingForLearner.jsx", + "line": 31, + "column": 6, + "index": 1072 }, { - "filePath": "src/base-container/components/welcome-page-layout/MediumLayout.jsx", - "line": 18, - "column": 10, - "index": 518 + "filePath": "src/components/learner-credit-management/AssignmentStatusTableCell.jsx", + "line": 135, + "column": 9, + "index": 4794 }, { - "filePath": "src/base-container/components/welcome-page-layout/SmallLayout.jsx", - "line": 16, + "filePath": "src/components/learner-credit-management/members-tab/status-chips/BaseStatusChip.jsx", + "line": 34, "column": 6, - "index": 460 - }, + "index": 1075 + } + ], + "Send": [ { - "filePath": "src/common-components/InstitutionLogistration.jsx", - "line": 59, - "column": 18, - "index": 1700 + "filePath": "src/components/learner-credit-management/assignments-status-chips/NotifyingLearner.jsx", + "line": 26, + "column": 20, + "index": 793 }, { - "filePath": "src/forgot-password/ForgotPasswordPage.jsx", - "line": 143, - "column": 14, - "index": 5059 - }, + "filePath": "src/components/learner-credit-management/assignments-status-chips/NotifyingLearner.jsx", + "line": 38, + "column": 38, + "index": 1098 + } + ], + "Timelapse": [ { - "filePath": "src/forgot-password/ForgotPasswordPage.jsx", - "line": 157, - "column": 16, - "index": 5643 + "filePath": "src/components/learner-credit-management/assignments-status-chips/WaitingForLearner.jsx", + "line": 33, + "column": 20, + "index": 1122 }, { - "filePath": "src/login/LoginFailure.jsx", - "line": 34, - "column": 4, - "index": 990 - }, + "filePath": "src/components/learner-credit-management/assignments-status-chips/WaitingForLearner.jsx", + "line": 45, + "column": 38, + "index": 1434 + } + ], + "DoNotDisturbOn": [ { - "filePath": "src/login/LoginFailure.jsx", - "line": 99, - "column": 8, - "index": 3283 + "filePath": "src/components/learner-credit-management/AssignmentTableCancel.jsx", + "line": 125, + "column": 43, + "index": 3579 }, { - "filePath": "src/login/LoginPage.jsx", - "line": 180, - "column": 10, - "index": 6037 + "filePath": "src/components/learner-credit-management/PendingAssignmentCancelButton.jsx", + "line": 97, + "column": 13, + "index": 2611 + } + ], + "Mail": [ + { + "filePath": "src/components/learner-credit-management/AssignmentTableRemind.jsx", + "line": 129, + "column": 20, + "index": 3920 }, { - "filePath": "src/progressive-profiling/ProgressiveProfiling.jsx", - "line": 238, - "column": 18, - "index": 8633 + "filePath": "src/components/learner-credit-management/PendingAssignmentRemindButton.jsx", + "line": 97, + "column": 13, + "index": 2618 + } + ], + "Card.Body": [ + { + "filePath": "src/components/learner-credit-management/AssignMoreCoursesEmptyStateMinimal.jsx", + "line": 29, + "column": 6, + "index": 1028 }, { - "filePath": "src/recommendations/ProductCard/BaseCard/index.jsx", - "line": 21, - "column": 4, - "index": 402 + "filePath": "src/components/learner-credit-management/cards/BaseCourseCard.jsx", + "line": 47, + "column": 6, + "index": 1330 }, { - "filePath": "src/recommendations/RecommendationsPage.jsx", - "line": 81, - "column": 10, - "index": 2853 + "filePath": "src/components/learner-credit-management/SubBudgetCard.jsx", + "line": 158, + "column": 6, + "index": 4683 }, { - "filePath": "src/register/RegistrationFields/HonorCodeField/HonorCode.jsx", - "line": 33, - "column": 14, - "index": 1284 + "filePath": "src/components/PeopleManagement/GroupDetailPage.jsx", + "line": 74, + "column": 12, + "index": 2620 }, { - "filePath": "src/register/RegistrationFields/HonorCodeField/HonorCode.jsx", - "line": 43, - "column": 14, - "index": 1652 + "filePath": "src/components/subscriptions/SubscriptionCard.jsx", + "line": 126, + "column": 6, + "index": 3377 + } + ], + "DataTable.FilterStatus": [ + { + "filePath": "src/components/learner-credit-management/BudgetAssignmentsTable.jsx", + "line": 22, + "column": 31, + "index": 1172 }, { - "filePath": "src/register/RegistrationFields/HonorCodeField/HonorCode.jsx", - "line": 75, - "column": 14, - "index": 2619 + "filePath": "src/components/learner-credit-management/LearnerCreditAllocationTable.jsx", + "line": 17, + "column": 31, + "index": 525 }, { - "filePath": "src/register/RegistrationFields/TermsOfServiceField/TermsOfService.jsx", - "line": 34, - "column": 14, - "index": 1121 + "filePath": "src/components/learner-credit-management/members-tab/LearnerCreditGroupMembersTable.jsx", + "line": 21, + "column": 31, + "index": 1132 } ], - "Image": [ + "ProgressBar": [ { - "filePath": "src/base-container/components/default-layout/LargeLayout.jsx", - "line": 17, - "column": 10, - "index": 499 + "filePath": "src/components/learner-credit-management/BudgetDetail.jsx", + "line": 39, + "column": 8, + "index": 1457 + } + ], + "Breadcrumb": [ + { + "filePath": "src/components/learner-credit-management/BudgetDetailPageBreadcrumbs.jsx", + "line": 37, + "column": 6, + "index": 1211 }, { - "filePath": "src/base-container/components/default-layout/MediumLayout.jsx", - "line": 19, - "column": 12, - "index": 583 + "filePath": "src/components/PeopleManagement/GroupDetailPage.jsx", + "line": 58, + "column": 10, + "index": 2003 }, { - "filePath": "src/base-container/components/default-layout/SmallLayout.jsx", - "line": 18, + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", + "line": 220, "column": 10, - "index": 533 + "index": 7322 + } + ], + "ArrowDownward": [ + { + "filePath": "src/components/learner-credit-management/BudgetDetailPageOverviewUtilization.jsx", + "line": 67, + "column": 19, + "index": 2173 + } + ], + "ManageAccounts": [ + { + "filePath": "src/components/learner-credit-management/BudgetStatusSubtitle.jsx", + "line": 36, + "column": 33, + "index": 1581 + } + ], + "GroupAdd": [ + { + "filePath": "src/components/learner-credit-management/BudgetStatusSubtitle.jsx", + "line": 59, + "column": 33, + "index": 2570 + } + ], + "useMediaQuery": [ + { + "filePath": "src/components/learner-credit-management/cards/BaseCourseCard.jsx", + "line": 21, + "column": 18, + "index": 647 }, { - "filePath": "src/base-container/components/image-layout/ExtraSmallLayout.jsx", + "filePath": "src/components/learner-credit-management/cards/BaseCourseCard.jsx", + "line": 22, + "column": 23, + "index": 727 + }, + { + "filePath": "src/components/learner-credit-management/data/hooks/useIsLargeOrGreater.js", + "line": 3, + "column": 34, + "index": 98 + } + ], + "MenuItem": [ + { + "filePath": "src/components/learner-credit-management/FlexGroupDropdown.jsx", + "line": 17, + "column": 4, + "index": 444 + } + ], + "Form": [ + { + "filePath": "src/components/learner-credit-management/FlexGroupDropdown.jsx", "line": 18, - "column": 8, - "index": 551 + "column": 10, + "index": 464 }, { - "filePath": "src/base-container/components/image-layout/LargeLayout.jsx", - "line": 19, - "column": 8, - "index": 555 + "filePath": "src/components/ReduxFormCheckbox/index.jsx", + "line": 15, + "column": 4, + "index": 247 }, { - "filePath": "src/base-container/components/image-layout/MediumLayout.jsx", - "line": 19, + "filePath": "src/components/settings/SettingsAppearanceTab/CustomThemeModal.jsx", + "line": 105, "column": 8, - "index": 564 + "index": 4228 }, { - "filePath": "src/base-container/components/image-layout/SmallLayout.jsx", - "line": 18, + "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRemindModal.jsx", + "line": 186, "column": 8, - "index": 534 + "index": 5908 }, { - "filePath": "src/base-container/components/welcome-page-layout/LargeLayout.jsx", - "line": 17, - "column": 10, - "index": 513 + "filePath": "src/components/subsidy-request-modals/ApproveCouponCodeRequestModal.jsx", + "line": 93, + "column": 6, + "index": 2670 }, { - "filePath": "src/base-container/components/welcome-page-layout/MediumLayout.jsx", - "line": 19, - "column": 12, - "index": 592 + "filePath": "src/components/subsidy-request-modals/ApproveLicenseRequestModal.jsx", + "line": 101, + "column": 6, + "index": 3115 + } + ], + "InsertDriveFile": [ + { + "filePath": "src/components/learner-credit-management/invite-modal/FileUpload.jsx", + "line": 16, + "column": 19, + "index": 583 + } + ], + "Dropzone": [ + { + "filePath": "src/components/learner-credit-management/invite-modal/FileUpload.jsx", + "line": 35, + "column": 6, + "index": 1148 }, { - "filePath": "src/base-container/components/welcome-page-layout/SmallLayout.jsx", - "line": 17, + "filePath": "src/components/settings/SettingsAppearanceTab/index.jsx", + "line": 139, "column": 8, - "index": 530 - }, + "index": 5538 + } + ], + "ProgressBar.Annotated": [ { - "filePath": "src/recommendations/RecommendationsPage.jsx", - "line": 82, - "column": 12, - "index": 2927 + "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", + "line": 87, + "column": 16, + "index": 2711 } ], - "breakpoints": [ + "RemoveCircle": [ { - "filePath": "src/base-container/index.jsx", - "line": 36, - "column": 30, - "index": 1428 + "filePath": "src/components/learner-credit-management/members-tab/bulk-actions/MemberRemoveAction.jsx", + "line": 25, + "column": 20, + "index": 761 }, { - "filePath": "src/base-container/index.jsx", - "line": 39, - "column": 30, - "index": 1618 + "filePath": "src/components/learner-credit-management/members-tab/bulk-actions/MemberRemoveModal.jsx", + "line": 211, + "column": 34, + "index": 8210 }, { - "filePath": "src/base-container/index.jsx", - "line": 39, - "column": 68, - "index": 1656 + "filePath": "src/components/learner-credit-management/members-tab/LearnerCreditGroupMembersTable.jsx", + "line": 45, + "column": 23, + "index": 1861 }, { - "filePath": "src/base-container/index.jsx", - "line": 42, - "column": 30, - "index": 1836 + "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", + "line": 136, + "column": 22, + "index": 4231 }, { - "filePath": "src/base-container/index.jsx", - "line": 42, - "column": 69, - "index": 1875 + "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRevokeModal.jsx", + "line": 238, + "column": 34, + "index": 7555 }, { - "filePath": "src/base-container/index.jsx", - "line": 45, - "column": 30, - "index": 2057 + "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/bulk-actions/RevokeBulkAction.jsx", + "line": 116, + "column": 20, + "index": 3574 }, { - "filePath": "src/base-container/index.jsx", - "line": 59, - "column": 30, - "index": 2512 - }, + "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/LicenseManagementTableActionColumn.jsx", + "line": 144, + "column": 15, + "index": 3711 + } + ], + "MoreVert": [ { - "filePath": "src/base-container/index.jsx", - "line": 62, - "column": 30, - "index": 2694 + "filePath": "src/components/learner-credit-management/members-tab/LearnerCreditGroupMembersTable.jsx", + "line": 39, + "column": 15, + "index": 1687 }, { - "filePath": "src/base-container/index.jsx", - "line": 62, - "column": 69, - "index": 2733 + "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", + "line": 261, + "column": 21, + "index": 8712 }, { - "filePath": "src/base-container/index.jsx", - "line": 65, - "column": 30, - "index": 2917 + "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", + "line": 119, + "column": 25, + "index": 3535 }, { - "filePath": "src/data/utils/useMobileResponsive.js", - "line": 13, - "column": 69, - "index": 523 + "filePath": "src/components/settings/SettingsSSOTab/NewSSOConfigCard.jsx", + "line": 224, + "column": 19, + "index": 7354 + } + ], + "Form.Switch": [ + { + "filePath": "src/components/learner-credit-management/members-tab/MembersTableSwitchFilter.jsx", + "line": 12, + "column": 4, + "index": 472 }, { - "filePath": "src/recommendations/RecommendationsPage.jsx", - "line": 27, - "column": 49, - "index": 1038 + "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessTabSection.jsx", + "line": 41, + "column": 8, + "index": 873 } ], - "Form": [ + "Search": [ { - "filePath": "src/common-components/EnterpriseSSO.jsx", - "line": 40, - "column": 12, - "index": 1207 - }, + "filePath": "src/components/learner-credit-management/TableTextFilter.jsx", + "line": 28, + "column": 36, + "index": 699 + } + ], + "FormControl.Feedback": [ { - "filePath": "src/forgot-password/ForgotPasswordPage.jsx", - "line": 109, - "column": 10, - "index": 3535 + "filePath": "src/components/MultipleFileInputField/MultipleFileInputField.jsx", + "line": 87, + "column": 25, + "index": 2544 }, { - "filePath": "src/login/LoginPage.jsx", - "line": 255, - "column": 10, - "index": 8929 + "filePath": "src/components/MultipleFileInputField/MultipleFileInputField.jsx", + "line": 88, + "column": 19, + "index": 2641 }, { - "filePath": "src/progressive-profiling/ProgressiveProfiling.jsx", - "line": 234, - "column": 12, - "index": 8449 + "filePath": "src/components/ReduxFormSelect/index.jsx", + "line": 15, + "column": 19, + "index": 549 }, { - "filePath": "src/register/RegistrationPage.jsx", - "line": 308, - "column": 12, - "index": 10474 + "filePath": "src/components/RenderField/index.jsx", + "line": 31, + "column": 19, + "index": 671 }, { - "filePath": "src/reset-password/ResetPasswordPage.jsx", - "line": 161, - "column": 14, - "index": 5557 + "filePath": "src/components/TextAreaAutoSize/index.jsx", + "line": 31, + "column": 19, + "index": 674 } ], - "Button": [ - { - "filePath": "src/common-components/EnterpriseSSO.jsx", - "line": 42, - "column": 14, - "index": 1358 - }, + "RemoveCircleOutline": [ { - "filePath": "src/common-components/EnterpriseSSO.jsx", + "filePath": "src/components/PeopleManagement/DeleteGroupModal.jsx", "line": 70, - "column": 14, - "index": 2652 + "column": 115, + "index": 2483 + } + ], + "Edit": [ + { + "filePath": "src/components/PeopleManagement/GroupDetailPage.jsx", + "line": 81, + "column": 27, + "index": 2871 }, { - "filePath": "src/common-components/InstitutionLogistration.jsx", - "line": 18, + "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", + "line": 161, + "column": 22, + "index": 5348 + } + ], + "ProductTour": [ + { + "filePath": "src/components/ProductTours/ProductTours.jsx", + "line": 56, "column": 4, - "index": 495 - }, + "index": 2256 + } + ], + "FormControl": [ { - "filePath": "src/progressive-profiling/ProgressiveProfilingPageModal.jsx", - "line": 41, - "column": 10, - "index": 1082 - }, + "filePath": "src/components/ReduxFormSelect/index.jsx", + "line": 12, + "column": 6, + "index": 356 + } + ], + "SearchField": [ { - "filePath": "src/register/RegistrationFields/UsernameField/UsernameField.jsx", - "line": 107, - "column": 10, - "index": 3644 + "filePath": "src/components/SearchBar/index.jsx", + "line": 6, + "column": 2, + "index": 143 } ], - "Icon": [ + "ContentCopy": [ { - "filePath": "src/common-components/EnterpriseSSO.jsx", - "line": 62, - "column": 28, - "index": 2342 - }, + "filePath": "src/components/settings/SettingsApiCredentialsTab/CopyButton.jsx", + "line": 32, + "column": 19, + "index": 939 + } + ], + "Image": [ { - "filePath": "src/common-components/InstitutionLogistration.jsx", - "line": 24, - "column": 6, - "index": 663 + "filePath": "src/components/settings/SettingsAppearanceTab/index.jsx", + "line": 154, + "column": 10, + "index": 6023 }, { - "filePath": "src/common-components/PasswordField.jsx", - "line": 79, - "column": 14, - "index": 2567 + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", + "line": 233, + "column": 16, + "index": 7679 }, { - "filePath": "src/common-components/PasswordField.jsx", - "line": 93, + "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", + "line": 328, "column": 14, - "index": 2867 + "index": 11647 }, { - "filePath": "src/common-components/PasswordField.jsx", - "line": 105, - "column": 42, - "index": 3260 + "filePath": "src/components/settings/SettingsSSOTab/SsoErrorPage.jsx", + "line": 28, + "column": 8, + "index": 721 }, { - "filePath": "src/common-components/PasswordField.jsx", - "line": 105, - "column": 95, - "index": 3313 - }, + "filePath": "src/components/settings/SettingsSSOTab/SsoErrorPage.jsx", + "line": 40, + "column": 8, + "index": 1089 + } + ], + "Card.Status": [ { - "filePath": "src/common-components/PasswordField.jsx", - "line": 109, - "column": 42, - "index": 3541 + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", + "line": 97, + "column": 8, + "index": 3702 }, { - "filePath": "src/common-components/PasswordField.jsx", - "line": 109, - "column": 95, - "index": 3594 - }, + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", + "line": 107, + "column": 8, + "index": 4059 + } + ], + "Sync": [ { - "filePath": "src/common-components/PasswordField.jsx", - "line": 113, - "column": 35, - "index": 3819 + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", + "line": 97, + "column": 27, + "index": 3721 }, { - "filePath": "src/common-components/PasswordField.jsx", - "line": 113, - "column": 88, - "index": 3872 - }, - { - "filePath": "src/common-components/SocialAuthProviders.jsx", - "line": 43, - "column": 16, - "index": 1535 - }, - { - "filePath": "src/field-renderer/FieldRenderer.jsx", - "line": 35, - "column": 29, - "index": 1003 - }, - { - "filePath": "src/forgot-password/ForgotPasswordPage.jsx", - "line": 92, - "column": 6, - "index": 2955 - }, - { - "filePath": "src/login/LoginPage.jsx", - "line": 181, - "column": 12, - "index": 6155 - }, - { - "filePath": "src/logistration/Logistration.jsx", - "line": 79, - "column": 6, - "index": 2751 - }, - { - "filePath": "src/register/RegistrationFields/EmailField/EmailField.jsx", - "line": 95, - "column": 12, - "index": 2964 - }, - { - "filePath": "src/register/RegistrationFields/UsernameField/UsernameField.jsx", - "line": 126, - "column": 49, - "index": 4255 + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", + "line": 107, + "column": 27, + "index": 4078 }, { - "filePath": "src/register/RegistrationFields/UsernameField/UsernameField.jsx", - "line": 130, - "column": 49, - "index": 4627 + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/utils.jsx", + "line": 27, + "column": 34, + "index": 1125 }, { - "filePath": "src/reset-password/ResetPasswordPage.jsx", - "line": 130, - "column": 6, - "index": 4235 + "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", + "line": 383, + "column": 48, + "index": 14054 } ], - "Login": [ - { - "filePath": "src/common-components/EnterpriseSSO.jsx", - "line": 62, - "column": 56, - "index": 2370 - }, + "PlayCircleFilled": [ { - "filePath": "src/common-components/SocialAuthProviders.jsx", - "line": 43, - "column": 44, - "index": 1563 + "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", + "line": 129, + "column": 22, + "index": 3929 } ], - "Form.Group": [ - { - "filePath": "src/common-components/FormGroup.jsx", - "line": 24, - "column": 4, - "index": 550 - }, + "KeyOff": [ { - "filePath": "src/common-components/PasswordField.jsx", - "line": 120, + "filePath": "src/components/settings/SettingsSSOTab/NewSSOConfigCard.jsx", + "line": 77, "column": 4, - "index": 4031 - }, + "index": 2591 + } + ], + "Key": [ { - "filePath": "src/field-renderer/FieldRenderer.jsx", - "line": 27, - "column": 8, - "index": 637 - }, + "filePath": "src/components/settings/SettingsSSOTab/NewSSOConfigCard.jsx", + "line": 99, + "column": 10, + "index": 3280 + } + ], + "ArrowForward": [ { - "filePath": "src/field-renderer/FieldRenderer.jsx", - "line": 56, - "column": 8, - "index": 1767 + "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", + "line": 200, + "column": 18, + "index": 7557 }, { - "filePath": "src/field-renderer/FieldRenderer.jsx", - "line": 79, - "column": 8, - "index": 2575 + "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", + "line": 214, + "column": 14, + "index": 8103 }, { - "filePath": "src/field-renderer/FieldRenderer.jsx", - "line": 101, - "column": 8, - "index": 3361 + "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", + "line": 236, + "column": 14, + "index": 8830 } ], - "Form.Control": [ - { - "filePath": "src/common-components/FormGroup.jsx", - "line": 25, - "column": 6, - "index": 658 - }, - { - "filePath": "src/common-components/PasswordField.jsx", - "line": 122, - "column": 8, - "index": 4209 - }, + "ArrowBack": [ { - "filePath": "src/field-renderer/FieldRenderer.jsx", - "line": 28, - "column": 10, - "index": 730 + "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", + "line": 206, + "column": 14, + "index": 7801 }, { - "filePath": "src/field-renderer/FieldRenderer.jsx", - "line": 57, - "column": 10, - "index": 1860 + "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", + "line": 220, + "column": 14, + "index": 8353 }, { - "filePath": "src/field-renderer/FieldRenderer.jsx", - "line": 80, - "column": 10, - "index": 2668 + "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", + "line": 241, + "column": 14, + "index": 9071 } ], - "TransitionReplace": [ + "Bubble": [ { - "filePath": "src/common-components/FormGroup.jsx", - "line": 45, + "filePath": "src/components/Sidebar/IconLink.jsx", + "line": 52, "column": 6, - "index": 1330 + "index": 1448 } ], - "Institution": [ + "School": [ { - "filePath": "src/common-components/InstitutionLogistration.jsx", - "line": 24, - "column": 17, - "index": 674 + "filePath": "src/components/Sidebar/IconLink.test.jsx", + "line": 31, + "column": 23, + "index": 894 }, { - "filePath": "src/login/LoginPage.jsx", - "line": 181, + "filePath": "src/components/Sidebar/IconLink.test.jsx", + "line": 41, "column": 23, - "index": 6166 + "index": 1264 } ], - "useToggle": [ - { - "filePath": "src/common-components/PasswordField.jsx", - "line": 23, - "column": 60, - "index": 897 - }, + "TrendingUp": [ { - "filePath": "src/login/ChangePasswordPrompt.jsx", - "line": 30, - "column": 32, - "index": 1129 + "filePath": "src/components/Sidebar/index.jsx", + "line": 120, + "column": 23, + "index": 4310 } ], - "IconButton": [ - { - "filePath": "src/common-components/PasswordField.jsx", - "line": 74, - "column": 4, - "index": 2435 - }, - { - "filePath": "src/common-components/PasswordField.jsx", - "line": 88, - "column": 4, - "index": 2738 - }, + "InsertChartOutlined": [ { - "filePath": "src/register/RegistrationFields/UsernameField/UsernameField.jsx", - "line": 126, - "column": 17, - "index": 4223 + "filePath": "src/components/Sidebar/index.jsx", + "line": 125, + "column": 23, + "index": 4443 }, { - "filePath": "src/register/RegistrationFields/UsernameField/UsernameField.jsx", - "line": 130, - "column": 17, - "index": 4595 + "filePath": "src/components/Sidebar/index.jsx", + "line": 131, + "column": 23, + "index": 4650 } ], - "VisibilityOff": [ + "Tag": [ { - "filePath": "src/common-components/PasswordField.jsx", - "line": 78, - "column": 11, - "index": 2538 + "filePath": "src/components/Sidebar/index.jsx", + "line": 137, + "column": 23, + "index": 4841 } ], - "Visibility": [ + "CreditCard": [ { - "filePath": "src/common-components/PasswordField.jsx", - "line": 92, - "column": 11, - "index": 2841 + "filePath": "src/components/Sidebar/index.jsx", + "line": 144, + "column": 23, + "index": 5123 } ], - "Tooltip": [ + "MoneyOutline": [ { - "filePath": "src/common-components/PasswordField.jsx", - "line": 103, - "column": 4, - "index": 3098 + "filePath": "src/components/Sidebar/index.jsx", + "line": 152, + "column": 23, + "index": 5432 } ], - "Check": [ + "Description": [ { - "filePath": "src/common-components/PasswordField.jsx", - "line": 105, - "column": 83, - "index": 3301 - }, + "filePath": "src/components/Sidebar/index.jsx", + "line": 176, + "column": 23, + "index": 6313 + } + ], + "Settings": [ { - "filePath": "src/common-components/PasswordField.jsx", - "line": 109, - "column": 83, - "index": 3582 - }, + "filePath": "src/components/Sidebar/index.jsx", + "line": 183, + "column": 23, + "index": 6568 + } + ], + "Support": [ { - "filePath": "src/common-components/PasswordField.jsx", - "line": 113, - "column": 76, - "index": 3860 + "filePath": "src/components/Sidebar/index.jsx", + "line": 189, + "column": 23, + "index": 6741 } ], - "Remove": [ + "Email": [ { - "filePath": "src/common-components/PasswordField.jsx", - "line": 105, - "column": 138, - "index": 3356 + "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/bulk-actions/RemindBulkAction.jsx", + "line": 119, + "column": 20, + "index": 3579 }, { - "filePath": "src/common-components/PasswordField.jsx", - "line": 109, - "column": 138, - "index": 3637 - }, + "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/LicenseManagementTableActionColumn.jsx", + "line": 123, + "column": 15, + "index": 3236 + } + ], + "ArrowBackIos": [ { - "filePath": "src/common-components/PasswordField.jsx", - "line": 113, - "column": 131, - "index": 3915 + "filePath": "src/components/subscriptions/SubscriptionDetails.jsx", + "line": 41, + "column": 25, + "index": 1648 } ], - "OverlayTrigger": [ + "ResponsiveContext.Provider": [ { - "filePath": "src/common-components/PasswordField.jsx", - "line": 121, + "filePath": "src/components/subscriptions/tests/SubscriptionCard.test.jsx", + "line": 52, "column": 6, - "index": 4111 + "index": 1511 } ], - "Alert": [ + "PageBanner": [ { - "filePath": "src/common-components/ThirdPartyAuthAlert.jsx", - "line": 29, - "column": 6, - "index": 860 - }, + "filePath": "src/components/system-wide-banner/SystemWideWarningBanner.jsx", + "line": 7, + "column": 2, + "index": 227 + } + ], + "Table": [ { - "filePath": "src/forgot-password/ForgotPasswordAlert.jsx", - "line": 75, - "column": 6, - "index": 2907 + "filePath": "src/components/TableComponent/index.jsx", + "line": 95, + "column": 14, + "index": 3034 + } + ] + } + }, + { + "version": "22.10.0", + "name": "@edx/frontend-app-authn", + "repository": { + "type": "git", + "url": "git+https://github.com/openedx/frontend-app-authn.git" + }, + "folderName": "frontend-app-authn", + "usages": { + "Hyperlink": [ + { + "filePath": "src/base-container/components/default-layout/LargeLayout.jsx", + "line": 16, + "column": 8, + "index": 431 }, { - "filePath": "src/login/AccountActivationMessage.jsx", - "line": 60, - "column": 4, - "index": 2092 + "filePath": "src/base-container/components/default-layout/MediumLayout.jsx", + "line": 18, + "column": 10, + "index": 513 }, { - "filePath": "src/login/LoginFailure.jsx", - "line": 187, - "column": 4, - "index": 6408 + "filePath": "src/base-container/components/default-layout/SmallLayout.jsx", + "line": 17, + "column": 8, + "index": 465 }, { - "filePath": "src/progressive-profiling/ProgressiveProfiling.jsx", - "line": 229, - "column": 14, - "index": 8135 + "filePath": "src/base-container/components/image-layout/ExtraSmallLayout.jsx", + "line": 17, + "column": 6, + "index": 485 }, { - "filePath": "src/register/components/RegistrationFailure.jsx", - "line": 57, - "column": 4, - "index": 1665 + "filePath": "src/base-container/components/image-layout/LargeLayout.jsx", + "line": 18, + "column": 6, + "index": 489 }, { - "filePath": "src/register/RegistrationFields/EmailField/EmailField.jsx", - "line": 85, - "column": 8, - "index": 2542 + "filePath": "src/base-container/components/image-layout/MediumLayout.jsx", + "line": 18, + "column": 6, + "index": 498 }, { - "filePath": "src/reset-password/ResetPasswordFailure.jsx", - "line": 37, + "filePath": "src/base-container/components/image-layout/SmallLayout.jsx", + "line": 17, "column": 6, - "index": 1196 + "index": 468 }, { - "filePath": "src/reset-password/ResetPasswordSuccess.jsx", - "line": 12, - "column": 4, - "index": 250 - } - ], - "Alert.Heading": [ + "filePath": "src/base-container/components/welcome-page-layout/LargeLayout.jsx", + "line": 16, + "column": 8, + "index": 445 + }, { - "filePath": "src/common-components/ThirdPartyAuthAlert.jsx", - "line": 31, + "filePath": "src/base-container/components/welcome-page-layout/MediumLayout.jsx", + "line": 18, "column": 10, - "index": 1030 + "index": 522 }, { - "filePath": "src/forgot-password/ForgotPasswordAlert.jsx", - "line": 81, - "column": 8, - "index": 3113 + "filePath": "src/base-container/components/welcome-page-layout/SmallLayout.jsx", + "line": 16, + "column": 6, + "index": 464 }, { - "filePath": "src/login/AccountActivationMessage.jsx", - "line": 66, + "filePath": "src/common-components/InstitutionLogistration.jsx", + "line": 59, "column": 18, - "index": 2246 + "index": 1708 }, { - "filePath": "src/login/LoginFailure.jsx", - "line": 188, - "column": 6, - "index": 6494 + "filePath": "src/common-components/ThirdPartyAuth.jsx", + "line": 52, + "column": 8, + "index": 1752 }, { - "filePath": "src/progressive-profiling/ProgressiveProfiling.jsx", - "line": 230, + "filePath": "src/forgot-password/ForgotPasswordPage.jsx", + "line": 143, + "column": 14, + "index": 5067 + }, + { + "filePath": "src/forgot-password/ForgotPasswordPage.jsx", + "line": 157, "column": 16, - "index": 8226 + "index": 5651 }, { - "filePath": "src/register/components/RegistrationFailure.jsx", - "line": 58, - "column": 6, - "index": 1749 + "filePath": "src/login/LoginFailure.jsx", + "line": 46, + "column": 4, + "index": 1296 }, { - "filePath": "src/reset-password/ResetPasswordFailure.jsx", - "line": 38, + "filePath": "src/login/LoginFailure.jsx", + "line": 112, "column": 8, - "index": 1282 + "index": 3615 }, { - "filePath": "src/reset-password/ResetPasswordSuccess.jsx", - "line": 13, - "column": 6, - "index": 327 - } - ], - "ExpandMore": [ + "filePath": "src/progressive-profiling/ProgressiveProfiling.jsx", + "line": 239, + "column": 18, + "index": 8728 + }, { - "filePath": "src/field-renderer/FieldRenderer.jsx", - "line": 35, - "column": 40, - "index": 1014 - } - ], - "Form.Checkbox": [ + "filePath": "src/recommendations/ProductCard/BaseCard/index.jsx", + "line": 22, + "column": 4, + "index": 421 + }, { - "filePath": "src/field-renderer/FieldRenderer.jsx", - "line": 102, + "filePath": "src/recommendations/RecommendationsPage.jsx", + "line": 81, "column": 10, - "index": 3427 + "index": 2857 }, { "filePath": "src/register/RegistrationFields/HonorCodeField/HonorCode.jsx", - "line": 60, - "column": 6, - "index": 2077 + "line": 33, + "column": 14, + "index": 1288 }, { - "filePath": "src/register/RegistrationFields/TermsOfServiceField/TermsOfService.jsx", - "line": 18, - "column": 6, - "index": 497 - } - ], - "Alert.Link": [ - { - "filePath": "src/forgot-password/ForgotPasswordAlert.jsx", - "line": 39, + "filePath": "src/register/RegistrationFields/HonorCodeField/HonorCode.jsx", + "line": 43, "column": 14, - "index": 1520 + "index": 1656 }, { - "filePath": "src/login/AccountActivationMessage.jsx", - "line": 39, - "column": 8, - "index": 1435 + "filePath": "src/register/RegistrationFields/HonorCodeField/HonorCode.jsx", + "line": 75, + "column": 14, + "index": 2623 }, { - "filePath": "src/register/RegistrationFields/EmailField/EmailField.jsx", - "line": 88, - "column": 12, - "index": 2760 - }, - { - "filePath": "src/register/RegistrationFields/EmailField/EmailField.jsx", - "line": 103, - "column": 8, - "index": 3255 + "filePath": "src/register/RegistrationFields/TermsOfServiceField/TermsOfService.jsx", + "line": 34, + "column": 14, + "index": 1125 } ], - "ChevronLeft": [ + "Image": [ { - "filePath": "src/forgot-password/ForgotPasswordPage.jsx", - "line": 92, - "column": 17, - "index": 2966 + "filePath": "src/base-container/components/default-layout/LargeLayout.jsx", + "line": 17, + "column": 10, + "index": 503 }, { - "filePath": "src/logistration/Logistration.jsx", - "line": 79, - "column": 17, - "index": 2762 + "filePath": "src/base-container/components/default-layout/MediumLayout.jsx", + "line": 19, + "column": 12, + "index": 587 }, { - "filePath": "src/reset-password/ResetPasswordPage.jsx", - "line": 130, - "column": 17, - "index": 4246 - } - ], - "Tabs": [ + "filePath": "src/base-container/components/default-layout/SmallLayout.jsx", + "line": 18, + "column": 10, + "index": 537 + }, { - "filePath": "src/forgot-password/ForgotPasswordPage.jsx", - "line": 105, + "filePath": "src/base-container/components/image-layout/ExtraSmallLayout.jsx", + "line": 18, "column": 8, - "index": 3294 + "index": 555 }, { - "filePath": "src/logistration/Logistration.jsx", - "line": 100, - "column": 16, - "index": 3326 + "filePath": "src/base-container/components/image-layout/LargeLayout.jsx", + "line": 19, + "column": 8, + "index": 559 }, { - "filePath": "src/logistration/Logistration.jsx", - "line": 116, - "column": 18, - "index": 3996 + "filePath": "src/base-container/components/image-layout/MediumLayout.jsx", + "line": 19, + "column": 8, + "index": 568 }, { - "filePath": "src/logistration/Logistration.jsx", - "line": 121, - "column": 18, - "index": 4319 + "filePath": "src/base-container/components/image-layout/SmallLayout.jsx", + "line": 18, + "column": 8, + "index": 538 }, { - "filePath": "src/reset-password/ResetPasswordPage.jsx", - "line": 153, + "filePath": "src/base-container/components/welcome-page-layout/LargeLayout.jsx", + "line": 17, "column": 10, - "index": 5016 + "index": 517 + }, + { + "filePath": "src/base-container/components/welcome-page-layout/MediumLayout.jsx", + "line": 19, + "column": 12, + "index": 596 + }, + { + "filePath": "src/base-container/components/welcome-page-layout/SmallLayout.jsx", + "line": 17, + "column": 8, + "index": 534 + }, + { + "filePath": "src/recommendations/RecommendationsPage.jsx", + "line": 82, + "column": 12, + "index": 2931 } ], - "Tab": [ + "breakpoints": [ { - "filePath": "src/forgot-password/ForgotPasswordPage.jsx", - "line": 106, - "column": 10, - "index": 3405 + "filePath": "src/base-container/index.jsx", + "line": 21, + "column": 30, + "index": 815 }, { - "filePath": "src/logistration/Logistration.jsx", - "line": 101, - "column": 18, - "index": 3425 + "filePath": "src/base-container/index.jsx", + "line": 24, + "column": 30, + "index": 1005 }, { - "filePath": "src/logistration/Logistration.jsx", - "line": 117, - "column": 20, - "index": 4097 + "filePath": "src/base-container/index.jsx", + "line": 24, + "column": 68, + "index": 1043 }, { - "filePath": "src/logistration/Logistration.jsx", - "line": 122, - "column": 20, - "index": 4424 + "filePath": "src/base-container/index.jsx", + "line": 27, + "column": 30, + "index": 1223 }, { - "filePath": "src/logistration/Logistration.jsx", - "line": 123, - "column": 20, - "index": 4534 + "filePath": "src/base-container/index.jsx", + "line": 27, + "column": 69, + "index": 1262 }, { - "filePath": "src/reset-password/ResetPasswordPage.jsx", - "line": 154, - "column": 12, - "index": 5129 - } - ], - "StatefulButton": [ + "filePath": "src/base-container/index.jsx", + "line": 30, + "column": 30, + "index": 1444 + }, { - "filePath": "src/forgot-password/ForgotPasswordPage.jsx", - "line": 128, - "column": 12, - "index": 4480 + "filePath": "src/base-container/index.jsx", + "line": 44, + "column": 30, + "index": 1899 }, { - "filePath": "src/login/LoginPage.jsx", - "line": 277, - "column": 12, - "index": 10009 + "filePath": "src/base-container/index.jsx", + "line": 47, + "column": 30, + "index": 2081 }, { - "filePath": "src/progressive-profiling/ProgressiveProfiling.jsx", - "line": 251, - "column": 16, - "index": 9211 + "filePath": "src/base-container/index.jsx", + "line": 47, + "column": 69, + "index": 2120 }, { - "filePath": "src/progressive-profiling/ProgressiveProfiling.jsx", - "line": 263, - "column": 16, - "index": 9769 + "filePath": "src/base-container/index.jsx", + "line": 50, + "column": 30, + "index": 2304 + }, + { + "filePath": "src/data/utils/useMobileResponsive.js", + "line": 13, + "column": 69, + "index": 527 }, { "filePath": "src/recommendations/RecommendationsPage.jsx", + "line": 27, + "column": 49, + "index": 1042 + } + ], + "Form": [ + { + "filePath": "src/common-components/EnterpriseSSO.jsx", + "line": 40, + "column": 12, + "index": 1215 + }, + { + "filePath": "src/forgot-password/ForgotPasswordPage.jsx", "line": 109, - "column": 16, - "index": 3993 + "column": 10, + "index": 3543 + }, + { + "filePath": "src/login/LoginPage.jsx", + "line": 226, + "column": 8, + "index": 6874 + }, + { + "filePath": "src/progressive-profiling/ProgressiveProfiling.jsx", + "line": 235, + "column": 12, + "index": 8544 }, { "filePath": "src/register/RegistrationPage.jsx", - "line": 358, - "column": 14, - "index": 12910 + "line": 310, + "column": 12, + "index": 11710 }, { "filePath": "src/reset-password/ResetPasswordPage.jsx", - "line": 180, - "column": 16, - "index": 6489 + "line": 161, + "column": 14, + "index": 5565 } ], - "ModalDialog": [ + "Button": [ { - "filePath": "src/login/ChangePasswordPrompt.jsx", - "line": 41, + "filePath": "src/common-components/EnterpriseSSO.jsx", + "line": 42, + "column": 14, + "index": 1366 + }, + { + "filePath": "src/common-components/EnterpriseSSO.jsx", + "line": 70, + "column": 14, + "index": 2660 + }, + { + "filePath": "src/common-components/InstitutionLogistration.jsx", + "line": 18, "column": 4, - "index": 1413 + "index": 503 }, { "filePath": "src/progressive-profiling/ProgressiveProfilingPageModal.jsx", - "line": 21, - "column": 4, - "index": 566 + "line": 41, + "column": 10, + "index": 1086 + }, + { + "filePath": "src/register/RegistrationFields/UsernameField/UsernameField.jsx", + "line": 108, + "column": 10, + "index": 3740 } ], - "ModalDialog.Header": [ + "Icon": [ { - "filePath": "src/login/ChangePasswordPrompt.jsx", - "line": 48, - "column": 6, - "index": 1583 + "filePath": "src/common-components/EnterpriseSSO.jsx", + "line": 62, + "column": 28, + "index": 2350 }, { - "filePath": "src/progressive-profiling/ProgressiveProfilingPageModal.jsx", - "line": 29, + "filePath": "src/common-components/InstitutionLogistration.jsx", + "line": 24, "column": 6, - "index": 760 - } - ], - "ModalDialog.Title": [ + "index": 671 + }, { - "filePath": "src/login/ChangePasswordPrompt.jsx", - "line": 49, - "column": 8, - "index": 1612 + "filePath": "src/common-components/PasswordField.jsx", + "line": 79, + "column": 14, + "index": 2575 }, { - "filePath": "src/progressive-profiling/ProgressiveProfilingPageModal.jsx", - "line": 30, - "column": 8, - "index": 789 - } - ], - "ModalDialog.Body": [ + "filePath": "src/common-components/PasswordField.jsx", + "line": 93, + "column": 14, + "index": 2875 + }, { - "filePath": "src/login/ChangePasswordPrompt.jsx", - "line": 53, - "column": 6, - "index": 1769 + "filePath": "src/common-components/PasswordField.jsx", + "line": 105, + "column": 42, + "index": 3268 }, { - "filePath": "src/progressive-profiling/ProgressiveProfilingPageModal.jsx", - "line": 35, - "column": 6, - "index": 924 - } - ], - "ModalDialog.Footer": [ + "filePath": "src/common-components/PasswordField.jsx", + "line": 105, + "column": 95, + "index": 3321 + }, { - "filePath": "src/login/ChangePasswordPrompt.jsx", - "line": 56, - "column": 6, - "index": 1891 + "filePath": "src/common-components/PasswordField.jsx", + "line": 109, + "column": 42, + "index": 3549 }, { - "filePath": "src/progressive-profiling/ProgressiveProfilingPageModal.jsx", - "line": 39, - "column": 6, - "index": 1031 - } - ], - "ActionRow": [ + "filePath": "src/common-components/PasswordField.jsx", + "line": 109, + "column": 95, + "index": 3602 + }, { - "filePath": "src/login/ChangePasswordPrompt.jsx", - "line": 57, - "column": 8, - "index": 1920 + "filePath": "src/common-components/PasswordField.jsx", + "line": 113, + "column": 35, + "index": 3827 }, { - "filePath": "src/progressive-profiling/ProgressiveProfilingPageModal.jsx", - "line": 40, - "column": 8, - "index": 1060 - } - ], - "ModalDialog.CloseButton": [ + "filePath": "src/common-components/PasswordField.jsx", + "line": 113, + "column": 88, + "index": 3880 + }, { - "filePath": "src/login/ChangePasswordPrompt.jsx", - "line": 62, - "column": 12, - "index": 2072 - } - ], - "Error": [ + "filePath": "src/common-components/SocialAuthProviders.jsx", + "line": 43, + "column": 16, + "index": 1543 + }, { - "filePath": "src/login/LoginFailure.jsx", - "line": 187, - "column": 76, - "index": 6480 + "filePath": "src/common-components/ThirdPartyAuth.jsx", + "line": 60, + "column": 10, + "index": 2055 }, { - "filePath": "src/progressive-profiling/ProgressiveProfiling.jsx", - "line": 229, - "column": 81, - "index": 8202 + "filePath": "src/field-renderer/FieldRenderer.jsx", + "line": 35, + "column": 29, + "index": 1011 }, { - "filePath": "src/register/components/RegistrationFailure.jsx", - "line": 57, - "column": 74, - "index": 1735 + "filePath": "src/forgot-password/ForgotPasswordPage.jsx", + "line": 92, + "column": 6, + "index": 2963 }, { - "filePath": "src/register/RegistrationFields/EmailField/EmailField.jsx", + "filePath": "src/logistration/Logistration.jsx", "line": 85, - "column": 84, - "index": 2618 + "column": 6, + "index": 2955 }, { - "filePath": "src/reset-password/ResetPasswordFailure.jsx", - "line": 37, - "column": 76, - "index": 1266 - } - ], - "Spinner": [ + "filePath": "src/register/RegistrationFields/EmailField/EmailField.jsx", + "line": 94, + "column": 12, + "index": 3090 + }, { - "filePath": "src/progressive-profiling/ProgressiveProfiling.jsx", - "line": 222, - "column": 10, - "index": 7795 + "filePath": "src/register/RegistrationFields/UsernameField/UsernameField.jsx", + "line": 127, + "column": 49, + "index": 4351 }, { - "filePath": "src/register/RegistrationPage.jsx", - "line": 289, - "column": 12, - "index": 9779 + "filePath": "src/register/RegistrationFields/UsernameField/UsernameField.jsx", + "line": 131, + "column": 49, + "index": 4723 }, { "filePath": "src/reset-password/ResetPasswordPage.jsx", - "line": 138, - "column": 13, - "index": 4462 - } - ], - "Card": [ - { - "filePath": "src/recommendations/ProductCard/BaseCard/index.jsx", - "line": 27, + "line": 130, "column": 6, - "index": 533 - } - ], - "Card.ImageCap": [ - { - "filePath": "src/recommendations/ProductCard/BaseCard/index.jsx", - "line": 32, - "column": 8, - "index": 654 - } - ], - "Card.Header": [ - { - "filePath": "src/recommendations/ProductCard/BaseCard/index.jsx", - "line": 40, - "column": 8, - "index": 946 + "index": 4243 } ], - "Card.Section": [ + "Login": [ { - "filePath": "src/recommendations/ProductCard/BaseCard/index.jsx", - "line": 45, - "column": 8, - "index": 1095 - } - ], - "Badge": [ + "filePath": "src/common-components/EnterpriseSSO.jsx", + "line": 62, + "column": 56, + "index": 2378 + }, { - "filePath": "src/recommendations/ProductCard/BaseCard/index.jsx", - "line": 47, - "column": 12, - "index": 1183 + "filePath": "src/common-components/SocialAuthProviders.jsx", + "line": 43, + "column": 44, + "index": 1571 } ], - "useMediaQuery": [ + "Form.Group": [ { - "filePath": "src/recommendations/RecommendationsPage.jsx", - "line": 27, - "column": 23, - "index": 1012 + "filePath": "src/common-components/FormGroup.jsx", + "line": 24, + "column": 4, + "index": 554 }, { - "filePath": "src/recommendations/tests/RecommendationsPage.test.jsx", - "line": 105, + "filePath": "src/common-components/PasswordField.jsx", + "line": 120, "column": 4, - "index": 3273 + "index": 4039 }, { - "filePath": "src/recommendations/tests/RecommendationsPage.test.jsx", - "line": 117, - "column": 4, - "index": 3781 + "filePath": "src/field-renderer/FieldRenderer.jsx", + "line": 27, + "column": 8, + "index": 645 }, { - "filePath": "src/recommendations/tests/RecommendationsPage.test.jsx", - "line": 129, - "column": 4, - "index": 4264 + "filePath": "src/field-renderer/FieldRenderer.jsx", + "line": 56, + "column": 8, + "index": 1775 }, { - "filePath": "src/recommendations/tests/RecommendationsPage.test.jsx", - "line": 143, - "column": 4, - "index": 4746 + "filePath": "src/field-renderer/FieldRenderer.jsx", + "line": 79, + "column": 8, + "index": 2583 }, { - "filePath": "src/recommendations/tests/RecommendationsPage.test.jsx", - "line": 162, - "column": 4, - "index": 5326 + "filePath": "src/field-renderer/FieldRenderer.jsx", + "line": 101, + "column": 8, + "index": 3369 } ], - "Container": [ + "Form.Control": [ { - "filePath": "src/recommendations/RecommendationsPage.jsx", - "line": 86, - "column": 10, - "index": 3156 - } - ], - "Skeleton": [ + "filePath": "src/common-components/FormGroup.jsx", + "line": 25, + "column": 6, + "index": 662 + }, { - "filePath": "src/recommendations/RecommendationsPage.jsx", - "line": 106, - "column": 16, - "index": 3859 + "filePath": "src/common-components/PasswordField.jsx", + "line": 122, + "column": 8, + "index": 4217 }, { - "filePath": "src/recommendations/RecommendationsPageLayouts/LargeLayout.jsx", - "line": 22, - "column": 8, - "index": 553 + "filePath": "src/field-renderer/FieldRenderer.jsx", + "line": 28, + "column": 10, + "index": 738 }, { - "filePath": "src/recommendations/RecommendationsPageLayouts/SmallLayout.jsx", - "line": 22, - "column": 8, - "index": 553 + "filePath": "src/field-renderer/FieldRenderer.jsx", + "line": 57, + "column": 10, + "index": 1868 + }, + { + "filePath": "src/field-renderer/FieldRenderer.jsx", + "line": 80, + "column": 10, + "index": 2676 } ], - "FormAutosuggestOption": [ + "TransitionReplace": [ { - "filePath": "src/register/RegistrationFields/CountryField/CountryField.jsx", - "line": 86, - "column": 4, - "index": 3006 + "filePath": "src/common-components/FormGroup.jsx", + "line": 45, + "column": 6, + "index": 1334 } ], - "FormAutosuggest": [ + "Institution": [ { - "filePath": "src/register/RegistrationFields/CountryField/CountryField.jsx", - "line": 93, - "column": 6, - "index": 3179 + "filePath": "src/common-components/InstitutionLogistration.jsx", + "line": 24, + "column": 17, + "index": 682 + }, + { + "filePath": "src/common-components/ThirdPartyAuth.jsx", + "line": 60, + "column": 21, + "index": 2066 } ], - "FormControlFeedback": [ + "useToggle": [ { - "filePath": "src/register/RegistrationFields/CountryField/CountryField.jsx", - "line": 107, - "column": 8, - "index": 3755 + "filePath": "src/common-components/PasswordField.jsx", + "line": 23, + "column": 60, + "index": 905 + }, + { + "filePath": "src/login/ChangePasswordPrompt.jsx", + "line": 30, + "column": 32, + "index": 1133 } ], - "Close": [ + "IconButton": [ { - "filePath": "src/register/RegistrationFields/EmailField/EmailField.jsx", - "line": 95, - "column": 23, - "index": 2975 + "filePath": "src/common-components/PasswordField.jsx", + "line": 74, + "column": 4, + "index": 2443 + }, + { + "filePath": "src/common-components/PasswordField.jsx", + "line": 88, + "column": 4, + "index": 2746 }, { "filePath": "src/register/RegistrationFields/UsernameField/UsernameField.jsx", - "line": 126, - "column": 34, - "index": 4240 + "line": 127, + "column": 17, + "index": 4319 }, { "filePath": "src/register/RegistrationFields/UsernameField/UsernameField.jsx", - "line": 130, - "column": 34, - "index": 4612 + "line": 131, + "column": 17, + "index": 4691 } - ] - } - }, - { - "version": "20.46.2", - "name": "@edx/frontend-app-communications", - "repository": { - "type": "git", - "url": "git+https://github.com/edx/frontend-app-communications.git" - }, - "folderName": "frontend-app-communications", - "usages": { - "Form.Group": [ + ], + "VisibilityOff": [ { - "filePath": "src/components/bulk-email-tool/bulk-email-form/bulk-email-recipient/BulkEmailRecipient.jsx", - "line": 19, - "column": 4, - "index": 489 - }, + "filePath": "src/common-components/PasswordField.jsx", + "line": 78, + "column": 11, + "index": 2546 + } + ], + "Visibility": [ { - "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", - "line": 276, - "column": 8, - "index": 9676 - }, + "filePath": "src/common-components/PasswordField.jsx", + "line": 92, + "column": 11, + "index": 2849 + } + ], + "Tooltip": [ { - "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", - "line": 285, - "column": 8, - "index": 10225 + "filePath": "src/common-components/PasswordField.jsx", + "line": 103, + "column": 4, + "index": 3106 + } + ], + "Check": [ + { + "filePath": "src/common-components/PasswordField.jsx", + "line": 105, + "column": 83, + "index": 3309 }, { - "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", - "line": 297, - "column": 8, - "index": 10875 + "filePath": "src/common-components/PasswordField.jsx", + "line": 109, + "column": 83, + "index": 3590 }, { - "filePath": "src/components/bulk-email-tool/bulk-email-form/ScheduleEmailForm.jsx", - "line": 15, - "column": 4, - "index": 548 + "filePath": "src/common-components/PasswordField.jsx", + "line": 113, + "column": 76, + "index": 3868 } ], - "Form.Label": [ + "Remove": [ { - "filePath": "src/components/bulk-email-tool/bulk-email-form/bulk-email-recipient/BulkEmailRecipient.jsx", - "line": 20, - "column": 6, - "index": 508 + "filePath": "src/common-components/PasswordField.jsx", + "line": 105, + "column": 138, + "index": 3364 }, { - "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", - "line": 277, - "column": 10, - "index": 9724 + "filePath": "src/common-components/PasswordField.jsx", + "line": 109, + "column": 138, + "index": 3645 }, { - "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", - "line": 286, - "column": 10, - "index": 10270 + "filePath": "src/common-components/PasswordField.jsx", + "line": 113, + "column": 131, + "index": 3923 } ], - "Form.CheckboxSet": [ + "OverlayTrigger": [ { - "filePath": "src/components/bulk-email-tool/bulk-email-form/bulk-email-recipient/BulkEmailRecipient.jsx", - "line": 29, + "filePath": "src/common-components/PasswordField.jsx", + "line": 121, "column": 6, - "index": 816 + "index": 4119 } ], - "Form.Checkbox": [ + "Alert": [ { - "filePath": "src/components/bulk-email-tool/bulk-email-form/bulk-email-recipient/BulkEmailRecipient.jsx", - "line": 35, - "column": 8, - "index": 1010 + "filePath": "src/common-components/ThirdPartyAuthAlert.jsx", + "line": 29, + "column": 6, + "index": 864 }, { - "filePath": "src/components/bulk-email-tool/bulk-email-form/bulk-email-recipient/BulkEmailRecipient.jsx", - "line": 42, - "column": 8, - "index": 1351 + "filePath": "src/forgot-password/ForgotPasswordAlert.jsx", + "line": 75, + "column": 6, + "index": 2915 }, { - "filePath": "src/components/bulk-email-tool/bulk-email-form/bulk-email-recipient/BulkEmailRecipient.jsx", - "line": 53, - "column": 8, - "index": 1735 + "filePath": "src/login/AccountActivationMessage.jsx", + "line": 61, + "column": 4, + "index": 2119 }, { - "filePath": "src/components/bulk-email-tool/bulk-email-form/bulk-email-recipient/BulkEmailRecipient.jsx", - "line": 69, - "column": 12, - "index": 2376 + "filePath": "src/login/LoginFailure.jsx", + "line": 201, + "column": 4, + "index": 6768 }, { - "filePath": "src/components/bulk-email-tool/bulk-email-form/bulk-email-recipient/BulkEmailRecipient.jsx", - "line": 83, - "column": 8, - "index": 2868 + "filePath": "src/progressive-profiling/ProgressiveProfiling.jsx", + "line": 230, + "column": 14, + "index": 8230 }, { - "filePath": "src/components/bulk-email-tool/bulk-email-form/bulk-email-recipient/BulkEmailRecipient.jsx", - "line": 95, - "column": 8, - "index": 3362 + "filePath": "src/register/components/RegistrationFailure.jsx", + "line": 57, + "column": 4, + "index": 1673 }, { - "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", - "line": 300, - "column": 14, - "index": 10988 - } - ], - "useToggle": [ - { - "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", - "line": 60, - "column": 59, - "index": 2083 + "filePath": "src/register/RegistrationFields/EmailField/EmailField.jsx", + "line": 84, + "column": 8, + "index": 2668 }, { - "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/bulk-email-scheduled-emails-table/BulkEmailScheduledEmailsTable.jsx", - "line": 43, - "column": 68, - "index": 1591 - } - ], - "Form": [ - { - "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", - "line": 269, + "filePath": "src/reset-password/ResetPasswordFailure.jsx", + "line": 37, "column": 6, - "index": 9436 + "index": 1204 + }, + { + "filePath": "src/reset-password/ResetPasswordSuccess.jsx", + "line": 12, + "column": 4, + "index": 254 } ], - "Form.Control": [ + "Alert.Heading": [ { - "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", - "line": 278, + "filePath": "src/common-components/ThirdPartyAuthAlert.jsx", + "line": 31, "column": 10, - "index": 9844 + "index": 1034 }, { - "filePath": "src/components/bulk-email-tool/bulk-email-form/ScheduleEmailForm.jsx", - "line": 18, - "column": 10, - "index": 702 + "filePath": "src/forgot-password/ForgotPasswordAlert.jsx", + "line": 81, + "column": 8, + "index": 3121 }, { - "filePath": "src/components/bulk-email-tool/bulk-email-form/ScheduleEmailForm.jsx", - "line": 43, - "column": 10, - "index": 1565 - } - ], - "Button": [ - { - "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", - "line": 324, - "column": 32, - "index": 11920 + "filePath": "src/login/AccountActivationMessage.jsx", + "line": 67, + "column": 18, + "index": 2273 }, { - "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/BulkEmailContentHistory.jsx", - "line": 112, - "column": 10, - "index": 3836 + "filePath": "src/login/LoginFailure.jsx", + "line": 202, + "column": 6, + "index": 6854 }, { - "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/ViewEmailModal.jsx", - "line": 52, - "column": 12, - "index": 2104 + "filePath": "src/progressive-profiling/ProgressiveProfiling.jsx", + "line": 231, + "column": 16, + "index": 8321 }, { - "filePath": "src/components/bulk-email-tool/task-alert-modal/TaskAlertModal.jsx", - "line": 26, - "column": 10, - "index": 689 + "filePath": "src/register/components/RegistrationFailure.jsx", + "line": 58, + "column": 6, + "index": 1757 }, { - "filePath": "src/components/bulk-email-tool/task-alert-modal/TaskAlertModal.jsx", - "line": 33, - "column": 10, - "index": 969 + "filePath": "src/reset-password/ResetPasswordFailure.jsx", + "line": 38, + "column": 8, + "index": 1290 }, { - "filePath": "src/components/navigation-tabs/BackToInstructor.jsx", + "filePath": "src/reset-password/ResetPasswordSuccess.jsx", "line": 13, - "column": 4, - "index": 370 + "column": 6, + "index": 331 } ], - "StatefulButton": [ + "ExpandMore": [ { - "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", - "line": 325, - "column": 12, - "index": 12038 + "filePath": "src/field-renderer/FieldRenderer.jsx", + "line": 35, + "column": 40, + "index": 1022 } ], - "Icon": [ + "Form.Checkbox": [ { - "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", - "line": 334, - "column": 46, - "index": 12360 + "filePath": "src/field-renderer/FieldRenderer.jsx", + "line": 102, + "column": 10, + "index": 3435 }, { - "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", - "line": 335, - "column": 47, - "index": 12428 + "filePath": "src/register/RegistrationFields/HonorCodeField/HonorCode.jsx", + "line": 60, + "column": 6, + "index": 2081 }, { - "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", - "line": 336, - "column": 49, - "index": 12499 - }, + "filePath": "src/register/RegistrationFields/TermsOfServiceField/TermsOfService.jsx", + "line": 18, + "column": 6, + "index": 501 + } + ], + "Alert.Link": [ { - "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", - "line": 337, - "column": 46, - "index": 12567 + "filePath": "src/forgot-password/ForgotPasswordAlert.jsx", + "line": 39, + "column": 14, + "index": 1528 }, { - "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", - "line": 338, - "column": 47, - "index": 12666 + "filePath": "src/login/AccountActivationMessage.jsx", + "line": 40, + "column": 8, + "index": 1462 }, { - "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", - "line": 339, - "column": 56, - "index": 12744 + "filePath": "src/register/RegistrationFields/EmailField/EmailField.jsx", + "line": 87, + "column": 12, + "index": 2886 }, { - "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", - "line": 340, - "column": 44, - "index": 12810 + "filePath": "src/register/RegistrationFields/EmailField/EmailField.jsx", + "line": 102, + "column": 8, + "index": 3381 + } + ], + "ChevronLeft": [ + { + "filePath": "src/forgot-password/ForgotPasswordPage.jsx", + "line": 92, + "column": 17, + "index": 2974 }, { - "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/bulk-email-scheduled-emails-table/BulkEmailScheduledEmailsTable.jsx", - "line": 176, - "column": 55, - "index": 5687 + "filePath": "src/logistration/Logistration.jsx", + "line": 85, + "column": 17, + "index": 2966 }, { - "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/bulk-email-scheduled-emails-table/BulkEmailScheduledEmailsTable.jsx", - "line": 179, - "column": 28, - "index": 5835 + "filePath": "src/reset-password/ResetPasswordPage.jsx", + "line": 130, + "column": 17, + "index": 4254 + } + ], + "Tabs": [ + { + "filePath": "src/forgot-password/ForgotPasswordPage.jsx", + "line": 105, + "column": 8, + "index": 3302 }, { - "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/bulk-email-scheduled-emails-table/BulkEmailScheduledEmailsTable.jsx", - "line": 188, - "column": 49, - "index": 6188 + "filePath": "src/logistration/Logistration.jsx", + "line": 106, + "column": 16, + "index": 3530 }, { - "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/BulkEmailContentHistory.jsx", - "line": 150, - "column": 12, - "index": 5286 + "filePath": "src/logistration/Logistration.jsx", + "line": 122, + "column": 18, + "index": 4200 }, { - "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/BulkEmailTaskHistory.jsx", - "line": 104, - "column": 12, - "index": 3392 + "filePath": "src/logistration/Logistration.jsx", + "line": 127, + "column": 18, + "index": 4523 }, { - "filePath": "src/components/navigation-tabs/BackToInstructor.jsx", - "line": 18, - "column": 6, - "index": 556 + "filePath": "src/reset-password/ResetPasswordPage.jsx", + "line": 153, + "column": 10, + "index": 5024 } ], - "Send": [ + "Tab": [ { - "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", - "line": 334, - "column": 57, - "index": 12371 - } - ], - "Event": [ + "filePath": "src/forgot-password/ForgotPasswordPage.jsx", + "line": 106, + "column": 10, + "index": 3413 + }, { - "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", - "line": 335, - "column": 58, - "index": 12439 + "filePath": "src/logistration/Logistration.jsx", + "line": 107, + "column": 18, + "index": 3629 }, { - "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", - "line": 336, - "column": 60, - "index": 12510 - } - ], - "SpinnerSimple": [ + "filePath": "src/logistration/Logistration.jsx", + "line": 123, + "column": 20, + "index": 4301 + }, { - "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", - "line": 337, - "column": 57, - "index": 12578 + "filePath": "src/logistration/Logistration.jsx", + "line": 128, + "column": 20, + "index": 4662 }, { - "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/BulkEmailContentHistory.jsx", - "line": 150, - "column": 23, - "index": 5297 + "filePath": "src/logistration/Logistration.jsx", + "line": 129, + "column": 20, + "index": 4772 }, { - "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/BulkEmailTaskHistory.jsx", - "line": 104, - "column": 23, - "index": 3403 + "filePath": "src/reset-password/ResetPasswordPage.jsx", + "line": 154, + "column": 12, + "index": 5137 } ], - "Check": [ + "StatefulButton": [ { - "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", - "line": 338, - "column": 58, - "index": 12677 + "filePath": "src/forgot-password/ForgotPasswordPage.jsx", + "line": 128, + "column": 12, + "index": 4488 }, { - "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", - "line": 339, - "column": 67, - "index": 12755 - } - ], - "Cancel": [ - { - "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", - "line": 340, - "column": 55, - "index": 12821 - } - ], - "Toast": [ + "filePath": "src/login/LoginPage.jsx", + "line": 247, + "column": 10, + "index": 7704 + }, { - "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", - "line": 359, - "column": 12, - "index": 13907 - } - ], - "Alert": [ + "filePath": "src/progressive-profiling/ProgressiveProfiling.jsx", + "line": 252, + "column": 16, + "index": 9306 + }, { - "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/bulk-email-scheduled-emails-table/BulkEmailScheduledEmailsTable.jsx", - "line": 72, - "column": 8, - "index": 2444 + "filePath": "src/progressive-profiling/ProgressiveProfiling.jsx", + "line": 264, + "column": 16, + "index": 9864 }, { - "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/BulkEmailHistoryTable.jsx", - "line": 21, - "column": 6, - "index": 553 + "filePath": "src/recommendations/RecommendationsPage.jsx", + "line": 109, + "column": 16, + "index": 3997 }, { - "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/BulkEmailPendingTasksAlert.jsx", - "line": 13, - "column": 4, - "index": 388 - } - ], - "Info": [ + "filePath": "src/register/RegistrationPage.jsx", + "line": 362, + "column": 14, + "index": 14239 + }, { - "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/bulk-email-scheduled-emails-table/BulkEmailScheduledEmailsTable.jsx", - "line": 72, - "column": 38, - "index": 2474 + "filePath": "src/reset-password/ResetPasswordPage.jsx", + "line": 180, + "column": 16, + "index": 6497 } ], - "Alert.Heading": [ + "ModalDialog": [ { - "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/bulk-email-scheduled-emails-table/BulkEmailScheduledEmailsTable.jsx", - "line": 73, - "column": 10, - "index": 2491 + "filePath": "src/login/ChangePasswordPrompt.jsx", + "line": 41, + "column": 4, + "index": 1417 + }, + { + "filePath": "src/progressive-profiling/ProgressiveProfilingPageModal.jsx", + "line": 21, + "column": 4, + "index": 570 } ], - "DataTable": [ + "ModalDialog.Header": [ { - "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/bulk-email-scheduled-emails-table/BulkEmailScheduledEmailsTable.jsx", - "line": 138, - "column": 8, - "index": 4402 + "filePath": "src/login/ChangePasswordPrompt.jsx", + "line": 48, + "column": 6, + "index": 1587 }, { - "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/BulkEmailHistoryTable.jsx", - "line": 40, + "filePath": "src/progressive-profiling/ProgressiveProfilingPageModal.jsx", + "line": 29, "column": 6, - "index": 1087 + "index": 764 } ], - "IconButton": [ - { - "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/bulk-email-scheduled-emails-table/BulkEmailScheduledEmailsTable.jsx", - "line": 176, - "column": 18, - "index": 5650 - }, + "ModalDialog.Title": [ { - "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/bulk-email-scheduled-emails-table/BulkEmailScheduledEmailsTable.jsx", - "line": 177, - "column": 18, - "index": 5762 + "filePath": "src/login/ChangePasswordPrompt.jsx", + "line": 49, + "column": 8, + "index": 1616 }, { - "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/bulk-email-scheduled-emails-table/BulkEmailScheduledEmailsTable.jsx", - "line": 188, - "column": 18, - "index": 6157 + "filePath": "src/progressive-profiling/ProgressiveProfilingPageModal.jsx", + "line": 30, + "column": 8, + "index": 793 } ], - "Visibility": [ + "ModalDialog.Body": [ { - "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/bulk-email-scheduled-emails-table/BulkEmailScheduledEmailsTable.jsx", - "line": 176, - "column": 35, - "index": 5667 - } - ], - "Delete": [ + "filePath": "src/login/ChangePasswordPrompt.jsx", + "line": 53, + "column": 6, + "index": 1773 + }, { - "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/bulk-email-scheduled-emails-table/BulkEmailScheduledEmailsTable.jsx", - "line": 178, - "column": 25, - "index": 5799 + "filePath": "src/progressive-profiling/ProgressiveProfilingPageModal.jsx", + "line": 35, + "column": 6, + "index": 928 } ], - "Edit": [ + "ModalDialog.Footer": [ { - "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/bulk-email-scheduled-emails-table/BulkEmailScheduledEmailsTable.jsx", - "line": 188, - "column": 35, - "index": 6174 + "filePath": "src/login/ChangePasswordPrompt.jsx", + "line": 56, + "column": 6, + "index": 1895 + }, + { + "filePath": "src/progressive-profiling/ProgressiveProfilingPageModal.jsx", + "line": 39, + "column": 6, + "index": 1035 } ], - "Collapsible": [ + "ActionRow": [ { - "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/BulkEmailContentHistory.jsx", - "line": 132, + "filePath": "src/login/ChangePasswordPrompt.jsx", + "line": 57, "column": 8, - "index": 4433 + "index": 1924 }, { - "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/BulkEmailTaskHistory.jsx", - "line": 89, + "filePath": "src/progressive-profiling/ProgressiveProfilingPageModal.jsx", + "line": 40, "column": 8, - "index": 2718 + "index": 1064 } ], - "WarningFilled": [ + "ModalDialog.CloseButton": [ { - "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/BulkEmailPendingTasksAlert.jsx", - "line": 13, - "column": 35, - "index": 419 + "filePath": "src/login/ChangePasswordPrompt.jsx", + "line": 62, + "column": 12, + "index": 2076 } ], - "Hyperlink": [ + "Error": [ { - "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/BulkEmailPendingTasksAlert.jsx", - "line": 18, - "column": 6, - "index": 609 + "filePath": "src/login/LoginFailure.jsx", + "line": 201, + "column": 76, + "index": 6840 + }, + { + "filePath": "src/progressive-profiling/ProgressiveProfiling.jsx", + "line": 230, + "column": 81, + "index": 8297 + }, + { + "filePath": "src/register/components/RegistrationFailure.jsx", + "line": 57, + "column": 74, + "index": 1743 + }, + { + "filePath": "src/register/RegistrationFields/EmailField/EmailField.jsx", + "line": 84, + "column": 84, + "index": 2744 + }, + { + "filePath": "src/reset-password/ResetPasswordFailure.jsx", + "line": 37, + "column": 76, + "index": 1274 } ], - "ModalDialog": [ + "Spinner": [ { - "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/ViewEmailModal.jsx", - "line": 15, + "filePath": "src/progressive-profiling/ProgressiveProfiling.jsx", + "line": 223, + "column": 10, + "index": 7890 + }, + { + "filePath": "src/register/RegistrationPage.jsx", + "line": 291, + "column": 12, + "index": 11015 + }, + { + "filePath": "src/reset-password/ResetPasswordPage.jsx", + "line": 138, + "column": 13, + "index": 4470 + } + ], + "Card": [ + { + "filePath": "src/recommendations/ProductCard/BaseCard/index.jsx", + "line": 29, "column": 6, - "index": 544 + "index": 593 } ], - "ModalDialog.Body": [ + "Card.ImageCap": [ { - "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/ViewEmailModal.jsx", - "line": 20, + "filePath": "src/recommendations/ProductCard/BaseCard/index.jsx", + "line": 34, "column": 8, - "index": 664 + "index": 714 } ], - "ModalDialog.Footer": [ + "Card.Header": [ { - "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/ViewEmailModal.jsx", - "line": 47, + "filePath": "src/recommendations/ProductCard/BaseCard/index.jsx", + "line": 42, "column": 8, - "index": 1853 + "index": 1006 } ], - "ActionRow": [ - { - "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/ViewEmailModal.jsx", - "line": 48, - "column": 10, - "index": 1884 - }, + "Card.Section": [ { - "filePath": "src/components/bulk-email-tool/task-alert-modal/TaskAlertModal.jsx", - "line": 25, + "filePath": "src/recommendations/ProductCard/BaseCard/index.jsx", + "line": 47, "column": 8, - "index": 667 + "index": 1155 } ], - "ModalDialog.CloseButton": [ + "Badge": [ { - "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/ViewEmailModal.jsx", + "filePath": "src/recommendations/ProductCard/BaseCard/index.jsx", "line": 49, "column": 12, - "index": 1908 + "index": 1243 } ], - "Container": [ + "useMediaQuery": [ { - "filePath": "src/components/bulk-email-tool/BulkEmailTool.jsx", - "line": 24, - "column": 12, - "index": 959 + "filePath": "src/recommendations/RecommendationsPage.jsx", + "line": 27, + "column": 23, + "index": 1016 + }, + { + "filePath": "src/recommendations/tests/RecommendationsPage.test.jsx", + "line": 105, + "column": 4, + "index": 3285 + }, + { + "filePath": "src/recommendations/tests/RecommendationsPage.test.jsx", + "line": 117, + "column": 4, + "index": 3793 + }, + { + "filePath": "src/recommendations/tests/RecommendationsPage.test.jsx", + "line": 129, + "column": 4, + "index": 4276 + }, + { + "filePath": "src/recommendations/tests/RecommendationsPage.test.jsx", + "line": 143, + "column": 4, + "index": 4758 + }, + { + "filePath": "src/recommendations/tests/RecommendationsPage.test.jsx", + "line": 162, + "column": 4, + "index": 5338 } ], - "AlertModal": [ + "Container": [ { - "filePath": "src/components/bulk-email-tool/task-alert-modal/TaskAlertModal.jsx", - "line": 19, - "column": 4, - "index": 508 + "filePath": "src/recommendations/RecommendationsPage.jsx", + "line": 86, + "column": 10, + "index": 3160 } ], - "ArrowBack": [ + "Skeleton": [ { - "filePath": "src/components/navigation-tabs/BackToInstructor.jsx", - "line": 19, - "column": 13, - "index": 575 + "filePath": "src/recommendations/RecommendationsPage.jsx", + "line": 106, + "column": 16, + "index": 3863 + }, + { + "filePath": "src/recommendations/RecommendationsPageLayouts/LargeLayout.jsx", + "line": 22, + "column": 8, + "index": 557 + }, + { + "filePath": "src/recommendations/RecommendationsPageLayouts/SmallLayout.jsx", + "line": 22, + "column": 8, + "index": 557 } ], - "Nav": [ + "FormAutosuggestOption": [ { - "filePath": "src/components/navigation-tabs/NavigationTabs.jsx", - "line": 11, - "column": 6, - "index": 223 + "filePath": "src/register/RegistrationFields/CountryField/CountryField.jsx", + "line": 100, + "column": 4, + "index": 3647 } ], - "Nav.Item": [ + "FormAutosuggest": [ { - "filePath": "src/components/navigation-tabs/NavigationTabs.jsx", - "line": 13, - "column": 10, - "index": 325 + "filePath": "src/register/RegistrationFields/CountryField/CountryField.jsx", + "line": 107, + "column": 6, + "index": 3854 } ], - "Nav.Link": [ + "FormControlFeedback": [ { - "filePath": "src/components/navigation-tabs/NavigationTabs.jsx", - "line": 14, - "column": 12, - "index": 365 + "filePath": "src/register/RegistrationFields/CountryField/CountryField.jsx", + "line": 120, + "column": 8, + "index": 4365 } ], - "Spinner": [ + "Close": [ { - "filePath": "src/components/page-container/PageContainer.jsx", - "line": 82, - "column": 6, - "index": 2171 + "filePath": "src/register/RegistrationFields/EmailField/EmailField.jsx", + "line": 94, + "column": 23, + "index": 3101 + }, + { + "filePath": "src/register/RegistrationFields/UsernameField/UsernameField.jsx", + "line": 127, + "column": 34, + "index": 4336 + }, + { + "filePath": "src/register/RegistrationFields/UsernameField/UsernameField.jsx", + "line": 131, + "column": 34, + "index": 4708 } ] } }, { - "version": "21.5.6", - "name": "@edx/frontend-app-course-authoring", + "version": "22.7.0", + "name": "@edx/frontend-app-communications", "repository": { "type": "git", - "url": "git+https://github.com/openedx/frontend-app-course-authoring.git" + "url": "git+https://github.com/edx/frontend-app-communications.git" }, - "folderName": "frontend-app-course-authoring", + "folderName": "frontend-app-communications", "usages": { - "Container": [ + "Form.Group": [ { - "filePath": "src/advanced-settings/AdvancedSettings.jsx", - "line": 133, - "column": 6, - "index": 4968 + "filePath": "src/components/bulk-email-tool/bulk-email-form/bulk-email-recipient/BulkEmailRecipient.jsx", + "line": 25, + "column": 4, + "index": 589 }, { - "filePath": "src/content-tags-drawer/ContentTagsDrawer.jsx", - "line": 88, - "column": 6, - "index": 3010 + "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", + "line": 282, + "column": 8, + "index": 9752 }, { - "filePath": "src/course-outline/CourseOutline.jsx", - "line": 120, - "column": 6, - "index": 3659 + "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", + "line": 294, + "column": 8, + "index": 10485 }, { - "filePath": "src/course-rerun/index.jsx", - "line": 46, - "column": 6, - "index": 1260 + "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", + "line": 306, + "column": 8, + "index": 11135 }, { - "filePath": "src/course-team/CourseTeam.jsx", - "line": 65, - "column": 6, - "index": 1876 - }, + "filePath": "src/components/bulk-email-tool/bulk-email-form/ScheduleEmailForm.jsx", + "line": 15, + "column": 4, + "index": 552 + } + ], + "Form.Label": [ { - "filePath": "src/course-updates/CourseUpdates.jsx", - "line": 66, + "filePath": "src/components/bulk-email-tool/bulk-email-form/bulk-email-recipient/BulkEmailRecipient.jsx", + "line": 26, "column": 6, - "index": 2424 + "index": 608 }, { - "filePath": "src/custom-pages/CustomPages.jsx", - "line": 115, - "column": 6, - "index": 3747 + "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", + "line": 283, + "column": 10, + "index": 9800 }, { - "filePath": "src/export-page/CourseExportPage.jsx", - "line": 62, - "column": 6, - "index": 2729 - }, + "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", + "line": 295, + "column": 10, + "index": 10530 + } + ], + "Form.CheckboxSet": [ { - "filePath": "src/files-and-videos/files-page/FilesPage.jsx", - "line": 173, + "filePath": "src/components/bulk-email-tool/bulk-email-form/bulk-email-recipient/BulkEmailRecipient.jsx", + "line": 35, "column": 6, - "index": 5119 - }, + "index": 916 + } + ], + "Form.Checkbox": [ { - "filePath": "src/files-and-videos/videos-page/VideosPage.jsx", - "line": 187, - "column": 6, - "index": 5647 + "filePath": "src/components/bulk-email-tool/bulk-email-form/bulk-email-recipient/BulkEmailRecipient.jsx", + "line": 41, + "column": 8, + "index": 1110 }, { - "filePath": "src/grading-settings/GradingSettings.jsx", - "line": 118, - "column": 6, - "index": 4105 + "filePath": "src/components/bulk-email-tool/bulk-email-form/bulk-email-recipient/BulkEmailRecipient.jsx", + "line": 48, + "column": 8, + "index": 1451 }, { - "filePath": "src/import-page/CourseImportPage.jsx", - "line": 57, - "column": 6, - "index": 2290 + "filePath": "src/components/bulk-email-tool/bulk-email-form/bulk-email-recipient/BulkEmailRecipient.jsx", + "line": 63, + "column": 12, + "index": 1951 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/AppConfigForm.jsx", - "line": 117, - "column": 4, - "index": 3451 + "filePath": "src/components/bulk-email-tool/bulk-email-form/bulk-email-recipient/BulkEmailRecipient.jsx", + "line": 81, + "column": 12, + "index": 2639 }, { - "filePath": "src/pages-and-resources/discussions/app-list/AppList.jsx", - "line": 107, - "column": 6, - "index": 3869 + "filePath": "src/components/bulk-email-tool/bulk-email-form/bulk-email-recipient/BulkEmailRecipient.jsx", + "line": 95, + "column": 8, + "index": 3131 }, { - "filePath": "src/schedule-and-details/index.jsx", - "line": 172, - "column": 6, - "index": 5227 + "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", + "line": 309, + "column": 14, + "index": 11248 + } + ], + "useToggle": [ + { + "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", + "line": 65, + "column": 59, + "index": 2123 }, { - "filePath": "src/studio-home/StudioHome.jsx", - "line": 155, + "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/bulk-email-scheduled-emails-table/BulkEmailScheduledEmailsTable.jsx", + "line": 43, + "column": 68, + "index": 1599 + } + ], + "Form": [ + { + "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", + "line": 274, "column": 6, - "index": 4313 - }, + "index": 9476 + } + ], + "Form.Control": [ { - "filePath": "src/taxonomy/taxonomy-detail/TaxonomyDetailPage.jsx", - "line": 121, - "column": 8, - "index": 3731 + "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", + "line": 284, + "column": 10, + "index": 9920 }, { - "filePath": "src/taxonomy/taxonomy-detail/TaxonomyDetailPage.jsx", - "line": 138, - "column": 8, - "index": 4257 - }, - { - "filePath": "src/taxonomy/TaxonomyListPage.jsx", - "line": 102, - "column": 8, - "index": 3126 - }, - { - "filePath": "src/taxonomy/TaxonomyListPage.jsx", - "line": 112, - "column": 8, - "index": 3450 + "filePath": "src/components/bulk-email-tool/bulk-email-form/ScheduleEmailForm.jsx", + "line": 18, + "column": 10, + "index": 706 }, { - "filePath": "src/taxonomy/TaxonomyListPage.jsx", - "line": 147, - "column": 12, - "index": 4491 + "filePath": "src/components/bulk-email-tool/bulk-email-form/ScheduleEmailForm.jsx", + "line": 43, + "column": 10, + "index": 1569 } ], - "Info": [ + "Button": [ { - "filePath": "src/advanced-settings/AdvancedSettings.jsx", - "line": 137, - "column": 20, - "index": 5172 + "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", + "line": 333, + "column": 32, + "index": 12180 }, { - "filePath": "src/files-and-videos/generic/table-components/table-custom-columns/TranscriptColumn.jsx", - "line": 16, - "column": 19, - "index": 695 + "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/BulkEmailContentHistory.jsx", + "line": 110, + "column": 10, + "index": 3885 }, { - "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", - "line": 214, - "column": 46, - "index": 6556 + "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/ViewEmailModal.jsx", + "line": 52, + "column": 12, + "index": 2108 }, { - "filePath": "src/pages-and-resources/xpert-unit-summary/settings-modal/SettingsModal.jsx", - "line": 327, - "column": 46, - "index": 9511 - } - ], - "TransitionReplace": [ - { - "filePath": "src/advanced-settings/AdvancedSettings.jsx", - "line": 144, + "filePath": "src/components/bulk-email-tool/task-alert-modal/TaskAlertModal.jsx", + "line": 26, "column": 10, - "index": 5483 + "index": 693 }, { - "filePath": "src/course-outline/CourseOutline.jsx", - "line": 125, + "filePath": "src/components/bulk-email-tool/task-alert-modal/TaskAlertModal.jsx", + "line": 33, "column": 10, - "index": 3983 + "index": 973 }, { - "filePath": "src/files-and-videos/videos-page/transcript-settings/Cielo24Form.jsx", - "line": 51, - "column": 8, - "index": 2071 - }, + "filePath": "src/components/navigation-tabs/BackToInstructor.jsx", + "line": 13, + "column": 4, + "index": 378 + } + ], + "StatefulButton": [ { - "filePath": "src/files-and-videos/videos-page/transcript-settings/Cielo24Form.jsx", - "line": 66, - "column": 8, - "index": 2751 - }, + "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", + "line": 334, + "column": 12, + "index": 12298 + } + ], + "Icon": [ { - "filePath": "src/files-and-videos/videos-page/transcript-settings/ThreePlayMediaForm.jsx", - "line": 60, - "column": 8, - "index": 2172 + "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", + "line": 343, + "column": 46, + "index": 12620 }, { - "filePath": "src/files-and-videos/videos-page/transcript-settings/TranscriptSettings.jsx", - "line": 64, - "column": 14, - "index": 2096 + "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", + "line": 344, + "column": 47, + "index": 12688 }, { - "filePath": "src/files-and-videos/videos-page/transcript-settings/TranscriptSettings.jsx", - "line": 83, - "column": 12, - "index": 2897 + "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", + "line": 345, + "column": 49, + "index": 12759 }, { - "filePath": "src/files-and-videos/videos-page/transcript-settings/TranscriptSettings.jsx", - "line": 118, - "column": 10, - "index": 4261 + "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", + "line": 346, + "column": 46, + "index": 12827 }, { - "filePath": "src/generic/create-or-rerun-course/CreateOrRerunCourseForm.jsx", - "line": 204, - "column": 6, - "index": 6374 + "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", + "line": 347, + "column": 47, + "index": 12926 }, { - "filePath": "src/generic/FieldFeedback.jsx", - "line": 14, - "column": 4, - "index": 276 + "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", + "line": 348, + "column": 56, + "index": 13004 }, { - "filePath": "src/generic/FieldFeedback.jsx", - "line": 24, - "column": 4, - "index": 707 + "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", + "line": 349, + "column": 44, + "index": 13070 }, { - "filePath": "src/generic/FormikErrorFeedback.jsx", - "line": 12, - "column": 4, - "index": 377 + "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/bulk-email-scheduled-emails-table/BulkEmailScheduledEmailsTable.jsx", + "line": 176, + "column": 55, + "index": 5695 }, { - "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", - "line": 39, - "column": 2, - "index": 1347 + "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/bulk-email-scheduled-emails-table/BulkEmailScheduledEmailsTable.jsx", + "line": 179, + "column": 28, + "index": 5843 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/DivisionByGroupFields.jsx", - "line": 90, - "column": 6, - "index": 2919 + "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/bulk-email-scheduled-emails-table/BulkEmailScheduledEmailsTable.jsx", + "line": 188, + "column": 49, + "index": 6196 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/DivisionByGroupFields.jsx", - "line": 103, + "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/BulkEmailContentHistory.jsx", + "line": 148, "column": 12, - "index": 3541 + "index": 5333 }, { - "filePath": "src/pages-and-resources/teams/GroupEditor.jsx", - "line": 40, - "column": 4, - "index": 1413 + "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/BulkEmailTaskHistory.jsx", + "line": 112, + "column": 12, + "index": 3658 }, { - "filePath": "src/pages-and-resources/xpert-unit-summary/settings-modal/SettingsModal.jsx", - "line": 46, - "column": 2, - "index": 1606 + "filePath": "src/components/navigation-tabs/BackToInstructor.jsx", + "line": 18, + "column": 6, + "index": 564 } ], - "CheckCircle": [ + "Send": [ { - "filePath": "src/advanced-settings/AdvancedSettings.jsx", - "line": 150, - "column": 22, - "index": 5739 - }, + "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", + "line": 343, + "column": 57, + "index": 12631 + } + ], + "Event": [ { - "filePath": "src/grading-settings/assignment-section/index.jsx", - "line": 178, - "column": 22, - "index": 7180 + "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", + "line": 344, + "column": 58, + "index": 12699 }, { - "filePath": "src/grading-settings/GradingSettings.jsx", - "line": 123, - "column": 18, - "index": 4291 + "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", + "line": 345, + "column": 60, + "index": 12770 } ], - "Layout": [ + "SpinnerSimple": [ { - "filePath": "src/advanced-settings/AdvancedSettings.jsx", - "line": 161, - "column": 10, - "index": 6263 + "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", + "line": 346, + "column": 57, + "index": 12838 }, { - "filePath": "src/course-outline/CourseOutline.jsx", - "line": 154, - "column": 10, - "index": 5289 + "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/BulkEmailContentHistory.jsx", + "line": 148, + "column": 23, + "index": 5344 }, { - "filePath": "src/course-rerun/index.jsx", - "line": 66, - "column": 10, - "index": 2035 - }, + "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/BulkEmailTaskHistory.jsx", + "line": 112, + "column": 23, + "index": 3669 + } + ], + "Check": [ { - "filePath": "src/course-team/CourseTeam.jsx", - "line": 67, - "column": 10, - "index": 1994 + "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", + "line": 347, + "column": 58, + "index": 12937 }, { - "filePath": "src/course-updates/CourseUpdates.jsx", - "line": 68, - "column": 10, - "index": 2527 - }, + "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", + "line": 348, + "column": 67, + "index": 13015 + } + ], + "Cancel": [ { - "filePath": "src/custom-pages/CustomPages.jsx", - "line": 150, + "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", + "line": 349, + "column": 55, + "index": 13081 + } + ], + "Toast": [ + { + "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", + "line": 368, + "column": 12, + "index": 14167 + } + ], + "Alert": [ + { + "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/bulk-email-scheduled-emails-table/BulkEmailScheduledEmailsTable.jsx", + "line": 72, "column": 8, - "index": 4932 + "index": 2452 }, { - "filePath": "src/export-page/CourseExportPage.jsx", - "line": 64, - "column": 10, - "index": 2839 + "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/BulkEmailHistoryTable.jsx", + "line": 21, + "column": 6, + "index": 557 }, { - "filePath": "src/export-page/export-footer/ExportFooter.jsx", - "line": 12, + "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/BulkEmailPendingTasksAlert.jsx", + "line": 13, "column": 4, - "index": 252 - }, + "index": 396 + } + ], + "Info": [ { - "filePath": "src/grading-settings/GradingSettings.jsx", - "line": 132, - "column": 12, - "index": 4676 - }, + "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/bulk-email-scheduled-emails-table/BulkEmailScheduledEmailsTable.jsx", + "line": 72, + "column": 38, + "index": 2482 + } + ], + "Alert.Heading": [ { - "filePath": "src/import-page/CourseImportPage.jsx", - "line": 59, + "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/bulk-email-scheduled-emails-table/BulkEmailScheduledEmailsTable.jsx", + "line": 73, "column": 10, - "index": 2400 - }, + "index": 2499 + } + ], + "DataTable": [ { - "filePath": "src/schedule-and-details/index.jsx", - "line": 197, - "column": 10, - "index": 6144 + "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/bulk-email-scheduled-emails-table/BulkEmailScheduledEmailsTable.jsx", + "line": 138, + "column": 8, + "index": 4410 }, { - "filePath": "src/studio-home/StudioHome.jsx", - "line": 123, + "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/BulkEmailHistoryTable.jsx", + "line": 40, "column": 6, - "index": 3321 + "index": 1091 + } + ], + "IconButton": [ + { + "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/bulk-email-scheduled-emails-table/BulkEmailScheduledEmailsTable.jsx", + "line": 176, + "column": 18, + "index": 5658 }, { - "filePath": "src/studio-home/verify-email-layout/index.jsx", - "line": 14, - "column": 4, - "index": 420 + "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/bulk-email-scheduled-emails-table/BulkEmailScheduledEmailsTable.jsx", + "line": 177, + "column": 18, + "index": 5770 }, { - "filePath": "src/taxonomy/taxonomy-detail/TaxonomyDetailPage.jsx", - "line": 139, - "column": 10, - "index": 4289 + "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/bulk-email-scheduled-emails-table/BulkEmailScheduledEmailsTable.jsx", + "line": 188, + "column": 18, + "index": 6165 } ], - "Layout.Element": [ + "Visibility": [ { - "filePath": "src/advanced-settings/AdvancedSettings.jsx", - "line": 168, - "column": 12, - "index": 6515 - }, + "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/bulk-email-scheduled-emails-table/BulkEmailScheduledEmailsTable.jsx", + "line": 176, + "column": 35, + "index": 5675 + } + ], + "Delete": [ { - "filePath": "src/advanced-settings/AdvancedSettings.jsx", - "line": 226, - "column": 12, - "index": 9413 - }, + "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/bulk-email-scheduled-emails-table/BulkEmailScheduledEmailsTable.jsx", + "line": 178, + "column": 25, + "index": 5807 + } + ], + "Edit": [ { - "filePath": "src/course-outline/CourseOutline.jsx", - "line": 161, - "column": 12, - "index": 5545 - }, + "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/bulk-email-scheduled-emails-table/BulkEmailScheduledEmailsTable.jsx", + "line": 188, + "column": 35, + "index": 6182 + } + ], + "Collapsible": [ { - "filePath": "src/course-outline/CourseOutline.jsx", - "line": 235, - "column": 12, - "index": 9364 + "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/BulkEmailContentHistory.jsx", + "line": 130, + "column": 8, + "index": 4482 }, { - "filePath": "src/course-rerun/index.jsx", - "line": 73, - "column": 12, - "index": 2287 - }, + "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/BulkEmailTaskHistory.jsx", + "line": 97, + "column": 8, + "index": 2983 + } + ], + "WarningFilled": [ { - "filePath": "src/course-rerun/index.jsx", - "line": 79, - "column": 12, - "index": 2504 - }, + "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/BulkEmailPendingTasksAlert.jsx", + "line": 13, + "column": 35, + "index": 427 + } + ], + "Hyperlink": [ { - "filePath": "src/course-team/CourseTeam.jsx", - "line": 74, - "column": 12, - "index": 2246 - }, + "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/BulkEmailPendingTasksAlert.jsx", + "line": 18, + "column": 6, + "index": 617 + } + ], + "ModalDialog": [ { - "filePath": "src/course-team/CourseTeam.jsx", - "line": 142, - "column": 12, - "index": 5201 - }, + "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/ViewEmailModal.jsx", + "line": 15, + "column": 6, + "index": 548 + } + ], + "ModalDialog.Body": [ { - "filePath": "src/course-updates/CourseUpdates.jsx", - "line": 75, - "column": 12, - "index": 2719 - }, + "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/ViewEmailModal.jsx", + "line": 20, + "column": 8, + "index": 668 + } + ], + "ModalDialog.Footer": [ { - "filePath": "src/custom-pages/CustomPages.jsx", - "line": 157, - "column": 10, - "index": 5280 - }, + "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/ViewEmailModal.jsx", + "line": 47, + "column": 8, + "index": 1857 + } + ], + "ActionRow": [ { - "filePath": "src/custom-pages/CustomPages.jsx", - "line": 202, + "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/ViewEmailModal.jsx", + "line": 48, "column": 10, - "index": 7143 + "index": 1888 }, { - "filePath": "src/export-page/CourseExportPage.jsx", - "line": 71, + "filePath": "src/components/bulk-email-tool/task-alert-modal/TaskAlertModal.jsx", + "line": 25, + "column": 8, + "index": 671 + } + ], + "ModalDialog.CloseButton": [ + { + "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/ViewEmailModal.jsx", + "line": 49, "column": 12, - "index": 3091 - }, + "index": 1912 + } + ], + "Container": [ { - "filePath": "src/export-page/CourseExportPage.jsx", - "line": 102, + "filePath": "src/components/bulk-email-tool/BulkEmailTool.jsx", + "line": 24, "column": 12, - "index": 4499 - }, + "index": 963 + } + ], + "AlertModal": [ { - "filePath": "src/export-page/export-footer/ExportFooter.jsx", + "filePath": "src/components/bulk-email-tool/task-alert-modal/TaskAlertModal.jsx", "line": 19, - "column": 6, - "index": 527 - }, + "column": 4, + "index": 512 + } + ], + "ArrowBack": [ { - "filePath": "src/export-page/export-footer/ExportFooter.jsx", - "line": 31, - "column": 6, - "index": 1174 - }, + "filePath": "src/components/navigation-tabs/BackToInstructor.jsx", + "line": 19, + "column": 13, + "index": 583 + } + ], + "Nav": [ { - "filePath": "src/export-page/export-footer/ExportFooter.jsx", - "line": 32, + "filePath": "src/components/navigation-tabs/NavigationTabs.jsx", + "line": 11, "column": 6, - "index": 1199 - }, + "index": 227 + } + ], + "Nav.Item": [ { - "filePath": "src/grading-settings/GradingSettings.jsx", - "line": 139, - "column": 14, - "index": 4942 - }, + "filePath": "src/components/navigation-tabs/NavigationTabs.jsx", + "line": 13, + "column": 10, + "index": 329 + } + ], + "Nav.Link": [ { - "filePath": "src/grading-settings/GradingSettings.jsx", - "line": 215, - "column": 14, - "index": 8740 - }, + "filePath": "src/components/navigation-tabs/NavigationTabs.jsx", + "line": 14, + "column": 12, + "index": 369 + } + ], + "Spinner": [ { - "filePath": "src/import-page/CourseImportPage.jsx", - "line": 66, + "filePath": "src/components/page-container/PageContainer.jsx", + "line": 83, + "column": 6, + "index": 2216 + } + ] + } + }, + { + "version": "22.8.1", + "name": "@edx/frontend-app-authoring", + "repository": { + "type": "git", + "url": "git+https://github.com/openedx/frontend-app-authoring.git" + }, + "folderName": "frontend-app-course-authoring", + "usages": { + "Hyperlink": [ + { + "filePath": "plugins/course-apps/learning_assistant/Settings.jsx", + "line": 23, "column": 12, - "index": 2652 + "index": 885 }, { - "filePath": "src/import-page/CourseImportPage.jsx", - "line": 79, + "filePath": "plugins/course-apps/learning_assistant/Settings.jsx", + "line": 33, "column": 12, - "index": 3330 + "index": 1299 }, { - "filePath": "src/schedule-and-details/index.jsx", - "line": 204, - "column": 12, - "index": 6396 + "filePath": "plugins/course-apps/live/BBBSettings.jsx", + "line": 74, + "column": 6, + "index": 2384 }, { - "filePath": "src/schedule-and-details/index.jsx", - "line": 303, - "column": 12, - "index": 10863 + "filePath": "plugins/course-apps/live/BBBSettings.jsx", + "line": 95, + "column": 16, + "index": 3221 }, { - "filePath": "src/studio-home/StudioHome.jsx", - "line": 130, - "column": 8, - "index": 3545 + "filePath": "plugins/course-apps/ora_settings/Settings.jsx", + "line": 104, + "column": 20, + "index": 4129 }, { - "filePath": "src/studio-home/StudioHome.jsx", - "line": 145, - "column": 8, - "index": 4157 + "filePath": "plugins/course-apps/proctoring/Settings.jsx", + "line": 251, + "column": 4, + "index": 9811 }, { - "filePath": "src/studio-home/verify-email-layout/index.jsx", - "line": 21, + "filePath": "plugins/course-apps/xpert_unit_summary/settings-modal/SettingsModal.jsx", + "line": 263, "column": 6, - "index": 630 + "index": 7712 }, { - "filePath": "src/studio-home/verify-email-layout/index.jsx", - "line": 34, + "filePath": "plugins/course-apps/xpert_unit_summary/settings-modal/SettingsModal.jsx", + "line": 276, "column": 6, - "index": 1079 + "index": 8019 }, { - "filePath": "src/taxonomy/taxonomy-detail/TaxonomyDetailPage.jsx", - "line": 146, + "filePath": "src/accessibility-page/AccessibilityBody/AccessibilityBody.jsx", + "line": 24, + "column": 14, + "index": 673 + }, + { + "filePath": "src/certificates/layout/certificates-sidebar/CertificatesSidebar.jsx", + "line": 28, "column": 12, - "index": 4541 + "index": 937 }, { - "filePath": "src/taxonomy/taxonomy-detail/TaxonomyDetailPage.jsx", - "line": 149, + "filePath": "src/certificates/layout/header-buttons/HeaderButtons.jsx", + "line": 27, "column": 12, - "index": 4655 - } - ], - "Button": [ + "index": 772 + }, { - "filePath": "src/advanced-settings/AdvancedSettings.jsx", - "line": 185, + "filePath": "src/course-outline/card-header/CardHeader.jsx", + "line": 161, "column": 22, - "index": 7398 + "index": 4901 }, { - "filePath": "src/advanced-settings/AdvancedSettings.jsx", - "line": 252, + "filePath": "src/course-outline/enable-highlights-modal/EnableHighlightsModal.jsx", + "line": 43, + "column": 8, + "index": 1162 + }, + { + "filePath": "src/course-outline/highlights-modal/HighlightsModal.jsx", + "line": 57, + "column": 20, + "index": 1710 + }, + { + "filePath": "src/course-outline/outline-sidebar/OutlineSidebar.jsx", + "line": 45, "column": 14, - "index": 10391 + "index": 1447 }, { - "filePath": "src/advanced-settings/modal-error/ModalError.jsx", - "line": 18, + "filePath": "src/course-outline/page-alerts/PageAlerts.jsx", + "line": 114, "column": 8, - "index": 568 + "index": 3551 }, { - "filePath": "src/advanced-settings/modal-error/ModalError.jsx", - "line": 24, - "column": 8, - "index": 764 + "filePath": "src/course-outline/page-alerts/PageAlerts.jsx", + "line": 148, + "column": 20, + "index": 4531 }, { - "filePath": "src/content-tags-drawer/ContentTagsCollapsible.jsx", - "line": 150, - "column": 12, - "index": 4661 + "filePath": "src/course-outline/page-alerts/PageAlerts.jsx", + "line": 166, + "column": 22, + "index": 5156 }, { - "filePath": "src/content-tags-drawer/ContentTagsDropDownSelector.jsx", - "line": 133, - "column": 12, - "index": 4930 + "filePath": "src/course-outline/page-alerts/PageAlerts.jsx", + "line": 215, + "column": 22, + "index": 6743 }, { - "filePath": "src/course-outline/card-header/CardHeader.jsx", - "line": 92, - "column": 10, - "index": 2401 + "filePath": "src/course-outline/page-alerts/PageAlerts.jsx", + "line": 232, + "column": 22, + "index": 7353 }, { - "filePath": "src/course-outline/configure-modal/ConfigureModal.jsx", - "line": 80, - "column": 10, - "index": 2793 + "filePath": "src/course-outline/status-bar/StatusBar.jsx", + "line": 130, + "column": 12, + "index": 4606 }, { - "filePath": "src/course-outline/CourseOutline.jsx", - "line": 216, - "column": 26, - "index": 8596 + "filePath": "src/course-outline/status-bar/StatusBar.jsx", + "line": 179, + "column": 14, + "index": 6442 }, { - "filePath": "src/course-outline/delete-modal/DeleteModal.jsx", - "line": 27, - "column": 10, - "index": 755 + "filePath": "src/course-rerun/course-rerun-sidebar/index.jsx", + "line": 66, + "column": 14, + "index": 1851 }, { - "filePath": "src/course-outline/delete-modal/DeleteModal.jsx", - "line": 30, + "filePath": "src/custom-pages/CustomPages.jsx", + "line": 144, "column": 10, - "index": 885 + "index": 4921 }, { - "filePath": "src/course-outline/empty-placeholder/EmptyPlaceholder.jsx", - "line": 23, - "column": 8, - "index": 771 + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/ResetCard.jsx", + "line": 36, + "column": 10, + "index": 1424 }, { - "filePath": "src/course-outline/enable-highlights-modal/EnableHighlightsModal.jsx", - "line": 31, - "column": 10, - "index": 707 + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/ScoringCard.jsx", + "line": 87, + "column": 8, + "index": 2841 }, { - "filePath": "src/course-outline/enable-highlights-modal/EnableHighlightsModal.jsx", - "line": 34, + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/ShowAnswerCard.jsx", + "line": 40, "column": 10, - "index": 837 + "index": 1132 }, { - "filePath": "src/course-outline/header-navigations/HeaderNavigations.jsx", + "filePath": "src/editors/containers/ProblemEditor/components/SelectTypeModal/content/Preview.jsx", "line": 35, - "column": 8, - "index": 938 + "column": 6, + "index": 1035 }, { - "filePath": "src/course-outline/header-navigations/HeaderNavigations.jsx", - "line": 51, + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDisplay.jsx", + "line": 32, "column": 10, - "index": 1491 + "index": 886 }, { - "filePath": "src/course-outline/header-navigations/HeaderNavigations.jsx", - "line": 62, + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/SocialShareWidget/index.jsx", + "line": 75, "column": 8, - "index": 1817 + "index": 2271 }, { - "filePath": "src/course-outline/header-navigations/HeaderNavigations.jsx", - "line": 80, - "column": 8, - "index": 2414 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoPreviewWidget/index.jsx", + "line": 55, + "column": 14, + "index": 1883 }, { - "filePath": "src/course-outline/highlights-modal/HighlightsModal.jsx", - "line": 77, - "column": 16, - "index": 2616 + "filePath": "src/export-page/export-sidebar/ExportSidebar.jsx", + "line": 39, + "column": 6, + "index": 2166 }, { - "filePath": "src/course-outline/publish-modal/PublishModal.jsx", - "line": 70, - "column": 10, - "index": 2270 + "filePath": "src/files-and-videos/generic/DeleteConfirmationModal.jsx", + "line": 48, + "column": 14, + "index": 1392 }, { - "filePath": "src/course-outline/section-card/SectionCard.jsx", - "line": 127, + "filePath": "src/files-and-videos/generic/UsageMetricsMessage.jsx", + "line": 30, "column": 12, - "index": 3394 + "index": 910 }, { - "filePath": "src/course-outline/section-card/SectionCard.jsx", - "line": 141, + "filePath": "src/files-and-videos/videos-page/upload-modal/UploadModal.jsx", + "line": 53, "column": 12, - "index": 3992 + "index": 1673 }, { - "filePath": "src/course-outline/status-bar/StatusBar.jsx", - "line": 84, - "column": 12, - "index": 2911 + "filePath": "src/generic/configure-modal/AdvancedTab.jsx", + "line": 212, + "column": 20, + "index": 6762 }, { - "filePath": "src/course-outline/subsection-card/SubsectionCard.jsx", - "line": 107, - "column": 10, - "index": 3086 + "filePath": "src/generic/course-upload-image/index.jsx", + "line": 90, + "column": 12, + "index": 2391 }, { - "filePath": "src/course-rerun/index.jsx", - "line": 58, - "column": 18, - "index": 1736 + "filePath": "src/generic/help-sidebar/HelpSidebarLink.jsx", + "line": 21, + "column": 6, + "index": 452 }, { - "filePath": "src/course-team/add-team-member/AddTeamMember.jsx", - "line": 18, - "column": 6, - "index": 691 + "filePath": "src/group-configurations/common/UsageList.jsx", + "line": 38, + "column": 12, + "index": 1173 }, { - "filePath": "src/course-team/add-user-form/AddUserForm.jsx", - "line": 42, - "column": 14, - "index": 1433 + "filePath": "src/group-configurations/content-groups-section/ContentGroupCard.jsx", + "line": 46, + "column": 4, + "index": 1338 }, { - "filePath": "src/course-team/add-user-form/AddUserForm.jsx", - "line": 45, - "column": 14, - "index": 1588 + "filePath": "src/group-configurations/experiment-configurations-section/ExperimentCard.jsx", + "line": 53, + "column": 4, + "index": 1591 }, { - "filePath": "src/course-team/course-team-member/CourseTeamMember.jsx", - "line": 48, + "filePath": "src/group-configurations/group-configuration-sidebar/index.jsx", + "line": 37, "column": 12, - "index": 1494 + "index": 1259 }, { - "filePath": "src/course-team/CourseTeam.jsx", - "line": 81, - "column": 22, - "index": 2561 + "filePath": "src/import-page/import-sidebar/ImportSidebar.jsx", + "line": 41, + "column": 6, + "index": 2169 }, { - "filePath": "src/course-team/info-modal/InfoModal.jsx", - "line": 43, + "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", + "line": 95, + "column": 4, + "index": 3551 + }, + { + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/AppExternalLinks.jsx", + "line": 30, + "column": 16, + "index": 838 + }, + { + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/DivisionByGroupFields.jsx", + "line": 75, "column": 10, - "index": 904 + "index": 2352 }, { - "filePath": "src/course-team/info-modal/InfoModal.jsx", - "line": 47, - "column": 12, - "index": 1069 + "filePath": "src/pages-and-resources/PagesAndResources.jsx", + "line": 75, + "column": 10, + "index": 3184 }, { - "filePath": "src/course-updates/CourseUpdates.jsx", - "line": 83, - "column": 22, - "index": 3091 + "filePath": "src/schedule-and-details/basic-section/index.jsx", + "line": 102, + "column": 8, + "index": 2814 }, { - "filePath": "src/course-updates/delete-modal/DeleteModal.jsx", - "line": 22, + "filePath": "src/schedule-and-details/introducing-section/index.jsx", + "line": 43, "column": 10, - "index": 493 + "index": 1221 }, { - "filePath": "src/course-updates/delete-modal/DeleteModal.jsx", - "line": 25, + "filePath": "src/schedule-and-details/introducing-section/index.jsx", + "line": 61, "column": 10, - "index": 623 + "index": 1738 }, { - "filePath": "src/course-updates/update-form/UpdateForm.jsx", - "line": 112, - "column": 14, - "index": 3959 + "filePath": "src/schedule-and-details/license-section/license-icons/index.jsx", + "line": 18, + "column": 6, + "index": 617 }, { - "filePath": "src/course-updates/update-form/UpdateForm.jsx", - "line": 115, - "column": 14, - "index": 4115 + "filePath": "src/schedule-and-details/requirements-section/entrance-exam/index.jsx", + "line": 49, + "column": 22, + "index": 1602 }, { - "filePath": "src/custom-pages/CustomPageCard.jsx", - "line": 110, + "filePath": "src/studio-home/processing-courses/course-item/index.jsx", + "line": 49, + "column": 16, + "index": 1505 + }, + { + "filePath": "src/textbooks/textbook-sidebar/TextbookSidebar.jsx", + "line": 29, + "column": 6, + "index": 1036 + } + ], + "Form.Group": [ + { + "filePath": "plugins/course-apps/live/BBBSettings.jsx", + "line": 55, + "column": 6, + "index": 1788 + }, + { + "filePath": "plugins/course-apps/proctoring/Settings.jsx", + "line": 312, "column": 12, - "index": 3448 + "index": 11761 }, { - "filePath": "src/custom-pages/CustomPages.jsx", - "line": 130, + "filePath": "plugins/course-apps/proctoring/Settings.jsx", + "line": 338, "column": 10, - "index": 4316 + "index": 12897 }, { - "filePath": "src/custom-pages/CustomPages.jsx", - "line": 144, + "filePath": "plugins/course-apps/proctoring/Settings.jsx", + "line": 369, "column": 12, - "index": 4771 + "index": 14356 }, { - "filePath": "src/custom-pages/CustomPages.jsx", - "line": 223, + "filePath": "plugins/course-apps/proctoring/Settings.jsx", + "line": 393, "column": 12, - "index": 8006 + "index": 15477 }, { - "filePath": "src/export-page/CourseExportPage.jsx", - "line": 86, - "column": 22, - "index": 3869 + "filePath": "plugins/course-apps/teams/GroupEditor.jsx", + "line": 103, + "column": 12, + "index": 4385 }, { - "filePath": "src/export-page/export-stepper/ExportStepper.jsx", - "line": 93, - "column": 65, - "index": 2949 + "filePath": "src/accessibility-page/AccessibilityForm/AccessibilityForm.jsx", + "line": 104, + "column": 10, + "index": 3162 }, { - "filePath": "src/files-and-videos/generic/FileTable.jsx", - "line": 280, + "filePath": "src/advanced-settings/setting-card/SettingCard.jsx", + "line": 95, "column": 12, - "index": 8276 + "index": 2762 }, { - "filePath": "src/files-and-videos/generic/FileTable.jsx", - "line": 283, - "column": 12, - "index": 8435 + "filePath": "src/certificates/certificate-details/CertificateDetailsForm.jsx", + "line": 28, + "column": 10, + "index": 975 }, { - "filePath": "src/files-and-videos/generic/table-components/FilterStatus.jsx", - "line": 37, - "column": 8, - "index": 1058 + "filePath": "src/certificates/certificate-signatories/signatory/SignatoryForm.jsx", + "line": 102, + "column": 10, + "index": 3411 }, { - "filePath": "src/files-and-videos/generic/table-components/sort-and-filter-modal/SortAndFilterModal.jsx", - "line": 152, + "filePath": "src/certificates/certificate-signatories/signatory/SignatoryForm.jsx", + "line": 110, "column": 8, - "index": 4373 + "index": 3733 }, { - "filePath": "src/files-and-videos/generic/table-components/sort-and-filter-modal/SortAndFilterModal.jsx", - "line": 162, + "filePath": "src/course-outline/card-header/CardHeader.jsx", + "line": 112, "column": 10, - "index": 4777 + "index": 2943 }, { - "filePath": "src/files-and-videos/generic/table-components/table-custom-columns/MoreInfoColumn.jsx", - "line": 59, - "column": 18, - "index": 1213 + "filePath": "src/course-outline/status-bar/StatusBar.jsx", + "line": 156, + "column": 10, + "index": 5574 }, { - "filePath": "src/files-and-videos/generic/table-components/table-custom-columns/MoreInfoColumn.jsx", - "line": 71, - "column": 20, - "index": 1553 + "filePath": "src/course-team/add-user-form/AddUserForm.jsx", + "line": 27, + "column": 12, + "index": 692 }, { - "filePath": "src/files-and-videos/generic/table-components/table-custom-columns/MoreInfoColumn.jsx", - "line": 81, - "column": 20, - "index": 1889 + "filePath": "src/course-unit/add-component/add-component-modals/ComponentModalView.jsx", + "line": 51, + "column": 8, + "index": 1580 }, { - "filePath": "src/files-and-videos/generic/table-components/table-custom-columns/MoreInfoColumn.jsx", - "line": 91, - "column": 20, - "index": 2222 + "filePath": "src/course-unit/header-title/HeaderTitle.jsx", + "line": 55, + "column": 10, + "index": 1966 }, { - "filePath": "src/files-and-videos/generic/table-components/table-custom-columns/MoreInfoColumn.jsx", + "filePath": "src/course-updates/update-form/UpdateForm.jsx", + "line": 63, + "column": 14, + "index": 1701 + }, + { + "filePath": "src/course-updates/update-form/UpdateForm.jsx", "line": 100, - "column": 16, - "index": 2545 + "column": 12, + "index": 3498 }, { - "filePath": "src/files-and-videos/generic/table-components/table-custom-columns/MoreInfoColumn.jsx", - "line": 109, - "column": 16, - "index": 2838 + "filePath": "src/editors/containers/EditorContainer/components/TitleHeader/EditableHeader.jsx", + "line": 15, + "column": 2, + "index": 295 }, { - "filePath": "src/files-and-videos/generic/table-components/table-custom-columns/MoreInfoColumn.jsx", - "line": 117, - "column": 16, - "index": 3095 + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/AnswerWidget/components/Feedback/FeedbackControl.jsx", + "line": 22, + "column": 2, + "index": 565 }, { - "filePath": "src/files-and-videos/generic/table-components/TableActions.jsx", - "line": 38, + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/GeneralFeedback/index.jsx", + "line": 27, "column": 6, - "index": 1008 + "index": 906 }, { - "filePath": "src/files-and-videos/generic/table-components/TableActions.jsx", - "line": 74, + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/Randomization/index.jsx", + "line": 32, "column": 6, - "index": 2372 + "index": 1051 }, { - "filePath": "src/files-and-videos/videos-page/info-sidebar/transcript-item/Transcript.jsx", - "line": 63, - "column": 14, - "index": 1647 + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/ScoringCard.jsx", + "line": 49, + "column": 6, + "index": 1551 }, { - "filePath": "src/files-and-videos/videos-page/info-sidebar/transcript-item/Transcript.jsx", - "line": 66, - "column": 14, - "index": 1845 + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/ScoringCard.jsx", + "line": 62, + "column": 6, + "index": 1959 }, { - "filePath": "src/files-and-videos/videos-page/info-sidebar/TranscriptTab.jsx", - "line": 127, - "column": 8, - "index": 3889 + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/ShowAnswerCard.jsx", + "line": 45, + "column": 6, + "index": 1372 }, { - "filePath": "src/files-and-videos/videos-page/transcript-settings/OrderTranscriptForm.jsx", - "line": 140, + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/ShowAnswerCard.jsx", + "line": 69, "column": 8, - "index": 4499 + "index": 2181 }, { - "filePath": "src/files-and-videos/videos-page/transcript-settings/OrderTranscriptForm.jsx", - "line": 143, - "column": 8, - "index": 4646 + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/TimerCard.jsx", + "line": 27, + "column": 6, + "index": 791 }, { - "filePath": "src/files-and-videos/videos-page/VideosPage.jsx", - "line": 202, - "column": 12, - "index": 6189 - }, - { - "filePath": "src/files-and-videos/videos-page/VideoThumbnail.jsx", + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/Tolerance/index.jsx", "line": 78, - "column": 12, - "index": 2358 + "column": 6, + "index": 2479 }, { - "filePath": "src/generic/ConfirmationPopup.jsx", - "line": 26, + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/DurationWidget/index.jsx", + "line": 49, "column": 8, - "index": 592 + "index": 1262 }, { - "filePath": "src/generic/ConfirmationPopup.jsx", - "line": 29, + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/DurationWidget/index.jsx", + "line": 61, "column": 8, - "index": 719 + "index": 1752 }, { - "filePath": "src/generic/create-or-rerun-course/CreateOrRerunCourseForm.jsx", - "line": 255, - "column": 10, - "index": 8117 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", + "line": 35, + "column": 6, + "index": 772 }, { - "filePath": "src/generic/modal-error/ModalError.jsx", - "line": 16, - "column": 8, - "index": 424 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", + "line": 48, + "column": 16, + "index": 1297 }, { - "filePath": "src/generic/modal-error/ModalError.jsx", - "line": 17, - "column": 8, - "index": 510 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", + "line": 67, + "column": 16, + "index": 2101 }, { - "filePath": "src/grading-settings/assignment-section/index.jsx", - "line": 183, - "column": 12, - "index": 7382 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", + "line": 92, + "column": 16, + "index": 3172 }, { - "filePath": "src/grading-settings/grading-scale/components/GradingScaleSegment.jsx", - "line": 49, - "column": 6, - "index": 1620 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", + "line": 118, + "column": 16, + "index": 4278 }, { - "filePath": "src/grading-settings/GradingSettings.jsx", - "line": 205, - "column": 20, - "index": 8366 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/index.jsx", + "line": 122, + "column": 10, + "index": 3771 }, { - "filePath": "src/grading-settings/GradingSettings.jsx", - "line": 244, - "column": 14, - "index": 9861 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoSourceWidget/index.jsx", + "line": 74, + "column": 8, + "index": 2065 }, { - "filePath": "src/import-page/import-stepper/ImportStepper.jsx", - "line": 105, + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoSourceWidget/index.jsx", + "line": 85, "column": 8, - "index": 3638 + "index": 2490 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-restrictions/RestrictionSchedules.jsx", - "line": 67, - "column": 14, - "index": 2182 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoSourceWidget/index.jsx", + "line": 105, + "column": 10, + "index": 3313 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-topics/DiscussionTopics.jsx", - "line": 78, - "column": 16, - "index": 2938 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoSourceWidget/index.jsx", + "line": 125, + "column": 8, + "index": 4112 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-topics/TopicItem.jsx", - "line": 84, - "column": 10, - "index": 2260 + "filePath": "src/editors/sharedComponents/ImageUploadModal/ImageSettingsModal/AltTextControls.jsx", + "line": 28, + "column": 2, + "index": 801 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-topics/TopicItem.jsx", - "line": 87, - "column": 10, - "index": 2416 + "filePath": "src/editors/sharedComponents/ImageUploadModal/ImageSettingsModal/DimensionControls.jsx", + "line": 38, + "column": 2, + "index": 980 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/DiscussionRestriction.jsx", - "line": 41, + "filePath": "src/editors/sharedComponents/SelectionModal/SearchSort.jsx", + "line": 35, + "column": 6, + "index": 727 + }, + { + "filePath": "src/editors/sharedComponents/TypeaheadDropdown/FormGroup.jsx", + "line": 19, "column": 4, - "index": 1475 + "index": 503 }, { - "filePath": "src/pages-and-resources/discussions/app-list/AppList.jsx", - "line": 170, - "column": 12, - "index": 5773 + "filePath": "src/files-and-videos/generic/table-components/sort-and-filter-modal/SortAndFilterModal.jsx", + "line": 143, + "column": 8, + "index": 4284 }, { - "filePath": "src/pages-and-resources/discussions/app-list/AppListNextButton.jsx", - "line": 21, - "column": 4, - "index": 735 + "filePath": "src/files-and-videos/videos-page/transcript-settings/Cielo24Form.jsx", + "line": 29, + "column": 8, + "index": 1112 }, { - "filePath": "src/pages-and-resources/discussions/DiscussionsSettings.jsx", - "line": 106, - "column": 20, - "index": 3433 + "filePath": "src/files-and-videos/videos-page/transcript-settings/Cielo24Form.jsx", + "line": 40, + "column": 8, + "index": 1586 }, { - "filePath": "src/pages-and-resources/PagesAndResources.jsx", - "line": 79, + "filePath": "src/files-and-videos/videos-page/transcript-settings/Cielo24Form.jsx", + "line": 53, "column": 12, - "index": 3062 + "index": 2159 }, { - "filePath": "src/pages-and-resources/teams/GroupEditor.jsx", - "line": 47, - "column": 14, - "index": 1825 + "filePath": "src/files-and-videos/videos-page/transcript-settings/Cielo24Form.jsx", + "line": 68, + "column": 12, + "index": 2843 }, { - "filePath": "src/pages-and-resources/teams/GroupEditor.jsx", - "line": 50, - "column": 14, - "index": 1977 + "filePath": "src/files-and-videos/videos-page/transcript-settings/Cielo24Form.jsx", + "line": 90, + "column": 6, + "index": 3606 }, { - "filePath": "src/pages-and-resources/teams/Settings.jsx", - "line": 147, - "column": 20, - "index": 5377 + "filePath": "src/files-and-videos/videos-page/transcript-settings/Cielo24Form.jsx", + "line": 96, + "column": 6, + "index": 3861 }, { - "filePath": "src/schedule-and-details/basic-section/index.jsx", - "line": 119, - "column": 10, - "index": 3349 + "filePath": "src/files-and-videos/videos-page/transcript-settings/ThreePlayMediaForm.jsx", + "line": 38, + "column": 8, + "index": 1152 }, { - "filePath": "src/schedule-and-details/index.jsx", - "line": 333, - "column": 14, - "index": 11891 + "filePath": "src/files-and-videos/videos-page/transcript-settings/ThreePlayMediaForm.jsx", + "line": 49, + "column": 8, + "index": 1648 }, { - "filePath": "src/schedule-and-details/instructors-section/index.jsx", - "line": 72, + "filePath": "src/files-and-videos/videos-page/transcript-settings/ThreePlayMediaForm.jsx", + "line": 62, + "column": 12, + "index": 2262 + }, + { + "filePath": "src/files-and-videos/videos-page/transcript-settings/ThreePlayMediaForm.jsx", + "line": 105, "column": 6, - "index": 1986 + "index": 4075 }, { - "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", - "line": 95, - "column": 8, - "index": 3694 + "filePath": "src/files-and-videos/videos-page/transcript-settings/ThreePlayMediaForm.jsx", + "line": 111, + "column": 6, + "index": 4339 }, { - "filePath": "src/schedule-and-details/introducing-section/introduction-video/index.jsx", - "line": 38, + "filePath": "src/generic/configure-modal/AdvancedTab.jsx", + "line": 179, "column": 10, - "index": 1263 + "index": 5629 }, { - "filePath": "src/schedule-and-details/learning-outcomes-section/index.jsx", - "line": 43, - "column": 6, - "index": 1339 + "filePath": "src/generic/configure-modal/AdvancedTab.jsx", + "line": 195, + "column": 10, + "index": 6165 }, { - "filePath": "src/schedule-and-details/learning-outcomes-section/index.jsx", - "line": 61, - "column": 6, - "index": 1887 + "filePath": "src/generic/configure-modal/BasicTab.jsx", + "line": 60, + "column": 12, + "index": 1839 }, { - "filePath": "src/schedule-and-details/license-section/license-selector/index.jsx", - "line": 37, + "filePath": "src/generic/configure-modal/ConfigureModal.jsx", + "line": 288, + "column": 16, + "index": 9192 + }, + { + "filePath": "src/generic/configure-modal/PrereqSettings.jsx", + "line": 36, "column": 8, - "index": 1044 + "index": 912 }, { - "filePath": "src/studio-home/organization-section/index.jsx", - "line": 66, - "column": 6, - "index": 2427 + "filePath": "src/generic/configure-modal/UnitTab.jsx", + "line": 63, + "column": 8, + "index": 1765 }, { - "filePath": "src/studio-home/processing-courses/course-item/index.jsx", - "line": 74, + "filePath": "src/generic/configure-modal/UnitTab.jsx", + "line": 92, "column": 12, - "index": 2441 + "index": 2920 }, { - "filePath": "src/studio-home/StudioHome.jsx", - "line": 67, - "column": 8, - "index": 1875 + "filePath": "src/generic/configure-modal/UnitTab.jsx", + "line": 101, + "column": 18, + "index": 3399 }, { - "filePath": "src/studio-home/StudioHome.jsx", - "line": 85, - "column": 6, - "index": 2381 + "filePath": "src/generic/course-upload-image/index.jsx", + "line": 108, + "column": 4, + "index": 2810 }, { - "filePath": "src/studio-home/tabs-section/courses-tab/contact-administrator/index.jsx", - "line": 31, - "column": 14, - "index": 1070 + "filePath": "src/generic/create-or-rerun-course/CreateOrRerunCourseForm.jsx", + "line": 225, + "column": 10, + "index": 7107 }, { - "filePath": "src/taxonomy/delete-dialog/index.jsx", - "line": 77, - "column": 10, - "index": 2269 + "filePath": "src/generic/datepicker-control/DatepickerControl.jsx", + "line": 37, + "column": 4, + "index": 910 }, { - "filePath": "src/taxonomy/export-modal/index.jsx", - "line": 71, - "column": 10, - "index": 2087 + "filePath": "src/generic/FormSwitchGroup.jsx", + "line": 24, + "column": 4, + "index": 561 }, { - "filePath": "src/taxonomy/TaxonomyListPage.jsx", - "line": 60, + "filePath": "src/generic/modal-dropzone/ModalDropzone.jsx", + "line": 95, + "column": 8, + "index": 2101 + }, + { + "filePath": "src/grading-settings/assignment-section/assignments/AssignmentItem.jsx", + "line": 25, + "column": 4, + "index": 438 + }, + { + "filePath": "src/grading-settings/assignment-section/assignments/AssignmentTypeName.jsx", + "line": 17, "column": 6, - "index": 1873 - } - ], - "StatefulButton": [ + "index": 535 + }, { - "filePath": "src/advanced-settings/AdvancedSettings.jsx", - "line": 256, - "column": 12, - "index": 10570 + "filePath": "src/grading-settings/credit-section/index.jsx", + "line": 34, + "column": 4, + "index": 848 }, { - "filePath": "src/custom-pages/CustomPageCard.jsx", - "line": 113, + "filePath": "src/grading-settings/deadline-section/index.jsx", + "line": 43, + "column": 4, + "index": 1289 + }, + { + "filePath": "src/group-configurations/content-groups-section/ContentGroupForm.jsx", + "line": 60, + "column": 14, + "index": 1718 + }, + { + "filePath": "src/group-configurations/experiment-configurations-section/ExperimentForm.jsx", + "line": 54, "column": 12, - "index": 3607 + "index": 1565 }, { - "filePath": "src/custom-pages/CustomPages.jsx", - "line": 195, + "filePath": "src/group-configurations/experiment-configurations-section/ExperimentForm.jsx", + "line": 76, "column": 12, - "index": 6919 + "index": 2384 }, { - "filePath": "src/generic/create-or-rerun-course/CreateOrRerunCourseForm.jsx", - "line": 261, - "column": 10, - "index": 8303 + "filePath": "src/group-configurations/experiment-configurations-section/ExperimentFormGroups.jsx", + "line": 28, + "column": 4, + "index": 714 }, { - "filePath": "src/grading-settings/GradingSettings.jsx", - "line": 248, + "filePath": "src/group-configurations/experiment-configurations-section/ExperimentFormGroups.jsx", + "line": 46, "column": 12, - "index": 10034 + "index": 1398 }, { - "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/apps/lti/LtiConfigForm.jsx", + "line": 99, + "column": 12, + "index": 3874 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/AppConfigFormSaveButton.jsx", - "line": 36, - "column": 6, - "index": 1543 + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/lti/LtiConfigForm.jsx", + "line": 117, + "column": 12, + "index": 4577 }, { - "filePath": "src/pages-and-resources/discussions/app-list/AppList.jsx", - "line": 173, + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/lti/LtiConfigForm.jsx", + "line": 134, "column": 12, - "index": 5967 + "index": 5254 }, { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 609, + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/lti/LtiConfigForm.jsx", + "line": 152, "column": 12, - "index": 23374 + "index": 6028 }, { - "filePath": "src/pages-and-resources/xpert-unit-summary/settings-modal/SettingsModal.jsx", - "line": 162, - "column": 6, - "index": 4488 + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-restrictions/RestrictDatesInput.jsx", + "line": 39, + "column": 4, + "index": 1026 }, { - "filePath": "src/pages-and-resources/xpert-unit-summary/settings-modal/SettingsModal.jsx", - "line": 314, - "column": 16, - "index": 8972 + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-topics/TopicItem.jsx", + "line": 112, + "column": 8, + "index": 3157 }, { - "filePath": "src/schedule-and-details/index.jsx", - "line": 341, - "column": 12, - "index": 12145 + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/DivisionByGroupFields.jsx", + "line": 109, + "column": 22, + "index": 3807 }, { - "filePath": "src/studio-home/collapsible-state-with-action/index.jsx", - "line": 140, - "column": 10, - "index": 4925 - } - ], - "Warning": [ - { - "filePath": "src/advanced-settings/AdvancedSettings.jsx", - "line": 264, - "column": 16, - "index": 10882 + "filePath": "src/schedule-and-details/details-section/index.jsx", + "line": 24, + "column": 6, + "index": 797 }, { - "filePath": "src/advanced-settings/setting-card/SettingCard.jsx", - "line": 108, - "column": 29, - "index": 3202 + "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", + "line": 21, + "column": 12, + "index": 564 }, { - "filePath": "src/grading-settings/assignment-section/index.jsx", - "line": 143, - "column": 22, - "index": 5550 + "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", + "line": 35, + "column": 12, + "index": 1148 }, { - "filePath": "src/grading-settings/assignment-section/index.jsx", - "line": 164, - "column": 22, - "index": 6513 + "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", + "line": 49, + "column": 12, + "index": 1737 }, { - "filePath": "src/grading-settings/GradingSettings.jsx", - "line": 256, - "column": 16, - "index": 10371 + "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", + "line": 64, + "column": 12, + "index": 2403 }, { - "filePath": "src/taxonomy/delete-dialog/index.jsx", - "line": 50, - "column": 21, - "index": 1238 - } - ], - "AlertModal": [ + "filePath": "src/schedule-and-details/introducing-section/extended-course-details/index.jsx", + "line": 55, + "column": 8, + "index": 1709 + }, { - "filePath": "src/advanced-settings/modal-error/ModalError.jsx", - "line": 12, - "column": 2, - "index": 413 + "filePath": "src/schedule-and-details/introducing-section/index.jsx", + "line": 91, + "column": 8, + "index": 2567 }, { - "filePath": "src/course-outline/delete-modal/DeleteModal.jsx", - "line": 21, - "column": 4, - "index": 586 + "filePath": "src/schedule-and-details/introducing-section/index.jsx", + "line": 112, + "column": 10, + "index": 3307 }, { - "filePath": "src/course-outline/enable-highlights-modal/EnableHighlightsModal.jsx", - "line": 23, - "column": 4, - "index": 512 + "filePath": "src/schedule-and-details/introducing-section/index.jsx", + "line": 121, + "column": 12, + "index": 3731 }, { - "filePath": "src/course-team/info-modal/InfoModal.jsx", - "line": 36, + "filePath": "src/schedule-and-details/introducing-section/introduction-video/index.jsx", + "line": 14, "column": 4, - "index": 730 + "index": 395 }, { - "filePath": "src/course-updates/delete-modal/DeleteModal.jsx", - "line": 16, + "filePath": "src/schedule-and-details/learning-outcomes-section/index.jsx", + "line": 31, "column": 4, - "index": 327 + "index": 934 }, { - "filePath": "src/custom-pages/CustomPageCard.jsx", - "line": 104, - "column": 6, - "index": 3227 + "filePath": "src/schedule-and-details/license-section/license-commons-options/index.jsx", + "line": 60, + "column": 10, + "index": 1879 }, { - "filePath": "src/files-and-videos/generic/FileTable.jsx", - "line": 274, - "column": 6, - "index": 8041 + "filePath": "src/schedule-and-details/license-section/license-display/index.jsx", + "line": 11, + "column": 2, + "index": 371 }, { - "filePath": "src/generic/modal-error/ModalError.jsx", - "line": 9, - "column": 2, - "index": 292 + "filePath": "src/schedule-and-details/license-section/license-selector/index.jsx", + "line": 48, + "column": 4, + "index": 1312 }, { - "filePath": "src/pages-and-resources/discussions/app-list/AppList.jsx", - "line": 162, + "filePath": "src/schedule-and-details/pacing-section/index.jsx", + "line": 21, "column": 6, - "index": 5497 - } - ], - "ActionRow": [ + "index": 649 + }, { - "filePath": "src/advanced-settings/modal-error/ModalError.jsx", - "line": 17, - "column": 6, - "index": 548 + "filePath": "src/schedule-and-details/requirements-section/entrance-exam/index.jsx", + "line": 27, + "column": 4, + "index": 779 }, { - "filePath": "src/advanced-settings/setting-card/SettingCard.jsx", - "line": 65, - "column": 14, - "index": 1658 + "filePath": "src/schedule-and-details/requirements-section/grade-requirements/index.jsx", + "line": 14, + "column": 2, + "index": 346 }, { - "filePath": "src/course-outline/configure-modal/ConfigureModal.jsx", - "line": 76, - "column": 8, - "index": 2623 + "filePath": "src/schedule-and-details/requirements-section/index.jsx", + "line": 30, + "column": 4, + "index": 934 }, { - "filePath": "src/course-outline/delete-modal/DeleteModal.jsx", - "line": 26, + "filePath": "src/schedule-and-details/requirements-section/index.jsx", + "line": 69, "column": 8, - "index": 733 + "index": 2344 }, { - "filePath": "src/course-outline/enable-highlights-modal/EnableHighlightsModal.jsx", - "line": 30, + "filePath": "src/schedule-and-details/schedule-section/certificate-display-row/CertificateDisplayRow.jsx", + "line": 124, "column": 8, - "index": 685 + "index": 3821 }, { - "filePath": "src/course-outline/highlights-modal/HighlightsModal.jsx", - "line": 73, - "column": 14, - "index": 2422 + "filePath": "src/studio-home/organization-section/index.jsx", + "line": 48, + "column": 6, + "index": 1655 }, { - "filePath": "src/course-outline/publish-modal/PublishModal.jsx", - "line": 66, - "column": 8, - "index": 2100 + "filePath": "src/taxonomy/delete-dialog/index.jsx", + "line": 61, + "column": 10, + "index": 1787 }, { - "filePath": "src/course-rerun/index.jsx", - "line": 57, - "column": 16, - "index": 1686 + "filePath": "src/taxonomy/export-modal/index.jsx", + "line": 45, + "column": 10, + "index": 1286 }, { - "filePath": "src/course-team/add-user-form/AddUserForm.jsx", - "line": 41, - "column": 12, - "index": 1407 + "filePath": "src/taxonomy/import-tags/ImportTagsWizard.jsx", + "line": 196, + "column": 8, + "index": 5693 }, { - "filePath": "src/course-team/info-modal/InfoModal.jsx", - "line": 42, + "filePath": "src/taxonomy/import-tags/ImportTagsWizard.jsx", + "line": 200, "column": 8, - "index": 882 + "index": 5938 }, { - "filePath": "src/course-updates/delete-modal/DeleteModal.jsx", - "line": 21, - "column": 8, - "index": 471 + "filePath": "src/taxonomy/manage-orgs/ManageOrgsModal.jsx", + "line": 173, + "column": 10, + "index": 4612 }, { - "filePath": "src/course-updates/update-form/UpdateForm.jsx", - "line": 111, - "column": 12, - "index": 3933 + "filePath": "src/taxonomy/manage-orgs/ManageOrgsModal.jsx", + "line": 194, + "column": 10, + "index": 5582 }, { - "filePath": "src/custom-pages/CustomPageCard.jsx", - "line": 68, - "column": 6, - "index": 1726 + "filePath": "src/textbooks/textbook-form/TextbookForm.jsx", + "line": 67, + "column": 12, + "index": 1901 }, { - "filePath": "src/custom-pages/CustomPageCard.jsx", - "line": 109, - "column": 10, - "index": 3424 + "filePath": "src/textbooks/textbook-form/TextbookForm.jsx", + "line": 86, + "column": 22, + "index": 2856 }, { - "filePath": "src/custom-pages/CustomPages.jsx", - "line": 125, + "filePath": "src/textbooks/textbook-form/TextbookForm.jsx", + "line": 99, + "column": 22, + "index": 3669 + } + ], + "Form.Label": [ + { + "filePath": "plugins/course-apps/live/BBBSettings.jsx", + "line": 56, "column": 8, - "index": 4160 + "index": 1862 }, { - "filePath": "src/files-and-videos/files-page/FileInfoModalSidebar.jsx", - "line": 58, - "column": 6, - "index": 1429 + "filePath": "plugins/course-apps/proctoring/Settings.jsx", + "line": 313, + "column": 14, + "index": 11823 }, { - "filePath": "src/files-and-videos/files-page/FileInfoModalSidebar.jsx", - "line": 75, - "column": 6, - "index": 1978 + "filePath": "plugins/course-apps/proctoring/Settings.jsx", + "line": 339, + "column": 12, + "index": 12954 }, { - "filePath": "src/files-and-videos/files-page/FileInfoModalSidebar.jsx", - "line": 89, - "column": 6, - "index": 2410 + "filePath": "plugins/course-apps/proctoring/Settings.jsx", + "line": 370, + "column": 14, + "index": 14417 }, { - "filePath": "src/files-and-videos/generic/FileTable.jsx", - "line": 279, - "column": 10, - "index": 8252 + "filePath": "plugins/course-apps/proctoring/Settings.jsx", + "line": 394, + "column": 14, + "index": 15541 }, { - "filePath": "src/files-and-videos/generic/table-components/GalleryCard.jsx", - "line": 33, - "column": 10, - "index": 747 + "filePath": "plugins/course-apps/teams/GroupEditor.jsx", + "line": 104, + "column": 14, + "index": 4441 }, { - "filePath": "src/files-and-videos/generic/table-components/sort-and-filter-modal/SortAndFilterModal.jsx", - "line": 158, - "column": 8, - "index": 4598 + "filePath": "plugins/course-apps/teams/GroupEditor.jsx", + "line": 133, + "column": 21, + "index": 5789 }, { - "filePath": "src/files-and-videos/videos-page/transcript-settings/TranscriptSettings.jsx", - "line": 63, + "filePath": "src/certificates/certificate-details/CertificateDetailsForm.jsx", + "line": 29, "column": 12, - "index": 2070 + "index": 1022 }, { - "filePath": "src/files-and-videos/videos-page/VideosPage.jsx", - "line": 196, - "column": 8, - "index": 5991 + "filePath": "src/course-outline/status-bar/StatusBar.jsx", + "line": 160, + "column": 12, + "index": 5703 }, { - "filePath": "src/generic/create-or-rerun-course/CreateOrRerunCourseForm.jsx", - "line": 254, - "column": 8, - "index": 8061 + "filePath": "src/course-team/add-user-form/AddUserForm.jsx", + "line": 29, + "column": 14, + "index": 839 }, { - "filePath": "src/generic/modal-error/ModalError.jsx", - "line": 15, + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/AnswerWidget/components/Checker/index.jsx", + "line": 25, "column": 6, - "index": 404 + "index": 546 }, { - "filePath": "src/generic/sub-header/SubHeader.jsx", - "line": 22, - "column": 10, - "index": 552 + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/AnswerWidget/components/Feedback/FeedbackControl.jsx", + "line": 23, + "column": 4, + "index": 582 }, { - "filePath": "src/generic/sub-header/SubHeader.jsx", - "line": 28, - "column": 8, - "index": 718 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", + "line": 51, + "column": 20, + "index": 1436 }, { - "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", - "line": 83, - "column": 6, - "index": 2459 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", + "line": 70, + "column": 20, + "index": 2202 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/AppConfigForm.jsx", - "line": 135, - "column": 10, - "index": 4239 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", + "line": 95, + "column": 20, + "index": 3273 }, { - "filePath": "src/pages-and-resources/discussions/app-list/AppList.jsx", - "line": 169, - "column": 10, - "index": 5749 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", + "line": 121, + "column": 20, + "index": 4379 }, { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 605, - "column": 10, - "index": 23178 + "filePath": "src/editors/sharedComponents/ImageUploadModal/ImageSettingsModal/AltTextControls.jsx", + "line": 29, + "column": 4, + "index": 837 }, { - "filePath": "src/pages-and-resources/xpert-unit-summary/settings-modal/SettingsModal.jsx", - "line": 90, + "filePath": "src/editors/sharedComponents/ImageUploadModal/ImageSettingsModal/AltTextControls.jsx", + "line": 52, "column": 6, - "index": 2715 + "index": 1562 }, { - "filePath": "src/schedule-and-details/license-section/license-commons-options/index.jsx", - "line": 67, - "column": 12, - "index": 2125 + "filePath": "src/editors/sharedComponents/ImageUploadModal/ImageSettingsModal/DimensionControls.jsx", + "line": 39, + "column": 4, + "index": 997 }, { - "filePath": "src/studio-home/card-item/index.jsx", - "line": 44, + "filePath": "src/files-and-videos/videos-page/transcript-settings/Cielo24Form.jsx", + "line": 30, "column": 10, - "index": 1506 + "index": 1145 }, { - "filePath": "src/studio-home/processing-courses/course-item/index.jsx", - "line": 38, + "filePath": "src/files-and-videos/videos-page/transcript-settings/Cielo24Form.jsx", + "line": 41, + "column": 10, + "index": 1619 + }, + { + "filePath": "src/files-and-videos/videos-page/transcript-settings/Cielo24Form.jsx", + "line": 54, "column": 14, - "index": 1005 + "index": 2196 }, { - "filePath": "src/studio-home/processing-courses/course-item/index.jsx", - "line": 65, + "filePath": "src/files-and-videos/videos-page/transcript-settings/Cielo24Form.jsx", + "line": 69, "column": 14, - "index": 1963 + "index": 2880 }, { - "filePath": "src/taxonomy/delete-dialog/index.jsx", - "line": 73, + "filePath": "src/files-and-videos/videos-page/transcript-settings/Cielo24Form.jsx", + "line": 91, "column": 8, - "index": 2088 + "index": 3637 }, { - "filePath": "src/taxonomy/export-modal/index.jsx", - "line": 67, + "filePath": "src/files-and-videos/videos-page/transcript-settings/Cielo24Form.jsx", + "line": 97, "column": 8, - "index": 1904 - } - ], - "Alert": [ - { - "filePath": "src/advanced-settings/modal-error/ModalErrorListItem.jsx", - "line": 13, - "column": 6, - "index": 444 + "index": 3892 }, { - "filePath": "src/course-outline/configure-modal/VisibilityTab.jsx", - "line": 22, + "filePath": "src/files-and-videos/videos-page/transcript-settings/ThreePlayMediaForm.jsx", + "line": 39, "column": 10, - "index": 768 - }, - { - "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 + "index": 1185 }, { - "filePath": "src/generic/SaveFormConnectionErrorAlert.jsx", - "line": 9, - "column": 2, - "index": 297 + "filePath": "src/files-and-videos/videos-page/transcript-settings/ThreePlayMediaForm.jsx", + "line": 50, + "column": 10, + "index": 1681 }, { - "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", - "line": 214, - "column": 16, - "index": 6526 + "filePath": "src/files-and-videos/videos-page/transcript-settings/ThreePlayMediaForm.jsx", + "line": 63, + "column": 14, + "index": 2299 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/DivisionByGroupFields.jsx", - "line": 73, + "filePath": "src/files-and-videos/videos-page/transcript-settings/ThreePlayMediaForm.jsx", + "line": 106, "column": 8, - "index": 2216 + "index": 4106 }, { - "filePath": "src/pages-and-resources/discussions/DiscussionsSettings.jsx", - "line": 124, - "column": 18, - "index": 4028 + "filePath": "src/files-and-videos/videos-page/transcript-settings/ThreePlayMediaForm.jsx", + "line": 112, + "column": 8, + "index": 4370 }, { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 266, + "filePath": "src/generic/configure-modal/AdvancedTab.jsx", + "line": 180, "column": 12, - "index": 10161 + "index": 5654 }, { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 434, - "column": 6, - "index": 16568 + "filePath": "src/generic/configure-modal/AdvancedTab.jsx", + "line": 196, + "column": 12, + "index": 6190 }, { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 461, - "column": 6, - "index": 17298 + "filePath": "src/generic/configure-modal/BasicTab.jsx", + "line": 61, + "column": 14, + "index": 1866 }, { - "filePath": "src/pages-and-resources/xpert-unit-summary/settings-modal/SettingsModal.jsx", - "line": 327, - "column": 16, - "index": 9481 - } - ], - "Icon": [ - { - "filePath": "src/advanced-settings/modal-error/ModalErrorListItem.jsx", - "line": 15, + "filePath": "src/generic/configure-modal/PrereqSettings.jsx", + "line": 37, "column": 10, - "index": 527 + "index": 965 }, { - "filePath": "src/advanced-settings/setting-card/SettingCard.jsx", - "line": 71, - "column": 26, - "index": 1869 + "filePath": "src/generic/configure-modal/PrereqSettings.jsx", + "line": 64, + "column": 21, + "index": 1841 }, { - "filePath": "src/content-tags-drawer/ContentTagsDropDownSelector.jsx", - "line": 102, - "column": 24, - "index": 3901 + "filePath": "src/generic/configure-modal/PrereqSettings.jsx", + "line": 73, + "column": 21, + "index": 2202 }, { - "filePath": "src/course-outline/card-header/CardHeader.jsx", - "line": 103, - "column": 18, - "index": 2998 + "filePath": "src/generic/configure-modal/UnitTab.jsx", + "line": 66, + "column": 10, + "index": 1911 }, { - "filePath": "src/course-outline/card-header/CardHeader.jsx", - "line": 132, - "column": 20, - "index": 4071 + "filePath": "src/generic/configure-modal/UnitTab.jsx", + "line": 93, + "column": 14, + "index": 2984 }, { - "filePath": "src/course-team/course-team-member/CourseTeamMember.jsx", - "line": 59, + "filePath": "src/generic/configure-modal/UnitTab.jsx", + "line": 114, "column": 22, - "index": 2051 + "index": 3903 }, { - "filePath": "src/course-updates/course-handouts/CourseHandouts.jsx", - "line": 19, - "column": 18, - "index": 751 + "filePath": "src/generic/course-upload-image/index.jsx", + "line": 109, + "column": 6, + "index": 2865 }, { - "filePath": "src/course-updates/course-update/CourseUpdate.jsx", - "line": 25, + "filePath": "src/generic/create-or-rerun-course/CreateOrRerunCourseForm.jsx", + "line": 231, "column": 12, - "index": 825 + "index": 7318 }, { - "filePath": "src/course-updates/course-update/CourseUpdate.jsx", - "line": 33, - "column": 20, - "index": 1232 + "filePath": "src/generic/datepicker-control/DatepickerControl.jsx", + "line": 38, + "column": 6, + "index": 977 }, { - "filePath": "src/course-updates/course-update/CourseUpdate.jsx", - "line": 41, - "column": 20, - "index": 1529 + "filePath": "src/generic/FormSwitchGroup.jsx", + "line": 30, + "column": 10, + "index": 771 }, { - "filePath": "src/course-updates/update-form/UpdateForm.jsx", - "line": 68, - "column": 18, - "index": 2009 + "filePath": "src/grading-settings/assignment-section/assignments/AssignmentItem.jsx", + "line": 29, + "column": 6, + "index": 565 }, { - "filePath": "src/course-updates/update-form/UpdateForm.jsx", - "line": 94, - "column": 20, - "index": 3172 + "filePath": "src/grading-settings/assignment-section/assignments/AssignmentTypeName.jsx", + "line": 21, + "column": 8, + "index": 670 }, { - "filePath": "src/custom-pages/CustomPageCard.jsx", - "line": 61, - "column": 15, - "index": 1604 + "filePath": "src/grading-settings/credit-section/index.jsx", + "line": 39, + "column": 6, + "index": 990 }, { - "filePath": "src/custom-pages/CustomPageCard.jsx", - "line": 78, - "column": 18, - "index": 2153 + "filePath": "src/grading-settings/deadline-section/index.jsx", + "line": 47, + "column": 6, + "index": 1417 }, { - "filePath": "src/custom-pages/CustomPageCard.jsx", - "line": 88, - "column": 18, - "index": 2608 + "filePath": "src/group-configurations/experiment-configurations-section/ExperimentForm.jsx", + "line": 77, + "column": 14, + "index": 2448 }, { - "filePath": "src/custom-pages/CustomPageCard.jsx", - "line": 98, - "column": 18, - "index": 3034 + "filePath": "src/group-configurations/experiment-configurations-section/ExperimentFormGroups.jsx", + "line": 29, + "column": 6, + "index": 770 }, { - "filePath": "src/custom-pages/CustomPages.jsx", - "line": 96, - "column": 15, - "index": 3124 + "filePath": "src/schedule-and-details/details-section/index.jsx", + "line": 25, + "column": 8, + "index": 866 }, { - "filePath": "src/custom-pages/CustomPages.jsx", - "line": 97, - "column": 15, - "index": 3159 + "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", + "line": 22, + "column": 14, + "index": 630 }, { - "filePath": "src/files-and-videos/files-page/FileInfoModalSidebar.jsx", - "line": 67, - "column": 18, - "index": 1687 + "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", + "line": 36, + "column": 14, + "index": 1214 }, { - "filePath": "src/files-and-videos/files-page/FileInfoModalSidebar.jsx", - "line": 84, - "column": 18, - "index": 2236 + "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", + "line": 50, + "column": 14, + "index": 1803 }, { - "filePath": "src/files-and-videos/files-page/FileInfoModalSidebar.jsx", - "line": 98, - "column": 18, - "index": 2793 + "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", + "line": 65, + "column": 14, + "index": 2469 }, { - "filePath": "src/files-and-videos/files-page/FileThumbnail.jsx", - "line": 47, + "filePath": "src/schedule-and-details/introducing-section/extended-course-details/index.jsx", + "line": 56, "column": 10, - "index": 1095 - }, - { - "filePath": "src/files-and-videos/generic/FileMenu.jsx", - "line": 30, - "column": 14, - "index": 635 + "index": 1780 }, { - "filePath": "src/files-and-videos/generic/InfoModal.jsx", - "line": 63, - "column": 16, - "index": 1658 + "filePath": "src/schedule-and-details/introducing-section/index.jsx", + "line": 92, + "column": 10, + "index": 2620 }, { - "filePath": "src/files-and-videos/generic/table-components/GalleryCard.jsx", - "line": 78, - "column": 45, - "index": 2512 + "filePath": "src/schedule-and-details/introducing-section/index.jsx", + "line": 113, + "column": 12, + "index": 3362 }, { - "filePath": "src/files-and-videos/generic/table-components/table-custom-columns/AccessColumn.jsx", - "line": 24, - "column": 8, - "index": 633 + "filePath": "src/schedule-and-details/introducing-section/index.jsx", + "line": 122, + "column": 14, + "index": 3788 }, { - "filePath": "src/files-and-videos/generic/table-components/table-custom-columns/AccessColumn.jsx", - "line": 26, - "column": 8, - "index": 685 + "filePath": "src/schedule-and-details/introducing-section/introduction-video/index.jsx", + "line": 15, + "column": 6, + "index": 444 }, { - "filePath": "src/files-and-videos/generic/table-components/table-custom-columns/ActiveColumn.jsx", - "line": 9, - "column": 35, - "index": 317 + "filePath": "src/schedule-and-details/learning-outcomes-section/index.jsx", + "line": 35, + "column": 6, + "index": 1036 }, { - "filePath": "src/files-and-videos/generic/table-components/table-custom-columns/MoreInfoColumn.jsx", - "line": 42, - "column": 16, - "index": 811 + "filePath": "src/schedule-and-details/pacing-section/index.jsx", + "line": 23, + "column": 10, + "index": 701 }, { - "filePath": "src/files-and-videos/generic/table-components/table-custom-columns/TranscriptColumn.jsx", - "line": 16, - "column": 8, - "index": 684 + "filePath": "src/schedule-and-details/requirements-section/entrance-exam/index.jsx", + "line": 28, + "column": 6, + "index": 828 }, { - "filePath": "src/files-and-videos/generic/UsageMetricsMessage.jsx", - "line": 40, - "column": 8, - "index": 1224 + "filePath": "src/schedule-and-details/requirements-section/grade-requirements/index.jsx", + "line": 19, + "column": 4, + "index": 473 }, { - "filePath": "src/files-and-videos/videos-page/info-sidebar/transcript-item/LanguageSelect.jsx", - "line": 33, - "column": 18, - "index": 1087 + "filePath": "src/schedule-and-details/requirements-section/index.jsx", + "line": 34, + "column": 6, + "index": 1055 }, { - "filePath": "src/files-and-videos/videos-page/info-sidebar/transcript-item/LanguageSelect.jsx", - "line": 52, + "filePath": "src/schedule-and-details/requirements-section/index.jsx", + "line": 70, "column": 10, - "index": 1846 + "index": 2397 }, { - "filePath": "src/files-and-videos/videos-page/info-sidebar/transcript-item/Transcript.jsx", - "line": 97, - "column": 22, - "index": 2919 + "filePath": "src/schedule-and-details/schedule-section/certificate-display-row/CertificateDisplayRow.jsx", + "line": 125, + "column": 10, + "index": 3874 }, { - "filePath": "src/files-and-videos/videos-page/info-sidebar/transcript-item/TranscriptMenu.jsx", - "line": 20, - "column": 14, - "index": 558 + "filePath": "src/taxonomy/delete-dialog/index.jsx", + "line": 62, + "column": 12, + "index": 1812 }, { - "filePath": "src/files-and-videos/videos-page/transcript-settings/FormDropdown.jsx", + "filePath": "src/taxonomy/export-modal/index.jsx", "line": 46, - "column": 16, - "index": 1495 - }, - { - "filePath": "src/files-and-videos/videos-page/transcript-settings/ThreePlayMediaForm.jsx", - "line": 89, - "column": 22, - "index": 3589 + "column": 12, + "index": 1311 }, { - "filePath": "src/files-and-videos/videos-page/transcript-settings/TranscriptSettings.jsx", - "line": 69, - "column": 28, - "index": 2278 + "filePath": "src/taxonomy/import-tags/ImportTagsWizard.jsx", + "line": 197, + "column": 10, + "index": 5716 }, { - "filePath": "src/files-and-videos/videos-page/transcript-settings/TranscriptSettings.jsx", - "line": 81, - "column": 44, - "index": 2784 + "filePath": "src/taxonomy/import-tags/ImportTagsWizard.jsx", + "line": 201, + "column": 10, + "index": 5961 }, { - "filePath": "src/files-and-videos/videos-page/transcript-settings/TranscriptSettings.jsx", - "line": 109, - "column": 22, - "index": 3981 + "filePath": "src/taxonomy/manage-orgs/ManageOrgsModal.jsx", + "line": 176, + "column": 14, + "index": 4741 }, { - "filePath": "src/files-and-videos/videos-page/VideoThumbnail.jsx", - "line": 64, + "filePath": "src/taxonomy/manage-orgs/ManageOrgsModal.jsx", + "line": 195, "column": 12, - "index": 1966 + "index": 5607 }, { - "filePath": "src/generic/CollapsableEditor.jsx", - "line": 34, - "column": 63, - "index": 906 + "filePath": "src/textbooks/textbook-form/TextbookForm.jsx", + "line": 68, + "column": 14, + "index": 1961 }, { - "filePath": "src/generic/CollapsableEditor.jsx", - "line": 47, - "column": 22, - "index": 1305 + "filePath": "src/textbooks/textbook-form/TextbookForm.jsx", + "line": 87, + "column": 24, + "index": 2926 }, { - "filePath": "src/generic/CollapsableEditor.jsx", - "line": 53, - "column": 65, - "index": 1486 + "filePath": "src/textbooks/textbook-form/TextbookForm.jsx", + "line": 101, + "column": 26, + "index": 3814 + } + ], + "Form.Control": [ + { + "filePath": "plugins/course-apps/live/BBBSettings.jsx", + "line": 63, + "column": 8, + "index": 2130 }, { - "filePath": "src/generic/course-stepper/index.jsx", - "line": 78, + "filePath": "plugins/course-apps/proctoring/Settings.jsx", + "line": 316, "column": 14, - "index": 2157 + "index": 12005 }, { - "filePath": "src/generic/course-upload-image/index.jsx", - "line": 72, - "column": 16, - "index": 1919 + "filePath": "plugins/course-apps/proctoring/Settings.jsx", + "line": 342, + "column": 12, + "index": 13125 }, { - "filePath": "src/generic/datepicker-control/DatepickerControl.jsx", - "line": 48, - "column": 10, - "index": 1351 + "filePath": "src/accessibility-page/AccessibilityForm/AccessibilityForm.jsx", + "line": 105, + "column": 12, + "index": 3215 }, { - "filePath": "src/generic/processing-notification/index.jsx", - "line": 18, - "column": 4, - "index": 513 + "filePath": "src/advanced-settings/setting-card/SettingCard.jsx", + "line": 96, + "column": 14, + "index": 2805 }, { - "filePath": "src/grading-settings/grading-scale/GradingScale.jsx", - "line": 198, - "column": 16, - "index": 6416 + "filePath": "src/certificates/certificate-details/CertificateDetailsForm.jsx", + "line": 30, + "column": 12, + "index": 1117 }, { - "filePath": "src/pages-and-resources/live/Settings.jsx", - "line": 110, - "column": 20, - "index": 4513 + "filePath": "src/certificates/certificate-signatories/signatory/SignatoryForm.jsx", + "line": 104, + "column": 12, + "index": 3515 }, { - "filePath": "src/pages-and-resources/pages/PageCard.jsx", - "line": 44, - "column": 20, - "index": 1408 + "filePath": "src/certificates/certificate-signatories/signatory/SignatoryForm.jsx", + "line": 122, + "column": 14, + "index": 4225 }, { - "filePath": "src/pages-and-resources/pages/PageCard.jsx", - "line": 54, - "column": 16, - "index": 1686 + "filePath": "src/course-outline/card-header/CardHeader.jsx", + "line": 113, + "column": 12, + "index": 2989 }, { - "filePath": "src/pages-and-resources/xpert-unit-summary/settings-modal/SettingsModal.jsx", - "line": 170, - "column": 19, - "index": 4748 + "filePath": "src/course-outline/status-bar/StatusBar.jsx", + "line": 165, + "column": 14, + "index": 5902 }, { - "filePath": "src/pages-and-resources/xpert-unit-summary/settings-modal/SettingsModal.jsx", - "line": 171, - "column": 19, - "index": 4793 + "filePath": "src/course-unit/header-title/HeaderTitle.jsx", + "line": 56, + "column": 12, + "index": 2007 }, { - "filePath": "src/pages-and-resources/xpert-unit-summary/settings-modal/SettingsModal.jsx", - "line": 172, - "column": 18, - "index": 4863 + "filePath": "src/editors/containers/EditorContainer/components/TitleHeader/EditableHeader.jsx", + "line": 16, + "column": 4, + "index": 343 }, { - "filePath": "src/schedule-and-details/license-section/license-icons/index.jsx", - "line": 29, + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/AnswerWidget/AnswerOption.jsx", + "line": 63, "column": 8, - "index": 889 + "index": 2119 }, { - "filePath": "src/schedule-and-details/license-section/license-icons/index.jsx", - "line": 37, + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/AnswerWidget/AnswerOption.jsx", + "line": 77, "column": 8, - "index": 1127 + "index": 2498 }, { - "filePath": "src/schedule-and-details/license-section/license-icons/index.jsx", - "line": 44, + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/GeneralFeedback/index.jsx", + "line": 28, "column": 8, - "index": 1317 + "index": 927 }, { - "filePath": "src/schedule-and-details/license-section/license-icons/index.jsx", - "line": 51, - "column": 8, - "index": 1518 + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/GroupFeedback/GroupFeedbackRow.jsx", + "line": 22, + "column": 6, + "index": 520 }, { - "filePath": "src/schedule-and-details/license-section/license-icons/index.jsx", - "line": 58, + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/Randomization/index.jsx", + "line": 33, "column": 8, - "index": 1710 + "index": 1072 }, { - "filePath": "src/schedule-and-details/license-section/license-icons/index.jsx", - "line": 65, + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/ScoringCard.jsx", + "line": 50, "column": 8, - "index": 1899 + "index": 1572 }, { - "filePath": "src/schedule-and-details/schedule-section/certificate-display-row/CertificateDisplayRow.jsx", - "line": 101, - "column": 10, - "index": 2980 + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/ScoringCard.jsx", + "line": 63, + "column": 8, + "index": 1980 }, { - "filePath": "src/studio-home/collapsible-state-with-action/index.jsx", - "line": 106, - "column": 12, - "index": 3694 + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/ShowAnswerCard.jsx", + "line": 46, + "column": 8, + "index": 1415 }, { - "filePath": "src/studio-home/collapsible-state-with-action/index.jsx", - "line": 115, - "column": 12, - "index": 3953 + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/ShowAnswerCard.jsx", + "line": 70, + "column": 10, + "index": 2231 }, { - "filePath": "src/studio-home/processing-courses/course-item/index.jsx", - "line": 39, - "column": 16, - "index": 1033 + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/TimerCard.jsx", + "line": 28, + "column": 8, + "index": 812 }, { - "filePath": "src/studio-home/processing-courses/course-item/index.jsx", - "line": 66, - "column": 16, - "index": 1991 + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/Tolerance/index.jsx", + "line": 79, + "column": 8, + "index": 2522 }, { - "filePath": "src/studio-home/StudioHome.jsx", - "line": 112, - "column": 14, - "index": 3039 + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/Tolerance/index.jsx", + "line": 96, + "column": 10, + "index": 3133 }, { - "filePath": "src/studio-home/tabs-section/archived-tab/index.jsx", - "line": 33, - "column": 12, - "index": 865 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/DurationWidget/index.jsx", + "line": 50, + "column": 10, + "index": 1294 }, { - "filePath": "src/studio-home/tabs-section/courses-tab/index.jsx", - "line": 53, - "column": 12, - "index": 1635 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/DurationWidget/index.jsx", + "line": 62, + "column": 10, + "index": 1784 }, { - "filePath": "src/studio-home/tabs-section/libraries-tab/index.jsx", - "line": 33, - "column": 12, - "index": 856 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseSelector.jsx", + "line": 37, + "column": 8, + "index": 934 }, { - "filePath": "src/taxonomy/delete-dialog/index.jsx", - "line": 50, + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoSourceWidget/index.jsx", + "line": 75, "column": 10, - "index": 1227 + "index": 2088 }, { - "filePath": "src/taxonomy/taxonomy-card/TaxonomyCardMenu.jsx", - "line": 32, - "column": 16, - "index": 758 - } - ], - "Error": [ - { - "filePath": "src/advanced-settings/modal-error/ModalErrorListItem.jsx", - "line": 15, - "column": 21, - "index": 538 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoSourceWidget/index.jsx", + "line": 86, + "column": 10, + "index": 2513 }, { - "filePath": "src/files-and-videos/generic/InfoModal.jsx", - "line": 63, - "column": 27, - "index": 1669 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoSourceWidget/index.jsx", + "line": 106, + "column": 12, + "index": 3338 }, { - "filePath": "src/generic/modal-error/ModalError.jsx", - "line": 13, - "column": 10, - "index": 373 + "filePath": "src/editors/sharedComponents/ImageUploadModal/ImageSettingsModal/AltTextControls.jsx", + "line": 32, + "column": 4, + "index": 940 }, { - "filePath": "src/studio-home/StudioHome.jsx", - "line": 112, - "column": 25, - "index": 3050 + "filePath": "src/editors/sharedComponents/ImageUploadModal/ImageSettingsModal/DimensionControls.jsx", + "line": 43, + "column": 6, + "index": 1133 }, { - "filePath": "src/studio-home/tabs-section/archived-tab/index.jsx", - "line": 33, - "column": 23, - "index": 876 + "filePath": "src/editors/sharedComponents/ImageUploadModal/ImageSettingsModal/DimensionControls.jsx", + "line": 50, + "column": 6, + "index": 1381 }, { - "filePath": "src/studio-home/tabs-section/courses-tab/index.jsx", - "line": 53, - "column": 23, - "index": 1646 + "filePath": "src/editors/sharedComponents/SelectionModal/SearchSort.jsx", + "line": 36, + "column": 8, + "index": 770 }, { - "filePath": "src/studio-home/tabs-section/libraries-tab/index.jsx", - "line": 33, - "column": 23, - "index": 867 - } - ], - "useToggle": [ - { - "filePath": "src/advanced-settings/setting-card/SettingCard.jsx", - "line": 33, - "column": 32, - "index": 793 + "filePath": "src/editors/sharedComponents/TypeaheadDropdown/FormGroup.jsx", + "line": 24, + "column": 6, + "index": 628 }, { - "filePath": "src/content-tags-drawer/ContentTagsCollapsible.jsx", - "line": 112, - "column": 32, - "index": 3527 + "filePath": "src/files-and-videos/videos-page/transcript-settings/Cielo24Form.jsx", + "line": 94, + "column": 8, + "index": 3757 }, { - "filePath": "src/course-outline/hooks.jsx", - "line": 53, - "column": 95, - "index": 1718 + "filePath": "src/files-and-videos/videos-page/transcript-settings/Cielo24Form.jsx", + "line": 100, + "column": 8, + "index": 4014 }, { - "filePath": "src/course-outline/hooks.jsx", - "line": 58, - "column": 77, - "index": 2089 + "filePath": "src/files-and-videos/videos-page/transcript-settings/ThreePlayMediaForm.jsx", + "line": 109, + "column": 8, + "index": 4235 }, { - "filePath": "src/course-outline/hooks.jsx", - "line": 59, - "column": 68, - "index": 2175 + "filePath": "src/files-and-videos/videos-page/transcript-settings/ThreePlayMediaForm.jsx", + "line": 115, + "column": 8, + "index": 4502 }, { - "filePath": "src/course-outline/hooks.jsx", - "line": 60, - "column": 74, - "index": 2267 + "filePath": "src/generic/configure-modal/AdvancedTab.jsx", + "line": 183, + "column": 12, + "index": 5767 }, { - "filePath": "src/course-outline/hooks.jsx", - "line": 61, - "column": 65, - "index": 2350 + "filePath": "src/generic/configure-modal/AdvancedTab.jsx", + "line": 199, + "column": 12, + "index": 6307 }, { - "filePath": "src/course-outline/section-card/SectionCard.jsx", - "line": 33, - "column": 44, - "index": 1036 + "filePath": "src/generic/configure-modal/BasicTab.jsx", + "line": 62, + "column": 14, + "index": 1948 }, { - "filePath": "src/course-outline/subsection-card/SubsectionCard.jsx", - "line": 28, - "column": 44, - "index": 942 + "filePath": "src/generic/configure-modal/PrereqSettings.jsx", + "line": 40, + "column": 10, + "index": 1079 }, { - "filePath": "src/course-team/hooks.jsx", - "line": 32, - "column": 59, - "index": 1075 + "filePath": "src/generic/configure-modal/UnitTab.jsx", + "line": 69, + "column": 10, + "index": 2063 }, { - "filePath": "src/course-team/hooks.jsx", - "line": 33, - "column": 46, - "index": 1139 + "filePath": "src/generic/course-upload-image/index.jsx", + "line": 123, + "column": 10, + "index": 3309 }, { - "filePath": "src/course-updates/hooks.jsx", - "line": 23, - "column": 62, - "index": 826 + "filePath": "src/generic/create-or-rerun-course/CreateOrRerunCourseForm.jsx", + "line": 233, + "column": 14, + "index": 7409 }, { - "filePath": "src/course-updates/hooks.jsx", - "line": 24, - "column": 65, - "index": 909 + "filePath": "src/grading-settings/assignment-section/assignments/AssignmentItem.jsx", + "line": 30, + "column": 6, + "index": 630 }, { - "filePath": "src/custom-pages/CustomPageCard.jsx", - "line": 33, - "column": 86, - "index": 827 + "filePath": "src/grading-settings/assignment-section/assignments/AssignmentTypeName.jsx", + "line": 24, + "column": 8, + "index": 804 }, { - "filePath": "src/custom-pages/CustomPages.jsx", - "line": 53, - "column": 32, - "index": 1598 + "filePath": "src/grading-settings/credit-section/index.jsx", + "line": 42, + "column": 6, + "index": 1117 }, { - "filePath": "src/files-and-videos/generic/FileTable.jsx", - "line": 59, - "column": 56, - "index": 1292 + "filePath": "src/grading-settings/deadline-section/index.jsx", + "line": 50, + "column": 6, + "index": 1548 }, { - "filePath": "src/files-and-videos/generic/FileTable.jsx", - "line": 60, - "column": 62, - "index": 1372 + "filePath": "src/group-configurations/content-groups-section/ContentGroupForm.jsx", + "line": 64, + "column": 16, + "index": 1863 }, { - "filePath": "src/files-and-videos/generic/FileTable.jsx", - "line": 61, - "column": 59, - "index": 1449 + "filePath": "src/group-configurations/experiment-configurations-section/ExperimentForm.jsx", + "line": 58, + "column": 14, + "index": 1701 }, { - "filePath": "src/files-and-videos/generic/FileTable.jsx", - "line": 62, - "column": 47, - "index": 1514 + "filePath": "src/group-configurations/experiment-configurations-section/ExperimentForm.jsx", + "line": 80, + "column": 14, + "index": 2580 }, { - "filePath": "src/files-and-videos/generic/FileTable.jsx", - "line": 64, - "column": 86, - "index": 1674 + "filePath": "src/group-configurations/experiment-configurations-section/ExperimentFormGroups.jsx", + "line": 52, + "column": 16, + "index": 1630 }, { - "filePath": "src/files-and-videos/generic/table-components/table-custom-columns/MoreInfoColumn.jsx", - "line": 26, - "column": 36, - "index": 539 + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/lti/LtiConfigForm.jsx", + "line": 105, + "column": 14, + "index": 4074 }, { - "filePath": "src/files-and-videos/generic/table-components/TableActions.jsx", - "line": 28, - "column": 44, - "index": 748 + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/lti/LtiConfigForm.jsx", + "line": 122, + "column": 14, + "index": 4739 }, { - "filePath": "src/files-and-videos/videos-page/info-sidebar/transcript-item/Transcript.jsx", - "line": 26, - "column": 68, - "index": 724 + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/lti/LtiConfigForm.jsx", + "line": 135, + "column": 14, + "index": 5334 }, { - "filePath": "src/files-and-videos/videos-page/VideosPage.jsx", - "line": 53, - "column": 86, - "index": 1436 - } - ], - "Card": [ - { - "filePath": "src/advanced-settings/setting-card/SettingCard.jsx", - "line": 60, + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-restrictions/RestrictDatesInput.jsx", + "line": 44, "column": 6, - "index": 1460 + "index": 1183 }, { - "filePath": "src/export-page/CourseExportPage.jsx", - "line": 79, - "column": 16, - "index": 3558 + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-topics/TopicItem.jsx", + "line": 117, + "column": 10, + "index": 3313 }, { - "filePath": "src/files-and-videos/generic/table-components/GalleryCard.jsx", - "line": 29, - "column": 4, - "index": 570 + "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", + "line": 25, + "column": 14, + "index": 752 }, { - "filePath": "src/files-and-videos/videos-page/info-sidebar/transcript-item/Transcript.jsx", - "line": 56, - "column": 8, - "index": 1320 + "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", + "line": 39, + "column": 14, + "index": 1337 }, { - "filePath": "src/generic/ConfirmationPopup.jsx", - "line": 17, - "column": 2, - "index": 304 + "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", + "line": 53, + "column": 14, + "index": 1933 }, { - "filePath": "src/generic/course-upload-image/index.jsx", - "line": 110, - "column": 6, - "index": 2896 + "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", + "line": 68, + "column": 14, + "index": 2590 }, { - "filePath": "src/import-page/file-section/FileSection.jsx", - "line": 27, - "column": 4, - "index": 927 + "filePath": "src/schedule-and-details/introducing-section/extended-course-details/index.jsx", + "line": 57, + "column": 10, + "index": 1829 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/lti/LtiConfigForm.jsx", - "line": 67, - "column": 4, - "index": 2759 + "filePath": "src/schedule-and-details/introducing-section/index.jsx", + "line": 95, + "column": 10, + "index": 2738 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/openedx/OpenedXConfigForm.jsx", - "line": 122, - "column": 12, - "index": 5585 + "filePath": "src/schedule-and-details/introducing-section/introduction-video/index.jsx", + "line": 33, + "column": 10, + "index": 1034 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-topics/TopicItem.jsx", - "line": 73, - "column": 4, - "index": 1854 + "filePath": "src/schedule-and-details/learning-outcomes-section/index.jsx", + "line": 38, + "column": 6, + "index": 1156 }, { - "filePath": "src/pages-and-resources/discussions/app-list/AppCard.jsx", + "filePath": "src/schedule-and-details/requirements-section/grade-requirements/index.jsx", "line": 23, - "column": 4, - "index": 762 - }, - { - "filePath": "src/pages-and-resources/pages/PageCard.jsx", - "line": 63, - "column": 4, - "index": 1884 + "column": 6, + "index": 637 }, { - "filePath": "src/schedule-and-details/basic-section/index.jsx", - "line": 95, - "column": 4, - "index": 2629 + "filePath": "src/schedule-and-details/requirements-section/index.jsx", + "line": 73, + "column": 10, + "index": 2503 }, { - "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", - "line": 17, - "column": 4, - "index": 459 + "filePath": "src/taxonomy/delete-dialog/index.jsx", + "line": 67, + "column": 12, + "index": 2003 }, { - "filePath": "src/schedule-and-details/introducing-section/introduction-video/index.jsx", - "line": 18, - "column": 6, - "index": 547 + "filePath": "src/taxonomy/import-tags/ImportTagsWizard.jsx", + "line": 198, + "column": 10, + "index": 5821 }, { - "filePath": "src/schedule-and-details/requirements-section/entrance-exam/index.jsx", - "line": 31, - "column": 6, - "index": 942 - }, + "filePath": "src/taxonomy/import-tags/ImportTagsWizard.jsx", + "line": 202, + "column": 10, + "index": 6066 + } + ], + "Icon": [ { - "filePath": "src/studio-home/card-item/index.jsx", - "line": 29, - "column": 4, - "index": 1074 + "filePath": "plugins/course-apps/live/Settings.jsx", + "line": 112, + "column": 20, + "index": 4650 }, { - "filePath": "src/studio-home/processing-courses/course-item/index.jsx", - "line": 32, - "column": 8, - "index": 793 + "filePath": "plugins/course-apps/xpert_unit_summary/settings-modal/SettingsModal.jsx", + "line": 173, + "column": 19, + "index": 4970 }, { - "filePath": "src/studio-home/processing-courses/course-item/index.jsx", - "line": 59, - "column": 8, - "index": 1751 + "filePath": "plugins/course-apps/xpert_unit_summary/settings-modal/SettingsModal.jsx", + "line": 174, + "column": 19, + "index": 5015 }, { - "filePath": "src/studio-home/tabs-section/courses-tab/contact-administrator/index.jsx", - "line": 17, - "column": 4, - "index": 576 + "filePath": "plugins/course-apps/xpert_unit_summary/settings-modal/SettingsModal.jsx", + "line": 175, + "column": 18, + "index": 5085 }, { - "filePath": "src/studio-home/verify-email-layout/index.jsx", - "line": 24, + "filePath": "src/advanced-settings/modal-error/ModalErrorListItem.jsx", + "line": 15, "column": 10, - "index": 752 - }, - { - "filePath": "src/taxonomy/taxonomy-card/index.jsx", - "line": 161, - "column": 6, - "index": 4083 + "index": 535 }, - { - "filePath": "src/taxonomy/taxonomy-detail/TaxonomyDetailSideCard.jsx", - "line": 12, - "column": 4, - "index": 260 - } - ], - "Card.Body": [ { "filePath": "src/advanced-settings/setting-card/SettingCard.jsx", - "line": 61, - "column": 8, - "index": 1512 + "line": 71, + "column": 26, + "index": 1877 }, { - "filePath": "src/files-and-videos/videos-page/info-sidebar/transcript-item/Transcript.jsx", - "line": 58, - "column": 10, - "index": 1465 + "filePath": "src/certificates/certificate-details/CertificateDetails.jsx", + "line": 45, + "column": 20, + "index": 1300 }, { - "filePath": "src/generic/ConfirmationPopup.jsx", - "line": 23, - "column": 4, - "index": 440 + "filePath": "src/certificates/certificate-details/CertificateDetails.jsx", + "line": 52, + "column": 20, + "index": 1636 }, { - "filePath": "src/generic/course-upload-image/index.jsx", - "line": 111, - "column": 8, - "index": 2911 + "filePath": "src/certificates/certificate-signatories/signatory/Signatory.jsx", + "line": 38, + "column": 16, + "index": 1294 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-topics/TopicItem.jsx", - "line": 79, - "column": 6, - "index": 2054 + "filePath": "src/certificates/certificate-signatories/signatory/SignatoryForm.jsx", + "line": 91, + "column": 22, + "index": 3052 }, { - "filePath": "src/pages-and-resources/discussions/app-list/AppCard.jsx", - "line": 50, - "column": 6, - "index": 1697 + "filePath": "src/content-tags-drawer/ContentTagsCollapsible.jsx", + "line": 382, + "column": 12, + "index": 13204 }, { - "filePath": "src/pages-and-resources/pages/PageCard.jsx", - "line": 79, - "column": 6, - "index": 2353 + "filePath": "src/content-tags-drawer/ContentTagsCollapsible.jsx", + "line": 386, + "column": 12, + "index": 13324 }, { - "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", - "line": 18, - "column": 6, - "index": 500 + "filePath": "src/content-tags-drawer/ContentTagsDropDownSelector.jsx", + "line": 283, + "column": 20, + "index": 10966 }, { - "filePath": "src/schedule-and-details/introducing-section/introduction-video/index.jsx", - "line": 19, - "column": 8, - "index": 562 + "filePath": "src/content-tags-drawer/tags-sidebar-controls/TagsSidebarBody.jsx", + "line": 76, + "column": 38, + "index": 2326 }, { - "filePath": "src/schedule-and-details/requirements-section/entrance-exam/index.jsx", - "line": 43, - "column": 12, - "index": 1336 + "filePath": "src/content-tags-drawer/tags-sidebar-controls/TagsSidebarBody.jsx", + "line": 77, + "column": 36, + "index": 2392 }, { - "filePath": "src/taxonomy/taxonomy-card/index.jsx", - "line": 180, - "column": 8, - "index": 4623 - } - ], - "Card.Header": [ - { - "filePath": "src/advanced-settings/setting-card/SettingCard.jsx", - "line": 62, - "column": 10, - "index": 1580 + "filePath": "src/content-tags-drawer/TagsTree.jsx", + "line": 27, + "column": 6, + "index": 720 }, { - "filePath": "src/export-page/CourseExportPage.jsx", - "line": 80, + "filePath": "src/content-tags-drawer/TagsTree.jsx", + "line": 34, "column": 18, - "index": 3583 + "index": 926 }, { - "filePath": "src/files-and-videos/generic/table-components/GalleryCard.jsx", - "line": 30, - "column": 6, - "index": 670 + "filePath": "src/course-checklist/ChecklistSection/ChecklistItemBody.jsx", + "line": 45, + "column": 10, + "index": 1850 }, { - "filePath": "src/files-and-videos/videos-page/info-sidebar/transcript-item/Transcript.jsx", - "line": 57, + "filePath": "src/course-checklist/ChecklistSection/ChecklistItemBody.jsx", + "line": 53, "column": 10, - "index": 1354 + "index": 2134 }, { - "filePath": "src/generic/ConfirmationPopup.jsx", - "line": 18, - "column": 4, - "index": 345 + "filePath": "src/course-checklist/ChecklistSection/ChecklistItemComment.jsx", + "line": 24, + "column": 8, + "index": 956 }, { - "filePath": "src/import-page/file-section/FileSection.jsx", - "line": 28, - "column": 6, - "index": 940 + "filePath": "src/course-outline/card-header/CardHeader.jsx", + "line": 156, + "column": 22, + "index": 4731 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-topics/TopicItem.jsx", - "line": 74, - "column": 6, - "index": 1897 + "filePath": "src/course-outline/card-header/StatusBadge.jsx", + "line": 17, + "column": 10, + "index": 386 }, { - "filePath": "src/pages-and-resources/discussions/app-list/AppCard.jsx", - "line": 33, + "filePath": "src/course-outline/xblock-status/GradingTypeAndDueDate.jsx", + "line": 46, "column": 6, - "index": 1055 + "index": 1220 }, { - "filePath": "src/pages-and-resources/pages/PageCard.jsx", - "line": 69, + "filePath": "src/course-outline/xblock-status/GradingTypeAndDueDate.jsx", + "line": 66, "column": 6, - "index": 2046 + "index": 1835 }, { - "filePath": "src/schedule-and-details/basic-section/index.jsx", - "line": 96, + "filePath": "src/course-outline/xblock-status/HideAfterDueMessage.jsx", + "line": 15, "column": 6, - "index": 2642 + "index": 446 }, { - "filePath": "src/studio-home/card-item/index.jsx", - "line": 30, + "filePath": "src/course-outline/xblock-status/ReleaseStatus.jsx", + "line": 37, "column": 6, - "index": 1109 + "index": 996 }, { - "filePath": "src/studio-home/processing-courses/course-item/index.jsx", - "line": 33, - "column": 10, - "index": 832 + "filePath": "src/course-outline/xblock-status/StatusMessages.jsx", + "line": 56, + "column": 12, + "index": 1648 }, { - "filePath": "src/studio-home/processing-courses/course-item/index.jsx", - "line": 60, - "column": 10, - "index": 1790 + "filePath": "src/course-team/course-team-member/CourseTeamMember.jsx", + "line": 59, + "column": 22, + "index": 2059 }, { - "filePath": "src/taxonomy/taxonomy-card/index.jsx", - "line": 168, - "column": 8, - "index": 4281 + "filePath": "src/course-unit/add-component/add-component-btn/AddComponentIcon.jsx", + "line": 10, + "column": 9, + "index": 363 }, { - "filePath": "src/taxonomy/taxonomy-detail/TaxonomyDetailSideCard.jsx", - "line": 13, - "column": 6, - "index": 273 - } - ], - "IconButton": [ - { - "filePath": "src/advanced-settings/setting-card/SettingCard.jsx", - "line": 67, - "column": 16, - "index": 1728 + "filePath": "src/course-unit/breadcrumbs/Breadcrumbs.jsx", + "line": 31, + "column": 14, + "index": 1246 }, { - "filePath": "src/course-outline/card-header/CardHeader.jsx", - "line": 117, + "filePath": "src/course-unit/breadcrumbs/Breadcrumbs.jsx", + "line": 50, "column": 10, - "index": 3438 + "index": 1884 }, { - "filePath": "src/course-outline/card-header/CardHeader.jsx", - "line": 129, - "column": 16, - "index": 3956 + "filePath": "src/course-unit/breadcrumbs/Breadcrumbs.jsx", + "line": 61, + "column": 14, + "index": 2334 }, { - "filePath": "src/files-and-videos/files-page/FileInfoModalSidebar.jsx", - "line": 65, - "column": 8, - "index": 1629 + "filePath": "src/course-unit/course-sequence/sequence-navigation/UnitIcon.jsx", + "line": 10, + "column": 9, + "index": 347 }, { - "filePath": "src/files-and-videos/files-page/FileInfoModalSidebar.jsx", - "line": 82, + "filePath": "src/course-unit/sidebar/components/SidebarHeader.jsx", + "line": 18, "column": 8, - "index": 2178 - }, - { - "filePath": "src/files-and-videos/generic/FileMenu.jsx", - "line": 28, - "column": 10, - "index": 587 + "index": 711 }, { - "filePath": "src/files-and-videos/generic/table-components/table-custom-columns/MoreInfoColumn.jsx", - "line": 40, - "column": 6, + "filePath": "src/course-updates/course-handouts/CourseHandouts.jsx", + "line": 19, + "column": 18, "index": 759 }, { - "filePath": "src/files-and-videos/videos-page/info-sidebar/transcript-item/Transcript.jsx", - "line": 96, + "filePath": "src/course-updates/course-update/CourseUpdate.jsx", + "line": 25, "column": 12, - "index": 2885 - }, - { - "filePath": "src/files-and-videos/videos-page/info-sidebar/transcript-item/TranscriptMenu.jsx", - "line": 18, - "column": 10, - "index": 510 + "index": 833 }, { - "filePath": "src/files-and-videos/videos-page/transcript-settings/TranscriptSettings.jsx", - "line": 66, - "column": 18, - "index": 2170 + "filePath": "src/course-updates/course-update/CourseUpdate.jsx", + "line": 33, + "column": 20, + "index": 1240 }, { - "filePath": "src/files-and-videos/videos-page/transcript-settings/TranscriptSettings.jsx", - "line": 81, - "column": 14, - "index": 2754 + "filePath": "src/course-updates/course-update/CourseUpdate.jsx", + "line": 41, + "column": 20, + "index": 1537 }, { - "filePath": "src/generic/CollapsableEditor.jsx", - "line": 34, - "column": 10, - "index": 853 + "filePath": "src/course-updates/update-form/UpdateForm.jsx", + "line": 68, + "column": 18, + "index": 2017 }, { - "filePath": "src/generic/CollapsableEditor.jsx", - "line": 40, - "column": 12, - "index": 1092 + "filePath": "src/course-updates/update-form/UpdateForm.jsx", + "line": 94, + "column": 20, + "index": 3180 }, { - "filePath": "src/generic/CollapsableEditor.jsx", - "line": 53, - "column": 10, - "index": 1431 + "filePath": "src/custom-pages/CustomPageCard.jsx", + "line": 61, + "column": 15, + "index": 1612 }, { - "filePath": "src/generic/course-upload-image/index.jsx", - "line": 69, - "column": 6, - "index": 1845 + "filePath": "src/custom-pages/CustomPageCard.jsx", + "line": 78, + "column": 18, + "index": 2161 }, { - "filePath": "src/pages-and-resources/pages/PageCard.jsx", - "line": 42, - "column": 10, - "index": 1345 + "filePath": "src/custom-pages/CustomPageCard.jsx", + "line": 88, + "column": 18, + "index": 2616 }, { - "filePath": "src/pages-and-resources/pages/PageCard.jsx", - "line": 52, - "column": 6, - "index": 1635 + "filePath": "src/custom-pages/CustomPageCard.jsx", + "line": 98, + "column": 18, + "index": 3042 }, { - "filePath": "src/taxonomy/taxonomy-card/TaxonomyCardMenu.jsx", - "line": 30, - "column": 12, - "index": 707 - } - ], - "InfoOutline": [ - { - "filePath": "src/advanced-settings/setting-card/SettingCard.jsx", - "line": 70, - "column": 23, - "index": 1830 + "filePath": "src/custom-pages/CustomPages.jsx", + "line": 99, + "column": 15, + "index": 3377 }, { - "filePath": "src/files-and-videos/files-page/FileInfoModalSidebar.jsx", - "line": 97, + "filePath": "src/custom-pages/CustomPages.jsx", + "line": 100, "column": 15, - "index": 2762 + "index": 3412 }, { - "filePath": "src/schedule-and-details/schedule-section/certificate-display-row/CertificateDisplayRow.jsx", - "line": 101, - "column": 38, - "index": 3008 - } - ], - "ModalPopup": [ - { - "filePath": "src/advanced-settings/setting-card/SettingCard.jsx", - "line": 76, + "filePath": "src/editors/containers/EditorContainer/components/TitleHeader/EditConfirmationButtons.jsx", + "line": 21, "column": 16, - "index": 2055 + "index": 580 }, { - "filePath": "src/content-tags-drawer/ContentTagsCollapsible.jsx", - "line": 159, - "column": 8, - "index": 4917 + "filePath": "src/editors/containers/EditorContainer/components/TitleHeader/EditConfirmationButtons.jsx", + "line": 28, + "column": 16, + "index": 793 }, { - "filePath": "src/files-and-videos/generic/table-components/table-custom-columns/MoreInfoColumn.jsx", - "line": 47, - "column": 6, - "index": 917 - } - ], - "ActionRow.Spacer": [ - { - "filePath": "src/advanced-settings/setting-card/SettingCard.jsx", - "line": 90, + "filePath": "src/editors/containers/EditorContainer/components/TitleHeader/index.jsx", + "line": 57, "column": 16, - "index": 2598 + "index": 1464 }, { - "filePath": "src/custom-pages/CustomPageCard.jsx", - "line": 72, - "column": 8, - "index": 1883 + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/AnswerWidget/AnswerOption.jsx", + "line": 127, + "column": 10, + "index": 4081 }, { - "filePath": "src/custom-pages/CustomPages.jsx", - "line": 129, - "column": 10, - "index": 4285 + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/AnswerWidget/AnswerOption.jsx", + "line": 134, + "column": 18, + "index": 4306 }, { - "filePath": "src/files-and-videos/files-page/FileInfoModalSidebar.jsx", - "line": 64, - "column": 8, - "index": 1600 + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/AnswerWidget/AnswersContainer.jsx", + "line": 53, + "column": 12, + "index": 1602 }, { - "filePath": "src/files-and-videos/files-page/FileInfoModalSidebar.jsx", - "line": 81, - "column": 8, - "index": 2149 + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/GroupFeedback/GroupFeedbackRow.jsx", + "line": 29, + "column": 18, + "index": 734 }, { - "filePath": "src/files-and-videos/files-page/FileInfoModalSidebar.jsx", - "line": 102, - "column": 8, - "index": 2863 + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/HintRow.jsx", + "line": 42, + "column": 16, + "index": 1011 }, { - "filePath": "src/files-and-videos/videos-page/transcript-settings/TranscriptSettings.jsx", - "line": 80, - "column": 14, - "index": 2719 + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/TypeRow.jsx", + "line": 37, + "column": 32, + "index": 829 }, { - "filePath": "src/files-and-videos/videos-page/VideosPage.jsx", - "line": 200, - "column": 10, - "index": 6116 + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/SettingsOption.jsx", + "line": 29, + "column": 14, + "index": 1075 }, { - "filePath": "src/schedule-and-details/license-section/license-commons-options/index.jsx", - "line": 77, + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/SettingsOption.jsx", + "line": 32, "column": 14, - "index": 2474 + "index": 1200 }, { - "filePath": "src/studio-home/processing-courses/course-item/index.jsx", - "line": 40, - "column": 16, - "index": 1105 - } - ], - "Card.Section": [ + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/CollapsibleFormWidget.jsx", + "line": 41, + "column": 22, + "index": 1403 + }, { - "filePath": "src/advanced-settings/setting-card/SettingCard.jsx", - "line": 94, - "column": 10, - "index": 2684 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/CollapsibleFormWidget.jsx", + "line": 42, + "column": 96, + "index": 1550 }, { - "filePath": "src/export-page/CourseExportPage.jsx", - "line": 85, - "column": 20, - "index": 3810 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/CollapsibleFormWidget.jsx", + "line": 48, + "column": 98, + "index": 1867 }, { - "filePath": "src/files-and-videos/generic/table-components/GalleryCard.jsx", - "line": 55, - "column": 6, - "index": 1535 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/HandoutWidget/index.jsx", + "line": 76, + "column": 24, + "index": 2386 }, { - "filePath": "src/files-and-videos/videos-page/info-sidebar/transcript-item/Transcript.jsx", - "line": 59, - "column": 12, - "index": 1489 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseBlurb.jsx", + "line": 26, + "column": 50, + "index": 645 }, { - "filePath": "src/generic/ConfirmationPopup.jsx", - "line": 24, - "column": 6, - "index": 458 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseBlurb.jsx", + "line": 27, + "column": 48, + "index": 785 }, { - "filePath": "src/import-page/file-section/FileSection.jsx", - "line": 33, - "column": 6, - "index": 1150 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseBlurb.jsx", + "line": 28, + "column": 27, + "index": 897 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-topics/TopicItem.jsx", - "line": 80, - "column": 8, - "index": 2074 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseBlurb.jsx", + "line": 29, + "column": 29, + "index": 1037 }, { - "filePath": "src/pages-and-resources/discussions/app-list/AppCard.jsx", - "line": 52, - "column": 10, - "index": 1757 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseBlurb.jsx", + "line": 30, + "column": 29, + "index": 1151 }, { - "filePath": "src/pages-and-resources/pages/PageCard.jsx", - "line": 80, - "column": 8, - "index": 2373 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseBlurb.jsx", + "line": 31, + "column": 26, + "index": 1262 }, { - "filePath": "src/schedule-and-details/basic-section/index.jsx", - "line": 101, - "column": 6, - "index": 2761 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", + "line": 50, + "column": 20, + "index": 1360 }, { - "filePath": "src/schedule-and-details/requirements-section/entrance-exam/index.jsx", - "line": 32, - "column": 8, - "index": 957 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", + "line": 69, + "column": 20, + "index": 2164 }, { - "filePath": "src/studio-home/processing-courses/course-item/index.jsx", - "line": 46, - "column": 10, - "index": 1321 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", + "line": 94, + "column": 20, + "index": 3235 }, { - "filePath": "src/studio-home/tabs-section/courses-tab/contact-administrator/index.jsx", - "line": 18, - "column": 6, - "index": 605 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", + "line": 120, + "column": 20, + "index": 4341 }, { - "filePath": "src/studio-home/tabs-section/courses-tab/contact-administrator/index.jsx", - "line": 27, - "column": 10, - "index": 917 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseSelector.jsx", + "line": 56, + "column": 22, + "index": 1767 }, { - "filePath": "src/studio-home/verify-email-layout/index.jsx", - "line": 25, - "column": 12, - "index": 787 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/ThumbnailWidget/index.jsx", + "line": 97, + "column": 22, + "index": 2896 }, { - "filePath": "src/taxonomy/taxonomy-card/index.jsx", - "line": 185, - "column": 10, - "index": 4893 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/ImportTranscriptCard.jsx", + "line": 29, + "column": 16, + "index": 731 }, { - "filePath": "src/taxonomy/taxonomy-detail/TaxonomyDetailSideCard.jsx", - "line": 14, - "column": 6, - "index": 354 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/index.jsx", + "line": 149, + "column": 16, + "index": 4860 }, { - "filePath": "src/taxonomy/taxonomy-detail/TaxonomyDetailSideCard.jsx", - "line": 18, - "column": 6, - "index": 523 - } - ], - "Form.Group": [ + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/LanguageSelector.jsx", + "line": 73, + "column": 10, + "index": 2415 + }, { - "filePath": "src/advanced-settings/setting-card/SettingCard.jsx", - "line": 95, - "column": 12, - "index": 2741 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/LanguageSelector.jsx", + "line": 105, + "column": 43, + "index": 3222 }, { - "filePath": "src/course-outline/card-header/CardHeader.jsx", - "line": 63, - "column": 8, - "index": 1468 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/Transcript.jsx", + "line": 92, + "column": 24, + "index": 2945 }, { - "filePath": "src/course-team/add-user-form/AddUserForm.jsx", - "line": 27, - "column": 12, - "index": 688 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/TranscriptActionMenu.jsx", + "line": 46, + "column": 16, + "index": 1653 }, { - "filePath": "src/course-updates/update-form/UpdateForm.jsx", - "line": 63, - "column": 14, - "index": 1693 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoPreviewWidget/LanguageNamesWidget.jsx", + "line": 21, + "column": 6, + "index": 779 }, { - "filePath": "src/course-updates/update-form/UpdateForm.jsx", - "line": 100, + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoSourceWidget/index.jsx", + "line": 117, + "column": 22, + "index": 3856 + }, + { + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoSourceWidget/index.jsx", + "line": 144, "column": 12, - "index": 3490 + "index": 4761 }, { - "filePath": "src/files-and-videos/generic/table-components/sort-and-filter-modal/SortAndFilterModal.jsx", - "line": 140, + "filePath": "src/editors/containers/VideoUploadEditor/VideoUploader.jsx", + "line": 20, "column": 8, - "index": 3992 + "index": 787 }, { - "filePath": "src/files-and-videos/videos-page/transcript-settings/Cielo24Form.jsx", - "line": 29, - "column": 8, - "index": 1108 + "filePath": "src/editors/containers/VideoUploadEditor/VideoUploader.jsx", + "line": 44, + "column": 24, + "index": 1999 }, { - "filePath": "src/files-and-videos/videos-page/transcript-settings/Cielo24Form.jsx", - "line": 40, - "column": 8, - "index": 1582 + "filePath": "src/editors/containers/VideoUploadEditor/VideoUploader.jsx", + "line": 81, + "column": 18, + "index": 3044 }, { - "filePath": "src/files-and-videos/videos-page/transcript-settings/Cielo24Form.jsx", - "line": 53, - "column": 12, - "index": 2155 + "filePath": "src/editors/sharedComponents/DraggableList/SortableItem.jsx", + "line": 43, + "column": 16, + "index": 1020 }, { - "filePath": "src/files-and-videos/videos-page/transcript-settings/Cielo24Form.jsx", - "line": 68, - "column": 12, - "index": 2839 + "filePath": "src/editors/sharedComponents/ImageUploadModal/ImageSettingsModal/DimensionControls.jsx", + "line": 64, + "column": 16, + "index": 1866 }, { - "filePath": "src/files-and-videos/videos-page/transcript-settings/Cielo24Form.jsx", - "line": 90, - "column": 6, - "index": 3602 + "filePath": "src/editors/sharedComponents/SelectionModal/GalleryLoadMoreButton.jsx", + "line": 25, + "column": 15, + "index": 670 }, { - "filePath": "src/files-and-videos/videos-page/transcript-settings/Cielo24Form.jsx", - "line": 96, - "column": 6, - "index": 3857 + "filePath": "src/editors/sharedComponents/SelectionModal/GalleryLoadMoreButton.jsx", + "line": 26, + "column": 15, + "index": 712 }, { - "filePath": "src/files-and-videos/videos-page/transcript-settings/ThreePlayMediaForm.jsx", - "line": 38, - "column": 8, - "index": 1144 + "filePath": "src/editors/sharedComponents/SelectionModal/SearchSort.jsx", + "line": 45, + "column": 26, + "index": 1101 }, { - "filePath": "src/files-and-videos/videos-page/transcript-settings/ThreePlayMediaForm.jsx", - "line": 49, - "column": 8, - "index": 1640 + "filePath": "src/editors/sharedComponents/SelectionModal/SearchSort.jsx", + "line": 53, + "column": 16, + "index": 1320 }, { - "filePath": "src/files-and-videos/videos-page/transcript-settings/ThreePlayMediaForm.jsx", - "line": 62, - "column": 12, - "index": 2254 + "filePath": "src/editors/sharedComponents/TypeaheadDropdown/index.jsx", + "line": 162, + "column": 16, + "index": 4268 }, { - "filePath": "src/files-and-videos/videos-page/transcript-settings/ThreePlayMediaForm.jsx", - "line": 105, - "column": 6, - "index": 4067 + "filePath": "src/editors/sharedComponents/TypeaheadDropdown/index.jsx", + "line": 177, + "column": 16, + "index": 4590 }, { - "filePath": "src/files-and-videos/videos-page/transcript-settings/ThreePlayMediaForm.jsx", - "line": 111, - "column": 6, - "index": 4331 + "filePath": "src/files-and-videos/files-page/FileInfoModalSidebar.jsx", + "line": 67, + "column": 18, + "index": 1690 }, { - "filePath": "src/generic/course-upload-image/index.jsx", - "line": 108, - "column": 4, - "index": 2802 + "filePath": "src/files-and-videos/files-page/FileInfoModalSidebar.jsx", + "line": 84, + "column": 18, + "index": 2239 }, { - "filePath": "src/generic/create-or-rerun-course/CreateOrRerunCourseForm.jsx", - "line": 223, + "filePath": "src/files-and-videos/files-page/FileInfoModalSidebar.jsx", + "line": 98, + "column": 18, + "index": 2796 + }, + { + "filePath": "src/files-and-videos/files-page/FileThumbnail.jsx", + "line": 47, "column": 10, - "index": 6976 + "index": 1099 }, { - "filePath": "src/generic/datepicker-control/DatepickerControl.jsx", - "line": 37, - "column": 4, - "index": 902 + "filePath": "src/files-and-videos/generic/FileMenu.jsx", + "line": 30, + "column": 14, + "index": 640 }, { - "filePath": "src/generic/FormikControl.jsx", - "line": 23, - "column": 4, - "index": 613 + "filePath": "src/files-and-videos/generic/InfoModal.jsx", + "line": 63, + "column": 16, + "index": 1666 }, { - "filePath": "src/generic/FormSwitchGroup.jsx", + "filePath": "src/files-and-videos/generic/table-components/GalleryCard.jsx", + "line": 79, + "column": 45, + "index": 2517 + }, + { + "filePath": "src/files-and-videos/generic/table-components/table-custom-columns/AccessColumn.jsx", "line": 24, - "column": 4, - "index": 557 + "column": 8, + "index": 641 }, { - "filePath": "src/grading-settings/assignment-section/assignments/AssignmentItem.jsx", - "line": 25, - "column": 4, - "index": 434 + "filePath": "src/files-and-videos/generic/table-components/table-custom-columns/AccessColumn.jsx", + "line": 26, + "column": 8, + "index": 693 }, { - "filePath": "src/grading-settings/assignment-section/assignments/AssignmentTypeName.jsx", - "line": 17, - "column": 6, - "index": 531 + "filePath": "src/files-and-videos/generic/table-components/table-custom-columns/ActiveColumn.jsx", + "line": 16, + "column": 35, + "index": 675 }, { - "filePath": "src/grading-settings/credit-section/index.jsx", - "line": 34, - "column": 4, - "index": 844 + "filePath": "src/files-and-videos/generic/table-components/table-custom-columns/MoreInfoColumn.jsx", + "line": 42, + "column": 16, + "index": 814 }, { - "filePath": "src/grading-settings/deadline-section/index.jsx", - "line": 43, - "column": 4, - "index": 1306 + "filePath": "src/files-and-videos/generic/table-components/table-custom-columns/TranscriptColumn.jsx", + "line": 16, + "column": 8, + "index": 692 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/lti/LtiConfigForm.jsx", - "line": 99, - "column": 12, - "index": 3870 + "filePath": "src/files-and-videos/generic/UsageMetricsMessage.jsx", + "line": 40, + "column": 8, + "index": 1232 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/lti/LtiConfigForm.jsx", - "line": 117, - "column": 12, - "index": 4573 + "filePath": "src/files-and-videos/videos-page/info-sidebar/transcript-item/LanguageSelect.jsx", + "line": 64, + "column": 20, + "index": 1669 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/lti/LtiConfigForm.jsx", - "line": 134, - "column": 12, - "index": 5250 + "filePath": "src/files-and-videos/videos-page/info-sidebar/transcript-item/LanguageSelect.jsx", + "line": 100, + "column": 10, + "index": 2807 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/lti/LtiConfigForm.jsx", - "line": 152, - "column": 12, - "index": 6024 + "filePath": "src/files-and-videos/videos-page/info-sidebar/transcript-item/Transcript.jsx", + "line": 96, + "column": 22, + "index": 2887 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-restrictions/RestrictDatesInput.jsx", - "line": 39, - "column": 4, - "index": 1022 + "filePath": "src/files-and-videos/videos-page/info-sidebar/transcript-item/TranscriptMenu.jsx", + "line": 29, + "column": 16, + "index": 644 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-topics/TopicItem.jsx", - "line": 112, - "column": 8, - "index": 3153 + "filePath": "src/files-and-videos/videos-page/transcript-settings/FormDropdown.jsx", + "line": 46, + "column": 16, + "index": 1503 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/DivisionByGroupFields.jsx", - "line": 109, + "filePath": "src/files-and-videos/videos-page/transcript-settings/ThreePlayMediaForm.jsx", + "line": 89, "column": 22, - "index": 3803 + "index": 3597 }, { - "filePath": "src/pages-and-resources/live/BBBSettings.jsx", - "line": 54, - "column": 6, - "index": 1740 + "filePath": "src/files-and-videos/videos-page/transcript-settings/TranscriptSettings.jsx", + "line": 69, + "column": 28, + "index": 2268 }, { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 309, - "column": 12, - "index": 11542 + "filePath": "src/files-and-videos/videos-page/transcript-settings/TranscriptSettings.jsx", + "line": 81, + "column": 44, + "index": 2774 }, { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 335, - "column": 10, - "index": 12678 + "filePath": "src/files-and-videos/videos-page/transcript-settings/TranscriptSettings.jsx", + "line": 109, + "column": 22, + "index": 3971 }, { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 366, - "column": 12, - "index": 14137 + "filePath": "src/files-and-videos/videos-page/upload-modal/UploadStatusIcon.jsx", + "line": 10, + "column": 14, + "index": 345 }, { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 390, - "column": 12, - "index": 15258 + "filePath": "src/files-and-videos/videos-page/upload-modal/UploadStatusIcon.jsx", + "line": 12, + "column": 14, + "index": 413 }, { - "filePath": "src/pages-and-resources/teams/GroupEditor.jsx", - "line": 98, + "filePath": "src/files-and-videos/videos-page/VideoThumbnail.jsx", + "line": 84, "column": 12, - "index": 4168 + "index": 2715 }, { - "filePath": "src/schedule-and-details/details-section/index.jsx", - "line": 24, - "column": 6, - "index": 793 + "filePath": "src/generic/clipboard/paste-component/components/PopoverContent.jsx", + "line": 26, + "column": 12, + "index": 884 }, { - "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", - "line": 21, - "column": 12, - "index": 560 + "filePath": "src/generic/clipboard/paste-component/components/WhatsInClipboard.jsx", + "line": 31, + "column": 6, + "index": 912 }, { - "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", - "line": 35, - "column": 12, - "index": 1144 + "filePath": "src/generic/CollapsableEditor.jsx", + "line": 34, + "column": 63, + "index": 914 }, { - "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", - "line": 49, - "column": 12, - "index": 1733 + "filePath": "src/generic/CollapsableEditor.jsx", + "line": 47, + "column": 22, + "index": 1313 }, { - "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", - "line": 64, - "column": 12, - "index": 2399 + "filePath": "src/generic/CollapsableEditor.jsx", + "line": 53, + "column": 65, + "index": 1494 }, { - "filePath": "src/schedule-and-details/introducing-section/extended-course-details/index.jsx", - "line": 55, - "column": 8, - "index": 1705 + "filePath": "src/generic/course-stepper/index.jsx", + "line": 78, + "column": 14, + "index": 2165 }, { - "filePath": "src/schedule-and-details/introducing-section/index.jsx", - "line": 91, - "column": 8, - "index": 2563 + "filePath": "src/generic/course-upload-image/index.jsx", + "line": 72, + "column": 16, + "index": 1927 }, { - "filePath": "src/schedule-and-details/introducing-section/index.jsx", - "line": 112, + "filePath": "src/generic/datepicker-control/DatepickerControl.jsx", + "line": 48, "column": 10, - "index": 3303 + "index": 1359 }, { - "filePath": "src/schedule-and-details/introducing-section/index.jsx", - "line": 121, + "filePath": "src/generic/drag-helper/SortableItem.jsx", + "line": 76, "column": 12, - "index": 3727 + "index": 1756 }, { - "filePath": "src/schedule-and-details/introducing-section/introduction-video/index.jsx", - "line": 14, - "column": 4, - "index": 391 + "filePath": "src/generic/modal-dropzone/ModalDropzone.jsx", + "line": 69, + "column": 16, + "index": 1421 }, { - "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/generic/processing-notification/index.jsx", + "line": 20, + "column": 6, + "index": 569 }, { - "filePath": "src/schedule-and-details/license-section/license-display/index.jsx", - "line": 11, - "column": 2, - "index": 367 + "filePath": "src/generic/tag-count/index.jsx", + "line": 9, + "column": 6, + "index": 257 }, { - "filePath": "src/schedule-and-details/license-section/license-selector/index.jsx", - "line": 48, - "column": 4, - "index": 1308 + "filePath": "src/grading-settings/grading-scale/GradingScale.jsx", + "line": 212, + "column": 16, + "index": 7024 }, { - "filePath": "src/schedule-and-details/pacing-section/index.jsx", + "filePath": "src/group-configurations/common/UsageList.jsx", "line": 21, "column": 6, - "index": 645 + "index": 702 }, { - "filePath": "src/schedule-and-details/requirements-section/entrance-exam/index.jsx", - "line": 27, - "column": 4, - "index": 775 + "filePath": "src/group-configurations/content-groups-section/ContentGroupCard.jsx", + "line": 94, + "column": 26, + "index": 2846 }, { - "filePath": "src/schedule-and-details/requirements-section/grade-requirements/index.jsx", - "line": 14, - "column": 2, - "index": 342 + "filePath": "src/group-configurations/content-groups-section/ContentGroupCard.jsx", + "line": 107, + "column": 26, + "index": 3424 }, { - "filePath": "src/schedule-and-details/requirements-section/index.jsx", - "line": 30, - "column": 4, - "index": 930 + "filePath": "src/group-configurations/experiment-configurations-section/ExperimentCard.jsx", + "line": 115, + "column": 24, + "index": 3539 }, { - "filePath": "src/schedule-and-details/requirements-section/index.jsx", - "line": 69, - "column": 8, - "index": 2340 + "filePath": "src/group-configurations/experiment-configurations-section/ExperimentCard.jsx", + "line": 128, + "column": 24, + "index": 4114 }, { - "filePath": "src/schedule-and-details/schedule-section/certificate-display-row/CertificateDisplayRow.jsx", - "line": 124, - "column": 8, - "index": 3813 + "filePath": "src/group-configurations/experiment-configurations-section/ExperimentFormGroups.jsx", + "line": 66, + "column": 26, + "index": 2178 }, { - "filePath": "src/studio-home/organization-section/index.jsx", - "line": 48, - "column": 6, - "index": 1643 + "filePath": "src/pages-and-resources/pages/PageSettingButton.jsx", + "line": 50, + "column": 18, + "index": 1547 }, { - "filePath": "src/taxonomy/delete-dialog/index.jsx", - "line": 61, - "column": 8, - "index": 1733 + "filePath": "src/pages-and-resources/pages/PageSettingButton.jsx", + "line": 65, + "column": 14, + "index": 1778 }, { - "filePath": "src/taxonomy/export-modal/index.jsx", - "line": 42, + "filePath": "src/schedule-and-details/license-section/license-icons/index.jsx", + "line": 29, "column": 8, - "index": 1082 - } - ], - "Form.Control": [ - { - "filePath": "src/advanced-settings/setting-card/SettingCard.jsx", - "line": 96, - "column": 14, - "index": 2784 + "index": 897 }, { - "filePath": "src/course-outline/card-header/CardHeader.jsx", - "line": 64, - "column": 10, - "index": 1507 + "filePath": "src/schedule-and-details/license-section/license-icons/index.jsx", + "line": 37, + "column": 8, + "index": 1135 }, { - "filePath": "src/files-and-videos/videos-page/transcript-settings/Cielo24Form.jsx", - "line": 94, + "filePath": "src/schedule-and-details/license-section/license-icons/index.jsx", + "line": 44, "column": 8, - "index": 3753 + "index": 1325 }, { - "filePath": "src/files-and-videos/videos-page/transcript-settings/Cielo24Form.jsx", - "line": 100, + "filePath": "src/schedule-and-details/license-section/license-icons/index.jsx", + "line": 51, "column": 8, - "index": 4010 + "index": 1526 }, { - "filePath": "src/files-and-videos/videos-page/transcript-settings/ThreePlayMediaForm.jsx", - "line": 109, + "filePath": "src/schedule-and-details/license-section/license-icons/index.jsx", + "line": 58, "column": 8, - "index": 4227 + "index": 1718 }, { - "filePath": "src/files-and-videos/videos-page/transcript-settings/ThreePlayMediaForm.jsx", - "line": 115, + "filePath": "src/schedule-and-details/license-section/license-icons/index.jsx", + "line": 65, "column": 8, - "index": 4494 + "index": 1907 }, { - "filePath": "src/generic/course-upload-image/index.jsx", - "line": 123, + "filePath": "src/schedule-and-details/schedule-section/certificate-display-row/CertificateDisplayRow.jsx", + "line": 101, "column": 10, - "index": 3301 + "index": 2988 }, { - "filePath": "src/generic/create-or-rerun-course/CreateOrRerunCourseForm.jsx", - "line": 231, - "column": 14, - "index": 7278 + "filePath": "src/studio-home/collapsible-state-with-action/index.jsx", + "line": 106, + "column": 12, + "index": 3702 }, { - "filePath": "src/generic/FormikControl.jsx", - "line": 25, - "column": 6, - "index": 668 + "filePath": "src/studio-home/collapsible-state-with-action/index.jsx", + "line": 115, + "column": 12, + "index": 3961 }, { - "filePath": "src/grading-settings/assignment-section/assignments/AssignmentItem.jsx", - "line": 30, - "column": 6, - "index": 626 + "filePath": "src/studio-home/processing-courses/course-item/index.jsx", + "line": 39, + "column": 16, + "index": 1041 }, { - "filePath": "src/grading-settings/assignment-section/assignments/AssignmentTypeName.jsx", - "line": 24, - "column": 8, - "index": 800 + "filePath": "src/studio-home/processing-courses/course-item/index.jsx", + "line": 66, + "column": 16, + "index": 1999 }, { - "filePath": "src/grading-settings/credit-section/index.jsx", - "line": 42, - "column": 6, - "index": 1113 + "filePath": "src/studio-home/tabs-section/archived-tab/index.jsx", + "line": 33, + "column": 12, + "index": 873 }, { - "filePath": "src/grading-settings/deadline-section/index.jsx", - "line": 50, - "column": 6, - "index": 1565 + "filePath": "src/studio-home/tabs-section/courses-tab/courses-filters/courses-filter-menu/index.jsx", + "line": 22, + "column": 4, + "index": 773 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/lti/LtiConfigForm.jsx", - "line": 105, - "column": 14, - "index": 4070 + "filePath": "src/studio-home/tabs-section/libraries-tab/index.jsx", + "line": 33, + "column": 12, + "index": 864 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/lti/LtiConfigForm.jsx", - "line": 122, - "column": 14, - "index": 4735 + "filePath": "src/taxonomy/delete-dialog/index.jsx", + "line": 53, + "column": 12, + "index": 1409 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/lti/LtiConfigForm.jsx", + "filePath": "src/taxonomy/import-tags/ImportTagsWizard.jsx", "line": 135, "column": 14, - "index": 5330 + "index": 3916 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-restrictions/RestrictDatesInput.jsx", - "line": 44, - "column": 6, - "index": 1179 + "filePath": "src/taxonomy/import-tags/ImportTagsWizard.jsx", + "line": 142, + "column": 24, + "index": 4295 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-topics/TopicItem.jsx", - "line": 117, + "filePath": "src/taxonomy/import-tags/ImportTagsWizard.jsx", + "line": 413, "column": 10, - "index": 3309 + "index": 11812 }, { - "filePath": "src/pages-and-resources/live/BBBSettings.jsx", - "line": 62, - "column": 8, - "index": 2082 + "filePath": "src/textbooks/textbook-card/TextbooksCard.jsx", + "line": 81, + "column": 28, + "index": 2530 }, { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 313, - "column": 14, - "index": 11786 + "filePath": "src/textbooks/textbook-card/TextbooksCard.jsx", + "line": 88, + "column": 28, + "index": 2846 }, { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 339, - "column": 12, - "index": 12906 + "filePath": "src/textbooks/textbook-card/TextbooksCard.jsx", + "line": 95, + "column": 28, + "index": 3160 }, { - "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", - "line": 25, - "column": 14, - "index": 748 + "filePath": "src/textbooks/textbook-form/TextbookForm.jsx", + "line": 109, + "column": 36, + "index": 4327 }, { - "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", - "line": 39, - "column": 14, - "index": 1333 + "filePath": "src/textbooks/textbook-form/TextbookForm.jsx", + "line": 119, + "column": 36, + "index": 4896 }, { - "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", - "line": 53, + "filePath": "src/textbooks/textbook-form/TextbookForm.jsx", + "line": 179, + "column": 18, + "index": 7799 + } + ], + "Alert": [ + { + "filePath": "plugins/course-apps/ora_settings/Settings.jsx", + "line": 80, "column": 14, - "index": 1929 + "index": 3090 }, { - "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", - "line": 68, - "column": 14, - "index": 2586 + "filePath": "plugins/course-apps/proctoring/Settings.jsx", + "line": 269, + "column": 12, + "index": 10380 }, { - "filePath": "src/schedule-and-details/introducing-section/extended-course-details/index.jsx", - "line": 57, - "column": 10, - "index": 1825 + "filePath": "plugins/course-apps/proctoring/Settings.jsx", + "line": 437, + "column": 6, + "index": 16787 }, { - "filePath": "src/schedule-and-details/introducing-section/index.jsx", - "line": 95, - "column": 10, - "index": 2734 + "filePath": "plugins/course-apps/proctoring/Settings.jsx", + "line": 502, + "column": 6, + "index": 18825 }, { - "filePath": "src/schedule-and-details/introducing-section/introduction-video/index.jsx", - "line": 33, - "column": 10, - "index": 1030 + "filePath": "plugins/course-apps/xpert_unit_summary/settings-modal/SettingsModal.jsx", + "line": 330, + "column": 16, + "index": 9722 }, { - "filePath": "src/schedule-and-details/learning-outcomes-section/index.jsx", - "line": 38, - "column": 6, - "index": 1148 + "filePath": "src/accessibility-page/AccessibilityForm/AccessibilityForm.jsx", + "line": 71, + "column": 8, + "index": 1930 }, { - "filePath": "src/schedule-and-details/requirements-section/grade-requirements/index.jsx", - "line": 23, + "filePath": "src/accessibility-page/AccessibilityForm/AccessibilityForm.jsx", + "line": 91, + "column": 8, + "index": 2740 + }, + { + "filePath": "src/advanced-settings/modal-error/ModalErrorListItem.jsx", + "line": 13, "column": 6, - "index": 633 + "index": 452 }, { - "filePath": "src/schedule-and-details/requirements-section/index.jsx", - "line": 73, - "column": 10, - "index": 2499 + "filePath": "src/course-outline/page-alerts/PageAlerts.jsx", + "line": 94, + "column": 6, + "index": 2947 }, { - "filePath": "src/taxonomy/delete-dialog/index.jsx", - "line": 67, - "column": 10, - "index": 1937 - } - ], - "Card.Status": [ + "filePath": "src/course-outline/page-alerts/PageAlerts.jsx", + "line": 133, + "column": 8, + "index": 4039 + }, { - "filePath": "src/advanced-settings/setting-card/SettingCard.jsx", - "line": 108, + "filePath": "src/course-outline/page-alerts/PageAlerts.jsx", + "line": 384, "column": 10, - "index": 3183 - } - ], - "Collapsible": [ + "index": 11658 + }, { - "filePath": "src/content-tags-drawer/ContentTagsCollapsible.jsx", - "line": 142, + "filePath": "src/course-outline/xblock-status/GradingPolicyAlert.jsx", + "line": 29, "column": 6, - "index": 4334 + "index": 654 }, { - "filePath": "src/pages-and-resources/discussions/app-list/FeaturesList.jsx", - "line": 10, - "column": 2, - "index": 308 - } - ], - "SelectableBox.Set": [ - { - "filePath": "src/content-tags-drawer/ContentTagsCollapsible.jsx", - "line": 168, - "column": 12, - "index": 5160 + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/Tolerance/index.jsx", + "line": 67, + "column": 7, + "index": 2196 }, { - "filePath": "src/files-and-videos/generic/table-components/sort-and-filter-modal/SortAndFilterModal.jsx", - "line": 78, + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/ThumbnailWidget/index.jsx", + "line": 79, "column": 8, - "index": 1949 + "index": 2275 }, { - "filePath": "src/files-and-videos/videos-page/transcript-settings/OrderTranscriptForm.jsx", - "line": 104, - "column": 6, - "index": 3356 + "filePath": "src/editors/sharedComponents/ErrorAlerts/ErrorAlert.jsx", + "line": 47, + "column": 4, + "index": 1120 }, { - "filePath": "src/pages-and-resources/live/Settings.jsx", - "line": 99, - "column": 12, - "index": 3997 - } - ], - "SearchField": [ - { - "filePath": "src/content-tags-drawer/ContentTagsCollapsible.jsx", - "line": 177, - "column": 14, - "index": 5510 - } - ], - "Badge": [ + "filePath": "src/editors/sharedComponents/RawEditor/index.jsx", + "line": 25, + "column": 8, + "index": 591 + }, { - "filePath": "src/content-tags-drawer/ContentTagsCollapsible.jsx", - "line": 196, + "filePath": "src/files-and-videos/videos-page/upload-modal/UploadModal.jsx", + "line": 41, "column": 8, - "index": 6022 + "index": 1203 }, { - "filePath": "src/course-outline/section-card/SectionCard.jsx", - "line": 133, - "column": 14, - "index": 3623 + "filePath": "src/generic/AlertProctoringError.jsx", + "line": 7, + "column": 4, + "index": 237 }, { - "filePath": "src/course-team/course-team-member/CourseTeamMember.jsx", - "line": 33, - "column": 8, - "index": 791 + "filePath": "src/generic/configure-modal/AdvancedTab.jsx", + "line": 115, + "column": 10, + "index": 3394 }, { - "filePath": "src/files-and-videos/generic/table-components/table-custom-columns/StatusColumn.jsx", - "line": 14, - "column": 4, - "index": 278 + "filePath": "src/generic/configure-modal/AdvancedTab.jsx", + "line": 120, + "column": 10, + "index": 3628 }, { - "filePath": "src/files-and-videos/videos-page/VideoThumbnail.jsx", - "line": 68, - "column": 14, - "index": 2135 + "filePath": "src/generic/configure-modal/UnitTab.jsx", + "line": 56, + "column": 12, + "index": 1526 }, { - "filePath": "src/generic/processing-notification/index.jsx", - "line": 11, - "column": 2, - "index": 361 + "filePath": "src/generic/configure-modal/VisibilityTab.jsx", + "line": 84, + "column": 14, + "index": 2586 }, { - "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", - "line": 232, - "column": 24, - "index": 7436 + "filePath": "src/generic/configure-modal/VisibilityTab.jsx", + "line": 115, + "column": 8, + "index": 4144 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-restrictions/CollapseCardHeading.jsx", - "line": 18, - "column": 22, - "index": 386 + "filePath": "src/generic/ConnectionErrorAlert.jsx", + "line": 9, + "column": 2, + "index": 293 }, { - "filePath": "src/pages-and-resources/pages/PageCard.jsx", - "line": 72, - "column": 10, - "index": 2131 + "filePath": "src/generic/NotFoundAlert.jsx", + "line": 6, + "column": 2, + "index": 166 }, { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 288, - "column": 18, - "index": 10918 + "filePath": "src/generic/PermissionDeniedAlert.jsx", + "line": 6, + "column": 2, + "index": 174 }, { - "filePath": "src/pages-and-resources/xpert-unit-summary/settings-modal/SettingsModal.jsx", - "line": 344, - "column": 22, - "index": 10316 + "filePath": "src/generic/SaveFormConnectionErrorAlert.jsx", + "line": 9, + "column": 2, + "index": 301 }, { - "filePath": "src/taxonomy/system-defined-badge/index.jsx", - "line": 30, - "column": 6, - "index": 806 - } - ], - "useCheckboxSetValues": [ + "filePath": "src/group-configurations/content-groups-section/ContentGroupForm.jsx", + "line": 77, + "column": 16, + "index": 2393 + }, { - "filePath": "src/content-tags-drawer/ContentTagsCollapsibleHelper.jsx", - "line": 92, - "column": 48, - "index": 3129 + "filePath": "src/group-configurations/experiment-configurations-section/ExperimentForm.jsx", + "line": 110, + "column": 14, + "index": 3654 }, { - "filePath": "src/files-and-videos/generic/table-components/sort-and-filter-modal/SortAndFilterModal.jsx", - "line": 31, - "column": 7, - "index": 850 - } - ], - "CloseButton": [ + "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", + "line": 143, + "column": 16, + "index": 4975 + }, { - "filePath": "src/content-tags-drawer/ContentTagsDrawer.jsx", - "line": 89, + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/DivisionByGroupFields.jsx", + "line": 73, "column": 8, - "index": 3040 + "index": 2220 + }, + { + "filePath": "src/pages-and-resources/discussions/DiscussionsSettings.jsx", + "line": 125, + "column": 18, + "index": 4070 } ], - "Spinner": [ + "Info": [ { - "filePath": "src/content-tags-drawer/ContentTagsDrawer.jsx", - "line": 95, - "column": 14, - "index": 3396 + "filePath": "plugins/course-apps/ora_settings/Settings.jsx", + "line": 80, + "column": 44, + "index": 3120 }, { - "filePath": "src/content-tags-drawer/ContentTagsDropDownSelector.jsx", - "line": 69, - "column": 14, - "index": 2446 + "filePath": "plugins/course-apps/xpert_unit_summary/settings-modal/SettingsModal.jsx", + "line": 330, + "column": 46, + "index": 9752 }, { - "filePath": "src/files-and-videos/generic/UsageMetricsMessage.jsx", - "line": 51, - "column": 8, - "index": 1479 + "filePath": "src/advanced-settings/AdvancedSettings.jsx", + "line": 137, + "column": 20, + "index": 5166 }, { - "filePath": "src/generic/Loading.jsx", - "line": 6, - "column": 2, - "index": 172 + "filePath": "src/files-and-videos/generic/table-components/table-custom-columns/TranscriptColumn.jsx", + "line": 16, + "column": 19, + "index": 703 }, { - "filePath": "src/taxonomy/TaxonomyListPage.jsx", - "line": 148, - "column": 14, - "index": 4564 + "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", + "line": 143, + "column": 46, + "index": 5005 } ], - "SelectableBox": [ + "Alert.Heading": [ { - "filePath": "src/content-tags-drawer/ContentTagsDropDownSelector.jsx", - "line": 87, + "filePath": "plugins/course-apps/ora_settings/Settings.jsx", + "line": 81, + "column": 16, + "index": 3158 + }, + { + "filePath": "plugins/course-apps/xpert_unit_summary/settings-modal/SettingsModal.jsx", + "line": 331, "column": 18, - "index": 3065 + "index": 9792 }, { - "filePath": "src/files-and-videos/generic/table-components/sort-and-filter-modal/SortAndFilterModal.jsx", - "line": 87, + "filePath": "src/course-outline/page-alerts/PageAlerts.jsx", + "line": 137, "column": 10, - "index": 2191 + "index": 4123 }, { - "filePath": "src/files-and-videos/generic/table-components/sort-and-filter-modal/SortAndFilterModal.jsx", - "line": 95, + "filePath": "src/course-outline/page-alerts/PageAlerts.jsx", + "line": 205, "column": 10, - "index": 2466 + "index": 6375 }, { - "filePath": "src/files-and-videos/generic/table-components/sort-and-filter-modal/SortAndFilterModal.jsx", - "line": 103, - "column": 10, - "index": 2739 + "filePath": "src/course-outline/page-alerts/PageAlerts.jsx", + "line": 380, + "column": 12, + "index": 11490 }, { - "filePath": "src/files-and-videos/generic/table-components/sort-and-filter-modal/SortAndFilterModal.jsx", - "line": 111, - "column": 10, - "index": 3018 + "filePath": "src/course-outline/page-alerts/PageAlerts.jsx", + "line": 389, + "column": 12, + "index": 11776 }, { - "filePath": "src/files-and-videos/generic/table-components/sort-and-filter-modal/SortAndFilterModal.jsx", - "line": 119, - "column": 10, - "index": 3294 - }, - { - "filePath": "src/files-and-videos/generic/table-components/sort-and-filter-modal/SortAndFilterModal.jsx", - "line": 127, + "filePath": "src/editors/sharedComponents/ErrorAlerts/ErrorAlert.jsx", + "line": 55, "column": 10, - "index": 3565 + "index": 1265 }, { - "filePath": "src/files-and-videos/videos-page/transcript-settings/OrderTranscriptForm.jsx", - "line": 114, - "column": 8, - "index": 3624 + "filePath": "src/files-and-videos/generic/EditFileErrors.jsx", + "line": 32, + "column": 6, + "index": 1001 }, { - "filePath": "src/files-and-videos/videos-page/transcript-settings/OrderTranscriptForm.jsx", - "line": 121, - "column": 8, - "index": 3829 + "filePath": "src/files-and-videos/videos-page/upload-modal/UploadModal.jsx", + "line": 45, + "column": 10, + "index": 1289 }, { - "filePath": "src/files-and-videos/videos-page/transcript-settings/OrderTranscriptForm.jsx", - "line": 129, - "column": 8, - "index": 4113 + "filePath": "src/generic/AlertProctoringError.jsx", + "line": 11, + "column": 10, + "index": 369 }, { - "filePath": "src/pages-and-resources/live/Settings.jsx", - "line": 108, - "column": 16, - "index": 4355 + "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", + "line": 144, + "column": 18, + "index": 5045 } ], - "Chip": [ + "Badge": [ { - "filePath": "src/content-tags-drawer/TagBubble.jsx", - "line": 23, - "column": 6, - "index": 643 + "filePath": "plugins/course-apps/ora_settings/Settings.jsx", + "line": 94, + "column": 20, + "index": 3718 }, { - "filePath": "src/files-and-videos/generic/table-components/FilterStatus.jsx", - "line": 29, - "column": 10, - "index": 839 + "filePath": "plugins/course-apps/proctoring/Settings.jsx", + "line": 291, + "column": 18, + "index": 11137 }, { - "filePath": "src/files-and-videos/generic/table-components/GalleryCard.jsx", - "line": 75, - "column": 8, - "index": 2411 - } - ], - "OverlayTrigger": [ + "filePath": "plugins/course-apps/xpert_unit_summary/settings-modal/SettingsModal.jsx", + "line": 347, + "column": 22, + "index": 10557 + }, { - "filePath": "src/course-outline/card-header/CardHeader.jsx", - "line": 81, + "filePath": "src/course-team/course-team-member/CourseTeamMember.jsx", + "line": 33, "column": 8, - "index": 2066 + "index": 799 }, { - "filePath": "src/course-outline/empty-placeholder/EmptyPlaceholder.jsx", - "line": 15, - "column": 6, - "index": 548 + "filePath": "src/editors/sharedComponents/SelectionModal/GalleryCard.jsx", + "line": 49, + "column": 12, + "index": 1614 }, { - "filePath": "src/course-outline/header-navigations/HeaderNavigations.jsx", - "line": 27, - "column": 6, - "index": 683 + "filePath": "src/editors/sharedComponents/SelectionModal/GalleryCard.jsx", + "line": 54, + "column": 12, + "index": 1858 }, { - "filePath": "src/course-outline/header-navigations/HeaderNavigations.jsx", - "line": 43, - "column": 8, - "index": 1158 + "filePath": "src/files-and-videos/generic/table-components/table-custom-columns/StatusColumn.jsx", + "line": 20, + "column": 4, + "index": 603 }, { - "filePath": "src/course-outline/header-navigations/HeaderNavigations.jsx", - "line": 72, - "column": 6, - "index": 2163 + "filePath": "src/files-and-videos/videos-page/VideoThumbnail.jsx", + "line": 88, + "column": 14, + "index": 2884 }, { - "filePath": "src/files-and-videos/generic/table-components/table-custom-columns/AccessColumn.jsx", - "line": 15, - "column": 4, - "index": 404 + "filePath": "src/group-configurations/common/TitleButton.jsx", + "line": 44, + "column": 14, + "index": 1309 }, { - "filePath": "src/pages-and-resources/xpert-unit-summary/settings-modal/SettingsModal.jsx", - "line": 151, - "column": 4, - "index": 4233 + "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", + "line": 161, + "column": 24, + "index": 5875 }, { - "filePath": "src/schedule-and-details/license-section/license-selector/index.jsx", - "line": 31, - "column": 6, - "index": 869 + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-restrictions/CollapseCardHeading.jsx", + "line": 18, + "column": 22, + "index": 390 + }, + { + "filePath": "src/pages-and-resources/pages/PageCard.jsx", + "line": 45, + "column": 10, + "index": 1227 }, { "filePath": "src/taxonomy/system-defined-badge/index.jsx", - "line": 25, + "line": 30, + "column": 6, + "index": 810 + } + ], + "ModalDialog": [ + { + "filePath": "plugins/course-apps/ora_settings/Settings.jsx", + "line": 130, "column": 4, - "index": 676 + "index": 4915 }, { - "filePath": "src/taxonomy/taxonomy-card/index.jsx", + "filePath": "plugins/course-apps/proctoring/Settings.jsx", + "line": 603, + "column": 4, + "index": 23168 + }, + { + "filePath": "plugins/course-apps/xpert_unit_summary/settings-modal/SettingsModal.jsx", "line": 75, + "column": 2, + "index": 2509 + }, + { + "filePath": "src/course-outline/highlights-modal/HighlightsModal.jsx", + "line": 34, "column": 4, - "index": 1875 + "index": 943 }, { - "filePath": "src/taxonomy/TaxonomyListPage.jsx", - "line": 29, - "column": 6, - "index": 811 - } - ], - "Tooltip": [ + "filePath": "src/course-outline/publish-modal/PublishModal.jsx", + "line": 27, + "column": 4, + "index": 718 + }, { - "filePath": "src/course-outline/card-header/CardHeader.jsx", - "line": 84, - "column": 12, - "index": 2150 + "filePath": "src/custom-pages/CustomPages.jsx", + "line": 241, + "column": 8, + "index": 8727 }, { - "filePath": "src/course-outline/empty-placeholder/EmptyPlaceholder.jsx", - "line": 18, - "column": 10, - "index": 620 + "filePath": "src/editors/sharedComponents/BaseModal/index.jsx", + "line": 26, + "column": 2, + "index": 422 }, { - "filePath": "src/course-outline/header-navigations/HeaderNavigations.jsx", - "line": 30, - "column": 10, - "index": 755 + "filePath": "src/files-and-videos/files-page/FileValidationModal.jsx", + "line": 31, + "column": 4, + "index": 678 }, { - "filePath": "src/course-outline/header-navigations/HeaderNavigations.jsx", - "line": 46, - "column": 12, - "index": 1263 + "filePath": "src/files-and-videos/generic/InfoModal.jsx", + "line": 39, + "column": 4, + "index": 919 }, { - "filePath": "src/course-outline/header-navigations/HeaderNavigations.jsx", - "line": 75, - "column": 10, - "index": 2235 + "filePath": "src/files-and-videos/generic/table-components/sort-and-filter-modal/SortAndFilterModal.jsx", + "line": 65, + "column": 4, + "index": 1771 }, { - "filePath": "src/files-and-videos/generic/table-components/table-custom-columns/AccessColumn.jsx", - "line": 18, - "column": 8, - "index": 467 + "filePath": "src/files-and-videos/videos-page/upload-modal/UploadModal.jsx", + "line": 29, + "column": 4, + "index": 801 }, { - "filePath": "src/pages-and-resources/xpert-unit-summary/settings-modal/SettingsModal.jsx", - "line": 154, - "column": 8, - "index": 4298 + "filePath": "src/generic/configure-modal/ConfigureModal.jsx", + "line": 261, + "column": 4, + "index": 8398 }, { - "filePath": "src/schedule-and-details/license-section/license-selector/index.jsx", - "line": 34, - "column": 10, - "index": 932 + "filePath": "src/generic/modal-dropzone/ModalDropzone.jsx", + "line": 80, + "column": 4, + "index": 1741 }, { - "filePath": "src/taxonomy/TaxonomyListPage.jsx", - "line": 32, - "column": 10, - "index": 880 - } - ], - "Truncate": [ + "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModalBase.jsx", + "line": 21, + "column": 4, + "index": 398 + }, { - "filePath": "src/course-outline/card-header/CardHeader.jsx", - "line": 99, - "column": 12, - "index": 2717 + "filePath": "src/pages-and-resources/discussions/app-config-form/AppConfigForm.jsx", + "line": 120, + "column": 6, + "index": 3570 }, { - "filePath": "src/files-and-videos/files-page/FileInfoModalSidebar.jsx", - "line": 60, - "column": 10, - "index": 1501 + "filePath": "src/taxonomy/delete-dialog/index.jsx", + "line": 42, + "column": 6, + "index": 1068 }, { - "filePath": "src/files-and-videos/files-page/FileInfoModalSidebar.jsx", - "line": 77, - "column": 10, - "index": 2050 + "filePath": "src/taxonomy/export-modal/index.jsx", + "line": 30, + "column": 6, + "index": 802 }, { - "filePath": "src/files-and-videos/generic/InfoModal.jsx", - "line": 51, - "column": 12, - "index": 1237 + "filePath": "src/taxonomy/import-tags/ImportTagsWizard.jsx", + "line": 426, + "column": 6, + "index": 12229 }, { - "filePath": "src/files-and-videos/generic/table-components/GalleryCard.jsx", - "line": 69, - "column": 10, - "index": 2131 + "filePath": "src/taxonomy/manage-orgs/ManageOrgsModal.jsx", + "line": 150, + "column": 6, + "index": 3912 } ], - "EditIcon": [ + "Form": [ { - "filePath": "src/course-outline/card-header/CardHeader.jsx", - "line": 120, - "column": 20, - "index": 3585 - } - ], - "Dropdown": [ + "filePath": "plugins/course-apps/ora_settings/Settings.jsx", + "line": 140, + "column": 6, + "index": 5152 + }, { - "filePath": "src/course-outline/card-header/CardHeader.jsx", - "line": 124, - "column": 8, - "index": 3661 + "filePath": "plugins/course-apps/proctoring/Settings.jsx", + "line": 613, + "column": 6, + "index": 23393 }, { - "filePath": "src/files-and-videos/generic/FileMenu.jsx", - "line": 25, - "column": 2, - "index": 466 + "filePath": "plugins/course-apps/xpert_unit_summary/settings-modal/SettingsModal.jsx", + "line": 307, + "column": 10, + "index": 8879 }, { - "filePath": "src/files-and-videos/generic/table-components/TableActions.jsx", - "line": 41, + "filePath": "src/accessibility-page/AccessibilityForm/AccessibilityForm.jsx", + "line": 102, "column": 6, - "index": 1161 + "index": 3108 }, { - "filePath": "src/files-and-videos/videos-page/info-sidebar/transcript-item/LanguageSelect.jsx", - "line": 16, - "column": 4, - "index": 404 + "filePath": "src/editors/containers/EditorContainer/components/TitleHeader/EditableHeader.test.jsx", + "line": 27, + "column": 49, + "index": 979 }, { - "filePath": "src/files-and-videos/videos-page/info-sidebar/transcript-item/TranscriptMenu.jsx", - "line": 15, - "column": 2, - "index": 401 + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/AnswerWidget/components/Checker/index.jsx", + "line": 11, + "column": 20, + "index": 206 + }, + { + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/AnswerWidget/components/Checker/index.jsx", + "line": 13, + "column": 18, + "index": 264 }, { "filePath": "src/files-and-videos/videos-page/transcript-settings/FormDropdown.jsx", - "line": 22, - "column": 4, - "index": 516 + "line": 38, + "column": 33, + "index": 1157 }, { - "filePath": "src/generic/create-or-rerun-course/CreateOrRerunCourseForm.jsx", - "line": 176, - "column": 4, - "index": 5548 + "filePath": "src/generic/configure-modal/PrereqSettings.jsx", + "line": 34, + "column": 6, + "index": 808 }, { - "filePath": "src/schedule-and-details/details-section/index.jsx", - "line": 26, - "column": 8, - "index": 940 + "filePath": "src/generic/configure-modal/UnitTab.jsx", + "line": 106, + "column": 26, + "index": 3570 }, { - "filePath": "src/schedule-and-details/requirements-section/index.jsx", - "line": 35, + "filePath": "src/generic/create-or-rerun-course/CreateOrRerunCourseForm.jsx", + "line": 223, "column": 6, - "index": 1127 + "index": 7048 }, { - "filePath": "src/schedule-and-details/schedule-section/certificate-display-row/CertificateDisplayRow.jsx", - "line": 128, + "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", + "line": 123, "column": 10, - "index": 3981 + "index": 4253 }, { - "filePath": "src/taxonomy/taxonomy-card/TaxonomyCardMenu.jsx", - "line": 28, - "column": 4, - "index": 614 + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/lti/LtiConfigForm.jsx", + "line": 68, + "column": 6, + "index": 2825 }, { - "filePath": "src/taxonomy/TaxonomyListPage.jsx", - "line": 37, + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/openedx/OpenedXConfigForm.jsx", + "line": 122, + "column": 14, + "index": 5560 + }, + { + "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", + "line": 19, "column": 8, - "index": 1008 + "index": 524 } ], - "Dropdown.Toggle": [ - { - "filePath": "src/course-outline/card-header/CardHeader.jsx", - "line": 125, - "column": 10, - "index": 3758 - }, - { - "filePath": "src/files-and-videos/generic/FileMenu.jsx", - "line": 26, - "column": 4, - "index": 522 - }, + "ModalDialog.Header": [ { - "filePath": "src/files-and-videos/generic/table-components/TableActions.jsx", - "line": 42, + "filePath": "plugins/course-apps/ora_settings/Settings.jsx", + "line": 141, "column": 8, - "index": 1197 + "index": 5220 }, { - "filePath": "src/files-and-videos/videos-page/info-sidebar/transcript-item/LanguageSelect.jsx", - "line": 17, - "column": 6, - "index": 421 + "filePath": "plugins/course-apps/proctoring/Settings.jsx", + "line": 614, + "column": 8, + "index": 23461 }, { - "filePath": "src/files-and-videos/videos-page/info-sidebar/transcript-item/TranscriptMenu.jsx", - "line": 16, + "filePath": "plugins/course-apps/xpert_unit_summary/settings-modal/SettingsModal.jsx", + "line": 84, "column": 4, - "index": 416 + "index": 2672 }, { - "filePath": "src/files-and-videos/videos-page/transcript-settings/FormDropdown.jsx", - "line": 25, + "filePath": "src/course-outline/highlights-modal/HighlightsModal.jsx", + "line": 43, "column": 6, - "index": 589 + "index": 1155 }, { - "filePath": "src/generic/create-or-rerun-course/CreateOrRerunCourseForm.jsx", - "line": 177, + "filePath": "src/course-outline/publish-modal/PublishModal.jsx", + "line": 35, "column": 6, - "index": 5582 + "index": 901 }, { - "filePath": "src/schedule-and-details/details-section/index.jsx", - "line": 27, + "filePath": "src/custom-pages/CustomPages.jsx", + "line": 247, "column": 10, - "index": 982 + "index": 8901 }, { - "filePath": "src/schedule-and-details/requirements-section/index.jsx", - "line": 36, - "column": 8, - "index": 1167 + "filePath": "src/editors/sharedComponents/BaseModal/index.jsx", + "line": 37, + "column": 4, + "index": 653 }, { - "filePath": "src/schedule-and-details/schedule-section/certificate-display-row/CertificateDisplayRow.jsx", - "line": 129, - "column": 12, - "index": 4026 + "filePath": "src/files-and-videos/files-page/FileValidationModal.jsx", + "line": 37, + "column": 6, + "index": 842 }, { - "filePath": "src/taxonomy/taxonomy-card/TaxonomyCardMenu.jsx", - "line": 29, + "filePath": "src/files-and-videos/generic/InfoModal.jsx", + "line": 48, "column": 6, - "index": 678 + "index": 1132 }, { - "filePath": "src/taxonomy/TaxonomyListPage.jsx", - "line": 38, - "column": 10, - "index": 1029 - } - ], - "MoveVertIcon": [ - { - "filePath": "src/course-outline/card-header/CardHeader.jsx", - "line": 130, - "column": 17, - "index": 3985 - } - ], - "Dropdown.Menu": [ - { - "filePath": "src/course-outline/card-header/CardHeader.jsx", - "line": 134, - "column": 10, - "index": 4100 + "filePath": "src/files-and-videos/generic/table-components/sort-and-filter-modal/SortAndFilterModal.jsx", + "line": 72, + "column": 6, + "index": 1939 }, { - "filePath": "src/files-and-videos/generic/FileMenu.jsx", - "line": 34, - "column": 4, - "index": 705 + "filePath": "src/files-and-videos/videos-page/upload-modal/UploadModal.jsx", + "line": 37, + "column": 6, + "index": 1030 }, { - "filePath": "src/files-and-videos/generic/table-components/TableActions.jsx", - "line": 49, + "filePath": "src/generic/configure-modal/ConfigureModal.jsx", + "line": 271, "column": 8, - "index": 1430 + "index": 8643 }, { - "filePath": "src/files-and-videos/videos-page/info-sidebar/transcript-item/LanguageSelect.jsx", - "line": 27, + "filePath": "src/generic/modal-dropzone/ModalDropzone.jsx", + "line": 89, "column": 6, - "index": 760 - }, - { - "filePath": "src/files-and-videos/videos-page/info-sidebar/transcript-item/TranscriptMenu.jsx", - "line": 25, - "column": 4, - "index": 678 + "index": 1939 }, { - "filePath": "src/files-and-videos/videos-page/transcript-settings/FormDropdown.jsx", - "line": 34, + "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModalBase.jsx", + "line": 31, "column": 6, - "index": 919 + "index": 620 }, { - "filePath": "src/generic/create-or-rerun-course/CreateOrRerunCourseForm.jsx", - "line": 180, - "column": 6, - "index": 5760 + "filePath": "src/pages-and-resources/discussions/app-config-form/AppConfigForm.jsx", + "line": 126, + "column": 8, + "index": 3781 }, { - "filePath": "src/schedule-and-details/details-section/index.jsx", - "line": 30, - "column": 10, - "index": 1121 + "filePath": "src/taxonomy/delete-dialog/index.jsx", + "line": 51, + "column": 8, + "index": 1346 }, { - "filePath": "src/schedule-and-details/requirements-section/index.jsx", + "filePath": "src/taxonomy/export-modal/index.jsx", "line": 39, "column": 8, - "index": 1306 + "index": 1055 }, { - "filePath": "src/schedule-and-details/schedule-section/certificate-display-row/CertificateDisplayRow.jsx", - "line": 132, - "column": 12, - "index": 4188 + "filePath": "src/taxonomy/import-tags/ImportTagsWizard.jsx", + "line": 273, + "column": 2, + "index": 7865 }, { - "filePath": "src/taxonomy/taxonomy-card/TaxonomyCardMenu.jsx", - "line": 39, + "filePath": "src/taxonomy/import-tags/ImportTagsWizard.jsx", + "line": 411, "column": 6, - "index": 1005 + "index": 11707 }, { - "filePath": "src/taxonomy/TaxonomyListPage.jsx", - "line": 44, - "column": 10, - "index": 1259 + "filePath": "src/taxonomy/manage-orgs/ManageOrgsModal.jsx", + "line": 164, + "column": 8, + "index": 4374 } ], - "Dropdown.Item": [ - { - "filePath": "src/course-outline/card-header/CardHeader.jsx", - "line": 135, - "column": 12, - "index": 4128 - }, + "ModalDialog.Title": [ { - "filePath": "src/course-outline/card-header/CardHeader.jsx", + "filePath": "plugins/course-apps/ora_settings/Settings.jsx", "line": 142, - "column": 12, - "index": 4414 + "column": 10, + "index": 5251 }, { - "filePath": "src/course-outline/card-header/CardHeader.jsx", - "line": 148, - "column": 12, - "index": 4663 + "filePath": "plugins/course-apps/proctoring/Settings.jsx", + "line": 615, + "column": 10, + "index": 23492 }, { - "filePath": "src/course-outline/card-header/CardHeader.jsx", - "line": 154, - "column": 12, - "index": 4912 + "filePath": "plugins/course-apps/xpert_unit_summary/settings-modal/SettingsModal.jsx", + "line": 85, + "column": 6, + "index": 2699 }, { - "filePath": "src/files-and-videos/generic/FileMenu.jsx", - "line": 36, + "filePath": "src/course-outline/highlights-modal/HighlightsModal.jsx", + "line": 44, "column": 8, - "index": 764 - }, - { - "filePath": "src/files-and-videos/generic/FileMenu.jsx", - "line": 43, - "column": 10, - "index": 965 + "index": 1221 }, { - "filePath": "src/files-and-videos/generic/FileMenu.jsx", - "line": 48, - "column": 10, - "index": 1162 + "filePath": "src/course-outline/publish-modal/PublishModal.jsx", + "line": 36, + "column": 8, + "index": 964 }, { - "filePath": "src/files-and-videos/generic/FileMenu.jsx", - "line": 53, - "column": 10, - "index": 1356 + "filePath": "src/custom-pages/CustomPages.jsx", + "line": 248, + "column": 12, + "index": 8934 }, { - "filePath": "src/files-and-videos/generic/FileMenu.jsx", - "line": 58, + "filePath": "src/editors/sharedComponents/BaseModal/index.jsx", + "line": 38, "column": 6, - "index": 1560 + "index": 747 }, { - "filePath": "src/files-and-videos/generic/FileMenu.jsx", - "line": 61, - "column": 6, - "index": 1679 + "filePath": "src/files-and-videos/files-page/FileValidationModal.jsx", + "line": 38, + "column": 8, + "index": 871 }, { - "filePath": "src/files-and-videos/generic/FileMenu.jsx", - "line": 65, - "column": 6, - "index": 1824 + "filePath": "src/files-and-videos/generic/InfoModal.jsx", + "line": 49, + "column": 8, + "index": 1161 }, { - "filePath": "src/files-and-videos/generic/table-components/TableActions.jsx", - "line": 51, - "column": 12, - "index": 1494 + "filePath": "src/files-and-videos/generic/table-components/sort-and-filter-modal/SortAndFilterModal.jsx", + "line": 73, + "column": 8, + "index": 1968 }, { - "filePath": "src/files-and-videos/generic/table-components/TableActions.jsx", - "line": 58, - "column": 10, - "index": 1754 + "filePath": "src/files-and-videos/videos-page/upload-modal/UploadModal.jsx", + "line": 38, + "column": 8, + "index": 1059 }, { - "filePath": "src/files-and-videos/generic/table-components/TableActions.jsx", - "line": 65, + "filePath": "src/generic/configure-modal/ConfigureModal.jsx", + "line": 272, "column": 10, - "index": 2026 - }, - { - "filePath": "src/files-and-videos/videos-page/info-sidebar/transcript-item/LanguageSelect.jsx", - "line": 32, - "column": 16, - "index": 1010 - }, - { - "filePath": "src/files-and-videos/videos-page/info-sidebar/transcript-item/LanguageSelect.jsx", - "line": 39, - "column": 16, - "index": 1335 - }, - { - "filePath": "src/files-and-videos/videos-page/info-sidebar/transcript-item/LanguageSelect.jsx", - "line": 45, - "column": 14, - "index": 1587 + "index": 8710 }, { - "filePath": "src/files-and-videos/videos-page/info-sidebar/transcript-item/TranscriptMenu.jsx", - "line": 26, - "column": 6, - "index": 744 + "filePath": "src/generic/modal-dropzone/ModalDropzone.jsx", + "line": 90, + "column": 8, + "index": 1968 }, { - "filePath": "src/files-and-videos/videos-page/info-sidebar/transcript-item/TranscriptMenu.jsx", + "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModalBase.jsx", "line": 32, - "column": 6, - "index": 942 - }, - { - "filePath": "src/files-and-videos/videos-page/info-sidebar/transcript-item/TranscriptMenu.jsx", - "line": 38, - "column": 6, - "index": 1179 - }, - { - "filePath": "src/files-and-videos/videos-page/transcript-settings/FormDropdown.jsx", - "line": 38, - "column": 14, - "index": 1130 - }, - { - "filePath": "src/files-and-videos/videos-page/transcript-settings/FormDropdown.jsx", - "line": 45, - "column": 14, - "index": 1438 - }, - { - "filePath": "src/files-and-videos/videos-page/transcript-settings/FormDropdown.jsx", - "line": 51, - "column": 12, - "index": 1672 + "column": 8, + "index": 649 }, { - "filePath": "src/generic/create-or-rerun-course/CreateOrRerunCourseForm.jsx", - "line": 182, + "filePath": "src/pages-and-resources/discussions/app-config-form/AppConfigForm.jsx", + "line": 127, "column": 10, - "index": 5827 + "index": 3829 }, { - "filePath": "src/schedule-and-details/details-section/index.jsx", - "line": 32, - "column": 14, - "index": 1198 + "filePath": "src/taxonomy/delete-dialog/index.jsx", + "line": 52, + "column": 10, + "index": 1377 }, { - "filePath": "src/schedule-and-details/requirements-section/index.jsx", + "filePath": "src/taxonomy/export-modal/index.jsx", "line": 40, "column": 10, - "index": 1332 + "index": 1086 }, { - "filePath": "src/schedule-and-details/requirements-section/index.jsx", - "line": 47, - "column": 12, - "index": 1645 + "filePath": "src/taxonomy/import-tags/ImportTagsWizard.jsx", + "line": 274, + "column": 4, + "index": 7890 }, { - "filePath": "src/schedule-and-details/schedule-section/certificate-display-row/CertificateDisplayRow.jsx", - "line": 134, - "column": 16, - "index": 4276 + "filePath": "src/taxonomy/import-tags/ImportTagsWizard.jsx", + "line": 414, + "column": 10, + "index": 11870 }, { - "filePath": "src/taxonomy/taxonomy-card/TaxonomyCardMenu.jsx", - "line": 41, + "filePath": "src/taxonomy/manage-orgs/ManageOrgsModal.jsx", + "line": 165, "column": 10, - "index": 1106 + "index": 4405 + } + ], + "ModalDialog.Body": [ + { + "filePath": "plugins/course-apps/ora_settings/Settings.jsx", + "line": 146, + "column": 8, + "index": 5386 }, { - "filePath": "src/taxonomy/taxonomy-detail/TaxonomyDetailMenu.jsx", - "line": 29, + "filePath": "plugins/course-apps/proctoring/Settings.jsx", + "line": 619, "column": 8, - "index": 653 + "index": 23617 }, { - "filePath": "src/taxonomy/TaxonomyListPage.jsx", - "line": 45, - "column": 12, - "index": 1287 + "filePath": "plugins/course-apps/xpert_unit_summary/settings-modal/SettingsModal.jsx", + "line": 89, + "column": 4, + "index": 2818 }, { - "filePath": "src/taxonomy/TaxonomyListPage.jsx", - "line": 51, + "filePath": "src/course-outline/highlights-modal/HighlightsModal.jsx", + "line": 53, "column": 12, - "index": 1546 - } - ], - "Stack": [ + "index": 1534 + }, { - "filePath": "src/course-outline/configure-modal/BasicTab.jsx", - "line": 18, + "filePath": "src/course-outline/publish-modal/PublishModal.jsx", + "line": 40, "column": 6, - "index": 580 + "index": 1118 }, { - "filePath": "src/course-outline/status-bar/StatusBar.jsx", - "line": 47, - "column": 4, - "index": 1390 + "filePath": "src/custom-pages/CustomPages.jsx", + "line": 252, + "column": 10, + "index": 9100 }, { - "filePath": "src/course-rerun/index.jsx", - "line": 51, - "column": 16, - "index": 1444 + "filePath": "src/editors/sharedComponents/BaseModal/index.jsx", + "line": 44, + "column": 6, + "index": 901 }, { - "filePath": "src/files-and-videos/files-page/FileInfoModalSidebar.jsx", - "line": 39, - "column": 4, - "index": 859 + "filePath": "src/files-and-videos/files-page/FileValidationModal.jsx", + "line": 42, + "column": 6, + "index": 1019 }, { "filePath": "src/files-and-videos/generic/InfoModal.jsx", - "line": 72, - "column": 12, - "index": 2010 - }, - { - "filePath": "src/files-and-videos/videos-page/info-sidebar/InfoTab.jsx", - "line": 14, - "column": 4, - "index": 515 + "line": 57, + "column": 6, + "index": 1444 }, { - "filePath": "src/files-and-videos/videos-page/info-sidebar/TranscriptTab.jsx", - "line": 101, - "column": 4, - "index": 2991 + "filePath": "src/files-and-videos/generic/table-components/sort-and-filter-modal/SortAndFilterModal.jsx", + "line": 77, + "column": 6, + "index": 2107 }, { - "filePath": "src/files-and-videos/videos-page/transcript-settings/Cielo24Form.jsx", - "line": 28, - "column": 6, - "index": 1084 + "filePath": "src/files-and-videos/videos-page/upload-modal/UploadModal.jsx", + "line": 69, + "column": 8, + "index": 2173 }, { - "filePath": "src/files-and-videos/videos-page/transcript-settings/Cielo24Form.jsx", - "line": 86, - "column": 4, - "index": 3434 + "filePath": "src/generic/configure-modal/ConfigureModal.jsx", + "line": 287, + "column": 14, + "index": 9123 }, { - "filePath": "src/files-and-videos/videos-page/transcript-settings/OrderTranscriptForm.jsx", - "line": 139, + "filePath": "src/generic/modal-dropzone/ModalDropzone.jsx", + "line": 94, "column": 6, - "index": 4458 + "index": 2074 }, { - "filePath": "src/files-and-videos/videos-page/transcript-settings/ThreePlayMediaForm.jsx", - "line": 37, + "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModalBase.jsx", + "line": 34, "column": 6, - "index": 1120 + "index": 756 }, { - "filePath": "src/files-and-videos/videos-page/transcript-settings/ThreePlayMediaForm.jsx", - "line": 101, - "column": 4, - "index": 3881 + "filePath": "src/pages-and-resources/discussions/app-config-form/AppConfigForm.jsx", + "line": 131, + "column": 8, + "index": 4040 }, { - "filePath": "src/schedule-and-details/license-section/license-commons-options/index.jsx", - "line": 58, - "column": 6, - "index": 1808 + "filePath": "src/taxonomy/delete-dialog/index.jsx", + "line": 57, + "column": 8, + "index": 1633 }, { - "filePath": "src/schedule-and-details/license-section/license-icons/index.jsx", - "line": 27, - "column": 4, - "index": 769 + "filePath": "src/taxonomy/export-modal/index.jsx", + "line": 44, + "column": 8, + "index": 1235 }, { - "filePath": "src/schedule-and-details/requirements-section/grade-requirements/index.jsx", - "line": 22, - "column": 4, - "index": 579 + "filePath": "src/taxonomy/import-tags/ImportTagsWizard.jsx", + "line": 443, + "column": 10, + "index": 12710 }, { - "filePath": "src/studio-home/processing-courses/index.jsx", - "line": 20, - "column": 6, - "index": 574 + "filePath": "src/taxonomy/manage-orgs/ManageOrgsModal.jsx", + "line": 172, + "column": 8, + "index": 4583 } ], - "ModalDialog": [ + "ModalDialog.Footer": [ { - "filePath": "src/course-outline/configure-modal/ConfigureModal.jsx", - "line": 49, + "filePath": "plugins/course-apps/ora_settings/Settings.jsx", + "line": 149, + "column": 8, + "index": 5466 + }, + { + "filePath": "plugins/course-apps/proctoring/Settings.jsx", + "line": 627, + "column": 8, + "index": 23999 + }, + { + "filePath": "plugins/course-apps/xpert_unit_summary/settings-modal/SettingsModal.jsx", + "line": 92, "column": 4, - "index": 1555 + "index": 2882 }, { "filePath": "src/course-outline/highlights-modal/HighlightsModal.jsx", - "line": 34, - "column": 4, - "index": 939 + "line": 73, + "column": 12, + "index": 2406 }, { "filePath": "src/course-outline/publish-modal/PublishModal.jsx", - "line": 25, - "column": 4, - "index": 590 + "line": 70, + "column": 6, + "index": 2248 }, { - "filePath": "src/custom-pages/CustomPages.jsx", - "line": 234, - "column": 8, - "index": 8347 + "filePath": "src/editors/sharedComponents/BaseModal/index.jsx", + "line": 48, + "column": 4, + "index": 987 }, { - "filePath": "src/files-and-videos/generic/InfoModal.jsx", - "line": 39, - "column": 4, - "index": 911 + "filePath": "src/files-and-videos/files-page/FileValidationModal.jsx", + "line": 48, + "column": 6, + "index": 1250 }, { "filePath": "src/files-and-videos/generic/table-components/sort-and-filter-modal/SortAndFilterModal.jsx", - "line": 62, - "column": 4, - "index": 1479 + "line": 160, + "column": 6, + "index": 4861 }, { - "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", - "line": 65, - "column": 2, - "index": 2043 + "filePath": "src/files-and-videos/videos-page/upload-modal/UploadModal.jsx", + "line": 73, + "column": 6, + "index": 2319 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/AppConfigForm.jsx", - "line": 120, + "filePath": "src/generic/configure-modal/ConfigureModal.jsx", + "line": 292, + "column": 14, + "index": 9375 + }, + { + "filePath": "src/generic/modal-dropzone/ModalDropzone.jsx", + "line": 114, "column": 6, - "index": 3566 + "index": 2819 }, { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 576, - "column": 4, - "index": 22242 + "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModalBase.jsx", + "line": 35, + "column": 6, + "index": 810 }, { - "filePath": "src/pages-and-resources/xpert-unit-summary/settings-modal/SettingsModal.jsx", - "line": 72, - "column": 2, - "index": 2299 + "filePath": "src/pages-and-resources/discussions/app-config-form/AppConfigForm.jsx", + "line": 134, + "column": 8, + "index": 4212 }, { "filePath": "src/taxonomy/delete-dialog/index.jsx", - "line": 39, - "column": 4, - "index": 908 + "line": 72, + "column": 8, + "index": 2135 }, { "filePath": "src/taxonomy/export-modal/index.jsx", - "line": 27, - "column": 4, - "index": 628 - } - ], - "ModalDialog.Header": [ - { - "filePath": "src/course-outline/configure-modal/ConfigureModal.jsx", - "line": 56, - "column": 6, - "index": 1708 + "line": 69, + "column": 8, + "index": 2127 }, { - "filePath": "src/course-outline/highlights-modal/HighlightsModal.jsx", - "line": 42, - "column": 6, - "index": 1119 + "filePath": "src/taxonomy/import-tags/ImportTagsWizard.jsx", + "line": 461, + "column": 10, + "index": 13357 }, { - "filePath": "src/course-outline/publish-modal/PublishModal.jsx", - "line": 32, - "column": 6, - "index": 741 + "filePath": "src/taxonomy/manage-orgs/ManageOrgsModal.jsx", + "line": 219, + "column": 8, + "index": 6571 + } + ], + "ActionRow": [ + { + "filePath": "plugins/course-apps/ora_settings/Settings.jsx", + "line": 150, + "column": 10, + "index": 5513 }, { - "filePath": "src/custom-pages/CustomPages.jsx", - "line": 240, + "filePath": "plugins/course-apps/proctoring/Settings.jsx", + "line": 632, "column": 10, - "index": 8521 + "index": 24104 }, { - "filePath": "src/files-and-videos/generic/InfoModal.jsx", - "line": 48, + "filePath": "plugins/course-apps/xpert_unit_summary/settings-modal/SettingsModal.jsx", + "line": 93, "column": 6, - "index": 1124 + "index": 2925 }, { - "filePath": "src/files-and-videos/generic/table-components/sort-and-filter-modal/SortAndFilterModal.jsx", - "line": 69, + "filePath": "src/accessibility-page/AccessibilityForm/AccessibilityForm.jsx", + "line": 123, "column": 6, - "index": 1647 + "index": 3893 }, { - "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", - "line": 74, - "column": 4, - "index": 2206 + "filePath": "src/advanced-settings/modal-error/ModalError.jsx", + "line": 17, + "column": 6, + "index": 552 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/AppConfigForm.jsx", - "line": 126, - "column": 8, - "index": 3777 + "filePath": "src/advanced-settings/setting-card/SettingCard.jsx", + "line": 65, + "column": 14, + "index": 1666 }, { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 587, + "filePath": "src/certificates/empty-certificates-with-modes/EmptyCertificatesWithModes.jsx", + "line": 21, "column": 8, - "index": 22535 + "index": 582 }, { - "filePath": "src/pages-and-resources/xpert-unit-summary/settings-modal/SettingsModal.jsx", - "line": 81, + "filePath": "src/course-checklist/ChecklistSection/ChecklistItemBody.jsx", + "line": 42, "column": 4, - "index": 2462 - }, - { - "filePath": "src/taxonomy/delete-dialog/index.jsx", - "line": 48, - "column": 6, - "index": 1168 + "index": 1719 }, { - "filePath": "src/taxonomy/export-modal/index.jsx", - "line": 36, - "column": 6, - "index": 863 - } - ], - "ModalDialog.Title": [ - { - "filePath": "src/course-outline/configure-modal/ConfigureModal.jsx", - "line": 57, + "filePath": "src/course-outline/enable-highlights-modal/EnableHighlightsModal.jsx", + "line": 30, "column": 8, - "index": 1773 + "index": 689 }, { "filePath": "src/course-outline/highlights-modal/HighlightsModal.jsx", - "line": 43, - "column": 8, - "index": 1185 + "line": 74, + "column": 14, + "index": 2458 }, { "filePath": "src/course-outline/publish-modal/PublishModal.jsx", - "line": 33, + "line": 71, "column": 8, - "index": 804 + "index": 2294 }, { - "filePath": "src/custom-pages/CustomPages.jsx", - "line": 241, + "filePath": "src/course-rerun/index.jsx", + "line": 57, + "column": 16, + "index": 1690 + }, + { + "filePath": "src/course-team/add-user-form/AddUserForm.jsx", + "line": 41, "column": 12, - "index": 8554 + "index": 1411 }, { - "filePath": "src/files-and-videos/generic/InfoModal.jsx", - "line": 49, + "filePath": "src/course-team/info-modal/InfoModal.jsx", + "line": 42, "column": 8, - "index": 1153 + "index": 886 }, { - "filePath": "src/files-and-videos/generic/table-components/sort-and-filter-modal/SortAndFilterModal.jsx", - "line": 70, + "filePath": "src/course-unit/add-component/add-component-modals/ModalContainer.jsx", + "line": 29, "column": 8, - "index": 1676 + "index": 625 }, { - "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", - "line": 75, - "column": 6, - "index": 2233 + "filePath": "src/course-updates/CourseUpdates.jsx", + "line": 190, + "column": 24, + "index": 7733 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/AppConfigForm.jsx", - "line": 127, - "column": 10, - "index": 3825 + "filePath": "src/course-updates/delete-modal/DeleteModal.jsx", + "line": 21, + "column": 8, + "index": 475 }, { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 588, - "column": 10, - "index": 22566 + "filePath": "src/course-updates/update-form/UpdateForm.jsx", + "line": 111, + "column": 12, + "index": 3941 }, { - "filePath": "src/pages-and-resources/xpert-unit-summary/settings-modal/SettingsModal.jsx", - "line": 82, + "filePath": "src/custom-pages/CustomPageCard.jsx", + "line": 68, "column": 6, - "index": 2489 + "index": 1734 }, { - "filePath": "src/taxonomy/delete-dialog/index.jsx", - "line": 49, - "column": 8, - "index": 1197 + "filePath": "src/custom-pages/CustomPageCard.jsx", + "line": 109, + "column": 10, + "index": 3432 }, { - "filePath": "src/taxonomy/export-modal/index.jsx", - "line": 37, + "filePath": "src/custom-pages/CustomPages.jsx", + "line": 132, "column": 8, - "index": 892 - } - ], - "ModalDialog.Body": [ - { - "filePath": "src/course-outline/configure-modal/ConfigureModal.jsx", - "line": 61, - "column": 6, - "index": 1927 + "index": 4540 }, { - "filePath": "src/course-outline/highlights-modal/HighlightsModal.jsx", - "line": 52, - "column": 12, - "index": 1498 + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/index.jsx", + "line": 73, + "column": 10, + "index": 2181 }, { - "filePath": "src/course-outline/publish-modal/PublishModal.jsx", - "line": 37, - "column": 6, - "index": 958 + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/GroupFeedback/GroupFeedbackRow.jsx", + "line": 21, + "column": 4, + "index": 485 }, { - "filePath": "src/custom-pages/CustomPages.jsx", - "line": 245, + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/HintRow.jsx", + "line": 25, + "column": 2, + "index": 539 + }, + { + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/HandoutWidget/index.jsx", + "line": 68, "column": 10, - "index": 8720 + "index": 2043 }, { - "filePath": "src/files-and-videos/generic/InfoModal.jsx", - "line": 57, - "column": 6, - "index": 1436 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", + "line": 49, + "column": 18, + "index": 1328 }, { - "filePath": "src/files-and-videos/generic/table-components/sort-and-filter-modal/SortAndFilterModal.jsx", - "line": 74, - "column": 6, - "index": 1815 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", + "line": 68, + "column": 18, + "index": 2132 }, { - "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", - "line": 79, - "column": 4, - "index": 2352 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", + "line": 93, + "column": 18, + "index": 3203 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/AppConfigForm.jsx", - "line": 131, - "column": 8, - "index": 4036 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", + "line": 119, + "column": 18, + "index": 4309 }, { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 592, - "column": 8, - "index": 22691 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseSelector.jsx", + "line": 36, + "column": 6, + "index": 914 }, { - "filePath": "src/pages-and-resources/xpert-unit-summary/settings-modal/SettingsModal.jsx", - "line": 86, + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/ImportTranscriptCard.jsx", + "line": 24, "column": 4, - "index": 2608 + "index": 569 }, { - "filePath": "src/taxonomy/delete-dialog/index.jsx", - "line": 54, - "column": 6, - "index": 1443 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/index.jsx", + "line": 130, + "column": 12, + "index": 4088 }, { - "filePath": "src/taxonomy/export-modal/index.jsx", - "line": 41, - "column": 6, - "index": 1033 - } - ], - "Tabs": [ - { - "filePath": "src/course-outline/configure-modal/ConfigureModal.jsx", - "line": 62, + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/LanguageSelector.jsx", + "line": 70, "column": 8, - "index": 1988 + "index": 2315 }, { - "filePath": "src/files-and-videos/videos-page/info-sidebar/VideoInfoModalSidebar.jsx", - "line": 20, - "column": 2, - "index": 461 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/LanguageSelector.jsx", + "line": 79, + "column": 6, + "index": 2521 }, { - "filePath": "src/studio-home/tabs-section/index.jsx", - "line": 106, - "column": 4, - "index": 3505 - } - ], - "Tab": [ - { - "filePath": "src/course-outline/configure-modal/ConfigureModal.jsx", - "line": 63, + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/Transcript.jsx", + "line": 84, "column": 10, - "index": 2005 + "index": 2709 }, { - "filePath": "src/course-outline/configure-modal/ConfigureModal.jsx", - "line": 66, - "column": 10, - "index": 2189 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoSourceWidget/index.jsx", + "line": 124, + "column": 6, + "index": 4073 }, { - "filePath": "src/files-and-videos/videos-page/info-sidebar/VideoInfoModalSidebar.jsx", - "line": 25, - "column": 4, - "index": 580 + "filePath": "src/editors/sharedComponents/BaseModal/index.jsx", + "line": 49, + "column": 6, + "index": 1014 }, { - "filePath": "src/files-and-videos/videos-page/info-sidebar/VideoInfoModalSidebar.jsx", - "line": 28, + "filePath": "src/editors/sharedComponents/SelectionModal/SearchSort.jsx", + "line": 34, "column": 4, - "index": 704 + "index": 709 }, { - "filePath": "src/studio-home/tabs-section/index.jsx", - "line": 43, + "filePath": "src/editors/sharedComponents/TypeaheadDropdown/index.jsx", + "line": 188, "column": 6, - "index": 1706 + "index": 4794 }, { - "filePath": "src/studio-home/tabs-section/index.jsx", - "line": 61, - "column": 8, - "index": 2229 + "filePath": "src/files-and-videos/files-page/FileInfoModalSidebar.jsx", + "line": 58, + "column": 6, + "index": 1432 }, { - "filePath": "src/studio-home/tabs-section/index.jsx", - "line": 77, - "column": 8, - "index": 2638 - } - ], - "ModalDialog.Footer": [ - { - "filePath": "src/course-outline/configure-modal/ConfigureModal.jsx", + "filePath": "src/files-and-videos/files-page/FileInfoModalSidebar.jsx", "line": 75, "column": 6, - "index": 2577 + "index": 1981 }, { - "filePath": "src/course-outline/highlights-modal/HighlightsModal.jsx", + "filePath": "src/files-and-videos/files-page/FileInfoModalSidebar.jsx", + "line": 89, + "column": 6, + "index": 2413 + }, + { + "filePath": "src/files-and-videos/files-page/FileValidationModal.jsx", + "line": 49, + "column": 8, + "index": 1279 + }, + { + "filePath": "src/files-and-videos/generic/DeleteConfirmationModal.jsx", "line": 72, - "column": 12, - "index": 2370 + "column": 8, + "index": 2014 }, { - "filePath": "src/course-outline/publish-modal/PublishModal.jsx", - "line": 65, - "column": 6, - "index": 2054 + "filePath": "src/files-and-videos/generic/table-components/GalleryCard.jsx", + "line": 34, + "column": 10, + "index": 767 }, { "filePath": "src/files-and-videos/generic/table-components/sort-and-filter-modal/SortAndFilterModal.jsx", - "line": 157, - "column": 6, - "index": 4569 + "line": 161, + "column": 8, + "index": 4890 }, { - "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", - "line": 82, - "column": 4, - "index": 2416 + "filePath": "src/files-and-videos/videos-page/transcript-settings/TranscriptSettings.jsx", + "line": 63, + "column": 12, + "index": 2060 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/AppConfigForm.jsx", - "line": 134, + "filePath": "src/files-and-videos/videos-page/upload-modal/UploadModal.jsx", + "line": 74, "column": 8, - "index": 4208 + "index": 2348 }, { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 600, + "filePath": "src/files-and-videos/videos-page/VideosPage.jsx", + "line": 254, "column": 8, - "index": 23073 + "index": 7415 }, { - "filePath": "src/pages-and-resources/xpert-unit-summary/settings-modal/SettingsModal.jsx", - "line": 89, - "column": 4, - "index": 2672 + "filePath": "src/generic/configure-modal/ConfigureModal.jsx", + "line": 293, + "column": 16, + "index": 9429 }, { - "filePath": "src/taxonomy/delete-dialog/index.jsx", - "line": 72, - "column": 6, - "index": 2059 + "filePath": "src/generic/create-or-rerun-course/CreateOrRerunCourseForm.jsx", + "line": 256, + "column": 8, + "index": 8192 }, { - "filePath": "src/taxonomy/export-modal/index.jsx", - "line": 66, - "column": 6, - "index": 1875 - } - ], - "ModalDialog.CloseButton": [ - { - "filePath": "src/course-outline/configure-modal/ConfigureModal.jsx", - "line": 77, - "column": 10, - "index": 2645 + "filePath": "src/generic/delete-modal/DeleteModal.jsx", + "line": 38, + "column": 8, + "index": 921 }, { - "filePath": "src/course-outline/highlights-modal/HighlightsModal.jsx", - "line": 74, - "column": 16, - "index": 2450 + "filePath": "src/generic/modal-dropzone/ModalDropzone.jsx", + "line": 115, + "column": 8, + "index": 2848 }, { - "filePath": "src/course-outline/publish-modal/PublishModal.jsx", - "line": 67, - "column": 10, - "index": 2122 + "filePath": "src/generic/modal-notification/index.jsx", + "line": 14, + "column": 6, + "index": 386 }, { - "filePath": "src/files-and-videos/generic/table-components/sort-and-filter-modal/SortAndFilterModal.jsx", - "line": 159, + "filePath": "src/generic/sub-header/SubHeader.jsx", + "line": 26, "column": 10, - "index": 4620 + "index": 678 }, { - "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", - "line": 84, + "filePath": "src/generic/sub-header/SubHeader.jsx", + "line": 32, "column": 8, - "index": 2479 + "index": 844 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/AppConfigForm.jsx", - "line": 136, + "filePath": "src/group-configurations/content-groups-section/ContentGroupCard.jsx", + "line": 89, + "column": 14, + "index": 2573 + }, + { + "filePath": "src/group-configurations/content-groups-section/ContentGroupForm.jsx", + "line": 85, + "column": 14, + "index": 2657 + }, + { + "filePath": "src/group-configurations/experiment-configurations-section/ExperimentCard.jsx", + "line": 110, "column": 12, - "index": 4263 + "index": 3276 }, { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 606, + "filePath": "src/group-configurations/experiment-configurations-section/ExperimentForm.jsx", + "line": 118, "column": 12, - "index": 23202 + "index": 3913 }, { - "filePath": "src/pages-and-resources/xpert-unit-summary/settings-modal/SettingsModal.jsx", - "line": 91, + "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModalBase.jsx", + "line": 37, "column": 8, - "index": 2735 + "index": 876 }, { - "filePath": "src/taxonomy/delete-dialog/index.jsx", - "line": 74, + "filePath": "src/pages-and-resources/discussions/app-config-form/AppConfigForm.jsx", + "line": 135, "column": 10, - "index": 2110 + "index": 4243 }, { - "filePath": "src/taxonomy/export-modal/index.jsx", - "line": 68, + "filePath": "src/pages-and-resources/discussions/app-list/AppList.jsx", + "line": 169, "column": 10, - "index": 1926 - } - ], - "Form.Checkbox": [ + "index": 5753 + }, { - "filePath": "src/course-outline/configure-modal/VisibilityTab.jsx", - "line": 16, - "column": 6, - "index": 518 + "filePath": "src/schedule-and-details/license-section/license-commons-options/index.jsx", + "line": 67, + "column": 12, + "index": 2129 }, { - "filePath": "src/files-and-videos/generic/table-components/sort-and-filter-modal/SortAndFilterModal.jsx", - "line": 148, + "filePath": "src/studio-home/processing-courses/course-item/index.jsx", + "line": 38, "column": 14, - "index": 4232 + "index": 1013 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/DivisionByGroupFields.jsx", - "line": 118, - "column": 30, - "index": 4284 + "filePath": "src/studio-home/processing-courses/course-item/index.jsx", + "line": 65, + "column": 14, + "index": 1971 }, { - "filePath": "src/schedule-and-details/requirements-section/entrance-exam/index.jsx", - "line": 33, + "filePath": "src/taxonomy/delete-dialog/index.jsx", + "line": 73, "column": 10, - "index": 1011 - } - ], - "CheckCircleIcon": [ - { - "filePath": "src/course-outline/CourseOutline.jsx", - "line": 131, - "column": 22, - "index": 4239 - }, - { - "filePath": "src/schedule-and-details/index.jsx", - "line": 177, - "column": 18, - "index": 5429 - } - ], - "IconAdd": [ - { - "filePath": "src/course-outline/CourseOutline.jsx", - "line": 221, - "column": 40, - "index": 8865 - }, - { - "filePath": "src/course-outline/header-navigations/HeaderNavigations.jsx", - "line": 36, - "column": 22, - "index": 968 - }, - { - "filePath": "src/course-outline/section-card/SectionCard.jsx", - "line": 145, - "column": 26, - "index": 4147 + "index": 2166 }, { - "filePath": "src/course-outline/subsection-card/SubsectionCard.jsx", - "line": 111, - "column": 24, - "index": 3236 + "filePath": "src/taxonomy/export-modal/index.jsx", + "line": 70, + "column": 10, + "index": 2158 }, { - "filePath": "src/course-team/add-team-member/AddTeamMember.jsx", - "line": 20, - "column": 20, - "index": 745 + "filePath": "src/taxonomy/manage-orgs/ManageOrgsModal.jsx", + "line": 43, + "column": 8, + "index": 978 }, { - "filePath": "src/course-team/CourseTeam.jsx", - "line": 83, - "column": 36, - "index": 2647 + "filePath": "src/taxonomy/manage-orgs/ManageOrgsModal.jsx", + "line": 220, + "column": 10, + "index": 6602 }, { - "filePath": "src/grading-settings/grading-scale/GradingScale.jsx", - "line": 197, - "column": 13, - "index": 6391 + "filePath": "src/textbooks/textbook-card/TextbooksCard.jsx", + "line": 77, + "column": 16, + "index": 2337 }, { - "filePath": "src/grading-settings/GradingSettings.jsx", - "line": 207, - "column": 34, - "index": 8448 + "filePath": "src/textbooks/textbook-form/TextbookForm.jsx", + "line": 154, + "column": 12, + "index": 6474 } ], - "WarningIcon": [ - { - "filePath": "src/course-outline/CourseOutline.jsx", - "line": 281, - "column": 18, - "index": 10990 - }, + "ModalDialog.CloseButton": [ { - "filePath": "src/generic/internet-connection-alert/index.jsx", - "line": 53, + "filePath": "plugins/course-apps/ora_settings/Settings.jsx", + "line": 151, "column": 12, - "index": 1404 + "index": 5537 }, { - "filePath": "src/schedule-and-details/index.jsx", - "line": 354, - "column": 16, - "index": 12574 + "filePath": "plugins/course-apps/proctoring/Settings.jsx", + "line": 633, + "column": 12, + "index": 24128 }, { - "filePath": "src/studio-home/processing-courses/course-item/index.jsx", - "line": 66, - "column": 27, - "index": 2002 - } - ], - "Hyperlink": [ - { - "filePath": "src/course-outline/enable-highlights-modal/EnableHighlightsModal.jsx", - "line": 43, + "filePath": "plugins/course-apps/xpert_unit_summary/settings-modal/SettingsModal.jsx", + "line": 94, "column": 8, - "index": 1158 + "index": 2945 }, { "filePath": "src/course-outline/highlights-modal/HighlightsModal.jsx", - "line": 56, - "column": 20, - "index": 1674 + "line": 75, + "column": 16, + "index": 2486 }, { - "filePath": "src/course-outline/outline-sidebar/OutlineSidebar.jsx", - "line": 45, - "column": 14, - "index": 1443 + "filePath": "src/course-outline/publish-modal/PublishModal.jsx", + "line": 72, + "column": 10, + "index": 2316 }, { - "filePath": "src/course-outline/status-bar/StatusBar.jsx", - "line": 50, + "filePath": "src/editors/sharedComponents/BaseModal/index.jsx", + "line": 52, "column": 8, - "index": 1615 + "index": 1086 }, { - "filePath": "src/course-outline/status-bar/StatusBar.jsx", - "line": 68, - "column": 8, - "index": 2263 + "filePath": "src/files-and-videos/files-page/FileValidationModal.jsx", + "line": 50, + "column": 10, + "index": 1301 }, { - "filePath": "src/course-outline/status-bar/StatusBar.jsx", - "line": 88, + "filePath": "src/files-and-videos/generic/table-components/sort-and-filter-modal/SortAndFilterModal.jsx", + "line": 162, "column": 10, - "index": 3117 + "index": 4912 }, { - "filePath": "src/course-rerun/course-rerun-sidebar/index.jsx", - "line": 66, - "column": 14, - "index": 1847 + "filePath": "src/generic/configure-modal/ConfigureModal.jsx", + "line": 294, + "column": 18, + "index": 9459 }, { - "filePath": "src/custom-pages/CustomPages.jsx", - "line": 137, + "filePath": "src/generic/modal-dropzone/ModalDropzone.jsx", + "line": 116, "column": 10, - "index": 4541 + "index": 2870 }, { - "filePath": "src/export-page/export-sidebar/ExportSidebar.jsx", - "line": 39, - "column": 6, - "index": 2162 + "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModalBase.jsx", + "line": 38, + "column": 10, + "index": 898 }, { - "filePath": "src/files-and-videos/generic/UsageMetricsMessage.jsx", - "line": 30, + "filePath": "src/pages-and-resources/discussions/app-config-form/AppConfigForm.jsx", + "line": 136, "column": 12, - "index": 902 + "index": 4267 }, { - "filePath": "src/generic/course-upload-image/index.jsx", - "line": 90, + "filePath": "src/taxonomy/delete-dialog/index.jsx", + "line": 74, "column": 12, - "index": 2383 + "index": 2190 }, { - "filePath": "src/generic/help-sidebar/HelpSidebarLink.jsx", - "line": 9, - "column": 6, - "index": 247 + "filePath": "src/taxonomy/export-modal/index.jsx", + "line": 71, + "column": 12, + "index": 2182 }, { - "filePath": "src/import-page/import-sidebar/ImportSidebar.jsx", - "line": 41, - "column": 6, - "index": 2165 + "filePath": "src/taxonomy/manage-orgs/ManageOrgsModal.jsx", + "line": 221, + "column": 12, + "index": 6626 + } + ], + "StatefulButton": [ + { + "filePath": "plugins/course-apps/ora_settings/Settings.jsx", + "line": 154, + "column": 12, + "index": 5685 }, { - "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", - "line": 164, - "column": 4, - "index": 5026 + "filePath": "plugins/course-apps/proctoring/Settings.jsx", + "line": 636, + "column": 12, + "index": 24300 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/AppExternalLinks.jsx", - "line": 30, + "filePath": "plugins/course-apps/xpert_unit_summary/settings-modal/SettingsModal.jsx", + "line": 165, + "column": 6, + "index": 4710 + }, + { + "filePath": "plugins/course-apps/xpert_unit_summary/settings-modal/SettingsModal.jsx", + "line": 317, "column": 16, - "index": 834 + "index": 9213 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/DivisionByGroupFields.jsx", - "line": 75, - "column": 10, - "index": 2348 + "filePath": "src/accessibility-page/AccessibilityForm/AccessibilityForm.jsx", + "line": 124, + "column": 8, + "index": 3913 }, { - "filePath": "src/pages-and-resources/live/BBBSettings.jsx", - "line": 73, - "column": 6, - "index": 2336 + "filePath": "src/advanced-settings/AdvancedSettings.jsx", + "line": 256, + "column": 12, + "index": 10564 }, { - "filePath": "src/pages-and-resources/live/BBBSettings.jsx", - "line": 94, - "column": 16, - "index": 3173 + "filePath": "src/custom-pages/CustomPageCard.jsx", + "line": 113, + "column": 12, + "index": 3615 }, { - "filePath": "src/pages-and-resources/ora_settings/Settings.jsx", - "line": 27, - "column": 8, - "index": 913 + "filePath": "src/custom-pages/CustomPages.jsx", + "line": 202, + "column": 12, + "index": 7299 }, { - "filePath": "src/pages-and-resources/pages/PageCard.jsx", - "line": 41, + "filePath": "src/editors/sharedComponents/SelectionModal/GalleryLoadMoreButton.jsx", + "line": 35, "column": 8, - "index": 1293 + "index": 952 }, { - "filePath": "src/pages-and-resources/PagesAndResources.jsx", - "line": 73, + "filePath": "src/generic/create-or-rerun-course/CreateOrRerunCourseForm.jsx", + "line": 263, "column": 10, - "index": 2882 + "index": 8434 }, { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 248, - "column": 4, - "index": 9592 + "filePath": "src/generic/delete-modal/DeleteModal.jsx", + "line": 49, + "column": 10, + "index": 1217 }, { - "filePath": "src/pages-and-resources/xpert-unit-summary/settings-modal/SettingsModal.jsx", - "line": 260, - "column": 6, - "index": 7471 + "filePath": "src/generic/loading-button/index.jsx", + "line": 52, + "column": 4, + "index": 1064 }, { - "filePath": "src/pages-and-resources/xpert-unit-summary/settings-modal/SettingsModal.jsx", - "line": 273, + "filePath": "src/grading-settings/GradingSettings.jsx", + "line": 254, + "column": 12, + "index": 9940 + }, + { + "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", + "line": 131, + "column": 16, + "index": 4529 + }, + { + "filePath": "src/pages-and-resources/discussions/app-config-form/AppConfigFormSaveButton.jsx", + "line": 36, "column": 6, - "index": 7778 + "index": 1547 }, { - "filePath": "src/schedule-and-details/basic-section/index.jsx", - "line": 102, - "column": 8, - "index": 2806 + "filePath": "src/pages-and-resources/discussions/app-list/AppList.jsx", + "line": 173, + "column": 12, + "index": 5971 }, { - "filePath": "src/schedule-and-details/introducing-section/index.jsx", - "line": 43, - "column": 10, - "index": 1217 + "filePath": "src/schedule-and-details/index.jsx", + "line": 371, + "column": 12, + "index": 13105 }, { - "filePath": "src/schedule-and-details/introducing-section/index.jsx", - "line": 61, + "filePath": "src/studio-home/collapsible-state-with-action/index.jsx", + "line": 140, "column": 10, - "index": 1734 + "index": 4933 + } + ], + "Alert.Link": [ + { + "filePath": "plugins/course-apps/proctoring/Settings.jsx", + "line": 174, + "column": 16, + "index": 7329 }, { - "filePath": "src/schedule-and-details/license-section/license-icons/index.jsx", - "line": 18, - "column": 6, - "index": 609 + "filePath": "plugins/course-apps/proctoring/Settings.jsx", + "line": 189, + "column": 35, + "index": 7886 }, { - "filePath": "src/schedule-and-details/requirements-section/entrance-exam/index.jsx", - "line": 49, - "column": 22, - "index": 1598 + "filePath": "plugins/course-apps/proctoring/Settings.jsx", + "line": 452, + "column": 14, + "index": 17246 }, { - "filePath": "src/studio-home/card-item/index.jsx", - "line": 33, - "column": 10, - "index": 1183 + "filePath": "plugins/course-apps/proctoring/Settings.jsx", + "line": 473, + "column": 12, + "index": 17933 }, { - "filePath": "src/studio-home/card-item/index.jsx", - "line": 46, + "filePath": "plugins/course-apps/proctoring/Settings.jsx", + "line": 492, "column": 14, - "index": 1566 + "index": 18595 }, { - "filePath": "src/studio-home/card-item/index.jsx", - "line": 50, - "column": 12, - "index": 1734 + "filePath": "src/generic/ConnectionErrorAlert.jsx", + "line": 14, + "column": 10, + "index": 460 }, { - "filePath": "src/studio-home/processing-courses/course-item/index.jsx", - "line": 49, - "column": 16, - "index": 1497 + "filePath": "src/generic/SaveFormConnectionErrorAlert.jsx", + "line": 15, + "column": 10, + "index": 697 } ], - "Form.Label": [ + "Form.Text": [ { - "filePath": "src/course-team/add-user-form/AddUserForm.jsx", - "line": 29, + "filePath": "plugins/course-apps/proctoring/Settings.jsx", + "line": 325, "column": 14, - "index": 835 + "index": 12382 }, { - "filePath": "src/files-and-videos/videos-page/transcript-settings/Cielo24Form.jsx", - "line": 30, + "filePath": "plugins/course-apps/proctoring/Settings.jsx", + "line": 352, + "column": 12, + "index": 13577 + }, + { + "filePath": "plugins/course-apps/teams/Settings.jsx", + "line": 132, + "column": 14, + "index": 4742 + }, + { + "filePath": "src/generic/configure-modal/AdvancedTab.jsx", + "line": 190, "column": 10, - "index": 1141 + "index": 5989 }, { - "filePath": "src/files-and-videos/videos-page/transcript-settings/Cielo24Form.jsx", - "line": 41, + "filePath": "src/generic/configure-modal/AdvancedTab.jsx", + "line": 206, "column": 10, - "index": 1615 + "index": 6540 }, { - "filePath": "src/files-and-videos/videos-page/transcript-settings/Cielo24Form.jsx", - "line": 54, + "filePath": "src/generic/configure-modal/PrereqSettings.jsx", + "line": 35, + "column": 8, + "index": 823 + }, + { + "filePath": "src/generic/configure-modal/VisibilityTab.jsx", + "line": 73, "column": 14, - "index": 2192 + "index": 1934 }, { - "filePath": "src/files-and-videos/videos-page/transcript-settings/Cielo24Form.jsx", - "line": 69, + "filePath": "src/generic/configure-modal/VisibilityTab.jsx", + "line": 77, "column": 14, - "index": 2876 + "index": 2180 }, { - "filePath": "src/files-and-videos/videos-page/transcript-settings/Cielo24Form.jsx", - "line": 91, - "column": 8, - "index": 3633 + "filePath": "src/generic/configure-modal/VisibilityTab.jsx", + "line": 81, + "column": 14, + "index": 2423 }, { - "filePath": "src/files-and-videos/videos-page/transcript-settings/Cielo24Form.jsx", + "filePath": "src/generic/configure-modal/VisibilityTab.jsx", "line": 97, - "column": 8, - "index": 3888 + "column": 14, + "index": 3196 }, { - "filePath": "src/files-and-videos/videos-page/transcript-settings/ThreePlayMediaForm.jsx", - "line": 39, - "column": 10, - "index": 1177 + "filePath": "src/generic/configure-modal/VisibilityTab.jsx", + "line": 101, + "column": 14, + "index": 3454 }, { - "filePath": "src/files-and-videos/videos-page/transcript-settings/ThreePlayMediaForm.jsx", - "line": 50, - "column": 10, - "index": 1673 + "filePath": "src/generic/configure-modal/VisibilityTab.jsx", + "line": 105, + "column": 14, + "index": 3716 }, { - "filePath": "src/files-and-videos/videos-page/transcript-settings/ThreePlayMediaForm.jsx", - "line": 63, - "column": 14, - "index": 2291 + "filePath": "src/generic/create-or-rerun-course/CreateOrRerunCourseForm.jsx", + "line": 244, + "column": 12, + "index": 7814 }, { - "filePath": "src/files-and-videos/videos-page/transcript-settings/ThreePlayMediaForm.jsx", - "line": 106, + "filePath": "src/generic/FormSwitchGroup.jsx", + "line": 43, "column": 8, - "index": 4098 + "index": 1133 }, { - "filePath": "src/files-and-videos/videos-page/transcript-settings/ThreePlayMediaForm.jsx", - "line": 112, - "column": 8, - "index": 4362 + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/lti/LtiConfigForm.jsx", + "line": 151, + "column": 12, + "index": 5934 }, { - "filePath": "src/generic/course-upload-image/index.jsx", - "line": 109, - "column": 6, - "index": 2857 + "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", + "line": 30, + "column": 14, + "index": 1000 }, { - "filePath": "src/generic/create-or-rerun-course/CreateOrRerunCourseForm.jsx", - "line": 229, - "column": 12, - "index": 7187 + "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", + "line": 44, + "column": 14, + "index": 1588 }, { - "filePath": "src/generic/datepicker-control/DatepickerControl.jsx", - "line": 38, - "column": 6, - "index": 969 + "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", + "line": 58, + "column": 14, + "index": 2205 }, { - "filePath": "src/generic/FormSwitchGroup.jsx", - "line": 30, - "column": 10, - "index": 767 + "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", + "line": 74, + "column": 14, + "index": 2873 + } + ], + "Form.RadioSet": [ + { + "filePath": "plugins/course-apps/proctoring/Settings.jsx", + "line": 373, + "column": 14, + "index": 14602 }, { - "filePath": "src/grading-settings/assignment-section/assignments/AssignmentItem.jsx", - "line": 29, - "column": 6, - "index": 561 + "filePath": "plugins/course-apps/proctoring/Settings.jsx", + "line": 397, + "column": 14, + "index": 15728 }, { - "filePath": "src/grading-settings/assignment-section/assignments/AssignmentTypeName.jsx", - "line": 21, - "column": 8, - "index": 666 + "filePath": "plugins/course-apps/teams/GroupEditor.jsx", + "line": 107, + "column": 14, + "index": 4582 }, { - "filePath": "src/grading-settings/credit-section/index.jsx", - "line": 39, - "column": 6, - "index": 986 + "filePath": "plugins/course-apps/xpert_unit_summary/settings-modal/SettingsModal.jsx", + "line": 362, + "column": 16, + "index": 11108 }, { - "filePath": "src/grading-settings/deadline-section/index.jsx", - "line": 47, - "column": 6, - "index": 1434 + "filePath": "src/course-unit/add-component/add-component-modals/ComponentModalView.jsx", + "line": 52, + "column": 10, + "index": 1603 }, { - "filePath": "src/pages-and-resources/live/BBBSettings.jsx", - "line": 55, - "column": 8, - "index": 1814 + "filePath": "src/generic/configure-modal/AdvancedTab.jsx", + "line": 132, + "column": 6, + "index": 3949 }, { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 310, - "column": 14, - "index": 11604 + "filePath": "src/generic/configure-modal/VisibilityTab.jsx", + "line": 65, + "column": 12, + "index": 1623 }, { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 336, + "filePath": "src/generic/configure-modal/VisibilityTab.jsx", + "line": 89, "column": 12, - "index": 12735 + "index": 2873 }, { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 367, - "column": 14, - "index": 14198 + "filePath": "src/schedule-and-details/pacing-section/index.jsx", + "line": 27, + "column": 8, + "index": 840 }, { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 391, - "column": 14, - "index": 15322 + "filePath": "src/taxonomy/export-modal/index.jsx", + "line": 49, + "column": 12, + "index": 1434 + } + ], + "Form.Radio": [ + { + "filePath": "plugins/course-apps/proctoring/Settings.jsx", + "line": 379, + "column": 16, + "index": 14838 }, { - "filePath": "src/pages-and-resources/teams/GroupEditor.jsx", - "line": 99, - "column": 14, - "index": 4224 + "filePath": "plugins/course-apps/proctoring/Settings.jsx", + "line": 382, + "column": 16, + "index": 15019 }, { - "filePath": "src/pages-and-resources/teams/GroupEditor.jsx", - "line": 128, - "column": 21, - "index": 5539 + "filePath": "plugins/course-apps/proctoring/Settings.jsx", + "line": 402, + "column": 16, + "index": 15926 }, { - "filePath": "src/schedule-and-details/details-section/index.jsx", - "line": 25, - "column": 8, - "index": 862 + "filePath": "plugins/course-apps/proctoring/Settings.jsx", + "line": 405, + "column": 16, + "index": 16113 }, { - "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", - "line": 22, - "column": 14, - "index": 626 + "filePath": "plugins/course-apps/teams/GroupEditor.jsx", + "line": 114, + "column": 18, + "index": 4882 }, { - "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", - "line": 36, - "column": 14, - "index": 1210 + "filePath": "plugins/course-apps/xpert_unit_summary/settings-modal/SettingsModal.jsx", + "line": 368, + "column": 18, + "index": 11349 }, { - "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", - "line": 50, - "column": 14, - "index": 1799 + "filePath": "plugins/course-apps/xpert_unit_summary/settings-modal/SettingsModal.jsx", + "line": 381, + "column": 18, + "index": 11874 }, { - "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", - "line": 65, - "column": 14, - "index": 2465 + "filePath": "src/course-unit/add-component/add-component-modals/ComponentModalView.jsx", + "line": 62, + "column": 18, + "index": 2122 }, { - "filePath": "src/schedule-and-details/introducing-section/extended-course-details/index.jsx", - "line": 56, - "column": 10, - "index": 1776 + "filePath": "src/generic/configure-modal/AdvancedTab.jsx", + "line": 138, + "column": 8, + "index": 4094 }, { - "filePath": "src/schedule-and-details/introducing-section/index.jsx", - "line": 92, - "column": 10, - "index": 2616 + "filePath": "src/generic/configure-modal/AdvancedTab.jsx", + "line": 141, + "column": 8, + "index": 4200 }, { - "filePath": "src/schedule-and-details/introducing-section/index.jsx", - "line": 113, + "filePath": "src/generic/configure-modal/AdvancedTab.jsx", + "line": 150, "column": 12, - "index": 3358 + "index": 4495 }, { - "filePath": "src/schedule-and-details/introducing-section/index.jsx", - "line": 122, + "filePath": "src/generic/configure-modal/AdvancedTab.jsx", + "line": 158, "column": 14, - "index": 3784 + "index": 4828 }, { - "filePath": "src/schedule-and-details/introducing-section/introduction-video/index.jsx", - "line": 15, - "column": 6, - "index": 440 + "filePath": "src/generic/configure-modal/AdvancedTab.jsx", + "line": 166, + "column": 14, + "index": 5158 }, { - "filePath": "src/schedule-and-details/learning-outcomes-section/index.jsx", - "line": 35, - "column": 6, - "index": 1028 + "filePath": "src/generic/configure-modal/VisibilityTab.jsx", + "line": 70, + "column": 14, + "index": 1794 }, { - "filePath": "src/schedule-and-details/pacing-section/index.jsx", - "line": 23, - "column": 10, - "index": 697 + "filePath": "src/generic/configure-modal/VisibilityTab.jsx", + "line": 74, + "column": 14, + "index": 2038 }, { - "filePath": "src/schedule-and-details/requirements-section/entrance-exam/index.jsx", - "line": 28, - "column": 6, - "index": 824 + "filePath": "src/generic/configure-modal/VisibilityTab.jsx", + "line": 78, + "column": 14, + "index": 2283 }, { - "filePath": "src/schedule-and-details/requirements-section/grade-requirements/index.jsx", - "line": 19, - "column": 4, - "index": 469 + "filePath": "src/generic/configure-modal/VisibilityTab.jsx", + "line": 94, + "column": 14, + "index": 3047 }, { - "filePath": "src/schedule-and-details/requirements-section/index.jsx", - "line": 34, - "column": 6, - "index": 1051 + "filePath": "src/generic/configure-modal/VisibilityTab.jsx", + "line": 98, + "column": 14, + "index": 3307 }, { - "filePath": "src/schedule-and-details/requirements-section/index.jsx", - "line": 70, - "column": 10, - "index": 2393 + "filePath": "src/generic/configure-modal/VisibilityTab.jsx", + "line": 102, + "column": 14, + "index": 3564 }, { - "filePath": "src/schedule-and-details/schedule-section/certificate-display-row/CertificateDisplayRow.jsx", - "line": 125, + "filePath": "src/schedule-and-details/pacing-section/index.jsx", + "line": 32, "column": 10, - "index": 3866 + "index": 1009 }, { - "filePath": "src/taxonomy/delete-dialog/index.jsx", - "line": 62, + "filePath": "src/schedule-and-details/pacing-section/index.jsx", + "line": 39, "column": 10, - "index": 1756 + "index": 1287 }, { "filePath": "src/taxonomy/export-modal/index.jsx", - "line": 43, - "column": 10, - "index": 1105 + "line": 54, + "column": 14, + "index": 1611 + }, + { + "filePath": "src/taxonomy/export-modal/index.jsx", + "line": 60, + "column": 14, + "index": 1830 } ], - "MailtoLink": [ + "TransitionReplace": [ { - "filePath": "src/course-team/course-team-member/CourseTeamMember.jsx", - "line": 42, - "column": 8, - "index": 1271 + "filePath": "plugins/course-apps/teams/GroupEditor.jsx", + "line": 45, + "column": 4, + "index": 1630 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/lti/LtiConfigForm.jsx", - "line": 76, - "column": 16, - "index": 3127 + "filePath": "plugins/course-apps/xpert_unit_summary/settings-modal/SettingsModal.jsx", + "line": 49, + "column": 2, + "index": 1816 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/lti/LtiConfigForm.jsx", - "line": 89, - "column": 16, - "index": 3532 + "filePath": "src/advanced-settings/AdvancedSettings.jsx", + "line": 144, + "column": 10, + "index": 5477 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/AppExternalLinks.jsx", - "line": 50, - "column": 16, - "index": 1464 + "filePath": "src/course-outline/CourseOutline.jsx", + "line": 257, + "column": 10, + "index": 8240 }, { - "filePath": "src/schedule-and-details/basic-section/index.jsx", - "line": 113, + "filePath": "src/files-and-videos/videos-page/transcript-settings/Cielo24Form.jsx", + "line": 51, "column": 8, - "index": 3157 + "index": 2075 }, { - "filePath": "src/studio-home/home-sidebar/index.jsx", - "line": 53, - "column": 16, - "index": 1967 + "filePath": "src/files-and-videos/videos-page/transcript-settings/Cielo24Form.jsx", + "line": 66, + "column": 8, + "index": 2755 }, { - "filePath": "src/studio-home/home-sidebar/index.jsx", - "line": 83, - "column": 16, - "index": 2991 + "filePath": "src/files-and-videos/videos-page/transcript-settings/ThreePlayMediaForm.jsx", + "line": 60, + "column": 8, + "index": 2180 }, { - "filePath": "src/studio-home/StudioHome.jsx", - "line": 61, - "column": 8, - "index": 1687 - } - ], - "IconButtonWithTooltip": [ + "filePath": "src/files-and-videos/videos-page/transcript-settings/TranscriptSettings.jsx", + "line": 64, + "column": 14, + "index": 2086 + }, { - "filePath": "src/course-team/course-team-member/CourseTeamMember.jsx", - "line": 55, + "filePath": "src/files-and-videos/videos-page/transcript-settings/TranscriptSettings.jsx", + "line": 83, "column": 12, - "index": 1849 + "index": 2887 }, { - "filePath": "src/course-updates/course-handouts/CourseHandouts.jsx", - "line": 16, + "filePath": "src/files-and-videos/videos-page/transcript-settings/TranscriptSettings.jsx", + "line": 117, "column": 8, - "index": 615 + "index": 4190 }, { - "filePath": "src/course-updates/course-update/CourseUpdate.jsx", - "line": 30, - "column": 10, - "index": 1090 + "filePath": "src/generic/create-or-rerun-course/CreateOrRerunCourseForm.jsx", + "line": 206, + "column": 6, + "index": 6480 }, { - "filePath": "src/course-updates/course-update/CourseUpdate.jsx", - "line": 38, - "column": 10, - "index": 1383 + "filePath": "src/generic/FieldFeedback.jsx", + "line": 14, + "column": 4, + "index": 280 }, { - "filePath": "src/custom-pages/CustomPageCard.jsx", - "line": 73, - "column": 8, - "index": 1912 + "filePath": "src/generic/FieldFeedback.jsx", + "line": 24, + "column": 4, + "index": 711 }, { - "filePath": "src/custom-pages/CustomPageCard.jsx", - "line": 83, - "column": 8, - "index": 2317 + "filePath": "src/generic/FormikErrorFeedback.jsx", + "line": 12, + "column": 4, + "index": 381 }, { - "filePath": "src/custom-pages/CustomPageCard.jsx", - "line": 93, - "column": 8, - "index": 2787 + "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", + "line": 180, + "column": 18, + "index": 6617 }, { - "filePath": "src/files-and-videos/files-page/FileInfoModalSidebar.jsx", - "line": 93, - "column": 8, - "index": 2581 + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/DivisionByGroupFields.jsx", + "line": 90, + "column": 6, + "index": 2923 }, { - "filePath": "src/grading-settings/grading-scale/GradingScale.jsx", - "line": 191, - "column": 6, - "index": 6119 + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/DivisionByGroupFields.jsx", + "line": 103, + "column": 12, + "index": 3545 } ], - "DeleteOutline": [ + "Button": [ { - "filePath": "src/course-team/course-team-member/CourseTeamMember.jsx", - "line": 56, - "column": 19, - "index": 1891 + "filePath": "plugins/course-apps/teams/GroupEditor.jsx", + "line": 52, + "column": 14, + "index": 2042 }, { - "filePath": "src/course-updates/course-update/CourseUpdate.jsx", - "line": 40, - "column": 17, - "index": 1494 + "filePath": "plugins/course-apps/teams/GroupEditor.jsx", + "line": 55, + "column": 14, + "index": 2194 }, { - "filePath": "src/custom-pages/CustomPageCard.jsx", - "line": 97, - "column": 15, - "index": 3001 + "filePath": "plugins/course-apps/teams/Settings.jsx", + "line": 147, + "column": 20, + "index": 5448 }, { - "filePath": "src/files-and-videos/videos-page/info-sidebar/transcript-item/Transcript.jsx", - "line": 98, - "column": 19, - "index": 2944 - } - ], - "EditOutline": [ - { - "filePath": "src/course-updates/course-handouts/CourseHandouts.jsx", - "line": 18, - "column": 15, - "index": 720 + "filePath": "src/advanced-settings/AdvancedSettings.jsx", + "line": 185, + "column": 22, + "index": 7392 }, { - "filePath": "src/course-updates/course-update/CourseUpdate.jsx", - "line": 32, - "column": 17, - "index": 1199 + "filePath": "src/advanced-settings/AdvancedSettings.jsx", + "line": 252, + "column": 14, + "index": 10385 }, { - "filePath": "src/custom-pages/CustomPageCard.jsx", - "line": 77, - "column": 15, - "index": 2122 - } - ], - "ErrorIcon": [ - { - "filePath": "src/course-updates/course-update/CourseUpdate.jsx", - "line": 25, - "column": 23, - "index": 836 + "filePath": "src/advanced-settings/modal-error/ModalError.jsx", + "line": 18, + "column": 8, + "index": 572 }, { - "filePath": "src/course-updates/update-form/UpdateForm.jsx", - "line": 94, - "column": 31, - "index": 3183 - } - ], - "AddIcon": [ + "filePath": "src/advanced-settings/modal-error/ModalError.jsx", + "line": 24, + "column": 8, + "index": 768 + }, { - "filePath": "src/course-updates/CourseUpdates.jsx", - "line": 85, - "column": 36, - "index": 3177 + "filePath": "src/certificates/certificate-create-form/CertificateCreateForm.jsx", + "line": 49, + "column": 14, + "index": 1950 }, { - "filePath": "src/schedule-and-details/instructors-section/index.jsx", - "line": 72, - "column": 26, - "index": 2006 + "filePath": "src/certificates/certificate-create-form/CertificateCreateForm.jsx", + "line": 52, + "column": 14, + "index": 2069 }, { - "filePath": "src/schedule-and-details/learning-outcomes-section/index.jsx", + "filePath": "src/certificates/certificate-edit-form/CertificateEditForm.jsx", "line": 61, - "column": 26, - "index": 1907 + "column": 20, + "index": 2425 }, { - "filePath": "src/studio-home/StudioHome.jsx", - "line": 69, - "column": 22, - "index": 1941 + "filePath": "src/certificates/certificate-edit-form/CertificateEditForm.jsx", + "line": 64, + "column": 20, + "index": 2569 }, { - "filePath": "src/studio-home/StudioHome.jsx", - "line": 87, + "filePath": "src/certificates/certificate-edit-form/CertificateEditForm.jsx", + "line": 70, "column": 20, - "index": 2443 - } - ], - "CalendarIcon": [ - { - "filePath": "src/course-updates/update-form/UpdateForm.jsx", - "line": 69, - "column": 25, - "index": 2040 - } - ], - "SpinnerSimple": [ - { - "filePath": "src/custom-pages/CustomPageCard.jsx", - "line": 61, - "column": 26, - "index": 1615 + "index": 2846 }, { - "filePath": "src/custom-pages/CustomPages.jsx", - "line": 97, - "column": 26, - "index": 3170 + "filePath": "src/certificates/certificate-signatories/CertificateSignatories.jsx", + "line": 81, + "column": 12, + "index": 2580 }, { - "filePath": "src/pages-and-resources/xpert-unit-summary/settings-modal/SettingsModal.jsx", - "line": 171, - "column": 30, - "index": 4804 - } - ], - "Add": [ + "filePath": "src/certificates/certificate-signatories/signatory/SignatoryForm.jsx", + "line": 132, + "column": 12, + "index": 4673 + }, { - "filePath": "src/custom-pages/CustomPages.jsx", - "line": 96, - "column": 26, - "index": 3135 + "filePath": "src/certificates/certificate-signatories/signatory/SignatoryForm.jsx", + "line": 138, + "column": 10, + "index": 4874 }, { - "filePath": "src/custom-pages/CustomPages.jsx", - "line": 131, - "column": 24, - "index": 4348 + "filePath": "src/certificates/certificate-signatories/signatory/SignatoryForm.jsx", + "line": 141, + "column": 10, + "index": 4988 }, { - "filePath": "src/files-and-videos/generic/table-components/TableActions.jsx", - "line": 74, - "column": 26, - "index": 2392 + "filePath": "src/certificates/empty-certificates-with-modes/EmptyCertificatesWithModes.jsx", + "line": 24, + "column": 10, + "index": 726 }, { - "filePath": "src/files-and-videos/videos-page/info-sidebar/TranscriptTab.jsx", - "line": 129, - "column": 22, - "index": 3944 + "filePath": "src/certificates/layout/certificates-sidebar/CertificatesSidebar.jsx", + "line": 27, + "column": 6, + "index": 917 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-restrictions/RestrictionSchedules.jsx", - "line": 70, - "column": 28, - "index": 2300 + "filePath": "src/certificates/layout/header-buttons/HeaderButtons.jsx", + "line": 25, + "column": 6, + "index": 718 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-topics/DiscussionTopics.jsx", - "line": 81, - "column": 30, - "index": 3061 + "filePath": "src/certificates/layout/header-buttons/HeaderButtons.jsx", + "line": 34, + "column": 6, + "index": 962 }, { - "filePath": "src/pages-and-resources/teams/Settings.jsx", - "line": 150, - "column": 34, - "index": 5517 + "filePath": "src/content-tags-drawer/ContentTagsCollapsible.jsx", + "line": 77, + "column": 12, + "index": 2584 }, { - "filePath": "src/taxonomy/TaxonomyListPage.jsx", - "line": 60, - "column": 26, - "index": 1893 - } - ], - "Breadcrumb": [ + "filePath": "src/content-tags-drawer/ContentTagsCollapsible.jsx", + "line": 86, + "column": 12, + "index": 2920 + }, { - "filePath": "src/custom-pages/CustomPages.jsx", - "line": 117, + "filePath": "src/content-tags-drawer/ContentTagsCollapsible.jsx", + "line": 136, "column": 10, - "index": 3841 + "index": 4225 }, { - "filePath": "src/taxonomy/taxonomy-detail/TaxonomyDetailPage.jsx", - "line": 122, - "column": 10, - "index": 3763 - } - ], - "Image": [ + "filePath": "src/content-tags-drawer/ContentTagsCollapsible.jsx", + "line": 397, + "column": 20, + "index": 13841 + }, { - "filePath": "src/custom-pages/CustomPages.jsx", - "line": 246, + "filePath": "src/content-tags-drawer/ContentTagsDropDownSelector.jsx", + "line": 311, "column": 12, - "index": 8751 + "index": 11771 }, { - "filePath": "src/files-and-videos/files-page/FileThumbnail.jsx", - "line": 30, - "column": 8, - "index": 608 + "filePath": "src/content-tags-drawer/tags-sidebar-controls/TagsSidebarBody.jsx", + "line": 91, + "column": 10, + "index": 2801 }, { - "filePath": "src/files-and-videos/videos-page/VideoThumbnail.jsx", - "line": 50, + "filePath": "src/course-checklist/ChecklistSection/ChecklistItemBody.jsx", + "line": 75, "column": 10, - "index": 1515 + "index": 2812 }, { - "filePath": "src/generic/course-upload-image/index.jsx", - "line": 61, + "filePath": "src/course-outline/card-header/TitleButton.jsx", + "line": 35, "column": 6, - "index": 1678 - } - ], - "ArrowCircleDownIcon": [ + "index": 728 + }, { - "filePath": "src/export-page/CourseExportPage.jsx", - "line": 91, - "column": 36, - "index": 4099 - } - ], - "ContentCopy": [ + "filePath": "src/course-outline/card-header/TitleLink.jsx", + "line": 10, + "column": 2, + "index": 198 + }, { - "filePath": "src/files-and-videos/files-page/FileInfoModalSidebar.jsx", - "line": 66, - "column": 15, - "index": 1656 + "filePath": "src/course-outline/CourseOutline.jsx", + "line": 413, + "column": 30, + "index": 17598 }, { - "filePath": "src/files-and-videos/files-page/FileInfoModalSidebar.jsx", - "line": 83, - "column": 15, - "index": 2205 - } - ], - "CheckboxControl": [ + "filePath": "src/course-outline/empty-placeholder/EmptyPlaceholder.jsx", + "line": 27, + "column": 10, + "index": 841 + }, { - "filePath": "src/files-and-videos/files-page/FileInfoModalSidebar.jsx", - "line": 103, - "column": 8, - "index": 2892 + "filePath": "src/course-outline/enable-highlights-modal/EnableHighlightsModal.jsx", + "line": 31, + "column": 10, + "index": 711 }, { - "filePath": "src/pages-and-resources/discussions/app-list/AppCard.jsx", + "filePath": "src/course-outline/enable-highlights-modal/EnableHighlightsModal.jsx", + "line": 34, + "column": 10, + "index": 841 + }, + { + "filePath": "src/course-outline/header-navigations/HeaderNavigations.jsx", "line": 38, - "column": 12, - "index": 1339 + "column": 10, + "index": 1030 }, { - "filePath": "src/schedule-and-details/license-section/license-commons-options/index.jsx", - "line": 68, - "column": 14, - "index": 2151 - } - ], - "Toast": [ + "filePath": "src/course-outline/header-navigations/HeaderNavigations.jsx", + "line": 56, + "column": 10, + "index": 1651 + }, { - "filePath": "src/files-and-videos/generic/ApiStatusToast.jsx", - "line": 23, - "column": 4, - "index": 441 + "filePath": "src/course-outline/header-navigations/HeaderNavigations.jsx", + "line": 67, + "column": 8, + "index": 1977 }, { - "filePath": "src/taxonomy/TaxonomyLayout.jsx", - "line": 23, + "filePath": "src/course-outline/header-navigations/HeaderNavigations.jsx", + "line": 85, "column": 8, - "index": 700 - } - ], - "MoreHoriz": [ + "index": 2574 + }, { - "filePath": "src/files-and-videos/generic/FileMenu.jsx", - "line": 29, - "column": 11, - "index": 610 + "filePath": "src/course-outline/highlights-modal/HighlightsModal.jsx", + "line": 78, + "column": 16, + "index": 2652 }, { - "filePath": "src/files-and-videos/generic/table-components/table-custom-columns/MoreInfoColumn.jsx", - "line": 41, - "column": 13, - "index": 784 + "filePath": "src/course-outline/page-alerts/PageAlerts.jsx", + "line": 101, + "column": 10, + "index": 3120 }, { - "filePath": "src/files-and-videos/videos-page/info-sidebar/transcript-item/TranscriptMenu.jsx", - "line": 19, - "column": 11, - "index": 533 - } - ], - "Dropdown.Divider": [ + "filePath": "src/course-outline/page-alerts/PageAlerts.jsx", + "line": 271, + "column": 12, + "index": 8511 + }, { - "filePath": "src/files-and-videos/generic/FileMenu.jsx", - "line": 64, - "column": 6, - "index": 1797 + "filePath": "src/course-outline/page-alerts/PageAlerts.jsx", + "line": 330, + "column": 12, + "index": 10114 }, { - "filePath": "src/files-and-videos/generic/table-components/TableActions.jsx", - "line": 64, + "filePath": "src/course-outline/publish-modal/PublishModal.jsx", + "line": 75, "column": 10, - "index": 1995 - } - ], - "DataTable": [ - { - "filePath": "src/files-and-videos/generic/FileTable.jsx", - "line": 192, - "column": 6, - "index": 4883 + "index": 2464 }, { - "filePath": "src/pages-and-resources/discussions/app-list/FeaturesTable.jsx", - "line": 60, - "column": 4, - "index": 2244 + "filePath": "src/course-outline/section-card/SectionCard.jsx", + "line": 225, + "column": 14, + "index": 6818 }, { - "filePath": "src/taxonomy/tag-list/TagListTable.jsx", - "line": 43, - "column": 31, - "index": 1465 + "filePath": "src/course-outline/section-card/SectionCard.jsx", + "line": 250, + "column": 16, + "index": 7783 }, { - "filePath": "src/taxonomy/tag-list/TagListTable.jsx", - "line": 54, - "column": 21, - "index": 1752 + "filePath": "src/course-outline/status-bar/StatusBar.jsx", + "line": 126, + "column": 14, + "index": 4392 }, { - "filePath": "src/taxonomy/tag-list/TagListTable.jsx", - "line": 71, - "column": 4, - "index": 2178 + "filePath": "src/course-outline/subsection-card/SubsectionCard.jsx", + "line": 226, + "column": 16, + "index": 7346 }, { - "filePath": "src/taxonomy/tag-list/TagListTable.jsx", - "line": 93, + "filePath": "src/course-rerun/index.jsx", + "line": 58, "column": 18, - "index": 2961 + "index": 1740 }, { - "filePath": "src/taxonomy/TaxonomyListPage.jsx", - "line": 114, + "filePath": "src/course-team/add-team-member/AddTeamMember.jsx", + "line": 18, + "column": 6, + "index": 699 + }, + { + "filePath": "src/course-team/add-user-form/AddUserForm.jsx", + "line": 42, + "column": 14, + "index": 1437 + }, + { + "filePath": "src/course-team/add-user-form/AddUserForm.jsx", + "line": 45, + "column": 14, + "index": 1592 + }, + { + "filePath": "src/course-team/course-team-member/CourseTeamMember.jsx", + "line": 48, "column": 12, - "index": 3509 - } - ], - "Dropzone": [ + "index": 1502 + }, { - "filePath": "src/files-and-videos/generic/FileTable.jsx", - "line": 216, - "column": 10, - "index": 5716 + "filePath": "src/course-team/CourseTeam.jsx", + "line": 81, + "column": 22, + "index": 2569 }, { - "filePath": "src/generic/course-upload-image/index.jsx", - "line": 112, + "filePath": "src/course-team/info-modal/InfoModal.jsx", + "line": 43, "column": 10, - "index": 2956 + "index": 908 }, { - "filePath": "src/import-page/file-section/FileSection.jsx", - "line": 36, + "filePath": "src/course-team/info-modal/InfoModal.jsx", + "line": 47, "column": 12, - "index": 1245 - } - ], - "DataTable.TableControlBar": [ + "index": 1073 + }, { - "filePath": "src/files-and-videos/generic/FileTable.jsx", - "line": 228, - "column": 12, - "index": 6193 + "filePath": "src/course-unit/add-component/add-component-btn/index.jsx", + "line": 12, + "column": 4, + "index": 330 }, { - "filePath": "src/taxonomy/tag-list/TagListTable.jsx", - "line": 98, - "column": 6, - "index": 3050 - } - ], - "CardView": [ + "filePath": "src/course-unit/add-component/add-component-modals/ModalContainer.jsx", + "line": 31, + "column": 10, + "index": 678 + }, { - "filePath": "src/files-and-videos/generic/FileTable.jsx", - "line": 230, - "column": 40, - "index": 6316 + "filePath": "src/course-unit/add-component/add-component-modals/ModalContainer.jsx", + "line": 34, + "column": 10, + "index": 829 }, { - "filePath": "src/taxonomy/TaxonomyListPage.jsx", - "line": 140, - "column": 14, - "index": 4259 - } - ], - "DataTable.Table": [ + "filePath": "src/course-unit/clipboard/paste-notification/components/ActionButton.jsx", + "line": 7, + "column": 2, + "index": 223 + }, { - "filePath": "src/files-and-videos/generic/FileTable.jsx", - "line": 231, - "column": 40, - "index": 6470 + "filePath": "src/course-unit/course-sequence/sequence-navigation/SequenceNavigation.jsx", + "line": 60, + "column": 8, + "index": 1938 }, { - "filePath": "src/pages-and-resources/discussions/app-list/FeaturesTable.jsx", - "line": 87, - "column": 6, - "index": 3102 + "filePath": "src/course-unit/course-sequence/sequence-navigation/SequenceNavigation.jsx", + "line": 81, + "column": 8, + "index": 2482 }, { - "filePath": "src/taxonomy/tag-list/TagListTable.jsx", - "line": 99, - "column": 6, - "index": 3086 - } - ], - "DataTable.EmptyTable": [ + "filePath": "src/course-unit/course-sequence/sequence-navigation/SequenceNavigationDropdown.jsx", + "line": 37, + "column": 8, + "index": 1166 + }, { - "filePath": "src/files-and-videos/generic/FileTable.jsx", - "line": 232, - "column": 12, - "index": 6504 + "filePath": "src/course-unit/course-sequence/sequence-navigation/SequenceNavigationDropdown.jsx", + "line": 46, + "column": 10, + "index": 1438 }, { - "filePath": "src/taxonomy/tag-list/TagListTable.jsx", - "line": 100, - "column": 6, - "index": 3112 - } - ], - "Row": [ + "filePath": "src/course-unit/course-sequence/sequence-navigation/SequenceNavigationTabs.jsx", + "line": 61, + "column": 10, + "index": 2428 + }, { - "filePath": "src/files-and-videos/generic/table-components/FilterStatus.jsx", - "line": 26, - "column": 6, - "index": 690 + "filePath": "src/course-unit/course-sequence/sequence-navigation/SequenceNavigationTabs.jsx", + "line": 70, + "column": 12, + "index": 2747 }, { - "filePath": "src/files-and-videos/generic/UsageMetricsMessage.jsx", - "line": 39, - "column": 6, - "index": 1189 + "filePath": "src/course-unit/course-sequence/sequence-navigation/UnitButton.jsx", + "line": 16, + "column": 4, + "index": 478 }, { - "filePath": "src/studio-home/StudioHome.jsx", - "line": 111, - "column": 12, - "index": 2984 + "filePath": "src/course-unit/header-navigations/HeaderNavigations.jsx", + "line": 13, + "column": 6, + "index": 410 }, { - "filePath": "src/studio-home/tabs-section/archived-tab/index.jsx", - "line": 22, + "filePath": "src/course-unit/header-navigations/HeaderNavigations.jsx", + "line": 19, "column": 6, - "index": 605 + "index": 569 }, { - "filePath": "src/studio-home/tabs-section/archived-tab/index.jsx", - "line": 32, - "column": 10, - "index": 812 + "filePath": "src/course-unit/sidebar/components/sidebar-footer/ActionButtons.jsx", + "line": 25, + "column": 8, + "index": 776 }, { - "filePath": "src/studio-home/tabs-section/courses-tab/index.jsx", - "line": 41, - "column": 6, - "index": 1374 + "filePath": "src/course-unit/sidebar/components/sidebar-footer/ActionButtons.jsx", + "line": 30, + "column": 8, + "index": 1006 }, { - "filePath": "src/studio-home/tabs-section/courses-tab/index.jsx", - "line": 52, + "filePath": "src/course-unit/sidebar/components/sidebar-footer/ActionButtons.jsx", + "line": 42, "column": 10, - "index": 1582 + "index": 1417 }, { - "filePath": "src/studio-home/tabs-section/libraries-tab/index.jsx", - "line": 22, - "column": 6, - "index": 596 + "filePath": "src/course-updates/CourseUpdates.jsx", + "line": 142, + "column": 22, + "index": 5306 }, { - "filePath": "src/studio-home/tabs-section/libraries-tab/index.jsx", - "line": 32, + "filePath": "src/course-updates/CourseUpdates.jsx", + "line": 195, + "column": 26, + "index": 7983 + }, + { + "filePath": "src/course-updates/delete-modal/DeleteModal.jsx", + "line": 22, "column": 10, - "index": 803 - } - ], - "Close": [ + "index": 497 + }, { - "filePath": "src/files-and-videos/generic/table-components/FilterStatus.jsx", - "line": 31, - "column": 23, - "index": 892 + "filePath": "src/course-updates/delete-modal/DeleteModal.jsx", + "line": 25, + "column": 10, + "index": 627 }, { - "filePath": "src/files-and-videos/videos-page/transcript-settings/TranscriptSettings.jsx", - "line": 81, - "column": 55, - "index": 2795 - } - ], - "TableFooter": [ + "filePath": "src/course-updates/update-form/UpdateForm.jsx", + "line": 112, + "column": 14, + "index": 3967 + }, { - "filePath": "src/files-and-videos/generic/table-components/Footer.jsx", - "line": 16, - "column": 4, - "index": 341 - } - ], - "Pagination": [ + "filePath": "src/course-updates/update-form/UpdateForm.jsx", + "line": 115, + "column": 14, + "index": 4123 + }, { - "filePath": "src/files-and-videos/generic/table-components/Footer.jsx", - "line": 17, - "column": 6, - "index": 361 - } - ], - "Card.Footer": [ + "filePath": "src/custom-pages/CustomPageCard.jsx", + "line": 110, + "column": 12, + "index": 3456 + }, { - "filePath": "src/files-and-videos/generic/table-components/GalleryCard.jsx", - "line": 74, - "column": 6, - "index": 2300 + "filePath": "src/custom-pages/CustomPages.jsx", + "line": 137, + "column": 10, + "index": 4696 }, { - "filePath": "src/files-and-videos/videos-page/info-sidebar/transcript-item/Transcript.jsx", - "line": 62, + "filePath": "src/custom-pages/CustomPages.jsx", + "line": 151, "column": 12, - "index": 1619 + "index": 5151 }, { - "filePath": "src/generic/ConfirmationPopup.jsx", - "line": 25, - "column": 6, - "index": 570 + "filePath": "src/custom-pages/CustomPages.jsx", + "line": 230, + "column": 12, + "index": 8386 }, { - "filePath": "src/generic/course-upload-image/index.jsx", - "line": 122, - "column": 8, - "index": 3259 + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/index.jsx", + "line": 74, + "column": 12, + "index": 2205 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-topics/TopicItem.jsx", - "line": 83, - "column": 8, - "index": 2236 + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/index.jsx", + "line": 77, + "column": 12, + "index": 2382 }, { - "filePath": "src/schedule-and-details/basic-section/index.jsx", - "line": 112, - "column": 6, - "index": 3097 + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/index.jsx", + "line": 106, + "column": 12, + "index": 3307 }, { - "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", - "line": 94, - "column": 6, - "index": 3649 + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/ResetCard.jsx", + "line": 42, + "column": 8, + "index": 1682 }, { - "filePath": "src/schedule-and-details/introducing-section/introduction-video/index.jsx", - "line": 32, + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/ResetCard.jsx", + "line": 45, "column": 8, - "index": 988 + "index": 1876 }, { - "filePath": "src/studio-home/processing-courses/course-item/index.jsx", - "line": 72, - "column": 10, - "index": 2239 - } - ], - "ClosedCaption": [ - { - "filePath": "src/files-and-videos/generic/table-components/GalleryCard.jsx", - "line": 78, - "column": 66, - "index": 2533 - } - ], - "Form.CheckboxSet": [ + "filePath": "src/editors/containers/VideoEditor/components/SelectVideoModal.jsx", + "line": 45, + "column": 21, + "index": 1378 + }, { - "filePath": "src/files-and-videos/generic/table-components/sort-and-filter-modal/SortAndFilterModal.jsx", - "line": 141, + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/HandoutWidget/index.jsx", + "line": 101, "column": 10, - "index": 4015 + "index": 3469 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/DivisionByGroupFields.jsx", - "line": 110, - "column": 24, - "index": 3857 - } - ], - "Locked": [ - { - "filePath": "src/files-and-videos/generic/table-components/table-custom-columns/AccessColumn.jsx", - "line": 24, - "column": 19, - "index": 644 - } - ], - "LockOpen": [ + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/index.jsx", + "line": 71, + "column": 12, + "index": 1979 + }, { - "filePath": "src/files-and-videos/generic/table-components/table-custom-columns/AccessColumn.jsx", - "line": 26, - "column": 19, - "index": 696 - } - ], - "Check": [ + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/ThumbnailWidget/index.jsx", + "line": 112, + "column": 10, + "index": 3418 + }, { - "filePath": "src/files-and-videos/generic/table-components/table-custom-columns/ActiveColumn.jsx", - "line": 9, - "column": 46, - "index": 328 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/ImportTranscriptCard.jsx", + "line": 34, + "column": 4, + "index": 859 }, { - "filePath": "src/files-and-videos/videos-page/info-sidebar/transcript-item/LanguageSelect.jsx", - "line": 33, - "column": 43, - "index": 1112 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/index.jsx", + "line": 172, + "column": 10, + "index": 5764 }, { - "filePath": "src/files-and-videos/videos-page/transcript-settings/FormDropdown.jsx", - "line": 46, - "column": 41, - "index": 1520 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/LanguageSelector.jsx", + "line": 93, + "column": 18, + "index": 2776 }, { - "filePath": "src/files-and-videos/videos-page/transcript-settings/ThreePlayMediaForm.jsx", - "line": 89, - "column": 33, - "index": 3600 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/Transcript.jsx", + "line": 65, + "column": 16, + "index": 2025 }, { - "filePath": "src/pages-and-resources/discussions/app-list/FeaturesTable.jsx", - "line": 36, - "column": 18, - "index": 1425 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/Transcript.jsx", + "line": 68, + "column": 16, + "index": 2214 }, { - "filePath": "src/pages-and-resources/discussions/app-list/SupportedFeature.jsx", - "line": 8, + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoSourceWidget/index.jsx", + "line": 151, "column": 6, - "index": 188 - } - ], - "Menu": [ - { - "filePath": "src/files-and-videos/generic/table-components/table-custom-columns/MoreInfoColumn.jsx", - "line": 54, - "column": 8, - "index": 1081 - } - ], - "MenuItem": [ + "index": 4999 + }, { - "filePath": "src/files-and-videos/generic/table-components/table-custom-columns/MoreInfoColumn.jsx", - "line": 58, - "column": 12, - "index": 1185 + "filePath": "src/editors/sharedComponents/Button/index.jsx", + "line": 12, + "column": 2, + "index": 327 }, { - "filePath": "src/files-and-videos/generic/table-components/table-custom-columns/MoreInfoColumn.jsx", - "line": 70, - "column": 14, - "index": 1523 + "filePath": "src/editors/sharedComponents/CodeEditor/index.jsx", + "line": 32, + "column": 8, + "index": 723 }, { - "filePath": "src/files-and-videos/generic/table-components/table-custom-columns/MoreInfoColumn.jsx", - "line": 80, + "filePath": "src/editors/sharedComponents/ErrorBoundary/ErrorPage.jsx", + "line": 44, "column": 14, - "index": 1859 + "index": 1452 }, { - "filePath": "src/files-and-videos/generic/table-components/table-custom-columns/MoreInfoColumn.jsx", - "line": 90, + "filePath": "src/editors/sharedComponents/ErrorBoundary/ErrorPage.jsx", + "line": 48, "column": 14, - "index": 2192 + "index": 1665 }, { - "filePath": "src/files-and-videos/generic/table-components/table-custom-columns/MoreInfoColumn.jsx", - "line": 99, - "column": 10, - "index": 2519 + "filePath": "src/editors/sharedComponents/ErrorBoundary/ErrorPage.jsx", + "line": 52, + "column": 12, + "index": 1893 }, { - "filePath": "src/files-and-videos/generic/table-components/table-custom-columns/MoreInfoColumn.jsx", - "line": 108, - "column": 10, - "index": 2812 + "filePath": "src/editors/sharedComponents/ImageUploadModal/ImageSettingsModal/index.jsx", + "line": 47, + "column": 8, + "index": 1499 }, { - "filePath": "src/files-and-videos/generic/table-components/table-custom-columns/MoreInfoColumn.jsx", - "line": 116, - "column": 10, - "index": 3069 - } - ], - "Tune": [ - { - "filePath": "src/files-and-videos/generic/table-components/TableActions.jsx", - "line": 38, - "column": 71, - "index": 1073 - } - ], - "ErrorOutline": [ - { - "filePath": "src/files-and-videos/generic/UsageMetricsMessage.jsx", - "line": 43, - "column": 15, - "index": 1308 - } - ], - "ExpandMore": [ - { - "filePath": "src/files-and-videos/videos-page/info-sidebar/transcript-item/LanguageSelect.jsx", - "line": 52, - "column": 21, - "index": 1857 + "filePath": "src/editors/sharedComponents/ImageUploadModal/ImageSettingsModal/index.jsx", + "line": 64, + "column": 6, + "index": 1957 }, { - "filePath": "src/generic/CollapsableEditor.jsx", - "line": 34, - "column": 43, - "index": 886 - } - ], - "Form": [ + "filePath": "src/editors/sharedComponents/SelectionModal/index.jsx", + "line": 64, + "column": 8, + "index": 1355 + }, { - "filePath": "src/files-and-videos/videos-page/transcript-settings/FormDropdown.jsx", - "line": 38, - "column": 33, - "index": 1149 + "filePath": "src/editors/sharedComponents/SelectionModal/index.jsx", + "line": 72, + "column": 8, + "index": 1592 }, { - "filePath": "src/generic/create-or-rerun-course/CreateOrRerunCourseForm.jsx", - "line": 221, - "column": 6, - "index": 6917 + "filePath": "src/editors/sharedComponents/SourceCodeModal/index.jsx", + "line": 32, + "column": 8, + "index": 678 }, { - "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", + "filePath": "src/editors/sharedComponents/TypeaheadDropdown/index.jsx", "line": 192, "column": 10, - "index": 5728 + "index": 4973 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/lti/LtiConfigForm.jsx", - "line": 68, - "column": 6, - "index": 2821 + "filePath": "src/export-page/CourseExportPage.jsx", + "line": 86, + "column": 22, + "index": 3877 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/openedx/OpenedXConfigForm.jsx", - "line": 123, - "column": 14, - "index": 5672 + "filePath": "src/export-page/export-stepper/ExportStepper.jsx", + "line": 93, + "column": 65, + "index": 2953 }, { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 586, - "column": 6, - "index": 22467 + "filePath": "src/files-and-videos/files-page/FileValidationModal.jsx", + "line": 53, + "column": 10, + "index": 1467 }, { - "filePath": "src/pages-and-resources/xpert-unit-summary/settings-modal/SettingsModal.jsx", - "line": 304, + "filePath": "src/files-and-videos/generic/DeleteConfirmationModal.jsx", + "line": 73, "column": 10, - "index": 8638 + "index": 2036 }, { - "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", - "line": 19, - "column": 8, - "index": 520 - } - ], - "Sheet": [ - { - "filePath": "src/files-and-videos/videos-page/transcript-settings/TranscriptSettings.jsx", - "line": 54, - "column": 4, - "index": 1872 - } - ], - "ChevronLeft": [ + "filePath": "src/files-and-videos/generic/DeleteConfirmationModal.jsx", + "line": 76, + "column": 10, + "index": 2189 + }, { - "filePath": "src/files-and-videos/videos-page/transcript-settings/TranscriptSettings.jsx", - "line": 70, - "column": 25, - "index": 2309 - } - ], - "Collapsible.Advanced": [ + "filePath": "src/files-and-videos/generic/table-components/FilterStatus.jsx", + "line": 43, + "column": 8, + "index": 1342 + }, { - "filePath": "src/files-and-videos/videos-page/transcript-settings/TranscriptSettings.jsx", - "line": 102, - "column": 18, - "index": 3628 + "filePath": "src/files-and-videos/generic/table-components/sort-and-filter-modal/SortAndFilterModal.jsx", + "line": 155, + "column": 8, + "index": 4665 }, { - "filePath": "src/generic/CollapsableEditor.jsx", - "line": 19, - "column": 2, - "index": 365 + "filePath": "src/files-and-videos/generic/table-components/sort-and-filter-modal/SortAndFilterModal.jsx", + "line": 165, + "column": 10, + "index": 5069 }, { - "filePath": "src/schedule-and-details/schedule-section/certificate-display-row/CertificateDisplayRow.jsx", - "line": 99, - "column": 6, - "index": 2851 + "filePath": "src/files-and-videos/generic/table-components/table-custom-columns/MoreInfoColumn.jsx", + "line": 59, + "column": 18, + "index": 1213 }, { - "filePath": "src/studio-home/collapsible-state-with-action/index.jsx", - "line": 98, - "column": 4, - "index": 3237 - } - ], - "Collapsible.Trigger": [ + "filePath": "src/files-and-videos/generic/table-components/table-custom-columns/MoreInfoColumn.jsx", + "line": 71, + "column": 20, + "index": 1553 + }, { - "filePath": "src/files-and-videos/videos-page/transcript-settings/TranscriptSettings.jsx", - "line": 105, + "filePath": "src/files-and-videos/generic/table-components/table-custom-columns/MoreInfoColumn.jsx", + "line": 81, "column": 20, - "index": 3752 + "index": 1889 }, { - "filePath": "src/generic/CollapsableEditor.jsx", - "line": 27, - "column": 4, - "index": 558 + "filePath": "src/files-and-videos/generic/table-components/table-custom-columns/MoreInfoColumn.jsx", + "line": 91, + "column": 20, + "index": 2222 }, { - "filePath": "src/schedule-and-details/schedule-section/certificate-display-row/CertificateDisplayRow.jsx", + "filePath": "src/files-and-videos/generic/table-components/table-custom-columns/MoreInfoColumn.jsx", "line": 100, - "column": 8, - "index": 2882 + "column": 16, + "index": 2545 }, { - "filePath": "src/studio-home/collapsible-state-with-action/index.jsx", - "line": 102, - "column": 6, - "index": 3440 - } - ], - "ChevronRight": [ - { - "filePath": "src/files-and-videos/videos-page/transcript-settings/TranscriptSettings.jsx", + "filePath": "src/files-and-videos/generic/table-components/table-custom-columns/MoreInfoColumn.jsx", "line": 109, - "column": 33, - "index": 3992 - } - ], - "VideoFile": [ - { - "filePath": "src/files-and-videos/videos-page/VideoThumbnail.jsx", - "line": 64, - "column": 23, - "index": 1977 - } - ], - "Alert.Heading": [ - { - "filePath": "src/generic/alert-message/index.jsx", - "line": 7, - "column": 4, - "index": 188 - }, - { - "filePath": "src/generic/AlertProctoringError.jsx", - "line": 10, - "column": 10, - "index": 338 + "column": 16, + "index": 2838 }, { - "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", - "line": 215, - "column": 18, - "index": 6596 + "filePath": "src/files-and-videos/generic/table-components/table-custom-columns/MoreInfoColumn.jsx", + "line": 117, + "column": 16, + "index": 3095 }, { - "filePath": "src/pages-and-resources/xpert-unit-summary/settings-modal/SettingsModal.jsx", - "line": 328, - "column": 18, - "index": 9551 - } - ], - "Collapsible.Visible": [ - { - "filePath": "src/generic/CollapsableEditor.jsx", - "line": 32, + "filePath": "src/files-and-videos/generic/table-components/TableActions.jsx", + "line": 38, "column": 6, - "index": 767 + "index": 1016 }, { - "filePath": "src/generic/CollapsableEditor.jsx", - "line": 37, + "filePath": "src/files-and-videos/generic/table-components/TableActions.jsx", + "line": 74, "column": 6, - "index": 980 + "index": 2380 }, { - "filePath": "src/pages-and-resources/discussions/app-list/FeaturesList.jsx", - "line": 14, + "filePath": "src/files-and-videos/videos-page/info-sidebar/transcript-item/LanguageSelect.jsx", + "line": 30, "column": 8, - "index": 400 + "index": 631 }, { - "filePath": "src/pages-and-resources/discussions/app-list/FeaturesList.jsx", - "line": 17, - "column": 8, - "index": 549 + "filePath": "src/files-and-videos/videos-page/info-sidebar/transcript-item/LanguageSelect.jsx", + "line": 59, + "column": 24, + "index": 1507 }, { - "filePath": "src/studio-home/collapsible-state-with-action/index.jsx", - "line": 104, - "column": 8, - "index": 3605 + "filePath": "src/files-and-videos/videos-page/info-sidebar/transcript-item/LanguageSelect.jsx", + "line": 72, + "column": 24, + "index": 1962 }, { - "filePath": "src/studio-home/collapsible-state-with-action/index.jsx", - "line": 113, - "column": 8, - "index": 3866 - } - ], - "Delete": [ + "filePath": "src/files-and-videos/videos-page/info-sidebar/transcript-item/LanguageSelect.jsx", + "line": 89, + "column": 22, + "index": 2498 + }, { - "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/files-and-videos/videos-page/info-sidebar/transcript-item/Transcript.jsx", + "line": 64, + "column": 14, + "index": 1684 }, { - "filePath": "src/schedule-and-details/schedule-section/certificate-display-row/CertificateDisplayRow.jsx", - "line": 104, - "column": 8, - "index": 3142 + "filePath": "src/files-and-videos/videos-page/info-sidebar/transcript-item/Transcript.jsx", + "line": 67, + "column": 14, + "index": 1882 }, { - "filePath": "src/studio-home/collapsible-state-with-action/index.jsx", - "line": 124, - "column": 6, - "index": 4155 - } - ], - "Alert.Link": [ - { - "filePath": "src/generic/ConnectionErrorAlert.jsx", - "line": 15, - "column": 10, - "index": 681 + "filePath": "src/files-and-videos/videos-page/info-sidebar/transcript-item/TranscriptMenu.jsx", + "line": 46, + "column": 16, + "index": 1051 }, { - "filePath": "src/generic/SaveFormConnectionErrorAlert.jsx", - "line": 15, - "column": 10, - "index": 693 + "filePath": "src/files-and-videos/videos-page/info-sidebar/transcript-item/TranscriptMenu.jsx", + "line": 54, + "column": 16, + "index": 1318 }, { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 171, + "filePath": "src/files-and-videos/videos-page/info-sidebar/transcript-item/TranscriptMenu.jsx", + "line": 63, "column": 16, - "index": 7110 + "index": 1658 }, { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 186, - "column": 35, - "index": 7667 + "filePath": "src/files-and-videos/videos-page/info-sidebar/TranscriptTab.jsx", + "line": 128, + "column": 8, + "index": 3982 }, { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 449, - "column": 14, - "index": 17027 + "filePath": "src/files-and-videos/videos-page/transcript-settings/OrderTranscriptForm.jsx", + "line": 146, + "column": 8, + "index": 4657 }, { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 478, - "column": 14, - "index": 17921 - } - ], - "FileUploadIcon": [ + "filePath": "src/files-and-videos/videos-page/transcript-settings/OrderTranscriptForm.jsx", + "line": 149, + "column": 8, + "index": 4804 + }, { - "filePath": "src/generic/course-upload-image/index.jsx", - "line": 71, - "column": 13, - "index": 1887 - } - ], - "Card.Divider": [ + "filePath": "src/files-and-videos/videos-page/upload-modal/UploadModal.jsx", + "line": 75, + "column": 10, + "index": 2370 + }, { - "filePath": "src/generic/course-upload-image/index.jsx", - "line": 121, - "column": 8, - "index": 3234 + "filePath": "src/files-and-videos/videos-page/VideosPage.jsx", + "line": 260, + "column": 12, + "index": 7613 }, { - "filePath": "src/schedule-and-details/basic-section/index.jsx", - "line": 111, - "column": 6, - "index": 3074 + "filePath": "src/files-and-videos/videos-page/VideoThumbnail.jsx", + "line": 68, + "column": 12, + "index": 2295 }, { - "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", - "line": 93, - "column": 6, - "index": 3626 + "filePath": "src/generic/clipboard/paste-component/components/PasteButton.jsx", + "line": 14, + "column": 4, + "index": 442 }, { - "filePath": "src/schedule-and-details/introducing-section/introduction-video/index.jsx", - "line": 31, + "filePath": "src/generic/configure-modal/ConfigureModal.jsx", + "line": 297, + "column": 18, + "index": 9631 + }, + { + "filePath": "src/generic/ConfirmationPopup.jsx", + "line": 26, "column": 8, - "index": 963 + "index": 596 }, { - "filePath": "src/schedule-and-details/requirements-section/entrance-exam/index.jsx", - "line": 42, - "column": 12, - "index": 1307 + "filePath": "src/generic/ConfirmationPopup.jsx", + "line": 29, + "column": 8, + "index": 723 }, { - "filePath": "src/studio-home/processing-courses/course-item/index.jsx", - "line": 45, + "filePath": "src/generic/create-or-rerun-course/CreateOrRerunCourseForm.jsx", + "line": 257, "column": 10, - "index": 1294 + "index": 8248 }, { - "filePath": "src/studio-home/processing-courses/course-item/index.jsx", - "line": 71, + "filePath": "src/generic/delete-modal/DeleteModal.jsx", + "line": 39, "column": 10, - "index": 2212 + "index": 943 }, { - "filePath": "src/studio-home/tabs-section/courses-tab/contact-administrator/index.jsx", - "line": 26, + "filePath": "src/generic/modal-dropzone/ModalDropzone.jsx", + "line": 119, "column": 10, - "index": 890 + "index": 3040 }, { - "filePath": "src/taxonomy/taxonomy-detail/TaxonomyDetailSideCard.jsx", - "line": 17, - "column": 6, - "index": 478 - } - ], - "InfoIcon": [ - { - "filePath": "src/generic/create-or-rerun-course/CreateOrRerunCourseForm.jsx", - "line": 208, - "column": 18, - "index": 6494 - } - ], - "Form.Text": [ - { - "filePath": "src/generic/create-or-rerun-course/CreateOrRerunCourseForm.jsx", - "line": 242, - "column": 12, - "index": 7683 + "filePath": "src/generic/modal-notification/index.jsx", + "line": 15, + "column": 8, + "index": 406 }, { - "filePath": "src/generic/FormikControl.jsx", - "line": 35, + "filePath": "src/generic/modal-notification/index.jsx", + "line": 16, "column": 8, - "index": 941 + "index": 492 }, { - "filePath": "src/generic/FormSwitchGroup.jsx", - "line": 43, + "filePath": "src/generic/tag-count/index.jsx", + "line": 20, "column": 8, - "index": 1129 + "index": 474 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/lti/LtiConfigForm.jsx", - "line": 151, + "filePath": "src/grading-settings/assignment-section/index.jsx", + "line": 183, "column": 12, - "index": 5930 + "index": 7390 }, { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 322, + "filePath": "src/grading-settings/GradingSettings.jsx", + "line": 211, + "column": 20, + "index": 8297 + }, + { + "filePath": "src/grading-settings/GradingSettings.jsx", + "line": 250, "column": 14, - "index": 12163 + "index": 9767 }, { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 349, - "column": 12, - "index": 13358 + "filePath": "src/group-configurations/common/TitleButton.jsx", + "line": 21, + "column": 4, + "index": 527 }, { - "filePath": "src/pages-and-resources/teams/Settings.jsx", - "line": 132, - "column": 14, - "index": 4671 + "filePath": "src/group-configurations/content-groups-section/ContentGroupForm.jsx", + "line": 86, + "column": 16, + "index": 2685 }, { - "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", - "line": 30, - "column": 14, - "index": 996 + "filePath": "src/group-configurations/content-groups-section/ContentGroupForm.jsx", + "line": 89, + "column": 16, + "index": 2836 }, { - "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", - "line": 44, - "column": 14, - "index": 1584 + "filePath": "src/group-configurations/content-groups-section/index.jsx", + "line": 59, + "column": 12, + "index": 2032 }, { - "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", - "line": 58, - "column": 14, - "index": 2201 + "filePath": "src/group-configurations/empty-placeholder/index.jsx", + "line": 23, + "column": 6, + "index": 757 }, { - "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", - "line": 74, + "filePath": "src/group-configurations/experiment-configurations-section/ExperimentForm.jsx", + "line": 119, "column": 14, - "index": 2869 - } - ], - "Calendar": [ + "index": 3986 + }, { - "filePath": "src/generic/datepicker-control/DatepickerControl.jsx", - "line": 49, - "column": 17, - "index": 1374 - } - ], - "SwitchControl": [ + "filePath": "src/group-configurations/experiment-configurations-section/ExperimentForm.jsx", + "line": 122, + "column": 14, + "index": 4148 + }, { - "filePath": "src/generic/FormSwitchGroup.jsx", - "line": 33, - "column": 10, - "index": 870 - } - ], - "IconSettings": [ + "filePath": "src/group-configurations/experiment-configurations-section/ExperimentFormGroups.jsx", + "line": 82, + "column": 6, + "index": 2667 + }, { - "filePath": "src/generic/processing-notification/index.jsx", - "line": 18, - "column": 56, - "index": 565 - } - ], - "Form.Check": [ + "filePath": "src/group-configurations/experiment-configurations-section/index.jsx", + "line": 48, + "column": 12, + "index": 1666 + }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/lti/LtiConfigForm.jsx", - "line": 153, - "column": 14, - "index": 6074 + "filePath": "src/import-page/import-stepper/ImportStepper.jsx", + "line": 105, + "column": 8, + "index": 3692 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/lti/LtiConfigForm.jsx", - "line": 161, + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-restrictions/RestrictionSchedules.jsx", + "line": 67, "column": 14, - "index": 6385 - } - ], - "Form.Row": [ - { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-restrictions/DiscussionRestrictionItem.jsx", - "line": 98, - "column": 6, - "index": 3408 + "index": 2190 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-restrictions/DiscussionRestrictionItem.jsx", - "line": 124, - "column": 6, - "index": 4424 + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-topics/DiscussionTopics.jsx", + "line": 78, + "column": 16, + "index": 2946 }, { - "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", - "line": 20, + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-topics/TopicItem.jsx", + "line": 84, "column": 10, - "index": 537 + "index": 2264 }, { - "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", - "line": 63, + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-topics/TopicItem.jsx", + "line": 87, "column": 10, - "index": 2376 + "index": 2420 }, - { - "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 - } - ], - "breakpoints": [ - { - "filePath": "src/pages-and-resources/discussions/app-list/AppCard.jsx", - "line": 54, - "column": 34, - "index": 1894 + "line": 41, + "column": 4, + "index": 1479 }, { "filePath": "src/pages-and-resources/discussions/app-list/AppList.jsx", - "line": 151, - "column": 28, - "index": 5176 + "line": 170, + "column": 12, + "index": 5777 }, { - "filePath": "src/pages-and-resources/discussions/app-list/AppList.test.jsx", - "line": 41, - "column": 39, - "index": 1672 + "filePath": "src/pages-and-resources/discussions/app-list/AppListNextButton.jsx", + "line": 21, + "column": 4, + "index": 739 }, { - "filePath": "src/pages-and-resources/discussions/app-list/AppList.test.jsx", - "line": 125, - "column": 22, - "index": 4206 + "filePath": "src/pages-and-resources/discussions/DiscussionsSettings.jsx", + "line": 107, + "column": 20, + "index": 3475 }, { - "filePath": "src/pages-and-resources/discussions/app-list/AppList.test.jsx", - "line": 136, - "column": 22, - "index": 4676 + "filePath": "src/pages-and-resources/PagesAndResources.jsx", + "line": 81, + "column": 12, + "index": 3364 }, { - "filePath": "src/pages-and-resources/discussions/data/hook.js", - "line": 5, - "column": 28, - "index": 173 - } - ], - "Form.Switch": [ + "filePath": "src/schedule-and-details/basic-section/index.jsx", + "line": 119, + "column": 10, + "index": 3357 + }, { - "filePath": "src/pages-and-resources/discussions/app-list/AppList.jsx", - "line": 129, - "column": 8, - "index": 4515 - } - ], - "CardGrid": [ + "filePath": "src/schedule-and-details/index.jsx", + "line": 363, + "column": 14, + "index": 12851 + }, { - "filePath": "src/pages-and-resources/discussions/app-list/AppList.jsx", - "line": 140, + "filePath": "src/schedule-and-details/instructors-section/index.jsx", + "line": 72, "column": 6, - "index": 4867 + "index": 1994 }, { - "filePath": "src/pages-and-resources/pages/PageGrid.jsx", - "line": 8, - "column": 2, - "index": 255 - } - ], - "Remove": [ - { - "filePath": "src/pages-and-resources/discussions/app-list/FeaturesTable.jsx", - "line": 37, - "column": 18, - "index": 1498 - } - ], - "useWindowSize": [ + "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", + "line": 95, + "column": 8, + "index": 3698 + }, { - "filePath": "src/pages-and-resources/discussions/data/hook.js", - "line": 4, - "column": 21, - "index": 128 - } - ], - "FullscreenModal": [ + "filePath": "src/schedule-and-details/introducing-section/introduction-video/index.jsx", + "line": 38, + "column": 10, + "index": 1267 + }, { - "filePath": "src/pages-and-resources/discussions/DiscussionsSettings.jsx", - "line": 64, + "filePath": "src/schedule-and-details/learning-outcomes-section/index.jsx", + "line": 43, "column": 6, - "index": 2156 + "index": 1347 }, { - "filePath": "src/pages-and-resources/discussions/DiscussionsSettings.jsx", - "line": 77, + "filePath": "src/schedule-and-details/learning-outcomes-section/index.jsx", + "line": 61, "column": 6, - "index": 2430 + "index": 1895 }, { - "filePath": "src/pages-and-resources/discussions/DiscussionsSettings.jsx", - "line": 92, - "column": 10, - "index": 2802 - } - ], - "Stepper": [ - { - "filePath": "src/pages-and-resources/discussions/DiscussionsSettings.jsx", - "line": 91, + "filePath": "src/schedule-and-details/license-section/license-selector/index.jsx", + "line": 37, "column": 8, - "index": 2758 - } - ], - "Stepper.Header": [ + "index": 1048 + }, { - "filePath": "src/pages-and-resources/discussions/DiscussionsSettings.jsx", - "line": 98, - "column": 28, - "index": 3037 - } - ], - "Stepper.ActionRow": [ + "filePath": "src/studio-home/organization-section/index.jsx", + "line": 66, + "column": 6, + "index": 2439 + }, { - "filePath": "src/pages-and-resources/discussions/DiscussionsSettings.jsx", - "line": 101, - "column": 16, - "index": 3155 + "filePath": "src/studio-home/processing-courses/course-item/index.jsx", + "line": 74, + "column": 12, + "index": 2449 }, { - "filePath": "src/pages-and-resources/discussions/DiscussionsSettings.jsx", - "line": 104, - "column": 16, - "index": 3295 - } - ], - "Stepper.Step": [ + "filePath": "src/studio-home/tabs-section/courses-tab/contact-administrator/index.jsx", + "line": 31, + "column": 14, + "index": 1078 + }, { - "filePath": "src/pages-and-resources/discussions/DiscussionsSettings.jsx", - "line": 118, + "filePath": "src/taxonomy/delete-dialog/index.jsx", + "line": 77, "column": 12, - "index": 3816 + "index": 2355 }, { - "filePath": "src/pages-and-resources/discussions/DiscussionsSettings.jsx", - "line": 131, + "filePath": "src/taxonomy/export-modal/index.jsx", + "line": 74, "column": 12, - "index": 4267 - } - ], - "ArrowForward": [ + "index": 2349 + }, { - "filePath": "src/pages-and-resources/pages/PageCard.jsx", - "line": 43, - "column": 17, - "index": 1374 - } - ], - "Settings": [ + "filePath": "src/taxonomy/import-tags/ImportTagsWizard.jsx", + "line": 48, + "column": 10, + "index": 1330 + }, { - "filePath": "src/pages-and-resources/pages/PageCard.jsx", - "line": 53, - "column": 13, - "index": 1660 - } - ], - "Form.RadioSet": [ + "filePath": "src/taxonomy/import-tags/ImportTagsWizard.jsx", + "line": 56, + "column": 10, + "index": 1641 + }, { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 370, + "filePath": "src/taxonomy/import-tags/ImportTagsWizard.jsx", + "line": 464, "column": 14, - "index": 14383 + "index": 13443 }, { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 394, + "filePath": "src/taxonomy/import-tags/ImportTagsWizard.jsx", + "line": 467, "column": 14, - "index": 15509 + "index": 13627 }, { - "filePath": "src/pages-and-resources/teams/GroupEditor.jsx", - "line": 102, + "filePath": "src/taxonomy/import-tags/ImportTagsWizard.jsx", + "line": 476, + "column": 18, + "index": 13961 + }, + { + "filePath": "src/taxonomy/import-tags/ImportTagsWizard.jsx", + "line": 482, "column": 14, - "index": 4365 + "index": 14260 }, { - "filePath": "src/pages-and-resources/xpert-unit-summary/settings-modal/SettingsModal.jsx", - "line": 359, - "column": 16, - "index": 10867 + "filePath": "src/taxonomy/import-tags/ImportTagsWizard.jsx", + "line": 502, + "column": 14, + "index": 15119 }, { - "filePath": "src/schedule-and-details/pacing-section/index.jsx", - "line": 27, - "column": 8, - "index": 836 - }, - { - "filePath": "src/taxonomy/export-modal/index.jsx", - "line": 46, - "column": 10, - "index": 1222 - } - ], - "Form.Radio": [ - { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 376, - "column": 16, - "index": 14619 - }, - { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 379, - "column": 16, - "index": 14800 + "filePath": "src/taxonomy/import-tags/ImportTagsWizard.jsx", + "line": 506, + "column": 14, + "index": 15376 }, { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 399, - "column": 16, - "index": 15707 + "filePath": "src/taxonomy/import-tags/ImportTagsWizard.jsx", + "line": 519, + "column": 14, + "index": 15927 }, { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 402, - "column": 16, - "index": 15894 + "filePath": "src/taxonomy/import-tags/ImportTagsWizard.jsx", + "line": 523, + "column": 14, + "index": 16184 }, { - "filePath": "src/pages-and-resources/teams/GroupEditor.jsx", - "line": 109, - "column": 18, - "index": 4632 + "filePath": "src/taxonomy/import-tags/ImportTagsWizard.jsx", + "line": 526, + "column": 14, + "index": 16340 }, { - "filePath": "src/pages-and-resources/xpert-unit-summary/settings-modal/SettingsModal.jsx", - "line": 365, + "filePath": "src/taxonomy/import-tags/ImportTagsWizard.jsx", + "line": 535, "column": 18, - "index": 11108 + "index": 16715 }, { - "filePath": "src/pages-and-resources/xpert-unit-summary/settings-modal/SettingsModal.jsx", - "line": 378, - "column": 18, - "index": 11633 + "filePath": "src/taxonomy/import-tags/ImportTagsWizard.jsx", + "line": 541, + "column": 14, + "index": 17012 }, { - "filePath": "src/schedule-and-details/pacing-section/index.jsx", - "line": 32, + "filePath": "src/taxonomy/manage-orgs/ManageOrgsModal.jsx", + "line": 44, "column": 10, - "index": 1005 + "index": 1000 }, { - "filePath": "src/schedule-and-details/pacing-section/index.jsx", - "line": 39, + "filePath": "src/taxonomy/manage-orgs/ManageOrgsModal.jsx", + "line": 47, "column": 10, - "index": 1283 + "index": 1132 }, { - "filePath": "src/taxonomy/export-modal/index.jsx", - "line": 51, + "filePath": "src/taxonomy/manage-orgs/ManageOrgsModal.jsx", + "line": 224, "column": 12, - "index": 1389 + "index": 6798 }, { - "filePath": "src/taxonomy/export-modal/index.jsx", - "line": 57, - "column": 12, - "index": 1596 - } - ], - "CheckCircleOutline": [ + "filePath": "src/taxonomy/TaxonomyListPage.jsx", + "line": 79, + "column": 6, + "index": 2359 + }, { - "filePath": "src/pages-and-resources/xpert-unit-summary/settings-modal/SettingsModal.jsx", - "line": 172, - "column": 29, - "index": 4874 - } - ], - "PageBanner": [ + "filePath": "src/textbooks/empty-placeholder/EmptyPlaceholder.jsx", + "line": 14, + "column": 6, + "index": 516 + }, { - "filePath": "src/schedule-and-details/basic-section/index.jsx", - "line": 81, - "column": 4, - "index": 2203 - } - ], - "EmailIcon": [ + "filePath": "src/textbooks/textbook-form/TextbookForm.jsx", + "line": 142, + "column": 20, + "index": 6044 + }, { - "filePath": "src/schedule-and-details/basic-section/index.jsx", - "line": 119, - "column": 56, - "index": 3395 + "filePath": "src/textbooks/textbook-form/TextbookForm.jsx", + "line": 155, + "column": 14, + "index": 6500 + }, + { + "filePath": "src/textbooks/textbook-form/TextbookForm.jsx", + "line": 158, + "column": 14, + "index": 6682 + }, + { + "filePath": "src/textbooks/Textbooks.jsx", + "line": 83, + "column": 14, + "index": 2585 } ], - "Col": [ + "Add": [ { - "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", - "line": 21, - "column": 28, - "index": 576 + "filePath": "plugins/course-apps/teams/Settings.jsx", + "line": 150, + "column": 34, + "index": 5588 }, { - "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", - "line": 35, - "column": 28, - "index": 1160 + "filePath": "src/content-tags-drawer/ContentTagsDropDownSelector.jsx", + "line": 314, + "column": 26, + "index": 11865 }, { - "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", - "line": 49, - "column": 28, - "index": 1749 + "filePath": "src/custom-pages/CustomPages.jsx", + "line": 99, + "column": 26, + "index": 3388 }, { - "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", - "line": 64, - "column": 28, - "index": 2415 - } - ], - "Copyright": [ + "filePath": "src/custom-pages/CustomPages.jsx", + "line": 138, + "column": 24, + "index": 4728 + }, { - "filePath": "src/schedule-and-details/license-section/license-icons/index.jsx", - "line": 30, - "column": 15, - "index": 910 - } - ], - "Cc": [ + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/AnswerWidget/AnswersContainer.jsx", + "line": 54, + "column": 19, + "index": 1627 + }, { - "filePath": "src/schedule-and-details/license-section/license-icons/index.jsx", - "line": 38, - "column": 15, - "index": 1148 - } - ], - "Attribution": [ + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/index.jsx", + "line": 74, + "column": 26, + "index": 2124 + }, { - "filePath": "src/schedule-and-details/license-section/license-icons/index.jsx", - "line": 45, - "column": 15, - "index": 1338 - } - ], - "Nc": [ + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/index.jsx", + "line": 175, + "column": 24, + "index": 5903 + }, { - "filePath": "src/schedule-and-details/license-section/license-icons/index.jsx", - "line": 52, - "column": 15, - "index": 1539 - } - ], - "Nd": [ + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoSourceWidget/index.jsx", + "line": 154, + "column": 20, + "index": 5104 + }, { - "filePath": "src/schedule-and-details/license-section/license-icons/index.jsx", - "line": 59, - "column": 15, - "index": 1731 - } - ], - "Sa": [ + "filePath": "src/editors/sharedComponents/SelectionModal/index.jsx", + "line": 74, + "column": 22, + "index": 1661 + }, { - "filePath": "src/schedule-and-details/license-section/license-icons/index.jsx", - "line": 66, - "column": 15, - "index": 1920 - } - ], - "Bubble": [ + "filePath": "src/editors/sharedComponents/TypeaheadDropdown/index.jsx", + "line": 194, + "column": 24, + "index": 5049 + }, { - "filePath": "src/studio-home/collapsible-state-with-action/index.jsx", - "line": 105, - "column": 10, - "index": 3648 + "filePath": "src/files-and-videos/generic/table-components/TableActions.jsx", + "line": 74, + "column": 26, + "index": 2400 }, { - "filePath": "src/studio-home/collapsible-state-with-action/index.jsx", - "line": 114, - "column": 10, - "index": 3907 - } - ], - "FormLabel": [ + "filePath": "src/files-and-videos/videos-page/info-sidebar/TranscriptTab.jsx", + "line": 130, + "column": 22, + "index": 4037 + }, { - "filePath": "src/studio-home/organization-section/index.jsx", - "line": 49, - "column": 8, - "index": 1730 - } - ], - "RotateRightIcon": [ + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-restrictions/RestrictionSchedules.jsx", + "line": 70, + "column": 28, + "index": 2308 + }, { - "filePath": "src/studio-home/processing-courses/course-item/index.jsx", - "line": 39, - "column": 27, - "index": 1044 - } - ], - "CloseIcon": [ + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-topics/DiscussionTopics.jsx", + "line": 81, + "column": 30, + "index": 3069 + }, { - "filePath": "src/studio-home/processing-courses/course-item/index.jsx", - "line": 76, - "column": 26, - "index": 2558 + "filePath": "src/taxonomy/TaxonomyListPage.jsx", + "line": 80, + "column": 20, + "index": 2387 } ], - "Popover": [ + "OverlayTrigger": [ { - "filePath": "src/taxonomy/system-defined-badge/index.jsx", - "line": 14, + "filePath": "plugins/course-apps/xpert_unit_summary/settings-modal/SettingsModal.jsx", + "line": 154, "column": 4, - "index": 332 + "index": 4455 }, { - "filePath": "src/taxonomy/taxonomy-card/index.jsx", - "line": 64, + "filePath": "src/course-outline/card-header/TitleButton.jsx", + "line": 25, "column": 4, - "index": 1677 - } - ], - "Popover.Title": [ - { - "filePath": "src/taxonomy/system-defined-badge/index.jsx", - "line": 15, - "column": 6, - "index": 413 - } - ], - "Popover.Content": [ + "index": 522 + }, { - "filePath": "src/taxonomy/system-defined-badge/index.jsx", - "line": 18, - "column": 6, - "index": 532 + "filePath": "src/course-outline/empty-placeholder/EmptyPlaceholder.jsx", + "line": 19, + "column": 8, + "index": 602 }, { - "filePath": "src/taxonomy/taxonomy-card/index.jsx", - "line": 68, - "column": 6, - "index": 1780 - } - ], - "DataTable.ExpandRow": [ + "filePath": "src/course-outline/header-navigations/HeaderNavigations.jsx", + "line": 30, + "column": 8, + "index": 759 + }, { - "filePath": "src/taxonomy/tag-list/TagListTable.jsx", - "line": 42, - "column": 71, - "index": 1391 - } - ], - "DataTable.TableFooter": [ + "filePath": "src/course-outline/header-navigations/HeaderNavigations.jsx", + "line": 48, + "column": 8, + "index": 1318 + }, { - "filePath": "src/taxonomy/tag-list/TagListTable.jsx", - "line": 101, + "filePath": "src/course-outline/header-navigations/HeaderNavigations.jsx", + "line": 77, "column": 6, - "index": 3204 - } - ], - "MoreVert": [ - { - "filePath": "src/taxonomy/taxonomy-card/TaxonomyCardMenu.jsx", - "line": 31, - "column": 13, - "index": 732 - } - ], - "DropdownButton": [ + "index": 2323 + }, { - "filePath": "src/taxonomy/taxonomy-detail/TaxonomyDetailMenu.jsx", - "line": 22, - "column": 4, - "index": 421 - } - ] - } - }, - { - "version": "20.46.3", - "name": "@edx/frontend-app-discussions", - "repository": { - "type": "git", - "url": "git+https://github.com/openedx/frontend-app-discussions.git" - }, - "folderName": "frontend-app-discussions", - "usages": { - "Collapsible.Advanced": [ + "filePath": "src/course-unit/add-component/add-component-modals/ComponentModalView.jsx", + "line": 70, + "column": 20, + "index": 2452 + }, { - "filePath": "src/components/FilterBar.jsx", - "line": 97, - "column": 4, - "index": 2716 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/index.jsx", + "line": 140, + "column": 14, + "index": 4564 }, { - "filePath": "src/discussions/learners/learner/LearnerFilterBar.jsx", - "line": 77, - "column": 4, - "index": 2406 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoSourceWidget/index.jsx", + "line": 135, + "column": 10, + "index": 4488 }, { - "filePath": "src/discussions/posts/post-filter-bar/PostFilterBar.jsx", - "line": 184, + "filePath": "src/files-and-videos/generic/table-components/table-custom-columns/AccessColumn.jsx", + "line": 15, "column": 4, - "index": 6334 - } - ], - "Collapsible.Trigger": [ + "index": 412 + }, { - "filePath": "src/components/FilterBar.jsx", - "line": 102, + "filePath": "src/generic/clipboard/paste-component/index.jsx", + "line": 37, "column": 6, - "index": 2868 + "index": 1160 }, { - "filePath": "src/discussions/learners/learner/LearnerFilterBar.jsx", - "line": 82, + "filePath": "src/schedule-and-details/license-section/license-selector/index.jsx", + "line": 31, "column": 6, - "index": 2550 + "index": 873 }, { - "filePath": "src/discussions/posts/post-filter-bar/PostFilterBar.jsx", - "line": 189, + "filePath": "src/taxonomy/system-defined-badge/index.jsx", + "line": 25, + "column": 4, + "index": 680 + }, + { + "filePath": "src/taxonomy/taxonomy-card/index.jsx", + "line": 74, + "column": 4, + "index": 1790 + }, + { + "filePath": "src/taxonomy/TaxonomyListPage.jsx", + "line": 47, "column": 6, - "index": 6476 + "index": 1185 } ], - "Collapsible.Visible": [ + "Tooltip": [ { - "filePath": "src/components/FilterBar.jsx", - "line": 113, + "filePath": "plugins/course-apps/xpert_unit_summary/settings-modal/SettingsModal.jsx", + "line": 157, "column": 8, - "index": 3350 + "index": 4520 }, { - "filePath": "src/components/FilterBar.jsx", - "line": 116, + "filePath": "src/course-outline/card-header/TitleButton.jsx", + "line": 28, "column": 8, - "index": 3452 + "index": 588 }, { - "filePath": "src/discussions/learners/learner/LearnerFilterBar.jsx", - "line": 88, - "column": 8, - "index": 2793 + "filePath": "src/course-outline/empty-placeholder/EmptyPlaceholder.jsx", + "line": 22, + "column": 12, + "index": 680 }, { - "filePath": "src/discussions/learners/learner/LearnerFilterBar.jsx", - "line": 91, - "column": 8, - "index": 2895 + "filePath": "src/course-outline/header-navigations/HeaderNavigations.jsx", + "line": 33, + "column": 12, + "index": 837 }, { - "filePath": "src/discussions/posts/post-filter-bar/PostFilterBar.jsx", - "line": 201, - "column": 10, - "index": 6990 + "filePath": "src/course-outline/header-navigations/HeaderNavigations.jsx", + "line": 51, + "column": 12, + "index": 1423 }, { - "filePath": "src/discussions/posts/post-filter-bar/PostFilterBar.jsx", - "line": 204, - "column": 10, - "index": 7098 - } - ], - "Icon": [ - { - "filePath": "src/components/FilterBar.jsx", - "line": 114, + "filePath": "src/course-outline/header-navigations/HeaderNavigations.jsx", + "line": 80, "column": 10, - "index": 3393 + "index": 2395 }, { - "filePath": "src/components/FilterBar.jsx", - "line": 117, - "column": 10, - "index": 3493 + "filePath": "src/course-unit/add-component/add-component-modals/ComponentModalView.jsx", + "line": 73, + "column": 24, + "index": 2565 }, { - "filePath": "src/components/PostPreviewPanel.jsx", - "line": 28, - "column": 20, - "index": 935 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/index.jsx", + "line": 144, + "column": 18, + "index": 4683 }, { - "filePath": "src/components/Search.jsx", - "line": 85, - "column": 8, - "index": 2777 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoSourceWidget/index.jsx", + "line": 139, + "column": 14, + "index": 4591 }, { - "filePath": "src/components/SearchInfo.jsx", - "line": 22, - "column": 6, - "index": 542 + "filePath": "src/files-and-videos/generic/table-components/table-custom-columns/AccessColumn.jsx", + "line": 18, + "column": 8, + "index": 475 }, { - "filePath": "src/components/TopicStats.jsx", - "line": 43, + "filePath": "src/schedule-and-details/license-section/license-selector/index.jsx", + "line": 34, "column": 10, - "index": 1441 + "index": 936 }, { - "filePath": "src/components/TopicStats.jsx", - "line": 61, + "filePath": "src/taxonomy/TaxonomyListPage.jsx", + "line": 50, "column": 10, - "index": 2044 - }, - { - "filePath": "src/components/TopicStats.jsx", - "line": 87, - "column": 12, - "index": 3001 - }, + "index": 1254 + } + ], + "SpinnerSimple": [ { - "filePath": "src/discussions/common/ActionsDropdown.jsx", - "line": 67, - "column": 16, - "index": 1825 + "filePath": "plugins/course-apps/xpert_unit_summary/settings-modal/SettingsModal.jsx", + "line": 174, + "column": 30, + "index": 5026 }, { - "filePath": "src/discussions/common/ActionsDropdown.jsx", - "line": 97, - "column": 18, - "index": 2877 + "filePath": "src/custom-pages/CustomPageCard.jsx", + "line": 61, + "column": 26, + "index": 1623 }, { - "filePath": "src/discussions/common/AuthorLabel.jsx", - "line": 78, - "column": 10, - "index": 2414 + "filePath": "src/custom-pages/CustomPages.jsx", + "line": 100, + "column": 26, + "index": 3423 }, { - "filePath": "src/discussions/common/EndorsedAlertBanner.jsx", - "line": 39, - "column": 12, - "index": 1315 + "filePath": "src/editors/sharedComponents/SelectionModal/GalleryLoadMoreButton.jsx", + "line": 26, + "column": 26, + "index": 723 + } + ], + "CheckCircleOutline": [ + { + "filePath": "plugins/course-apps/xpert_unit_summary/settings-modal/SettingsModal.jsx", + "line": 175, + "column": 29, + "index": 5096 + } + ], + "Stack": [ + { + "filePath": "src/accessibility-page/AccessibilityBody/AccessibilityBody.jsx", + "line": 18, + "column": 4, + "index": 480 }, { - "filePath": "src/discussions/common/HoverCard.jsx", - "line": 70, - "column": 22, - "index": 2142 + "filePath": "src/accessibility-page/AccessibilityForm/AccessibilityForm.jsx", + "line": 72, + "column": 10, + "index": 1966 }, { - "filePath": "src/discussions/common/HoverCard.jsx", - "line": 85, - "column": 18, - "index": 2671 + "filePath": "src/certificates/certificate-create-form/CertificateCreateForm.jsx", + "line": 26, + "column": 14, + "index": 1054 }, { - "filePath": "src/discussions/common/HoverCard.jsx", - "line": 99, - "column": 20, - "index": 3057 + "filePath": "src/certificates/certificate-details/CertificateDetails.jsx", + "line": 42, + "column": 8, + "index": 1174 }, { - "filePath": "src/discussions/in-context-topics/components/BackButton.jsx", + "filePath": "src/certificates/certificate-details/CertificateDetails.jsx", + "line": 60, + "column": 6, + "index": 1885 + }, + { + "filePath": "src/certificates/certificate-details/CertificateDetails.jsx", + "line": 61, + "column": 8, + "index": 1901 + }, + { + "filePath": "src/certificates/certificate-details/CertificateDetails.jsx", + "line": 69, + "column": 8, + "index": 2377 + }, + { + "filePath": "src/certificates/certificate-details/CertificateDetailsForm.jsx", + "line": 21, + "column": 6, + "index": 588 + }, + { + "filePath": "src/certificates/certificate-details/CertificateDetailsForm.jsx", "line": 22, - "column": 18, - "index": 594 + "column": 8, + "index": 604 }, { - "filePath": "src/discussions/in-context-topics/topic-search/TopicSearchBar.jsx", - "line": 50, + "filePath": "src/certificates/certificate-details/CertificateDetailsForm.jsx", + "line": 27, "column": 8, - "index": 1474 + "index": 886 }, { - "filePath": "src/discussions/learners/learner/LearnerFilterBar.jsx", - "line": 33, + "filePath": "src/certificates/certificate-edit-form/CertificateEditForm.jsx", + "line": 38, + "column": 20, + "index": 1391 + }, + { + "filePath": "src/certificates/certificate-section/CertificateSection.jsx", + "line": 8, "column": 4, - "index": 1174 + "index": 179 }, { - "filePath": "src/discussions/learners/learner/LearnerFilterBar.jsx", - "line": 89, - "column": 10, - "index": 2836 + "filePath": "src/certificates/certificate-signatories/CertificateSignatories.jsx", + "line": 44, + "column": 8, + "index": 1258 }, { - "filePath": "src/discussions/learners/learner/LearnerFilterBar.jsx", - "line": 92, - "column": 10, - "index": 2936 + "filePath": "src/certificates/certificate-signatories/signatory/Signatory.jsx", + "line": 26, + "column": 6, + "index": 609 }, { - "filePath": "src/discussions/learners/learner/LearnerFooter.jsx", - "line": 36, - "column": 10, - "index": 1406 + "filePath": "src/certificates/certificate-signatories/signatory/Signatory.jsx", + "line": 28, + "column": 8, + "index": 774 }, { - "filePath": "src/discussions/learners/learner/LearnerFooter.jsx", - "line": 52, + "filePath": "src/certificates/certificate-signatories/signatory/SignatoryForm.jsx", + "line": 85, + "column": 6, + "index": 2698 + }, + { + "filePath": "src/certificates/certificate-signatories/signatory/SignatoryForm.jsx", + "line": 87, + "column": 8, + "index": 2885 + }, + { + "filePath": "src/certificates/certificate-signatories/signatory/SignatoryForm.jsx", + "line": 100, + "column": 6, + "index": 3323 + }, + { + "filePath": "src/certificates/certificate-signatories/signatory/SignatoryForm.jsx", + "line": 120, "column": 10, - "index": 1951 + "index": 4127 }, { - "filePath": "src/discussions/learners/learner/LearnerFooter.jsx", - "line": 80, + "filePath": "src/certificates/certificate-signatories/signatory/SignatoryForm.jsx", + "line": 121, "column": 12, - "index": 2973 + "index": 4203 }, { - "filePath": "src/discussions/learners/LearnerPostsView.jsx", - "line": 83, + "filePath": "src/certificates/certificate-signatories/signatory/SignatoryForm.jsx", + "line": 137, + "column": 8, + "index": 4808 + }, + { + "filePath": "src/certificates/certificates-list/CertificatesList.jsx", + "line": 31, "column": 18, - "index": 2816 + "index": 1018 }, { - "filePath": "src/discussions/post-comments/PostCommentsView.jsx", - "line": 108, - "column": 20, - "index": 3414 + "filePath": "src/content-tags-drawer/tags-sidebar-controls/TagsSidebarBody.jsx", + "line": 66, + "column": 8, + "index": 1919 }, { - "filePath": "src/discussions/posts/post-actions-bar/PostActionsBar.jsx", - "line": 74, - "column": 22, - "index": 2855 + "filePath": "src/content-tags-drawer/tags-sidebar-controls/TagsSidebarBody.jsx", + "line": 69, + "column": 14, + "index": 1997 }, { - "filePath": "src/discussions/posts/post-filter-bar/PostFilterBar.jsx", - "line": 47, + "filePath": "src/content-tags-drawer/tags-sidebar-controls/TagsSidebarHeader.jsx", + "line": 21, "column": 4, - "index": 1636 + "index": 571 }, { - "filePath": "src/discussions/posts/post-filter-bar/PostFilterBar.jsx", - "line": 202, - "column": 12, - "index": 7035 + "filePath": "src/content-tags-drawer/TagsTree.jsx", + "line": 26, + "column": 4, + "index": 683 }, { - "filePath": "src/discussions/posts/post-filter-bar/PostFilterBar.jsx", - "line": 205, - "column": 12, - "index": 7141 + "filePath": "src/course-checklist/ChecklistSection/ChecklistSection.jsx", + "line": 36, + "column": 10, + "index": 1246 }, { - "filePath": "src/discussions/posts/post/LikeButton.jsx", - "line": 36, - "column": 18, - "index": 1020 + "filePath": "src/course-checklist/CourseChecklist.jsx", + "line": 65, + "column": 8, + "index": 2253 }, { - "filePath": "src/discussions/posts/post/PostFooter.jsx", - "line": 58, - "column": 20, - "index": 1641 + "filePath": "src/course-outline/status-bar/StatusBar.jsx", + "line": 86, + "column": 6, + "index": 2617 }, { - "filePath": "src/discussions/posts/post/PostFooter.jsx", - "line": 73, - "column": 14, - "index": 2169 + "filePath": "src/course-rerun/index.jsx", + "line": 51, + "column": 16, + "index": 1448 }, { - "filePath": "src/discussions/posts/post/PostFooter.jsx", - "line": 92, - "column": 12, - "index": 2677 + "filePath": "src/course-unit/CourseUnit.jsx", + "line": 152, + "column": 14, + "index": 5358 }, { - "filePath": "src/discussions/posts/post/PostHeader.jsx", - "line": 43, - "column": 8, - "index": 1325 + "filePath": "src/course-unit/sidebar/components/sidebar-footer/index.jsx", + "line": 21, + "column": 6, + "index": 558 }, { - "filePath": "src/discussions/posts/post/PostLink.jsx", - "line": 104, - "column": 16, - "index": 3864 + "filePath": "src/course-unit/sidebar/components/SidebarBody.jsx", + "line": 32, + "column": 6, + "index": 817 }, { - "filePath": "src/discussions/posts/post/PostLink.jsx", - "line": 123, - "column": 16, - "index": 4635 + "filePath": "src/course-unit/sidebar/components/SidebarHeader.jsx", + "line": 16, + "column": 4, + "index": 600 }, { - "filePath": "src/discussions/posts/post/PostSummaryFooter.jsx", - "line": 47, - "column": 10, - "index": 1367 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/HandoutWidget/index.jsx", + "line": 67, + "column": 8, + "index": 2017 }, { - "filePath": "src/discussions/posts/post/PostSummaryFooter.jsx", - "line": 63, + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/HandoutWidget/index.jsx", + "line": 99, "column": 8, - "index": 1985 + "index": 3380 }, { - "filePath": "src/discussions/posts/post/PostSummaryFooter.jsx", - "line": 79, + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/index.jsx", + "line": 56, + "column": 6, + "index": 1469 + }, + { + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", + "line": 46, "column": 12, - "index": 2663 + "index": 1195 }, { - "filePath": "src/discussions/posts/post/PostSummaryFooter.jsx", - "line": 102, - "column": 14, - "index": 3633 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDisplay.jsx", + "line": 25, + "column": 6, + "index": 496 }, { - "filePath": "src/discussions/topics/topic-group/topic/Topic.jsx", - "line": 75, - "column": 16, - "index": 3213 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/ThumbnailWidget/index.jsx", + "line": 84, + "column": 8, + "index": 2418 }, { - "filePath": "src/discussions/topics/topic-group/topic/Topic.jsx", - "line": 93, - "column": 16, - "index": 3934 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/ThumbnailWidget/index.jsx", + "line": 104, + "column": 8, + "index": 3041 }, { - "filePath": "src/discussions/topics/topic-group/topic/Topic.jsx", - "line": 119, - "column": 18, - "index": 5049 - } - ], - "Tune": [ + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/ImportTranscriptCard.jsx", + "line": 23, + "column": 2, + "index": 499 + }, { - "filePath": "src/components/FilterBar.jsx", - "line": 114, - "column": 21, - "index": 3404 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/index.jsx", + "line": 120, + "column": 6, + "index": 3717 }, { - "filePath": "src/components/FilterBar.jsx", - "line": 117, - "column": 21, - "index": 3504 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoPreviewWidget/index.jsx", + "line": 48, + "column": 10, + "index": 1511 }, { - "filePath": "src/discussions/learners/learner/LearnerFilterBar.jsx", - "line": 89, - "column": 21, - "index": 2847 + "filePath": "src/editors/sharedComponents/SelectionModal/index.jsx", + "line": 97, + "column": 6, + "index": 2315 }, { - "filePath": "src/discussions/learners/learner/LearnerFilterBar.jsx", - "line": 92, - "column": 21, - "index": 2947 + "filePath": "src/files-and-videos/files-page/FileInfoModalSidebar.jsx", + "line": 39, + "column": 4, + "index": 862 }, { - "filePath": "src/discussions/posts/post-filter-bar/PostFilterBar.jsx", - "line": 202, - "column": 23, - "index": 7046 + "filePath": "src/files-and-videos/generic/InfoModal.jsx", + "line": 72, + "column": 12, + "index": 2018 }, { - "filePath": "src/discussions/posts/post-filter-bar/PostFilterBar.jsx", - "line": 205, - "column": 23, - "index": 7152 - } - ], - "Collapsible.Body": [ + "filePath": "src/files-and-videos/videos-page/info-sidebar/InfoTab.jsx", + "line": 14, + "column": 4, + "index": 514 + }, { - "filePath": "src/components/FilterBar.jsx", - "line": 120, - "column": 6, - "index": 3579 + "filePath": "src/files-and-videos/videos-page/info-sidebar/TranscriptTab.jsx", + "line": 102, + "column": 4, + "index": 3084 }, { - "filePath": "src/discussions/learners/learner/LearnerFilterBar.jsx", - "line": 95, + "filePath": "src/files-and-videos/videos-page/transcript-settings/Cielo24Form.jsx", + "line": 28, "column": 6, - "index": 3022 + "index": 1088 }, { - "filePath": "src/discussions/posts/post-filter-bar/PostFilterBar.jsx", - "line": 209, + "filePath": "src/files-and-videos/videos-page/transcript-settings/Cielo24Form.jsx", + "line": 86, + "column": 4, + "index": 3438 + }, + { + "filePath": "src/files-and-videos/videos-page/transcript-settings/OrderTranscriptForm.jsx", + "line": 145, "column": 6, - "index": 7245 - } - ], - "Form": [ + "index": 4616 + }, { - "filePath": "src/components/FilterBar.jsx", - "line": 121, - "column": 8, - "index": 3650 + "filePath": "src/files-and-videos/videos-page/transcript-settings/ThreePlayMediaForm.jsx", + "line": 37, + "column": 6, + "index": 1128 }, { - "filePath": "src/discussions/learners/learner/LearnerFilterBar.jsx", - "line": 96, - "column": 8, - "index": 3093 + "filePath": "src/files-and-videos/videos-page/transcript-settings/ThreePlayMediaForm.jsx", + "line": 101, + "column": 4, + "index": 3889 }, { - "filePath": "src/discussions/post-comments/comments/comment/CommentEditor.jsx", - "line": 107, + "filePath": "src/files-and-videos/videos-page/upload-modal/UploadProgressList.jsx", + "line": 25, "column": 8, - "index": 3757 + "index": 718 }, { - "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", - "line": 244, + "filePath": "src/generic/clipboard/paste-component/components/PopoverContent.jsx", + "line": 22, "column": 6, - "index": 8901 + "index": 710 }, { - "filePath": "src/discussions/posts/post-filter-bar/PostFilterBar.jsx", - "line": 210, + "filePath": "src/generic/clipboard/paste-component/components/PopoverContent.jsx", + "line": 23, "column": 8, - "index": 7316 - } - ], - "Form.RadioSet": [ - { - "filePath": "src/components/FilterBar.jsx", - "line": 124, - "column": 14, - "index": 3782 + "index": 726 }, { - "filePath": "src/components/FilterBar.jsx", - "line": 158, - "column": 18, - "index": 5116 + "filePath": "src/generic/configure-modal/BasicTab.jsx", + "line": 36, + "column": 12, + "index": 931 }, { - "filePath": "src/discussions/learners/learner/LearnerFilterBar.jsx", - "line": 98, - "column": 12, - "index": 3185 + "filePath": "src/generic/configure-modal/BasicTab.jsx", + "line": 76, + "column": 16, + "index": 2483 }, { - "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", - "line": 250, + "filePath": "src/group-configurations/common/TitleButton.jsx", + "line": 37, "column": 8, - "index": 9216 + "index": 1057 }, { - "filePath": "src/discussions/posts/post-filter-bar/PostFilterBar.jsx", - "line": 155, - "column": 12, - "index": 5404 + "filePath": "src/group-configurations/common/UsageList.jsx", + "line": 35, + "column": 6, + "index": 1076 }, { - "filePath": "src/discussions/posts/post-filter-bar/PostFilterBar.jsx", - "line": 212, - "column": 12, - "index": 7408 + "filePath": "src/group-configurations/experiment-configurations-section/ExperimentCardGroup.jsx", + "line": 10, + "column": 4, + "index": 254 }, { - "filePath": "src/discussions/posts/post-filter-bar/PostFilterBar.jsx", - "line": 237, - "column": 12, - "index": 8388 + "filePath": "src/group-configurations/experiment-configurations-section/ExperimentFormGroups.jsx", + "line": 40, + "column": 6, + "index": 1206 }, { - "filePath": "src/discussions/posts/post-filter-bar/PostFilterBar.jsx", - "line": 284, + "filePath": "src/group-configurations/experiment-configurations-section/ExperimentFormGroups.jsx", + "line": 51, + "column": 14, + "index": 1549 + }, + { + "filePath": "src/group-configurations/index.jsx", + "line": 73, "column": 12, - "index": 10307 - } - ], - "Spinner": [ + "index": 2409 + }, { - "filePath": "src/components/FilterBar.jsx", - "line": 154, - "column": 18, - "index": 4941 + "filePath": "src/schedule-and-details/license-section/license-commons-options/index.jsx", + "line": 58, + "column": 6, + "index": 1812 }, { - "filePath": "src/components/Spinner.jsx", - "line": 7, + "filePath": "src/schedule-and-details/license-section/license-icons/index.jsx", + "line": 27, "column": 4, - "index": 175 + "index": 777 }, { - "filePath": "src/discussions/in-context-topics/components/BackButton.jsx", - "line": 29, - "column": 21, - "index": 880 + "filePath": "src/schedule-and-details/requirements-section/grade-requirements/index.jsx", + "line": 22, + "column": 4, + "index": 583 }, { - "filePath": "src/discussions/in-context-topics/TopicPostsView.jsx", - "line": 98, - "column": 12, - "index": 3858 + "filePath": "src/studio-home/processing-courses/index.jsx", + "line": 20, + "column": 6, + "index": 617 }, { - "filePath": "src/discussions/in-context-topics/TopicsView.jsx", - "line": 66, - "column": 10, - "index": 2331 + "filePath": "src/taxonomy/import-tags/ImportTagsWizard.jsx", + "line": 45, + "column": 6, + "index": 1139 }, { - "filePath": "src/discussions/learners/LearnerPostsView.jsx", + "filePath": "src/taxonomy/import-tags/ImportTagsWizard.jsx", + "line": 47, + "column": 8, + "index": 1281 + }, + { + "filePath": "src/taxonomy/import-tags/ImportTagsWizard.jsx", "line": 102, - "column": 12, - "index": 3757 + "column": 6, + "index": 2779 }, { - "filePath": "src/discussions/learners/LearnersView.jsx", - "line": 86, + "filePath": "src/taxonomy/import-tags/ImportTagsWizard.jsx", + "line": 129, "column": 12, - "index": 3060 + "index": 3707 }, { - "filePath": "src/discussions/post-comments/comments/CommentsView.jsx", - "line": 69, - "column": 10, - "index": 2344 + "filePath": "src/taxonomy/import-tags/ImportTagsWizard.jsx", + "line": 136, + "column": 14, + "index": 4003 }, { - "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", - "line": 189, - "column": 10, - "index": 7583 + "filePath": "src/taxonomy/import-tags/ImportTagsWizard.jsx", + "line": 195, + "column": 6, + "index": 5641 }, { - "filePath": "src/discussions/posts/post-filter-bar/PostFilterBar.jsx", - "line": 151, - "column": 12, - "index": 5253 + "filePath": "src/taxonomy/import-tags/ImportTagsWizard.jsx", + "line": 227, + "column": 6, + "index": 6671 }, { - "filePath": "src/discussions/posts/PostsList.jsx", - "line": 89, - "column": 10, - "index": 3272 - } - ], - "TransitionReplace": [ - { - "filePath": "src/components/FormikErrorFeedback.jsx", - "line": 14, - "column": 4, - "index": 369 - } - ], - "Dropdown": [ + "filePath": "src/taxonomy/import-tags/ImportTagsWizard.jsx", + "line": 254, + "column": 6, + "index": 7453 + }, { - "filePath": "src/components/NavigationBar/tabs/Tabs.jsx", - "line": 43, - "column": 10, - "index": 1561 - } - ], - "Dropdown.Toggle": [ + "filePath": "src/taxonomy/import-tags/ImportTagsWizard.jsx", + "line": 412, + "column": 8, + "index": 11763 + }, { - "filePath": "src/components/NavigationBar/tabs/Tabs.jsx", - "line": 44, + "filePath": "src/taxonomy/manage-orgs/ManageOrgsModal.jsx", + "line": 174, "column": 12, - "index": 1602 + "index": 4637 } ], - "Dropdown.Menu": [ + "MailtoLink": [ { - "filePath": "src/components/NavigationBar/tabs/Tabs.jsx", - "line": 51, - "column": 12, - "index": 1984 - } - ], - "useWindowSize": [ - { - "filePath": "src/components/NavigationBar/tabs/useIndexOfLastVisibleChild.js", - "line": 38, - "column": 21, - "index": 1679 + "filePath": "src/accessibility-page/AccessibilityBody/AccessibilityBody.jsx", + "line": 43, + "column": 16, + "index": 1230 }, { - "filePath": "src/discussions/data/hooks.js", - "line": 114, - "column": 21, - "index": 3949 + "filePath": "src/accessibility-page/AccessibilityBody/AccessibilityBody.jsx", + "line": 79, + "column": 14, + "index": 2248 }, { - "filePath": "src/discussions/data/hooks.js", - "line": 119, - "column": 21, - "index": 4085 + "filePath": "src/course-team/course-team-member/CourseTeamMember.jsx", + "line": 42, + "column": 8, + "index": 1279 }, { - "filePath": "src/discussions/discussions-home/DiscussionSidebar.jsx", - "line": 38, - "column": 35, - "index": 1656 - } - ], - "IconButton": [ - { - "filePath": "src/components/PostPreviewPanel.jsx", - "line": 24, - "column": 10, - "index": 767 + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/lti/LtiConfigForm.jsx", + "line": 76, + "column": 16, + "index": 3131 }, { - "filePath": "src/discussions/common/ActionsDropdown.jsx", - "line": 63, - "column": 6, - "index": 1687 + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/lti/LtiConfigForm.jsx", + "line": 89, + "column": 16, + "index": 3536 }, { - "filePath": "src/discussions/common/HoverCard.jsx", - "line": 68, - "column": 12, - "index": 2070 + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/AppExternalLinks.jsx", + "line": 50, + "column": 16, + "index": 1468 }, { - "filePath": "src/discussions/common/HoverCard.jsx", - "line": 83, + "filePath": "src/schedule-and-details/basic-section/index.jsx", + "line": 113, "column": 8, - "index": 2586 + "index": 3165 }, { - "filePath": "src/discussions/common/HoverCard.jsx", - "line": 97, - "column": 10, - "index": 2970 + "filePath": "src/studio-home/home-sidebar/index.jsx", + "line": 53, + "column": 16, + "index": 1971 }, { - "filePath": "src/discussions/in-context-topics/components/BackButton.jsx", - "line": 20, - "column": 8, - "index": 538 - }, + "filePath": "src/studio-home/home-sidebar/index.jsx", + "line": 83, + "column": 16, + "index": 2995 + } + ], + "Container": [ { - "filePath": "src/discussions/learners/LearnerPostsView.jsx", - "line": 81, - "column": 8, - "index": 2760 + "filePath": "src/accessibility-page/AccessibilityPage.jsx", + "line": 28, + "column": 6, + "index": 826 }, { - "filePath": "src/discussions/post-comments/PostCommentsView.jsx", - "line": 106, - "column": 10, - "index": 3354 + "filePath": "src/advanced-settings/AdvancedSettings.jsx", + "line": 133, + "column": 6, + "index": 4962 }, { - "filePath": "src/discussions/posts/post-actions-bar/PostActionsBar.jsx", - "line": 72, - "column": 12, - "index": 2795 + "filePath": "src/certificates/layout/MainLayout.jsx", + "line": 25, + "column": 6, + "index": 821 }, { - "filePath": "src/discussions/posts/post/LikeButton.jsx", - "line": 31, - "column": 8, - "index": 832 + "filePath": "src/course-checklist/ChecklistSection/ChecklistSection.jsx", + "line": 25, + "column": 4, + "index": 834 }, { - "filePath": "src/discussions/posts/post/PostFooter.jsx", - "line": 51, - "column": 10, - "index": 1371 - } - ], - "Close": [ - { - "filePath": "src/components/PostPreviewPanel.jsx", - "line": 27, - "column": 17, - "index": 908 + "filePath": "src/course-checklist/CourseChecklist.jsx", + "line": 53, + "column": 6, + "index": 1859 }, { - "filePath": "src/discussions/posts/post-actions-bar/PostActionsBar.jsx", - "line": 73, - "column": 19, - "index": 2826 - } - ], - "Button": [ - { - "filePath": "src/components/PostPreviewPanel.jsx", - "line": 47, - "column": 10, - "index": 1477 + "filePath": "src/course-outline/CourseOutline.jsx", + "line": 241, + "column": 6, + "index": 7427 }, { - "filePath": "src/components/SearchInfo.jsx", - "line": 23, + "filePath": "src/course-rerun/index.jsx", + "line": 46, "column": 6, - "index": 628 + "index": 1264 }, { - "filePath": "src/components/SearchInfo.jsx", - "line": 37, + "filePath": "src/course-team/CourseTeam.jsx", + "line": 65, "column": 6, - "index": 1179 + "index": 1884 }, { - "filePath": "src/components/TinyMCEEditor.jsx", - "line": 167, - "column": 12, - "index": 5771 + "filePath": "src/course-unit/CourseUnit.jsx", + "line": 75, + "column": 6, + "index": 2671 }, { - "filePath": "src/discussions/common/ActionsDropdown.jsx", - "line": 88, - "column": 22, - "index": 2548 + "filePath": "src/course-unit/CourseUnit.jsx", + "line": 83, + "column": 6, + "index": 2815 }, { - "filePath": "src/discussions/common/Confirmation.jsx", - "line": 36, - "column": 10, - "index": 946 + "filePath": "src/course-updates/CourseUpdates.jsx", + "line": 77, + "column": 6, + "index": 2678 }, { - "filePath": "src/discussions/common/HoverCard.jsx", - "line": 44, - "column": 10, - "index": 1293 + "filePath": "src/custom-pages/CustomPages.jsx", + "line": 118, + "column": 6, + "index": 4000 }, { - "filePath": "src/discussions/empty-posts/EmptyPage.jsx", - "line": 29, + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/index.jsx", + "line": 111, "column": 10, - "index": 785 + "index": 3502 }, { - "filePath": "src/discussions/learners/LearnerPostsView.jsx", - "line": 106, - "column": 12, - "index": 3929 + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/HintRow.jsx", + "line": 26, + "column": 4, + "index": 572 }, { - "filePath": "src/discussions/learners/LearnersView.jsx", - "line": 90, - "column": 12, - "index": 3232 + "filePath": "src/editors/containers/ProblemEditor/components/SelectTypeModal/content/Preview.jsx", + "line": 22, + "column": 4, + "index": 499 }, { - "filePath": "src/discussions/post-comments/comments/comment/Comment.jsx", - "line": 248, - "column": 12, - "index": 8942 + "filePath": "src/editors/sharedComponents/ErrorBoundary/ErrorPage.jsx", + "line": 31, + "column": 4, + "index": 951 }, { - "filePath": "src/discussions/post-comments/comments/comment/Comment.jsx", - "line": 269, - "column": 16, - "index": 9782 + "filePath": "src/export-page/CourseExportPage.jsx", + "line": 62, + "column": 6, + "index": 2737 }, { - "filePath": "src/discussions/post-comments/comments/comment/CommentEditor.jsx", - "line": 159, - "column": 12, - "index": 5695 + "filePath": "src/files-and-videos/files-page/FilesPage.jsx", + "line": 182, + "column": 6, + "index": 5436 }, { - "filePath": "src/discussions/post-comments/comments/CommentsSort.jsx", - "line": 46, - "column": 8, - "index": 1342 + "filePath": "src/files-and-videos/videos-page/VideosPage.jsx", + "line": 245, + "column": 6, + "index": 7071 }, { - "filePath": "src/discussions/post-comments/comments/CommentsSort.jsx", - "line": 72, - "column": 18, - "index": 2145 + "filePath": "src/grading-settings/GradingSettings.jsx", + "line": 123, + "column": 6, + "index": 3945 }, { - "filePath": "src/discussions/post-comments/comments/CommentsSort.jsx", - "line": 84, - "column": 18, - "index": 2568 + "filePath": "src/group-configurations/index.jsx", + "line": 59, + "column": 6, + "index": 1895 }, { - "filePath": "src/discussions/post-comments/comments/CommentsView.jsx", + "filePath": "src/import-page/CourseImportPage.jsx", "line": 57, - "column": 8, - "index": 1875 + "column": 6, + "index": 2294 }, { - "filePath": "src/discussions/post-comments/comments/CommentsView.jsx", - "line": 96, - "column": 20, - "index": 3513 + "filePath": "src/pages-and-resources/discussions/app-config-form/AppConfigForm.jsx", + "line": 117, + "column": 4, + "index": 3455 }, { - "filePath": "src/discussions/post-comments/PostCommentsView.jsx", - "line": 93, - "column": 14, - "index": 2857 + "filePath": "src/pages-and-resources/discussions/app-list/AppList.jsx", + "line": 107, + "column": 6, + "index": 3873 }, { - "filePath": "src/discussions/posts/post-actions-bar/PostActionsBar.jsx", - "line": 55, - "column": 10, - "index": 2148 + "filePath": "src/schedule-and-details/index.jsx", + "line": 176, + "column": 6, + "index": 5273 }, { - "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", - "line": 450, - "column": 10, - "index": 16756 + "filePath": "src/taxonomy/delete-dialog/index.jsx", + "line": 41, + "column": 4, + "index": 953 }, { - "filePath": "src/discussions/posts/post/ClosePostReasonModal.jsx", - "line": 84, - "column": 10, - "index": 2572 + "filePath": "src/taxonomy/export-modal/index.jsx", + "line": 29, + "column": 4, + "index": 687 }, { - "filePath": "src/discussions/posts/PostsList.jsx", - "line": 93, - "column": 10, - "index": 3436 - } - ], - "SearchField.Advanced": [ + "filePath": "src/taxonomy/import-tags/ImportTagsWizard.jsx", + "line": 153, + "column": 28, + "index": 4635 + }, { - "filePath": "src/components/Search.jsx", - "line": 73, + "filePath": "src/taxonomy/import-tags/ImportTagsWizard.jsx", + "line": 423, "column": 4, - "index": 2384 + "index": 12103 }, { - "filePath": "src/discussions/in-context-topics/topic-search/TopicSearchBar.jsx", - "line": 38, + "filePath": "src/taxonomy/manage-orgs/ManageOrgsModal.jsx", + "line": 149, "column": 4, - "index": 1081 - } - ], - "SearchField.Label": [ - { - "filePath": "src/components/Search.jsx", - "line": 79, - "column": 6, - "index": 2521 + "index": 3797 }, { - "filePath": "src/discussions/in-context-topics/topic-search/TopicSearchBar.jsx", - "line": 44, - "column": 6, - "index": 1217 - } - ], - "SearchField.Input": [ - { - "filePath": "src/components/Search.jsx", - "line": 80, - "column": 6, - "index": 2549 + "filePath": "src/taxonomy/taxonomy-detail/TaxonomyDetailPage.jsx", + "line": 65, + "column": 8, + "index": 1714 }, { - "filePath": "src/discussions/in-context-topics/topic-search/TopicSearchBar.jsx", - "line": 45, - "column": 6, - "index": 1245 - } - ], - "SearchIcon": [ + "filePath": "src/taxonomy/taxonomy-detail/TaxonomyDetailPage.jsx", + "line": 82, + "column": 8, + "index": 2240 + }, { - "filePath": "src/components/Search.jsx", - "line": 86, - "column": 15, - "index": 2798 + "filePath": "src/taxonomy/TaxonomyListPage.jsx", + "line": 186, + "column": 8, + "index": 5394 }, { - "filePath": "src/discussions/in-context-topics/topic-search/TopicSearchBar.jsx", - "line": 51, - "column": 15, - "index": 1495 - } - ], - "Search": [ + "filePath": "src/taxonomy/TaxonomyListPage.jsx", + "line": 196, + "column": 8, + "index": 5750 + }, { - "filePath": "src/components/SearchInfo.jsx", - "line": 22, - "column": 17, - "index": 553 - } - ], - "AlertModal": [ + "filePath": "src/taxonomy/TaxonomyListPage.jsx", + "line": 232, + "column": 12, + "index": 6816 + }, { - "filePath": "src/components/TinyMCEEditor.jsx", - "line": 160, + "filePath": "src/textbooks/Textbooks.jsx", + "line": 71, "column": 6, - "index": 5552 + "index": 2152 } ], - "ActionRow": [ + "CheckCircle": [ { - "filePath": "src/components/TinyMCEEditor.jsx", - "line": 166, - "column": 10, - "index": 5747 + "filePath": "src/advanced-settings/AdvancedSettings.jsx", + "line": 150, + "column": 22, + "index": 5733 }, { - "filePath": "src/discussions/common/Confirmation.jsx", - "line": 32, - "column": 8, - "index": 760 + "filePath": "src/course-checklist/ChecklistSection/ChecklistItemBody.jsx", + "line": 47, + "column": 17, + "index": 1914 }, { - "filePath": "src/discussions/posts/post/ClosePostReasonModal.jsx", - "line": 80, - "column": 8, - "index": 2388 + "filePath": "src/grading-settings/assignment-section/index.jsx", + "line": 178, + "column": 22, + "index": 7188 + }, + { + "filePath": "src/grading-settings/GradingSettings.jsx", + "line": 128, + "column": 18, + "index": 4131 } ], - "OverlayTrigger": [ + "Layout": [ { - "filePath": "src/components/TopicStats.jsx", - "line": 29, - "column": 6, - "index": 971 + "filePath": "src/advanced-settings/AdvancedSettings.jsx", + "line": 161, + "column": 10, + "index": 6257 }, { - "filePath": "src/components/TopicStats.jsx", - "line": 47, - "column": 6, - "index": 1582 + "filePath": "src/certificates/layout/MainLayout.jsx", + "line": 34, + "column": 10, + "index": 1176 }, { - "filePath": "src/components/TopicStats.jsx", - "line": 66, - "column": 8, - "index": 2226 + "filePath": "src/course-outline/CourseOutline.jsx", + "line": 287, + "column": 10, + "index": 9595 }, { - "filePath": "src/discussions/common/AuthorLabel.jsx", + "filePath": "src/course-rerun/index.jsx", "line": 66, - "column": 6, - "index": 2076 - }, - { - "filePath": "src/discussions/common/HoverCard.jsx", - "line": 60, "column": 10, - "index": 1818 - }, - { - "filePath": "src/discussions/learners/learner/LearnerFooter.jsx", - "line": 24, - "column": 6, - "index": 998 + "index": 2039 }, { - "filePath": "src/discussions/learners/learner/LearnerFooter.jsx", - "line": 40, - "column": 6, - "index": 1557 + "filePath": "src/course-team/CourseTeam.jsx", + "line": 67, + "column": 10, + "index": 2002 }, { - "filePath": "src/discussions/learners/learner/LearnerFooter.jsx", - "line": 57, - "column": 8, - "index": 2118 + "filePath": "src/course-unit/CourseUnit.jsx", + "line": 112, + "column": 10, + "index": 3821 }, { - "filePath": "src/discussions/posts/post/LikeButton.jsx", - "line": 24, - "column": 6, - "index": 621 + "filePath": "src/course-updates/CourseUpdates.jsx", + "line": 127, + "column": 10, + "index": 4725 }, { - "filePath": "src/discussions/posts/post/PostFooter.jsx", - "line": 44, + "filePath": "src/custom-pages/CustomPages.jsx", + "line": 157, "column": 8, - "index": 1144 + "index": 5312 }, { - "filePath": "src/discussions/posts/post/PostFooter.jsx", - "line": 67, + "filePath": "src/export-page/CourseExportPage.jsx", + "line": 64, "column": 10, - "index": 1967 + "index": 2847 }, { - "filePath": "src/discussions/posts/post/PostFooter.jsx", - "line": 85, - "column": 10, - "index": 2464 + "filePath": "src/export-page/export-footer/ExportFooter.jsx", + "line": 12, + "column": 4, + "index": 256 }, { - "filePath": "src/discussions/posts/post/PostSummaryFooter.jsx", - "line": 40, - "column": 8, - "index": 1137 + "filePath": "src/grading-settings/GradingSettings.jsx", + "line": 137, + "column": 12, + "index": 4516 }, { - "filePath": "src/discussions/posts/post/PostSummaryFooter.jsx", - "line": 56, - "column": 6, - "index": 1763 + "filePath": "src/group-configurations/index.jsx", + "line": 65, + "column": 8, + "index": 2142 }, { - "filePath": "src/discussions/posts/post/PostSummaryFooter.jsx", - "line": 72, + "filePath": "src/import-page/CourseImportPage.jsx", + "line": 59, "column": 10, - "index": 2448 + "index": 2404 }, { - "filePath": "src/discussions/posts/post/PostSummaryFooter.jsx", - "line": 96, + "filePath": "src/schedule-and-details/index.jsx", + "line": 227, "column": 10, - "index": 3410 + "index": 7104 }, { - "filePath": "src/discussions/topics/topic-group/topic/Topic.jsx", - "line": 61, - "column": 12, - "index": 2647 + "filePath": "src/studio-home/verify-email-layout/index.jsx", + "line": 14, + "column": 4, + "index": 424 }, { - "filePath": "src/discussions/topics/topic-group/topic/Topic.jsx", - "line": 79, - "column": 12, - "index": 3378 + "filePath": "src/taxonomy/taxonomy-detail/TaxonomyDetailPage.jsx", + "line": 83, + "column": 10, + "index": 2272 }, { - "filePath": "src/discussions/topics/topic-group/topic/Topic.jsx", - "line": 98, - "column": 14, - "index": 4146 + "filePath": "src/textbooks/Textbooks.jsx", + "line": 92, + "column": 10, + "index": 2862 } ], - "Tooltip": [ + "Layout.Element": [ { - "filePath": "src/components/TopicStats.jsx", - "line": 33, - "column": 10, - "index": 1078 + "filePath": "src/advanced-settings/AdvancedSettings.jsx", + "line": 168, + "column": 12, + "index": 6509 }, { - "filePath": "src/components/TopicStats.jsx", - "line": 51, - "column": 10, - "index": 1687 + "filePath": "src/advanced-settings/AdvancedSettings.jsx", + "line": 226, + "column": 12, + "index": 9407 }, { - "filePath": "src/components/TopicStats.jsx", - "line": 70, + "filePath": "src/certificates/layout/MainLayout.jsx", + "line": 41, "column": 12, - "index": 2339 + "index": 1428 }, { - "filePath": "src/discussions/common/AuthorLabel.jsx", - "line": 68, - "column": 10, - "index": 2121 + "filePath": "src/certificates/layout/MainLayout.jsx", + "line": 46, + "column": 12, + "index": 1575 }, { - "filePath": "src/discussions/common/HoverCard.jsx", - "line": 62, - "column": 14, - "index": 1871 + "filePath": "src/course-outline/CourseOutline.jsx", + "line": 294, + "column": 12, + "index": 9851 }, { - "filePath": "src/discussions/learners/learner/LearnerFooter.jsx", - "line": 28, - "column": 10, - "index": 1114 + "filePath": "src/course-outline/CourseOutline.jsx", + "line": 437, + "column": 12, + "index": 18590 }, { - "filePath": "src/discussions/learners/learner/LearnerFooter.jsx", - "line": 44, - "column": 10, - "index": 1669 + "filePath": "src/course-rerun/index.jsx", + "line": 73, + "column": 12, + "index": 2291 }, { - "filePath": "src/discussions/learners/learner/LearnerFooter.jsx", - "line": 61, + "filePath": "src/course-rerun/index.jsx", + "line": 79, "column": 12, - "index": 2238 + "index": 2508 }, { - "filePath": "src/discussions/posts/post/LikeButton.jsx", - "line": 26, - "column": 10, - "index": 666 + "filePath": "src/course-team/CourseTeam.jsx", + "line": 74, + "column": 12, + "index": 2254 }, { - "filePath": "src/discussions/posts/post/PostFooter.jsx", - "line": 46, + "filePath": "src/course-team/CourseTeam.jsx", + "line": 142, "column": 12, - "index": 1193 + "index": 5209 }, { - "filePath": "src/discussions/posts/post/PostFooter.jsx", - "line": 69, - "column": 14, - "index": 2020 + "filePath": "src/course-unit/CourseUnit.jsx", + "line": 119, + "column": 12, + "index": 4073 }, { - "filePath": "src/discussions/posts/post/PostFooter.jsx", - "line": 87, - "column": 14, - "index": 2517 + "filePath": "src/course-unit/CourseUnit.jsx", + "line": 151, + "column": 12, + "index": 5327 }, { - "filePath": "src/discussions/posts/post/PostSummaryFooter.jsx", - "line": 42, + "filePath": "src/course-updates/CourseUpdates.jsx", + "line": 134, "column": 12, - "index": 1186 + "index": 4917 }, { - "filePath": "src/discussions/posts/post/PostSummaryFooter.jsx", - "line": 58, + "filePath": "src/custom-pages/CustomPages.jsx", + "line": 164, "column": 10, - "index": 1808 + "index": 5660 }, { - "filePath": "src/discussions/posts/post/PostSummaryFooter.jsx", - "line": 74, - "column": 14, - "index": 2501 + "filePath": "src/custom-pages/CustomPages.jsx", + "line": 209, + "column": 10, + "index": 7523 }, { - "filePath": "src/discussions/posts/post/PostSummaryFooter.jsx", - "line": 98, - "column": 14, - "index": 3463 + "filePath": "src/export-page/CourseExportPage.jsx", + "line": 71, + "column": 12, + "index": 3099 }, { - "filePath": "src/discussions/topics/topic-group/topic/Topic.jsx", - "line": 65, - "column": 16, - "index": 2783 + "filePath": "src/export-page/CourseExportPage.jsx", + "line": 102, + "column": 12, + "index": 4507 }, { - "filePath": "src/discussions/topics/topic-group/topic/Topic.jsx", - "line": 83, - "column": 16, - "index": 3512 + "filePath": "src/export-page/export-footer/ExportFooter.jsx", + "line": 19, + "column": 6, + "index": 531 }, { - "filePath": "src/discussions/topics/topic-group/topic/Topic.jsx", - "line": 102, - "column": 18, - "index": 4284 - } - ], - "PostOutline": [ - { - "filePath": "src/components/TopicStats.jsx", - "line": 43, - "column": 21, - "index": 1452 + "filePath": "src/export-page/export-footer/ExportFooter.jsx", + "line": 31, + "column": 6, + "index": 1178 }, { - "filePath": "src/discussions/topics/topic-group/topic/Topic.jsx", - "line": 75, - "column": 27, - "index": 3224 - } - ], - "HelpOutline": [ - { - "filePath": "src/components/TopicStats.jsx", - "line": 61, - "column": 21, - "index": 2055 + "filePath": "src/export-page/export-footer/ExportFooter.jsx", + "line": 32, + "column": 6, + "index": 1203 }, { - "filePath": "src/discussions/topics/topic-group/topic/Topic.jsx", - "line": 93, - "column": 27, - "index": 3945 - } - ], - "Report": [ - { - "filePath": "src/components/TopicStats.jsx", - "line": 87, - "column": 23, - "index": 3012 + "filePath": "src/grading-settings/GradingSettings.jsx", + "line": 144, + "column": 14, + "index": 4782 }, { - "filePath": "src/discussions/common/AlertBanner.jsx", - "line": 43, - "column": 21, - "index": 1422 + "filePath": "src/grading-settings/GradingSettings.jsx", + "line": 221, + "column": 14, + "index": 8671 }, { - "filePath": "src/discussions/topics/topic-group/topic/Topic.jsx", - "line": 119, - "column": 29, - "index": 5060 - } - ], - "useToggle": [ - { - "filePath": "src/discussions/common/ActionsDropdown.jsx", - "line": 30, - "column": 32, - "index": 808 + "filePath": "src/group-configurations/index.jsx", + "line": 72, + "column": 10, + "index": 2380 }, { - "filePath": "src/discussions/post-comments/comments/comment/Comment.jsx", - "line": 56, - "column": 71, - "index": 2321 + "filePath": "src/group-configurations/index.jsx", + "line": 97, + "column": 10, + "index": 3297 }, { - "filePath": "src/discussions/post-comments/comments/comment/Comment.jsx", - "line": 57, - "column": 72, - "index": 2411 + "filePath": "src/import-page/CourseImportPage.jsx", + "line": 66, + "column": 12, + "index": 2656 }, { - "filePath": "src/discussions/post-comments/comments/comment/Reply.jsx", - "line": 32, - "column": 71, - "index": 1449 + "filePath": "src/import-page/CourseImportPage.jsx", + "line": 79, + "column": 12, + "index": 3334 }, { - "filePath": "src/discussions/post-comments/comments/comment/Reply.jsx", - "line": 33, - "column": 72, - "index": 1539 + "filePath": "src/schedule-and-details/index.jsx", + "line": 234, + "column": 12, + "index": 7356 }, { - "filePath": "src/discussions/post-comments/comments/CommentsSort.jsx", - "line": 20, - "column": 32, - "index": 721 + "filePath": "src/schedule-and-details/index.jsx", + "line": 333, + "column": 12, + "index": 11823 }, { - "filePath": "src/discussions/posts/post/Post.jsx", - "line": 45, - "column": 71, - "index": 2211 + "filePath": "src/studio-home/verify-email-layout/index.jsx", + "line": 21, + "column": 6, + "index": 634 }, { - "filePath": "src/discussions/posts/post/Post.jsx", - "line": 46, - "column": 72, - "index": 2301 + "filePath": "src/studio-home/verify-email-layout/index.jsx", + "line": 34, + "column": 6, + "index": 1083 }, { - "filePath": "src/discussions/posts/post/Post.jsx", - "line": 47, - "column": 62, - "index": 2381 - } - ], - "MoreHoriz": [ - { - "filePath": "src/discussions/common/ActionsDropdown.jsx", - "line": 66, - "column": 13, - "index": 1798 - } - ], - "ModalPopup": [ + "filePath": "src/taxonomy/taxonomy-detail/TaxonomyDetailPage.jsx", + "line": 90, + "column": 12, + "index": 2524 + }, { - "filePath": "src/discussions/common/ActionsDropdown.jsx", - "line": 74, - "column": 8, - "index": 2041 + "filePath": "src/taxonomy/taxonomy-detail/TaxonomyDetailPage.jsx", + "line": 93, + "column": 12, + "index": 2638 }, { - "filePath": "src/discussions/post-comments/comments/CommentsSort.jsx", - "line": 61, - "column": 8, - "index": 1778 - } - ], - "Dropdown.Divider": [ + "filePath": "src/textbooks/Textbooks.jsx", + "line": 99, + "column": 12, + "index": 3118 + }, { - "filePath": "src/discussions/common/ActionsDropdown.jsx", - "line": 86, - "column": 62, - "index": 2473 + "filePath": "src/textbooks/Textbooks.jsx", + "line": 129, + "column": 12, + "index": 4497 } ], - "Dropdown.Item": [ + "Warning": [ { - "filePath": "src/discussions/common/ActionsDropdown.jsx", - "line": 87, + "filePath": "src/advanced-settings/AdvancedSettings.jsx", + "line": 264, "column": 16, - "index": 2511 + "index": 10876 }, { - "filePath": "src/discussions/navigation/breadcrumb-menu/BreadcrumbDropdown.jsx", - "line": 28, - "column": 6, - "index": 609 + "filePath": "src/advanced-settings/setting-card/SettingCard.jsx", + "line": 108, + "column": 29, + "index": 3223 }, { - "filePath": "src/discussions/navigation/breadcrumb-menu/BreadcrumbDropdown.jsx", - "line": 38, - "column": 8, - "index": 878 + "filePath": "src/grading-settings/assignment-section/index.jsx", + "line": 143, + "column": 22, + "index": 5558 }, { - "filePath": "src/discussions/post-comments/comments/CommentsSort.jsx", - "line": 70, - "column": 12, - "index": 2045 + "filePath": "src/grading-settings/assignment-section/index.jsx", + "line": 164, + "column": 22, + "index": 6521 }, { - "filePath": "src/discussions/post-comments/comments/CommentsSort.jsx", - "line": 82, - "column": 12, - "index": 2473 - } - ], - "Alert": [ + "filePath": "src/grading-settings/GradingSettings.jsx", + "line": 262, + "column": 16, + "index": 10277 + }, { - "filePath": "src/discussions/common/AlertBanner.jsx", - "line": 43, - "column": 8, - "index": 1409 + "filePath": "src/taxonomy/delete-dialog/index.jsx", + "line": 53, + "column": 23, + "index": 1420 }, { - "filePath": "src/discussions/common/AlertBar.jsx", - "line": 20, - "column": 4, - "index": 380 + "filePath": "src/taxonomy/import-tags/ImportTagsWizard.jsx", + "line": 413, + "column": 21, + "index": 11823 }, { - "filePath": "src/discussions/common/EndorsedAlertBanner.jsx", - "line": 32, - "column": 6, - "index": 1002 + "filePath": "src/taxonomy/manage-orgs/ManageOrgsModal.jsx", + "line": 41, + "column": 12, + "index": 941 } ], - "Institution": [ + "AlertModal": [ { - "filePath": "src/discussions/common/AuthorLabel.jsx", - "line": 35, - "column": 4, - "index": 984 - } - ], - "School": [ + "filePath": "src/advanced-settings/modal-error/ModalError.jsx", + "line": 12, + "column": 2, + "index": 417 + }, { - "filePath": "src/discussions/common/AuthorLabel.jsx", - "line": 40, + "filePath": "src/course-outline/enable-highlights-modal/EnableHighlightsModal.jsx", + "line": 23, "column": 4, - "index": 1125 - } - ], - "ModalDialog": [ + "index": 516 + }, { - "filePath": "src/discussions/common/Confirmation.jsx", - "line": 22, + "filePath": "src/course-team/info-modal/InfoModal.jsx", + "line": 36, "column": 4, - "index": 423 + "index": 734 }, { - "filePath": "src/discussions/posts/post/ClosePostReasonModal.jsx", - "line": 49, + "filePath": "src/course-updates/delete-modal/DeleteModal.jsx", + "line": 16, "column": 4, - "index": 1314 - } - ], - "ModalDialog.Header": [ + "index": 331 + }, { - "filePath": "src/discussions/common/Confirmation.jsx", - "line": 23, + "filePath": "src/custom-pages/CustomPageCard.jsx", + "line": 104, "column": 6, - "index": 528 + "index": 3235 }, { - "filePath": "src/discussions/posts/post/ClosePostReasonModal.jsx", - "line": 56, + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/index.jsx", + "line": 66, "column": 6, - "index": 1498 - } - ], - "ModalDialog.Title": [ - { - "filePath": "src/discussions/common/Confirmation.jsx", - "line": 24, - "column": 8, - "index": 557 + "index": 1894 }, { - "filePath": "src/discussions/posts/post/ClosePostReasonModal.jsx", - "line": 57, - "column": 8, - "index": 1527 - } - ], - "ModalDialog.Body": [ + "filePath": "src/files-and-videos/generic/DeleteConfirmationModal.jsx", + "line": 59, + "column": 4, + "index": 1651 + }, { - "filePath": "src/discussions/common/Confirmation.jsx", - "line": 28, - "column": 6, - "index": 658 + "filePath": "src/generic/delete-modal/DeleteModal.jsx", + "line": 32, + "column": 4, + "index": 788 }, { - "filePath": "src/discussions/posts/post/ClosePostReasonModal.jsx", - "line": 61, - "column": 6, - "index": 1671 - } - ], - "ModalDialog.Footer": [ + "filePath": "src/generic/modal-notification/index.jsx", + "line": 8, + "column": 2, + "index": 274 + }, { - "filePath": "src/discussions/common/Confirmation.jsx", - "line": 31, + "filePath": "src/pages-and-resources/discussions/app-list/AppList.jsx", + "line": 162, "column": 6, - "index": 731 + "index": 5501 }, { - "filePath": "src/discussions/posts/post/ClosePostReasonModal.jsx", - "line": 79, - "column": 6, - "index": 2359 + "filePath": "src/taxonomy/manage-orgs/ManageOrgsModal.jsx", + "line": 36, + "column": 4, + "index": 783 } ], - "ModalDialog.CloseButton": [ + "Error": [ { - "filePath": "src/discussions/common/Confirmation.jsx", - "line": 33, - "column": 10, - "index": 782 + "filePath": "src/advanced-settings/modal-error/ModalErrorListItem.jsx", + "line": 15, + "column": 21, + "index": 546 }, { - "filePath": "src/discussions/posts/post/ClosePostReasonModal.jsx", - "line": 81, - "column": 10, - "index": 2410 - } - ], - "breakpoints": [ + "filePath": "src/editors/sharedComponents/ErrorAlerts/ErrorAlert.jsx", + "line": 49, + "column": 12, + "index": 1162 + }, { - "filePath": "src/discussions/data/hooks.js", - "line": 115, - "column": 29, - "index": 3995 + "filePath": "src/files-and-videos/generic/InfoModal.jsx", + "line": 63, + "column": 27, + "index": 1677 }, { - "filePath": "src/discussions/data/hooks.js", - "line": 120, - "column": 29, - "index": 4131 - } - ], - "PageBanner": [ + "filePath": "src/studio-home/tabs-section/archived-tab/index.jsx", + "line": 33, + "column": 23, + "index": 884 + }, { - "filePath": "src/discussions/discussions-home/DiscussionsRestrictionBanner.jsx", - "line": 23, - "column": 4, - "index": 732 + "filePath": "src/studio-home/tabs-section/libraries-tab/index.jsx", + "line": 33, + "column": 23, + "index": 875 } ], - "ArrowBack": [ + "useToggle": [ { - "filePath": "src/discussions/in-context-topics/components/BackButton.jsx", - "line": 21, - "column": 15, - "index": 565 + "filePath": "src/advanced-settings/setting-card/SettingCard.jsx", + "line": 33, + "column": 32, + "index": 801 }, { - "filePath": "src/discussions/learners/LearnerPostsView.jsx", - "line": 82, - "column": 15, - "index": 2787 + "filePath": "src/certificates/certificate-details/hooks/useCertificateDetails.jsx", + "line": 13, + "column": 53, + "index": 544 }, { - "filePath": "src/discussions/post-comments/PostCommentsView.jsx", - "line": 96, - "column": 28, - "index": 3041 + "filePath": "src/certificates/certificate-details/hooks/useCertificateDetails.jsx", + "line": 14, + "column": 59, + "index": 621 }, { - "filePath": "src/discussions/post-comments/PostCommentsView.jsx", - "line": 107, - "column": 17, - "index": 3383 - } - ], - "SearchField": [ + "filePath": "src/certificates/certificate-edit-form/hooks/useCertificateEditForm.jsx", + "line": 12, + "column": 53, + "index": 546 + }, { - "filePath": "src/discussions/in-context-topics/topic-search/TopicSearchResultBar.jsx", - "line": 16, - "column": 6, - "index": 418 - } - ], - "Avatar": [ + "filePath": "src/certificates/certificate-signatories/signatory/SignatoryForm.jsx", + "line": 32, + "column": 32, + "index": 989 + }, { - "filePath": "src/discussions/learners/learner/LearnerAvatar.jsx", - "line": 8, - "column": 4, - "index": 180 + "filePath": "src/certificates/certificate-signatories/signatory/SignatoryForm.jsx", + "line": 33, + "column": 53, + "index": 1060 }, { - "filePath": "src/discussions/post-comments/comments/comment/CommentHeader.jsx", - "line": 34, - "column": 8, - "index": 801 + "filePath": "src/course-outline/card-header/CardHeader.jsx", + "line": 62, + "column": 80, + "index": 1602 }, { - "filePath": "src/discussions/post-comments/comments/comment/Reply.jsx", - "line": 103, - "column": 12, - "index": 3967 + "filePath": "src/course-outline/hooks.jsx", + "line": 89, + "column": 95, + "index": 2936 }, { - "filePath": "src/discussions/post-comments/comments/comment/Reply.jsx", - "line": 121, - "column": 10, - "index": 4490 + "filePath": "src/course-outline/hooks.jsx", + "line": 93, + "column": 77, + "index": 3244 }, { - "filePath": "src/discussions/posts/post/PostHeader.jsx", + "filePath": "src/course-outline/hooks.jsx", + "line": 94, + "column": 68, + "index": 3330 + }, + { + "filePath": "src/course-outline/hooks.jsx", + "line": 95, + "column": 74, + "index": 3422 + }, + { + "filePath": "src/course-outline/hooks.jsx", + "line": 96, + "column": 65, + "index": 3505 + }, + { + "filePath": "src/course-outline/section-card/SectionCard.jsx", + "line": 75, + "column": 44, + "index": 2556 + }, + { + "filePath": "src/course-outline/status-bar/StatusBar.jsx", + "line": 78, + "column": 80, + "index": 2533 + }, + { + "filePath": "src/course-outline/subsection-card/SubsectionCard.jsx", "line": 50, - "column": 6, - "index": 1561 - } - ], - "Check": [ + "column": 44, + "index": 1764 + }, { - "filePath": "src/discussions/learners/learner/LearnerFilterBar.jsx", - "line": 33, - "column": 15, - "index": 1185 + "filePath": "src/course-outline/unit-card/UnitCard.jsx", + "line": 41, + "column": 44, + "index": 1320 }, { - "filePath": "src/discussions/posts/post-filter-bar/PostFilterBar.jsx", - "line": 47, - "column": 15, - "index": 1647 - } - ], - "Form.Radio": [ + "filePath": "src/course-team/hooks.jsx", + "line": 32, + "column": 59, + "index": 1079 + }, { - "filePath": "src/discussions/learners/learner/LearnerFilterBar.jsx", - "line": 34, - "column": 4, - "index": 1278 + "filePath": "src/course-team/hooks.jsx", + "line": 33, + "column": 46, + "index": 1143 }, { - "filePath": "src/discussions/posts/post-editor/PostTypeCard.jsx", - "line": 20, - "column": 6, - "index": 534 + "filePath": "src/course-unit/add-component/AddComponent.jsx", + "line": 16, + "column": 56, + "index": 718 }, { - "filePath": "src/discussions/posts/post-filter-bar/PostFilterBar.jsx", - "line": 48, - "column": 4, - "index": 1740 - } - ], - "Edit": [ + "filePath": "src/course-unit/add-component/AddComponent.jsx", + "line": 17, + "column": 44, + "index": 780 + }, { - "filePath": "src/discussions/learners/learner/LearnerFooter.jsx", - "line": 52, - "column": 21, - "index": 1962 - } - ], - "DropdownButton": [ + "filePath": "src/course-unit/add-component/AddComponent.jsx", + "line": 18, + "column": 74, + "index": 872 + }, { - "filePath": "src/discussions/navigation/breadcrumb-menu/BreadcrumbDropdown.jsx", + "filePath": "src/course-unit/header-title/HeaderTitle.jsx", + "line": 27, + "column": 74, + "index": 965 + }, + { + "filePath": "src/course-unit/sidebar/PublishControls.jsx", "line": 24, - "column": 4, - "index": 502 - } - ], - "Nav": [ + "column": 68, + "index": 944 + }, { - "filePath": "src/discussions/navigation/navigation-bar/NavigationBar.jsx", - "line": 46, - "column": 4, - "index": 1272 - } - ], - "Nav.Item": [ + "filePath": "src/course-unit/sidebar/PublishControls.jsx", + "line": 25, + "column": 68, + "index": 1030 + }, { - "filePath": "src/discussions/navigation/navigation-bar/NavigationBar.jsx", - "line": 48, - "column": 8, - "index": 1366 - } - ], - "Nav.Link": [ + "filePath": "src/course-updates/hooks.jsx", + "line": 24, + "column": 62, + "index": 882 + }, { - "filePath": "src/discussions/navigation/navigation-bar/NavigationBar.jsx", - "line": 49, - "column": 10, - "index": 1404 - } - ], - "Form.Group": [ + "filePath": "src/course-updates/hooks.jsx", + "line": 25, + "column": 65, + "index": 965 + }, { - "filePath": "src/discussions/post-comments/comments/comment/CommentEditor.jsx", - "line": 109, - "column": 12, - "index": 3861 + "filePath": "src/custom-pages/CustomPageCard.jsx", + "line": 33, + "column": 86, + "index": 835 }, { - "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", - "line": 272, - "column": 10, - "index": 10007 + "filePath": "src/custom-pages/CustomPages.jsx", + "line": 55, + "column": 32, + "index": 1800 }, { - "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", - "line": 334, - "column": 10, - "index": 12601 + "filePath": "src/files-and-videos/files-page/FileValidationModal.jsx", + "line": 20, + "column": 32, + "index": 482 }, { - "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", - "line": 354, - "column": 10, - "index": 13406 + "filePath": "src/files-and-videos/generic/FileTable.jsx", + "line": 57, + "column": 56, + "index": 1324 }, { - "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", - "line": 374, - "column": 10, - "index": 14044 + "filePath": "src/files-and-videos/generic/FileTable.jsx", + "line": 58, + "column": 62, + "index": 1404 }, { - "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", - "line": 419, - "column": 12, - "index": 15733 + "filePath": "src/files-and-videos/generic/FileTable.jsx", + "line": 59, + "column": 59, + "index": 1481 }, { - "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", - "line": 433, - "column": 12, - "index": 16213 + "filePath": "src/files-and-videos/generic/FileTable.jsx", + "line": 60, + "column": 47, + "index": 1546 }, { - "filePath": "src/discussions/posts/post/ClosePostReasonModal.jsx", - "line": 63, - "column": 8, - "index": 1778 - } - ], - "Form.Control": [ + "filePath": "src/files-and-videos/generic/FileTable.jsx", + "line": 62, + "column": 86, + "index": 1706 + }, { - "filePath": "src/discussions/post-comments/comments/comment/CommentEditor.jsx", - "line": 115, - "column": 14, - "index": 4034 + "filePath": "src/files-and-videos/generic/table-components/table-custom-columns/MoreInfoColumn.jsx", + "line": 27, + "column": 36, + "index": 559 }, { - "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", - "line": 273, - "column": 12, - "index": 10054 + "filePath": "src/files-and-videos/generic/table-components/TableActions.jsx", + "line": 28, + "column": 44, + "index": 756 }, { - "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", - "line": 335, - "column": 12, - "index": 12654 + "filePath": "src/files-and-videos/videos-page/info-sidebar/transcript-item/LanguageSelect.jsx", + "line": 24, + "column": 36, + "index": 511 }, { - "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", - "line": 361, - "column": 12, - "index": 13592 + "filePath": "src/files-and-videos/videos-page/info-sidebar/transcript-item/Transcript.jsx", + "line": 26, + "column": 68, + "index": 732 }, { - "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", - "line": 381, - "column": 12, - "index": 14245 + "filePath": "src/files-and-videos/videos-page/info-sidebar/transcript-item/TranscriptMenu.jsx", + "line": 23, + "column": 36, + "index": 509 }, { - "filePath": "src/discussions/posts/post/ClosePostReasonModal.jsx", - "line": 64, - "column": 10, - "index": 1801 - } - ], - "StatefulButton": [ + "filePath": "src/files-and-videos/videos-page/VideosPage.jsx", + "line": 61, + "column": 6, + "index": 1593 + }, { - "filePath": "src/discussions/post-comments/comments/comment/CommentEditor.jsx", - "line": 165, - "column": 12, - "index": 5902 + "filePath": "src/files-and-videos/videos-page/VideosPage.jsx", + "line": 66, + "column": 6, + "index": 1699 }, { - "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", - "line": 456, - "column": 10, - "index": 16944 - } - ], - "Post": [ + "filePath": "src/group-configurations/content-groups-section/ContentGroupCard.jsx", + "line": 35, + "column": 60, + "index": 1013 + }, { - "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", - "line": 262, - "column": 18, - "index": 9667 - } - ], - "Help": [ + "filePath": "src/group-configurations/content-groups-section/ContentGroupCard.jsx", + "line": 36, + "column": 65, + "index": 1096 + }, { - "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", - "line": 268, - "column": 18, - "index": 9876 - } - ], - "Form.Checkbox": [ + "filePath": "src/group-configurations/content-groups-section/index.jsx", + "line": 18, + "column": 58, + "index": 681 + }, { - "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", - "line": 420, - "column": 14, - "index": 15760 + "filePath": "src/group-configurations/experiment-configurations-section/ExperimentCard.jsx", + "line": 35, + "column": 60, + "index": 1129 }, { - "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", - "line": 434, - "column": 14, - "index": 16240 - } - ], - "Card": [ + "filePath": "src/group-configurations/experiment-configurations-section/ExperimentCard.jsx", + "line": 36, + "column": 65, + "index": 1212 + }, { - "filePath": "src/discussions/posts/post-editor/PostTypeCard.jsx", - "line": 21, + "filePath": "src/group-configurations/experiment-configurations-section/index.jsx", + "line": 23, "column": 6, - "index": 632 - } - ], - "Card.Section": [ + "index": 756 + }, { - "filePath": "src/discussions/posts/post-editor/PostTypeCard.jsx", - "line": 28, - "column": 8, - "index": 902 - } - ], - "Hyperlink": [ + "filePath": "src/taxonomy/import-tags/ImportTagsWizard.jsx", + "line": 295, + "column": 58, + "index": 8439 + }, { - "filePath": "src/discussions/posts/post/Post.jsx", - "line": 200, - "column": 10, - "index": 8025 - } - ], - "People": [ + "filePath": "src/taxonomy/manage-orgs/ManageOrgsModal.jsx", + "line": 78, + "column": 68, + "index": 1995 + }, { - "filePath": "src/discussions/posts/post/PostFooter.jsx", - "line": 74, - "column": 21, - "index": 2196 - } - ], - "Locked": [ + "filePath": "src/taxonomy/manage-orgs/ManageOrgsModal.jsx", + "line": 80, + "column": 58, + "index": 2072 + }, { - "filePath": "src/discussions/posts/post/PostFooter.jsx", - "line": 93, - "column": 19, - "index": 2702 - } - ], - "Badge": [ + "filePath": "src/taxonomy/taxonomy-menu/TaxonomyMenu.jsx", + "line": 57, + "column": 68, + "index": 1864 + }, { - "filePath": "src/discussions/posts/post/PostHeader.jsx", - "line": 113, - "column": 21, - "index": 3404 + "filePath": "src/taxonomy/taxonomy-menu/TaxonomyMenu.jsx", + "line": 58, + "column": 65, + "index": 1947 }, { - "filePath": "src/discussions/posts/post/PostLink.jsx", - "line": 113, - "column": 16, - "index": 4210 + "filePath": "src/taxonomy/taxonomy-menu/TaxonomyMenu.jsx", + "line": 59, + "column": 65, + "index": 2030 }, { - "filePath": "src/discussions/posts/post/PostSummaryFooter.jsx", - "line": 90, - "column": 8, - "index": 3119 - } - ], - "CheckCircle": [ + "filePath": "src/taxonomy/taxonomy-menu/TaxonomyMenu.jsx", + "line": 60, + "column": 77, + "index": 2125 + }, { - "filePath": "src/discussions/posts/post/PostLink.jsx", - "line": 106, - "column": 23, - "index": 3936 - } - ], - "ProductTour": [ + "filePath": "src/taxonomy/TaxonomyListPage.jsx", + "line": 37, + "column": 65, + "index": 992 + }, { - "filePath": "src/discussions/tours/DiscussionsProductTour.jsx", - "line": 23, - "column": 8, - "index": 580 - } - ] - } - }, - { - "version": "20.46.2", - "name": "@edx/frontend-app-ecommerce", - "repository": { - "type": "git", - "url": "git+https://github.com/openedx/frontend-app-ecommerce.git" - }, - "folderName": "frontend-app-ecommerce", - "usages": { - "AlertModal": [ + "filePath": "src/textbooks/hooks.jsx", + "line": 33, + "column": 68, + "index": 1075 + }, { - "filePath": "src/components/BasicAlert.jsx", - "line": 32, - "column": 4, - "index": 791 - } - ], - "Info": [ + "filePath": "src/textbooks/textbook-card/TextbooksCard.jsx", + "line": 41, + "column": 68, + "index": 1227 + }, { - "filePath": "src/components/BasicAlert.jsx", - "line": 36, - "column": 12, - "index": 890 + "filePath": "src/textbooks/textbook-card/TextbooksCard.jsx", + "line": 42, + "column": 65, + "index": 1310 }, { - "filePath": "src/components/BasicAlert.jsx", - "line": 53, - "column": 12, - "index": 1247 + "filePath": "src/textbooks/textbook-form/TextbookForm.jsx", + "line": 41, + "column": 65, + "index": 1234 } ], - "ActionRow": [ + "Card": [ { - "filePath": "src/components/BasicAlert.jsx", - "line": 40, - "column": 8, - "index": 973 - } - ], - "Button": [ + "filePath": "src/advanced-settings/setting-card/SettingCard.jsx", + "line": 60, + "column": 6, + "index": 1468 + }, { - "filePath": "src/components/BasicAlert.jsx", - "line": 41, + "filePath": "src/certificates/certificate-create-form/CertificateCreateForm.jsx", + "line": 24, "column": 10, - "index": 995 + "index": 1006 }, { - "filePath": "src/subscriptions/ManageSubscriptionsPage.jsx", - "line": 71, - "column": 8, - "index": 2706 + "filePath": "src/certificates/certificate-edit-form/CertificateEditForm.jsx", + "line": 36, + "column": 16, + "index": 1331 }, { - "filePath": "src/subscriptions/SubscriptionUpsell.jsx", - "line": 13, - "column": 6, - "index": 388 - } - ], - "Alert": [ + "filePath": "src/certificates/certificate-without-modes/CertificateWithoutModes.jsx", + "line": 9, + "column": 4, + "index": 215 + }, { - "filePath": "src/components/BasicAlert.jsx", - "line": 50, + "filePath": "src/certificates/certificates-list/CertificatesList.jsx", + "line": 29, + "column": 14, + "index": 962 + }, + { + "filePath": "src/certificates/empty-certificates-with-modes/EmptyCertificatesWithModes.jsx", + "line": 19, "column": 4, - "index": 1173 + "index": 546 }, { - "filePath": "src/subscriptions/SubscriptionUpsell.jsx", - "line": 9, + "filePath": "src/course-unit/sidebar/index.jsx", + "line": 6, "column": 2, - "index": 285 - } - ], - "Alert.Heading": [ + "index": 174 + }, { - "filePath": "src/components/BasicAlert.jsx", - "line": 56, - "column": 6, - "index": 1288 + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/SwitchToAdvancedEditorCard.jsx", + "line": 22, + "column": 4, + "index": 819 }, { - "filePath": "src/subscriptions/SubscriptionUpsell.jsx", - "line": 29, + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/SettingsOption.jsx", + "line": 20, "column": 4, - "index": 871 - } - ], - "Hyperlink": [ + "index": 562 + }, { - "filePath": "src/components/SupportLink.jsx", - "line": 7, - "column": 2, - "index": 216 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/Transcript.jsx", + "line": 58, + "column": 10, + "index": 1699 }, { - "filePath": "src/order-history/OrderHistoryPage.jsx", - "line": 48, + "filePath": "src/export-page/CourseExportPage.jsx", + "line": 79, + "column": 16, + "index": 3566 + }, + { + "filePath": "src/files-and-videos/generic/table-components/GalleryCard.jsx", + "line": 30, + "column": 4, + "index": 590 + }, + { + "filePath": "src/files-and-videos/videos-page/info-sidebar/transcript-item/Transcript.jsx", + "line": 57, "column": 8, - "index": 1330 + "index": 1357 }, { - "filePath": "src/subscriptions/SubscriptionCardsView.jsx", - "line": 38, - "column": 6, - "index": 1044 - } - ], - "Pagination": [ + "filePath": "src/generic/ConfirmationPopup.jsx", + "line": 17, + "column": 2, + "index": 308 + }, { - "filePath": "src/order-history/OrderHistoryPage.jsx", - "line": 65, + "filePath": "src/generic/course-upload-image/index.jsx", + "line": 110, "column": 6, - "index": 1682 - } - ], - "DataTable": [ + "index": 2904 + }, { - "filePath": "src/order-history/OrderHistoryPage.jsx", - "line": 89, - "column": 6, - "index": 2221 - } - ], - "DataTable.Table": [ + "filePath": "src/generic/modal-dropzone/ModalDropzone.jsx", + "line": 96, + "column": 10, + "index": 2160 + }, { - "filePath": "src/order-history/OrderHistoryPage.jsx", - "line": 115, - "column": 8, - "index": 3209 - } - ], - "Card": [ + "filePath": "src/import-page/file-section/FileSection.jsx", + "line": 26, + "column": 4, + "index": 883 + }, { - "filePath": "src/subscriptions/SubscriptionCardsView.jsx", - "line": 43, - "column": 8, - "index": 1163 - } - ], - "Badge": [ + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/lti/LtiConfigForm.jsx", + "line": 67, + "column": 4, + "index": 2763 + }, { - "filePath": "src/subscriptions/SubscriptionCardsView.jsx", - "line": 46, + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/openedx/OpenedXConfigForm.jsx", + "line": 121, "column": 12, - "index": 1378 + "index": 5473 }, { - "filePath": "src/subscriptions/SubscriptionUpsell.jsx", - "line": 33, - "column": 6, - "index": 983 - } - ], - "SpinnerSimple": [ + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-topics/TopicItem.jsx", + "line": 73, + "column": 4, + "index": 1858 + }, { - "filePath": "src/subscriptions/Subscriptions.jsx", - "line": 58, - "column": 32, - "index": 1934 - } - ], - "StatefulButton": [ + "filePath": "src/pages-and-resources/discussions/app-list/AppCard.jsx", + "line": 23, + "column": 4, + "index": 766 + }, { - "filePath": "src/subscriptions/Subscriptions.jsx", - "line": 83, - "column": 8, - "index": 2789 - } - ] - } - }, - { - "version": "20.46.3", - "name": "@edx/frontend-app-enterprise-public-catalog", - "repository": { - "type": "git", - "url": "git+https://github.com/openedx/frontend-app-enterprise-public-catalog.git" - }, - "folderName": "frontend-app-enterprise-public-catalog", - "usages": { - "ModalDialog": [ + "filePath": "src/pages-and-resources/pages/PageCard.jsx", + "line": 36, + "column": 4, + "index": 980 + }, { - "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", - "line": 50, + "filePath": "src/schedule-and-details/basic-section/index.jsx", + "line": 95, + "column": 4, + "index": 2637 + }, + { + "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", + "line": 17, + "column": 4, + "index": 463 + }, + { + "filePath": "src/schedule-and-details/introducing-section/introduction-video/index.jsx", + "line": 18, "column": 6, - "index": 1175 + "index": 551 }, { - "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", - "line": 219, + "filePath": "src/schedule-and-details/requirements-section/entrance-exam/index.jsx", + "line": 31, "column": 6, - "index": 6515 - } - ], - "ModalDialog.Body": [ + "index": 946 + }, { - "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", - "line": 59, + "filePath": "src/studio-home/processing-courses/course-item/index.jsx", + "line": 32, "column": 8, - "index": 1397 + "index": 801 }, { - "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", - "line": 228, + "filePath": "src/studio-home/processing-courses/course-item/index.jsx", + "line": 59, "column": 8, - "index": 6738 - } - ], - "ModalDialog.Hero": [ + "index": 1759 + }, { - "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", - "line": 60, + "filePath": "src/studio-home/tabs-section/courses-tab/contact-administrator/index.jsx", + "line": 17, + "column": 4, + "index": 584 + }, + { + "filePath": "src/studio-home/verify-email-layout/index.jsx", + "line": 24, "column": 10, - "index": 1452 + "index": 756 }, { - "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", - "line": 229, + "filePath": "src/taxonomy/taxonomy-card/index.jsx", + "line": 107, + "column": 4, + "index": 2501 + }, + { + "filePath": "src/taxonomy/taxonomy-detail/TaxonomyDetailSideCard.jsx", + "line": 12, + "column": 4, + "index": 264 + }, + { + "filePath": "src/textbooks/textbook-card/TextbooksCard.jsx", + "line": 73, "column": 10, - "index": 6793 + "index": 2179 } ], - "Image": [ + "Card.Body": [ { - "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", - "line": 66, - "column": 10, - "index": 1655 + "filePath": "src/advanced-settings/setting-card/SettingCard.jsx", + "line": 61, + "column": 8, + "index": 1520 }, { - "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", - "line": 172, - "column": 8, - "index": 5426 + "filePath": "src/content-tags-drawer/tags-sidebar-controls/TagsSidebarBody.jsx", + "line": 63, + "column": 6, + "index": 1822 }, { - "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", - "line": 235, + "filePath": "src/course-unit/sidebar/components/SidebarBody.jsx", + "line": 28, + "column": 4, + "index": 691 + }, + { + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/Transcript.jsx", + "line": 60, + "column": 12, + "index": 1833 + }, + { + "filePath": "src/files-and-videos/videos-page/info-sidebar/transcript-item/Transcript.jsx", + "line": 59, "column": 10, - "index": 6996 + "index": 1502 }, { - "filePath": "src/components/hero/Hero.jsx", - "line": 17, - "column": 2, - "index": 674 + "filePath": "src/generic/ConfirmationPopup.jsx", + "line": 23, + "column": 4, + "index": 444 }, { - "filePath": "src/components/hero/Hero.jsx", - "line": 30, - "column": 2, - "index": 953 - } - ], - "ModalDialog.Title": [ + "filePath": "src/generic/course-upload-image/index.jsx", + "line": 111, + "column": 8, + "index": 2919 + }, { - "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", - "line": 73, - "column": 14, - "index": 1869 + "filePath": "src/generic/modal-dropzone/ModalDropzone.jsx", + "line": 97, + "column": 12, + "index": 2179 }, { - "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", - "line": 78, - "column": 14, - "index": 2049 + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-topics/TopicItem.jsx", + "line": 79, + "column": 6, + "index": 2058 }, { - "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", - "line": 242, - "column": 14, - "index": 7211 + "filePath": "src/pages-and-resources/discussions/app-list/AppCard.jsx", + "line": 50, + "column": 6, + "index": 1701 }, { - "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", - "line": 247, - "column": 14, - "index": 7393 - } - ], - "ModalDialog.Footer": [ + "filePath": "src/pages-and-resources/pages/PageCard.jsx", + "line": 52, + "column": 6, + "index": 1441 + }, { - "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", - "line": 110, - "column": 8, - "index": 3257 + "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", + "line": 18, + "column": 6, + "index": 504 }, { - "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", - "line": 289, + "filePath": "src/schedule-and-details/introducing-section/introduction-video/index.jsx", + "line": 19, "column": 8, - "index": 8904 - } - ], - "ActionRow": [ + "index": 566 + }, { - "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", - "line": 111, - "column": 10, - "index": 3288 + "filePath": "src/schedule-and-details/requirements-section/entrance-exam/index.jsx", + "line": 43, + "column": 12, + "index": 1340 }, { - "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", - "line": 290, - "column": 10, - "index": 8935 + "filePath": "src/taxonomy/taxonomy-card/index.jsx", + "line": 126, + "column": 6, + "index": 3003 } ], - "Hyperlink": [ + "Card.Header": [ { - "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", - "line": 113, - "column": 14, - "index": 3345 + "filePath": "src/advanced-settings/setting-card/SettingCard.jsx", + "line": 62, + "column": 10, + "index": 1588 }, { - "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", - "line": 291, + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/Transcript.jsx", + "line": 59, "column": 12, - "index": 8959 - } - ], - "Button": [ - { - "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", - "line": 120, - "column": 16, - "index": 3576 + "index": 1735 }, { - "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", - "line": 298, - "column": 14, - "index": 9176 + "filePath": "src/export-page/CourseExportPage.jsx", + "line": 80, + "column": 18, + "index": 3591 }, { - "filePath": "src/components/catalogSearchResults/associatedComponents/downloadCsvButton/DownloadCsvButton.jsx", - "line": 40, + "filePath": "src/files-and-videos/generic/table-components/GalleryCard.jsx", + "line": 31, "column": 6, - "index": 1235 + "index": 690 }, { - "filePath": "src/components/catalogSearchResults/associatedComponents/titleButton/TitleButton.jsx", - "line": 6, - "column": 2, - "index": 149 + "filePath": "src/files-and-videos/videos-page/info-sidebar/transcript-item/Transcript.jsx", + "line": 58, + "column": 10, + "index": 1391 }, { - "filePath": "src/components/catalogSearchResults/CatalogSearchResults.jsx", - "line": 454, - "column": 12, - "index": 13541 - } - ], - "Icon": [ - { - "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", - "line": 125, - "column": 18, - "index": 3867 + "filePath": "src/generic/ConfirmationPopup.jsx", + "line": 18, + "column": 4, + "index": 349 }, { - "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", - "line": 303, - "column": 16, - "index": 9464 + "filePath": "src/import-page/file-section/FileSection.jsx", + "line": 27, + "column": 6, + "index": 896 }, { - "filePath": "src/components/catalogModalBanner/CatalogCourseModalBanner.jsx", - "line": 52, - "column": 8, - "index": 1402 + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-topics/TopicItem.jsx", + "line": 74, + "column": 6, + "index": 1901 }, { - "filePath": "src/components/catalogModalBanner/CatalogCourseModalBanner.jsx", - "line": 66, - "column": 10, - "index": 1888 + "filePath": "src/pages-and-resources/discussions/app-list/AppCard.jsx", + "line": 33, + "column": 6, + "index": 1059 }, { - "filePath": "src/components/catalogModalBanner/CatalogCourseModalBanner.jsx", - "line": 84, - "column": 10, - "index": 2435 + "filePath": "src/pages-and-resources/pages/PageCard.jsx", + "line": 42, + "column": 6, + "index": 1142 }, { - "filePath": "src/components/catalogModalBanner/CatalogCourseModalBanner.jsx", - "line": 100, - "column": 8, - "index": 2944 + "filePath": "src/schedule-and-details/basic-section/index.jsx", + "line": 96, + "column": 6, + "index": 2650 }, { - "filePath": "src/components/catalogModalBanner/CatalogProgramModalBanner.jsx", - "line": 22, + "filePath": "src/studio-home/processing-courses/course-item/index.jsx", + "line": 33, "column": 10, - "index": 676 + "index": 840 }, { - "filePath": "src/components/catalogModalBanner/CatalogProgramModalBanner.jsx", - "line": 38, + "filePath": "src/studio-home/processing-courses/course-item/index.jsx", + "line": 60, "column": 10, - "index": 1162 + "index": 1798 }, { - "filePath": "src/components/catalogModalBanner/CatalogProgramModalBanner.jsx", - "line": 53, - "column": 8, - "index": 1653 + "filePath": "src/taxonomy/taxonomy-card/index.jsx", + "line": 114, + "column": 6, + "index": 2685 }, { - "filePath": "src/components/programCard/ProgramCard.jsx", - "line": 64, + "filePath": "src/taxonomy/taxonomy-detail/TaxonomyDetailSideCard.jsx", + "line": 13, + "column": 6, + "index": 277 + }, + { + "filePath": "src/textbooks/textbook-card/TextbooksCard.jsx", + "line": 74, "column": 12, - "index": 2002 + "index": 2252 } ], - "Launch": [ + "IconButton": [ { - "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", - "line": 125, - "column": 56, - "index": 3905 + "filePath": "src/advanced-settings/setting-card/SettingCard.jsx", + "line": 67, + "column": 16, + "index": 1736 }, { - "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", - "line": 303, - "column": 54, - "index": 9502 - } - ], - "MoneyOutline": [ + "filePath": "src/content-tags-drawer/TagsTree.jsx", + "line": 30, + "column": 8, + "index": 833 + }, { - "filePath": "src/components/catalogModalBanner/CatalogCourseModalBanner.jsx", - "line": 52, - "column": 36, - "index": 1430 + "filePath": "src/course-outline/card-header/CardHeader.jsx", + "line": 132, + "column": 12, + "index": 3626 }, { - "filePath": "src/components/catalogModalBanner/CatalogProgramModalBanner.jsx", - "line": 22, - "column": 38, - "index": 704 - } - ], - "BookOpen": [ - { - "filePath": "src/components/catalogModalBanner/CatalogCourseModalBanner.jsx", - "line": 66, - "column": 38, - "index": 1916 - }, - { - "filePath": "src/components/catalogModalBanner/CatalogProgramModalBanner.jsx", - "line": 53, - "column": 36, - "index": 1681 - } - ], - "Book": [ - { - "filePath": "src/components/catalogModalBanner/CatalogCourseModalBanner.jsx", - "line": 84, - "column": 38, - "index": 2463 - } - ], - "EventNote": [ - { - "filePath": "src/components/catalogModalBanner/CatalogCourseModalBanner.jsx", - "line": 100, - "column": 36, - "index": 2972 - } - ], - "Assignment": [ - { - "filePath": "src/components/catalogModalBanner/CatalogProgramModalBanner.jsx", - "line": 38, - "column": 38, - "index": 1190 - } - ], - "Alert": [ - { - "filePath": "src/components/catalogNoResultsDeck/CatalogNoResultsDeck.jsx", - "line": 70, - "column": 6, - "index": 1998 + "filePath": "src/course-outline/card-header/CardHeader.jsx", + "line": 153, + "column": 18, + "index": 4610 }, { - "filePath": "src/components/catalogSearchResults/CatalogSearchResults.jsx", - "line": 400, - "column": 6, - "index": 11849 - } - ], - "Alert.Heading": [ - { - "filePath": "src/components/catalogNoResultsDeck/CatalogNoResultsDeck.jsx", + "filePath": "src/course-unit/header-title/HeaderTitle.jsx", "line": 71, "column": 8, - "index": 2081 - } - ], - "Alert.Link": [ + "index": 2563 + }, { - "filePath": "src/components/catalogNoResultsDeck/CatalogNoResultsDeck.jsx", + "filePath": "src/course-unit/header-title/HeaderTitle.jsx", "line": 77, "column": 8, - "index": 2261 - } - ], - "DataTable": [ + "index": 2758 + }, { - "filePath": "src/components/catalogNoResultsDeck/CatalogNoResultsDeck.jsx", - "line": 87, + "filePath": "src/editors/containers/EditorContainer/components/TitleHeader/index.jsx", + "line": 55, "column": 6, - "index": 2568 + "index": 1378 }, { - "filePath": "src/components/catalogSearchResults/CatalogSearchResults.jsx", - "line": 486, - "column": 10, - "index": 14744 - } - ], - "CardView": [ - { - "filePath": "src/components/catalogNoResultsDeck/CatalogNoResultsDeck.jsx", - "line": 100, + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/AnswerWidget/AnswerOption.jsx", + "line": 132, "column": 8, - "index": 3009 + "index": 4246 }, { - "filePath": "src/components/catalogSearchResults/CatalogSearchResults.jsx", - "line": 499, - "column": 14, - "index": 15260 - } - ], - "Badge": [ - { - "filePath": "src/components/catalogSearchResults/associatedComponents/catalogBadges/CatalogBadges.jsx", - "line": 16, + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/GroupFeedback/GroupFeedbackRow.jsx", + "line": 27, "column": 8, - "index": 509 + "index": 674 }, { - "filePath": "src/components/catalogSearchResults/associatedComponents/catalogBadges/CatalogBadges.jsx", - "line": 23, - "column": 8, - "index": 791 + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/HintRow.jsx", + "line": 40, + "column": 6, + "index": 955 }, { - "filePath": "src/components/catalogSearchResults/associatedComponents/catalogBadges/CatalogBadges.jsx", - "line": 31, - "column": 8, - "index": 1147 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/CollapsibleFormWidget.jsx", + "line": 42, + "column": 10, + "index": 1464 }, { - "filePath": "src/components/catalogSearchResults/CatalogSearchResults.jsx", - "line": 444, - "column": 12, - "index": 13269 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/CollapsibleFormWidget.jsx", + "line": 48, + "column": 10, + "index": 1779 }, { - "filePath": "src/components/catalogSelectionDeck/CatalogSelectionDeck.jsx", - "line": 56, - "column": 12, - "index": 2083 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/HandoutWidget/index.jsx", + "line": 74, + "column": 20, + "index": 2318 }, { - "filePath": "src/components/catalogSelectionDeck/CatalogSelectionDeck.jsx", - "line": 68, - "column": 10, - "index": 2823 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/ImportTranscriptCard.jsx", + "line": 27, + "column": 6, + "index": 683 }, { - "filePath": "src/components/catalogSelectionDeck/CatalogSelectionDeck.jsx", - "line": 81, - "column": 10, - "index": 3616 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/Transcript.jsx", + "line": 91, + "column": 14, + "index": 2909 }, { - "filePath": "src/components/courseCard/CourseCard.jsx", - "line": 68, + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/TranscriptActionMenu.jsx", + "line": 44, "column": 12, - "index": 2155 + "index": 1601 }, { - "filePath": "src/components/courseCard/CourseCard.jsx", - "line": 75, - "column": 12, - "index": 2448 + "filePath": "src/editors/containers/VideoUploadEditor/VideoUploader.jsx", + "line": 40, + "column": 14, + "index": 1811 }, { - "filePath": "src/components/courseCard/CourseCard.jsx", - "line": 86, - "column": 12, - "index": 2852 + "filePath": "src/editors/containers/VideoUploadEditor/VideoUploader.jsx", + "line": 77, + "column": 8, + "index": 2878 }, { - "filePath": "src/components/programCard/ProgramCard.jsx", - "line": 60, - "column": 10, - "index": 1867 + "filePath": "src/editors/sharedComponents/ImageUploadModal/ImageSettingsModal/DimensionControls.jsx", + "line": 57, + "column": 6, + "index": 1632 }, { - "filePath": "src/components/programCard/ProgramCard.jsx", - "line": 73, - "column": 12, - "index": 2300 + "filePath": "src/editors/sharedComponents/SelectionModal/SearchSort.jsx", + "line": 43, + "column": 16, + "index": 998 }, { - "filePath": "src/components/programCard/ProgramCard.jsx", - "line": 78, - "column": 12, - "index": 2523 + "filePath": "src/editors/sharedComponents/TypeaheadDropdown/index.jsx", + "line": 158, + "column": 6, + "index": 4142 }, { - "filePath": "src/components/programCard/ProgramCard.jsx", - "line": 84, - "column": 11, - "index": 2782 - } - ], - "useToggle": [ - { - "filePath": "src/components/catalogSearchResults/associatedComponents/downloadCsvButton/DownloadCsvButton.jsx", - "line": 10, - "column": 32, - "index": 364 - } - ], - "Toast": [ + "filePath": "src/editors/sharedComponents/TypeaheadDropdown/index.jsx", + "line": 173, + "column": 6, + "index": 4464 + }, { - "filePath": "src/components/catalogSearchResults/associatedComponents/downloadCsvButton/DownloadCsvButton.jsx", - "line": 36, + "filePath": "src/files-and-videos/files-page/FileInfoModalSidebar.jsx", + "line": 65, "column": 8, - "index": 1143 - } - ], - "Download": [ - { - "filePath": "src/components/catalogSearchResults/associatedComponents/downloadCsvButton/DownloadCsvButton.jsx", - "line": 42, - "column": 20, - "index": 1304 - } - ], - "Skeleton": [ + "index": 1632 + }, { - "filePath": "src/components/catalogSearchResults/CatalogSearchResults.jsx", - "line": 394, + "filePath": "src/files-and-videos/files-page/FileInfoModalSidebar.jsx", + "line": 82, "column": 8, - "index": 11723 - } - ], - "DataTable.TableControlBar": [ + "index": 2181 + }, { - "filePath": "src/components/catalogSearchResults/CatalogSearchResults.jsx", - "line": 497, - "column": 12, - "index": 15189 - } - ], - "DataTable.Table": [ + "filePath": "src/files-and-videos/generic/FileMenu.jsx", + "line": 28, + "column": 10, + "index": 592 + }, { - "filePath": "src/components/catalogSearchResults/CatalogSearchResults.jsx", - "line": 510, - "column": 26, - "index": 15574 - } - ], - "DataTable.TableFooter": [ + "filePath": "src/files-and-videos/generic/table-components/table-custom-columns/MoreInfoColumn.jsx", + "line": 40, + "column": 6, + "index": 762 + }, { - "filePath": "src/components/catalogSearchResults/CatalogSearchResults.jsx", - "line": 513, - "column": 14, - "index": 15637 - } - ], - "useMediaQuery": [ + "filePath": "src/files-and-videos/videos-page/info-sidebar/transcript-item/Transcript.jsx", + "line": 95, + "column": 12, + "index": 2853 + }, { - "filePath": "src/components/catalogSelectionDeck/CatalogSelectionDeck.jsx", + "filePath": "src/files-and-videos/videos-page/info-sidebar/transcript-item/TranscriptMenu.jsx", "line": 27, - "column": 23, - "index": 971 + "column": 6, + "index": 592 }, { - "filePath": "src/components/hero/Hero.jsx", - "line": 43, - "column": 20, - "index": 1252 + "filePath": "src/files-and-videos/videos-page/transcript-settings/TranscriptSettings.jsx", + "line": 66, + "column": 18, + "index": 2160 }, { - "filePath": "src/components/hero/Hero.jsx", - "line": 54, - "column": 19, - "index": 1542 - } - ], - "breakpoints": [ - { - "filePath": "src/components/catalogSelectionDeck/CatalogSelectionDeck.jsx", - "line": 27, - "column": 49, - "index": 997 + "filePath": "src/files-and-videos/videos-page/transcript-settings/TranscriptSettings.jsx", + "line": 81, + "column": 14, + "index": 2744 }, { - "filePath": "src/components/hero/Hero.jsx", - "line": 43, - "column": 46, - "index": 1278 + "filePath": "src/generic/CollapsableEditor.jsx", + "line": 34, + "column": 10, + "index": 861 }, { - "filePath": "src/components/hero/Hero.jsx", - "line": 55, - "column": 14, - "index": 1572 + "filePath": "src/generic/CollapsableEditor.jsx", + "line": 40, + "column": 12, + "index": 1100 }, { - "filePath": "src/components/hero/Hero.jsx", - "line": 56, - "column": 14, - "index": 1615 - } - ], - "Container": [ + "filePath": "src/generic/CollapsableEditor.jsx", + "line": 53, + "column": 10, + "index": 1439 + }, { - "filePath": "src/components/catalogSelectionDeck/CatalogSelectionDeck.jsx", - "line": 44, - "column": 4, - "index": 1619 + "filePath": "src/generic/course-upload-image/index.jsx", + "line": 69, + "column": 6, + "index": 1853 }, { - "filePath": "src/components/hero/Hero.jsx", - "line": 73, + "filePath": "src/generic/modal-dropzone/ModalDropzone.jsx", + "line": 66, "column": 6, - "index": 1990 + "index": 1347 }, { - "filePath": "src/components/PageWrapper.jsx", - "line": 11, - "column": 2, - "index": 317 + "filePath": "src/pages-and-resources/pages/PageSettingButton.jsx", + "line": 48, + "column": 8, + "index": 1488 }, { - "filePath": "src/components/subheader/subheader.jsx", - "line": 7, + "filePath": "src/pages-and-resources/pages/PageSettingButton.jsx", + "line": 63, "column": 4, - "index": 167 - } - ], - "SelectableBox.Set": [ + "index": 1731 + }, { - "filePath": "src/components/catalogSelectionDeck/CatalogSelectionDeck.jsx", - "line": 46, - "column": 6, - "index": 1713 + "filePath": "src/taxonomy/import-tags/ImportTagsWizard.jsx", + "line": 140, + "column": 14, + "index": 4223 } ], - "SelectableBox": [ + "InfoOutline": [ { - "filePath": "src/components/catalogSelectionDeck/CatalogSelectionDeck.jsx", - "line": 54, - "column": 8, - "index": 1930 + "filePath": "src/advanced-settings/setting-card/SettingCard.jsx", + "line": 70, + "column": 23, + "index": 1838 }, { - "filePath": "src/components/catalogSelectionDeck/CatalogSelectionDeck.jsx", - "line": 67, - "column": 8, - "index": 2697 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/CollapsibleFormWidget.jsx", + "line": 41, + "column": 56, + "index": 1437 }, { - "filePath": "src/components/catalogSelectionDeck/CatalogSelectionDeck.jsx", - "line": 80, - "column": 8, - "index": 3487 - } - ], - "Card": [ - { - "filePath": "src/components/courseCard/CourseCard.jsx", - "line": 46, - "column": 4, - "index": 1489 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/index.jsx", + "line": 149, + "column": 27, + "index": 4871 }, { - "filePath": "src/components/programCard/ProgramCard.jsx", - "line": 38, - "column": 4, - "index": 1208 - } - ], - "Card.ImageCap": [ + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoSourceWidget/index.jsx", + "line": 144, + "column": 23, + "index": 4772 + }, { - "filePath": "src/components/courseCard/CourseCard.jsx", - "line": 52, - "column": 6, - "index": 1614 + "filePath": "src/files-and-videos/files-page/FileInfoModalSidebar.jsx", + "line": 97, + "column": 15, + "index": 2765 }, { - "filePath": "src/components/programCard/ProgramCard.jsx", - "line": 44, - "column": 6, - "index": 1334 + "filePath": "src/schedule-and-details/schedule-section/certificate-display-row/CertificateDisplayRow.jsx", + "line": 101, + "column": 38, + "index": 3016 } ], - "Card.Header": [ + "ModalPopup": [ { - "filePath": "src/components/courseCard/CourseCard.jsx", - "line": 58, - "column": 6, - "index": 1774 + "filePath": "src/advanced-settings/setting-card/SettingCard.jsx", + "line": 76, + "column": 16, + "index": 2076 }, { - "filePath": "src/components/programCard/ProgramCard.jsx", - "line": 50, + "filePath": "src/files-and-videos/generic/table-components/table-custom-columns/MoreInfoColumn.jsx", + "line": 47, "column": 6, - "index": 1522 - } - ], - "Card.Section": [ + "index": 920 + }, { - "filePath": "src/components/courseCard/CourseCard.jsx", - "line": 60, + "filePath": "src/files-and-videos/videos-page/info-sidebar/transcript-item/LanguageSelect.jsx", + "line": 44, "column": 6, - "index": 1879 + "index": 1091 }, { - "filePath": "src/components/programCard/ProgramCard.jsx", - "line": 58, + "filePath": "src/files-and-videos/videos-page/info-sidebar/transcript-item/TranscriptMenu.jsx", + "line": 35, "column": 6, - "index": 1736 + "index": 797 } ], - "Program": [ + "ActionRow.Spacer": [ { - "filePath": "src/components/programCard/ProgramCard.jsx", - "line": 64, - "column": 23, - "index": 2013 - } - ] - } - }, - { - "version": "20.45.0", - "name": "@edx/frontend-app-gradebook", - "repository": { - "type": "git", - "url": "git+https://github.com/openedx/frontend-app-gradebook.git" - }, - "folderName": "frontend-app-gradebook", - "usages": { - "Alert": [ + "filePath": "src/advanced-settings/setting-card/SettingCard.jsx", + "line": 90, + "column": 16, + "index": 2619 + }, { - "filePath": "src/components/BulkManagementHistoryView/BulkManagementAlerts.jsx", - "line": 21, - "column": 4, - "index": 528 + "filePath": "src/certificates/empty-certificates-with-modes/EmptyCertificatesWithModes.jsx", + "line": 23, + "column": 10, + "index": 695 }, { - "filePath": "src/components/BulkManagementHistoryView/BulkManagementAlerts.jsx", - "line": 28, - "column": 4, - "index": 662 + "filePath": "src/course-checklist/ChecklistSection/ChecklistItemBody.jsx", + "line": 69, + "column": 6, + "index": 2650 }, { - "filePath": "src/components/GradesView/EditModal/index.jsx", - "line": 46, + "filePath": "src/course-unit/add-component/add-component-modals/ModalContainer.jsx", + "line": 30, "column": 10, - "index": 1166 + "index": 647 }, { - "filePath": "src/components/GradesView/StatusAlerts/index.jsx", - "line": 15, - "column": 6, - "index": 247 + "filePath": "src/course-updates/CourseUpdates.jsx", + "line": 191, + "column": 26, + "index": 7771 }, { - "filePath": "src/components/GradesView/StatusAlerts/index.jsx", - "line": 22, - "column": 6, - "index": 412 - } - ], - "DataTable": [ - { - "filePath": "src/components/BulkManagementHistoryView/HistoryTable.jsx", - "line": 33, - "column": 2, - "index": 903 + "filePath": "src/course-updates/CourseUpdates.jsx", + "line": 204, + "column": 26, + "index": 8467 }, { - "filePath": "src/components/GradesView/EditModal/OverrideTable/index.jsx", - "line": 24, - "column": 4, - "index": 650 + "filePath": "src/custom-pages/CustomPageCard.jsx", + "line": 72, + "column": 8, + "index": 1891 }, { - "filePath": "src/components/GradesView/GradebookTable/index.jsx", - "line": 24, - "column": 6, - "index": 573 - } - ], - "Hyperlink": [ - { - "filePath": "src/components/BulkManagementHistoryView/ResultsSummary.jsx", - "line": 21, - "column": 2, - "index": 595 + "filePath": "src/custom-pages/CustomPages.jsx", + "line": 136, + "column": 10, + "index": 4665 }, { - "filePath": "src/components/EdxHeader/index.jsx", - "line": 13, - "column": 6, - "index": 376 - } - ], - "Icon": [ + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/HandoutWidget/index.jsx", + "line": 70, + "column": 12, + "index": 2146 + }, { - "filePath": "src/components/BulkManagementHistoryView/ResultsSummary.jsx", - "line": 28, - "column": 4, - "index": 767 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", + "line": 54, + "column": 20, + "index": 1619 }, { - "filePath": "src/components/GradebookFilters/index.jsx", - "line": 31, - "column": 12, - "index": 942 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", + "line": 73, + "column": 20, + "index": 2387 }, { - "filePath": "src/components/GradebookFilters/index.jsx", - "line": 35, - "column": 18, - "index": 1075 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", + "line": 98, + "column": 20, + "index": 3458 }, { - "filePath": "src/components/GradesView/FilterMenuToggle/index.jsx", - "line": 24, - "column": 6, - "index": 738 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", + "line": 124, + "column": 20, + "index": 4561 }, { - "filePath": "src/components/GradesView/GradebookTable/LabelReplacements.jsx", - "line": 38, + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseSelector.jsx", + "line": 54, "column": 12, - "index": 1043 + "index": 1689 }, { - "filePath": "src/components/GradesView/SpinnerIcon.jsx", - "line": 16, + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/ImportTranscriptCard.jsx", + "line": 26, "column": 6, - "index": 402 + "index": 656 }, { - "filePath": "src/components/NetworkButton/index.jsx", - "line": 42, - "column": 16, - "index": 1628 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/index.jsx", + "line": 151, + "column": 14, + "index": 4975 }, { - "filePath": "src/components/NetworkButton/index.jsx", - "line": 43, - "column": 16, - "index": 1711 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/LanguageSelector.jsx", + "line": 72, + "column": 10, + "index": 2384 }, { - "filePath": "src/components/NetworkButton/test.jsx", - "line": 54, - "column": 20, - "index": 1630 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/LanguageSelector.jsx", + "line": 81, + "column": 8, + "index": 2606 }, { - "filePath": "src/components/NetworkButton/test.jsx", - "line": 55, - "column": 20, - "index": 1700 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/Transcript.jsx", + "line": 89, + "column": 12, + "index": 2840 }, { - "filePath": "src/components/NetworkButton/test.jsx", - "line": 63, - "column": 20, - "index": 2009 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoSourceWidget/index.jsx", + "line": 147, + "column": 8, + "index": 4888 }, { - "filePath": "src/components/NetworkButton/test.jsx", - "line": 64, - "column": 20, - "index": 2079 - } - ], - "Download": [ + "filePath": "src/editors/sharedComponents/BaseModal/index.jsx", + "line": 51, + "column": 8, + "index": 1057 + }, { - "filePath": "src/components/BulkManagementHistoryView/ResultsSummary.jsx", - "line": 28, - "column": 15, - "index": 778 - } - ], - "Button": [ + "filePath": "src/editors/sharedComponents/SelectionModal/SearchSort.jsx", + "line": 59, + "column": 23, + "index": 1440 + }, { - "filePath": "src/components/GradebookFilters/AssignmentGradeFilter/index.jsx", - "line": 38, - "column": 8, - "index": 1129 + "filePath": "src/editors/sharedComponents/SelectionModal/SearchSort.jsx", + "line": 99, + "column": 10, + "index": 2754 }, { - "filePath": "src/components/GradebookFilters/CourseGradeFilter/index.jsx", - "line": 36, + "filePath": "src/editors/sharedComponents/TypeaheadDropdown/index.jsx", + "line": 190, "column": 8, - "index": 961 + "index": 4902 }, { - "filePath": "src/components/GradebookHeader/index.jsx", - "line": 31, - "column": 10, - "index": 989 + "filePath": "src/files-and-videos/files-page/FileInfoModalSidebar.jsx", + "line": 64, + "column": 8, + "index": 1603 }, { - "filePath": "src/components/GradesView/EditModal/index.jsx", - "line": 60, - "column": 10, - "index": 1652 + "filePath": "src/files-and-videos/files-page/FileInfoModalSidebar.jsx", + "line": 81, + "column": 8, + "index": 2152 }, { - "filePath": "src/components/GradesView/FilterBadges/FilterBadge.jsx", - "line": 39, + "filePath": "src/files-and-videos/files-page/FileInfoModalSidebar.jsx", + "line": 102, "column": 8, - "index": 1056 + "index": 2866 }, { - "filePath": "src/components/GradesView/FilterMenuToggle/index.jsx", - "line": 19, - "column": 4, - "index": 610 + "filePath": "src/files-and-videos/videos-page/transcript-settings/TranscriptSettings.jsx", + "line": 80, + "column": 14, + "index": 2709 }, { - "filePath": "src/components/GradesView/GradebookTable/GradeButton.jsx", - "line": 47, - "column": 6, - "index": 1335 + "filePath": "src/files-and-videos/videos-page/VideosPage.jsx", + "line": 258, + "column": 10, + "index": 7540 }, { - "filePath": "src/components/GradesView/PageButtons/index.jsx", - "line": 15, - "column": 6, - "index": 314 + "filePath": "src/schedule-and-details/license-section/license-commons-options/index.jsx", + "line": 77, + "column": 14, + "index": 2478 }, { - "filePath": "src/components/GradesView/PageButtons/index.jsx", - "line": 23, - "column": 6, - "index": 505 + "filePath": "src/studio-home/processing-courses/course-item/index.jsx", + "line": 40, + "column": 16, + "index": 1113 } ], - "IconButton": [ + "Card.Section": [ { - "filePath": "src/components/GradebookFilters/index.jsx", - "line": 32, - "column": 8, - "index": 989 - } - ], - "Close": [ + "filePath": "src/advanced-settings/setting-card/SettingCard.jsx", + "line": 94, + "column": 10, + "index": 2705 + }, { - "filePath": "src/components/GradebookFilters/index.jsx", - "line": 36, - "column": 15, - "index": 1096 - } - ], - "Collapsible": [ + "filePath": "src/certificates/certificate-create-form/CertificateCreateForm.jsx", + "line": 25, + "column": 12, + "index": 1025 + }, { - "filePath": "src/components/GradebookFilters/index.jsx", - "line": 42, - "column": 6, - "index": 1247 + "filePath": "src/certificates/certificate-edit-form/CertificateEditForm.jsx", + "line": 37, + "column": 18, + "index": 1356 }, { - "filePath": "src/components/GradebookFilters/index.jsx", - "line": 54, + "filePath": "src/certificates/certificate-without-modes/CertificateWithoutModes.jsx", + "line": 10, "column": 6, - "index": 1654 + "index": 228 }, { - "filePath": "src/components/GradebookFilters/index.jsx", - "line": 62, - "column": 6, - "index": 1885 + "filePath": "src/certificates/certificates-list/CertificatesList.jsx", + "line": 30, + "column": 16, + "index": 985 }, { - "filePath": "src/components/GradebookFilters/index.jsx", - "line": 70, + "filePath": "src/certificates/empty-certificates-with-modes/EmptyCertificatesWithModes.jsx", + "line": 20, "column": 6, - "index": 2119 - } - ], - "Form.Checkbox": [ - { - "filePath": "src/components/GradebookFilters/index.jsx", - "line": 75, - "column": 8, - "index": 2274 - } - ], - "Form.Group": [ + "index": 559 + }, { - "filePath": "src/components/GradebookFilters/PercentGroup.jsx", - "line": 15, + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/CardSection.jsx", + "line": 14, "column": 4, - "index": 257 + "index": 310 }, { - "filePath": "src/components/GradebookFilters/SelectGroup.jsx", - "line": 16, - "column": 4, - "index": 292 + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/SettingsOption.jsx", + "line": 21, + "column": 6, + "index": 653 }, { - "filePath": "src/components/GradesView/ImportGradesButton/index.jsx", - "line": 28, - "column": 8, - "index": 782 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/Transcript.jsx", + "line": 61, + "column": 14, + "index": 1859 }, { - "filePath": "src/components/GradesView/ScoreViewInput/index.jsx", - "line": 18, - "column": 4, - "index": 528 - } - ], - "Form.Label": [ + "filePath": "src/export-page/CourseExportPage.jsx", + "line": 85, + "column": 20, + "index": 3818 + }, { - "filePath": "src/components/GradebookFilters/PercentGroup.jsx", - "line": 16, + "filePath": "src/files-and-videos/generic/table-components/GalleryCard.jsx", + "line": 56, "column": 6, - "index": 291 + "index": 1540 }, { - "filePath": "src/components/GradebookFilters/SelectGroup.jsx", - "line": 17, - "column": 6, - "index": 326 + "filePath": "src/files-and-videos/videos-page/info-sidebar/transcript-item/Transcript.jsx", + "line": 60, + "column": 12, + "index": 1526 }, { - "filePath": "src/components/GradesView/ScoreViewInput/index.jsx", - "line": 19, + "filePath": "src/generic/ConfirmationPopup.jsx", + "line": 24, "column": 6, - "index": 569 - } - ], - "Form.Control": [ + "index": 462 + }, { - "filePath": "src/components/GradebookFilters/PercentGroup.jsx", - "line": 17, + "filePath": "src/import-page/file-section/FileSection.jsx", + "line": 32, "column": 6, - "index": 330 + "index": 1106 }, { - "filePath": "src/components/GradebookFilters/SelectGroup.jsx", - "line": 18, - "column": 6, - "index": 365 + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-topics/TopicItem.jsx", + "line": 80, + "column": 8, + "index": 2078 }, { - "filePath": "src/components/GradesView/EditModal/OverrideTable/AdjustedGradeInput/index.jsx", - "line": 20, + "filePath": "src/pages-and-resources/discussions/app-list/AppCard.jsx", + "line": 52, + "column": 10, + "index": 1761 + }, + { + "filePath": "src/pages-and-resources/pages/PageCard.jsx", + "line": 53, + "column": 8, + "index": 1461 + }, + { + "filePath": "src/schedule-and-details/basic-section/index.jsx", + "line": 101, "column": 6, - "index": 425 + "index": 2769 }, { - "filePath": "src/components/GradesView/EditModal/OverrideTable/ReasonInput/index.jsx", - "line": 16, - "column": 4, - "index": 367 + "filePath": "src/schedule-and-details/requirements-section/entrance-exam/index.jsx", + "line": 32, + "column": 8, + "index": 961 }, { - "filePath": "src/components/GradesView/ImportGradesButton/index.jsx", - "line": 29, + "filePath": "src/studio-home/processing-courses/course-item/index.jsx", + "line": 46, "column": 10, - "index": 821 + "index": 1329 }, { - "filePath": "src/components/GradesView/ScoreViewInput/index.jsx", - "line": 20, + "filePath": "src/studio-home/tabs-section/courses-tab/contact-administrator/index.jsx", + "line": 18, "column": 6, - "index": 637 - } - ], - "ModalDialog": [ + "index": 613 + }, { - "filePath": "src/components/GradesView/EditModal/index.jsx", - "line": 35, - "column": 4, - "index": 917 - } - ], - "ModalDialog.Body": [ + "filePath": "src/studio-home/tabs-section/courses-tab/contact-administrator/index.jsx", + "line": 27, + "column": 10, + "index": 925 + }, { - "filePath": "src/components/GradesView/EditModal/index.jsx", - "line": 43, + "filePath": "src/studio-home/verify-email-layout/index.jsx", + "line": 25, + "column": 12, + "index": 791 + }, + { + "filePath": "src/taxonomy/taxonomy-card/index.jsx", + "line": 131, + "column": 8, + "index": 3263 + }, + { + "filePath": "src/taxonomy/taxonomy-detail/TaxonomyDetailSideCard.jsx", + "line": 14, "column": 6, - "index": 1096 - } - ], - "ModalDialog.Footer": [ + "index": 358 + }, { - "filePath": "src/components/GradesView/EditModal/index.jsx", - "line": 55, + "filePath": "src/taxonomy/taxonomy-detail/TaxonomyDetailSideCard.jsx", + "line": 18, "column": 6, - "index": 1461 - } - ], - "ActionRow": [ + "index": 527 + }, { - "filePath": "src/components/GradesView/EditModal/index.jsx", - "line": 56, - "column": 8, - "index": 1490 + "filePath": "src/taxonomy/taxonomy-detail/TaxonomyDetailSideCard.jsx", + "line": 21, + "column": 6, + "index": 665 } ], - "ModalDialog.CloseButton": [ + "Card.Status": [ { - "filePath": "src/components/GradesView/EditModal/index.jsx", - "line": 57, + "filePath": "src/advanced-settings/setting-card/SettingCard.jsx", + "line": 108, "column": 10, - "index": 1512 + "index": 3204 } ], - "Form": [ + "Card.Footer": [ { - "filePath": "src/components/GradesView/EditModal/OverrideTable/AdjustedGradeInput/index.test.jsx", - "line": 32, - "column": 30, - "index": 827 + "filePath": "src/certificates/certificate-create-form/CertificateCreateForm.jsx", + "line": 48, + "column": 12, + "index": 1888 }, { - "filePath": "src/components/GradesView/EditModal/OverrideTable/ReasonInput/index.test.jsx", - "line": 32, - "column": 30, - "index": 782 + "filePath": "src/certificates/certificate-edit-form/CertificateEditForm.jsx", + "line": 60, + "column": 18, + "index": 2357 }, { - "filePath": "src/components/GradesView/ImportGradesButton/index.jsx", - "line": 27, + "filePath": "src/course-unit/sidebar/components/sidebar-footer/index.jsx", + "line": 20, + "column": 4, + "index": 474 + }, + { + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/Transcript.jsx", + "line": 64, + "column": 14, + "index": 1995 + }, + { + "filePath": "src/files-and-videos/generic/table-components/GalleryCard.jsx", + "line": 75, "column": 6, - "index": 729 + "index": 2305 }, { - "filePath": "src/components/GradesView/ImportGradesButton/index.test.jsx", - "line": 40, - "column": 36, - "index": 1438 - } - ], - "FilterAlt": [ + "filePath": "src/files-and-videos/videos-page/info-sidebar/transcript-item/Transcript.jsx", + "line": 63, + "column": 12, + "index": 1656 + }, { - "filePath": "src/components/GradesView/FilterMenuToggle/index.jsx", - "line": 24, - "column": 17, - "index": 749 - } - ], - "DataTable.TableControlBar": [ + "filePath": "src/generic/ConfirmationPopup.jsx", + "line": 25, + "column": 6, + "index": 574 + }, { - "filePath": "src/components/GradesView/GradebookTable/index.jsx", - "line": 32, + "filePath": "src/generic/course-upload-image/index.jsx", + "line": 122, "column": 8, - "index": 787 - } - ], - "DataTable.Table": [ + "index": 3267 + }, { - "filePath": "src/components/GradesView/GradebookTable/index.jsx", - "line": 33, + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-topics/TopicItem.jsx", + "line": 83, "column": 8, - "index": 825 - } - ], - "DataTable.EmptyTable": [ + "index": 2240 + }, { - "filePath": "src/components/GradesView/GradebookTable/index.jsx", - "line": 34, + "filePath": "src/schedule-and-details/basic-section/index.jsx", + "line": 112, + "column": 6, + "index": 3105 + }, + { + "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", + "line": 94, + "column": 6, + "index": 3653 + }, + { + "filePath": "src/schedule-and-details/introducing-section/introduction-video/index.jsx", + "line": 32, "column": 8, - "index": 853 + "index": 992 + }, + { + "filePath": "src/studio-home/processing-courses/course-item/index.jsx", + "line": 72, + "column": 10, + "index": 2247 } ], - "OverlayTrigger": [ + "IconButtonWithTooltip": [ { - "filePath": "src/components/GradesView/GradebookTable/LabelReplacements.jsx", - "line": 25, - "column": 6, - "index": 619 - } - ], - "Tooltip": [ - { - "filePath": "src/components/GradesView/GradebookTable/LabelReplacements.jsx", - "line": 30, + "filePath": "src/certificates/certificate-details/CertificateDetails.jsx", + "line": 43, "column": 10, - "index": 784 - } - ], - "Toast": [ - { - "filePath": "src/components/GradesView/ImportSuccessToast/index.jsx", - "line": 20, - "column": 4, - "index": 422 - } - ], - "SearchField": [ + "index": 1223 + }, { - "filePath": "src/components/GradesView/SearchControls/index.jsx", - "line": 22, - "column": 6, - "index": 492 - } - ], - "StatefulButton": [ + "filePath": "src/certificates/certificate-details/CertificateDetails.jsx", + "line": 50, + "column": 10, + "index": 1557 + }, { - "filePath": "src/components/NetworkButton/index.jsx", - "line": 53, + "filePath": "src/certificates/certificate-signatories/signatory/Signatory.jsx", + "line": 35, "column": 6, - "index": 1921 - } - ] - } - }, - { - "version": "20.46.2", - "name": "@edx/frontend-app-learner-dashboard", - "repository": { - "type": "git", - "url": "git+https://github.com/edx/frontend-app-learner-dashboard.git" - }, - "folderName": "frontend-app-learner-dashboard", - "usages": { - "Alert": [ - { - "filePath": "src/App.jsx", - "line": 102, - "column": 16, - "index": 3215 + "index": 1180 }, { - "filePath": "src/components/Banner.jsx", - "line": 10, - "column": 2, - "index": 219 - } - ], - "useWindowSize": [ - { - "filePath": "src/containers/CourseCard/components/CourseCardActions/ActionButton/hooks.js", - "line": 4, - "column": 20, - "index": 118 + "filePath": "src/certificates/certificate-signatories/signatory/SignatoryForm.jsx", + "line": 89, + "column": 12, + "index": 2969 }, { - "filePath": "src/containers/CourseCard/components/CourseCardActions/ActionButton/hooks.test.js", - "line": 14, - "column": 4, - "index": 472 + "filePath": "src/course-team/course-team-member/CourseTeamMember.jsx", + "line": 55, + "column": 12, + "index": 1857 }, { - "filePath": "src/containers/CourseCard/components/CourseCardActions/ActionButton/hooks.test.js", + "filePath": "src/course-updates/course-handouts/CourseHandouts.jsx", "line": 16, - "column": 4, - "index": 595 + "column": 8, + "index": 623 }, { - "filePath": "src/containers/CourseCard/components/CourseCardActions/ActionButton/hooks.test.js", - "line": 18, - "column": 4, - "index": 718 + "filePath": "src/course-updates/course-update/CourseUpdate.jsx", + "line": 30, + "column": 10, + "index": 1098 }, { - "filePath": "src/containers/CourseCard/hooks.js", - "line": 6, - "column": 20, - "index": 209 + "filePath": "src/course-updates/course-update/CourseUpdate.jsx", + "line": 38, + "column": 10, + "index": 1391 }, { - "filePath": "src/containers/CourseFilterControls/CourseFilterControls.jsx", - "line": 47, - "column": 20, - "index": 952 + "filePath": "src/custom-pages/CustomPageCard.jsx", + "line": 73, + "column": 8, + "index": 1920 }, { - "filePath": "src/containers/CourseFilterControls/CourseFilterControls.test.jsx", - "line": 45, - "column": 6, - "index": 1345 + "filePath": "src/custom-pages/CustomPageCard.jsx", + "line": 83, + "column": 8, + "index": 2325 }, { - "filePath": "src/containers/CourseFilterControls/CourseFilterControls.test.jsx", - "line": 52, - "column": 6, - "index": 1606 + "filePath": "src/custom-pages/CustomPageCard.jsx", + "line": 93, + "column": 8, + "index": 2795 }, { - "filePath": "src/containers/CourseFilterControls/CourseFilterControls.test.jsx", - "line": 59, + "filePath": "src/editors/containers/EditorContainer/components/TitleHeader/EditConfirmationButtons.jsx", + "line": 17, "column": 6, - "index": 1878 - }, - { - "filePath": "src/containers/CourseList/hooks.js", - "line": 13, - "column": 20, - "index": 378 - }, - { - "filePath": "src/containers/Dashboard/hooks.js", - "line": 28, - "column": 20, - "index": 854 + "index": 421 }, { - "filePath": "src/containers/Dashboard/hooks.test.js", - "line": 27, - "column": 0, - "index": 596 + "filePath": "src/editors/containers/EditorContainer/components/TitleHeader/EditConfirmationButtons.jsx", + "line": 24, + "column": 6, + "index": 631 }, { - "filePath": "src/containers/Dashboard/hooks.test.js", - "line": 52, - "column": 10, - "index": 1476 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseSelector.jsx", + "line": 55, + "column": 12, + "index": 1722 }, { - "filePath": "src/containers/LearnerDashboardHeader/hooks.js", - "line": 14, - "column": 20, - "index": 397 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/ThumbnailWidget/index.jsx", + "line": 94, + "column": 12, + "index": 2738 }, { - "filePath": "src/containers/LearnerDashboardHeader/hooks.test.js", - "line": 33, - "column": 6, - "index": 739 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoSourceWidget/index.jsx", + "line": 112, + "column": 12, + "index": 3615 }, { - "filePath": "src/containers/LearnerDashboardHeader/hooks.test.js", - "line": 37, + "filePath": "src/editors/sharedComponents/DraggableList/SortableItem.jsx", + "line": 38, "column": 6, - "index": 924 + "index": 818 }, { - "filePath": "src/ExperimentContext.jsx", - "line": 37, - "column": 20, - "index": 1125 + "filePath": "src/files-and-videos/files-page/FileInfoModalSidebar.jsx", + "line": 93, + "column": 8, + "index": 2584 }, { - "filePath": "src/ExperimentContext.test.jsx", - "line": 108, + "filePath": "src/grading-settings/grading-scale/GradingScale.jsx", + "line": 205, "column": 6, - "index": 3321 + "index": 6691 }, { - "filePath": "src/widgets/ProductRecommendations/hooks.js", - "line": 23, - "column": 20, - "index": 925 + "filePath": "src/group-configurations/content-groups-section/ContentGroupCard.jsx", + "line": 90, + "column": 16, + "index": 2628 }, { - "filePath": "src/widgets/ProductRecommendations/hooks.test.js", + "filePath": "src/group-configurations/content-groups-section/ContentGroupCard.jsx", "line": 98, - "column": 6, - "index": 2666 - }, - { - "filePath": "src/widgets/ProductRecommendations/hooks.test.js", - "line": 107, - "column": 6, - "index": 2985 - } - ], - "breakpoints": [ - { - "filePath": "src/containers/CourseCard/components/CourseCardActions/ActionButton/hooks.js", - "line": 5, - "column": 17, - "index": 152 + "column": 16, + "index": 2995 }, { - "filePath": "src/containers/CourseCard/components/CourseCardActions/ActionButton/hooks.js", - "line": 5, - "column": 56, - "index": 191 + "filePath": "src/group-configurations/experiment-configurations-section/ExperimentCard.jsx", + "line": 111, + "column": 14, + "index": 3329 }, { - "filePath": "src/containers/CourseCard/components/CourseCardActions/ActionButton/hooks.test.js", - "line": 8, - "column": 7, - "index": 290 + "filePath": "src/group-configurations/experiment-configurations-section/ExperimentCard.jsx", + "line": 119, + "column": 14, + "index": 3680 }, { - "filePath": "src/containers/CourseCard/components/CourseCardActions/ActionButton/hooks.test.js", - "line": 9, - "column": 9, - "index": 331 + "filePath": "src/group-configurations/experiment-configurations-section/ExperimentFormGroups.jsx", + "line": 60, + "column": 16, + "index": 1930 }, { - "filePath": "src/containers/CourseCard/components/CourseCardActions/ActionButton/hooks.test.js", - "line": 10, - "column": 10, - "index": 374 + "filePath": "src/textbooks/textbook-card/TextbooksCard.jsx", + "line": 78, + "column": 18, + "index": 2367 }, { - "filePath": "src/containers/CourseCard/components/CourseCardActions/ActionButton/hooks.test.js", - "line": 11, - "column": 9, - "index": 416 + "filePath": "src/textbooks/textbook-card/TextbooksCard.jsx", + "line": 85, + "column": 18, + "index": 2683 }, { - "filePath": "src/containers/CourseCard/components/CourseCardActions/ActionButton/hooks.test.js", - "line": 14, - "column": 43, - "index": 511 + "filePath": "src/textbooks/textbook-card/TextbooksCard.jsx", + "line": 92, + "column": 18, + "index": 2993 }, { - "filePath": "src/containers/CourseCard/components/CourseCardActions/ActionButton/hooks.test.js", - "line": 16, - "column": 43, - "index": 634 + "filePath": "src/textbooks/textbook-form/TextbookForm.jsx", + "line": 104, + "column": 26, + "index": 4025 }, { - "filePath": "src/containers/CourseCard/components/CourseCardActions/ActionButton/hooks.test.js", - "line": 18, - "column": 43, - "index": 757 - }, + "filePath": "src/textbooks/textbook-form/TextbookForm.jsx", + "line": 114, + "column": 26, + "index": 4602 + } + ], + "EditOutlineIcon": [ { - "filePath": "src/containers/CourseCard/hooks.js", - "line": 7, + "filePath": "src/certificates/certificate-details/CertificateDetails.jsx", + "line": 44, "column": 17, - "index": 243 - }, - { - "filePath": "src/containers/CourseFilterControls/CourseFilterControls.jsx", - "line": 48, - "column": 27, - "index": 996 + "index": 1263 }, { - "filePath": "src/containers/CourseFilterControls/CourseFilterControls.test.jsx", - "line": 45, - "column": 49, - "index": 1388 + "filePath": "src/certificates/certificate-signatories/signatory/Signatory.jsx", + "line": 37, + "column": 13, + "index": 1261 }, { - "filePath": "src/containers/CourseFilterControls/CourseFilterControls.test.jsx", - "line": 52, - "column": 49, - "index": 1649 + "filePath": "src/group-configurations/content-groups-section/ContentGroupCard.jsx", + "line": 93, + "column": 23, + "index": 2803 }, { - "filePath": "src/containers/CourseFilterControls/CourseFilterControls.test.jsx", - "line": 59, - "column": 49, - "index": 1921 - }, + "filePath": "src/group-configurations/experiment-configurations-section/ExperimentCard.jsx", + "line": 114, + "column": 21, + "index": 3498 + } + ], + "DeleteOutlineIcon": [ { - "filePath": "src/containers/CourseList/hooks.js", - "line": 14, + "filePath": "src/certificates/certificate-details/CertificateDetails.jsx", + "line": 51, "column": 17, - "index": 412 + "index": 1597 }, { - "filePath": "src/containers/Dashboard/hooks.js", - "line": 31, - "column": 34, - "index": 998 + "filePath": "src/certificates/certificate-signatories/signatory/SignatoryForm.jsx", + "line": 90, + "column": 19, + "index": 3011 }, { - "filePath": "src/containers/Dashboard/hooks.test.js", - "line": 28, - "column": 0, - "index": 642 + "filePath": "src/group-configurations/content-groups-section/ContentGroupCard.jsx", + "line": 106, + "column": 23, + "index": 3379 }, { - "filePath": "src/containers/LearnerDashboardHeader/hooks.js", - "line": 15, - "column": 52, - "index": 466 - }, + "filePath": "src/group-configurations/experiment-configurations-section/ExperimentCard.jsx", + "line": 127, + "column": 21, + "index": 4071 + } + ], + "Image": [ { - "filePath": "src/containers/LearnerDashboardHeader/hooks.test.js", - "line": 33, - "column": 49, - "index": 782 + "filePath": "src/certificates/certificate-signatories/signatory/Signatory.jsx", + "line": 45, + "column": 10, + "index": 1578 }, { - "filePath": "src/containers/LearnerDashboardHeader/hooks.test.js", - "line": 37, - "column": 49, - "index": 967 + "filePath": "src/certificates/certificate-signatories/signatory/SignatoryForm.jsx", + "line": 113, + "column": 12, + "index": 3885 }, { - "filePath": "src/ExperimentContext.jsx", - "line": 38, - "column": 27, - "index": 1169 + "filePath": "src/custom-pages/CustomPages.jsx", + "line": 253, + "column": 12, + "index": 9131 }, { - "filePath": "src/widgets/ProductRecommendations/hooks.js", - "line": 24, - "column": 17, - "index": 959 - } - ], - "Button": [ - { - "filePath": "src/containers/CourseCard/components/CourseCardActions/ActionButton/index.jsx", - "line": 9, - "column": 4, - "index": 198 + "filePath": "src/editors/containers/ProblemEditor/components/SelectTypeModal/content/Preview.jsx", + "line": 26, + "column": 6, + "index": 723 }, { - "filePath": "src/containers/CourseCard/components/CourseCardBanners/CreditBanner/views/components/CreditContent.jsx", - "line": 14, - "column": 8, - "index": 375 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/ThumbnailWidget/index.jsx", + "line": 85, + "column": 10, + "index": 2467 }, { - "filePath": "src/containers/CourseCard/components/CourseCardBanners/CreditBanner/views/components/CreditRequestForm/index.jsx", - "line": 29, - "column": 6, - "index": 691 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoPreviewWidget/index.jsx", + "line": 35, + "column": 10, + "index": 1117 }, { - "filePath": "src/containers/CourseCard/components/CourseCardBanners/EntitlementBanner.jsx", - "line": 45, - "column": 12, - "index": 1296 + "filePath": "src/editors/containers/VideoGallery/index.jsx", + "line": 51, + "column": 4, + "index": 1763 }, { - "filePath": "src/containers/CourseCard/components/CourseCardDetails/index.jsx", - "line": 30, + "filePath": "src/editors/sharedComponents/ImageUploadModal/ImageSettingsModal/index.jsx", + "line": 75, "column": 10, - "index": 734 + "index": 2325 }, { - "filePath": "src/containers/CourseCard/components/RelatedProgramsBadge/index.jsx", - "line": 21, - "column": 6, - "index": 546 + "filePath": "src/editors/sharedComponents/SelectionModal/GalleryCard.jsx", + "line": 42, + "column": 12, + "index": 1313 }, { - "filePath": "src/containers/CourseFilterControls/ActiveCourseFilters.jsx", - "line": 28, - "column": 6, - "index": 692 + "filePath": "src/files-and-videos/files-page/FileThumbnail.jsx", + "line": 30, + "column": 8, + "index": 612 }, { - "filePath": "src/containers/CourseFilterControls/CourseFilterControls.jsx", - "line": 52, - "column": 6, - "index": 1080 + "filePath": "src/files-and-videos/videos-page/VideoThumbnail.jsx", + "line": 59, + "column": 12, + "index": 1919 }, { - "filePath": "src/containers/CourseList/NoCoursesView/index.jsx", - "line": 28, + "filePath": "src/generic/course-upload-image/index.jsx", + "line": 61, "column": 6, - "index": 898 + "index": 1686 }, { - "filePath": "src/containers/EmailSettingsModal/index.jsx", - "line": 43, - "column": 10, - "index": 1025 - }, + "filePath": "src/generic/modal-dropzone/ModalDropzone.jsx", + "line": 57, + "column": 8, + "index": 1177 + } + ], + "FormLabel": [ { - "filePath": "src/containers/EmailSettingsModal/index.jsx", - "line": 46, - "column": 10, - "index": 1152 + "filePath": "src/certificates/certificate-signatories/signatory/SignatoryForm.jsx", + "line": 103, + "column": 12, + "index": 3468 }, { - "filePath": "src/containers/EnterpriseDashboardModal/index.jsx", - "line": 46, + "filePath": "src/certificates/certificate-signatories/signatory/SignatoryForm.jsx", + "line": 111, "column": 10, - "index": 1092 + "index": 3772 }, { - "filePath": "src/containers/EnterpriseDashboardModal/index.jsx", + "filePath": "src/studio-home/organization-section/index.jsx", "line": 49, - "column": 10, - "index": 1240 - }, - { - "filePath": "src/containers/LearnerDashboardHeader/CollapsedHeader/CollapseMenuBody.jsx", - "line": 29, "column": 8, - "index": 1086 - }, + "index": 1742 + } + ], + "AddIcon": [ { - "filePath": "src/containers/LearnerDashboardHeader/CollapsedHeader/CollapseMenuBody.jsx", - "line": 32, - "column": 8, - "index": 1206 + "filePath": "src/certificates/empty-certificates-with-modes/EmptyCertificatesWithModes.jsx", + "line": 25, + "column": 24, + "index": 758 }, { - "filePath": "src/containers/LearnerDashboardHeader/CollapsedHeader/CollapseMenuBody.jsx", - "line": 35, - "column": 8, - "index": 1342 + "filePath": "src/course-updates/CourseUpdates.jsx", + "line": 144, + "column": 36, + "index": 5392 }, { - "filePath": "src/containers/LearnerDashboardHeader/CollapsedHeader/CollapseMenuBody.jsx", - "line": 44, - "column": 8, - "index": 1631 + "filePath": "src/course-updates/CourseUpdates.jsx", + "line": 197, + "column": 40, + "index": 8077 }, { - "filePath": "src/containers/LearnerDashboardHeader/CollapsedHeader/CollapseMenuBody.jsx", - "line": 50, - "column": 14, - "index": 1852 + "filePath": "src/group-configurations/content-groups-section/index.jsx", + "line": 63, + "column": 26, + "index": 2174 }, { - "filePath": "src/containers/LearnerDashboardHeader/CollapsedHeader/CollapseMenuBody.jsx", - "line": 55, - "column": 14, - "index": 2080 + "filePath": "src/group-configurations/experiment-configurations-section/ExperimentFormGroups.jsx", + "line": 85, + "column": 20, + "index": 2793 }, { - "filePath": "src/containers/LearnerDashboardHeader/CollapsedHeader/CollapseMenuBody.jsx", - "line": 62, - "column": 12, - "index": 2371 + "filePath": "src/group-configurations/experiment-configurations-section/index.jsx", + "line": 52, + "column": 26, + "index": 1816 }, { - "filePath": "src/containers/LearnerDashboardHeader/CollapsedHeader/CollapseMenuBody.jsx", - "line": 71, - "column": 12, - "index": 2651 + "filePath": "src/schedule-and-details/instructors-section/index.jsx", + "line": 72, + "column": 26, + "index": 2014 }, { - "filePath": "src/containers/LearnerDashboardHeader/CollapsedHeader/CollapseMenuBody.jsx", - "line": 79, - "column": 14, - "index": 2934 + "filePath": "src/schedule-and-details/learning-outcomes-section/index.jsx", + "line": 61, + "column": 26, + "index": 1915 }, { - "filePath": "src/containers/LearnerDashboardHeader/CollapsedHeader/CollapseMenuBody.jsx", - "line": 87, - "column": 12, - "index": 3182 + "filePath": "src/textbooks/textbook-form/TextbookForm.jsx", + "line": 145, + "column": 34, + "index": 6174 }, { - "filePath": "src/containers/LearnerDashboardHeader/ConfirmEmailBanner/index.jsx", - "line": 36, - "column": 12, - "index": 922 - }, + "filePath": "src/textbooks/Textbooks.jsx", + "line": 84, + "column": 28, + "index": 2621 + } + ], + "DropdownButton": [ { - "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": 1106 - }, + "filePath": "src/certificates/layout/header-buttons/HeaderButtons.jsx", + "line": 22, + "column": 6, + "index": 478 + } + ], + "Dropdown.Item": [ { - "filePath": "src/containers/LearnerDashboardHeader/ExpandedHeader/index.jsx", - "line": 38, - "column": 8, - "index": 1303 + "filePath": "src/certificates/layout/header-buttons/HeaderButtons.jsx", + "line": 23, + "column": 35, + "index": 621 }, { - "filePath": "src/containers/LearnerDashboardHeader/ExpandedHeader/index.jsx", - "line": 46, - "column": 8, - "index": 1504 + "filePath": "src/course-outline/card-header/CardHeader.jsx", + "line": 160, + "column": 16, + "index": 4864 }, { - "filePath": "src/containers/LearnerDashboardHeader/ExpandedHeader/index.jsx", - "line": 57, - "column": 8, - "index": 1859 + "filePath": "src/course-outline/card-header/CardHeader.jsx", + "line": 170, + "column": 14, + "index": 5322 }, { - "filePath": "src/containers/SelectSessionModal/index.jsx", - "line": 66, - "column": 8, - "index": 1705 + "filePath": "src/course-outline/card-header/CardHeader.jsx", + "line": 177, + "column": 14, + "index": 5622 }, { - "filePath": "src/containers/SelectSessionModal/index.jsx", - "line": 69, - "column": 8, - "index": 1833 + "filePath": "src/course-outline/card-header/CardHeader.jsx", + "line": 184, + "column": 16, + "index": 5958 }, { - "filePath": "src/containers/UnenrollConfirmModal/components/ConfirmPane.jsx", - "line": 21, - "column": 8, - "index": 419 + "filePath": "src/course-outline/card-header/CardHeader.jsx", + "line": 193, + "column": 16, + "index": 6311 }, { - "filePath": "src/containers/UnenrollConfirmModal/components/ConfirmPane.jsx", - "line": 24, - "column": 8, - "index": 545 + "filePath": "src/course-outline/card-header/CardHeader.jsx", + "line": 198, + "column": 16, + "index": 6512 }, { - "filePath": "src/containers/UnenrollConfirmModal/components/FinishedPane.jsx", - "line": 25, - "column": 8, - "index": 548 + "filePath": "src/course-outline/card-header/CardHeader.jsx", + "line": 207, + "column": 18, + "index": 6861 }, { - "filePath": "src/containers/UnenrollConfirmModal/components/ReasonPane.jsx", - "line": 40, - "column": 8, - "index": 1001 + "filePath": "src/course-outline/card-header/CardHeader.jsx", + "line": 214, + "column": 18, + "index": 7190 }, { - "filePath": "src/containers/UnenrollConfirmModal/components/ReasonPane.jsx", - "line": 43, - "column": 8, - "index": 1130 + "filePath": "src/course-outline/card-header/CardHeader.jsx", + "line": 224, + "column": 16, + "index": 7600 }, { - "filePath": "src/widgets/RecommendationsPaintedDoorBtn/components/NavbarButton.jsx", - "line": 13, - "column": 4, - "index": 414 + "filePath": "src/course-unit/breadcrumbs/Breadcrumbs.jsx", + "line": 38, + "column": 16, + "index": 1494 }, { - "filePath": "src/widgets/RecommendationsPaintedDoorBtn/components/RecommendationsPanelButton.jsx", - "line": 11, - "column": 4, - "index": 314 + "filePath": "src/course-unit/breadcrumbs/Breadcrumbs.jsx", + "line": 68, + "column": 16, + "index": 2585 }, { - "filePath": "src/widgets/RecommendationsPanel/LoadedView.jsx", - "line": 49, + "filePath": "src/course-unit/course-sequence/sequence-navigation/SequenceNavigationDropdown.jsx", + "line": 28, "column": 10, - "index": 1709 - } - ], - "ActionRow": [ - { - "filePath": "src/containers/CourseCard/components/CourseCardActions/index.jsx", - "line": 24, - "column": 4, - "index": 723 - }, - { - "filePath": "src/containers/CourseCard/components/CourseCardBanners/CreditBanner/views/components/CreditContent.jsx", - "line": 13, - "column": 6, - "index": 338 + "index": 926 }, { - "filePath": "src/containers/EmailSettingsModal/index.jsx", - "line": 42, - "column": 8, - "index": 1003 + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/AnswerWidget/AnswersContainer.jsx", + "line": 59, + "column": 12, + "index": 1781 }, { - "filePath": "src/containers/EnterpriseDashboardModal/index.jsx", - "line": 45, - "column": 8, - "index": 1070 + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/AnswerWidget/AnswersContainer.jsx", + "line": 66, + "column": 12, + "index": 2098 }, { - "filePath": "src/containers/SelectSessionModal/index.jsx", - "line": 65, - "column": 6, - "index": 1685 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/HandoutWidget/index.jsx", + "line": 81, + "column": 16, + "index": 2566 }, { - "filePath": "src/containers/UnenrollConfirmModal/components/ConfirmPane.jsx", - "line": 20, - "column": 6, - "index": 399 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/HandoutWidget/index.jsx", + "line": 87, + "column": 16, + "index": 2808 }, { - "filePath": "src/containers/UnenrollConfirmModal/components/FinishedPane.jsx", - "line": 24, - "column": 6, - "index": 528 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/HandoutWidget/index.jsx", + "line": 90, + "column": 16, + "index": 3009 }, { - "filePath": "src/containers/UnenrollConfirmModal/components/ReasonPane.jsx", - "line": 39, - "column": 6, - "index": 981 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/LanguageSelector.jsx", + "line": 105, + "column": 22, + "index": 3201 }, { - "filePath": "src/widgets/RecommendationsPaintedDoorBtn/components/PaintedDoorModal/index.jsx", - "line": 46, - "column": 10, - "index": 1408 - } - ], - "Locked": [ - { - "filePath": "src/containers/CourseCard/components/CourseCardActions/UpgradeButton.jsx", - "line": 33, - "column": 18, - "index": 850 - } - ], - "MailtoLink": [ - { - "filePath": "src/containers/CourseCard/components/CourseCardBanners/CertificateBanner.jsx", - "line": 29, - "column": 31, - "index": 1017 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/LanguageSelector.jsx", + "line": 108, + "column": 22, + "index": 3391 }, { - "filePath": "src/containers/CourseCard/components/CourseCardBanners/CreditBanner/index.jsx", - "line": 20, - "column": 28, - "index": 547 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/LanguageSelector.jsx", + "line": 110, + "column": 20, + "index": 3517 }, { - "filePath": "src/containers/CourseCard/components/CourseCardBanners/CreditBanner/index.test.jsx", - "line": 55, - "column": 31, - "index": 1680 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/TranscriptActionMenu.jsx", + "line": 51, + "column": 8, + "index": 1796 }, { - "filePath": "src/containers/CourseCard/components/CourseCardBanners/EntitlementBanner.jsx", - "line": 34, - "column": 37, - "index": 981 - } - ], - "CheckCircle": [ - { - "filePath": "src/containers/CourseCard/components/CourseCardBanners/CertificateBanner.jsx", - "line": 42, - "column": 38, - "index": 1636 - } - ], - "Hyperlink": [ - { - "filePath": "src/containers/CourseCard/components/CourseCardBanners/CertificateBanner.jsx", - "line": 47, - "column": 12, - "index": 1779 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/TranscriptActionMenu.jsx", + "line": 57, + "column": 8, + "index": 2003 }, { - "filePath": "src/containers/CourseCard/components/CourseCardBanners/CertificateBanner.jsx", - "line": 68, - "column": 10, - "index": 2302 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/TranscriptActionMenu.jsx", + "line": 60, + "column": 8, + "index": 2181 }, { - "filePath": "src/containers/CourseCard/components/CourseCardBanners/CourseBanner.jsx", - "line": 39, + "filePath": "src/editors/sharedComponents/SelectionModal/SearchSort.jsx", + "line": 89, "column": 12, - "index": 1126 + "index": 2459 }, { - "filePath": "src/containers/CourseCard/components/CourseCardBanners/CourseBanner.jsx", - "line": 49, - "column": 10, - "index": 1426 + "filePath": "src/files-and-videos/generic/FileMenu.jsx", + "line": 36, + "column": 8, + "index": 766 }, { - "filePath": "src/containers/CourseCard/components/CourseCardBanners/CreditBanner/views/components/ProviderLink.jsx", - "line": 11, - "column": 4, - "index": 288 + "filePath": "src/files-and-videos/generic/FileMenu.jsx", + "line": 43, + "column": 10, + "index": 967 }, { - "filePath": "src/widgets/LookingForChallengeWidget/index.jsx", - "line": 31, + "filePath": "src/files-and-videos/generic/FileMenu.jsx", + "line": 48, "column": 10, - "index": 1014 + "index": 1164 }, { - "filePath": "src/widgets/ProductRecommendations/components/ProductCard.jsx", + "filePath": "src/files-and-videos/generic/FileMenu.jsx", "line": 53, "column": 10, - "index": 1375 + "index": 1358 }, { - "filePath": "src/widgets/ProductRecommendations/components/ProductCardHeader.jsx", - "line": 52, + "filePath": "src/files-and-videos/generic/FileMenu.jsx", + "line": 58, "column": 6, - "index": 1716 - }, - { - "filePath": "src/widgets/RecommendationsPanel/components/CourseCard.jsx", - "line": 15, - "column": 4, - "index": 431 - } - ], - "Form": [ - { - "filePath": "src/containers/CourseCard/components/CourseCardBanners/CreditBanner/views/components/CreditRequestForm/index.jsx", - "line": 15, - "column": 4, - "index": 394 + "index": 1562 }, { - "filePath": "src/containers/CourseFilterControls/CourseFilterControls.jsx", + "filePath": "src/files-and-videos/generic/FileMenu.jsx", "line": 61, "column": 6, - "index": 1297 + "index": 1681 }, { - "filePath": "src/containers/MasqueradeBar/index.jsx", - "line": 40, + "filePath": "src/files-and-videos/generic/FileMenu.jsx", + "line": 65, "column": 6, - "index": 901 - } - ], - "FormControl": [ + "index": 1826 + }, { - "filePath": "src/containers/CourseCard/components/CourseCardBanners/CreditBanner/views/components/CreditRequestForm/index.jsx", - "line": 22, - "column": 8, - "index": 552 + "filePath": "src/files-and-videos/generic/table-components/TableActions.jsx", + "line": 51, + "column": 12, + "index": 1502 }, { - "filePath": "src/containers/MasqueradeBar/index.jsx", - "line": 62, - "column": 14, - "index": 1720 - } - ], - "Program": [ + "filePath": "src/files-and-videos/generic/table-components/TableActions.jsx", + "line": 58, + "column": 10, + "index": 1762 + }, { - "filePath": "src/containers/CourseCard/components/CourseCardBanners/RelatedProgramsBanner/index.jsx", - "line": 21, - "column": 14, - "index": 558 + "filePath": "src/files-and-videos/generic/table-components/TableActions.jsx", + "line": 65, + "column": 10, + "index": 2034 }, { - "filePath": "src/containers/CourseCard/components/RelatedProgramsBadge/index.jsx", - "line": 28, - "column": 19, - "index": 780 + "filePath": "src/files-and-videos/videos-page/transcript-settings/FormDropdown.jsx", + "line": 38, + "column": 14, + "index": 1138 }, { - "filePath": "src/containers/RelatedProgramsModal/components/ProgramCard.jsx", + "filePath": "src/files-and-videos/videos-page/transcript-settings/FormDropdown.jsx", "line": 45, - "column": 21, - "index": 1299 - } - ], - "Badge": [ + "column": 14, + "index": 1446 + }, { - "filePath": "src/containers/CourseCard/components/CourseCardImage.jsx", - "line": 37, + "filePath": "src/files-and-videos/videos-page/transcript-settings/FormDropdown.jsx", + "line": 51, "column": 12, - "index": 1326 + "index": 1680 }, { - "filePath": "src/containers/LearnerDashboardHeader/CollapsedHeader/CollapseMenuBody.jsx", - "line": 57, - "column": 16, - "index": 2194 + "filePath": "src/generic/create-or-rerun-course/CreateOrRerunCourseForm.jsx", + "line": 184, + "column": 10, + "index": 5933 }, { - "filePath": "src/containers/LearnerDashboardHeader/ExpandedHeader/AuthenticatedUserDropdown.jsx", - "line": 50, + "filePath": "src/schedule-and-details/details-section/index.jsx", + "line": 32, "column": 14, - "index": 1832 + "index": 1202 }, { - "filePath": "src/containers/RelatedProgramsModal/components/ProgramCard.jsx", - "line": 44, - "column": 8, - "index": 1223 + "filePath": "src/schedule-and-details/requirements-section/index.jsx", + "line": 40, + "column": 10, + "index": 1336 }, { - "filePath": "src/widgets/ProductRecommendations/components/ProductCard.jsx", - "line": 81, - "column": 10, - "index": 2153 - } - ], - "Dropdown": [ + "filePath": "src/schedule-and-details/requirements-section/index.jsx", + "line": 47, + "column": 12, + "index": 1649 + }, { - "filePath": "src/containers/CourseCard/components/CourseCardMenu/index.jsx", - "line": 42, - "column": 6, - "index": 1273 + "filePath": "src/schedule-and-details/schedule-section/certificate-display-row/CertificateDisplayRow.jsx", + "line": 134, + "column": 16, + "index": 4284 }, { - "filePath": "src/containers/LearnerDashboardHeader/ExpandedHeader/AuthenticatedUserDropdown.jsx", - "line": 19, - "column": 6, - "index": 587 - } - ], - "Dropdown.Toggle": [ + "filePath": "src/studio-home/tabs-section/courses-tab/courses-filters/courses-filter-menu/index.jsx", + "line": 44, + "column": 10, + "index": 1363 + }, { - "filePath": "src/containers/CourseCard/components/CourseCardMenu/index.jsx", - "line": 43, - "column": 8, - "index": 1324 + "filePath": "src/taxonomy/taxonomy-menu/TaxonomyMenu.jsx", + "line": 155, + "column": 10, + "index": 4896 }, { - "filePath": "src/containers/LearnerDashboardHeader/ExpandedHeader/AuthenticatedUserDropdown.jsx", - "line": 20, - "column": 8, - "index": 636 + "filePath": "src/taxonomy/TaxonomyListPage.jsx", + "line": 64, + "column": 12, + "index": 1775 + }, + { + "filePath": "src/taxonomy/TaxonomyListPage.jsx", + "line": 70, + "column": 12, + "index": 2033 } ], - "IconButton": [ + "Spinner": [ { - "filePath": "src/containers/CourseCard/components/CourseCardMenu/index.jsx", - "line": 45, - "column": 14, - "index": 1406 + "filePath": "src/content-tags-drawer/ContentTagsCollapsible.jsx", + "line": 113, + "column": 4, + "index": 3638 }, { - "filePath": "src/containers/LearnerDashboardHeader/CollapsedHeader/index.jsx", - "line": 23, + "filePath": "src/content-tags-drawer/ContentTagsDropDownSelector.jsx", + "line": 235, "column": 10, - "index": 715 - } - ], - "MoreVert": [ + "index": 8717 + }, { - "filePath": "src/containers/CourseCard/components/CourseCardMenu/index.jsx", - "line": 46, - "column": 15, - "index": 1433 - } - ], - "Icon": [ + "filePath": "src/editors/containers/GameEditor/index.jsx", + "line": 56, + "column": 12, + "index": 1626 + }, { - "filePath": "src/containers/CourseCard/components/CourseCardMenu/index.jsx", - "line": 47, - "column": 18, - "index": 1461 + "filePath": "src/editors/containers/TextEditor/index.jsx", + "line": 95, + "column": 14, + "index": 2531 }, { - "filePath": "src/containers/CourseCard/components/RelatedProgramsBadge/index.jsx", - "line": 28, - "column": 8, - "index": 769 + "filePath": "src/editors/containers/VideoUploadEditor/index.jsx", + "line": 24, + "column": 6, + "index": 642 }, { - "filePath": "src/containers/CourseFilterControls/CourseFilterControls.jsx", - "line": 82, - "column": 18, - "index": 2057 + "filePath": "src/editors/example.jsx", + "line": 53, + "column": 12, + "index": 1570 }, { - "filePath": "src/containers/LearnerDashboardHeader/CollapsedHeader/index.jsx", - "line": 27, - "column": 20, - "index": 837 + "filePath": "src/editors/sharedComponents/SelectionModal/Gallery.jsx", + "line": 42, + "column": 8, + "index": 941 }, { - "filePath": "src/containers/MasqueradeBar/index.jsx", - "line": 44, - "column": 14, - "index": 1061 + "filePath": "src/files-and-videos/generic/UsageMetricsMessage.jsx", + "line": 51, + "column": 8, + "index": 1487 }, { - "filePath": "src/containers/MasqueradeBar/index.jsx", - "line": 58, - "column": 14, - "index": 1515 + "filePath": "src/files-and-videos/videos-page/upload-modal/UploadStatusIcon.jsx", + "line": 15, + "column": 8, + "index": 502 }, { - "filePath": "src/containers/RelatedProgramsModal/components/ProgramCard.jsx", - "line": 45, - "column": 10, - "index": 1288 + "filePath": "src/generic/Loading.jsx", + "line": 7, + "column": 2, + "index": 220 }, { - "filePath": "src/widgets/LookingForChallengeWidget/index.jsx", - "line": 15, - "column": 26, - "index": 480 + "filePath": "src/generic/modal-dropzone/ModalDropzone.jsx", + "line": 99, + "column": 16, + "index": 2268 }, { - "filePath": "src/widgets/ProductRecommendations/components/ProductCardHeader.jsx", - "line": 63, + "filePath": "src/taxonomy/TaxonomyListPage.jsx", + "line": 145, "column": 10, - "index": 2097 + "index": 4220 + }, + { + "filePath": "src/taxonomy/TaxonomyListPage.jsx", + "line": 233, + "column": 14, + "index": 6889 } ], - "Dropdown.Menu": [ + "Collapsible.Advanced": [ { - "filePath": "src/containers/CourseCard/components/CourseCardMenu/index.jsx", - "line": 51, - "column": 8, - "index": 1566 + "filePath": "src/content-tags-drawer/ContentTagsCollapsible.jsx", + "line": 374, + "column": 6, + "index": 12848 }, { - "filePath": "src/containers/LearnerDashboardHeader/ExpandedHeader/AuthenticatedUserDropdown.jsx", - "line": 31, - "column": 8, - "index": 962 - } - ], - "Dropdown.Item": [ + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/AnswerWidget/AnswerOption.jsx", + "line": 95, + "column": 4, + "index": 2981 + }, { - "filePath": "src/containers/CourseCard/components/CourseCardMenu/index.jsx", - "line": 53, - "column": 12, - "index": 1633 + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/CardSection.jsx", + "line": 15, + "column": 6, + "index": 348 }, { - "filePath": "src/containers/CourseCard/components/CourseCardMenu/SocialShareMenu.jsx", - "line": 36, + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/CardSection.jsx", + "line": 22, + "column": 6, + "index": 636 + }, + { + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/index.jsx", + "line": 104, "column": 8, - "index": 1159 + "index": 3177 }, { - "filePath": "src/containers/LearnerDashboardHeader/ExpandedHeader/AuthenticatedUserDropdown.jsx", - "line": 35, - "column": 14, - "index": 1189 + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/index.jsx", + "line": 118, + "column": 6, + "index": 3661 }, { - "filePath": "src/containers/LearnerDashboardHeader/ExpandedHeader/AuthenticatedUserDropdown.jsx", - "line": 39, - "column": 16, - "index": 1392 + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/SettingsOption.jsx", + "line": 22, + "column": 8, + "index": 752 }, { - "filePath": "src/containers/LearnerDashboardHeader/ExpandedHeader/AuthenticatedUserDropdown.jsx", - "line": 48, - "column": 12, - "index": 1715 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/CollapsibleFormWidget.jsx", + "line": 26, + "column": 2, + "index": 707 }, { - "filePath": "src/containers/LearnerDashboardHeader/ExpandedHeader/AuthenticatedUserDropdown.jsx", - "line": 55, - "column": 10, - "index": 2006 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoPreviewWidget/index.jsx", + "line": 28, + "column": 4, + "index": 878 }, { - "filePath": "src/containers/LearnerDashboardHeader/ExpandedHeader/AuthenticatedUserDropdown.jsx", - "line": 58, - "column": 10, - "index": 2181 + "filePath": "src/files-and-videos/videos-page/transcript-settings/TranscriptSettings.jsx", + "line": 102, + "column": 18, + "index": 3618 }, { - "filePath": "src/containers/LearnerDashboardHeader/ExpandedHeader/AuthenticatedUserDropdown.jsx", - "line": 62, - "column": 12, - "index": 2368 + "filePath": "src/generic/CollapsableEditor.jsx", + "line": 19, + "column": 2, + "index": 373 }, { - "filePath": "src/containers/LearnerDashboardHeader/ExpandedHeader/AuthenticatedUserDropdown.jsx", - "line": 67, - "column": 10, - "index": 2557 + "filePath": "src/schedule-and-details/schedule-section/certificate-display-row/CertificateDisplayRow.jsx", + "line": 99, + "column": 6, + "index": 2859 + }, + { + "filePath": "src/studio-home/collapsible-state-with-action/index.jsx", + "line": 98, + "column": 4, + "index": 3245 } ], - "Card": [ + "Collapsible.Trigger": [ { - "filePath": "src/containers/CourseCard/index.jsx", - "line": 23, - "column": 6, - "index": 789 + "filePath": "src/content-tags-drawer/ContentTagsCollapsible.jsx", + "line": 380, + "column": 8, + "index": 13088 }, { - "filePath": "src/containers/RelatedProgramsModal/components/ProgramCard.jsx", - "line": 25, - "column": 4, - "index": 596 + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/AnswerWidget/AnswerOption.jsx", + "line": 126, + "column": 8, + "index": 3951 }, { - "filePath": "src/widgets/LookingForChallengeWidget/index.jsx", - "line": 21, - "column": 4, - "index": 699 + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/SettingsOption.jsx", + "line": 26, + "column": 10, + "index": 873 }, { - "filePath": "src/widgets/ProductRecommendations/components/ProductCard.jsx", - "line": 51, + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/CollapsibleFormWidget.jsx", + "line": 31, "column": 4, - "index": 1303 + "index": 858 }, { - "filePath": "src/widgets/RecommendationsPanel/components/CourseCard.jsx", - "line": 20, - "column": 6, - "index": 557 - } - ], - "Card.Body": [ + "filePath": "src/files-and-videos/videos-page/transcript-settings/TranscriptSettings.jsx", + "line": 105, + "column": 20, + "index": 3742 + }, { - "filePath": "src/containers/CourseCard/index.jsx", + "filePath": "src/generic/CollapsableEditor.jsx", "line": 27, - "column": 12, - "index": 1021 + "column": 4, + "index": 566 }, { - "filePath": "src/widgets/LookingForChallengeWidget/index.jsx", - "line": 26, - "column": 6, - "index": 866 + "filePath": "src/schedule-and-details/schedule-section/certificate-display-row/CertificateDisplayRow.jsx", + "line": 100, + "column": 8, + "index": 2890 }, { - "filePath": "src/widgets/RecommendationsPanel/components/CourseCard.jsx", - "line": 26, - "column": 10, - "index": 856 + "filePath": "src/studio-home/collapsible-state-with-action/index.jsx", + "line": 102, + "column": 6, + "index": 3448 } ], - "Card.Header": [ + "Collapsible.Visible": [ { - "filePath": "src/containers/CourseCard/index.jsx", + "filePath": "src/content-tags-drawer/ContentTagsCollapsible.jsx", + "line": 381, + "column": 10, + "index": 13159 + }, + { + "filePath": "src/content-tags-drawer/ContentTagsCollapsible.jsx", + "line": 385, + "column": 10, + "index": 13281 + }, + { + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/SettingsOption.jsx", "line": 28, - "column": 14, - "index": 1047 + "column": 12, + "index": 1028 }, { - "filePath": "src/containers/RelatedProgramsModal/components/ProgramCard.jsx", - "line": 39, + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/SettingsOption.jsx", + "line": 31, + "column": 12, + "index": 1155 + }, + { + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/CollapsibleFormWidget.jsx", + "line": 35, "column": 6, - "index": 1068 + "index": 1015 }, { - "filePath": "src/widgets/ProductRecommendations/components/ProductCard.jsx", - "line": 66, + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/CollapsibleFormWidget.jsx", + "line": 45, "column": 6, - "index": 1697 - } - ], - "Card.Section": [ + "index": 1624 + }, { - "filePath": "src/containers/CourseCard/index.jsx", + "filePath": "src/generic/CollapsableEditor.jsx", "line": 32, - "column": 14, - "index": 1212 + "column": 6, + "index": 775 }, { - "filePath": "src/widgets/ProductRecommendations/components/ProductCard.jsx", - "line": 79, + "filePath": "src/generic/CollapsableEditor.jsx", + "line": 37, "column": 6, - "index": 2070 + "index": 988 }, { - "filePath": "src/widgets/RecommendationsPanel/components/CourseCard.jsx", - "line": 27, - "column": 12, - "index": 918 - } - ], - "Card.Footer": [ + "filePath": "src/pages-and-resources/discussions/app-list/FeaturesList.jsx", + "line": 14, + "column": 8, + "index": 404 + }, { - "filePath": "src/containers/CourseCard/index.jsx", - "line": 35, - "column": 14, - "index": 1342 - } - ], - "Chip": [ + "filePath": "src/pages-and-resources/discussions/app-list/FeaturesList.jsx", + "line": 17, + "column": 8, + "index": 553 + }, { - "filePath": "src/containers/CourseFilterControls/ActiveCourseFilters.jsx", - "line": 20, + "filePath": "src/studio-home/collapsible-state-with-action/index.jsx", + "line": 104, "column": 8, - "index": 497 + "index": 3613 }, { - "filePath": "src/containers/MasqueradeBar/index.jsx", - "line": 47, - "column": 12, - "index": 1176 + "filePath": "src/studio-home/collapsible-state-with-action/index.jsx", + "line": 113, + "column": 8, + "index": 3874 } ], - "CloseSmall": [ + "KeyboardArrowDown": [ { - "filePath": "src/containers/CourseFilterControls/ActiveCourseFilters.jsx", - "line": 22, - "column": 21, - "index": 547 - } - ], - "Form.Checkbox": [ + "filePath": "src/content-tags-drawer/ContentTagsCollapsible.jsx", + "line": 382, + "column": 23, + "index": 13215 + }, { - "filePath": "src/containers/CourseFilterControls/components/Checkbox.jsx", - "line": 12, - "column": 4, - "index": 293 + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/SettingsOption.jsx", + "line": 29, + "column": 25, + "index": 1086 } ], - "Form.Group": [ + "KeyboardArrowUp": [ { - "filePath": "src/containers/CourseFilterControls/components/FilterForm.jsx", - "line": 22, - "column": 2, - "index": 411 + "filePath": "src/content-tags-drawer/ContentTagsCollapsible.jsx", + "line": 386, + "column": 23, + "index": 13335 }, { - "filePath": "src/containers/SelectSessionModal/index.jsx", - "line": 45, - "column": 6, - "index": 956 - } - ], - "Form.CheckboxSet": [ - { - "filePath": "src/containers/CourseFilterControls/components/FilterForm.jsx", - "line": 24, - "column": 4, - "index": 494 + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/SettingsOption.jsx", + "line": 32, + "column": 25, + "index": 1211 } ], - "Form.RadioSet": [ + "Collapsible.Body": [ { - "filePath": "src/containers/CourseFilterControls/components/SortForm.jsx", - "line": 19, - "column": 6, - "index": 455 + "filePath": "src/content-tags-drawer/ContentTagsCollapsible.jsx", + "line": 391, + "column": 8, + "index": 13486 }, { - "filePath": "src/containers/SelectSessionModal/index.jsx", - "line": 47, + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/AnswerWidget/AnswerOption.jsx", + "line": 110, "column": 8, - "index": 1034 + "index": 3480 }, { - "filePath": "src/containers/UnenrollConfirmModal/components/ReasonPane.jsx", - "line": 26, - "column": 6, - "index": 559 - } - ], - "Form.Radio": [ + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/CardSection.jsx", + "line": 18, + "column": 8, + "index": 424 + }, { - "filePath": "src/containers/CourseFilterControls/components/SortForm.jsx", - "line": 24, + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/CardSection.jsx", + "line": 25, "column": 8, - "index": 565 + "index": 711 }, { - "filePath": "src/containers/CourseFilterControls/components/SortForm.jsx", - "line": 27, + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/index.jsx", + "line": 105, + "column": 10, + "index": 3241 + }, + { + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/index.jsx", + "line": 119, "column": 8, - "index": 704 + "index": 3722 }, { - "filePath": "src/containers/SelectSessionModal/index.jsx", - "line": 54, - "column": 12, - "index": 1249 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/CollapsibleFormWidget.jsx", + "line": 52, + "column": 4, + "index": 1966 }, { - "filePath": "src/containers/SelectSessionModal/index.jsx", - "line": 59, - "column": 12, - "index": 1502 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoPreviewWidget/index.jsx", + "line": 33, + "column": 6, + "index": 999 }, { - "filePath": "src/containers/UnenrollConfirmModal/components/ReasonPane.jsx", - "line": 19, + "filePath": "src/generic/CollapsableEditor.jsx", + "line": 57, "column": 4, - "index": 375 + "index": 1593 }, { - "filePath": "src/containers/UnenrollConfirmModal/components/ReasonPane.jsx", - "line": 32, + "filePath": "src/schedule-and-details/schedule-section/certificate-display-row/CertificateDisplayRow.jsx", + "line": 104, "column": 8, - "index": 729 - } - ], - "Tune": [ - { - "filePath": "src/containers/CourseFilterControls/CourseFilterControls.jsx", - "line": 55, - "column": 20, - "index": 1166 - } - ], - "Sheet": [ + "index": 3150 + }, { - "filePath": "src/containers/CourseFilterControls/CourseFilterControls.jsx", - "line": 64, - "column": 12, - "index": 1348 + "filePath": "src/studio-home/collapsible-state-with-action/index.jsx", + "line": 124, + "column": 6, + "index": 4163 } ], - "ModalCloseButton": [ + "Chip": [ { - "filePath": "src/containers/CourseFilterControls/CourseFilterControls.jsx", - "line": 81, - "column": 16, - "index": 1985 - } - ], - "Close": [ + "filePath": "src/content-tags-drawer/ContentTagsCollapsible.jsx", + "line": 473, + "column": 8, + "index": 17084 + }, { - "filePath": "src/containers/CourseFilterControls/CourseFilterControls.jsx", - "line": 82, - "column": 29, - "index": 2068 + "filePath": "src/files-and-videos/generic/table-components/FilterStatus.jsx", + "line": 30, + "column": 10, + "index": 882 }, { - "filePath": "src/containers/MasqueradeBar/index.jsx", - "line": 49, - "column": 25, - "index": 1249 - } - ], - "ModalPopup": [ + "filePath": "src/files-and-videos/generic/table-components/GalleryCard.jsx", + "line": 76, + "column": 8, + "index": 2416 + }, { - "filePath": "src/containers/CourseFilterControls/CourseFilterControls.jsx", - "line": 87, - "column": 12, - "index": 2184 + "filePath": "src/taxonomy/manage-orgs/ManageOrgsModal.jsx", + "line": 181, + "column": 18, + "index": 5009 } ], - "useToggle": [ + "Tag": [ { - "filePath": "src/containers/CourseFilterControls/hooks.js", - "line": 18, - "column": 44, - "index": 411 + "filePath": "src/content-tags-drawer/ContentTagsCollapsible.jsx", + "line": 475, + "column": 22, + "index": 17143 }, { - "filePath": "src/containers/CourseFilterControls/hooks.test.js", - "line": 36, - "column": 6, - "index": 787 + "filePath": "src/content-tags-drawer/TagsTree.jsx", + "line": 27, + "column": 17, + "index": 731 }, { - "filePath": "src/containers/CourseFilterControls/hooks.test.js", - "line": 64, - "column": 6, - "index": 1668 + "filePath": "src/generic/tag-count/index.jsx", + "line": 9, + "column": 39, + "index": 290 } ], "useCheckboxSetValues": [ { - "filePath": "src/containers/CourseList/hooks.js", - "line": 22, - "column": 32, - "index": 620 - } - ], - "paragon": [ - { - "filePath": "src/containers/CourseList/hooks.test.js", - "line": 40, - "column": 2, - "index": 1075 + "filePath": "src/content-tags-drawer/ContentTagsCollapsibleHelper.jsx", + "line": 114, + "column": 48, + "index": 3893 }, { - "filePath": "src/containers/CourseList/hooks.test.js", - "line": 88, - "column": 8, - "index": 2978 - } - ], - "Pagination": [ - { - "filePath": "src/containers/CourseList/index.jsx", - "line": 52, - "column": 16, - "index": 1562 + "filePath": "src/files-and-videos/generic/table-components/sort-and-filter-modal/SortAndFilterModal.jsx", + "line": 32, + "column": 7, + "index": 1029 } ], - "Image": [ + "Sheet": [ { - "filePath": "src/containers/CourseList/NoCoursesView/index.jsx", + "filePath": "src/content-tags-drawer/ContentTagsDrawerSheet.jsx", "line": 21, "column": 6, - "index": 662 + "index": 739 }, { - "filePath": "src/containers/LearnerDashboardHeader/ConfirmEmailBanner/index.jsx", + "filePath": "src/files-and-videos/videos-page/transcript-settings/TranscriptSettings.jsx", "line": 54, - "column": 12, - "index": 1453 + "column": 4, + "index": 1862 } ], - "Search": [ + "Collapsible": [ { - "filePath": "src/containers/CourseList/NoCoursesView/index.jsx", - "line": 32, + "filePath": "src/content-tags-drawer/tags-sidebar-controls/TagsSidebarBody.jsx", + "line": 72, "column": 20, - "index": 1008 + "index": 2111 }, { - "filePath": "src/widgets/RecommendationsPanel/LoadedView.jsx", - "line": 51, - "column": 24, - "index": 1772 - } - ], - "Container": [ - { - "filePath": "src/containers/Dashboard/DashboardLayout.jsx", - "line": 38, - "column": 4, - "index": 867 + "filePath": "src/files-and-videos/generic/DeleteConfirmationModal.jsx", + "line": 34, + "column": 6, + "index": 921 }, { - "filePath": "src/containers/RelatedProgramsModal/index.jsx", - "line": 42, - "column": 8, - "index": 1291 + "filePath": "src/pages-and-resources/discussions/app-list/FeaturesList.jsx", + "line": 10, + "column": 2, + "index": 312 }, { - "filePath": "src/widgets/ProductRecommendations/components/LoadedView.jsx", - "line": 25, - "column": 4, - "index": 931 + "filePath": "src/textbooks/textbook-card/TextbooksCard.jsx", + "line": 103, + "column": 14, + "index": 3419 } ], - "Row": [ - { - "filePath": "src/containers/Dashboard/DashboardLayout.jsx", - "line": 39, - "column": 6, - "index": 901 - }, + "ArrowDropDown": [ { - "filePath": "src/containers/Dashboard/DashboardLayout.jsx", - "line": 48, - "column": 6, - "index": 1252 - }, + "filePath": "src/content-tags-drawer/tags-sidebar-controls/TagsSidebarBody.jsx", + "line": 76, + "column": 49, + "index": 2337 + } + ], + "ArrowDropUp": [ { - "filePath": "src/containers/RelatedProgramsModal/index.jsx", - "line": 43, - "column": 10, - "index": 1313 + "filePath": "src/content-tags-drawer/tags-sidebar-controls/TagsSidebarBody.jsx", + "line": 77, + "column": 47, + "index": 2403 } ], - "Col": [ + "Close": [ { - "filePath": "src/containers/Dashboard/DashboardLayout.jsx", - "line": 40, - "column": 8, - "index": 915 - }, - { - "filePath": "src/containers/Dashboard/DashboardLayout.jsx", - "line": 43, - "column": 8, - "index": 1023 - }, - { - "filePath": "src/containers/Dashboard/DashboardLayout.jsx", - "line": 49, - "column": 8, - "index": 1266 + "filePath": "src/content-tags-drawer/TagsTree.jsx", + "line": 33, + "column": 15, + "index": 901 }, { - "filePath": "src/containers/RelatedProgramsModal/index.jsx", - "line": 45, - "column": 14, - "index": 1385 - } - ], - "Spinner": [ - { - "filePath": "src/containers/Dashboard/LoadingView.jsx", - "line": 11, - "column": 6, - "index": 261 + "filePath": "src/editors/containers/EditorContainer/components/TitleHeader/EditConfirmationButtons.jsx", + "line": 27, + "column": 13, + "index": 770 }, { - "filePath": "src/widgets/RecommendationsPanel/LoadingView.jsx", - "line": 10, - "column": 6, - "index": 302 - } - ], - "ModalDialog": [ - { - "filePath": "src/containers/EmailSettingsModal/index.jsx", - "line": 30, - "column": 4, - "index": 533 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/ImportTranscriptCard.jsx", + "line": 28, + "column": 13, + "index": 708 }, { - "filePath": "src/containers/EnterpriseDashboardModal/index.jsx", - "line": 25, - "column": 4, - "index": 569 + "filePath": "src/editors/containers/VideoUploadEditor/VideoUploader.jsx", + "line": 80, + "column": 15, + "index": 3019 }, { - "filePath": "src/containers/RelatedProgramsModal/index.jsx", - "line": 24, - "column": 4, - "index": 639 + "filePath": "src/editors/sharedComponents/SelectionModal/SearchSort.jsx", + "line": 50, + "column": 23, + "index": 1262 }, { - "filePath": "src/containers/SelectSessionModal/index.jsx", - "line": 35, - "column": 4, - "index": 733 + "filePath": "src/files-and-videos/generic/table-components/FilterStatus.jsx", + "line": 32, + "column": 23, + "index": 935 }, { - "filePath": "src/containers/UnenrollConfirmModal/index.jsx", - "line": 29, - "column": 4, - "index": 681 + "filePath": "src/files-and-videos/videos-page/transcript-settings/TranscriptSettings.jsx", + "line": 81, + "column": 55, + "index": 2785 }, { - "filePath": "src/widgets/RecommendationsPaintedDoorBtn/components/PaintedDoorModal/index.jsx", - "line": 26, - "column": 6, - "index": 754 + "filePath": "src/taxonomy/manage-orgs/ManageOrgsModal.jsx", + "line": 183, + "column": 31, + "index": 5076 } ], - "Form.Switch": [ + "RadioButtonUnchecked": [ { - "filePath": "src/containers/EmailSettingsModal/index.jsx", - "line": 38, - "column": 8, - "index": 784 + "filePath": "src/course-checklist/ChecklistSection/ChecklistItemBody.jsx", + "line": 55, + "column": 17, + "index": 2200 } ], - "PageBanner": [ + "ModeComment": [ { - "filePath": "src/containers/LearnerDashboardHeader/ConfirmEmailBanner/index.jsx", - "line": 33, - "column": 6, - "index": 739 + "filePath": "src/course-checklist/ChecklistSection/ChecklistItemComment.jsx", + "line": 24, + "column": 19, + "index": 967 } ], - "MarketingModal": [ + "EditIcon": [ { - "filePath": "src/containers/LearnerDashboardHeader/ConfirmEmailBanner/index.jsx", - "line": 47, - "column": 6, - "index": 1234 - } - ], - "ModalDialog.Hero": [ + "filePath": "src/course-outline/card-header/CardHeader.jsx", + "line": 136, + "column": 22, + "index": 3825 + }, { - "filePath": "src/containers/LearnerDashboardHeader/ConfirmEmailBanner/index.jsx", - "line": 53, - "column": 10, - "index": 1398 - } - ], - "AvatarButton": [ + "filePath": "src/course-unit/header-title/HeaderTitle.jsx", + "line": 74, + "column": 18, + "index": 2693 + }, { - "filePath": "src/containers/LearnerDashboardHeader/ExpandedHeader/AuthenticatedUserDropdown.jsx", - "line": 21, - "column": 14, - "index": 667 + "filePath": "src/textbooks/textbook-card/TextbooksCard.jsx", + "line": 87, + "column": 25, + "index": 2808 } ], - "Dropdown.Header": [ + "Dropdown": [ { - "filePath": "src/containers/LearnerDashboardHeader/ExpandedHeader/AuthenticatedUserDropdown.jsx", - "line": 34, - "column": 14, - "index": 1098 - } - ], - "Dropdown.Divider": [ + "filePath": "src/course-outline/card-header/CardHeader.jsx", + "line": 148, + "column": 10, + "index": 4305 + }, { - "filePath": "src/containers/LearnerDashboardHeader/ExpandedHeader/AuthenticatedUserDropdown.jsx", - "line": 43, - "column": 14, - "index": 1594 + "filePath": "src/course-unit/breadcrumbs/Breadcrumbs.jsx", + "line": 28, + "column": 10, + "index": 1032 }, { - "filePath": "src/containers/LearnerDashboardHeader/ExpandedHeader/AuthenticatedUserDropdown.jsx", - "line": 66, + "filePath": "src/course-unit/breadcrumbs/Breadcrumbs.jsx", + "line": 58, "column": 10, - "index": 2526 - } - ], - "FormLabel": [ + "index": 2120 + }, { - "filePath": "src/containers/MasqueradeBar/index.jsx", - "line": 43, - "column": 12, - "index": 994 + "filePath": "src/course-unit/course-sequence/sequence-navigation/SequenceNavigationDropdown.jsx", + "line": 19, + "column": 4, + "index": 503 }, { - "filePath": "src/containers/MasqueradeBar/index.jsx", - "line": 57, - "column": 12, - "index": 1421 - } - ], - "PersonSearch": [ + "filePath": "src/course-unit/course-sequence/sequence-navigation/SequenceNavigationDropdown.jsx", + "line": 38, + "column": 14, + "index": 1188 + }, { - "filePath": "src/containers/MasqueradeBar/index.jsx", - "line": 44, - "column": 25, - "index": 1072 + "filePath": "src/course-unit/course-sequence/sequence-navigation/SequenceNavigationDropdown.jsx", + "line": 47, + "column": 16, + "index": 1462 }, { - "filePath": "src/containers/MasqueradeBar/index.jsx", - "line": 58, - "column": 25, - "index": 1526 - } - ], - "FormGroup": [ + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/AnswerWidget/AnswersContainer.jsx", + "line": 47, + "column": 8, + "index": 1436 + }, { - "filePath": "src/containers/MasqueradeBar/index.jsx", - "line": 61, + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/HandoutWidget/index.jsx", + "line": 71, "column": 12, - "index": 1627 - } - ], - "FormControlFeedback": [ + "index": 2179 + }, { - "filePath": "src/containers/MasqueradeBar/index.jsx", - "line": 69, - "column": 16, - "index": 2031 - } - ], - "StatefulButton": [ + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/LanguageSelector.jsx", + "line": 89, + "column": 6, + "index": 2684 + }, { - "filePath": "src/containers/MasqueradeBar/index.jsx", - "line": 74, - "column": 12, - "index": 2235 - } - ], - "Card.ImageCap": [ + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/TranscriptActionMenu.jsx", + "line": 41, + "column": 4, + "index": 1486 + }, { - "filePath": "src/containers/RelatedProgramsModal/components/ProgramCard.jsx", - "line": 32, + "filePath": "src/editors/sharedComponents/SelectionModal/SearchSort.jsx", + "line": 78, "column": 6, - "index": 802 + "index": 2099 }, { - "filePath": "src/widgets/LookingForChallengeWidget/index.jsx", - "line": 22, - "column": 6, - "index": 771 + "filePath": "src/files-and-videos/generic/FileMenu.jsx", + "line": 25, + "column": 2, + "index": 471 }, { - "filePath": "src/widgets/ProductRecommendations/components/ProductCard.jsx", - "line": 60, + "filePath": "src/files-and-videos/generic/table-components/TableActions.jsx", + "line": 41, "column": 6, - "index": 1526 + "index": 1169 }, { - "filePath": "src/widgets/RecommendationsPanel/components/CourseCard.jsx", + "filePath": "src/files-and-videos/videos-page/transcript-settings/FormDropdown.jsx", "line": 22, - "column": 10, - "index": 746 - } - ], - "ModalDialog.Header": [ - { - "filePath": "src/containers/RelatedProgramsModal/index.jsx", - "line": 34, - "column": 6, - "index": 908 + "column": 4, + "index": 524 }, { - "filePath": "src/containers/RelatedProgramsModal/index.jsx", - "line": 37, - "column": 6, - "index": 1062 + "filePath": "src/generic/create-or-rerun-course/CreateOrRerunCourseForm.jsx", + "line": 178, + "column": 4, + "index": 5654 }, { - "filePath": "src/widgets/RecommendationsPaintedDoorBtn/components/PaintedDoorModal/index.jsx", - "line": 34, + "filePath": "src/schedule-and-details/details-section/index.jsx", + "line": 26, "column": 8, - "index": 927 - } - ], - "ModalDialog.Body": [ + "index": 944 + }, { - "filePath": "src/containers/RelatedProgramsModal/index.jsx", - "line": 40, + "filePath": "src/schedule-and-details/requirements-section/index.jsx", + "line": 35, "column": 6, - "index": 1178 + "index": 1131 }, { - "filePath": "src/widgets/RecommendationsPaintedDoorBtn/components/PaintedDoorModal/index.jsx", - "line": 39, - "column": 8, - "index": 1130 - } - ], - "Form.Label": [ - { - "filePath": "src/containers/SelectSessionModal/index.jsx", - "line": 46, - "column": 8, - "index": 994 - } - ], - "Form.Control": [ - { - "filePath": "src/containers/UnenrollConfirmModal/components/ReasonPane.jsx", - "line": 33, - "column": 10, - "index": 788 - } - ], - "ArrowForward": [ - { - "filePath": "src/widgets/LookingForChallengeWidget/index.jsx", - "line": 15, - "column": 54, - "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, + "filePath": "src/schedule-and-details/schedule-section/certificate-display-row/CertificateDisplayRow.jsx", + "line": 128, "column": 10, - "index": 1762 + "index": 3989 }, { - "filePath": "src/widgets/ProductRecommendations/components/ProductCard.jsx", - "line": 74, - "column": 10, - "index": 1927 + "filePath": "src/studio-home/tabs-section/courses-tab/courses-filters/courses-filter-menu/index.jsx", + "line": 32, + "column": 4, + "index": 994 }, { - "filePath": "src/widgets/RecommendationsPanel/components/CourseCard.jsx", - "line": 29, - "column": 16, - "index": 1036 - } - ], - "ChevronRight": [ - { - "filePath": "src/widgets/ProductRecommendations/components/ProductCardHeader.jsx", - "line": 63, - "column": 21, - "index": 2108 - } - ], - "ModalDialog.Title": [ - { - "filePath": "src/widgets/RecommendationsPaintedDoorBtn/components/PaintedDoorModal/index.jsx", - "line": 35, - "column": 10, - "index": 958 - } - ], - "ModalDialog.Footer": [ + "filePath": "src/taxonomy/taxonomy-menu/TaxonomyMenu.jsx", + "line": 142, + "column": 4, + "index": 4295 + }, { - "filePath": "src/widgets/RecommendationsPaintedDoorBtn/components/PaintedDoorModal/index.jsx", - "line": 45, + "filePath": "src/taxonomy/TaxonomyListPage.jsx", + "line": 55, "column": 8, - "index": 1377 + "index": 1413 } ], - "ModalDialog.CloseButton": [ + "Dropdown.Toggle": [ { - "filePath": "src/widgets/RecommendationsPaintedDoorBtn/components/PaintedDoorModal/index.jsx", - "line": 47, + "filePath": "src/course-outline/card-header/CardHeader.jsx", + "line": 149, "column": 12, - "index": 1432 + "index": 4404 }, { - "filePath": "src/widgets/RecommendationsPaintedDoorBtn/components/PaintedDoorModal/index.jsx", - "line": 50, + "filePath": "src/course-unit/breadcrumbs/Breadcrumbs.jsx", + "line": 29, "column": 12, - "index": 1613 - } - ] - } - }, - { - "version": "20.45.4", - "name": "frontend-app-learner-portal-enterprise", - "repository": { - "type": "git", - "url": "https://github.com/openedx/frontend-app-learner-portal-enterprise.git" - }, - "folderName": "frontend-app-learner-portal-enterprise", - "usages": { - "Container": [ - { - "filePath": "src/components/academies/AcademyDetailPage.jsx", - "line": 46, - "column": 4, - "index": 1400 + "index": 1055 }, { - "filePath": "src/components/app/LoginRefresh.jsx", - "line": 30, - "column": 6, - "index": 1012 + "filePath": "src/course-unit/breadcrumbs/Breadcrumbs.jsx", + "line": 59, + "column": 12, + "index": 2143 }, { - "filePath": "src/components/course/course-header/CourseHeader.jsx", - "line": 64, + "filePath": "src/course-unit/course-sequence/sequence-navigation/SequenceNavigationDropdown.jsx", + "line": 20, "column": 6, - "index": 2008 - }, - { - "filePath": "src/components/course/CourseEnrollmentFailedAlert.jsx", - "line": 109, - "column": 4, - "index": 3735 + "index": 561 }, { - "filePath": "src/components/course/CoursePage.jsx", - "line": 253, - "column": 6, - "index": 8277 + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/AnswerWidget/AnswersContainer.jsx", + "line": 48, + "column": 10, + "index": 1457 }, { - "filePath": "src/components/course/CourseReview.jsx", - "line": 36, - "column": 4, - "index": 1894 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/HandoutWidget/index.jsx", + "line": 72, + "column": 14, + "index": 2204 }, { - "filePath": "src/components/course/LicenseRequestedAlert.jsx", - "line": 50, - "column": 4, - "index": 1922 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/LanguageSelector.jsx", + "line": 92, + "column": 8, + "index": 2741 }, { - "filePath": "src/components/course/routes/CourseAbout.jsx", - "line": 52, + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/TranscriptActionMenu.jsx", + "line": 42, "column": 6, - "index": 1759 + "index": 1503 }, { - "filePath": "src/components/course/routes/ExternalCourseEnrollment.jsx", - "line": 88, + "filePath": "src/editors/sharedComponents/SelectionModal/SearchSort.jsx", + "line": 79, "column": 8, - "index": 3463 + "index": 2118 }, { - "filePath": "src/components/course/routes/ExternalCourseEnrollmentConfirmation.jsx", - "line": 48, + "filePath": "src/files-and-videos/generic/FileMenu.jsx", + "line": 26, + "column": 4, + "index": 527 + }, + { + "filePath": "src/files-and-videos/generic/table-components/TableActions.jsx", + "line": 42, "column": 8, - "index": 2094 + "index": 1205 }, { - "filePath": "src/components/dashboard/DashboardPage.jsx", - "line": 90, + "filePath": "src/files-and-videos/videos-page/transcript-settings/FormDropdown.jsx", + "line": 25, "column": 6, - "index": 3727 + "index": 597 }, { - "filePath": "src/components/dashboard/main-content/course-enrollments/CourseEnrollmentsContextProvider.jsx", - "line": 74, + "filePath": "src/generic/create-or-rerun-course/CreateOrRerunCourseForm.jsx", + "line": 179, "column": 6, - "index": 2302 + "index": 5688 }, { - "filePath": "src/components/enterprise-banner/EnterpriseBanner.jsx", - "line": 15, - "column": 6, - "index": 584 + "filePath": "src/schedule-and-details/details-section/index.jsx", + "line": 27, + "column": 10, + "index": 986 }, { - "filePath": "src/components/enterprise-invite/EnterpriseInvitePage.jsx", - "line": 77, + "filePath": "src/schedule-and-details/requirements-section/index.jsx", + "line": 36, "column": 8, - "index": 3022 + "index": 1171 }, { - "filePath": "src/components/enterprise-page/EnterprisePage.jsx", - "line": 60, - "column": 6, - "index": 2044 + "filePath": "src/schedule-and-details/schedule-section/certificate-display-row/CertificateDisplayRow.jsx", + "line": 129, + "column": 12, + "index": 4034 }, { - "filePath": "src/components/enterprise-subsidy-requests/SubsidyRequestsContextProvider.jsx", - "line": 68, + "filePath": "src/studio-home/tabs-section/courses-tab/courses-filters/courses-filter-menu/index.jsx", + "line": 33, "column": 6, - "index": 2114 - }, - { - "filePath": "src/components/enterprise-user-subsidy/enterprise-offers/EnterpriseOffersBalanceAlert.jsx", - "line": 48, - "column": 4, - "index": 1665 + "index": 1044 }, { - "filePath": "src/components/enterprise-user-subsidy/UserSubsidy.jsx", - "line": 111, + "filePath": "src/taxonomy/taxonomy-menu/TaxonomyMenu.jsx", + "line": 143, "column": 6, - "index": 3165 + "index": 4396 }, { - "filePath": "src/components/error-page/ErrorPageContent.jsx", - "line": 14, - "column": 2, - "index": 380 - }, + "filePath": "src/taxonomy/TaxonomyListPage.jsx", + "line": 56, + "column": 10, + "index": 1466 + } + ], + "MoveVertIcon": [ { - "filePath": "src/components/error-page/ErrorPageHeader.jsx", - "line": 27, - "column": 8, - "index": 836 - }, + "filePath": "src/course-outline/card-header/CardHeader.jsx", + "line": 154, + "column": 19, + "index": 4641 + } + ], + "Dropdown.Menu": [ { - "filePath": "src/components/executive-education-2u/EnrollmentCompleted.jsx", - "line": 17, - "column": 6, - "index": 687 + "filePath": "src/course-outline/card-header/CardHeader.jsx", + "line": 158, + "column": 12, + "index": 4764 }, { - "filePath": "src/components/executive-education-2u/ExecutiveEducation2UPage.jsx", - "line": 111, - "column": 6, - "index": 4324 + "filePath": "src/course-unit/breadcrumbs/Breadcrumbs.jsx", + "line": 36, + "column": 12, + "index": 1398 }, { - "filePath": "src/components/license-activation/LicenseActivation.jsx", - "line": 64, - "column": 6, - "index": 2044 + "filePath": "src/course-unit/breadcrumbs/Breadcrumbs.jsx", + "line": 66, + "column": 12, + "index": 2486 }, { - "filePath": "src/components/license-activation/LicenseActivationErrorAlert.jsx", - "line": 10, - "column": 4, - "index": 261 + "filePath": "src/course-unit/course-sequence/sequence-navigation/SequenceNavigationDropdown.jsx", + "line": 26, + "column": 6, + "index": 843 }, { - "filePath": "src/components/NotFoundPage/index.jsx", - "line": 16, - "column": 4, - "index": 471 + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/AnswerWidget/AnswersContainer.jsx", + "line": 58, + "column": 10, + "index": 1753 }, { - "filePath": "src/components/pathway-progress/PathwayProgressListingPage.jsx", - "line": 32, - "column": 6, - "index": 877 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/HandoutWidget/index.jsx", + "line": 80, + "column": 14, + "index": 2496 }, { - "filePath": "src/components/pathway-progress/PathwayProgressPage.jsx", - "line": 38, - "column": 6, - "index": 1163 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/LanguageSelector.jsx", + "line": 102, + "column": 8, + "index": 3050 }, { - "filePath": "src/components/pathway-progress/PathwayProgressPage.jsx", + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/TranscriptActionMenu.jsx", "line": 50, - "column": 10, - "index": 1553 - }, - { - "filePath": "src/components/pathway/PathwayModal.jsx", - "line": 103, "column": 6, - "index": 3089 + "index": 1731 }, { - "filePath": "src/components/program-progress/ProgramProgressPage.jsx", - "line": 74, - "column": 6, - "index": 2737 + "filePath": "src/editors/sharedComponents/SelectionModal/SearchSort.jsx", + "line": 87, + "column": 8, + "index": 2383 }, { - "filePath": "src/components/program-progress/ProgramProgressPage.jsx", - "line": 85, - "column": 10, - "index": 3115 + "filePath": "src/files-and-videos/generic/FileMenu.jsx", + "line": 34, + "column": 4, + "index": 710 }, { - "filePath": "src/components/program/ProgramDataBar.jsx", - "line": 23, + "filePath": "src/files-and-videos/generic/table-components/TableActions.jsx", + "line": 49, "column": 8, - "index": 954 + "index": 1438 }, { - "filePath": "src/components/program/ProgramPage.jsx", - "line": 51, + "filePath": "src/files-and-videos/videos-page/transcript-settings/FormDropdown.jsx", + "line": 34, "column": 6, - "index": 1592 + "index": 927 }, { - "filePath": "src/components/program/ProgramPage.jsx", - "line": 75, - "column": 8, - "index": 2342 + "filePath": "src/generic/create-or-rerun-course/CreateOrRerunCourseForm.jsx", + "line": 182, + "column": 6, + "index": 5866 }, { - "filePath": "src/components/search/AssignmentsOnlyEmptyState.jsx", - "line": 18, - "column": 4, - "index": 664 + "filePath": "src/schedule-and-details/details-section/index.jsx", + "line": 30, + "column": 10, + "index": 1125 }, { - "filePath": "src/components/search/content-highlights/ContentHighlights.jsx", - "line": 26, - "column": 6, - "index": 722 + "filePath": "src/schedule-and-details/requirements-section/index.jsx", + "line": 39, + "column": 8, + "index": 1310 }, { - "filePath": "src/components/search/content-highlights/ContentHighlights.jsx", - "line": 37, - "column": 4, - "index": 915 + "filePath": "src/schedule-and-details/schedule-section/certificate-display-row/CertificateDisplayRow.jsx", + "line": 132, + "column": 12, + "index": 4196 }, { - "filePath": "src/components/search/SearchAcademy.jsx", - "line": 19, + "filePath": "src/studio-home/tabs-section/courses-tab/courses-filters/courses-filter-menu/index.jsx", + "line": 42, "column": 6, - "index": 787 + "index": 1287 }, { - "filePath": "src/components/search/SearchAcademy.jsx", - "line": 30, + "filePath": "src/taxonomy/taxonomy-menu/TaxonomyMenu.jsx", + "line": 153, "column": 6, - "index": 1196 + "index": 4795 }, { - "filePath": "src/components/search/SearchAcademy.jsx", - "line": 38, - "column": 6, - "index": 1404 + "filePath": "src/taxonomy/TaxonomyListPage.jsx", + "line": 63, + "column": 10, + "index": 1747 + } + ], + "Truncate": [ + { + "filePath": "src/course-outline/card-header/TitleButton.jsx", + "line": 42, + "column": 8, + "index": 987 }, { - "filePath": "src/components/search/SearchResults.jsx", - "line": 90, + "filePath": "src/course-outline/card-header/TitleLink.jsx", + "line": 17, "column": 4, - "index": 2376 + "index": 372 }, { - "filePath": "src/components/site-header/SiteHeader.jsx", - "line": 19, - "column": 6, - "index": 723 + "filePath": "src/course-outline/page-alerts/PageAlerts.jsx", + "line": 381, + "column": 28, + "index": 11564 }, { - "filePath": "src/components/skills-quiz/SkillsQuiz.jsx", - "line": 22, + "filePath": "src/course-outline/page-alerts/PageAlerts.jsx", + "line": 390, + "column": 28, + "index": 11850 + }, + { + "filePath": "src/editors/containers/EditorContainer/components/TitleHeader/index.jsx", + "line": 52, "column": 6, - "index": 630 + "index": 1327 }, { - "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", - "line": 186, + "filePath": "src/editors/sharedComponents/SelectionModal/GalleryCard.jsx", + "line": 69, + "column": 12, + "index": 2317 + }, + { + "filePath": "src/files-and-videos/files-page/FileInfoModalSidebar.jsx", + "line": 60, "column": 10, - "index": 7160 - } - ], - "Skeleton": [ + "index": 1504 + }, { - "filePath": "src/components/academies/AcademyDetailPage.jsx", - "line": 48, + "filePath": "src/files-and-videos/files-page/FileInfoModalSidebar.jsx", + "line": 77, "column": 10, - "index": 1481 + "index": 2053 }, { - "filePath": "src/components/academies/AcademyDetailPage.jsx", - "line": 63, + "filePath": "src/files-and-videos/generic/DeleteConfirmationModal.jsx", + "line": 38, "column": 12, - "index": 1986 + "index": 1022 }, { - "filePath": "src/components/academies/AcademyDetailPage.jsx", - "line": 67, - "column": 14, - "index": 2207 + "filePath": "src/files-and-videos/generic/InfoModal.jsx", + "line": 51, + "column": 12, + "index": 1245 }, { - "filePath": "src/components/academies/AcademyDetailPage.jsx", + "filePath": "src/files-and-videos/generic/table-components/GalleryCard.jsx", "line": 70, - "column": 31, - "index": 2407 + "column": 10, + "index": 2136 }, { - "filePath": "src/components/course/CourseSidebarPrice.jsx", - "line": 37, - "column": 11, - "index": 1718 + "filePath": "src/files-and-videos/videos-page/upload-modal/UploadProgressList.jsx", + "line": 28, + "column": 12, + "index": 894 }, { - "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/BaseCourseCard.jsx", - "line": 506, - "column": 12, - "index": 14265 + "filePath": "src/group-configurations/common/TitleButton.jsx", + "line": 30, + "column": 10, + "index": 843 }, { - "filePath": "src/components/executive-education-2u/ExecutiveEducation2UPage.jsx", - "line": 125, - "column": 16, - "index": 4795 + "filePath": "src/group-configurations/experiment-configurations-section/ExperimentCardGroup.jsx", + "line": 17, + "column": 10, + "index": 501 + } + ], + "Row": [ + { + "filePath": "src/course-outline/CourseOutline.jsx", + "line": 230, + "column": 6, + "index": 7173 }, { - "filePath": "src/components/executive-education-2u/ExecutiveEducation2UPage.jsx", - "line": 130, - "column": 16, - "index": 4997 + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/GroupFeedback/GroupFeedbackRow.jsx", + "line": 40, + "column": 6, + "index": 1020 }, { - "filePath": "src/components/executive-education-2u/ExecutiveEducation2UPage.jsx", - "line": 152, - "column": 16, - "index": 6079 + "filePath": "src/editors/sharedComponents/DraggableList/SortableItem.jsx", + "line": 32, + "column": 4, + "index": 718 }, { - "filePath": "src/components/executive-education-2u/ExecutiveEducation2UPage.jsx", - "line": 160, - "column": 16, - "index": 6356 + "filePath": "src/editors/sharedComponents/ErrorBoundary/ErrorPage.jsx", + "line": 32, + "column": 6, + "index": 1045 }, { - "filePath": "src/components/pathway/PathwayModal.jsx", - "line": 80, - "column": 28, - "index": 2473 + "filePath": "src/editors/sharedComponents/ErrorBoundary/ErrorPage.jsx", + "line": 42, + "column": 10, + "index": 1321 }, { - "filePath": "src/components/pathway/PathwayModal.jsx", - "line": 92, - "column": 8, - "index": 2838 + "filePath": "src/files-and-videos/generic/table-components/FilterStatus.jsx", + "line": 27, + "column": 6, + "index": 733 }, { - "filePath": "src/components/pathway/PathwayModal.jsx", - "line": 106, - "column": 25, - "index": 3215 + "filePath": "src/files-and-videos/generic/UsageMetricsMessage.jsx", + "line": 39, + "column": 6, + "index": 1197 }, { - "filePath": "src/components/pathway/PathwayModal.jsx", - "line": 121, - "column": 25, - "index": 3809 + "filePath": "src/generic/drag-helper/SortableItem.jsx", + "line": 57, + "column": 4, + "index": 1211 }, { - "filePath": "src/components/pathway/PathwayModal.jsx", - "line": 136, - "column": 25, - "index": 4428 + "filePath": "src/group-configurations/index.jsx", + "line": 46, + "column": 6, + "index": 1583 }, { - "filePath": "src/components/pathway/PathwayModal.jsx", - "line": 152, - "column": 21, - "index": 4993 + "filePath": "src/studio-home/tabs-section/archived-tab/index.jsx", + "line": 22, + "column": 6, + "index": 613 }, { - "filePath": "src/components/pathway/PathwayModal.jsx", - "line": 160, + "filePath": "src/studio-home/tabs-section/archived-tab/index.jsx", + "line": 32, "column": 10, - "index": 5375 + "index": 820 }, { - "filePath": "src/components/search/content-highlights/ContentHighlightSet.jsx", - "line": 83, - "column": 27, - "index": 2645 + "filePath": "src/studio-home/tabs-section/libraries-tab/index.jsx", + "line": 22, + "column": 6, + "index": 604 }, { - "filePath": "src/components/search/popular-results/PopularResults.jsx", - "line": 30, + "filePath": "src/studio-home/tabs-section/libraries-tab/index.jsx", + "line": 32, "column": 10, - "index": 1022 + "index": 811 }, { - "filePath": "src/components/search/SearchAcademy.jsx", - "line": 20, - "column": 8, - "index": 849 + "filePath": "src/textbooks/Textbooks.jsx", + "line": 58, + "column": 6, + "index": 1878 + } + ], + "CheckCircleIcon": [ + { + "filePath": "src/course-outline/CourseOutline.jsx", + "line": 263, + "column": 22, + "index": 8496 }, { - "filePath": "src/components/search/SearchResults.jsx", - "line": 94, - "column": 12, - "index": 2591 + "filePath": "src/schedule-and-details/index.jsx", + "line": 181, + "column": 18, + "index": 5475 + } + ], + "IconAdd": [ + { + "filePath": "src/course-outline/CourseOutline.jsx", + "line": 418, + "column": 44, + "index": 17887 }, { - "filePath": "src/components/search/SearchResults.jsx", - "line": 116, - "column": 10, - "index": 3325 + "filePath": "src/course-outline/header-navigations/HeaderNavigations.jsx", + "line": 39, + "column": 24, + "index": 1062 }, { - "filePath": "src/components/skills-quiz/JobDescriptions.jsx", + "filePath": "src/course-outline/section-card/SectionCard.jsx", + "line": 254, + "column": 30, + "index": 7954 + }, + { + "filePath": "src/course-outline/subsection-card/SubsectionCard.jsx", + "line": 230, + "column": 30, + "index": 7511 + }, + { + "filePath": "src/course-team/add-team-member/AddTeamMember.jsx", "line": 20, - "column": 37, - "index": 1025 + "column": 20, + "index": 753 }, { - "filePath": "src/components/skills-quiz/SkillsCourses.jsx", - "line": 123, - "column": 12, - "index": 3847 - } - ], - "Breadcrumb": [ + "filePath": "src/course-team/CourseTeam.jsx", + "line": 83, + "column": 36, + "index": 2655 + }, { - "filePath": "src/components/academies/AcademyDetailPage.jsx", - "line": 51, - "column": 12, - "index": 1636 + "filePath": "src/grading-settings/grading-scale/GradingScale.jsx", + "line": 211, + "column": 13, + "index": 6999 }, { - "filePath": "src/components/course/course-header/CourseHeader.jsx", - "line": 69, - "column": 16, - "index": 2196 + "filePath": "src/grading-settings/GradingSettings.jsx", + "line": 213, + "column": 34, + "index": 8379 }, { - "filePath": "src/components/pathway-progress/PathwayProgressHeader.jsx", - "line": 19, - "column": 10, - "index": 799 + "filePath": "src/group-configurations/empty-placeholder/index.jsx", + "line": 24, + "column": 20, + "index": 785 }, { - "filePath": "src/components/program/ProgramHeader.jsx", - "line": 83, - "column": 12, - "index": 2888 + "filePath": "src/textbooks/empty-placeholder/EmptyPlaceholder.jsx", + "line": 14, + "column": 26, + "index": 536 } ], - "Chip": [ + "Toast": [ { - "filePath": "src/components/academies/AcademyDetailPage.jsx", - "line": 74, - "column": 16, - "index": 2609 + "filePath": "src/course-outline/CourseOutline.jsx", + "line": 484, + "column": 8, + "index": 20252 }, { - "filePath": "src/components/my-career/LevelBars.jsx", - "line": 18, - "column": 23, - "index": 398 + "filePath": "src/editors/containers/TextEditor/index.jsx", + "line": 88, + "column": 8, + "index": 2292 }, { - "filePath": "src/components/my-career/LevelBars.jsx", - "line": 20, - "column": 23, - "index": 526 + "filePath": "src/files-and-videos/generic/ApiStatusToast.jsx", + "line": 23, + "column": 4, + "index": 445 }, { - "filePath": "src/components/TagCloud/index.jsx", - "line": 9, - "column": 6, - "index": 248 + "filePath": "src/generic/processing-notification/index.jsx", + "line": 12, + "column": 2, + "index": 305 + }, + { + "filePath": "src/taxonomy/TaxonomyLayout.jsx", + "line": 41, + "column": 10, + "index": 1449 } ], - "Spinner": [ + "CampaignIcon": [ { - "filePath": "src/components/academies/AcademyDetailPage.jsx", - "line": 82, + "filePath": "src/course-outline/page-alerts/PageAlerts.jsx", + "line": 75, "column": 14, - "index": 2876 + "index": 2542 }, { - "filePath": "src/components/academies/CourseCard.jsx", - "line": 48, + "filePath": "src/course-outline/page-alerts/PageAlerts.jsx", + "line": 267, + "column": 16, + "index": 8409 + } + ], + "InfoOutlineIcon": [ + { + "filePath": "src/course-outline/page-alerts/PageAlerts.jsx", + "line": 97, "column": 14, - "index": 1714 + "index": 3023 }, { - "filePath": "src/components/academies/CourseCard.jsx", - "line": 77, + "filePath": "src/course-outline/page-alerts/PageAlerts.jsx", + "line": 199, + "column": 16, + "index": 6055 + }, + { + "filePath": "src/course-unit/sidebar/PublishControls.jsx", + "line": 68, "column": 14, - "index": 2823 + "index": 2534 }, { - "filePath": "src/components/course/EnrollModal.jsx", - "line": 94, - "column": 24, - "index": 3065 + "filePath": "src/course-unit/sidebar/PublishControls.jsx", + "line": 78, + "column": 14, + "index": 3058 } ], - "CardGrid": [ + "WarningIcon": [ { - "filePath": "src/components/academies/CourseCard.jsx", - "line": 52, - "column": 12, - "index": 1847 + "filePath": "src/course-outline/page-alerts/PageAlerts.jsx", + "line": 134, + "column": 16, + "index": 4062 }, { - "filePath": "src/components/academies/CourseCard.jsx", - "line": 81, - "column": 12, - "index": 2956 + "filePath": "src/course-outline/page-alerts/PageAlerts.jsx", + "line": 299, + "column": 16, + "index": 9245 }, { - "filePath": "src/components/course/course-header/CourseRunCards.jsx", - "line": 27, - "column": 4, - "index": 793 + "filePath": "src/course-outline/page-alerts/PageAlerts.jsx", + "line": 326, + "column": 16, + "index": 10010 }, { - "filePath": "src/components/course/CourseRecommendations.jsx", - "line": 16, - "column": 10, - "index": 610 + "filePath": "src/course-outline/xblock-status/GradingPolicyAlert.jsx", + "line": 29, + "column": 77, + "index": 725 }, { - "filePath": "src/components/course/CourseRecommendations.jsx", - "line": 26, - "column": 10, - "index": 996 + "filePath": "src/course-unit/clipboard/paste-notification/index.jsx", + "line": 47, + "column": 16, + "index": 1779 }, { - "filePath": "src/components/my-career/SkillsRecommendationCourses.jsx", - "line": 88, - "column": 6, - "index": 2712 + "filePath": "src/course-unit/CourseUnit.jsx", + "line": 125, + "column": 24, + "index": 4355 }, { - "filePath": "src/components/pathway-progress/PathwayProgressListingPage.jsx", - "line": 41, - "column": 8, - "index": 1098 + "filePath": "src/generic/configure-modal/AdvancedTab.jsx", + "line": 115, + "column": 41, + "index": 3425 }, { - "filePath": "src/components/program-progress/ProgramListingPage.jsx", - "line": 37, - "column": 8, - "index": 1019 + "filePath": "src/generic/configure-modal/AdvancedTab.jsx", + "line": 120, + "column": 41, + "index": 3659 }, { - "filePath": "src/components/search/popular-results/PopularResults.jsx", - "line": 34, - "column": 8, - "index": 1134 + "filePath": "src/generic/internet-connection-alert/index.jsx", + "line": 53, + "column": 12, + "index": 1408 }, { - "filePath": "src/components/search/popular-results/PopularResults.jsx", - "line": 41, - "column": 10, - "index": 1436 - }, - { - "filePath": "src/components/search/SearchAcademy.jsx", - "line": 21, - "column": 8, - "index": 910 + "filePath": "src/generic/saving-error-alert/SavingErrorAlert.jsx", + "line": 42, + "column": 12, + "index": 1212 }, { - "filePath": "src/components/search/SearchAcademy.jsx", - "line": 45, - "column": 10, - "index": 1767 + "filePath": "src/schedule-and-details/index.jsx", + "line": 384, + "column": 16, + "index": 13534 }, { - "filePath": "src/components/search/SearchResults.jsx", - "line": 117, - "column": 10, - "index": 3382 - }, + "filePath": "src/studio-home/processing-courses/course-item/index.jsx", + "line": 66, + "column": 27, + "index": 2010 + } + ], + "ErrorIcon": [ { - "filePath": "src/components/search/SearchResults.jsx", - "line": 124, - "column": 10, - "index": 3679 + "filePath": "src/course-outline/page-alerts/PageAlerts.jsx", + "line": 386, + "column": 18, + "index": 11712 }, { - "filePath": "src/components/skills-quiz/CardLoadingSkeleton.jsx", - "line": 8, - "column": 2, - "index": 202 + "filePath": "src/course-unit/clipboard/paste-notification/index.jsx", + "line": 70, + "column": 16, + "index": 2526 }, { - "filePath": "src/components/skills-quiz/JobCardComponent.jsx", - "line": 15, - "column": 4, - "index": 474 + "filePath": "src/course-updates/course-update/CourseUpdate.jsx", + "line": 25, + "column": 23, + "index": 844 }, { - "filePath": "src/components/skills-quiz/SearchCourseCard.jsx", - "line": 110, - "column": 6, - "index": 3665 + "filePath": "src/course-updates/CourseUpdates.jsx", + "line": 84, + "column": 20, + "index": 3064 }, { - "filePath": "src/components/skills-quiz/SearchPathways.jsx", + "filePath": "src/course-updates/CourseUpdates.jsx", "line": 92, - "column": 6, - "index": 3029 + "column": 20, + "index": 3399 }, { - "filePath": "src/components/skills-quiz/SearchProgramCard.jsx", - "line": 184, - "column": 6, - "index": 6054 + "filePath": "src/course-updates/CourseUpdates.jsx", + "line": 100, + "column": 20, + "index": 3722 }, { - "filePath": "src/components/skills-quiz/SkillsCourses.jsx", - "line": 152, - "column": 10, - "index": 4877 - } - ], - "Card": [ - { - "filePath": "src/components/academies/SearchAcademyCard.jsx", - "line": 16, - "column": 4, - "index": 389 + "filePath": "src/course-updates/CourseUpdates.jsx", + "line": 108, + "column": 20, + "index": 4037 }, { - "filePath": "src/components/course/course-header/CourseRunCard.jsx", - "line": 45, - "column": 4, - "index": 1249 + "filePath": "src/course-updates/CourseUpdates.jsx", + "line": 116, + "column": 20, + "index": 4358 }, { - "filePath": "src/components/course/course-header/deprecated/CourseRunCard.jsx", - "line": 210, - "column": 4, - "index": 5590 + "filePath": "src/course-updates/CourseUpdates.jsx", + "line": 124, + "column": 20, + "index": 4676 }, { - "filePath": "src/components/course/CourseRecommendationCard.jsx", - "line": 41, - "column": 4, - "index": 1539 + "filePath": "src/course-updates/update-form/UpdateForm.jsx", + "line": 94, + "column": 31, + "index": 3191 }, { - "filePath": "src/components/dashboard/sidebar/DashboardSidebar.jsx", - "line": 10, - "column": 4, - "index": 267 + "filePath": "src/export-page/export-modal-error/ExportModalError.jsx", + "line": 44, + "column": 12, + "index": 1753 + } + ], + "Bubble": [ + { + "filePath": "src/course-outline/section-card/SectionCard.jsx", + "line": 231, + "column": 16, + "index": 7053 }, { - "filePath": "src/components/dashboard/sidebar/SidebarCard.jsx", - "line": 11, - "column": 2, - "index": 198 + "filePath": "src/studio-home/collapsible-state-with-action/index.jsx", + "line": 105, + "column": 10, + "index": 3656 }, { - "filePath": "src/components/executive-education-2u/components/CourseSummaryCard.jsx", - "line": 27, - "column": 4, - "index": 855 + "filePath": "src/studio-home/collapsible-state-with-action/index.jsx", + "line": 114, + "column": 10, + "index": 3915 + } + ], + "CheckIcon": [ + { + "filePath": "src/course-outline/xblock-status/GradingTypeAndDueDate.jsx", + "line": 46, + "column": 44, + "index": 1258 + } + ], + "CalendarIcon": [ + { + "filePath": "src/course-outline/xblock-status/GradingTypeAndDueDate.jsx", + "line": 66, + "column": 44, + "index": 1873 }, { - "filePath": "src/components/executive-education-2u/components/EnrollmentCompletedSummaryCard.jsx", + "filePath": "src/course-updates/update-form/UpdateForm.jsx", + "line": 69, + "column": 25, + "index": 2048 + } + ], + "HideIcon": [ + { + "filePath": "src/course-outline/xblock-status/HideAfterDueMessage.jsx", "line": 15, - "column": 2, - "index": 379 + "column": 44, + "index": 484 + } + ], + "ClockIcon": [ + { + "filePath": "src/course-outline/xblock-status/ReleaseStatus.jsx", + "line": 37, + "column": 44, + "index": 1034 + } + ], + "DeleteOutline": [ + { + "filePath": "src/course-team/course-team-member/CourseTeamMember.jsx", + "line": 56, + "column": 19, + "index": 1899 }, { - "filePath": "src/components/executive-education-2u/components/RegistrationSummaryCard.jsx", - "line": 10, - "column": 2, - "index": 295 + "filePath": "src/course-updates/course-update/CourseUpdate.jsx", + "line": 40, + "column": 17, + "index": 1502 }, { - "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", - "line": 200, - "column": 10, - "index": 7234 + "filePath": "src/custom-pages/CustomPageCard.jsx", + "line": 97, + "column": 15, + "index": 3009 }, { - "filePath": "src/components/my-career/CategoryCard.jsx", - "line": 124, - "column": 4, - "index": 4306 + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/AnswerWidget/AnswerOption.jsx", + "line": 133, + "column": 15, + "index": 4273 }, { - "filePath": "src/components/pathway-progress/PathwayNode.jsx", - "line": 35, - "column": 8, - "index": 1020 + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/GroupFeedback/GroupFeedbackRow.jsx", + "line": 28, + "column": 15, + "index": 701 }, { - "filePath": "src/components/pathway-progress/PathwayProgressCard.jsx", - "line": 18, - "column": 4, - "index": 830 + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/HintRow.jsx", + "line": 41, + "column": 13, + "index": 980 }, { - "filePath": "src/components/pathway-progress/SubscriptionStatusCard.jsx", - "line": 26, - "column": 6, - "index": 963 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseSelector.jsx", + "line": 57, + "column": 19, + "index": 1792 }, { - "filePath": "src/components/pathway/SearchPathwayCard.jsx", - "line": 102, - "column": 4, - "index": 2926 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/ThumbnailWidget/index.jsx", + "line": 98, + "column": 19, + "index": 2921 }, { - "filePath": "src/components/program-progress/ProgramListingCard.jsx", - "line": 58, - "column": 4, - "index": 1847 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/Transcript.jsx", + "line": 93, + "column": 21, + "index": 2972 }, { - "filePath": "src/components/search/AssignmentsOnlyEmptyState.jsx", - "line": 44, - "column": 10, - "index": 1457 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoSourceWidget/index.jsx", + "line": 116, + "column": 19, + "index": 3819 }, { - "filePath": "src/components/search/content-highlights/HighlightedContentCard.jsx", - "line": 55, - "column": 4, - "index": 1305 + "filePath": "src/files-and-videos/videos-page/info-sidebar/transcript-item/Transcript.jsx", + "line": 97, + "column": 19, + "index": 2912 }, { - "filePath": "src/components/search/SearchCourseCard.jsx", - "line": 94, + "filePath": "src/taxonomy/import-tags/ImportTagsWizard.jsx", + "line": 141, + "column": 21, + "index": 4256 + } + ], + "StandardModal": [ + { + "filePath": "src/course-unit/add-component/add-component-modals/ModalContainer.jsx", + "line": 23, "column": 4, - "index": 2649 + "index": 494 + } + ], + "ArrowDropDownIcon": [ + { + "filePath": "src/course-unit/breadcrumbs/Breadcrumbs.jsx", + "line": 32, + "column": 21, + "index": 1273 }, { - "filePath": "src/components/search/SearchProgramCard.jsx", - "line": 99, - "column": 4, - "index": 2822 + "filePath": "src/course-unit/breadcrumbs/Breadcrumbs.jsx", + "line": 62, + "column": 21, + "index": 2361 + } + ], + "ChevronRightIcon": [ + { + "filePath": "src/course-unit/breadcrumbs/Breadcrumbs.jsx", + "line": 51, + "column": 17, + "index": 1907 + } + ], + "InfoIcon": [ + { + "filePath": "src/course-unit/clipboard/paste-notification/index.jsx", + "line": 87, + "column": 16, + "index": 3073 }, { - "filePath": "src/components/skills-quiz/CardLoadingSkeleton.jsx", - "line": 10, - "column": 6, - "index": 276 + "filePath": "src/generic/create-or-rerun-course/CreateOrRerunCourseForm.jsx", + "line": 210, + "column": 18, + "index": 6630 + } + ], + "useWindowSize": [ + { + "filePath": "src/course-unit/course-sequence/hooks.js", + "line": 80, + "column": 21, + "index": 3400 }, { - "filePath": "src/components/skills-quiz/CourseCard.jsx", - "line": 54, - "column": 4, - "index": 1890 + "filePath": "src/course-unit/course-sequence/sequence-navigation/SequenceNavigation.jsx", + "line": 36, + "column": 53, + "index": 1199 }, { - "filePath": "src/components/skills-quiz/JobCardComponent.jsx", - "line": 17, - "column": 8, - "index": 519 + "filePath": "src/course-unit/course-sequence/Sequence.jsx", + "line": 21, + "column": 53, + "index": 697 }, { - "filePath": "src/components/skills-quiz/SearchProgramCard.jsx", - "line": 188, - "column": 12, - "index": 6231 + "filePath": "src/editors/sharedComponents/SourceCodeModal/index.jsx", + "line": 25, + "column": 21, + "index": 567 }, { - "filePath": "src/components/skills-quiz/TopSkillsOverview.jsx", - "line": 67, - "column": 8, - "index": 2230 + "filePath": "src/pages-and-resources/discussions/data/hook.js", + "line": 4, + "column": 21, + "index": 132 } ], - "Hyperlink": [ + "breakpoints": [ { - "filePath": "src/components/academies/SearchAcademyCard.jsx", - "line": 18, - "column": 10, - "index": 423 + "filePath": "src/course-unit/course-sequence/sequence-navigation/SequenceNavigation.jsx", + "line": 36, + "column": 77, + "index": 1223 }, { - "filePath": "src/components/app/AuthenticatedPage.jsx", - "line": 48, - "column": 8, - "index": 2136 + "filePath": "src/course-unit/course-sequence/Sequence.jsx", + "line": 21, + "column": 77, + "index": 721 }, { - "filePath": "src/components/course/CourseAssociatedPrograms.jsx", - "line": 35, - "column": 14, - "index": 1304 + "filePath": "src/pages-and-resources/discussions/app-list/AppCard.jsx", + "line": 54, + "column": 34, + "index": 1898 }, { - "filePath": "src/components/course/CourseMainContent.jsx", - "line": 76, - "column": 16, - "index": 2467 + "filePath": "src/pages-and-resources/discussions/app-list/AppList.jsx", + "line": 151, + "column": 28, + "index": 5180 }, { - "filePath": "src/components/course/CreatedBy.jsx", - "line": 38, - "column": 14, - "index": 1287 + "filePath": "src/pages-and-resources/discussions/app-list/AppList.test.jsx", + "line": 41, + "column": 39, + "index": 1676 }, { - "filePath": "src/components/course/CreatedBy.jsx", - "line": 56, - "column": 16, - "index": 1952 + "filePath": "src/pages-and-resources/discussions/app-list/AppList.test.jsx", + "line": 125, + "column": 22, + "index": 4210 }, { - "filePath": "src/components/course/data/utils.jsx", - "line": 610, - "column": 12, - "index": 21786 + "filePath": "src/pages-and-resources/discussions/app-list/AppList.test.jsx", + "line": 136, + "column": 22, + "index": 4680 }, { - "filePath": "src/components/course/data/utils.jsx", - "line": 626, - "column": 12, - "index": 22164 - }, + "filePath": "src/pages-and-resources/discussions/data/hook.js", + "line": 5, + "column": 28, + "index": 177 + } + ], + "PlusIcon": [ { - "filePath": "src/components/course/routes/ExternalCourseEnrollment.jsx", - "line": 100, - "column": 30, - "index": 3900 - }, + "filePath": "src/course-unit/course-sequence/sequence-navigation/SequenceNavigationTabs.jsx", + "line": 64, + "column": 24, + "index": 2558 + } + ], + "ContentPasteGoIcon": [ { - "filePath": "src/components/course/routes/ExternalCourseEnrollmentConfirmation.jsx", - "line": 51, - "column": 16, - "index": 2297 + "filePath": "src/course-unit/course-sequence/sequence-navigation/SequenceNavigationTabs.jsx", + "line": 73, + "column": 26, + "index": 2883 + } + ], + "SettingsIcon": [ + { + "filePath": "src/course-unit/header-title/HeaderTitle.jsx", + "line": 80, + "column": 18, + "index": 2887 + } + ], + "Form.Checkbox": [ + { + "filePath": "src/course-unit/sidebar/components/sidebar-footer/UnitVisibilityInfo.jsx", + "line": 50, + "column": 6, + "index": 1773 }, { - "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/ContinueLearningButton.jsx", - "line": 58, + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/GroupFeedback/GroupFeedbackRow.jsx", + "line": 42, "column": 10, - "index": 1962 + "index": 1088 }, { - "filePath": "src/components/dashboard/sidebar/SupportInformation.jsx", - "line": 50, - "column": 10, - "index": 1472 + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/ScoringCard.jsx", + "line": 75, + "column": 8, + "index": 2423 }, { - "filePath": "src/components/enterprise-invite/EnterpriseInvitePage.jsx", - "line": 85, - "column": 12, - "index": 3371 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/SocialShareWidget/index.jsx", + "line": 54, + "column": 6, + "index": 1623 }, { - "filePath": "src/components/enterprise-invite/EnterpriseInvitePage.jsx", - "line": 92, + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/index.jsx", + "line": 131, + "column": 14, + "index": 4133 + }, + { + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/index.jsx", + "line": 153, "column": 12, - "index": 3645 + "index": 5033 }, { - "filePath": "src/components/enterprise-invite/EnterpriseInvitePage.jsx", - "line": 101, - "column": 16, - "index": 3903 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoSourceWidget/index.jsx", + "line": 126, + "column": 10, + "index": 4135 }, { - "filePath": "src/components/executive-education-2u/components/CourseSummaryCard.jsx", - "line": 34, - "column": 12, - "index": 1006 + "filePath": "src/editors/sharedComponents/ImageUploadModal/ImageSettingsModal/AltTextControls.jsx", + "line": 47, + "column": 4, + "index": 1399 }, { - "filePath": "src/components/executive-education-2u/components/EnrollmentCompletedSummaryCard.jsx", - "line": 34, + "filePath": "src/files-and-videos/generic/table-components/sort-and-filter-modal/SortAndFilterModal.jsx", + "line": 151, "column": 14, - "index": 1106 + "index": 4524 }, { - "filePath": "src/components/executive-education-2u/components/EnrollmentCompletedSummaryCard.jsx", - "line": 53, - "column": 14, - "index": 2120 + "filePath": "src/generic/configure-modal/PrereqSettings.jsx", + "line": 92, + "column": 6, + "index": 2754 }, { - "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", - "line": 336, - "column": 26, - "index": 13307 + "filePath": "src/generic/configure-modal/UnitTab.jsx", + "line": 52, + "column": 10, + "index": 1275 }, { - "filePath": "src/components/my-career/SkillsRecommendationCourses.jsx", - "line": 97, + "filePath": "src/generic/configure-modal/UnitTab.jsx", + "line": 135, "column": 6, - "index": 2935 + "index": 4712 }, { - "filePath": "src/components/program/ProgramCourses.jsx", - "line": 74, - "column": 20, - "index": 2976 + "filePath": "src/generic/configure-modal/VisibilityTab.jsx", + "line": 109, + "column": 10, + "index": 3881 }, { - "filePath": "src/components/program/ProgramInstructors.jsx", - "line": 23, - "column": 12, - "index": 882 + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/DivisionByGroupFields.jsx", + "line": 118, + "column": 30, + "index": 4288 }, { - "filePath": "src/components/program/ProgramInstructors.jsx", - "line": 79, - "column": 14, - "index": 2741 + "filePath": "src/schedule-and-details/requirements-section/entrance-exam/index.jsx", + "line": 33, + "column": 10, + "index": 1015 }, { - "filePath": "src/components/skills-quiz/SimilarJobs.jsx", - "line": 54, + "filePath": "src/taxonomy/manage-orgs/ManageOrgsModal.jsx", + "line": 212, "column": 10, - "index": 1755 + "index": 6340 } ], - "Card.Header": [ + "EditOutline": [ { - "filePath": "src/components/academies/SearchAcademyCard.jsx", - "line": 23, - "column": 6, - "index": 572 + "filePath": "src/course-updates/course-handouts/CourseHandouts.jsx", + "line": 18, + "column": 15, + "index": 728 }, { - "filePath": "src/components/course/CourseRecommendationCard.jsx", - "line": 62, - "column": 6, - "index": 2046 - }, - { - "filePath": "src/components/dashboard/sidebar/SidebarCard.jsx", - "line": 12, - "column": 14, - "index": 246 - }, - { - "filePath": "src/components/executive-education-2u/components/CourseSummaryCard.jsx", + "filePath": "src/course-updates/course-update/CourseUpdate.jsx", "line": 32, - "column": 8, - "index": 962 + "column": 17, + "index": 1207 }, { - "filePath": "src/components/my-career/CategoryCard.jsx", - "line": 125, - "column": 6, - "index": 4338 + "filePath": "src/custom-pages/CustomPageCard.jsx", + "line": 77, + "column": 15, + "index": 2130 }, { - "filePath": "src/components/pathway-progress/PathwayProgressCard.jsx", - "line": 30, - "column": 6, - "index": 1180 - }, + "filePath": "src/editors/containers/EditorContainer/components/TitleHeader/index.jsx", + "line": 61, + "column": 13, + "index": 1557 + } + ], + "Breadcrumb": [ { - "filePath": "src/components/pathway/SearchPathwayCard.jsx", - "line": 115, - "column": 6, - "index": 3237 + "filePath": "src/custom-pages/CustomPages.jsx", + "line": 120, + "column": 10, + "index": 4094 }, { - "filePath": "src/components/program-progress/ProgramListingCard.jsx", - "line": 72, - "column": 6, - "index": 2243 + "filePath": "src/taxonomy/taxonomy-detail/TaxonomyDetailPage.jsx", + "line": 66, + "column": 10, + "index": 1746 }, { - "filePath": "src/components/search/content-highlights/HighlightedContentCard.jsx", - "line": 69, - "column": 6, - "index": 1727 - }, + "filePath": "src/textbooks/Textbooks.jsx", + "line": 76, + "column": 14, + "index": 2355 + } + ], + "ButtonGroup": [ { - "filePath": "src/components/search/SearchCourseCard.jsx", - "line": 110, - "column": 6, - "index": 3079 + "filePath": "src/editors/containers/EditorContainer/components/TitleHeader/EditConfirmationButtons.jsx", + "line": 16, + "column": 4, + "index": 401 }, { - "filePath": "src/components/search/SearchProgramCard.jsx", - "line": 114, + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/ResetCard.jsx", + "line": 41, "column": 6, - "index": 3216 - }, - { - "filePath": "src/components/skills-quiz/CardLoadingSkeleton.jsx", - "line": 12, - "column": 8, - "index": 342 + "index": 1612 }, { - "filePath": "src/components/skills-quiz/CourseCard.jsx", - "line": 67, + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/DiscussionRestriction.jsx", + "line": 63, "column": 6, - "index": 2280 - }, - { - "filePath": "src/components/skills-quiz/JobCardComponent.jsx", - "line": 18, - "column": 10, - "index": 573 + "index": 2358 }, { - "filePath": "src/components/skills-quiz/SearchProgramCard.jsx", - "line": 203, - "column": 14, - "index": 6768 + "filePath": "src/schedule-and-details/license-section/license-selector/index.jsx", + "line": 52, + "column": 6, + "index": 1460 } ], - "Card.Section": [ + "Check": [ { - "filePath": "src/components/academies/SearchAcademyCard.jsx", - "line": 24, - "column": 6, - "index": 608 + "filePath": "src/editors/containers/EditorContainer/components/TitleHeader/EditConfirmationButtons.jsx", + "line": 20, + "column": 13, + "index": 557 }, { - "filePath": "src/components/academies/SearchAcademyCard.jsx", - "line": 29, - "column": 6, - "index": 704 + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/TypeRow.jsx", + "line": 37, + "column": 43, + "index": 840 }, { - "filePath": "src/components/course/course-header/CourseRunCard.jsx", - "line": 46, - "column": 6, - "index": 1262 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/LanguageSelector.jsx", + "line": 73, + "column": 50, + "index": 2455 }, { - "filePath": "src/components/course/course-header/deprecated/CourseRunCard.jsx", - "line": 211, - "column": 6, - "index": 5603 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/LanguageSelector.jsx", + "line": 105, + "column": 83, + "index": 3262 }, { - "filePath": "src/components/course/CourseRecommendationCard.jsx", - "line": 74, - "column": 6, - "index": 2473 + "filePath": "src/files-and-videos/generic/table-components/table-custom-columns/ActiveColumn.jsx", + "line": 16, + "column": 46, + "index": 686 }, { - "filePath": "src/components/dashboard/sidebar/DashboardSidebar.jsx", - "line": 11, - "column": 6, - "index": 280 + "filePath": "src/files-and-videos/videos-page/info-sidebar/transcript-item/LanguageSelect.jsx", + "line": 64, + "column": 45, + "index": 1694 }, { - "filePath": "src/components/dashboard/sidebar/SidebarCard.jsx", - "line": 13, - "column": 4, - "index": 281 + "filePath": "src/files-and-videos/videos-page/transcript-settings/FormDropdown.jsx", + "line": 46, + "column": 41, + "index": 1528 }, { - "filePath": "src/components/executive-education-2u/components/CourseSummaryCard.jsx", - "line": 39, - "column": 8, - "index": 1199 + "filePath": "src/files-and-videos/videos-page/transcript-settings/ThreePlayMediaForm.jsx", + "line": 89, + "column": 33, + "index": 3608 }, { - "filePath": "src/components/executive-education-2u/components/EnrollmentCompletedSummaryCard.jsx", - "line": 18, - "column": 8, - "index": 473 + "filePath": "src/files-and-videos/videos-page/upload-modal/UploadStatusIcon.jsx", + "line": 10, + "column": 25, + "index": 356 }, { - "filePath": "src/components/executive-education-2u/components/EnrollmentCompletedSummaryCard.jsx", - "line": 28, - "column": 8, - "index": 746 + "filePath": "src/pages-and-resources/discussions/app-list/FeaturesTable.jsx", + "line": 36, + "column": 18, + "index": 1433 }, { - "filePath": "src/components/executive-education-2u/components/RegistrationSummaryCard.jsx", - "line": 15, + "filePath": "src/pages-and-resources/discussions/app-list/SupportedFeature.jsx", + "line": 8, "column": 6, - "index": 398 - }, - { - "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", - "line": 205, - "column": 14, - "index": 7377 + "index": 192 }, { - "filePath": "src/components/my-career/CategoryCard.jsx", - "line": 126, - "column": 6, - "index": 4403 + "filePath": "src/studio-home/tabs-section/courses-tab/courses-filters/courses-filter-menu/index.jsx", + "line": 22, + "column": 15, + "index": 784 }, { - "filePath": "src/components/my-career/CategoryCard.jsx", - "line": 140, - "column": 8, - "index": 4849 - }, + "filePath": "src/taxonomy/TaxonomyListPage.jsx", + "line": 98, + "column": 66, + "index": 2839 + } + ], + "FeedbackOutline": [ { - "filePath": "src/components/my-career/CategoryCard.jsx", - "line": 171, - "column": 8, - "index": 5758 - }, + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/AnswerWidget/AnswerOption.jsx", + "line": 128, + "column": 17, + "index": 4104 + } + ], + "Form.CheckboxSet": [ { - "filePath": "src/components/pathway-progress/PathwayNode.jsx", + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/GroupFeedback/GroupFeedbackRow.jsx", "line": 36, - "column": 10, - "index": 1055 + "column": 4, + "index": 917 }, { - "filePath": "src/components/pathway-progress/PathwayProgressCard.jsx", - "line": 35, - "column": 6, - "index": 1310 + "filePath": "src/files-and-videos/generic/table-components/sort-and-filter-modal/SortAndFilterModal.jsx", + "line": 144, + "column": 10, + "index": 4307 }, { - "filePath": "src/components/pathway-progress/PathwayProgressCard.jsx", - "line": 36, - "column": 6, - "index": 1333 - }, + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/DivisionByGroupFields.jsx", + "line": 110, + "column": 24, + "index": 3861 + } + ], + "ExpandMore": [ { - "filePath": "src/components/pathway-progress/SubscriptionStatusCard.jsx", - "line": 27, - "column": 8, - "index": 995 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/CollapsibleFormWidget.jsx", + "line": 42, + "column": 76, + "index": 1530 }, { - "filePath": "src/components/pathway/SearchPathwayCard.jsx", - "line": 120, - "column": 6, - "index": 3352 + "filePath": "src/editors/sharedComponents/SelectionModal/GalleryLoadMoreButton.jsx", + "line": 25, + "column": 26, + "index": 681 }, { - "filePath": "src/components/program-progress/ProgramListingCard.jsx", - "line": 82, - "column": 6, - "index": 2577 + "filePath": "src/editors/sharedComponents/TypeaheadDropdown/index.jsx", + "line": 161, + "column": 13, + "index": 4240 }, { - "filePath": "src/components/program-progress/ProgramListingCard.jsx", - "line": 93, - "column": 6, - "index": 2920 + "filePath": "src/files-and-videos/videos-page/info-sidebar/transcript-item/LanguageSelect.jsx", + "line": 100, + "column": 21, + "index": 2818 }, { - "filePath": "src/components/search/AssignmentsOnlyEmptyState.jsx", - "line": 45, - "column": 12, - "index": 1476 - }, + "filePath": "src/generic/CollapsableEditor.jsx", + "line": 34, + "column": 43, + "index": 894 + } + ], + "ExpandLess": [ { - "filePath": "src/components/search/AssignmentsOnlyEmptyState.jsx", + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/CollapsibleFormWidget.jsx", "line": 48, - "column": 12, - "index": 1638 - }, - { - "filePath": "src/components/search/AssignmentsOnlyEmptyState.jsx", - "line": 51, - "column": 12, - "index": 1801 + "column": 78, + "index": 1847 }, { - "filePath": "src/components/search/content-highlights/HighlightedContentCard.jsx", - "line": 77, - "column": 6, - "index": 1976 + "filePath": "src/editors/sharedComponents/TypeaheadDropdown/index.jsx", + "line": 176, + "column": 13, + "index": 4562 }, { - "filePath": "src/components/search/SearchCourseCard.jsx", - "line": 120, - "column": 6, - "index": 3380 - }, + "filePath": "src/generic/CollapsableEditor.jsx", + "line": 53, + "column": 45, + "index": 1474 + } + ], + "Form.Row": [ { - "filePath": "src/components/search/SearchProgramCard.jsx", - "line": 126, + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/DurationWidget/index.jsx", + "line": 48, "column": 6, - "index": 3567 + "index": 1224 }, { - "filePath": "src/components/skills-quiz/CardLoadingSkeleton.jsx", - "line": 13, + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoSourceWidget/index.jsx", + "line": 104, "column": 8, - "index": 366 + "index": 3256 }, { - "filePath": "src/components/skills-quiz/CourseCard.jsx", - "line": 79, + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-restrictions/DiscussionRestrictionItem.jsx", + "line": 98, "column": 6, - "index": 2642 - }, - { - "filePath": "src/components/skills-quiz/JobCardComponent.jsx", - "line": 19, - "column": 10, - "index": 616 + "index": 3412 }, { - "filePath": "src/components/skills-quiz/SearchProgramCard.jsx", - "line": 215, - "column": 14, - "index": 7211 + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-restrictions/DiscussionRestrictionItem.jsx", + "line": 124, + "column": 6, + "index": 4428 }, { - "filePath": "src/components/skills-quiz/SearchProgramCard.jsx", - "line": 225, - "column": 14, - "index": 7733 + "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", + "line": 20, + "column": 10, + "index": 541 }, { - "filePath": "src/components/skills-quiz/TopSkillsOverview.jsx", - "line": 68, + "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", + "line": 63, "column": 10, - "index": 2247 + "index": 2380 }, { - "filePath": "src/components/skills-quiz/TopSkillsOverview.jsx", - "line": 97, + "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", + "line": 79, "column": 10, - "index": 3149 + "index": 3039 } ], - "Image": [ + "Col": [ { - "filePath": "src/components/academies/SearchAcademyCard.jsx", - "line": 30, - "column": 8, - "index": 748 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/DurationWidget/index.jsx", + "line": 49, + "column": 24, + "index": 1278 }, { - "filePath": "src/components/course/course-header/CoursePreview.jsx", - "line": 24, - "column": 14, - "index": 791 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/DurationWidget/index.jsx", + "line": 61, + "column": 24, + "index": 1768 }, { - "filePath": "src/components/course/course-header/CoursePreview.jsx", + "filePath": "src/editors/sharedComponents/ErrorBoundary/ErrorPage.jsx", "line": 33, "column": 8, - "index": 1097 + "index": 1059 }, { - "filePath": "src/components/executive-education-2u/components/CourseSummaryCard.jsx", - "line": 35, - "column": 14, - "index": 1087 + "filePath": "src/generic/drag-helper/SortableItem.jsx", + "line": 62, + "column": 6, + "index": 1294 }, { - "filePath": "src/components/pathway/PathwayModal.jsx", - "line": 32, - "column": 8, - "index": 1152 + "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", + "line": 21, + "column": 28, + "index": 580 }, { - "filePath": "src/components/search/AssignmentsOnlyEmptyState.jsx", + "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", + "line": 35, + "column": 28, + "index": 1164 + }, + { + "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", "line": 49, - "column": 14, - "index": 1715 + "column": 28, + "index": 1753 + }, + { + "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", + "line": 64, + "column": 28, + "index": 2419 } ], - "MailtoLink": [ + "MoreHoriz": [ { - "filePath": "src/components/contact-admin-mailto/index.jsx", - "line": 14, - "column": 6, - "index": 426 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/HandoutWidget/index.jsx", + "line": 75, + "column": 21, + "index": 2351 }, { - "filePath": "src/components/course/data/utils.jsx", - "line": 645, - "column": 12, - "index": 22633 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/TranscriptActionMenu.jsx", + "line": 45, + "column": 13, + "index": 1626 }, { - "filePath": "src/components/dashboard/main-content/course-enrollments/CourseAssignmentAlert.jsx", - "line": 28, - "column": 20, - "index": 917 + "filePath": "src/files-and-videos/generic/FileMenu.jsx", + "line": 29, + "column": 11, + "index": 615 }, { - "filePath": "src/components/dashboard/sidebar/SupportInformation.jsx", - "line": 26, - "column": 8, - "index": 884 + "filePath": "src/files-and-videos/generic/table-components/table-custom-columns/MoreInfoColumn.jsx", + "line": 41, + "column": 13, + "index": 787 }, { - "filePath": "src/components/dashboard/SubscriptionExpirationModal.jsx", - "line": 48, - "column": 8, - "index": 1672 - }, + "filePath": "src/files-and-videos/videos-page/info-sidebar/transcript-item/TranscriptMenu.jsx", + "line": 28, + "column": 13, + "index": 617 + } + ], + "FileUpload": [ { - "filePath": "src/components/enterprise-user-subsidy/enterprise-offers/EnterpriseOffersBalanceAlert.jsx", - "line": 33, - "column": 4, - "index": 1397 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/HandoutWidget/index.jsx", + "line": 104, + "column": 24, + "index": 3608 }, { - "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", - "line": 283, - "column": 32, - "index": 10725 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/ThumbnailWidget/index.jsx", + "line": 115, + "column": 24, + "index": 3557 }, { - "filePath": "src/components/program-progress/CouponCodesWarningModal.jsx", - "line": 21, - "column": 8, - "index": 775 - }, + "filePath": "src/editors/containers/VideoUploadEditor/VideoUploader.jsx", + "line": 20, + "column": 19, + "index": 798 + } + ], + "Copyright": [ { - "filePath": "src/components/program-progress/SubscriptionExpiringWarningModal.jsx", - "line": 29, - "column": 8, - "index": 1000 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseBlurb.jsx", + "line": 26, + "column": 61, + "index": 656 }, { - "filePath": "src/components/search/AssignmentsOnlyEmptyState.jsx", - "line": 24, - "column": 16, - "index": 822 + "filePath": "src/schedule-and-details/license-section/license-icons/index.jsx", + "line": 30, + "column": 15, + "index": 918 } ], - "Button": [ + "Cc": [ { - "filePath": "src/components/course/course-header/course-run-actions/BasicNavigateToCourseware.jsx", - "line": 14, - "column": 4, - "index": 377 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseBlurb.jsx", + "line": 27, + "column": 59, + "index": 796 }, { - "filePath": "src/components/course/course-header/data/hooks/useCourseRunCardAction.jsx", - "line": 100, - "column": 11, - "index": 3772 - }, + "filePath": "src/schedule-and-details/license-section/license-icons/index.jsx", + "line": 38, + "column": 15, + "index": 1156 + } + ], + "Attribution": [ { - "filePath": "src/components/course/data/utils.jsx", - "line": 609, - "column": 6, - "index": 21766 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseBlurb.jsx", + "line": 28, + "column": 38, + "index": 908 }, { - "filePath": "src/components/course/data/utils.jsx", - "line": 625, - "column": 6, - "index": 22144 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", + "line": 50, + "column": 60, + "index": 1400 }, { - "filePath": "src/components/course/data/utils.jsx", - "line": 644, - "column": 6, - "index": 22613 - }, + "filePath": "src/schedule-and-details/license-section/license-icons/index.jsx", + "line": 45, + "column": 15, + "index": 1346 + } + ], + "Nc": [ { - "filePath": "src/components/course/enrollment/components/ToExecutiveEducation2UEnrollment.jsx", - "line": 10, - "column": 2, - "index": 323 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseBlurb.jsx", + "line": 29, + "column": 40, + "index": 1048 }, { - "filePath": "src/components/course/enrollment/components/ToExecutiveEducation2UEnrollment.jsx", - "line": 31, - "column": 4, - "index": 768 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", + "line": 69, + "column": 31, + "index": 2175 }, { - "filePath": "src/components/course/EnrollModal.jsx", - "line": 90, - "column": 8, - "index": 2959 - }, + "filePath": "src/schedule-and-details/license-section/license-icons/index.jsx", + "line": 52, + "column": 15, + "index": 1547 + } + ], + "Nd": [ { - "filePath": "src/components/course/routes/ExternalCourseEnrollment.jsx", - "line": 100, - "column": 18, - "index": 3888 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseBlurb.jsx", + "line": 30, + "column": 40, + "index": 1162 }, { - "filePath": "src/components/course/routes/ExternalCourseEnrollmentConfirmation.jsx", - "line": 50, - "column": 10, - "index": 2273 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", + "line": 94, + "column": 31, + "index": 3246 }, { - "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/AssignedCourseCard.jsx", - "line": 24, - "column": 4, - "index": 953 - }, + "filePath": "src/schedule-and-details/license-section/license-icons/index.jsx", + "line": 59, + "column": 15, + "index": 1739 + } + ], + "Sa": [ { - "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/ContinueLearningButton.jsx", - "line": 57, - "column": 4, - "index": 1944 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseBlurb.jsx", + "line": 31, + "column": 37, + "index": 1273 }, { - "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/unenroll/UnenrollModal.jsx", - "line": 59, - "column": 10, - "index": 1496 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", + "line": 120, + "column": 31, + "index": 4352 }, { - "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/UpcomingCourseCard.jsx", - "line": 10, - "column": 4, - "index": 254 - }, + "filePath": "src/schedule-and-details/license-section/license-icons/index.jsx", + "line": 66, + "column": 15, + "index": 1928 + } + ], + "CheckboxControl": [ { - "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/UpgradeCourseButton.jsx", - "line": 46, - "column": 6, - "index": 1364 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", + "line": 55, + "column": 20, + "index": 1660 }, { - "filePath": "src/components/dashboard/main-content/course-enrollments/CourseAssignmentAlert.jsx", - "line": 28, - "column": 8, - "index": 905 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", + "line": 74, + "column": 20, + "index": 2428 }, { - "filePath": "src/components/dashboard/main-content/CourseRecommendations.jsx", - "line": 24, - "column": 10, - "index": 889 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", + "line": 99, + "column": 20, + "index": 3499 }, { - "filePath": "src/components/dashboard/main-content/DashboardMainContent.jsx", - "line": 43, - "column": 12, - "index": 1428 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", + "line": 125, + "column": 20, + "index": 4602 }, { - "filePath": "src/components/dashboard/sidebar/SubsidiesSummary.jsx", - "line": 117, - "column": 6, - "index": 4440 + "filePath": "src/files-and-videos/files-page/FileInfoModalSidebar.jsx", + "line": 103, + "column": 8, + "index": 2895 }, { - "filePath": "src/components/enterprise-banner/EnterpriseBanner.jsx", - "line": 21, + "filePath": "src/pages-and-resources/discussions/app-list/AppCard.jsx", + "line": 38, "column": 12, - "index": 820 + "index": 1343 }, { - "filePath": "src/components/enterprise-invite/EnterpriseInvitePage.jsx", - "line": 100, - "column": 10, - "index": 3879 - }, + "filePath": "src/schedule-and-details/license-section/license-commons-options/index.jsx", + "line": 68, + "column": 14, + "index": 2155 + } + ], + "ClosedCaption": [ { - "filePath": "src/components/executive-education-2u/components/ErrorPageContent.jsx", - "line": 60, - "column": 12, - "index": 2147 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoPreviewWidget/LanguageNamesWidget.jsx", + "line": 16, + "column": 4, + "index": 670 }, { - "filePath": "src/components/integration-warning-modal/IntegrationWarningModal.jsx", - "line": 38, + "filePath": "src/files-and-videos/generic/table-components/GalleryCard.jsx", + "line": 79, + "column": 66, + "index": 2538 + } + ], + "InputGroup": [ + { + "filePath": "src/editors/containers/VideoUploadEditor/VideoUploader.jsx", + "line": 30, + "column": 8, + "index": 1369 + } + ], + "FormControl": [ + { + "filePath": "src/editors/containers/VideoUploadEditor/VideoUploader.jsx", + "line": 31, "column": 10, - "index": 1193 - }, + "index": 1392 + } + ], + "ArrowForward": [ { - "filePath": "src/components/my-career/AddJobRole.jsx", - "line": 71, - "column": 22, - "index": 2481 + "filePath": "src/editors/containers/VideoUploadEditor/VideoUploader.jsx", + "line": 43, + "column": 21, + "index": 1961 }, { - "filePath": "src/components/my-career/CategoryCard.jsx", - "line": 128, - "column": 10, - "index": 4486 + "filePath": "src/pages-and-resources/pages/PageSettingButton.jsx", + "line": 49, + "column": 15, + "index": 1515 + } + ], + "Dropzone": [ + { + "filePath": "src/editors/containers/VideoUploadEditor/VideoUploader.jsx", + "line": 85, + "column": 6, + "index": 3107 }, { - "filePath": "src/components/my-career/CategoryCard.jsx", - "line": 150, - "column": 8, - "index": 5157 + "filePath": "src/files-and-videos/generic/FileTable.jsx", + "line": 216, + "column": 10, + "index": 5790 }, { - "filePath": "src/components/my-career/SearchJobRole.jsx", - "line": 132, + "filePath": "src/generic/course-upload-image/index.jsx", + "line": 112, "column": 10, - "index": 4429 + "index": 2964 }, { - "filePath": "src/components/my-career/VisualizeCareer.jsx", - "line": 67, + "filePath": "src/generic/modal-dropzone/ModalDropzone.jsx", + "line": 101, "column": 16, - "index": 2185 + "index": 2404 }, { - "filePath": "src/components/my-career/VisualizeCareer.jsx", - "line": 92, - "column": 14, - "index": 3030 + "filePath": "src/import-page/file-section/FileSection.jsx", + "line": 35, + "column": 12, + "index": 1201 }, { - "filePath": "src/components/pathway-progress/PathwayProgressListingPage.jsx", - "line": 54, - "column": 14, - "index": 1628 - }, + "filePath": "src/taxonomy/import-tags/ImportTagsWizard.jsx", + "line": 114, + "column": 12, + "index": 3179 + } + ], + "Scrollable": [ { - "filePath": "src/components/pathway/PathwayModal.jsx", - "line": 54, - "column": 8, - "index": 1750 + "filePath": "src/editors/sharedComponents/BaseModal/index.jsx", + "line": 43, + "column": 4, + "index": 864 }, { - "filePath": "src/components/preview-expand/PreviewExpand.jsx", - "line": 20, + "filePath": "src/files-and-videos/videos-page/upload-modal/UploadModal.jsx", + "line": 68, "column": 6, - "index": 582 - }, + "index": 2152 + } + ], + "DragIndicator": [ { - "filePath": "src/components/program-progress/CouponCodesWarningModal.jsx", - "line": 51, - "column": 10, - "index": 1669 + "filePath": "src/editors/sharedComponents/DraggableList/SortableItem.jsx", + "line": 42, + "column": 13, + "index": 989 }, { - "filePath": "src/components/program-progress/ProgramListingPage.jsx", - "line": 45, - "column": 14, - "index": 1457 - }, + "filePath": "src/generic/drag-helper/SortableItem.jsx", + "line": 76, + "column": 23, + "index": 1767 + } + ], + "paragon": [ { - "filePath": "src/components/program-progress/ProgramPathwayOpportunity.jsx", - "line": 17, - "column": 16, - "index": 743 + "filePath": "src/editors/sharedComponents/ImageUploadModal/ImageSettingsModal/DimensionControls.test.jsx", + "line": 71, + "column": 6, + "index": 2542 }, { - "filePath": "src/components/program-progress/ProgramProgressSidebar.jsx", - "line": 77, - "column": 14, - "index": 3193 + "filePath": "src/editors/sharedComponents/ImageUploadModal/ImageSettingsModal/DimensionControls.test.jsx", + "line": 74, + "column": 6, + "index": 2658 }, { - "filePath": "src/components/program-progress/SubscriptionExpiringWarningModal.jsx", - "line": 59, - "column": 10, - "index": 2034 + "filePath": "src/editors/sharedComponents/ImageUploadModal/ImageSettingsModal/DimensionControls.test.jsx", + "line": 78, + "column": 6, + "index": 2825 }, { - "filePath": "src/components/search/AssignmentsOnlyEmptyState.jsx", - "line": 23, - "column": 10, - "index": 798 + "filePath": "src/editors/sharedComponents/ImageUploadModal/ImageSettingsModal/DimensionControls.test.jsx", + "line": 82, + "column": 6, + "index": 2986 }, { - "filePath": "src/components/search/AssignmentsOnlyEmptyState.jsx", - "line": 53, - "column": 14, - "index": 1941 + "filePath": "src/editors/sharedComponents/ImageUploadModal/ImageSettingsModal/DimensionControls.test.jsx", + "line": 85, + "column": 6, + "index": 3102 }, { - "filePath": "src/components/skills-quiz/SkillsCourses.jsx", - "line": 143, - "column": 12, - "index": 4599 + "filePath": "src/editors/sharedComponents/ImageUploadModal/ImageSettingsModal/DimensionControls.test.jsx", + "line": 94, + "column": 6, + "index": 3553 }, { - "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", - "line": 276, - "column": 16, - "index": 11101 + "filePath": "src/editors/sharedComponents/ImageUploadModal/ImageSettingsModal/DimensionControls.test.jsx", + "line": 95, + "column": 6, + "index": 3593 }, { - "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", - "line": 288, - "column": 12, - "index": 11624 + "filePath": "src/editors/sharedComponents/ImageUploadModal/ImageSettingsModal/DimensionControls.test.jsx", + "line": 96, + "column": 6, + "index": 3633 }, { - "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", - "line": 292, - "column": 12, - "index": 11789 + "filePath": "src/editors/sharedComponents/ImageUploadModal/ImageSettingsModal/DimensionControls.test.jsx", + "line": 97, + "column": 6, + "index": 3675 }, { - "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", - "line": 300, - "column": 12, - "index": 12073 + "filePath": "src/editors/sharedComponents/ImageUploadModal/ImageSettingsModal/DimensionControls.test.jsx", + "line": 98, + "column": 6, + "index": 3709 + } + ], + "icons": [ + { + "filePath": "src/editors/sharedComponents/ImageUploadModal/ImageSettingsModal/DimensionControls.test.jsx", + "line": 89, + "column": 6, + "index": 3348 }, { - "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", - "line": 304, - "column": 12, - "index": 12243 + "filePath": "src/editors/sharedComponents/ImageUploadModal/ImageSettingsModal/DimensionControls.test.jsx", + "line": 91, + "column": 6, + "index": 3460 }, { - "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", - "line": 307, - "column": 12, - "index": 12411 + "filePath": "src/editors/sharedComponents/ImageUploadModal/ImageSettingsModal/DimensionControls.test.jsx", + "line": 99, + "column": 6, + "index": 3749 }, { - "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", - "line": 311, - "column": 12, - "index": 12581 + "filePath": "src/editors/sharedComponents/ImageUploadModal/ImageSettingsModal/DimensionControls.test.jsx", + "line": 100, + "column": 6, + "index": 3783 } ], - "Row": [ + "ArrowBackIos": [ { - "filePath": "src/components/course/course-header/CourseHeader.jsx", + "filePath": "src/editors/sharedComponents/ImageUploadModal/ImageSettingsModal/index.jsx", "line": 65, - "column": 8, - "index": 2038 - }, + "column": 20, + "index": 1985 + } + ], + "Search": [ { - "filePath": "src/components/course/CourseReview.jsx", - "line": 37, - "column": 6, - "index": 1934 - }, + "filePath": "src/editors/sharedComponents/SelectionModal/SearchSort.jsx", + "line": 53, + "column": 27, + "index": 1331 + } + ], + "SelectMenu": [ { - "filePath": "src/components/course/CourseReview.jsx", - "line": 40, + "filePath": "src/editors/sharedComponents/SelectionModal/SearchSort.jsx", + "line": 60, "column": 6, - "index": 2033 + "index": 1469 }, { - "filePath": "src/components/course/CourseReview.jsx", - "line": 89, - "column": 6, - "index": 4408 - }, + "filePath": "src/taxonomy/TaxonomyListPage.jsx", + "line": 136, + "column": 4, + "index": 3906 + } + ], + "MenuItem": [ { - "filePath": "src/components/course/CourseSidebarListItem.jsx", - "line": 10, - "column": 2, - "index": 182 + "filePath": "src/editors/sharedComponents/SelectionModal/SearchSort.jsx", + "line": 62, + "column": 10, + "index": 1580 }, { - "filePath": "src/components/course/routes/CourseAbout.jsx", - "line": 53, - "column": 8, - "index": 1806 + "filePath": "src/files-and-videos/generic/table-components/table-custom-columns/MoreInfoColumn.jsx", + "line": 58, + "column": 12, + "index": 1185 }, { - "filePath": "src/components/course/routes/ExternalCourseEnrollment.jsx", - "line": 89, - "column": 10, - "index": 3512 + "filePath": "src/files-and-videos/generic/table-components/table-custom-columns/MoreInfoColumn.jsx", + "line": 70, + "column": 14, + "index": 1523 }, { - "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/BaseCourseCard.jsx", - "line": 527, + "filePath": "src/files-and-videos/generic/table-components/table-custom-columns/MoreInfoColumn.jsx", + "line": 80, "column": 14, - "index": 15148 + "index": 1859 }, { - "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/BaseCourseCard.jsx", - "line": 535, - "column": 16, - "index": 15587 + "filePath": "src/files-and-videos/generic/table-components/table-custom-columns/MoreInfoColumn.jsx", + "line": 90, + "column": 14, + "index": 2192 }, { - "filePath": "src/components/dashboard/main-content/CoursesTabComponent.jsx", - "line": 32, - "column": 6, - "index": 1045 + "filePath": "src/files-and-videos/generic/table-components/table-custom-columns/MoreInfoColumn.jsx", + "line": 99, + "column": 10, + "index": 2519 }, { - "filePath": "src/components/executive-education-2u/components/CourseSummaryCard.jsx", - "line": 40, + "filePath": "src/files-and-videos/generic/table-components/table-custom-columns/MoreInfoColumn.jsx", + "line": 108, "column": 10, - "index": 1224 + "index": 2812 }, { - "filePath": "src/components/executive-education-2u/components/CourseSummaryCard.jsx", - "line": 42, - "column": 14, - "index": 1319 + "filePath": "src/files-and-videos/generic/table-components/table-custom-columns/MoreInfoColumn.jsx", + "line": 116, + "column": 10, + "index": 3069 }, { - "filePath": "src/components/executive-education-2u/components/CourseSummaryCard.jsx", - "line": 51, - "column": 16, - "index": 1700 + "filePath": "src/files-and-videos/videos-page/info-sidebar/transcript-item/LanguageSelect.jsx", + "line": 58, + "column": 18, + "index": 1473 }, { - "filePath": "src/components/executive-education-2u/components/CourseSummaryCard.jsx", - "line": 53, - "column": 55, - "index": 1957 + "filePath": "src/files-and-videos/videos-page/info-sidebar/transcript-item/LanguageSelect.jsx", + "line": 71, + "column": 18, + "index": 1928 }, { - "filePath": "src/components/executive-education-2u/components/CourseSummaryCard.jsx", - "line": 55, + "filePath": "src/files-and-videos/videos-page/info-sidebar/transcript-item/LanguageSelect.jsx", + "line": 86, "column": 16, - "index": 2106 + "index": 2402 }, { - "filePath": "src/components/executive-education-2u/components/CourseSummaryCard.jsx", - "line": 57, - "column": 55, - "index": 2316 + "filePath": "src/files-and-videos/videos-page/info-sidebar/transcript-item/TranscriptMenu.jsx", + "line": 45, + "column": 10, + "index": 1025 }, { - "filePath": "src/components/executive-education-2u/components/CourseSummaryCard.jsx", - "line": 59, - "column": 16, - "index": 2437 + "filePath": "src/files-and-videos/videos-page/info-sidebar/transcript-item/TranscriptMenu.jsx", + "line": 53, + "column": 10, + "index": 1292 }, { - "filePath": "src/components/executive-education-2u/components/CourseSummaryCard.jsx", + "filePath": "src/files-and-videos/videos-page/info-sidebar/transcript-item/TranscriptMenu.jsx", "line": 62, - "column": 20, - "index": 2665 + "column": 10, + "index": 1632 }, { - "filePath": "src/components/executive-education-2u/components/EnrollmentCompletedSummaryCard.jsx", - "line": 16, + "filePath": "src/taxonomy/TaxonomyListPage.jsx", + "line": 100, "column": 4, - "index": 415 + "index": 2888 }, { - "filePath": "src/components/executive-education-2u/components/ErrorPageContent.jsx", - "line": 38, - "column": 6, - "index": 1331 + "filePath": "src/taxonomy/TaxonomyListPage.jsx", + "line": 110, + "column": 4, + "index": 3252 }, { - "filePath": "src/components/executive-education-2u/components/RegistrationSummaryCard.jsx", - "line": 16, + "filePath": "src/taxonomy/TaxonomyListPage.jsx", + "line": 123, "column": 8, - "index": 421 - }, - { - "filePath": "src/components/executive-education-2u/components/RegistrationSummaryCard.jsx", - "line": 26, - "column": 14, - "index": 882 - }, + "index": 3648 + } + ], + "Form.SwitchSet": [ { - "filePath": "src/components/executive-education-2u/ExecutiveEducation2UPage.jsx", - "line": 133, - "column": 14, - "index": 5117 - }, + "filePath": "src/editors/sharedComponents/SelectionModal/SearchSort.jsx", + "line": 100, + "column": 10, + "index": 2785 + } + ], + "Form.Switch": [ { - "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", - "line": 221, - "column": 16, - "index": 8070 + "filePath": "src/editors/sharedComponents/SelectionModal/SearchSort.jsx", + "line": 105, + "column": 12, + "index": 2909 }, { - "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", - "line": 261, - "column": 16, - "index": 9670 - }, + "filePath": "src/pages-and-resources/discussions/app-list/AppList.jsx", + "line": 129, + "column": 8, + "index": 4519 + } + ], + "ArrowCircleDownIcon": [ { - "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", - "line": 294, - "column": 18, - "index": 11082 - }, + "filePath": "src/export-page/CourseExportPage.jsx", + "line": 91, + "column": 36, + "index": 4107 + } + ], + "ContentCopy": [ { - "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", - "line": 322, - "column": 16, - "index": 12594 + "filePath": "src/files-and-videos/files-page/FileInfoModalSidebar.jsx", + "line": 66, + "column": 15, + "index": 1659 }, { - "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", - "line": 359, - "column": 16, - "index": 14362 - }, + "filePath": "src/files-and-videos/files-page/FileInfoModalSidebar.jsx", + "line": 83, + "column": 15, + "index": 2208 + } + ], + "Dropdown.Divider": [ { - "filePath": "src/components/my-career/AddJobRole.jsx", - "line": 51, - "column": 4, - "index": 1545 + "filePath": "src/files-and-videos/generic/FileMenu.jsx", + "line": 64, + "column": 6, + "index": 1799 }, { - "filePath": "src/components/my-career/VisualizeCareer.jsx", - "line": 90, + "filePath": "src/files-and-videos/generic/table-components/TableActions.jsx", + "line": 64, "column": 10, - "index": 2986 - }, + "index": 2003 + } + ], + "DataTable": [ { - "filePath": "src/components/my-career/VisualizeCareer.jsx", - "line": 115, - "column": 10, - "index": 3972 + "filePath": "src/files-and-videos/generic/FileTable.jsx", + "line": 192, + "column": 6, + "index": 4957 }, { - "filePath": "src/components/pathway/PathwayModal.jsx", - "line": 30, + "filePath": "src/pages-and-resources/discussions/app-list/FeaturesTable.jsx", + "line": 60, "column": 4, - "index": 1076 + "index": 2252 }, { - "filePath": "src/components/pathway/PathwayModal.jsx", - "line": 104, - "column": 8, - "index": 3109 + "filePath": "src/taxonomy/tag-list/TagListTable.jsx", + "line": 44, + "column": 31, + "index": 1492 }, { - "filePath": "src/components/pathway/PathwayModal.jsx", - "line": 153, - "column": 10, - "index": 5088 + "filePath": "src/taxonomy/tag-list/TagListTable.jsx", + "line": 81, + "column": 6, + "index": 2420 }, { - "filePath": "src/components/program-progress/ProgramProgressCourses.jsx", - "line": 80, - "column": 4, - "index": 2500 + "filePath": "src/taxonomy/tag-list/TagListTable.jsx", + "line": 103, + "column": 20, + "index": 3247 }, { - "filePath": "src/components/program-progress/ProgramProgressCourses.jsx", - "line": 91, - "column": 6, - "index": 2856 - }, + "filePath": "src/taxonomy/TaxonomyListPage.jsx", + "line": 198, + "column": 12, + "index": 5829 + } + ], + "DataTable.TableControlBar": [ { - "filePath": "src/components/program-progress/ProgramProgressPage.jsx", - "line": 87, + "filePath": "src/files-and-videos/generic/FileTable.jsx", + "line": 228, "column": 12, - "index": 3201 - }, + "index": 6267 + } + ], + "CardView": [ { - "filePath": "src/components/program/ProgramPage.jsx", - "line": 76, - "column": 10, - "index": 2391 + "filePath": "src/files-and-videos/generic/FileTable.jsx", + "line": 230, + "column": 40, + "index": 6390 }, { - "filePath": "src/components/program/ProgramPage.jsx", - "line": 88, - "column": 10, - "index": 2749 - }, + "filePath": "src/taxonomy/TaxonomyListPage.jsx", + "line": 225, + "column": 14, + "index": 6609 + } + ], + "DataTable.Table": [ { - "filePath": "src/components/program/ProgramSidebarListItem.jsx", - "line": 10, - "column": 2, - "index": 183 + "filePath": "src/files-and-videos/generic/FileTable.jsx", + "line": 231, + "column": 40, + "index": 6544 }, { - "filePath": "src/components/search/AssignmentsOnlyEmptyState.jsx", - "line": 42, + "filePath": "src/pages-and-resources/discussions/app-list/FeaturesTable.jsx", + "line": 87, "column": 6, - "index": 1412 + "index": 3110 }, { - "filePath": "src/components/skills-quiz/SkillsQuiz.jsx", - "line": 23, + "filePath": "src/taxonomy/tag-list/TagListTable.jsx", + "line": 108, "column": 8, - "index": 677 + "index": 3346 } ], - "Col": [ + "DataTable.EmptyTable": [ { - "filePath": "src/components/course/course-header/CourseHeader.jsx", - "line": 66, - "column": 10, - "index": 2071 + "filePath": "src/files-and-videos/generic/FileTable.jsx", + "line": 232, + "column": 12, + "index": 6578 }, { - "filePath": "src/components/course/course-header/CourseHeader.jsx", - "line": 114, - "column": 10, - "index": 3993 - }, + "filePath": "src/taxonomy/tag-list/TagListTable.jsx", + "line": 109, + "column": 8, + "index": 3374 + } + ], + "TableFooter": [ { - "filePath": "src/components/course/course-header/CourseHeader.jsx", - "line": 120, - "column": 10, - "index": 4252 - }, + "filePath": "src/files-and-videos/generic/table-components/Footer.jsx", + "line": 16, + "column": 4, + "index": 345 + } + ], + "Pagination": [ { - "filePath": "src/components/course/CourseReview.jsx", - "line": 38, - "column": 8, - "index": 1974 - }, + "filePath": "src/files-and-videos/generic/table-components/Footer.jsx", + "line": 17, + "column": 6, + "index": 365 + } + ], + "Locked": [ { - "filePath": "src/components/course/CourseReview.jsx", - "line": 41, + "filePath": "src/files-and-videos/generic/table-components/table-custom-columns/AccessColumn.jsx", + "line": 24, + "column": 19, + "index": 652 + } + ], + "LockOpen": [ + { + "filePath": "src/files-and-videos/generic/table-components/table-custom-columns/AccessColumn.jsx", + "line": 26, + "column": 19, + "index": 704 + } + ], + "Menu": [ + { + "filePath": "src/files-and-videos/generic/table-components/table-custom-columns/MoreInfoColumn.jsx", + "line": 54, "column": 8, - "index": 2047 + "index": 1084 }, { - "filePath": "src/components/course/CourseReview.jsx", - "line": 52, + "filePath": "src/files-and-videos/videos-page/info-sidebar/transcript-item/LanguageSelect.jsx", + "line": 51, "column": 8, - "index": 2565 + "index": 1255 }, { - "filePath": "src/components/course/CourseReview.jsx", - "line": 66, + "filePath": "src/files-and-videos/videos-page/info-sidebar/transcript-item/TranscriptMenu.jsx", + "line": 42, "column": 8, - "index": 3247 + "index": 961 + } + ], + "Tune": [ + { + "filePath": "src/files-and-videos/generic/table-components/TableActions.jsx", + "line": 38, + "column": 71, + "index": 1081 + } + ], + "ErrorOutline": [ + { + "filePath": "src/files-and-videos/generic/UsageMetricsMessage.jsx", + "line": 43, + "column": 15, + "index": 1316 }, { - "filePath": "src/components/course/CourseReview.jsx", - "line": 77, - "column": 8, - "index": 3812 + "filePath": "src/files-and-videos/videos-page/upload-modal/UploadStatusIcon.jsx", + "line": 12, + "column": 25, + "index": 424 + } + ], + "Tabs": [ + { + "filePath": "src/files-and-videos/videos-page/info-sidebar/VideoInfoModalSidebar.jsx", + "line": 20, + "column": 2, + "index": 465 }, { - "filePath": "src/components/course/CourseReview.jsx", - "line": 91, - "column": 8, - "index": 4505 + "filePath": "src/generic/configure-modal/ConfigureModal.jsx", + "line": 186, + "column": 10, + "index": 5491 }, { - "filePath": "src/components/course/CourseSidebarListItem.jsx", - "line": 11, + "filePath": "src/generic/configure-modal/ConfigureModal.jsx", + "line": 209, + "column": 10, + "index": 6388 + } + ], + "Tab": [ + { + "filePath": "src/files-and-videos/videos-page/info-sidebar/VideoInfoModalSidebar.jsx", + "line": 25, "column": 4, - "index": 256 + "index": 584 }, { - "filePath": "src/components/course/CourseSidebarListItem.jsx", - "line": 15, + "filePath": "src/files-and-videos/videos-page/info-sidebar/VideoInfoModalSidebar.jsx", + "line": 28, "column": 4, - "index": 386 + "index": 708 }, { - "filePath": "src/components/course/routes/ExternalCourseEnrollment.jsx", - "line": 90, + "filePath": "src/generic/configure-modal/ConfigureModal.jsx", + "line": 187, "column": 12, - "index": 3530 + "index": 5510 }, { - "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/BaseCourseCard.jsx", - "line": 528, - "column": 16, - "index": 15199 + "filePath": "src/generic/configure-modal/ConfigureModal.jsx", + "line": 196, + "column": 12, + "index": 5903 }, { - "filePath": "src/components/error-page/ErrorPage.jsx", - "line": 29, - "column": 8, - "index": 706 + "filePath": "src/generic/configure-modal/ConfigureModal.jsx", + "line": 210, + "column": 12, + "index": 6407 }, { - "filePath": "src/components/executive-education-2u/components/CourseSummaryCard.jsx", - "line": 41, + "filePath": "src/generic/configure-modal/ConfigureModal.jsx", + "line": 219, "column": 12, - "index": 1242 + "index": 6800 }, { - "filePath": "src/components/executive-education-2u/components/CourseSummaryCard.jsx", + "filePath": "src/generic/configure-modal/ConfigureModal.jsx", + "line": 228, + "column": 12, + "index": 7196 + } + ], + "ChevronLeft": [ + { + "filePath": "src/files-and-videos/videos-page/transcript-settings/TranscriptSettings.jsx", + "line": 70, + "column": 25, + "index": 2299 + } + ], + "ChevronRight": [ + { + "filePath": "src/files-and-videos/videos-page/transcript-settings/TranscriptSettings.jsx", + "line": 109, + "column": 33, + "index": 3982 + } + ], + "WarningFilled": [ + { + "filePath": "src/files-and-videos/videos-page/upload-modal/UploadModal.jsx", "line": 43, "column": 16, - "index": 1341 - }, + "index": 1254 + } + ], + "VideoFile": [ { - "filePath": "src/components/executive-education-2u/components/CourseSummaryCard.jsx", - "line": 49, - "column": 12, - "index": 1616 - }, + "filePath": "src/files-and-videos/videos-page/VideoThumbnail.jsx", + "line": 84, + "column": 23, + "index": 2726 + } + ], + "ContentCopyIcon": [ { - "filePath": "src/components/executive-education-2u/components/CourseSummaryCard.jsx", - "line": 52, + "filePath": "src/generic/clipboard/paste-component/components/PasteButton.jsx", + "line": 16, "column": 18, - "index": 1755 - }, + "index": 496 + } + ], + "Popover.Title": [ { - "filePath": "src/components/executive-education-2u/components/CourseSummaryCard.jsx", - "line": 53, - "column": 18, - "index": 1920 + "filePath": "src/generic/clipboard/paste-component/components/PopoverContent.jsx", + "line": 15, + "column": 4, + "index": 510 }, { - "filePath": "src/components/executive-education-2u/components/CourseSummaryCard.jsx", - "line": 56, - "column": 18, - "index": 2161 + "filePath": "src/taxonomy/system-defined-badge/index.jsx", + "line": 15, + "column": 6, + "index": 417 + } + ], + "OpenInNewIcon": [ + { + "filePath": "src/generic/clipboard/paste-component/components/PopoverContent.jsx", + "line": 26, + "column": 62, + "index": 934 + } + ], + "QuestionIcon": [ + { + "filePath": "src/generic/clipboard/paste-component/components/WhatsInClipboard.jsx", + "line": 33, + "column": 13, + "index": 980 + } + ], + "Popover": [ + { + "filePath": "src/generic/clipboard/paste-component/index.jsx", + "line": 18, + "column": 6, + "index": 613 }, { - "filePath": "src/components/executive-education-2u/components/CourseSummaryCard.jsx", - "line": 57, - "column": 18, - "index": 2279 + "filePath": "src/taxonomy/system-defined-badge/index.jsx", + "line": 14, + "column": 4, + "index": 336 }, { - "filePath": "src/components/executive-education-2u/components/CourseSummaryCard.jsx", - "line": 60, - "column": 18, - "index": 2492 + "filePath": "src/taxonomy/taxonomy-card/index.jsx", + "line": 63, + "column": 4, + "index": 1592 + } + ], + "Delete": [ + { + "filePath": "src/generic/CollapsableEditor.jsx", + "line": 46, + "column": 19, + "index": 1283 + } + ], + "FileUploadIcon": [ + { + "filePath": "src/generic/course-upload-image/index.jsx", + "line": 71, + "column": 13, + "index": 1895 }, { - "filePath": "src/components/executive-education-2u/components/CourseSummaryCard.jsx", - "line": 61, - "column": 18, - "index": 2607 + "filePath": "src/generic/modal-dropzone/ModalDropzone.jsx", + "line": 68, + "column": 13, + "index": 1389 + } + ], + "Card.Divider": [ + { + "filePath": "src/generic/course-upload-image/index.jsx", + "line": 121, + "column": 8, + "index": 3242 }, { - "filePath": "src/components/executive-education-2u/components/EnrollmentCompletedSummaryCard.jsx", - "line": 17, + "filePath": "src/schedule-and-details/basic-section/index.jsx", + "line": 111, "column": 6, - "index": 444 + "index": 3082 }, { - "filePath": "src/components/executive-education-2u/components/EnrollmentCompletedSummaryCard.jsx", - "line": 27, + "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", + "line": 93, "column": 6, - "index": 717 + "index": 3630 }, { - "filePath": "src/components/executive-education-2u/components/ErrorPageContent.jsx", - "line": 39, + "filePath": "src/schedule-and-details/introducing-section/introduction-video/index.jsx", + "line": 31, "column": 8, - "index": 1345 + "index": 967 }, { - "filePath": "src/components/executive-education-2u/components/RegistrationSummaryCard.jsx", - "line": 17, - "column": 10, - "index": 437 + "filePath": "src/schedule-and-details/requirements-section/entrance-exam/index.jsx", + "line": 42, + "column": 12, + "index": 1311 }, { - "filePath": "src/components/executive-education-2u/components/RegistrationSummaryCard.jsx", - "line": 24, + "filePath": "src/studio-home/processing-courses/course-item/index.jsx", + "line": 45, "column": 10, - "index": 753 + "index": 1302 }, { - "filePath": "src/components/executive-education-2u/components/RegistrationSummaryCard.jsx", - "line": 27, - "column": 16, - "index": 904 + "filePath": "src/studio-home/processing-courses/course-item/index.jsx", + "line": 71, + "column": 10, + "index": 2220 }, { - "filePath": "src/components/executive-education-2u/components/RegistrationSummaryCard.jsx", - "line": 28, - "column": 16, - "index": 1059 + "filePath": "src/studio-home/tabs-section/courses-tab/contact-administrator/index.jsx", + "line": 26, + "column": 10, + "index": 898 }, { - "filePath": "src/components/executive-education-2u/ExecutiveEducation2UPage.jsx", - "line": 134, - "column": 16, - "index": 5156 - }, + "filePath": "src/taxonomy/taxonomy-detail/TaxonomyDetailSideCard.jsx", + "line": 17, + "column": 6, + "index": 482 + } + ], + "Calendar": [ { - "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", - "line": 222, - "column": 18, - "index": 8111 - }, + "filePath": "src/generic/datepicker-control/DatepickerControl.jsx", + "line": 49, + "column": 17, + "index": 1382 + } + ], + "SwitchControl": [ { - "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", - "line": 241, - "column": 18, - "index": 8907 - }, + "filePath": "src/generic/FormSwitchGroup.jsx", + "line": 33, + "column": 10, + "index": 874 + } + ], + "IconSettings": [ { - "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", - "line": 262, - "column": 18, - "index": 9711 - }, + "filePath": "src/generic/processing-notification/index.jsx", + "line": 20, + "column": 68, + "index": 631 + } + ], + "WarningFilledIcon": [ { - "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", - "line": 295, - "column": 20, - "index": 11108 + "filePath": "src/group-configurations/content-groups-section/ContentGroupForm.jsx", + "line": 79, + "column": 24, + "index": 2460 }, { - "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", - "line": 323, - "column": 18, - "index": 12618 - }, + "filePath": "src/group-configurations/experiment-configurations-section/ExperimentForm.jsx", + "line": 112, + "column": 22, + "index": 3717 + } + ], + "CloseIcon": [ { - "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", - "line": 360, - "column": 18, - "index": 14403 + "filePath": "src/group-configurations/experiment-configurations-section/ExperimentFormGroups.jsx", + "line": 65, + "column": 23, + "index": 2141 }, { - "filePath": "src/components/pathway/PathwayModal.jsx", - "line": 31, - "column": 6, - "index": 1123 - }, + "filePath": "src/studio-home/processing-courses/course-item/index.jsx", + "line": 76, + "column": 26, + "index": 2566 + } + ], + "Form.Check": [ { - "filePath": "src/components/pathway/PathwayModal.jsx", - "line": 40, - "column": 6, - "index": 1354 + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/lti/LtiConfigForm.jsx", + "line": 153, + "column": 14, + "index": 6078 }, { - "filePath": "src/components/pathway/PathwayModal.jsx", - "line": 53, + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/lti/LtiConfigForm.jsx", + "line": 161, + "column": 14, + "index": 6389 + } + ], + "CardGrid": [ + { + "filePath": "src/pages-and-resources/discussions/app-list/AppList.jsx", + "line": 140, "column": 6, - "index": 1698 + "index": 4871 }, { - "filePath": "src/components/pathway/PathwayModal.jsx", - "line": 105, - "column": 10, - "index": 3152 - }, + "filePath": "src/pages-and-resources/pages/PageGrid.jsx", + "line": 9, + "column": 2, + "index": 348 + } + ], + "Remove": [ { - "filePath": "src/components/pathway/PathwayModal.jsx", - "line": 120, - "column": 10, - "index": 3746 - }, + "filePath": "src/pages-and-resources/discussions/app-list/FeaturesTable.jsx", + "line": 37, + "column": 18, + "index": 1506 + } + ], + "FullscreenModal": [ { - "filePath": "src/components/pathway/PathwayModal.jsx", - "line": 135, - "column": 10, - "index": 4382 + "filePath": "src/pages-and-resources/discussions/DiscussionsSettings.jsx", + "line": 64, + "column": 6, + "index": 2160 }, { - "filePath": "src/components/program-progress/ProgramProgressCourses.jsx", - "line": 81, + "filePath": "src/pages-and-resources/discussions/DiscussionsSettings.jsx", + "line": 77, "column": 6, - "index": 2559 + "index": 2434 }, { - "filePath": "src/components/program-progress/ProgramProgressCourses.jsx", + "filePath": "src/pages-and-resources/discussions/DiscussionsSettings.jsx", "line": 92, - "column": 8, - "index": 2935 - }, - { - "filePath": "src/components/program-progress/ProgramProgressCourses.jsx", - "line": 183, - "column": 61, - "index": 6415 - }, - { - "filePath": "src/components/program/ProgramSidebarListItem.jsx", - "line": 11, - "column": 4, - "index": 257 - }, + "column": 10, + "index": 2806 + } + ], + "Stepper": [ { - "filePath": "src/components/program/ProgramSidebarListItem.jsx", - "line": 15, - "column": 4, - "index": 387 + "filePath": "src/pages-and-resources/discussions/DiscussionsSettings.jsx", + "line": 91, + "column": 8, + "index": 2762 }, { - "filePath": "src/components/search/AssignmentsOnlyEmptyState.jsx", - "line": 43, + "filePath": "src/taxonomy/import-tags/ImportTagsWizard.jsx", + "line": 442, "column": 8, - "index": 1426 + "index": 12666 } ], - "Badge": [ + "Stepper.Header": [ { - "filePath": "src/components/course/course-header/CourseHeader.jsx", - "line": 96, - "column": 84, - "index": 3275 - }, + "filePath": "src/pages-and-resources/discussions/DiscussionsSettings.jsx", + "line": 98, + "column": 28, + "index": 3041 + } + ], + "Stepper.ActionRow": [ { - "filePath": "src/components/course/CourseSkills.jsx", - "line": 45, - "column": 12, - "index": 1571 + "filePath": "src/pages-and-resources/discussions/DiscussionsSettings.jsx", + "line": 102, + "column": 16, + "index": 3197 }, { - "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/BaseCourseCard.jsx", - "line": 465, - "column": 13, - "index": 12800 + "filePath": "src/pages-and-resources/discussions/DiscussionsSettings.jsx", + "line": 105, + "column": 16, + "index": 3337 }, { - "filePath": "src/components/dashboard/sidebar/CouponCodesSummaryCard.jsx", - "line": 87, - "column": 14, - "index": 2792 + "filePath": "src/taxonomy/import-tags/ImportTagsWizard.jsx", + "line": 463, + "column": 12, + "index": 13391 }, { - "filePath": "src/components/dashboard/sidebar/LearnerCreditSummaryCard.jsx", - "line": 22, - "column": 10, - "index": 680 + "filePath": "src/taxonomy/import-tags/ImportTagsWizard.jsx", + "line": 472, + "column": 12, + "index": 13843 }, { - "filePath": "src/components/dashboard/sidebar/SubscriptionSummaryCard.jsx", - "line": 92, - "column": 16, - "index": 3170 + "filePath": "src/taxonomy/import-tags/ImportTagsWizard.jsx", + "line": 501, + "column": 12, + "index": 15065 }, { - "filePath": "src/components/dashboard/sidebar/SubscriptionSummaryCard.jsx", - "line": 125, + "filePath": "src/taxonomy/import-tags/ImportTagsWizard.jsx", + "line": 518, "column": 12, - "index": 4417 + "index": 15877 }, { - "filePath": "src/components/pathway-progress/PathwayNode.jsx", - "line": 44, - "column": 50, - "index": 1426 - }, + "filePath": "src/taxonomy/import-tags/ImportTagsWizard.jsx", + "line": 531, + "column": 12, + "index": 16596 + } + ], + "Stepper.Step": [ { - "filePath": "src/components/pathway-progress/SubscriptionStatusCard.jsx", - "line": 32, + "filePath": "src/pages-and-resources/discussions/DiscussionsSettings.jsx", + "line": 119, "column": 12, - "index": 1256 + "index": 3858 }, { - "filePath": "src/components/pathway/SearchPathwayCard.jsx", - "line": 124, - "column": 14, - "index": 3591 + "filePath": "src/pages-and-resources/discussions/DiscussionsSettings.jsx", + "line": 132, + "column": 12, + "index": 4309 }, { - "filePath": "src/components/search/SearchProgramCard.jsx", - "line": 127, - "column": 8, - "index": 3590 + "filePath": "src/taxonomy/import-tags/ImportTagsWizard.jsx", + "line": 44, + "column": 4, + "index": 1085 }, { - "filePath": "src/components/skills-quiz/CourseCard.jsx", - "line": 86, - "column": 12, - "index": 2910 + "filePath": "src/taxonomy/import-tags/ImportTagsWizard.jsx", + "line": 101, + "column": 4, + "index": 2696 }, { - "filePath": "src/components/skills-quiz/SearchProgramCard.jsx", - "line": 219, - "column": 22, - "index": 7487 + "filePath": "src/taxonomy/import-tags/ImportTagsWizard.jsx", + "line": 194, + "column": 4, + "index": 5583 }, { - "filePath": "src/components/skills-quiz/SearchProgramCard.jsx", + "filePath": "src/taxonomy/import-tags/ImportTagsWizard.jsx", "line": 226, - "column": 16, - "index": 7764 + "column": 4, + "index": 6621 }, { - "filePath": "src/components/skills-quiz/SelectedJobSkills.jsx", - "line": 14, - "column": 10, - "index": 480 - }, + "filePath": "src/taxonomy/import-tags/ImportTagsWizard.jsx", + "line": 253, + "column": 4, + "index": 7397 + } + ], + "Settings": [ { - "filePath": "src/components/skills-quiz/SkillsCourses.jsx", - "line": 126, - "column": 10, - "index": 3966 - }, + "filePath": "src/pages-and-resources/pages/PageSettingButton.jsx", + "line": 64, + "column": 11, + "index": 1754 + } + ], + "PageBanner": [ { - "filePath": "src/components/skills-quiz/TopSkillsOverview.jsx", - "line": 78, + "filePath": "src/schedule-and-details/basic-section/index.jsx", + "line": 81, + "column": 4, + "index": 2211 + } + ], + "EmailIcon": [ + { + "filePath": "src/schedule-and-details/basic-section/index.jsx", + "line": 119, + "column": 56, + "index": 3403 + } + ], + "ErrorOutlineIcon": [ + { + "filePath": "src/schedule-and-details/index.jsx", + "line": 194, "column": 18, - "index": 2622 + "index": 5940 }, { - "filePath": "src/components/skills-quiz/TopSkillsOverview.jsx", - "line": 86, + "filePath": "src/schedule-and-details/index.jsx", + "line": 207, "column": 18, - "index": 2836 + "index": 6397 } ], - "useToggle": [ + "RotateRightIcon": [ { - "filePath": "src/components/course/course-header/CoursePreview.jsx", - "line": 8, - "column": 38, - "index": 312 - }, + "filePath": "src/studio-home/processing-courses/course-item/index.jsx", + "line": 39, + "column": 27, + "index": 1052 + } + ], + "SearchField": [ { - "filePath": "src/components/dashboard/main-content/CoursesTabComponent.jsx", - "line": 20, - "column": 58, - "index": 762 - }, + "filePath": "src/studio-home/tabs-section/courses-tab/courses-filters/index.jsx", + "line": 104, + "column": 8, + "index": 3325 + } + ], + "Download": [ { - "filePath": "src/components/dashboard/sidebar/CouponCodesSummaryCard.jsx", - "line": 26, - "column": 6, - "index": 902 + "filePath": "src/taxonomy/import-tags/ImportTagsWizard.jsx", + "line": 49, + "column": 24, + "index": 1362 }, { - "filePath": "src/components/dashboard/sidebar/SubscriptionSummaryCard.jsx", - "line": 32, - "column": 6, - "index": 1242 - }, + "filePath": "src/taxonomy/import-tags/ImportTagsWizard.jsx", + "line": 57, + "column": 24, + "index": 1673 + } + ], + "InsertDriveFile": [ { - "filePath": "src/components/my-career/CategoryCard.jsx", - "line": 22, - "column": 60, - "index": 1068 - }, + "filePath": "src/taxonomy/import-tags/ImportTagsWizard.jsx", + "line": 135, + "column": 25, + "index": 3927 + } + ], + "Form.Autosuggest": [ { - "filePath": "src/components/my-career/CategoryCard.jsx", - "line": 23, - "column": 64, - "index": 1150 - }, + "filePath": "src/taxonomy/manage-orgs/ManageOrgsModal.jsx", + "line": 198, + "column": 12, + "index": 5720 + } + ], + "Form.AutosuggestOption": [ { - "filePath": "src/components/my-career/CategoryCard.jsx", - "line": 24, - "column": 55, - "index": 1223 - }, + "filePath": "src/taxonomy/manage-orgs/ManageOrgsModal.jsx", + "line": 208, + "column": 16, + "index": 6185 + } + ], + "Popover.Content": [ { - "filePath": "src/components/my-career/VisualizeCareer.jsx", - "line": 21, - "column": 57, - "index": 949 + "filePath": "src/taxonomy/system-defined-badge/index.jsx", + "line": 18, + "column": 6, + "index": 536 }, { - "filePath": "src/components/search/Search.jsx", - "line": 50, - "column": 72, - "index": 2222 + "filePath": "src/taxonomy/taxonomy-card/index.jsx", + "line": 67, + "column": 6, + "index": 1695 } ], - "PlayCircleFilled": [ + "DataTable.ExpandRow": [ { - "filePath": "src/components/course/course-header/CoursePreview.jsx", - "line": 26, - "column": 16, - "index": 941 + "filePath": "src/taxonomy/tag-list/TagListTable.jsx", + "line": 42, + "column": 76, + "index": 1411 } ], - "Card.Status": [ + "DataTable.TableFooter": [ { - "filePath": "src/components/course/course-header/CourseRunCardStatus.jsx", - "line": 41, - "column": 4, - "index": 1796 + "filePath": "src/taxonomy/tag-list/TagListTable.jsx", + "line": 111, + "column": 13, + "index": 3539 } ], - "Lock": [ + "ViewIcon": [ { - "filePath": "src/components/course/course-header/CourseRunCardStatus.jsx", - "line": 43, - "column": 12, - "index": 1845 + "filePath": "src/textbooks/textbook-card/TextbooksCard.jsx", + "line": 80, + "column": 25, + "index": 2492 } ], - "Stack": [ + "DeleteIcon": [ { - "filePath": "src/components/course/course-header/data/hooks/useCourseRunCardAction.jsx", - "line": 74, - "column": 6, - "index": 2937 + "filePath": "src/textbooks/textbook-card/TextbooksCard.jsx", + "line": 94, + "column": 25, + "index": 3120 }, { - "filePath": "src/components/course/course-header/data/hooks/useCourseRunCardAction.jsx", - "line": 110, - "column": 4, - "index": 4041 - }, + "filePath": "src/textbooks/textbook-form/TextbookForm.jsx", + "line": 118, + "column": 33, + "index": 4848 + } + ], + "UploadIcon": [ { - "filePath": "src/components/pathway/SearchPathwayCard.jsx", - "line": 122, - "column": 10, - "index": 3410 - }, + "filePath": "src/textbooks/textbook-form/TextbookForm.jsx", + "line": 108, + "column": 33, + "index": 4279 + } + ], + "PdfIcon": [ { - "filePath": "src/components/progress-category-bubbles/ProgressCategoryBubbles.jsx", - "line": 7, - "column": 2, - "index": 219 - }, + "filePath": "src/textbooks/textbook-form/TextbookForm.jsx", + "line": 179, + "column": 29, + "index": 7810 + } + ] + } + }, + { + "version": "22.8.1", + "name": "@openedx-plugins/course-app-calculator", + "folderName": "calculator", + "usages": {} + }, + { + "version": "22.8.1", + "name": "@openedx-plugins/course-app-edxnotes", + "folderName": "edxnotes", + "usages": {} + }, + { + "version": "22.8.1", + "name": "@openedx-plugins/course-app-learning_assistant", + "folderName": "learning_assistant", + "usages": { + "Hyperlink": [ { - "filePath": "src/components/search/AssignmentsOnlyEmptyState.jsx", - "line": 34, - "column": 8, - "index": 1070 + "filePath": "Settings.jsx", + "line": 23, + "column": 12, + "index": 885 }, { - "filePath": "src/components/search/content-highlights/ContentHighlights.jsx", - "line": 38, - "column": 6, - "index": 965 - }, + "filePath": "Settings.jsx", + "line": 33, + "column": 12, + "index": 1299 + } + ] + } + }, + { + "version": "22.8.1", + "name": "@openedx-plugins/course-app-live", + "folderName": "live", + "usages": { + "Form.Group": [ { - "filePath": "src/components/search/Search.jsx", - "line": 190, - "column": 10, - "index": 7302 - }, + "filePath": "BBBSettings.jsx", + "line": 55, + "column": 6, + "index": 1788 + } + ], + "Form.Label": [ { - "filePath": "src/components/site-header/SiteHeaderLogos.jsx", - "line": 32, - "column": 4, - "index": 1015 - }, + "filePath": "BBBSettings.jsx", + "line": 56, + "column": 8, + "index": 1862 + } + ], + "Form.Control": [ { - "filePath": "src/components/skills-quiz/CourseCard.jsx", - "line": 80, + "filePath": "BBBSettings.jsx", + "line": 63, "column": 8, - "index": 2665 + "index": 2130 + } + ], + "Hyperlink": [ + { + "filePath": "BBBSettings.jsx", + "line": 74, + "column": 6, + "index": 2384 }, { - "filePath": "src/components/skills-quiz/SearchProgramCard.jsx", - "line": 216, + "filePath": "BBBSettings.jsx", + "line": 95, "column": 16, - "index": 7242 - }, + "index": 3221 + } + ], + "Icon": [ { - "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", - "line": 267, + "filePath": "Settings.jsx", + "line": 112, "column": 20, - "index": 10738 + "index": 4650 } - ], + ] + } + }, + { + "version": "22.8.1", + "name": "@openedx-plugins/course-app-ora_settings", + "folderName": "ora_settings", + "usages": { "Alert": [ { - "filePath": "src/components/course/CourseEnrollmentFailedAlert.jsx", - "line": 97, - "column": 52, - "index": 3421 - }, - { - "filePath": "src/components/course/CourseEnrollmentFailedAlert.jsx", - "line": 110, - "column": 6, - "index": 3785 - }, - { - "filePath": "src/components/course/LicenseRequestedAlert.jsx", - "line": 51, - "column": 6, - "index": 1967 - }, - { - "filePath": "src/components/course/routes/ExternalCourseEnrollment.jsx", - "line": 94, - "column": 14, - "index": 3643 - }, - { - "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/email-settings/EmailSettingsModal.jsx", - "line": 119, + "filePath": "Settings.jsx", + "line": 80, "column": 14, - "index": 2781 - }, - { - "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/mark-complete-modal/ModalError.jsx", - "line": 10, - "column": 4, - "index": 312 - }, - { - "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/move-to-in-progress-modal/ModalError.jsx", - "line": 10, - "column": 4, - "index": 324 - }, - { - "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/unenroll/UnenrollModal.jsx", - "line": 77, - "column": 8, - "index": 1905 - }, - { - "filePath": "src/components/dashboard/main-content/course-enrollments/CourseAssignmentAlert.jsx", - "line": 22, - "column": 4, - "index": 791 - }, - { - "filePath": "src/components/dashboard/main-content/course-enrollments/CourseEnrollmentsAlert.jsx", - "line": 19, - "column": 4, - "index": 375 - }, - { - "filePath": "src/components/dashboard/main-content/CoursesTabComponent.jsx", - "line": 23, - "column": 6, - "index": 825 - }, + "index": 3090 + } + ], + "Info": [ { - "filePath": "src/components/enterprise-user-subsidy/enterprise-offers/EnterpriseOffersBalanceAlert.jsx", - "line": 49, - "column": 6, - "index": 1710 - }, + "filePath": "Settings.jsx", + "line": 80, + "column": 44, + "index": 3120 + } + ], + "Alert.Heading": [ { - "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", - "line": 207, + "filePath": "Settings.jsx", + "line": 81, "column": 16, - "index": 7480 - }, - { - "filePath": "src/components/license-activation/LicenseActivation.jsx", - "line": 56, - "column": 47, - "index": 1950 - }, - { - "filePath": "src/components/license-activation/LicenseActivationErrorAlert.jsx", - "line": 11, - "column": 6, - "index": 306 - }, - { - "filePath": "src/components/license-activation/LicenseActivationPage.jsx", - "line": 52, - "column": 47, - "index": 2284 - }, + "index": 3158 + } + ], + "Badge": [ { - "filePath": "src/components/program/ProgramCourses.jsx", + "filePath": "Settings.jsx", "line": 94, "column": 20, - "index": 3749 - }, + "index": 3718 + } + ], + "Hyperlink": [ { - "filePath": "src/components/search/AssignmentsOnlyEmptyState.jsx", - "line": 19, - "column": 6, - "index": 709 - }, + "filePath": "Settings.jsx", + "line": 104, + "column": 20, + "index": 4129 + } + ], + "ModalDialog": [ { - "filePath": "src/components/search/SearchError.jsx", - "line": 11, + "filePath": "Settings.jsx", + "line": 130, "column": 4, - "index": 317 - }, - { - "filePath": "src/components/search/SearchNoResults.jsx", - "line": 14, - "column": 6, - "index": 377 - }, + "index": 4915 + } + ], + "Form": [ { - "filePath": "src/components/skills-quiz/SearchCourseCard.jsx", - "line": 95, + "filePath": "Settings.jsx", + "line": 140, "column": 6, - "index": 3379 - }, + "index": 5152 + } + ], + "ModalDialog.Header": [ { - "filePath": "src/components/skills-quiz/SearchProgramCard.jsx", - "line": 169, - "column": 6, - "index": 5766 - }, + "filePath": "Settings.jsx", + "line": 141, + "column": 8, + "index": 5220 + } + ], + "ModalDialog.Title": [ { - "filePath": "src/components/skills-quiz/SkillsCourses.jsx", - "line": 166, + "filePath": "Settings.jsx", + "line": 142, "column": 10, "index": 5251 } ], - "Error": [ - { - "filePath": "src/components/course/CourseEnrollmentFailedAlert.jsx", - "line": 110, - "column": 36, - "index": 3815 - }, + "ModalDialog.Body": [ { - "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/email-settings/EmailSettingsModal.jsx", - "line": 119, - "column": 44, - "index": 2811 - }, + "filePath": "Settings.jsx", + "line": 146, + "column": 8, + "index": 5386 + } + ], + "ModalDialog.Footer": [ { - "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/mark-complete-modal/ModalError.jsx", - "line": 10, - "column": 34, - "index": 342 - }, + "filePath": "Settings.jsx", + "line": 149, + "column": 8, + "index": 5466 + } + ], + "ActionRow": [ { - "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/move-to-in-progress-modal/ModalError.jsx", - "line": 10, - "column": 34, - "index": 354 + "filePath": "Settings.jsx", + "line": 150, + "column": 10, + "index": 5513 } ], - "MediaQuery": [ + "ModalDialog.CloseButton": [ { - "filePath": "src/components/course/CourseMainContent.jsx", - "line": 38, - "column": 6, - "index": 1028 - }, + "filePath": "Settings.jsx", + "line": 151, + "column": 12, + "index": 5537 + } + ], + "StatefulButton": [ { - "filePath": "src/components/course/routes/CourseAbout.jsx", - "line": 57, - "column": 10, - "index": 1905 - }, + "filePath": "Settings.jsx", + "line": 154, + "column": 12, + "index": 5685 + } + ] + } + }, + { + "version": "22.8.1", + "name": "@openedx-plugins/course-app-proctoring", + "folderName": "proctoring", + "usages": { + "Alert.Link": [ { - "filePath": "src/components/dashboard/main-content/CoursesTabComponent.jsx", - "line": 38, - "column": 10, - "index": 1370 + "filePath": "Settings.jsx", + "line": 174, + "column": 16, + "index": 7329 }, { - "filePath": "src/components/dashboard/main-content/DashboardMainContent.jsx", - "line": 25, - "column": 6, - "index": 697 + "filePath": "Settings.jsx", + "line": 189, + "column": 35, + "index": 7886 }, { - "filePath": "src/components/dashboard/main-content/DashboardMainContent.jsx", - "line": 57, - "column": 6, - "index": 1788 + "filePath": "Settings.jsx", + "line": 452, + "column": 14, + "index": 17246 }, { - "filePath": "src/components/my-career/AddJobRole.jsx", - "line": 97, - "column": 8, - "index": 3362 + "filePath": "Settings.jsx", + "line": 473, + "column": 12, + "index": 17933 }, { - "filePath": "src/components/program-progress/ProgramProgressPage.jsx", - "line": 111, + "filePath": "Settings.jsx", + "line": 492, "column": 14, - "index": 4236 - }, + "index": 18595 + } + ], + "Hyperlink": [ { - "filePath": "src/components/program/ProgramEndorsements.jsx", - "line": 16, - "column": 8, - "index": 760 - }, + "filePath": "Settings.jsx", + "line": 251, + "column": 4, + "index": 9811 + } + ], + "Alert": [ { - "filePath": "src/components/program/ProgramPage.jsx", - "line": 80, + "filePath": "Settings.jsx", + "line": 269, "column": 12, - "index": 2499 + "index": 10380 }, { - "filePath": "src/components/site-header/SiteHeader.jsx", - "line": 79, + "filePath": "Settings.jsx", + "line": 437, "column": 6, - "index": 2801 + "index": 16787 }, { - "filePath": "src/components/site-header/SiteHeader.jsx", - "line": 82, + "filePath": "Settings.jsx", + "line": 502, "column": 6, - "index": 2886 + "index": 18825 } ], - "breakpoints": [ + "Badge": [ { - "filePath": "src/components/course/CourseMainContent.jsx", - "line": 38, - "column": 28, - "index": 1050 - }, + "filePath": "Settings.jsx", + "line": 291, + "column": 18, + "index": 11137 + } + ], + "Form.Group": [ { - "filePath": "src/components/course/routes/CourseAbout.jsx", - "line": 57, - "column": 32, - "index": 1927 + "filePath": "Settings.jsx", + "line": 312, + "column": 12, + "index": 11761 }, { - "filePath": "src/components/course/routes/tests/CourseAbout.test.jsx", - "line": 74, - "column": 36, - "index": 2002 + "filePath": "Settings.jsx", + "line": 338, + "column": 10, + "index": 12897 }, { - "filePath": "src/components/course/routes/tests/CourseAbout.test.jsx", - "line": 123, - "column": 74, - "index": 4134 + "filePath": "Settings.jsx", + "line": 369, + "column": 12, + "index": 14356 }, { - "filePath": "src/components/dashboard/main-content/CoursesTabComponent.jsx", - "line": 38, - "column": 32, - "index": 1392 - }, + "filePath": "Settings.jsx", + "line": 393, + "column": 12, + "index": 15477 + } + ], + "Form.Label": [ { - "filePath": "src/components/dashboard/main-content/DashboardMainContent.jsx", - "line": 25, - "column": 28, - "index": 719 + "filePath": "Settings.jsx", + "line": 313, + "column": 14, + "index": 11823 }, { - "filePath": "src/components/dashboard/main-content/DashboardMainContent.jsx", - "line": 57, - "column": 28, - "index": 1810 + "filePath": "Settings.jsx", + "line": 339, + "column": 12, + "index": 12954 }, { - "filePath": "src/components/dashboard/tests/DashboardPage.test.jsx", - "line": 141, - "column": 9, - "index": 4567 + "filePath": "Settings.jsx", + "line": 370, + "column": 14, + "index": 14417 }, { - "filePath": "src/components/dashboard/tests/DashboardPage.test.jsx", - "line": 274, - "column": 62, - "index": 8860 - }, + "filePath": "Settings.jsx", + "line": 394, + "column": 14, + "index": 15541 + } + ], + "Form.Control": [ { - "filePath": "src/components/my-career/AddJobRole.jsx", - "line": 97, - "column": 30, - "index": 3384 + "filePath": "Settings.jsx", + "line": 316, + "column": 14, + "index": 12005 }, { - "filePath": "src/components/program-progress/ProgramListingCard.jsx", - "line": 37, - "column": 23, - "index": 1157 - }, + "filePath": "Settings.jsx", + "line": 342, + "column": 12, + "index": 13125 + } + ], + "Form.Text": [ { - "filePath": "src/components/program-progress/ProgramListingCard.jsx", - "line": 39, - "column": 30, - "index": 1265 + "filePath": "Settings.jsx", + "line": 325, + "column": 14, + "index": 12382 }, { - "filePath": "src/components/program-progress/ProgramListingCard.jsx", - "line": 41, - "column": 30, - "index": 1375 - }, + "filePath": "Settings.jsx", + "line": 352, + "column": 12, + "index": 13577 + } + ], + "Form.RadioSet": [ { - "filePath": "src/components/program-progress/ProgramProgressPage.jsx", - "line": 111, - "column": 36, - "index": 4258 + "filePath": "Settings.jsx", + "line": 373, + "column": 14, + "index": 14602 }, { - "filePath": "src/components/program/ProgramEndorsements.jsx", - "line": 16, - "column": 30, - "index": 782 - }, + "filePath": "Settings.jsx", + "line": 397, + "column": 14, + "index": 15728 + } + ], + "Form.Radio": [ { - "filePath": "src/components/program/ProgramHeader.jsx", - "line": 25, - "column": 67, - "index": 959 + "filePath": "Settings.jsx", + "line": 379, + "column": 16, + "index": 14838 }, { - "filePath": "src/components/program/ProgramPage.jsx", - "line": 80, - "column": 34, - "index": 2521 + "filePath": "Settings.jsx", + "line": 382, + "column": 16, + "index": 15019 }, { - "filePath": "src/components/search/content-highlights/ContentHighlightSet.jsx", - "line": 34, - "column": 26, - "index": 1092 + "filePath": "Settings.jsx", + "line": 402, + "column": 16, + "index": 15926 }, { - "filePath": "src/components/site-header/tests/SiteHeader.test.jsx", - "line": 41, - "column": 9, - "index": 942 + "filePath": "Settings.jsx", + "line": 405, + "column": 16, + "index": 16113 } ], - "Card.ImageCap": [ - { - "filePath": "src/components/course/CourseRecommendationCard.jsx", - "line": 55, - "column": 6, - "index": 1836 - }, - { - "filePath": "src/components/pathway-progress/PathwayProgressCard.jsx", - "line": 23, - "column": 6, - "index": 951 - }, - { - "filePath": "src/components/pathway/SearchPathwayCard.jsx", - "line": 110, - "column": 6, - "index": 3099 - }, + "ModalDialog": [ { - "filePath": "src/components/program-progress/ProgramListingCard.jsx", - "line": 63, - "column": 6, - "index": 1955 - }, + "filePath": "Settings.jsx", + "line": 603, + "column": 4, + "index": 23168 + } + ], + "Form": [ { - "filePath": "src/components/search/content-highlights/HighlightedContentCard.jsx", - "line": 62, + "filePath": "Settings.jsx", + "line": 613, "column": 6, - "index": 1462 - }, + "index": 23393 + } + ], + "ModalDialog.Header": [ { - "filePath": "src/components/search/SearchCourseCard.jsx", - "line": 103, - "column": 6, - "index": 2829 - }, + "filePath": "Settings.jsx", + "line": 614, + "column": 8, + "index": 23461 + } + ], + "ModalDialog.Title": [ { - "filePath": "src/components/search/SearchProgramCard.jsx", - "line": 107, - "column": 6, - "index": 2995 - }, + "filePath": "Settings.jsx", + "line": 615, + "column": 10, + "index": 23492 + } + ], + "ModalDialog.Body": [ { - "filePath": "src/components/skills-quiz/CardLoadingSkeleton.jsx", - "line": 11, + "filePath": "Settings.jsx", + "line": 619, "column": 8, - "index": 316 - }, - { - "filePath": "src/components/skills-quiz/CourseCard.jsx", - "line": 60, - "column": 6, - "index": 2030 - }, + "index": 23617 + } + ], + "ModalDialog.Footer": [ { - "filePath": "src/components/skills-quiz/SearchProgramCard.jsx", - "line": 196, - "column": 14, - "index": 6488 + "filePath": "Settings.jsx", + "line": 627, + "column": 8, + "index": 23999 } ], - "Truncate": [ + "ActionRow": [ { - "filePath": "src/components/course/CourseRecommendationCard.jsx", - "line": 64, + "filePath": "Settings.jsx", + "line": 632, "column": 10, - "index": 2086 - }, + "index": 24104 + } + ], + "ModalDialog.CloseButton": [ { - "filePath": "src/components/course/CourseRecommendationCard.jsx", - "line": 68, + "filePath": "Settings.jsx", + "line": 633, "column": 12, - "index": 2240 - }, + "index": 24128 + } + ], + "StatefulButton": [ { - "filePath": "src/components/pathway-progress/PathwayProgressCard.jsx", - "line": 32, - "column": 10, - "index": 1220 - }, + "filePath": "Settings.jsx", + "line": 636, + "column": 12, + "index": 24300 + } + ] + } + }, + { + "version": "22.8.1", + "name": "@openedx-plugins/course-app-progress", + "folderName": "progress", + "usages": {} + }, + { + "version": "22.8.1", + "name": "@openedx-plugins/course-app-teams", + "folderName": "teams", + "usages": { + "TransitionReplace": [ { - "filePath": "src/components/pathway/SearchPathwayCard.jsx", - "line": 117, - "column": 10, - "index": 3277 - }, + "filePath": "GroupEditor.jsx", + "line": 45, + "column": 4, + "index": 1630 + } + ], + "Button": [ { - "filePath": "src/components/program-progress/ProgramListingCard.jsx", - "line": 74, - "column": 10, - "index": 2283 + "filePath": "GroupEditor.jsx", + "line": 52, + "column": 14, + "index": 2042 }, { - "filePath": "src/components/program-progress/ProgramListingCard.jsx", - "line": 77, - "column": 10, - "index": 2418 + "filePath": "GroupEditor.jsx", + "line": 55, + "column": 14, + "index": 2194 }, { - "filePath": "src/components/search/content-highlights/HighlightedContentCard.jsx", - "line": 71, - "column": 10, - "index": 1767 - }, - { - "filePath": "src/components/search/content-highlights/HighlightedContentCard.jsx", - "line": 74, - "column": 10, - "index": 1884 - }, - { - "filePath": "src/components/search/SearchCourseCard.jsx", - "line": 112, - "column": 10, - "index": 3119 - }, - { - "filePath": "src/components/search/SearchCourseCard.jsx", - "line": 115, - "column": 10, - "index": 3239 - }, - { - "filePath": "src/components/search/SearchProgramCard.jsx", - "line": 116, - "column": 10, - "index": 3256 - }, + "filePath": "Settings.jsx", + "line": 147, + "column": 20, + "index": 5448 + } + ], + "Form.Group": [ { - "filePath": "src/components/search/SearchProgramCard.jsx", - "line": 120, + "filePath": "GroupEditor.jsx", + "line": 103, "column": 12, - "index": 3405 - }, + "index": 4385 + } + ], + "Form.Label": [ { - "filePath": "src/components/skills-quiz/CourseCard.jsx", - "line": 69, - "column": 10, - "index": 2320 + "filePath": "GroupEditor.jsx", + "line": 104, + "column": 14, + "index": 4441 }, { - "filePath": "src/components/skills-quiz/CourseCard.jsx", - "line": 74, - "column": 10, - "index": 2499 - }, + "filePath": "GroupEditor.jsx", + "line": 133, + "column": 21, + "index": 5789 + } + ], + "Form.RadioSet": [ { - "filePath": "src/components/skills-quiz/SearchProgramCard.jsx", - "line": 205, - "column": 18, - "index": 6824 - }, + "filePath": "GroupEditor.jsx", + "line": 107, + "column": 14, + "index": 4582 + } + ], + "Form.Radio": [ { - "filePath": "src/components/skills-quiz/SearchProgramCard.jsx", - "line": 210, + "filePath": "GroupEditor.jsx", + "line": 114, "column": 18, - "index": 7024 + "index": 4882 } ], - "Card.Footer": [ - { - "filePath": "src/components/course/CourseRecommendationCard.jsx", - "line": 75, - "column": 6, - "index": 2496 - }, - { - "filePath": "src/components/search/content-highlights/HighlightedContentCard.jsx", - "line": 78, - "column": 6, - "index": 1999 - }, - { - "filePath": "src/components/search/SearchCourseCard.jsx", - "line": 121, - "column": 6, - "index": 3403 - }, - { - "filePath": "src/components/search/SearchProgramCard.jsx", - "line": 138, - "column": 6, - "index": 3939 - }, + "Form.Text": [ { - "filePath": "src/components/skills-quiz/SearchProgramCard.jsx", - "line": 237, + "filePath": "Settings.jsx", + "line": 132, "column": 14, - "index": 8201 + "index": 4742 } ], - "Icon": [ - { - "filePath": "src/components/course/CourseReview.jsx", - "line": 62, - "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": 229, - "column": 22, - "index": 6350 - }, - { - "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/BaseCourseCard.jsx", - "line": 317, - "column": 12, - "index": 9049 - }, + "Add": [ { - "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/BaseCourseCard.jsx", - "line": 478, - "column": 8, - "index": 13366 - }, + "filePath": "Settings.jsx", + "line": 150, + "column": 34, + "index": 5588 + } + ] + } + }, + { + "version": "22.8.1", + "name": "@openedx-plugins/course-app-wiki", + "folderName": "wiki", + "usages": {} + }, + { + "version": "22.8.1", + "name": "@openedx-plugins/course-app-xpert_unit_summary", + "folderName": "xpert_unit_summary", + "usages": { + "TransitionReplace": [ { - "filePath": "src/components/my-career/AddJobRole.jsx", - "line": 16, + "filePath": "settings-modal/SettingsModal.jsx", + "line": 49, "column": 2, - "index": 747 - }, + "index": 1816 + } + ], + "ModalDialog": [ { - "filePath": "src/components/my-career/VisualizeCareer.jsx", - "line": 16, + "filePath": "settings-modal/SettingsModal.jsx", + "line": 75, "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": 108, - "column": 16, - "index": 3335 - }, - { - "filePath": "src/components/pathway/PathwayModal.jsx", - "line": 123, - "column": 16, - "index": 3935 - }, - { - "filePath": "src/components/pathway/PathwayModal.jsx", - "line": 138, - "column": 16, - "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 - }, + "index": 2509 + } + ], + "ModalDialog.Header": [ { - "filePath": "src/components/program/ProgramFAQ.jsx", - "line": 24, - "column": 28, - "index": 773 - }, + "filePath": "settings-modal/SettingsModal.jsx", + "line": 84, + "column": 4, + "index": 2672 + } + ], + "ModalDialog.Title": [ { - "filePath": "src/components/program/ProgramSidebarListItem.jsx", - "line": 12, + "filePath": "settings-modal/SettingsModal.jsx", + "line": 85, "column": 6, - "index": 307 - }, - { - "filePath": "src/components/search/SearchProgramCard.jsx", - "line": 133, - "column": 12, - "index": 3781 - }, - { - "filePath": "src/components/skills-quiz/SearchProgramCard.jsx", - "line": 232, - "column": 20, - "index": 8003 - }, + "index": 2699 + } + ], + "ModalDialog.Body": [ { - "filePath": "src/components/system-wide-banner/SystemWideWarningBanner.jsx", - "line": 8, + "filePath": "settings-modal/SettingsModal.jsx", + "line": 89, "column": 4, - "index": 254 + "index": 2818 } ], - "StarFilled": [ + "ModalDialog.Footer": [ { - "filePath": "src/components/course/CourseReview.jsx", - "line": 62, - "column": 46, - "index": 3115 + "filePath": "settings-modal/SettingsModal.jsx", + "line": 92, + "column": 4, + "index": 2882 } ], - "AccessTime": [ - { - "filePath": "src/components/course/CourseSidebar.jsx", - "line": 41, - "column": 22, - "index": 1705 - }, + "ActionRow": [ { - "filePath": "src/components/program/ProgramSidebar.jsx", - "line": 45, - "column": 18, - "index": 1565 + "filePath": "settings-modal/SettingsModal.jsx", + "line": 93, + "column": 6, + "index": 2925 } ], - "Speed": [ + "ModalDialog.CloseButton": [ { - "filePath": "src/components/course/CourseSidebar.jsx", - "line": 48, - "column": 22, - "index": 1989 - }, + "filePath": "settings-modal/SettingsModal.jsx", + "line": 94, + "column": 8, + "index": 2945 + } + ], + "OverlayTrigger": [ { - "filePath": "src/components/program/ProgramSidebar.jsx", - "line": 54, - "column": 18, - "index": 1781 + "filePath": "settings-modal/SettingsModal.jsx", + "line": 154, + "column": 4, + "index": 4455 } ], - "Tag": [ + "Tooltip": [ { - "filePath": "src/components/course/CourseSidebar.jsx", - "line": 56, - "column": 16, - "index": 2232 + "filePath": "settings-modal/SettingsModal.jsx", + "line": 157, + "column": 8, + "index": 4520 } ], - "Institution": [ + "StatefulButton": [ { - "filePath": "src/components/course/CourseSidebar.jsx", - "line": 62, - "column": 18, - "index": 2401 + "filePath": "settings-modal/SettingsModal.jsx", + "line": 165, + "column": 6, + "index": 4710 }, { - "filePath": "src/components/course/CourseSidebar.jsx", - "line": 115, - "column": 18, - "index": 4205 + "filePath": "settings-modal/SettingsModal.jsx", + "line": 317, + "column": 16, + "index": 9213 } ], - "School": [ + "Icon": [ { - "filePath": "src/components/course/CourseSidebar.jsx", - "line": 86, + "filePath": "settings-modal/SettingsModal.jsx", + "line": 173, + "column": 19, + "index": 4970 + }, + { + "filePath": "settings-modal/SettingsModal.jsx", + "line": 174, + "column": 19, + "index": 5015 + }, + { + "filePath": "settings-modal/SettingsModal.jsx", + "line": 175, "column": 18, - "index": 3262 + "index": 5085 } ], - "Equalizer": [ + "SpinnerSimple": [ { - "filePath": "src/components/course/CourseSidebar.jsx", - "line": 108, - "column": 18, - "index": 3999 + "filePath": "settings-modal/SettingsModal.jsx", + "line": 174, + "column": 30, + "index": 5026 } ], - "VideoFile": [ + "CheckCircleOutline": [ { - "filePath": "src/components/course/CourseSidebar.jsx", - "line": 122, - "column": 18, - "index": 4457 + "filePath": "settings-modal/SettingsModal.jsx", + "line": 175, + "column": 29, + "index": 5096 } ], - "Person": [ + "Hyperlink": [ { - "filePath": "src/components/course/CourseSidebar.jsx", - "line": 131, - "column": 18, - "index": 4748 + "filePath": "settings-modal/SettingsModal.jsx", + "line": 263, + "column": 6, + "index": 7712 }, { - "filePath": "src/components/program/ProgramSidebar.jsx", - "line": 36, - "column": 18, - "index": 1345 + "filePath": "settings-modal/SettingsModal.jsx", + "line": 276, + "column": 6, + "index": 8019 } ], - "OverlayTrigger": [ + "Form": [ { - "filePath": "src/components/course/CourseSkills.jsx", - "line": 27, + "filePath": "settings-modal/SettingsModal.jsx", + "line": 307, "column": 10, - "index": 811 - }, + "index": 8879 + } + ], + "Alert": [ { - "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/BaseCourseCard.jsx", - "line": 308, - "column": 10, - "index": 8775 + "filePath": "settings-modal/SettingsModal.jsx", + "line": 330, + "column": 16, + "index": 9722 } ], - "Popover": [ + "Info": [ { - "filePath": "src/components/course/CourseSkills.jsx", - "line": 32, - "column": 14, - "index": 962 + "filePath": "settings-modal/SettingsModal.jsx", + "line": 330, + "column": 46, + "index": 9752 } ], - "Popover.Title": [ + "Alert.Heading": [ { - "filePath": "src/components/course/CourseSkills.jsx", - "line": 33, - "column": 16, - "index": 1042 + "filePath": "settings-modal/SettingsModal.jsx", + "line": 331, + "column": 18, + "index": 9792 } ], - "Popover.Content": [ + "Badge": [ { - "filePath": "src/components/course/CourseSkills.jsx", - "line": 34, + "filePath": "settings-modal/SettingsModal.jsx", + "line": 347, + "column": 22, + "index": 10557 + } + ], + "Form.RadioSet": [ + { + "filePath": "settings-modal/SettingsModal.jsx", + "line": 362, "column": 16, - "index": 1110 + "index": 11108 } ], - "Modal": [ + "Form.Radio": [ { - "filePath": "src/components/course/EnrollModal.jsx", - "line": 84, - "column": 4, - "index": 2809 + "filePath": "settings-modal/SettingsModal.jsx", + "line": 368, + "column": 18, + "index": 11349 }, { - "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/email-settings/EmailSettingsModal.jsx", - "line": 114, - "column": 6, - "index": 2676 - }, + "filePath": "settings-modal/SettingsModal.jsx", + "line": 381, + "column": 18, + "index": 11874 + } + ] + } + }, + { + "version": "22.7.0", + "name": "@edx/frontend-app-discussions", + "repository": { + "type": "git", + "url": "git+https://github.com/openedx/frontend-app-discussions.git" + }, + "folderName": "frontend-app-discussions", + "usages": { + "Collapsible.Advanced": [ { - "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/mark-complete-modal/MarkCompleteModal.jsx", - "line": 76, - "column": 6, - "index": 2439 + "filePath": "src/components/FilterBar.jsx", + "line": 101, + "column": 4, + "index": 2814 }, { - "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/move-to-in-progress-modal/MoveToInProgressModal.jsx", - "line": 70, - "column": 6, - "index": 1933 + "filePath": "src/discussions/learners/learner/LearnerFilterBar.jsx", + "line": 74, + "column": 4, + "index": 2350 }, { - "filePath": "src/components/dashboard/SubscriptionExpirationModal.jsx", - "line": 108, + "filePath": "src/discussions/posts/post-filter-bar/PostFilterBar.jsx", + "line": 181, + "column": 4, + "index": 6288 + } + ], + "Collapsible.Trigger": [ + { + "filePath": "src/components/FilterBar.jsx", + "line": 106, "column": 6, - "index": 3524 + "index": 2951 }, { - "filePath": "src/components/dashboard/SubscriptionExpirationModal.jsx", - "line": 143, - "column": 4, - "index": 4661 + "filePath": "src/discussions/learners/learner/LearnerFilterBar.jsx", + "line": 79, + "column": 6, + "index": 2487 }, { - "filePath": "src/components/integration-warning-modal/IntegrationWarningModal.jsx", - "line": 29, + "filePath": "src/discussions/posts/post-filter-bar/PostFilterBar.jsx", + "line": 186, "column": 6, - "index": 919 + "index": 6425 } ], - "Alert.Heading": [ + "Collapsible.Visible": [ { - "filePath": "src/components/course/LicenseRequestedAlert.jsx", - "line": 52, + "filePath": "src/components/FilterBar.jsx", + "line": 117, "column": 8, - "index": 2032 + "index": 3433 }, { - "filePath": "src/components/course/routes/ExternalCourseEnrollment.jsx", - "line": 105, - "column": 16, - "index": 4079 + "filePath": "src/components/FilterBar.jsx", + "line": 120, + "column": 8, + "index": 3535 }, { - "filePath": "src/components/dashboard/main-content/course-enrollments/CourseAssignmentAlert.jsx", - "line": 34, - "column": 6, - "index": 1066 + "filePath": "src/discussions/learners/learner/LearnerFilterBar.jsx", + "line": 85, + "column": 8, + "index": 2730 }, { - "filePath": "src/components/enterprise-user-subsidy/enterprise-offers/EnterpriseOffersBalanceAlert.jsx", - "line": 55, + "filePath": "src/discussions/learners/learner/LearnerFilterBar.jsx", + "line": 88, "column": 8, - "index": 1873 + "index": 2832 }, { - "filePath": "src/components/search/AssignmentsOnlyEmptyState.jsx", - "line": 35, + "filePath": "src/discussions/posts/post-filter-bar/PostFilterBar.jsx", + "line": 198, "column": 10, - "index": 1096 - }, - { - "filePath": "src/components/search/SearchError.jsx", - "line": 17, - "column": 6, - "index": 417 + "index": 6924 }, { - "filePath": "src/components/search/SearchNoResults.jsx", - "line": 21, - "column": 8, - "index": 512 + "filePath": "src/discussions/posts/post-filter-bar/PostFilterBar.jsx", + "line": 201, + "column": 10, + "index": 7032 } ], - "CheckCircle": [ + "Icon": [ { - "filePath": "src/components/course/routes/ExternalCourseEnrollment.jsx", - "line": 97, - "column": 22, - "index": 3741 + "filePath": "src/components/FilterBar.jsx", + "line": 118, + "column": 10, + "index": 3476 }, { - "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": 79, - "column": 2, - "index": 2133 - } - ], - "StatefulButton": [ + "filePath": "src/components/FilterBar.jsx", + "line": 121, + "column": 10, + "index": 3576 + }, { - "filePath": "src/components/course/SubsidyRequestButton.jsx", - "line": 117, - "column": 4, - "index": 3522 + "filePath": "src/components/PostHelpPanel.jsx", + "line": 24, + "column": 18, + "index": 776 }, { - "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/email-settings/EmailSettingsModal.jsx", - "line": 141, - "column": 10, - "index": 3708 + "filePath": "src/components/PostHelpPanel.jsx", + "line": 42, + "column": 20, + "index": 1390 }, { - "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/mark-complete-modal/MarkCompleteModal.jsx", - "line": 80, - "column": 10, - "index": 2542 + "filePath": "src/components/PostPreviewPanel.jsx", + "line": 29, + "column": 20, + "index": 958 }, { - "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/move-to-in-progress-modal/MoveToInProgressModal.jsx", - "line": 74, - "column": 10, - "index": 2053 + "filePath": "src/components/Search.jsx", + "line": 85, + "column": 8, + "index": 2781 }, { - "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/unenroll/UnenrollModal.jsx", - "line": 65, - "column": 10, - "index": 1637 + "filePath": "src/components/SearchInfo.jsx", + "line": 23, + "column": 6, + "index": 551 }, { - "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", - "line": 371, - "column": 12, - "index": 14712 + "filePath": "src/components/TopicStats.jsx", + "line": 43, + "column": 10, + "index": 1449 }, { - "filePath": "src/components/my-career/SearchJobRole.jsx", - "line": 115, + "filePath": "src/components/TopicStats.jsx", + "line": 61, "column": 10, - "index": 3863 + "index": 2052 }, { - "filePath": "src/components/stateful-enroll/StatefulEnroll.jsx", + "filePath": "src/components/TopicStats.jsx", "line": 87, - "column": 4, - "index": 2411 - } - ], - "RocketLaunch": [ + "column": 12, + "index": 3009 + }, { - "filePath": "src/components/course/VerifiedCertPitch.jsx", - "line": 25, - "column": 37, - "index": 801 - } - ], - "ContentPasteGo": [ + "filePath": "src/discussions/common/ActionsDropdown.jsx", + "line": 68, + "column": 16, + "index": 1866 + }, { - "filePath": "src/components/course/VerifiedCertPitch.jsx", - "line": 35, - "column": 37, - "index": 1133 - } - ], - "Tab": [ + "filePath": "src/discussions/common/ActionsDropdown.jsx", + "line": 99, + "column": 18, + "index": 2965 + }, { - "filePath": "src/components/dashboard/DashboardPage.jsx", - "line": 59, - "column": 4, - "index": 2663 + "filePath": "src/discussions/common/AuthorLabel.jsx", + "line": 64, + "column": 10, + "index": 2239 }, { - "filePath": "src/components/dashboard/DashboardPage.jsx", - "line": 63, - "column": 6, - "index": 2845 + "filePath": "src/discussions/common/EndorsedAlertBanner.jsx", + "line": 39, + "column": 12, + "index": 1319 }, { - "filePath": "src/components/dashboard/DashboardPage.jsx", + "filePath": "src/discussions/common/HoverCard.jsx", "line": 72, - "column": 6, - "index": 3207 + "column": 22, + "index": 2278 }, { - "filePath": "src/components/dashboard/DashboardPage.jsx", - "line": 81, - "column": 6, - "index": 3572 - } - ], - "Tabs": [ - { - "filePath": "src/components/dashboard/DashboardPage.jsx", - "line": 95, - "column": 8, - "index": 3927 - } - ], - "Dropdown": [ + "filePath": "src/discussions/common/HoverCard.jsx", + "line": 87, + "column": 18, + "index": 2807 + }, { - "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/BaseCourseCard.jsx", - "line": 225, - "column": 10, - "index": 6229 + "filePath": "src/discussions/common/HoverCard.jsx", + "line": 102, + "column": 20, + "index": 3237 }, { - "filePath": "src/components/error-page/ErrorPageHeader.jsx", - "line": 41, - "column": 14, - "index": 1353 + "filePath": "src/discussions/in-context-topics/components/BackButton.jsx", + "line": 22, + "column": 18, + "index": 602 }, { - "filePath": "src/components/program/ProgramCTA.jsx", - "line": 107, + "filePath": "src/discussions/in-context-topics/topic-search/TopicSearchBar.jsx", + "line": 50, "column": 8, - "index": 4186 + "index": 1478 }, { - "filePath": "src/components/site-header/AvatarDropdown.jsx", - "line": 27, + "filePath": "src/discussions/learners/learner/LearnerFilterBar.jsx", + "line": 33, "column": 4, - "index": 1140 + "index": 1182 }, { - "filePath": "src/components/skills-quiz/GoalDropdown.jsx", - "line": 20, - "column": 4, - "index": 816 - } - ], - "Dropdown.Toggle": [ - { - "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/BaseCourseCard.jsx", - "line": 226, - "column": 12, - "index": 6252 + "filePath": "src/discussions/learners/learner/LearnerFilterBar.jsx", + "line": 86, + "column": 10, + "index": 2773 }, { - "filePath": "src/components/error-page/ErrorPageHeader.jsx", - "line": 42, - "column": 16, - "index": 1380 + "filePath": "src/discussions/learners/learner/LearnerFilterBar.jsx", + "line": 89, + "column": 10, + "index": 2873 }, { - "filePath": "src/components/program/ProgramCTA.jsx", - "line": 108, + "filePath": "src/discussions/learners/learner/LearnerFooter.jsx", + "line": 37, "column": 10, - "index": 4250 + "index": 1373 }, { - "filePath": "src/components/site-header/AvatarDropdown.jsx", - "line": 28, - "column": 6, - "index": 1157 + "filePath": "src/discussions/learners/learner/LearnerFooter.jsx", + "line": 53, + "column": 10, + "index": 1918 }, { - "filePath": "src/components/skills-quiz/GoalDropdown.jsx", - "line": 21, - "column": 6, - "index": 833 - } - ], - "IconButton": [ + "filePath": "src/discussions/learners/learner/LearnerFooter.jsx", + "line": 81, + "column": 12, + "index": 2940 + }, { - "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/BaseCourseCard.jsx", - "line": 227, + "filePath": "src/discussions/learners/LearnerPostsView.jsx", + "line": 83, "column": 18, - "index": 6287 - } - ], - "MoreVert": [ - { - "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/BaseCourseCard.jsx", - "line": 228, - "column": 19, - "index": 6318 - } - ], - "Dropdown.Menu": [ - { - "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/BaseCourseCard.jsx", - "line": 234, - "column": 12, - "index": 6544 + "index": 2816 }, { - "filePath": "src/components/error-page/ErrorPageHeader.jsx", - "line": 50, - "column": 16, - "index": 1683 + "filePath": "src/discussions/post-comments/PostCommentsView.jsx", + "line": 106, + "column": 20, + "index": 3393 }, { - "filePath": "src/components/program/ProgramCTA.jsx", - "line": 116, - "column": 10, - "index": 4493 + "filePath": "src/discussions/posts/post-actions-bar/PostActionsBar.jsx", + "line": 75, + "column": 22, + "index": 2888 }, { - "filePath": "src/components/site-header/AvatarDropdown.jsx", - "line": 36, - "column": 6, - "index": 1378 + "filePath": "src/discussions/posts/post-filter-bar/PostFilterBar.jsx", + "line": 47, + "column": 4, + "index": 1632 }, { - "filePath": "src/components/skills-quiz/GoalDropdown.jsx", - "line": 27, - "column": 6, - "index": 984 - } - ], - "Dropdown.Item": [ + "filePath": "src/discussions/posts/post-filter-bar/PostFilterBar.jsx", + "line": 199, + "column": 12, + "index": 6969 + }, { - "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/BaseCourseCard.jsx", - "line": 236, - "column": 16, - "index": 6619 + "filePath": "src/discussions/posts/post-filter-bar/PostFilterBar.jsx", + "line": 202, + "column": 12, + "index": 7075 }, { - "filePath": "src/components/error-page/ErrorPageHeader.jsx", - "line": 54, + "filePath": "src/discussions/posts/post/LikeButton.jsx", + "line": 37, "column": 18, - "index": 1807 + "index": 1022 }, { - "filePath": "src/components/program/ProgramCTA.jsx", - "line": 119, - "column": 16, - "index": 4608 + "filePath": "src/discussions/posts/post/PostFooter.jsx", + "line": 59, + "column": 20, + "index": 1608 }, { - "filePath": "src/components/program/ProgramCTA.jsx", - "line": 139, - "column": 16, - "index": 5300 + "filePath": "src/discussions/posts/post/PostFooter.jsx", + "line": 74, + "column": 14, + "index": 2136 }, { - "filePath": "src/components/site-header/AvatarDropdown.jsx", - "line": 41, - "column": 8, - "index": 1549 + "filePath": "src/discussions/posts/post/PostFooter.jsx", + "line": 93, + "column": 12, + "index": 2644 }, { - "filePath": "src/components/site-header/AvatarDropdown.jsx", + "filePath": "src/discussions/posts/post/PostHeader.jsx", "line": 43, "column": 8, - "index": 1684 + "index": 1319 }, { - "filePath": "src/components/site-header/AvatarDropdown.jsx", - "line": 55, - "column": 8, - "index": 2028 + "filePath": "src/discussions/posts/post/PostLink.jsx", + "line": 103, + "column": 16, + "index": 3799 }, { - "filePath": "src/components/site-header/AvatarDropdown.jsx", - "line": 56, - "column": 8, - "index": 2135 + "filePath": "src/discussions/posts/post/PostLink.jsx", + "line": 122, + "column": 16, + "index": 4570 }, { - "filePath": "src/components/site-header/AvatarDropdown.jsx", - "line": 57, - "column": 8, - "index": 2233 + "filePath": "src/discussions/posts/post/PostSummaryFooter.jsx", + "line": 47, + "column": 10, + "index": 1333 }, { - "filePath": "src/components/site-header/AvatarDropdown.jsx", - "line": 59, + "filePath": "src/discussions/posts/post/PostSummaryFooter.jsx", + "line": 63, "column": 8, - "index": 2358 + "index": 1951 }, { - "filePath": "src/components/skills-quiz/GoalDropdown.jsx", - "line": 29, - "column": 10, - "index": 1056 - } - ], - "Tooltip": [ + "filePath": "src/discussions/posts/post/PostSummaryFooter.jsx", + "line": 79, + "column": 12, + "index": 2616 + }, { - "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/BaseCourseCard.jsx", - "line": 312, + "filePath": "src/discussions/posts/post/PostSummaryFooter.jsx", + "line": 102, "column": 14, - "index": 8897 - } - ], - "InfoOutline": [ + "index": 3586 + }, { - "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/BaseCourseCard.jsx", - "line": 317, - "column": 23, - "index": 9060 + "filePath": "src/discussions/topics/topic-group/topic/Topic.jsx", + "line": 73, + "column": 16, + "index": 3118 }, { - "filePath": "src/components/skills-quiz/JobDescriptions.jsx", - "line": 16, - "column": 8, - "index": 741 + "filePath": "src/discussions/topics/topic-group/topic/Topic.jsx", + "line": 91, + "column": 16, + "index": 3839 + }, + { + "filePath": "src/discussions/topics/topic-group/topic/Topic.jsx", + "line": 117, + "column": 18, + "index": 4954 } ], - "Info": [ + "Tune": [ { - "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/BaseCourseCard.jsx", - "line": 478, - "column": 19, - "index": 13377 + "filePath": "src/components/FilterBar.jsx", + "line": 118, + "column": 21, + "index": 3487 }, { - "filePath": "src/components/dashboard/main-content/course-enrollments/CourseAssignmentAlert.jsx", - "line": 25, - "column": 12, - "index": 856 - } - ], - "Input": [ + "filePath": "src/components/FilterBar.jsx", + "line": 121, + "column": 21, + "index": 3587 + }, { - "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/email-settings/EmailSettingsModal.jsx", - "line": 124, - "column": 14, - "index": 2998 - } - ], - "Alert.Link": [ + "filePath": "src/discussions/learners/learner/LearnerFilterBar.jsx", + "line": 86, + "column": 21, + "index": 2784 + }, { - "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/mark-complete-modal/ModalError.jsx", - "line": 11, + "filePath": "src/discussions/learners/learner/LearnerFilterBar.jsx", + "line": 89, "column": 21, - "index": 371 + "index": 2884 }, { - "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/move-to-in-progress-modal/ModalError.jsx", - "line": 11, - "column": 42, - "index": 404 - } - ], - "AlertModal": [ + "filePath": "src/discussions/posts/post-filter-bar/PostFilterBar.jsx", + "line": 199, + "column": 23, + "index": 6980 + }, { - "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/unenroll/UnenrollModal.jsx", - "line": 53, - "column": 4, - "index": 1348 + "filePath": "src/discussions/posts/post-filter-bar/PostFilterBar.jsx", + "line": 202, + "column": 23, + "index": 7086 } ], - "ActionRow": [ + "Collapsible.Body": [ { - "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/unenroll/UnenrollModal.jsx", - "line": 58, - "column": 8, - "index": 1474 + "filePath": "src/components/FilterBar.jsx", + "line": 124, + "column": 6, + "index": 3662 }, { - "filePath": "src/components/my-career/VisualizeCareer.jsx", - "line": 64, - "column": 14, - "index": 2084 + "filePath": "src/discussions/learners/learner/LearnerFilterBar.jsx", + "line": 92, + "column": 6, + "index": 2959 }, { - "filePath": "src/components/my-career/VisualizeCareer.jsx", - "line": 69, - "column": 14, - "index": 2314 - }, + "filePath": "src/discussions/posts/post-filter-bar/PostFilterBar.jsx", + "line": 206, + "column": 6, + "index": 7179 + } + ], + "Form": [ { - "filePath": "src/components/my-career/VisualizeCareer.jsx", - "line": 82, - "column": 12, - "index": 2708 + "filePath": "src/components/FilterBar.jsx", + "line": 125, + "column": 8, + "index": 3733 }, { - "filePath": "src/components/my-career/VisualizeCareer.jsx", - "line": 91, - "column": 12, - "index": 3004 + "filePath": "src/discussions/learners/learner/LearnerFilterBar.jsx", + "line": 93, + "column": 8, + "index": 3030 }, { - "filePath": "src/components/program-progress/CouponCodesWarningModal.jsx", - "line": 50, + "filePath": "src/discussions/post-comments/comments/comment/CommentEditor.jsx", + "line": 151, "column": 8, - "index": 1647 + "index": 5190 }, { - "filePath": "src/components/program-progress/SubscriptionExpiringWarningModal.jsx", - "line": 58, + "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", + "line": 244, + "column": 6, + "index": 8918 + }, + { + "filePath": "src/discussions/posts/post-filter-bar/PostFilterBar.jsx", + "line": 207, "column": 8, - "index": 2012 + "index": 7250 } ], - "Bubble": [ + "Form.RadioSet": [ { - "filePath": "src/components/dashboard/main-content/course-enrollments/CourseSection.jsx", - "line": 39, - "column": 20, - "index": 1243 + "filePath": "src/components/FilterBar.jsx", + "line": 128, + "column": 14, + "index": 3865 }, { - "filePath": "src/components/progress-category-bubbles/ProgressCategoryBubbles.jsx", - "line": 8, - "column": 4, - "index": 284 + "filePath": "src/components/FilterBar.jsx", + "line": 162, + "column": 18, + "index": 5203 }, { - "filePath": "src/components/progress-category-bubbles/ProgressCategoryBubbles.jsx", - "line": 13, - "column": 4, - "index": 416 + "filePath": "src/discussions/learners/learner/LearnerFilterBar.jsx", + "line": 95, + "column": 12, + "index": 3122 }, { - "filePath": "src/components/progress-category-bubbles/ProgressCategoryBubbles.jsx", - "line": 18, - "column": 4, - "index": 554 - } - ], - "Collapsible": [ - { - "filePath": "src/components/dashboard/main-content/course-enrollments/CourseSection.jsx", - "line": 143, + "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", + "line": 250, "column": 8, - "index": 4052 - }, - { - "filePath": "src/components/pathway-progress/PathwayStep.jsx", - "line": 12, - "column": 4, - "index": 354 - }, - { - "filePath": "src/components/pathway/PathwayModal.jsx", - "line": 166, - "column": 10, - "index": 5566 - }, - { - "filePath": "src/components/program/ProgramFAQ.jsx", - "line": 18, - "column": 10, - "index": 543 - } - ], - "WarningFilled": [ - { - "filePath": "src/components/dashboard/sidebar/CouponCodesSummaryCard.jsx", - "line": 63, - "column": 16, - "index": 2018 + "index": 9220 }, { - "filePath": "src/components/dashboard/sidebar/SubscriptionSummaryCard.jsx", - "line": 99, - "column": 90, - "index": 3507 + "filePath": "src/discussions/posts/post-filter-bar/PostFilterBar.jsx", + "line": 152, + "column": 12, + "index": 5358 }, { - "filePath": "src/components/program/ProgramCourses.jsx", - "line": 94, - "column": 51, - "index": 3780 + "filePath": "src/discussions/posts/post-filter-bar/PostFilterBar.jsx", + "line": 209, + "column": 12, + "index": 7342 }, { - "filePath": "src/components/system-wide-banner/SystemWideWarningBanner.jsx", - "line": 8, - "column": 15, - "index": 265 - } - ], - "Navbar": [ - { - "filePath": "src/components/error-page/ErrorPageHeader.jsx", - "line": 26, - "column": 6, - "index": 770 - } - ], - "Navbar.Brand": [ - { - "filePath": "src/components/error-page/ErrorPageHeader.jsx", - "line": 28, - "column": 10, - "index": 858 - } - ], - "AvatarButton": [ - { - "filePath": "src/components/error-page/ErrorPageHeader.jsx", - "line": 44, - "column": 22, - "index": 1490 + "filePath": "src/discussions/posts/post-filter-bar/PostFilterBar.jsx", + "line": 234, + "column": 12, + "index": 8322 }, { - "filePath": "src/components/site-header/AvatarDropdown.jsx", - "line": 30, + "filePath": "src/discussions/posts/post-filter-bar/PostFilterBar.jsx", + "line": 281, "column": 12, - "index": 1216 + "index": 10241 } ], - "Card.Body": [ + "Spinner": [ { - "filePath": "src/components/executive-education-2u/components/CourseSummaryCard.jsx", - "line": 31, - "column": 6, - "index": 942 + "filePath": "src/components/FilterBar.jsx", + "line": 158, + "column": 18, + "index": 5028 }, { - "filePath": "src/components/executive-education-2u/components/RegistrationSummaryCard.jsx", - "line": 14, + "filePath": "src/components/Spinner.jsx", + "line": 7, "column": 4, - "index": 380 + "index": 179 }, { - "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", - "line": 204, - "column": 12, - "index": 7351 - } - ], - "ArrowBack": [ - { - "filePath": "src/components/executive-education-2u/components/ErrorPageContent.jsx", - "line": 62, - "column": 26, - "index": 2215 - } - ], - "Form.Group": [ - { - "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", - "line": 223, - "column": 20, - "index": 8152 + "filePath": "src/discussions/in-context-topics/components/BackButton.jsx", + "line": 29, + "column": 21, + "index": 888 }, { - "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", - "line": 242, - "column": 20, - "index": 8948 + "filePath": "src/discussions/in-context-topics/TopicPostsView.jsx", + "line": 98, + "column": 12, + "index": 3854 }, { - "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", - "line": 263, - "column": 20, - "index": 9753 + "filePath": "src/discussions/in-context-topics/TopicsView.jsx", + "line": 65, + "column": 10, + "index": 2326 }, { - "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", - "line": 296, - "column": 22, - "index": 11136 + "filePath": "src/discussions/learners/LearnerPostsView.jsx", + "line": 102, + "column": 12, + "index": 3757 }, { - "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", - "line": 324, - "column": 20, - "index": 12644 + "filePath": "src/discussions/learners/LearnersView.jsx", + "line": 83, + "column": 12, + "index": 2818 }, { - "filePath": "src/components/my-career/SearchJobRole.jsx", - "line": 87, + "filePath": "src/discussions/post-comments/comments/CommentsView.jsx", + "line": 84, "column": 8, - "index": 2853 - }, - { - "filePath": "src/components/program-progress/ProgramProgressCourses.jsx", - "line": 183, - "column": 28, - "index": 6382 - } - ], - "Form.Control": [ - { - "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", - "line": 227, - "column": 22, - "index": 8310 + "index": 2813 }, { - "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", - "line": 245, - "column": 22, - "index": 9056 + "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", + "line": 189, + "column": 10, + "index": 7600 }, { - "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", - "line": 266, - "column": 22, - "index": 9864 + "filePath": "src/discussions/posts/post-filter-bar/PostFilterBar.jsx", + "line": 148, + "column": 12, + "index": 5207 }, { - "filePath": "src/components/program-progress/ProgramProgressCourses.jsx", - "line": 185, - "column": 30, - "index": 6559 + "filePath": "src/discussions/posts/PostsList.jsx", + "line": 89, + "column": 10, + "index": 3268 } ], - "CheckboxControl": [ - { - "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", - "line": 298, - "column": 26, - "index": 11243 - }, + "TransitionReplace": [ { - "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", - "line": 326, - "column": 24, - "index": 12747 + "filePath": "src/components/FormikErrorFeedback.jsx", + "line": 13, + "column": 4, + "index": 372 } ], - "Plus": [ + "Dropdown": [ { - "filePath": "src/components/my-career/AddJobRole.jsx", - "line": 17, - "column": 9, - "index": 762 + "filePath": "src/components/NavigationBar/tabs/Tabs.jsx", + "line": 43, + "column": 10, + "index": 1565 } ], - "TransitionReplace": [ - { - "filePath": "src/components/my-career/AddJobRole.jsx", - "line": 62, - "column": 16, - "index": 1967 - }, + "Dropdown.Toggle": [ { - "filePath": "src/components/my-career/VisualizeCareer.jsx", - "line": 61, - "column": 8, - "index": 1966 + "filePath": "src/components/NavigationBar/tabs/Tabs.jsx", + "line": 44, + "column": 12, + "index": 1606 } ], - "Edit": [ + "Dropdown.Menu": [ { - "filePath": "src/components/my-career/VisualizeCareer.jsx", - "line": 16, - "column": 13, - "index": 646 + "filePath": "src/components/NavigationBar/tabs/Tabs.jsx", + "line": 51, + "column": 12, + "index": 1988 } ], - "ActionRow.Spacer": [ + "useWindowSize": [ { - "filePath": "src/components/my-career/VisualizeCareer.jsx", - "line": 66, - "column": 16, - "index": 2148 + "filePath": "src/components/NavigationBar/tabs/useIndexOfLastVisibleChild.js", + "line": 38, + "column": 21, + "index": 1683 }, { - "filePath": "src/components/my-career/VisualizeCareer.jsx", - "line": 71, - "column": 16, - "index": 2391 + "filePath": "src/discussions/data/hooks.js", + "line": 135, + "column": 21, + "index": 4779 }, { - "filePath": "src/components/my-career/VisualizeCareer.jsx", - "line": 84, - "column": 14, - "index": 2790 + "filePath": "src/discussions/data/hooks.js", + "line": 140, + "column": 21, + "index": 4912 }, { - "filePath": "src/components/my-career/VisualizeCareer.jsx", - "line": 100, - "column": 14, - "index": 3304 + "filePath": "src/discussions/data/hooks.js", + "line": 145, + "column": 21, + "index": 5047 + }, + { + "filePath": "src/discussions/discussions-home/DiscussionSidebar.jsx", + "line": 37, + "column": 35, + "index": 1634 } ], - "Search": [ - { - "filePath": "src/components/pathway-progress/PathwayProgressListingPage.jsx", - "line": 54, - "column": 52, - "index": 1666 - }, + "IconButtonWithTooltip": [ { - "filePath": "src/components/program-progress/ProgramListingPage.jsx", - "line": 45, - "column": 52, - "index": 1495 + "filePath": "src/components/PostHelpPanel.jsx", + "line": 19, + "column": 8, + "index": 510 } ], - "ExpandLess": [ + "HelpOutline": [ { - "filePath": "src/components/pathway-progress/PathwayStep.jsx", - "line": 17, - "column": 31, - "index": 581 + "filePath": "src/components/PostHelpPanel.jsx", + "line": 23, + "column": 15, + "index": 745 }, { - "filePath": "src/components/program/ProgramCourses.jsx", - "line": 51, - "column": 31, - "index": 1913 + "filePath": "src/components/TopicStats.jsx", + "line": 61, + "column": 21, + "index": 2063 }, { - "filePath": "src/components/program/ProgramFAQ.jsx", - "line": 23, - "column": 37, - "index": 729 + "filePath": "src/discussions/topics/topic-group/topic/Topic.jsx", + "line": 91, + "column": 27, + "index": 3850 } ], - "ExpandMore": [ + "IconButton": [ { - "filePath": "src/components/pathway-progress/PathwayStep.jsx", - "line": 18, - "column": 33, - "index": 630 + "filePath": "src/components/PostHelpPanel.jsx", + "line": 38, + "column": 10, + "index": 1225 }, { - "filePath": "src/components/program/ProgramCourses.jsx", - "line": 47, - "column": 31, - "index": 1759 + "filePath": "src/components/PostPreviewPanel.jsx", + "line": 25, + "column": 10, + "index": 790 }, { - "filePath": "src/components/program/ProgramFAQ.jsx", - "line": 24, - "column": 39, - "index": 784 - } - ], - "MarketingModal": [ + "filePath": "src/discussions/common/ActionsDropdown.jsx", + "line": 64, + "column": 6, + "index": 1728 + }, { - "filePath": "src/components/pathway/PathwayModal.jsx", - "line": 74, - "column": 4, - "index": 2283 - } - ], - "ModalDialog.Hero": [ + "filePath": "src/discussions/common/HoverCard.jsx", + "line": 70, + "column": 12, + "index": 2206 + }, { - "filePath": "src/components/pathway/PathwayModal.jsx", - "line": 81, + "filePath": "src/discussions/common/HoverCard.jsx", + "line": 85, "column": 8, - "index": 2548 + "index": 2722 }, { - "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", - "line": 177, - "column": 8, - "index": 6827 - } - ], - "ModalDialog.Title": [ + "filePath": "src/discussions/common/HoverCard.jsx", + "line": 100, + "column": 10, + "index": 3150 + }, { - "filePath": "src/components/pathway/PathwayModal.jsx", - "line": 98, + "filePath": "src/discussions/in-context-topics/components/BackButton.jsx", + "line": 20, "column": 8, - "index": 2973 - } - ], - "VerifiedBadge": [ + "index": 546 + }, { - "filePath": "src/components/pathway/PathwayModal.jsx", - "line": 108, - "column": 27, - "index": 3346 - } - ], - "Assignment": [ + "filePath": "src/discussions/learners/LearnerPostsView.jsx", + "line": 81, + "column": 8, + "index": 2760 + }, { - "filePath": "src/components/pathway/PathwayModal.jsx", - "line": 123, - "column": 27, - "index": 3946 - } - ], - "BookOpen": [ + "filePath": "src/discussions/post-comments/PostCommentsView.jsx", + "line": 104, + "column": 10, + "index": 3333 + }, { - "filePath": "src/components/pathway/PathwayModal.jsx", - "line": 138, - "column": 27, - "index": 4566 - } - ], - "StandardModal": [ + "filePath": "src/discussions/posts/post-actions-bar/PostActionsBar.jsx", + "line": 72, + "column": 12, + "index": 2804 + }, { - "filePath": "src/components/program-progress/CouponCodesWarningModal.jsx", - "line": 44, - "column": 4, - "index": 1457 + "filePath": "src/discussions/posts/post/LikeButton.jsx", + "line": 32, + "column": 8, + "index": 834 }, { - "filePath": "src/components/program-progress/SubscriptionExpiringWarningModal.jsx", + "filePath": "src/discussions/posts/post/PostFooter.jsx", "line": 52, - "column": 4, - "index": 1802 + "column": 10, + "index": 1338 } ], - "Form.Label": [ + "Close": [ { - "filePath": "src/components/program-progress/ProgramProgressCourses.jsx", - "line": 184, - "column": 30, - "index": 6479 - } - ], - "Collapsible.Advanced": [ + "filePath": "src/components/PostHelpPanel.jsx", + "line": 41, + "column": 17, + "index": 1363 + }, { - "filePath": "src/components/program/ProgramCourses.jsx", - "line": 42, - "column": 14, - "index": 1371 + "filePath": "src/components/PostPreviewPanel.jsx", + "line": 28, + "column": 17, + "index": 931 }, { - "filePath": "src/components/program/ProgramInstructors.jsx", - "line": 88, - "column": 8, - "index": 3064 + "filePath": "src/discussions/posts/post-actions-bar/PostActionsBar.jsx", + "line": 73, + "column": 19, + "index": 2835 } ], - "Collapsible.Trigger": [ + "Hyperlink": [ { - "filePath": "src/components/program/ProgramCourses.jsx", - "line": 43, - "column": 16, - "index": 1461 + "filePath": "src/components/PostHelpPanel.jsx", + "line": 51, + "column": 12, + "index": 1802 }, { - "filePath": "src/components/program/ProgramInstructors.jsx", - "line": 89, + "filePath": "src/components/PostHelpPanel.jsx", + "line": 59, + "column": 12, + "index": 2161 + }, + { + "filePath": "src/discussions/posts/post/Post.jsx", + "line": 197, "column": 10, - "index": 3135 + "index": 7995 } ], - "LibraryBooks": [ + "Button": [ { - "filePath": "src/components/program/ProgramCourses.jsx", - "line": 44, - "column": 53, - "index": 1568 + "filePath": "src/components/PostPreviewPanel.jsx", + "line": 48, + "column": 10, + "index": 1500 }, { - "filePath": "src/components/program/ProgramSidebar.jsx", - "line": 28, - "column": 14, - "index": 1108 - } - ], - "Collapsible.Visible": [ - { - "filePath": "src/components/program/ProgramCourses.jsx", - "line": 46, - "column": 18, - "index": 1695 + "filePath": "src/components/SearchInfo.jsx", + "line": 24, + "column": 6, + "index": 637 }, { - "filePath": "src/components/program/ProgramCourses.jsx", - "line": 50, - "column": 18, - "index": 1851 + "filePath": "src/components/SearchInfo.jsx", + "line": 38, + "column": 6, + "index": 1188 }, { - "filePath": "src/components/program/ProgramInstructors.jsx", - "line": 91, + "filePath": "src/components/TinyMCEEditor.jsx", + "line": 167, "column": 12, - "index": 3280 + "index": 5775 }, { - "filePath": "src/components/program/ProgramInstructors.jsx", - "line": 95, - "column": 12, - "index": 3406 - } - ], - "Collapsible.Body": [ - { - "filePath": "src/components/program/ProgramCourses.jsx", - "line": 55, - "column": 16, - "index": 2042 + "filePath": "src/discussions/common/ActionsDropdown.jsx", + "line": 89, + "column": 22, + "index": 2594 }, { - "filePath": "src/components/program/ProgramInstructors.jsx", - "line": 100, + "filePath": "src/discussions/common/Confirmation.jsx", + "line": 37, "column": 10, - "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": [ + "index": 951 + }, { - "filePath": "src/components/program/ProgramInstructors.jsx", - "line": 92, - "column": 14, - "index": 3327 - } - ], - "RemoveCircle": [ + "filePath": "src/discussions/common/HoverCard.jsx", + "line": 46, + "column": 10, + "index": 1442 + }, { - "filePath": "src/components/program/ProgramInstructors.jsx", - "line": 96, - "column": 14, - "index": 3451 - } - ], - "useMediaQuery": [ + "filePath": "src/discussions/content-unavailable/ContentUnavailable.jsx", + "line": 38, + "column": 8, + "index": 1598 + }, { - "filePath": "src/components/search/content-highlights/ContentHighlightSet.jsx", - "line": 33, - "column": 29, - "index": 1050 - } - ], - "CardCarousel": [ + "filePath": "src/discussions/empty-posts/EmptyPage.jsx", + "line": 28, + "column": 10, + "index": 788 + }, { - "filePath": "src/components/search/content-highlights/ContentHighlightSet.jsx", - "line": 47, - "column": 6, - "index": 1436 - } - ], - "CardDeck": [ + "filePath": "src/discussions/learners/LearnerPostsView.jsx", + "line": 106, + "column": 12, + "index": 3929 + }, { - "filePath": "src/components/search/content-highlights/ContentHighlightSet.jsx", - "line": 84, - "column": 6, - "index": 2669 - } - ], - "Warning": [ + "filePath": "src/discussions/learners/LearnersView.jsx", + "line": 87, + "column": 12, + "index": 2990 + }, { - "filePath": "src/components/search/SearchError.jsx", - "line": 14, + "filePath": "src/discussions/post-comments/comments/comment/Comment.jsx", + "line": 248, "column": 12, - "index": 385 - } - ], - "ZoomOut": [ + "index": 8914 + }, { - "filePath": "src/components/search/SearchNoResults.jsx", - "line": 18, - "column": 14, - "index": 474 + "filePath": "src/discussions/post-comments/comments/comment/Comment.jsx", + "line": 269, + "column": 16, + "index": 9741 }, { - "filePath": "src/components/skills-quiz/SearchCourseCard.jsx", - "line": 99, - "column": 14, - "index": 3481 + "filePath": "src/discussions/post-comments/comments/comment/CommentEditor.jsx", + "line": 206, + "column": 12, + "index": 7229 }, { - "filePath": "src/components/skills-quiz/SearchProgramCard.jsx", - "line": 173, - "column": 14, - "index": 5868 + "filePath": "src/discussions/post-comments/comments/CommentsSort.jsx", + "line": 46, + "column": 8, + "index": 1350 }, { - "filePath": "src/components/skills-quiz/SkillsCourses.jsx", - "line": 170, + "filePath": "src/discussions/post-comments/comments/CommentsSort.jsx", + "line": 71, "column": 18, - "index": 5369 - } - ], - "Program": [ + "index": 2125 + }, { - "filePath": "src/components/search/SearchProgramCard.jsx", - "line": 133, - "column": 23, - "index": 3792 + "filePath": "src/discussions/post-comments/comments/CommentsSort.jsx", + "line": 83, + "column": 18, + "index": 2548 }, { - "filePath": "src/components/skills-quiz/SearchProgramCard.jsx", - "line": 232, - "column": 31, - "index": 8014 - } - ], - "Dropdown.Header": [ + "filePath": "src/discussions/post-comments/comments/CommentsView.jsx", + "line": 72, + "column": 6, + "index": 2403 + }, { - "filePath": "src/components/site-header/AvatarDropdown.jsx", - "line": 40, - "column": 8, - "index": 1462 - } - ], - "Dropdown.Divider": [ + "filePath": "src/discussions/post-comments/comments/CommentsView.jsx", + "line": 91, + "column": 11, + "index": 3132 + }, { - "filePath": "src/components/site-header/AvatarDropdown.jsx", - "line": 54, - "column": 8, - "index": 1974 + "filePath": "src/discussions/post-comments/PostCommentsView.jsx", + "line": 91, + "column": 14, + "index": 2836 }, { - "filePath": "src/components/site-header/AvatarDropdown.jsx", - "line": 58, - "column": 8, - "index": 2304 - } - ], - "MenuIcon": [ + "filePath": "src/discussions/posts/post-actions-bar/PostActionsBar.jsx", + "line": 55, + "column": 10, + "index": 2152 + }, { - "filePath": "src/components/site-header/SiteHeader.jsx", - "line": 51, - "column": 14, - "index": 1829 - } - ], - "SelectableBox.Set": [ + "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", + "line": 451, + "column": 10, + "index": 16738 + }, { - "filePath": "src/components/skills-quiz/SelectJobCard.jsx", - "line": 29, - "column": 6, - "index": 1029 - } - ], - "SelectableBox": [ + "filePath": "src/discussions/posts/post/ClosePostReasonModal.jsx", + "line": 84, + "column": 10, + "index": 2576 + }, { - "filePath": "src/components/skills-quiz/SelectJobCard.jsx", - "line": 38, + "filePath": "src/discussions/posts/PostsList.jsx", + "line": 93, "column": 10, - "index": 1358 + "index": 3432 } ], - "Stepper": [ + "SearchField.Advanced": [ { - "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", - "line": 169, + "filePath": "src/components/Search.jsx", + "line": 73, "column": 4, - "index": 6604 + "index": 2388 + }, + { + "filePath": "src/discussions/in-context-topics/topic-search/TopicSearchBar.jsx", + "line": 38, + "column": 4, + "index": 1085 } ], - "ModalDialog": [ + "SearchField.Label": [ { - "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", - "line": 170, + "filePath": "src/components/Search.jsx", + "line": 79, "column": 6, - "index": 6644 - } - ], - "ModalDialog.Body": [ + "index": 2525 + }, { - "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", - "line": 185, - "column": 8, - "index": 7131 + "filePath": "src/discussions/in-context-topics/topic-search/TopicSearchBar.jsx", + "line": 44, + "column": 6, + "index": 1221 } ], - "Stepper.Step": [ + "SearchField.Input": [ { - "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", - "line": 187, - "column": 12, - "index": 7194 + "filePath": "src/components/Search.jsx", + "line": 80, + "column": 6, + "index": 2553 }, { - "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", - "line": 256, - "column": 12, - "index": 10172 + "filePath": "src/discussions/in-context-topics/topic-search/TopicSearchBar.jsx", + "line": 45, + "column": 6, + "index": 1249 + } + ], + "SearchIcon": [ + { + "filePath": "src/components/Search.jsx", + "line": 86, + "column": 15, + "index": 2802 }, { - "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", - "line": 281, - "column": 12, - "index": 11311 + "filePath": "src/discussions/in-context-topics/topic-search/TopicSearchBar.jsx", + "line": 51, + "column": 15, + "index": 1499 } ], - "Form.Checkbox": [ + "Search": [ { - "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", - "line": 220, - "column": 24, - "index": 8638 + "filePath": "src/components/SearchInfo.jsx", + "line": 23, + "column": 17, + "index": 562 } ], - "ModalDialog.Footer": [ + "AlertModal": [ { - "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", - "line": 286, - "column": 8, - "index": 11536 + "filePath": "src/components/TinyMCEEditor.jsx", + "line": 160, + "column": 6, + "index": 5556 } ], - "Stepper.ActionRow": [ + "ActionRow": [ { - "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", - "line": 287, + "filePath": "src/components/TinyMCEEditor.jsx", + "line": 166, "column": 10, - "index": 11567 + "index": 5751 }, { - "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", - "line": 299, - "column": 10, - "index": 12012 + "filePath": "src/discussions/common/Confirmation.jsx", + "line": 33, + "column": 8, + "index": 765 }, { - "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", - "line": 306, - "column": 10, - "index": 12348 + "filePath": "src/discussions/posts/post/ClosePostReasonModal.jsx", + "line": 80, + "column": 8, + "index": 2392 } ], - "PageBanner": [ + "OverlayTrigger": [ { - "filePath": "src/components/system-wide-banner/SystemWideWarningBanner.jsx", - "line": 7, - "column": 2, - "index": 219 - } - ], - "Close": [ + "filePath": "src/components/TopicStats.jsx", + "line": 29, + "column": 6, + "index": 979 + }, { - "filePath": "src/components/TagCloud/index.jsx", - "line": 12, - "column": 19, - "index": 321 - } - ], - "Toast": [ + "filePath": "src/components/TopicStats.jsx", + "line": 47, + "column": 6, + "index": 1590 + }, { - "filePath": "src/components/Toasts/Toasts.jsx", - "line": 9, - "column": 4, - "index": 264 - } - ] - } - }, - { - "version": "20.45.5", - "name": "frontend-app-learner-portal", - "repository": "https://github.com/openedx/frontend-app-learner-portal-programs", - "folderName": "frontend-app-learner-portal-programs", - "usages": { - "Dropdown.Deprecated": [ + "filePath": "src/components/TopicStats.jsx", + "line": 66, + "column": 8, + "index": 2234 + }, { - "filePath": "src/components/course-enrollments/course-cards/BaseCourseCard.jsx", - "line": 152, + "filePath": "src/discussions/common/AuthorLabel.jsx", + "line": 54, + "column": 6, + "index": 1833 + }, + { + "filePath": "src/discussions/common/HoverCard.jsx", + "line": 62, "column": 10, - "index": 3892 - } - ], - "Modal": [ + "index": 1954 + }, { - "filePath": "src/components/course-enrollments/course-cards/email-settings/EmailSettingsModal.jsx", - "line": 117, + "filePath": "src/discussions/learners/learner/LearnerFooter.jsx", + "line": 25, "column": 6, - "index": 2834 - } - ], - "Alert": [ + "index": 965 + }, { - "filePath": "src/components/course-enrollments/course-cards/email-settings/EmailSettingsModal.jsx", - "line": 122, - "column": 14, - "index": 2954 + "filePath": "src/discussions/learners/learner/LearnerFooter.jsx", + "line": 41, + "column": 6, + "index": 1524 }, { - "filePath": "src/components/course-enrollments/CourseEnrollments.jsx", - "line": 52, - "column": 4, - "index": 1453 + "filePath": "src/discussions/learners/learner/LearnerFooter.jsx", + "line": 58, + "column": 8, + "index": 2085 }, { - "filePath": "src/components/course-enrollments/CourseEnrollments.jsx", - "line": 67, + "filePath": "src/discussions/posts/post/LikeButton.jsx", + "line": 25, "column": 6, - "index": 1826 + "index": 623 }, { - "filePath": "src/components/program/ProgramPage.jsx", - "line": 80, - "column": 6, - "index": 2561 + "filePath": "src/discussions/posts/post/PostFooter.jsx", + "line": 45, + "column": 8, + "index": 1111 }, { - "filePath": "src/components/programs-list/ProgramListPage.jsx", - "line": 81, - "column": 4, - "index": 2499 - } - ], - "Warning": [ + "filePath": "src/discussions/posts/post/PostFooter.jsx", + "line": 68, + "column": 10, + "index": 1934 + }, { - "filePath": "src/components/course-enrollments/course-cards/email-settings/EmailSettingsModal.jsx", - "line": 125, - "column": 22, - "index": 3052 + "filePath": "src/discussions/posts/post/PostFooter.jsx", + "line": 86, + "column": 10, + "index": 2431 }, { - "filePath": "src/components/course-enrollments/CourseEnrollments.jsx", - "line": 55, - "column": 12, - "index": 1521 + "filePath": "src/discussions/posts/post/PostSummaryFooter.jsx", + "line": 40, + "column": 8, + "index": 1103 }, { - "filePath": "src/components/program/ProgramPage.jsx", - "line": 82, - "column": 14, - "index": 2607 + "filePath": "src/discussions/posts/post/PostSummaryFooter.jsx", + "line": 56, + "column": 6, + "index": 1729 }, { - "filePath": "src/components/programs-list/ProgramListPage.jsx", - "line": 83, + "filePath": "src/discussions/posts/post/PostSummaryFooter.jsx", + "line": 72, + "column": 10, + "index": 2401 + }, + { + "filePath": "src/discussions/posts/post/PostSummaryFooter.jsx", + "line": 96, + "column": 10, + "index": 3363 + }, + { + "filePath": "src/discussions/topics/topic-group/topic/Topic.jsx", + "line": 59, "column": 12, - "index": 2541 - } - ], - "Input": [ + "index": 2552 + }, { - "filePath": "src/components/course-enrollments/course-cards/email-settings/EmailSettingsModal.jsx", - "line": 132, + "filePath": "src/discussions/topics/topic-group/topic/Topic.jsx", + "line": 77, + "column": 12, + "index": 3283 + }, + { + "filePath": "src/discussions/topics/topic-group/topic/Topic.jsx", + "line": 96, "column": 14, - "index": 3277 + "index": 4051 } ], - "StatefulButton": [ + "Tooltip": [ { - "filePath": "src/components/course-enrollments/course-cards/email-settings/EmailSettingsModal.jsx", - "line": 151, + "filePath": "src/components/TopicStats.jsx", + "line": 33, "column": 10, - "index": 3949 - } - ], - "Button": [ - { - "filePath": "src/components/course-enrollments/course-cards/UpcomingCourseCard.jsx", - "line": 10, - "column": 4, - "index": 253 + "index": 1086 }, { - "filePath": "src/components/program/sidebar/Links.jsx", - "line": 65, + "filePath": "src/components/TopicStats.jsx", + "line": 51, "column": 10, - "index": 1727 - } - ], - "CheckCircle": [ - { - "filePath": "src/components/course-enrollments/CourseEnrollments.jsx", - "line": 69, - "column": 14, - "index": 1873 - } - ], - "breakpoints": [ - { - "filePath": "src/components/course-enrollments/CourseEnrollments.jsx", - "line": 113, - "column": 30, - "index": 3038 + "index": 1695 }, { - "filePath": "src/components/course-enrollments/tests/CourseEnrollments.test.jsx", - "line": 161, - "column": 52, - "index": 5072 + "filePath": "src/components/TopicStats.jsx", + "line": 70, + "column": 12, + "index": 2347 }, { - "filePath": "src/components/course-enrollments/tests/CourseEnrollments.test.jsx", - "line": 173, - "column": 52, - "index": 5547 + "filePath": "src/discussions/common/AuthorLabel.jsx", + "line": 57, + "column": 10, + "index": 1930 }, { - "filePath": "src/components/program/ProgramPage.jsx", - "line": 128, - "column": 48, - "index": 4226 + "filePath": "src/discussions/common/HoverCard.jsx", + "line": 64, + "column": 14, + "index": 2007 }, { - "filePath": "src/components/program/tab-components/JourneyTab.jsx", - "line": 16, - "column": 30, - "index": 466 - } - ], - "Collapsible": [ - { - "filePath": "src/components/course-enrollments/CourseSection.jsx", - "line": 83, - "column": 8, - "index": 2045 - } - ], - "Alert.Link": [ + "filePath": "src/discussions/learners/learner/LearnerFooter.jsx", + "line": 29, + "column": 10, + "index": 1081 + }, { - "filePath": "src/components/program/ProgramPage.jsx", - "line": 91, + "filePath": "src/discussions/learners/learner/LearnerFooter.jsx", + "line": 45, "column": 10, - "index": 2882 - } - ], - "Tabs": [ + "index": 1636 + }, { - "filePath": "src/components/program/TabularView.jsx", - "line": 37, - "column": 6, - "index": 1206 - } - ], - "Tab": [ + "filePath": "src/discussions/learners/learner/LearnerFooter.jsx", + "line": 62, + "column": 12, + "index": 2205 + }, { - "filePath": "src/components/program/TabularView.jsx", - "line": 40, + "filePath": "src/discussions/posts/post/LikeButton.jsx", + "line": 27, "column": 10, - "index": 1373 - } - ] - } - }, - { - "version": "20.46.3", - "name": "@edx/frontend-app-learner-record", - "repository": { - "type": "git", - "url": "git+https://github.com/edx/frontend-app-learner-record.git" - }, - "folderName": "frontend-app-learner-record", - "usages": { - "Tabs": [ - { - "filePath": "src/components/NavigationBar/NavigationBar.jsx", - "line": 30, - "column": 4, - "index": 756 - } - ], - "Tab": [ + "index": 668 + }, { - "filePath": "src/components/NavigationBar/NavigationBar.jsx", - "line": 36, - "column": 8, - "index": 922 - } - ], - "Hyperlink": [ + "filePath": "src/discussions/posts/post/PostFooter.jsx", + "line": 47, + "column": 12, + "index": 1160 + }, { - "filePath": "src/components/ProgramCertificate/ProgramCertificate.jsx", - "line": 26, - "column": 8, - "index": 570 + "filePath": "src/discussions/posts/post/PostFooter.jsx", + "line": 70, + "column": 14, + "index": 1987 }, { - "filePath": "src/components/ProgramCertificatesList/ProgramCertificatesList.jsx", + "filePath": "src/discussions/posts/post/PostFooter.jsx", "line": 88, - "column": 6, - "index": 2781 + "column": 14, + "index": 2484 }, { - "filePath": "src/components/ProgramCertificatesList/ProgramCertificatesList.jsx", - "line": 152, - "column": 6, - "index": 4564 + "filePath": "src/discussions/posts/post/PostSummaryFooter.jsx", + "line": 42, + "column": 12, + "index": 1152 }, { - "filePath": "src/components/ProgramRecord/ProgramRecord.jsx", - "line": 83, - "column": 6, - "index": 2601 + "filePath": "src/discussions/posts/post/PostSummaryFooter.jsx", + "line": 58, + "column": 10, + "index": 1774 }, { - "filePath": "src/components/ProgramRecord/RecordsHelp.jsx", - "line": 23, + "filePath": "src/discussions/posts/post/PostSummaryFooter.jsx", + "line": 74, "column": 14, - "index": 753 + "index": 2454 }, { - "filePath": "src/components/ProgramRecordAlert/ProgramRecordAlert.jsx", - "line": 68, - "column": 18, - "index": 2570 + "filePath": "src/discussions/posts/post/PostSummaryFooter.jsx", + "line": 98, + "column": 14, + "index": 3416 }, { - "filePath": "src/components/ProgramRecordsList/ProgramRecordsList.jsx", - "line": 47, - "column": 6, - "index": 1518 + "filePath": "src/discussions/topics/topic-group/topic/Topic.jsx", + "line": 63, + "column": 16, + "index": 2688 }, { - "filePath": "src/components/ProgramRecordsList/ProgramRecordsList.jsx", - "line": 116, - "column": 14, - "index": 4046 + "filePath": "src/discussions/topics/topic-group/topic/Topic.jsx", + "line": 81, + "column": 16, + "index": 3417 }, { - "filePath": "src/components/ProgramRecordsList/ProgramRecordsList.jsx", - "line": 162, - "column": 6, - "index": 5405 + "filePath": "src/discussions/topics/topic-group/topic/Topic.jsx", + "line": 100, + "column": 18, + "index": 4189 } ], - "DropdownButton": [ + "PostOutline": [ { - "filePath": "src/components/ProgramCertificate/ProgramCertificate.jsx", - "line": 34, - "column": 8, - "index": 834 - } - ], - "Dropdown.Item": [ + "filePath": "src/components/TopicStats.jsx", + "line": 43, + "column": 21, + "index": 1460 + }, { - "filePath": "src/components/ProgramCertificate/ProgramCertificate.jsx", - "line": 36, - "column": 12, - "index": 999 + "filePath": "src/discussions/topics/topic-group/topic/Topic.jsx", + "line": 73, + "column": 27, + "index": 3129 } ], - "StandardModal": [ + "Report": [ { - "filePath": "src/components/ProgramCertificateModal/ProgramCertificateModal.jsx", - "line": 27, - "column": 6, - "index": 737 + "filePath": "src/components/TopicStats.jsx", + "line": 87, + "column": 23, + "index": 3020 }, { - "filePath": "src/components/ProgramCertificateModal/ProgramCertificateModal.jsx", - "line": 39, - "column": 4, - "index": 1017 + "filePath": "src/discussions/common/AlertBanner.jsx", + "line": 43, + "column": 21, + "index": 1430 + }, + { + "filePath": "src/discussions/topics/topic-group/topic/Topic.jsx", + "line": 117, + "column": 29, + "index": 4965 } ], - "Info": [ + "useToggle": [ { - "filePath": "src/components/ProgramCertificateModal/ProgramCertificateModal.jsx", - "line": 28, - "column": 8, - "index": 819 + "filePath": "src/discussions/common/ActionsDropdown.jsx", + "line": 30, + "column": 32, + "index": 816 }, { - "filePath": "src/components/ProgramCertificatesList/ProgramCertificatesList.jsx", - "line": 103, - "column": 8, - "index": 3248 + "filePath": "src/discussions/post-comments/comments/comment/Comment.jsx", + "line": 56, + "column": 71, + "index": 2317 }, { - "filePath": "src/components/ProgramRecord/ProgramRecord.jsx", - "line": 168, - "column": 8, - "index": 5483 + "filePath": "src/discussions/post-comments/comments/comment/Comment.jsx", + "line": 57, + "column": 72, + "index": 2407 }, { - "filePath": "src/components/ProgramRecordAlert/ProgramRecordAlert.jsx", - "line": 39, - "column": 18, - "index": 1334 + "filePath": "src/discussions/post-comments/comments/comment/Reply.jsx", + "line": 32, + "column": 71, + "index": 1453 }, { - "filePath": "src/components/ProgramRecordsList/ProgramRecordsList.jsx", - "line": 64, - "column": 8, - "index": 2058 - } - ], - "ActionRow": [ + "filePath": "src/discussions/post-comments/comments/comment/Reply.jsx", + "line": 33, + "column": 72, + "index": 1543 + }, { - "filePath": "src/components/ProgramCertificateModal/ProgramCertificateModal.jsx", - "line": 47, - "column": 12, - "index": 1234 + "filePath": "src/discussions/post-comments/comments/CommentsSort.jsx", + "line": 20, + "column": 32, + "index": 729 }, { - "filePath": "src/components/ProgramRecordSendModal/SendLearnerRecordModal.jsx", - "line": 134, - "column": 8, - "index": 4123 + "filePath": "src/discussions/posts/post/Post.jsx", + "line": 45, + "column": 71, + "index": 2211 + }, + { + "filePath": "src/discussions/posts/post/Post.jsx", + "line": 46, + "column": 72, + "index": 2301 + }, + { + "filePath": "src/discussions/posts/post/Post.jsx", + "line": 47, + "column": 62, + "index": 2381 } ], - "ActionRow.Spacer": [ + "MoreHoriz": [ { - "filePath": "src/components/ProgramCertificateModal/ProgramCertificateModal.jsx", - "line": 48, - "column": 14, - "index": 1260 + "filePath": "src/discussions/common/ActionsDropdown.jsx", + "line": 67, + "column": 13, + "index": 1839 } ], - "Button": [ + "ModalPopup": [ { - "filePath": "src/components/ProgramCertificateModal/ProgramCertificateModal.jsx", - "line": 49, - "column": 14, - "index": 1295 + "filePath": "src/discussions/common/ActionsDropdown.jsx", + "line": 75, + "column": 8, + "index": 2082 }, { - "filePath": "src/components/ProgramCertificateModal/ProgramCertificateModal.jsx", - "line": 117, - "column": 10, - "index": 3729 - }, + "filePath": "src/discussions/post-comments/comments/CommentsSort.jsx", + "line": 60, + "column": 8, + "index": 1758 + } + ], + "Dropdown.Divider": [ { - "filePath": "src/components/ProgramCertificateModal/ProgramCertificateModal.jsx", - "line": 129, - "column": 10, - "index": 4098 - }, + "filePath": "src/discussions/common/ActionsDropdown.jsx", + "line": 87, + "column": 62, + "index": 2519 + } + ], + "Dropdown.Item": [ { - "filePath": "src/components/ProgramCertificateModal/ProgramCertificateModal.jsx", - "line": 156, - "column": 10, - "index": 4966 + "filePath": "src/discussions/common/ActionsDropdown.jsx", + "line": 88, + "column": 16, + "index": 2557 }, { - "filePath": "src/components/ProgramCertificateModal/ProgramCertificateModal.jsx", - "line": 165, - "column": 10, - "index": 5212 + "filePath": "src/discussions/navigation/breadcrumb-menu/BreadcrumbDropdown.jsx", + "line": 28, + "column": 6, + "index": 613 }, { - "filePath": "src/components/ProgramRecord/ProgramRecord.jsx", - "line": 78, - "column": 4, - "index": 2493 + "filePath": "src/discussions/navigation/breadcrumb-menu/BreadcrumbDropdown.jsx", + "line": 38, + "column": 8, + "index": 882 }, { - "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", - "line": 127, + "filePath": "src/discussions/post-comments/comments/CommentsSort.jsx", + "line": 69, "column": 12, - "index": 4013 - }, - { - "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", - "line": 156, - "column": 16, - "index": 5013 + "index": 2025 }, { - "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", - "line": 169, - "column": 16, - "index": 5542 - }, + "filePath": "src/discussions/post-comments/comments/CommentsSort.jsx", + "line": 81, + "column": 12, + "index": 2453 + } + ], + "Alert": [ { - "filePath": "src/components/ProgramRecordAlert/ProgramRecordAlert.jsx", - "line": 41, - "column": 14, - "index": 1377 + "filePath": "src/discussions/common/AlertBanner.jsx", + "line": 43, + "column": 8, + "index": 1417 }, { - "filePath": "src/components/ProgramRecordSendModal/SendLearnerRecordModal.jsx", - "line": 142, - "column": 10, - "index": 4450 + "filePath": "src/discussions/common/AlertBar.jsx", + "line": 21, + "column": 4, + "index": 385 }, { - "filePath": "src/components/ProgramRecordsList/ProgramRecordsList.jsx", - "line": 120, - "column": 16, - "index": 4169 + "filePath": "src/discussions/common/EndorsedAlertBanner.jsx", + "line": 32, + "column": 6, + "index": 1006 } ], - "Row": [ + "ModalDialog": [ { - "filePath": "src/components/ProgramCertificateModal/ProgramCertificateModal.jsx", - "line": 59, - "column": 10, - "index": 1538 + "filePath": "src/discussions/common/Confirmation.jsx", + "line": 23, + "column": 4, + "index": 428 }, { - "filePath": "src/components/ProgramCertificatesList/ProgramCertificatesList.jsx", - "line": 118, - "column": 6, - "index": 3681 + "filePath": "src/discussions/posts/post/ClosePostReasonModal.jsx", + "line": 49, + "column": 4, + "index": 1318 } ], - "ContentCopy": [ - { - "filePath": "src/components/ProgramCertificateModal/ProgramCertificateModal.jsx", - "line": 74, - "column": 16, - "index": 2181 - }, + "ModalDialog.Header": [ { - "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", - "line": 158, - "column": 30, - "index": 5095 + "filePath": "src/discussions/common/Confirmation.jsx", + "line": 24, + "column": 6, + "index": 533 }, { - "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", - "line": 171, - "column": 30, - "index": 5624 - } - ], - "useToggle": [ - { - "filePath": "src/components/ProgramCertificatesList/ProgramCertificatesList.jsx", - "line": 30, - "column": 47, - "index": 1163 + "filePath": "src/discussions/posts/post/ClosePostReasonModal.jsx", + "line": 56, + "column": 6, + "index": 1502 } ], - "ChevronLeft": [ + "ModalDialog.Title": [ { - "filePath": "src/components/ProgramCertificatesList/ProgramCertificatesList.jsx", - "line": 92, + "filePath": "src/discussions/common/Confirmation.jsx", + "line": 25, "column": 8, - "index": 2935 + "index": 562 }, { - "filePath": "src/components/ProgramRecordsList/ProgramRecordsList.jsx", - "line": 51, + "filePath": "src/discussions/posts/post/ClosePostReasonModal.jsx", + "line": 57, "column": 8, - "index": 1672 + "index": 1531 } ], - "Alert": [ + "ModalDialog.Body": [ { - "filePath": "src/components/ProgramCertificatesList/ProgramCertificatesList.jsx", - "line": 102, + "filePath": "src/discussions/common/Confirmation.jsx", + "line": 29, "column": 6, - "index": 3215 + "index": 663 }, { - "filePath": "src/components/ProgramRecord/ProgramRecord.jsx", - "line": 167, + "filePath": "src/discussions/posts/post/ClosePostReasonModal.jsx", + "line": 61, "column": 6, - "index": 5450 - }, - { - "filePath": "src/components/ProgramRecordAlert/ProgramRecordAlert.jsx", - "line": 37, - "column": 10, - "index": 1280 - }, + "index": 1675 + } + ], + "ModalDialog.Footer": [ { - "filePath": "src/components/ProgramRecordAlert/ProgramRecordAlert.jsx", - "line": 82, - "column": 10, - "index": 2973 + "filePath": "src/discussions/common/Confirmation.jsx", + "line": 32, + "column": 6, + "index": 736 }, { - "filePath": "src/components/ProgramRecordsList/ProgramRecordsList.jsx", - "line": 63, + "filePath": "src/discussions/posts/post/ClosePostReasonModal.jsx", + "line": 79, "column": 6, - "index": 2025 + "index": 2363 } ], - "ArrowBack": [ + "ModalDialog.CloseButton": [ { - "filePath": "src/components/ProgramRecord/ProgramRecord.jsx", - "line": 80, - "column": 18, - "index": 2544 + "filePath": "src/discussions/common/Confirmation.jsx", + "line": 34, + "column": 10, + "index": 787 + }, + { + "filePath": "src/discussions/posts/post/ClosePostReasonModal.jsx", + "line": 81, + "column": 10, + "index": 2414 } ], - "Container": [ + "breakpoints": [ { - "filePath": "src/components/ProgramRecord/ProgramRecord.jsx", - "line": 202, + "filePath": "src/discussions/data/hooks.js", + "line": 136, + "column": 29, + "index": 4825 + }, + { + "filePath": "src/discussions/data/hooks.js", + "line": 141, + "column": 29, + "index": 4958 + }, + { + "filePath": "src/discussions/data/hooks.js", + "line": 146, + "column": 29, + "index": 5093 + } + ], + "PageBanner": [ + { + "filePath": "src/discussions/discussions-home/DiscussionsRestrictionBanner.jsx", + "line": 23, "column": 4, - "index": 6386 + "index": 736 } ], - "Icon": [ + "ArrowBack": [ { - "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", - "line": 51, + "filePath": "src/discussions/in-context-topics/components/BackButton.jsx", + "line": 21, "column": 15, - "index": 1923 + "index": 573 }, { - "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", - "line": 52, + "filePath": "src/discussions/learners/LearnerPostsView.jsx", + "line": 82, "column": 15, - "index": 1963 + "index": 2787 }, { - "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", - "line": 53, - "column": 16, - "index": 2031 + "filePath": "src/discussions/post-comments/PostCommentsView.jsx", + "line": 94, + "column": 28, + "index": 3020 }, { - "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", - "line": 225, - "column": 24, - "index": 8278 + "filePath": "src/discussions/post-comments/PostCommentsView.jsx", + "line": 105, + "column": 17, + "index": 3362 } ], - "Download": [ + "SearchField": [ { - "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", - "line": 51, - "column": 26, - "index": 1934 + "filePath": "src/discussions/in-context-topics/topic-search/TopicSearchResultBar.jsx", + "line": 16, + "column": 6, + "index": 422 } ], - "SpinnerSimple": [ + "Avatar": [ { - "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", - "line": 52, - "column": 26, - "index": 1974 + "filePath": "src/discussions/learners/learner/LearnerAvatar.jsx", + "line": 8, + "column": 4, + "index": 184 + }, + { + "filePath": "src/discussions/post-comments/comments/comment/CommentHeader.jsx", + "line": 33, + "column": 8, + "index": 804 + }, + { + "filePath": "src/discussions/post-comments/comments/comment/Reply.jsx", + "line": 103, + "column": 12, + "index": 3947 + }, + { + "filePath": "src/discussions/post-comments/comments/comment/Reply.jsx", + "line": 121, + "column": 10, + "index": 4470 + }, + { + "filePath": "src/discussions/posts/post/PostHeader.jsx", + "line": 50, + "column": 6, + "index": 1572 } ], "Check": [ { - "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", - "line": 53, - "column": 27, - "index": 2042 - } - ], - "AccountBalance": [ + "filePath": "src/discussions/learners/learner/LearnerFilterBar.jsx", + "line": 33, + "column": 15, + "index": 1193 + }, { - "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", - "line": 130, - "column": 26, - "index": 4125 + "filePath": "src/discussions/posts/post-filter-bar/PostFilterBar.jsx", + "line": 47, + "column": 15, + "index": 1643 } ], - "OverlayTrigger": [ + "Form.Radio": [ { - "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", - "line": 140, - "column": 12, - "index": 4463 + "filePath": "src/discussions/learners/learner/LearnerFilterBar.jsx", + "line": 34, + "column": 4, + "index": 1286 }, { - "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", - "line": 183, - "column": 12, - "index": 6101 + "filePath": "src/discussions/posts/post-editor/PostTypeCard.jsx", + "line": 19, + "column": 6, + "index": 533 + }, + { + "filePath": "src/discussions/posts/post-filter-bar/PostFilterBar.jsx", + "line": 48, + "column": 4, + "index": 1756 } ], - "Tooltip": [ + "QuestionAnswerOutline": [ { - "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", - "line": 144, - "column": 16, - "index": 4587 + "filePath": "src/discussions/learners/learner/LearnerFooter.jsx", + "line": 37, + "column": 21, + "index": 1384 } ], - "Popover": [ + "Edit": [ { - "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", - "line": 187, - "column": 16, - "index": 6221 + "filePath": "src/discussions/learners/learner/LearnerFooter.jsx", + "line": 53, + "column": 21, + "index": 1929 } ], - "Popover.Title": [ - { - "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", - "line": 190, - "column": 18, - "index": 6302 - }, + "DropdownButton": [ { - "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", - "line": 204, - "column": 18, - "index": 7198 + "filePath": "src/discussions/navigation/breadcrumb-menu/BreadcrumbDropdown.jsx", + "line": 24, + "column": 4, + "index": 506 } ], - "Popover.Content": [ - { - "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", - "line": 197, - "column": 18, - "index": 6657 - }, + "Nav": [ { - "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", - "line": 211, - "column": 18, - "index": 7554 + "filePath": "src/discussions/navigation/navigation-bar/NavigationBar.jsx", + "line": 40, + "column": 4, + "index": 1070 } ], - "IconButton": [ + "Nav.Item": [ { - "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", - "line": 221, - "column": 14, - "index": 8130 + "filePath": "src/discussions/navigation/navigation-bar/NavigationBar.jsx", + "line": 42, + "column": 8, + "index": 1164 } ], - "Help": [ + "Nav.Link": [ { - "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", - "line": 224, - "column": 21, - "index": 8248 + "filePath": "src/discussions/navigation/navigation-bar/NavigationBar.jsx", + "line": 43, + "column": 10, + "index": 1202 } ], - "StatefulButton": [ + "Form.Group": [ { - "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", - "line": 235, + "filePath": "src/discussions/post-comments/comments/comment/CommentEditor.jsx", + "line": 153, "column": 12, - "index": 8500 - } - ], - "Toast": [ + "index": 5308 + }, { - "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", - "line": 248, + "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", + "line": 272, + "column": 10, + "index": 10011 + }, + { + "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", + "line": 334, + "column": 10, + "index": 12605 + }, + { + "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", + "line": 354, + "column": 10, + "index": 13410 + }, + { + "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", + "line": 374, "column": 10, - "index": 8970 + "index": 14048 + }, + { + "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", + "line": 420, + "column": 12, + "index": 15765 + }, + { + "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", + "line": 434, + "column": 12, + "index": 16220 + }, + { + "filePath": "src/discussions/posts/post/ClosePostReasonModal.jsx", + "line": 63, + "column": 8, + "index": 1782 } ], - "Badge": [ + "Form.Control": [ { - "filePath": "src/components/ProgramRecord/ProgramRecordHeader.jsx", - "line": 52, + "filePath": "src/discussions/post-comments/comments/comment/CommentEditor.jsx", + "line": 159, + "column": 14, + "index": 5481 + }, + { + "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", + "line": 273, "column": 12, - "index": 1533 + "index": 10058 }, { - "filePath": "src/components/ProgramRecord/ProgramRecordHeader.jsx", - "line": 58, - "column": 16, - "index": 1725 + "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", + "line": 335, + "column": 12, + "index": 12658 }, { - "filePath": "src/components/ProgramRecord/ProgramRecordHeader.jsx", - "line": 63, + "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", + "line": 361, "column": 12, - "index": 1893 + "index": 13596 }, { - "filePath": "src/components/ProgramRecord/ProgramRecordTable.jsx", - "line": 26, - "column": 10, - "index": 933 + "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", + "line": 381, + "column": 12, + "index": 14249 }, { - "filePath": "src/components/ProgramRecord/ProgramRecordTable.jsx", - "line": 31, + "filePath": "src/discussions/posts/post/ClosePostReasonModal.jsx", + "line": 64, "column": 10, - "index": 1071 + "index": 1805 } ], - "DataTable": [ + "StatefulButton": [ { - "filePath": "src/components/ProgramRecord/ProgramRecordTable.jsx", - "line": 38, - "column": 4, - "index": 1218 + "filePath": "src/discussions/post-comments/comments/comment/CommentEditor.jsx", + "line": 212, + "column": 12, + "index": 7436 + }, + { + "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", + "line": 457, + "column": 10, + "index": 16926 } ], - "DataTable.Table": [ + "Post": [ { - "filePath": "src/components/ProgramRecord/ProgramRecordTable.jsx", - "line": 76, - "column": 6, - "index": 2032 + "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", + "line": 262, + "column": 18, + "index": 9671 } ], - "DataTable.EmptyTable": [ + "Help": [ { - "filePath": "src/components/ProgramRecord/ProgramRecordTable.jsx", - "line": 77, - "column": 6, - "index": 2058 + "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", + "line": 268, + "column": 18, + "index": 9880 } ], - "Alert.Heading": [ + "Form.Checkbox": [ { - "filePath": "src/components/ProgramRecordAlert/ProgramRecordAlert.jsx", - "line": 54, - "column": 12, - "index": 1824 + "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", + "line": 421, + "column": 14, + "index": 15792 }, { - "filePath": "src/components/ProgramRecordAlert/ProgramRecordAlert.jsx", - "line": 88, - "column": 12, - "index": 3143 + "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", + "line": 435, + "column": 14, + "index": 16247 } ], - "CheckCircle": [ + "Card": [ { - "filePath": "src/components/ProgramRecordAlert/ProgramRecordAlert.jsx", - "line": 84, - "column": 18, - "index": 3028 + "filePath": "src/discussions/posts/post-editor/PostTypeCard.jsx", + "line": 20, + "column": 6, + "index": 631 } ], - "ModalDialog": [ + "Card.Section": [ { - "filePath": "src/components/ProgramRecordSendModal/SendLearnerRecordModal.jsx", - "line": 71, - "column": 4, - "index": 2027 + "filePath": "src/discussions/posts/post-editor/PostTypeCard.jsx", + "line": 27, + "column": 8, + "index": 900 } ], - "ModalDialog.Header": [ + "People": [ { - "filePath": "src/components/ProgramRecordSendModal/SendLearnerRecordModal.jsx", - "line": 80, - "column": 6, - "index": 2230 - } - ], - "ModalDialog.Title": [ + "filePath": "src/discussions/posts/post/PostFooter.jsx", + "line": 75, + "column": 21, + "index": 2163 + }, { - "filePath": "src/components/ProgramRecordSendModal/SendLearnerRecordModal.jsx", - "line": 81, - "column": 8, - "index": 2259 + "filePath": "src/discussions/posts/post/PostSummaryFooter.jsx", + "line": 103, + "column": 21, + "index": 3613 } ], - "ModalDialog.Body": [ + "Locked": [ { - "filePath": "src/components/ProgramRecordSendModal/SendLearnerRecordModal.jsx", - "line": 92, - "column": 6, - "index": 2635 + "filePath": "src/discussions/posts/post/PostFooter.jsx", + "line": 94, + "column": 19, + "index": 2669 } ], - "Form": [ + "Question": [ { - "filePath": "src/components/ProgramRecordSendModal/SendLearnerRecordModal.jsx", - "line": 104, - "column": 8, - "index": 3150 + "filePath": "src/discussions/posts/post/PostHeader.jsx", + "line": 44, + "column": 15, + "index": 1340 } ], - "SelectableBox.Set": [ + "Badge": [ { - "filePath": "src/components/ProgramRecordSendModal/SendLearnerRecordModal.jsx", + "filePath": "src/discussions/posts/post/PostHeader.jsx", + "line": 114, + "column": 21, + "index": 3486 + }, + { + "filePath": "src/discussions/posts/post/PostLink.jsx", "line": 112, - "column": 10, - "index": 3464 + "column": 16, + "index": 4145 + }, + { + "filePath": "src/discussions/posts/post/PostSummaryFooter.jsx", + "line": 90, + "column": 8, + "index": 3072 } ], - "SelectableBox": [ + "CheckCircle": [ { - "filePath": "src/components/ProgramRecordSendModal/SendLearnerRecordModal.jsx", - "line": 120, - "column": 14, - "index": 3730 + "filePath": "src/discussions/posts/post/PostLink.jsx", + "line": 105, + "column": 23, + "index": 3871 } ], - "ModalDialog.Footer": [ + "PushPin": [ { - "filePath": "src/components/ProgramRecordSendModal/SendLearnerRecordModal.jsx", - "line": 133, - "column": 6, - "index": 4094 + "filePath": "src/discussions/posts/post/PostLink.jsx", + "line": 123, + "column": 23, + "index": 4599 } ], - "ModalDialog.CloseButton": [ + "ProductTour": [ { - "filePath": "src/components/ProgramRecordSendModal/SendLearnerRecordModal.jsx", - "line": 135, - "column": 10, - "index": 4145 + "filePath": "src/discussions/tours/DiscussionsProductTour.jsx", + "line": 20, + "column": 6, + "index": 509 } ] } }, { - "version": "20.46.0", - "name": "@edx/frontend-app-learning", + "version": "20.46.3", + "name": "@edx/frontend-app-ecommerce", "repository": { "type": "git", - "url": "git+https://github.com/openedx/frontend-app-learning.git" + "url": "git+https://github.com/openedx/frontend-app-ecommerce.git" }, - "folderName": "frontend-app-learning", + "folderName": "frontend-app-ecommerce", "usages": { - "Hyperlink": [ - { - "filePath": "src/alerts/access-expiration-alert/AccessExpirationAlert.jsx", - "line": 65, - "column": 8, - "index": 1847 - }, + "AlertModal": [ { - "filePath": "src/alerts/active-enteprise-alert/ActiveEnterpriseAlert.jsx", - "line": 13, + "filePath": "src/components/BasicAlert.jsx", + "line": 32, "column": 4, - "index": 479 - }, + "index": 791 + } + ], + "Info": [ { - "filePath": "src/alerts/logistration-alert/LogistrationAlert.jsx", - "line": 12, - "column": 4, - "index": 455 + "filePath": "src/components/BasicAlert.jsx", + "line": 36, + "column": 12, + "index": 890 }, { - "filePath": "src/alerts/logistration-alert/LogistrationAlert.jsx", - "line": 23, - "column": 4, - "index": 882 - }, + "filePath": "src/components/BasicAlert.jsx", + "line": 53, + "column": 12, + "index": 1247 + } + ], + "ActionRow": [ { - "filePath": "src/course-home/goal-unsubscribe/ResultPage.jsx", - "line": 16, + "filePath": "src/components/BasicAlert.jsx", + "line": 40, + "column": 8, + "index": 973 + } + ], + "Button": [ + { + "filePath": "src/components/BasicAlert.jsx", + "line": 41, "column": 10, - "index": 683 + "index": 995 }, { - "filePath": "src/course-home/outline-tab/alerts/private-course-alert/PrivateCourseAlert.jsx", - "line": 49, - "column": 4, - "index": 1510 + "filePath": "src/subscriptions/ManageSubscriptionsPage.jsx", + "line": 71, + "column": 8, + "index": 2706 }, { - "filePath": "src/course-home/outline-tab/alerts/private-course-alert/PrivateCourseAlert.jsx", - "line": 58, - "column": 4, - "index": 1789 - }, - { - "filePath": "src/course-home/progress-tab/credit-information/CreditInformation.jsx", - "line": 29, - "column": 4, - "index": 875 - }, - { - "filePath": "src/course-home/progress-tab/grades/detailed-grades/DetailedGrades.jsx", - "line": 44, - "column": 4, - "index": 1364 - }, - { - "filePath": "src/course-home/progress-tab/related-links/RelatedLinks.jsx", - "line": 42, - "column": 10, - "index": 1314 - }, + "filePath": "src/subscriptions/SubscriptionUpsell.jsx", + "line": 13, + "column": 6, + "index": 388 + } + ], + "Alert": [ { - "filePath": "src/course-home/progress-tab/related-links/RelatedLinks.jsx", + "filePath": "src/components/BasicAlert.jsx", "line": 50, - "column": 10, - "index": 1618 - }, - { - "filePath": "src/courseware/course/course-exit/CatalogSuggestion.jsx", - "line": 25, "column": 4, - "index": 878 - }, - { - "filePath": "src/courseware/course/course-exit/CourseCelebration.jsx", - "line": 209, - "column": 14, - "index": 8609 + "index": 1173 }, { - "filePath": "src/courseware/course/course-exit/CourseRecommendations.jsx", - "line": 101, - "column": 6, - "index": 3451 - }, + "filePath": "src/subscriptions/SubscriptionUpsell.jsx", + "line": 9, + "column": 2, + "index": 285 + } + ], + "Alert.Heading": [ { - "filePath": "src/courseware/course/course-exit/CourseRecommendations.jsx", - "line": 196, + "filePath": "src/components/BasicAlert.jsx", + "line": 56, "column": 6, - "index": 6791 + "index": 1288 }, { - "filePath": "src/courseware/course/course-exit/DashboardFootnote.jsx", - "line": 25, + "filePath": "src/subscriptions/SubscriptionUpsell.jsx", + "line": 29, "column": 4, - "index": 847 - }, + "index": 871 + } + ], + "Hyperlink": [ { - "filePath": "src/courseware/course/course-exit/ProgramCompletion.jsx", - "line": 34, - "column": 4, - "index": 1292 + "filePath": "src/components/SupportLink.jsx", + "line": 7, + "column": 2, + "index": 216 }, { - "filePath": "src/courseware/course/course-exit/ProgramCompletion.jsx", - "line": 59, - "column": 16, - "index": 2225 + "filePath": "src/order-history/OrderHistoryPage.jsx", + "line": 61, + "column": 8, + "index": 1736 }, { - "filePath": "src/courseware/course/course-exit/ProgramCompletion.jsx", - "line": 76, - "column": 14, - "index": 2955 - }, + "filePath": "src/subscriptions/SubscriptionCardsView.jsx", + "line": 38, + "column": 6, + "index": 1044 + } + ], + "Pagination": [ { - "filePath": "src/courseware/course/course-exit/UpgradeFootnote.jsx", - "line": 23, - "column": 4, - "index": 812 - }, + "filePath": "src/order-history/OrderHistoryPage.jsx", + "line": 78, + "column": 6, + "index": 2088 + } + ], + "DataTable": [ { - "filePath": "src/courseware/course/sequence/hidden-after-due/HiddenAfterDue.jsx", - "line": 16, - "column": 4, - "index": 575 - }, + "filePath": "src/order-history/OrderHistoryPage.jsx", + "line": 102, + "column": 6, + "index": 2627 + } + ], + "DataTable.Table": [ { - "filePath": "src/courseware/course/sequence/lock-paywall/LockPaywall.jsx", - "line": 91, - "column": 14, - "index": 3284 - }, + "filePath": "src/order-history/OrderHistoryPage.jsx", + "line": 128, + "column": 8, + "index": 3615 + } + ], + "Card": [ { - "filePath": "src/shared/links.jsx", - "line": 10, - "column": 2, - "index": 370 - }, + "filePath": "src/subscriptions/SubscriptionCardsView.jsx", + "line": 43, + "column": 8, + "index": 1163 + } + ], + "Badge": [ { - "filePath": "src/shared/links.jsx", - "line": 28, - "column": 4, - "index": 750 + "filePath": "src/subscriptions/SubscriptionCardsView.jsx", + "line": 46, + "column": 12, + "index": 1378 }, { - "filePath": "src/shared/links.jsx", - "line": 46, - "column": 4, - "index": 1134 + "filePath": "src/subscriptions/SubscriptionUpsell.jsx", + "line": 33, + "column": 6, + "index": 983 } ], - "Alert": [ + "SpinnerSimple": [ { - "filePath": "src/alerts/access-expiration-alert/AccessExpirationAlert.jsx", - "line": 78, - "column": 4, - "index": 2131 - }, + "filePath": "src/subscriptions/Subscriptions.jsx", + "line": 58, + "column": 32, + "index": 1934 + } + ], + "StatefulButton": [ { - "filePath": "src/alerts/active-enteprise-alert/ActiveEnterpriseAlert.jsx", - "line": 26, - "column": 4, - "index": 854 + "filePath": "src/subscriptions/Subscriptions.jsx", + "line": 83, + "column": 8, + "index": 2789 + } + ] + } + }, + { + "version": "21.13.1", + "name": "@edx/frontend-app-enterprise-public-catalog", + "repository": { + "type": "git", + "url": "git+https://github.com/openedx/frontend-app-enterprise-public-catalog.git" + }, + "folderName": "frontend-app-enterprise-public-catalog", + "usages": { + "Card": [ + { + "filePath": "src/components/aiCuration/AskXpert.jsx", + "line": 120, + "column": 8, + "index": 4167 }, { - "filePath": "src/alerts/course-start-alert/CourseStartAlert.jsx", - "line": 43, + "filePath": "src/components/aiCuration/xpertResultCard/XpertResultCard.jsx", + "line": 70, "column": 6, - "index": 1112 + "index": 2772 }, { - "filePath": "src/alerts/course-start-alert/CourseStartAlert.jsx", - "line": 68, + "filePath": "src/components/courseCard/CourseCard.jsx", + "line": 33, "column": 4, - "index": 1825 + "index": 998 }, { - "filePath": "src/alerts/enrollment-alert/EnrollmentAlert.jsx", - "line": 50, + "filePath": "src/components/programCard/ProgramCard.jsx", + "line": 34, "column": 4, - "index": 1398 - }, + "index": 1074 + } + ], + "Card.Section": [ { - "filePath": "src/alerts/logistration-alert/LogistrationAlert.jsx", - "line": 32, - "column": 4, - "index": 1153 + "filePath": "src/components/aiCuration/AskXpert.jsx", + "line": 121, + "column": 10, + "index": 4246 }, { - "filePath": "src/course-home/courseware-search/CoursewareSearch.jsx", - "line": 119, - "column": 12, - "index": 3737 + "filePath": "src/components/aiCuration/AskXpert.jsx", + "line": 128, + "column": 10, + "index": 4433 }, { - "filePath": "src/course-home/outline-tab/alerts/certificate-status-alert/CertificateStatusAlert.jsx", - "line": 166, - "column": 8, - "index": 5841 + "filePath": "src/components/aiCuration/AskXpert.jsx", + "line": 178, + "column": 10, + "index": 6619 }, { - "filePath": "src/course-home/outline-tab/alerts/course-end-alert/CourseEndAlert.jsx", - "line": 86, - "column": 4, - "index": 2148 + "filePath": "src/components/aiCuration/xpertResultCard/XpertResultCard.jsx", + "line": 71, + "column": 8, + "index": 2849 }, { - "filePath": "src/course-home/outline-tab/alerts/private-course-alert/PrivateCourseAlert.jsx", - "line": 67, - "column": 4, - "index": 2020 + "filePath": "src/components/aiCuration/xpertResultCard/XpertResultCard.jsx", + "line": 78, + "column": 8, + "index": 3027 }, { - "filePath": "src/course-home/outline-tab/alerts/scheduled-content-alert/ScheduledCotentAlert.jsx", - "line": 12, - "column": 4, - "index": 282 + "filePath": "src/components/aiCuration/xpertResultCard/XpertResultCard.jsx", + "line": 173, + "column": 8, + "index": 7554 }, { - "filePath": "src/course-home/outline-tab/widgets/WelcomeMessage.jsx", - "line": 31, - "column": 4, - "index": 1054 + "filePath": "src/components/aiCuration/xpertResultCard/XpertResultCard.jsx", + "line": 188, + "column": 8, + "index": 8045 }, { - "filePath": "src/course-home/suggested-schedule-messaging/ShiftDatesAlert.jsx", - "line": 39, - "column": 4, - "index": 802 + "filePath": "src/components/courseCard/CourseCard.jsx", + "line": 47, + "column": 6, + "index": 1388 }, { - "filePath": "src/course-home/suggested-schedule-messaging/UpgradeToCompleteAlert.jsx", - "line": 36, - "column": 4, - "index": 788 - }, + "filePath": "src/components/programCard/ProgramCard.jsx", + "line": 54, + "column": 6, + "index": 1605 + } + ], + "Image": [ { - "filePath": "src/course-home/suggested-schedule-messaging/UpgradeToShiftDatesAlert.jsx", - "line": 38, - "column": 4, - "index": 843 + "filePath": "src/components/aiCuration/AskXpert.jsx", + "line": 122, + "column": 12, + "index": 4291 }, { - "filePath": "src/courseware/course/course-exit/CourseCelebration.jsx", - "line": 317, + "filePath": "src/components/aiCuration/xpertResultCard/XpertResultCard.jsx", + "line": 72, "column": 10, - "index": 12659 + "index": 2892 }, { - "filePath": "src/courseware/course/course-exit/CourseInProgress.jsx", - "line": 41, - "column": 8, - "index": 1523 + "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", + "line": 66, + "column": 10, + "index": 1663 }, { - "filePath": "src/courseware/course/course-exit/CourseNonPassing.jsx", - "line": 41, + "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", + "line": 172, "column": 8, - "index": 1523 - }, - { - "filePath": "src/courseware/course/course-exit/ProgramCompletion.jsx", - "line": 44, - "column": 4, - "index": 1497 + "index": 5434 }, { - "filePath": "src/courseware/course/sequence/hidden-after-due/HiddenAfterDue.jsx", - "line": 26, - "column": 4, - "index": 791 + "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", + "line": 235, + "column": 10, + "index": 7004 }, { - "filePath": "src/courseware/course/sequence/honor-code/HonorCode.jsx", - "line": 39, - "column": 4, - "index": 1433 + "filePath": "src/components/catalogs/CatalogSearch.jsx", + "line": 255, + "column": 12, + "index": 8758 }, { - "filePath": "src/courseware/course/sequence/lock-paywall/LockPaywall.jsx", - "line": 82, - "column": 4, - "index": 2818 + "filePath": "src/components/hero/Hero.jsx", + "line": 17, + "column": 2, + "index": 678 }, { - "filePath": "src/generic/user-messages/Alert.jsx", - "line": 35, + "filePath": "src/components/hero/Hero.jsx", + "line": 30, "column": 2, - "index": 771 + "index": 957 + } + ], + "Stack": [ + { + "filePath": "src/components/aiCuration/AskXpert.jsx", + "line": 129, + "column": 12, + "index": 4493 }, { - "filePath": "src/shared/streak-celebration/StreakCelebrationModal.jsx", - "line": 181, + "filePath": "src/components/aiCuration/xpertResultCard/XpertResultCard.jsx", + "line": 79, "column": 10, - "index": 7126 + "index": 3070 } ], - "Info": [ + "Row": [ { - "filePath": "src/alerts/access-expiration-alert/AccessExpirationAlert.jsx", - "line": 78, - "column": 32, - "index": 2159 - }, + "filePath": "src/components/aiCuration/AskXpert.jsx", + "line": 160, + "column": 16, + "index": 5894 + } + ], + "Col": [ { - "filePath": "src/alerts/course-start-alert/CourseStartAlert.jsx", - "line": 43, - "column": 34, - "index": 1140 + "filePath": "src/components/aiCuration/AskXpert.jsx", + "line": 161, + "column": 18, + "index": 5959 }, { - "filePath": "src/alerts/course-start-alert/CourseStartAlert.jsx", - "line": 68, - "column": 32, - "index": 1853 + "filePath": "src/components/aiCuration/AskXpert.jsx", + "line": 170, + "column": 18, + "index": 6398 + } + ], + "Button": [ + { + "filePath": "src/components/aiCuration/AskXpert.jsx", + "line": 162, + "column": 20, + "index": 6000 }, { - "filePath": "src/alerts/enrollment-alert/EnrollmentAlert.jsx", - "line": 38, - "column": 4, - "index": 1031 + "filePath": "src/components/aiCuration/xpertResultCard/XpertResultCard.jsx", + "line": 175, + "column": 12, + "index": 7673 }, { - "filePath": "src/course-home/outline-tab/alerts/course-end-alert/CourseEndAlert.jsx", - "line": 86, - "column": 32, - "index": 2176 + "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", + "line": 120, + "column": 16, + "index": 3584 }, { - "filePath": "src/course-home/progress-tab/grades/detailed-grades/SubsectionTitleCell.jsx", - "line": 89, - "column": 23, - "index": 3111 + "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", + "line": 298, + "column": 14, + "index": 9184 }, { - "filePath": "src/courseware/course/sequence/hidden-after-due/HiddenAfterDue.jsx", - "line": 26, - "column": 32, - "index": 819 - } - ], - "PageBanner": [ + "filePath": "src/components/catalogSearchResults/associatedComponents/downloadCsvButton/DownloadCsvButton.jsx", + "line": 40, + "column": 6, + "index": 1243 + }, { - "filePath": "src/alerts/access-expiration-alert/AccessExpirationMasqueradeBanner.jsx", - "line": 15, - "column": 4, - "index": 403 + "filePath": "src/components/catalogSearchResults/associatedComponents/titleButton/TitleButton.jsx", + "line": 6, + "column": 2, + "index": 153 }, { - "filePath": "src/alerts/course-start-alert/CourseStartMasqueradeBanner.jsx", - "line": 21, - "column": 4, - "index": 513 + "filePath": "src/components/catalogSearchResults/CatalogSearchResults.jsx", + "line": 452, + "column": 12, + "index": 13297 } ], - "WarningFilled": [ + "IconButton": [ { - "filePath": "src/alerts/active-enteprise-alert/ActiveEnterpriseAlert.jsx", - "line": 26, - "column": 35, - "index": 885 + "filePath": "src/components/aiCuration/AskXpert.jsx", + "line": 179, + "column": 12, + "index": 6728 }, { - "filePath": "src/alerts/logistration-alert/LogistrationAlert.jsx", + "filePath": "src/components/aiCuration/AskXpertQueryField.jsx", "line": 32, - "column": 35, - "index": 1184 - }, + "column": 10, + "index": 983 + } + ], + "Close": [ { - "filePath": "src/course-home/progress-tab/credit-information/CreditInformation.jsx", - "line": 80, - "column": 92, - "index": 3049 + "filePath": "src/components/aiCuration/AskXpert.jsx", + "line": 181, + "column": 19, + "index": 6786 }, { - "filePath": "src/course-home/progress-tab/grades/course-grade/CourseGradeFooter.jsx", - "line": 53, - "column": 17, - "index": 1858 + "filePath": "src/components/aiCuration/xpertResultCard/XpertResultCard.jsx", + "line": 182, + "column": 19, + "index": 7905 } ], - "Button": [ - { - "filePath": "src/alerts/enrollment-alert/EnrollmentAlert.jsx", - "line": 44, - "column": 4, - "index": 1146 - }, + "Icon": [ { - "filePath": "src/alerts/logistration-alert/AccountActivationAlert.jsx", - "line": 42, - "column": 4, - "index": 1452 + "filePath": "src/components/aiCuration/AskXpert.jsx", + "line": 182, + "column": 22, + "index": 6815 }, { - "filePath": "src/course-home/courseware-search/CoursewareSearch.jsx", - "line": 95, - "column": 8, - "index": 2682 + "filePath": "src/components/aiCuration/AskXpertQueryField.jsx", + "line": 37, + "column": 20, + "index": 1118 }, { - "filePath": "src/course-home/courseware-search/CoursewareSearchToggle.jsx", - "line": 29, - "column": 6, - "index": 871 + "filePath": "src/components/aiCuration/xpertResultCard/XpertResultCard.jsx", + "line": 181, + "column": 12, + "index": 7880 }, { - "filePath": "src/course-home/goal-unsubscribe/ResultPage.jsx", - "line": 42, - "column": 6, - "index": 1474 + "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", + "line": 125, + "column": 18, + "index": 3875 }, { - "filePath": "src/course-home/outline-tab/alerts/certificate-status-alert/CertificateStatusAlert.jsx", - "line": 175, + "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", + "line": 303, "column": 16, - "index": 6310 + "index": 9472 }, { - "filePath": "src/course-home/outline-tab/alerts/private-course-alert/PrivateCourseAlert.jsx", - "line": 36, - "column": 4, - "index": 1199 + "filePath": "src/components/catalogModalBanner/CatalogCourseModalBanner.jsx", + "line": 51, + "column": 8, + "index": 1373 }, { - "filePath": "src/course-home/outline-tab/alerts/scheduled-content-alert/ScheduledCotentAlert.jsx", - "line": 28, - "column": 12, - "index": 1035 + "filePath": "src/components/catalogModalBanner/CatalogCourseModalBanner.jsx", + "line": 65, + "column": 10, + "index": 1859 }, { - "filePath": "src/course-home/outline-tab/OutlineTab.jsx", - "line": 166, - "column": 18, - "index": 5925 + "filePath": "src/components/catalogModalBanner/CatalogCourseModalBanner.jsx", + "line": 81, + "column": 10, + "index": 2346 }, { - "filePath": "src/course-home/outline-tab/widgets/ProctoringInfoPanel.jsx", - "line": 138, - "column": 6, - "index": 4815 + "filePath": "src/components/catalogModalBanner/CatalogCourseModalBanner.jsx", + "line": 97, + "column": 8, + "index": 2855 }, { - "filePath": "src/course-home/outline-tab/widgets/ProctoringInfoPanel.jsx", - "line": 153, - "column": 6, - "index": 5254 + "filePath": "src/components/catalogModalBanner/CatalogProgramModalBanner.jsx", + "line": 21, + "column": 10, + "index": 647 }, { - "filePath": "src/course-home/outline-tab/widgets/ProctoringInfoPanel.jsx", - "line": 160, - "column": 8, - "index": 5568 + "filePath": "src/components/catalogModalBanner/CatalogProgramModalBanner.jsx", + "line": 37, + "column": 10, + "index": 1133 }, { - "filePath": "src/course-home/outline-tab/widgets/ProctoringInfoPanel.jsx", - "line": 166, + "filePath": "src/components/catalogModalBanner/CatalogProgramModalBanner.jsx", + "line": 52, "column": 8, - "index": 5829 + "index": 1624 }, { - "filePath": "src/course-home/outline-tab/widgets/ProctoringInfoPanel.jsx", - "line": 209, + "filePath": "src/components/programCard/ProgramCard.jsx", + "line": 60, "column": 12, - "index": 7621 - }, + "index": 1871 + } + ], + "Form.Group": [ { - "filePath": "src/course-home/outline-tab/widgets/StartOrResumeCourseCard.jsx", - "line": 48, - "column": 10, - "index": 1272 + "filePath": "src/components/aiCuration/AskXpertQueryField.jsx", + "line": 14, + "column": 4, + "index": 319 }, { - "filePath": "src/course-home/outline-tab/widgets/WelcomeMessage.jsx", - "line": 43, - "column": 8, - "index": 1369 - }, + "filePath": "src/components/aiCuration/xpertResultCard/XpertResultCard.jsx", + "line": 147, + "column": 14, + "index": 6516 + } + ], + "Form.Control": [ { - "filePath": "src/course-home/progress-tab/certificate-status/CertificateStatus.jsx", - "line": 245, - "column": 12, - "index": 8679 + "filePath": "src/components/aiCuration/AskXpertQueryField.jsx", + "line": 15, + "column": 6, + "index": 338 }, { - "filePath": "src/course-home/progress-tab/grades/course-grade/CourseGradeHeader.jsx", - "line": 77, - "column": 10, - "index": 2678 - }, + "filePath": "src/components/aiCuration/xpertResultCard/XpertResultCard.jsx", + "line": 155, + "column": 16, + "index": 6998 + } + ], + "Send": [ { - "filePath": "src/course-home/progress-tab/ProgressHeader.jsx", - "line": 32, + "filePath": "src/components/aiCuration/AskXpertQueryField.jsx", + "line": 36, + "column": 17, + "index": 1092 + } + ], + "ProgressBar": [ + { + "filePath": "src/components/aiCuration/ProgressBar.jsx", + "line": 34, "column": 6, - "index": 1017 - }, + "index": 955 + } + ], + "Spinner": [ { - "filePath": "src/course-home/suggested-schedule-messaging/ShiftDatesAlert.jsx", - "line": 46, - "column": 10, - "index": 1168 + "filePath": "src/components/aiCuration/xpertResultCard/XpertResultCard.jsx", + "line": 100, + "column": 24, + "index": 4023 }, { - "filePath": "src/course-home/suggested-schedule-messaging/UpgradeToCompleteAlert.jsx", - "line": 43, - "column": 10, - "index": 1185 + "filePath": "src/components/aiCuration/xpertResultCard/XpertResultCard.jsx", + "line": 112, + "column": 24, + "index": 4714 }, { - "filePath": "src/course-home/suggested-schedule-messaging/UpgradeToShiftDatesAlert.jsx", - "line": 45, - "column": 10, - "index": 1220 - }, + "filePath": "src/components/aiCuration/xpertResultCard/XpertResultCard.jsx", + "line": 124, + "column": 24, + "index": 5404 + } + ], + "Form.Label": [ { - "filePath": "src/courseware/course/celebration/CelebrationModal.jsx", - "line": 38, - "column": 10, - "index": 1173 - }, + "filePath": "src/components/aiCuration/xpertResultCard/XpertResultCard.jsx", + "line": 148, + "column": 16, + "index": 6558 + } + ], + "ModalDialog": [ { - "filePath": "src/courseware/course/celebration/WeeklyGoalCelebrationModal.jsx", - "line": 30, - "column": 10, - "index": 915 + "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", + "line": 50, + "column": 6, + "index": 1183 }, { - "filePath": "src/courseware/course/course-exit/CourseCelebration.jsx", - "line": 109, - "column": 10, - "index": 3881 - }, + "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", + "line": 219, + "column": 6, + "index": 6523 + } + ], + "ModalDialog.Body": [ { - "filePath": "src/courseware/course/course-exit/CourseCelebration.jsx", - "line": 153, + "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", + "line": 59, "column": 8, - "index": 5942 - }, - { - "filePath": "src/courseware/course/course-exit/CourseCelebration.jsx", - "line": 325, - "column": 20, - "index": 13033 + "index": 1405 }, { - "filePath": "src/courseware/course/course-exit/CourseExit.jsx", - "line": 67, + "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", + "line": 228, "column": 8, - "index": 2047 + "index": 6746 + } + ], + "ModalDialog.Hero": [ + { + "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", + "line": 60, + "column": 10, + "index": 1460 }, { - "filePath": "src/courseware/course/course-exit/CourseInProgress.jsx", - "line": 45, + "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", + "line": 229, + "column": 10, + "index": 6801 + } + ], + "ModalDialog.Title": [ + { + "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", + "line": 73, "column": 14, - "index": 1778 + "index": 1877 }, { - "filePath": "src/courseware/course/course-exit/CourseNonPassing.jsx", - "line": 45, + "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", + "line": 78, "column": 14, - "index": 1799 + "index": 2057 }, { - "filePath": "src/courseware/course/course-exit/ProgramCompletion.jsx", - "line": 67, + "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", + "line": 242, "column": 14, - "index": 2580 + "index": 7219 }, { - "filePath": "src/courseware/course/sequence/content-lock/ContentLock.jsx", - "line": 33, - "column": 8, - "index": 1012 - }, + "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", + "line": 247, + "column": 14, + "index": 7401 + } + ], + "ModalDialog.Footer": [ { - "filePath": "src/courseware/course/sequence/honor-code/HonorCode.jsx", - "line": 59, + "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", + "line": 110, "column": 8, - "index": 2367 + "index": 3265 }, { - "filePath": "src/courseware/course/sequence/honor-code/HonorCode.jsx", - "line": 62, + "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", + "line": 289, "column": 8, - "index": 2511 - }, + "index": 8912 + } + ], + "ActionRow": [ { - "filePath": "src/courseware/course/sequence/sequence-navigation/SequenceNavigation.jsx", - "line": 73, - "column": 6, - "index": 2148 + "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", + "line": 111, + "column": 10, + "index": 3296 }, { - "filePath": "src/courseware/course/sequence/sequence-navigation/SequenceNavigation.jsx", - "line": 94, - "column": 6, - "index": 2892 - }, + "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", + "line": 290, + "column": 10, + "index": 8943 + } + ], + "Hyperlink": [ { - "filePath": "src/courseware/course/sequence/sequence-navigation/UnitButton.jsx", - "line": 31, - "column": 4, - "index": 734 + "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", + "line": 113, + "column": 14, + "index": 3353 }, { - "filePath": "src/courseware/course/sequence/sequence-navigation/UnitNavigation.jsx", - "line": 34, - "column": 6, - "index": 1107 - }, + "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", + "line": 291, + "column": 12, + "index": 8967 + } + ], + "Launch": [ { - "filePath": "src/courseware/course/sequence/sequence-navigation/UnitNavigation.jsx", - "line": 54, - "column": 6, - "index": 1913 + "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", + "line": 125, + "column": 56, + "index": 3913 }, { - "filePath": "src/generic/upgrade-button/UpgradeButton.jsx", - "line": 22, - "column": 4, - "index": 556 + "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", + "line": 303, + "column": 54, + "index": 9510 + } + ], + "MoneyOutline": [ + { + "filePath": "src/components/catalogModalBanner/CatalogCourseModalBanner.jsx", + "line": 51, + "column": 36, + "index": 1401 }, { - "filePath": "src/generic/upgrade-button/UpgradeNowButton.jsx", - "line": 22, - "column": 4, - "index": 563 + "filePath": "src/components/catalogModalBanner/CatalogProgramModalBanner.jsx", + "line": 21, + "column": 38, + "index": 675 + } + ], + "BookOpen": [ + { + "filePath": "src/components/catalogModalBanner/CatalogCourseModalBanner.jsx", + "line": 65, + "column": 38, + "index": 1887 }, { - "filePath": "src/generic/upgrade-notification/UpgradeNotification.jsx", - "line": 449, + "filePath": "src/components/catalogModalBanner/CatalogProgramModalBanner.jsx", + "line": 52, + "column": 36, + "index": 1652 + } + ], + "Book": [ + { + "filePath": "src/components/catalogModalBanner/CatalogCourseModalBanner.jsx", + "line": 81, + "column": 38, + "index": 2374 + } + ], + "EventNote": [ + { + "filePath": "src/components/catalogModalBanner/CatalogCourseModalBanner.jsx", + "line": 97, + "column": 36, + "index": 2883 + } + ], + "Assignment": [ + { + "filePath": "src/components/catalogModalBanner/CatalogProgramModalBanner.jsx", + "line": 37, + "column": 38, + "index": 1161 + } + ], + "Alert": [ + { + "filePath": "src/components/catalogNoResultsDeck/CatalogNoResultsDeck.jsx", + "line": 70, "column": 6, - "index": 14714 + "index": 2002 }, { - "filePath": "src/product-tours/newUserCourseHomeTour/LaunchCourseHomeTourButton.jsx", - "line": 46, - "column": 8, - "index": 1282 - }, + "filePath": "src/components/catalogSearchResults/CatalogSearchResults.jsx", + "line": 398, + "column": 6, + "index": 11605 + } + ], + "Alert.Heading": [ { - "filePath": "src/product-tours/newUserCourseHomeTour/NewUserCourseHomeTourModal.jsx", - "line": 45, + "filePath": "src/components/catalogNoResultsDeck/CatalogNoResultsDeck.jsx", + "line": 71, "column": 8, - "index": 1364 - }, + "index": 2085 + } + ], + "Alert.Link": [ { - "filePath": "src/product-tours/newUserCourseHomeTour/NewUserCourseHomeTourModal.jsx", - "line": 51, + "filePath": "src/components/catalogNoResultsDeck/CatalogNoResultsDeck.jsx", + "line": 77, "column": 8, - "index": 1519 + "index": 2265 } ], - "Icon": [ + "DataTable": [ { - "filePath": "src/alerts/logistration-alert/AccountActivationAlert.jsx", - "line": 55, + "filePath": "src/components/catalogNoResultsDeck/CatalogNoResultsDeck.jsx", + "line": 87, "column": 6, - "index": 1818 + "index": 2572 }, { - "filePath": "src/alerts/logistration-alert/AccountActivationAlert.jsx", - "line": 105, + "filePath": "src/components/catalogSearchResults/CatalogSearchResults.jsx", + "line": 484, "column": 10, - "index": 3343 - }, - { - "filePath": "src/course-home/courseware-search/CoursewareSearch.jsx", - "line": 101, - "column": 9, - "index": 2922 - }, - { - "filePath": "src/course-home/courseware-search/CoursewareSearchResults.jsx", - "line": 48, - "column": 61, - "index": 1279 - }, + "index": 14500 + } + ], + "CardView": [ { - "filePath": "src/course-home/courseware-search/CoursewareSearchToggle.jsx", - "line": 37, + "filePath": "src/components/catalogNoResultsDeck/CatalogNoResultsDeck.jsx", + "line": 100, "column": 8, - "index": 1144 + "index": 3013 }, { - "filePath": "src/course-home/outline-tab/widgets/WeeklyLearningGoalCard.jsx", - "line": 137, + "filePath": "src/components/catalogSearchResults/CatalogSearchResults.jsx", + "line": 497, "column": 14, - "index": 4840 - }, + "index": 15016 + } + ], + "Badge": [ { - "filePath": "src/course-home/progress-tab/credit-information/CreditInformation.jsx", - "line": 76, - "column": 84, - "index": 2810 + "filePath": "src/components/catalogSearchResults/associatedComponents/catalogBadges/CatalogBadges.jsx", + "line": 15, + "column": 8, + "index": 470 }, { - "filePath": "src/course-home/progress-tab/credit-information/CreditInformation.jsx", - "line": 80, - "column": 81, - "index": 3038 + "filePath": "src/components/catalogSearchResults/associatedComponents/catalogBadges/CatalogBadges.jsx", + "line": 22, + "column": 8, + "index": 756 }, { - "filePath": "src/course-home/progress-tab/credit-information/CreditInformation.jsx", - "line": 83, - "column": 72, - "index": 3222 + "filePath": "src/components/catalogSearchResults/CatalogSearchResults.jsx", + "line": 442, + "column": 12, + "index": 13025 }, { - "filePath": "src/course-home/progress-tab/credit-information/CreditInformation.jsx", - "line": 86, - "column": 71, - "index": 3411 + "filePath": "src/components/courseCard/CourseCard.jsx", + "line": 55, + "column": 12, + "index": 1664 }, { - "filePath": "src/course-home/progress-tab/grades/course-grade/CourseGradeFooter.jsx", - "line": 52, - "column": 27, - "index": 1758 + "filePath": "src/components/courseCard/CourseCard.jsx", + "line": 62, + "column": 12, + "index": 1961 }, { - "filePath": "src/course-home/progress-tab/grades/course-grade/CourseGradeFooter.jsx", - "line": 53, - "column": 6, - "index": 1847 + "filePath": "src/components/programCard/ProgramCard.jsx", + "line": 56, + "column": 10, + "index": 1736 }, { - "filePath": "src/course-home/progress-tab/grades/course-grade/CourseGradeHeader.jsx", - "line": 58, + "filePath": "src/components/programCard/ProgramCard.jsx", + "line": 69, "column": 12, - "index": 1903 + "index": 2170 }, { - "filePath": "src/course-home/progress-tab/grades/course-grade/GradeRangeTooltip.jsx", - "line": 69, - "column": 16, - "index": 2155 - }, + "filePath": "src/components/programCard/ProgramCard.jsx", + "line": 74, + "column": 12, + "index": 2393 + } + ], + "useToggle": [ { - "filePath": "src/course-home/progress-tab/grades/detailed-grades/DetailedGrades.jsx", - "line": 60, - "column": 10, - "index": 1856 - }, + "filePath": "src/components/catalogSearchResults/associatedComponents/downloadCsvButton/DownloadCsvButton.jsx", + "line": 10, + "column": 32, + "index": 372 + } + ], + "Toast": [ { - "filePath": "src/course-home/progress-tab/grades/detailed-grades/SubsectionTitleCell.jsx", - "line": 53, - "column": 42, - "index": 1642 - }, + "filePath": "src/components/catalogSearchResults/associatedComponents/downloadCsvButton/DownloadCsvButton.jsx", + "line": 36, + "column": 8, + "index": 1151 + } + ], + "Download": [ { - "filePath": "src/course-home/progress-tab/grades/detailed-grades/SubsectionTitleCell.jsx", - "line": 54, - "column": 40, - "index": 1733 - }, + "filePath": "src/components/catalogSearchResults/associatedComponents/downloadCsvButton/DownloadCsvButton.jsx", + "line": 42, + "column": 20, + "index": 1312 + } + ], + "Skeleton": [ { - "filePath": "src/course-home/progress-tab/grades/detailed-grades/SubsectionTitleCell.jsx", - "line": 59, - "column": 14, - "index": 1969 - }, + "filePath": "src/components/catalogSearchResults/CatalogSearchResults.jsx", + "line": 392, + "column": 8, + "index": 11479 + } + ], + "DataTable.TableControlBar": [ { - "filePath": "src/course-home/progress-tab/grades/detailed-grades/SubsectionTitleCell.jsx", - "line": 88, - "column": 16, - "index": 3082 - }, + "filePath": "src/components/catalogSearchResults/CatalogSearchResults.jsx", + "line": 495, + "column": 12, + "index": 14945 + } + ], + "DataTable.Table": [ { - "filePath": "src/course-home/progress-tab/grades/grade-summary/AssignmentTypeCell.jsx", - "line": 21, - "column": 30, - "index": 635 - }, + "filePath": "src/components/catalogSearchResults/CatalogSearchResults.jsx", + "line": 508, + "column": 26, + "index": 15330 + } + ], + "DataTable.TableFooter": [ { - "filePath": "src/course-home/progress-tab/grades/grade-summary/GradeSummaryHeader.jsx", - "line": 43, - "column": 18, - "index": 1442 - }, + "filePath": "src/components/catalogSearchResults/CatalogSearchResults.jsx", + "line": 511, + "column": 14, + "index": 15393 + } + ], + "useMediaQuery": [ { - "filePath": "src/course-home/progress-tab/grades/grade-summary/GradeSummaryHeader.jsx", - "line": 51, - "column": 10, - "index": 1714 + "filePath": "src/components/catalogSelectionDeck/CatalogSelectionDeck.jsx", + "line": 26, + "column": 23, + "index": 931 }, { - "filePath": "src/courseware/course/celebration/WeeklyGoalCelebrationModal.jsx", - "line": 56, - "column": 10, - "index": 1946 + "filePath": "src/components/hero/Hero.jsx", + "line": 43, + "column": 20, + "index": 1256 }, { - "filePath": "src/courseware/course/share/ShareButton.jsx", - "line": 39, - "column": 6, - "index": 901 - }, + "filePath": "src/components/hero/Hero.jsx", + "line": 54, + "column": 19, + "index": 1546 + } + ], + "breakpoints": [ { - "filePath": "src/courseware/course/sidebar/common/SidebarBase.jsx", - "line": 57, - "column": 10, - "index": 1850 + "filePath": "src/components/catalogSelectionDeck/CatalogSelectionDeck.jsx", + "line": 26, + "column": 49, + "index": 957 }, { - "filePath": "src/courseware/course/sidebar/common/SidebarBase.jsx", - "line": 74, - "column": 28, - "index": 2487 + "filePath": "src/components/hero/Hero.jsx", + "line": 43, + "column": 46, + "index": 1282 }, { - "filePath": "src/courseware/course/sidebar/sidebars/discussions/DiscussionsTrigger.jsx", - "line": 47, - "column": 6, - "index": 1551 + "filePath": "src/components/hero/Hero.jsx", + "line": 55, + "column": 14, + "index": 1576 }, { - "filePath": "src/courseware/course/sidebar/sidebars/notifications/NotificationIcon.jsx", - "line": 16, + "filePath": "src/components/hero/Hero.jsx", + "line": 56, + "column": 14, + "index": 1619 + } + ], + "Container": [ + { + "filePath": "src/components/catalogSelectionDeck/CatalogSelectionDeck.jsx", + "line": 35, "column": 4, - "index": 385 + "index": 1160 }, { - "filePath": "src/product-tours/newUserCourseHomeTour/LaunchCourseHomeTourButton.jsx", - "line": 48, - "column": 12, - "index": 1437 + "filePath": "src/components/hero/Hero.jsx", + "line": 73, + "column": 6, + "index": 1994 }, { - "filePath": "src/shared/streak-celebration/StreakCelebrationModal.jsx", - "line": 174, - "column": 12, - "index": 6888 + "filePath": "src/components/PageWrapper.jsx", + "line": 11, + "column": 2, + "index": 321 }, { - "filePath": "src/shared/streak-celebration/StreakCelebrationModal.jsx", - "line": 183, - "column": 14, - "index": 7220 + "filePath": "src/components/subheader/subheader.jsx", + "line": 7, + "column": 4, + "index": 171 } ], - "ArrowForward": [ + "SelectableBox.Set": [ { - "filePath": "src/alerts/logistration-alert/AccountActivationAlert.jsx", - "line": 55, - "column": 17, - "index": 1829 + "filePath": "src/components/catalogSelectionDeck/CatalogSelectionDeck.jsx", + "line": 37, + "column": 6, + "index": 1254 } ], - "Spinner": [ + "SelectableBox": [ { - "filePath": "src/alerts/logistration-alert/AccountActivationAlert.jsx", - "line": 92, - "column": 10, - "index": 3066 + "filePath": "src/components/catalogSelectionDeck/CatalogSelectionDeck.jsx", + "line": 45, + "column": 8, + "index": 1461 }, { - "filePath": "src/course-home/courseware-search/CoursewareSearch.jsx", - "line": 115, - "column": 14, - "index": 3548 - }, + "filePath": "src/components/catalogSelectionDeck/CatalogSelectionDeck.jsx", + "line": 55, + "column": 8, + "index": 2088 + } + ], + "Card.ImageCap": [ { - "filePath": "src/generic/PageLoading.jsx", - "line": 28, - "column": 10, - "index": 571 + "filePath": "src/components/courseCard/CourseCard.jsx", + "line": 39, + "column": 6, + "index": 1123 }, { - "filePath": "src/shared/streak-celebration/StreakCelebrationModal.jsx", - "line": 170, - "column": 10, - "index": 6716 + "filePath": "src/components/programCard/ProgramCard.jsx", + "line": 40, + "column": 6, + "index": 1190 } ], - "Check": [ + "Card.Header": [ { - "filePath": "src/alerts/logistration-alert/AccountActivationAlert.jsx", - "line": 106, - "column": 17, - "index": 3366 + "filePath": "src/components/courseCard/CourseCard.jsx", + "line": 45, + "column": 6, + "index": 1283 + }, + { + "filePath": "src/components/programCard/ProgramCard.jsx", + "line": 46, + "column": 6, + "index": 1388 } ], - "AlertModal": [ + "Program": [ { - "filePath": "src/alerts/logistration-alert/AccountActivationAlert.jsx", - "line": 117, - "column": 4, - "index": 3591 + "filePath": "src/components/programCard/ProgramCard.jsx", + "line": 60, + "column": 23, + "index": 1882 } - ], - "Tabs": [ + ] + } + }, + { + "version": "22.8.1", + "name": "@edx/frontend-app-gradebook", + "repository": { + "type": "git", + "url": "git+https://github.com/openedx/frontend-app-gradebook.git" + }, + "folderName": "frontend-app-gradebook", + "usages": { + "Alert": [ { - "filePath": "src/course-home/courseware-search/CoursewareResultsFilter.jsx", - "line": 49, + "filePath": "src/components/BulkManagementHistoryView/BulkManagementAlerts.jsx", + "line": 21, "column": 4, - "index": 1636 - } - ], - "Tab": [ + "index": 532 + }, { - "filePath": "src/course-home/courseware-search/CoursewareResultsFilter.jsx", - "line": 58, - "column": 8, - "index": 1915 - } - ], - "Close": [ + "filePath": "src/components/BulkManagementHistoryView/BulkManagementAlerts.jsx", + "line": 28, + "column": 4, + "index": 666 + }, { - "filePath": "src/course-home/courseware-search/CoursewareSearch.jsx", - "line": 101, - "column": 20, - "index": 2933 + "filePath": "src/components/GradesView/EditModal/index.jsx", + "line": 46, + "column": 10, + "index": 1170 }, { - "filePath": "src/courseware/course/sidebar/common/SidebarBase.jsx", - "line": 72, - "column": 25, - "index": 2422 + "filePath": "src/components/GradesView/StatusAlerts/index.jsx", + "line": 15, + "column": 6, + "index": 251 + }, + { + "filePath": "src/components/GradesView/StatusAlerts/index.jsx", + "line": 22, + "column": 6, + "index": 416 } ], - "SearchField.Advanced": [ + "DataTable": [ { - "filePath": "src/course-home/courseware-search/CoursewareSearchForm.jsx", - "line": 14, + "filePath": "src/components/BulkManagementHistoryView/HistoryTable.jsx", + "line": 33, "column": 2, - "index": 315 - } - ], - "SearchField.Label": [ + "index": 907 + }, { - "filePath": "src/course-home/courseware-search/CoursewareSearchForm.jsx", - "line": 27, - "column": 6, - "index": 805 - } - ], - "SearchField.Input": [ + "filePath": "src/components/GradesView/EditModal/OverrideTable/index.jsx", + "line": 33, + "column": 4, + "index": 830 + }, { - "filePath": "src/course-home/courseware-search/CoursewareSearchForm.jsx", - "line": 28, + "filePath": "src/components/GradesView/GradebookTable/index.jsx", + "line": 24, "column": 6, - "index": 833 + "index": 577 } ], - "SearchField.ClearButton": [ + "Hyperlink": [ { - "filePath": "src/course-home/courseware-search/CoursewareSearchForm.jsx", - "line": 29, + "filePath": "src/components/BulkManagementHistoryView/ResultsSummary.jsx", + "line": 21, + "column": 2, + "index": 603 + }, + { + "filePath": "src/components/EdxHeader/index.jsx", + "line": 13, "column": 6, - "index": 897 + "index": 380 } ], - "SearchField.SubmitButton": [ + "Icon": [ { - "filePath": "src/course-home/courseware-search/CoursewareSearchForm.jsx", - "line": 31, + "filePath": "src/components/BulkManagementHistoryView/ResultsSummary.jsx", + "line": 28, "column": 4, - "index": 940 - } - ], - "Search": [ - { - "filePath": "src/course-home/courseware-search/CoursewareSearchToggle.jsx", - "line": 37, - "column": 19, - "index": 1155 - } - ], - "Badge": [ + "index": 775 + }, { - "filePath": "src/course-home/dates-tab/timeline/badgelist.jsx", - "line": 99, - "column": 10, - "index": 3025 - } - ], - "OverlayTrigger": [ + "filePath": "src/components/GradebookFilters/index.jsx", + "line": 31, + "column": 12, + "index": 950 + }, { - "filePath": "src/course-home/dates-tab/timeline/Day.jsx", - "line": 89, + "filePath": "src/components/GradebookFilters/index.jsx", + "line": 35, "column": 18, - "index": 3153 + "index": 1083 }, { - "filePath": "src/course-home/progress-tab/course-completion/CompleteDonutSegment.jsx", - "line": 32, + "filePath": "src/components/GradesView/FilterMenuToggle/index.jsx", + "line": 24, "column": 6, - "index": 1006 + "index": 746 }, { - "filePath": "src/course-home/progress-tab/course-completion/IncompleteDonutSegment.jsx", - "line": 36, - "column": 6, - "index": 1065 + "filePath": "src/components/GradesView/GradebookTable/LabelReplacements.jsx", + "line": 38, + "column": 12, + "index": 1047 }, { - "filePath": "src/course-home/progress-tab/course-completion/LockedDonutSegment.jsx", - "line": 35, + "filePath": "src/components/GradesView/SpinnerIcon.jsx", + "line": 16, "column": 6, - "index": 997 + "index": 406 }, { - "filePath": "src/course-home/progress-tab/grades/course-grade/CurrentGradeTooltip.jsx", - "line": 38, - "column": 6, - "index": 864 + "filePath": "src/components/NetworkButton/index.jsx", + "line": 42, + "column": 16, + "index": 1632 }, { - "filePath": "src/course-home/progress-tab/grades/course-grade/GradeRangeTooltip.jsx", - "line": 33, - "column": 4, - "index": 882 + "filePath": "src/components/NetworkButton/index.jsx", + "line": 43, + "column": 16, + "index": 1715 }, { - "filePath": "src/course-home/progress-tab/grades/course-grade/PassingGradeTooltip.jsx", - "line": 22, - "column": 6, - "index": 536 + "filePath": "src/components/NetworkButton/test.jsx", + "line": 54, + "column": 20, + "index": 1683 }, { - "filePath": "src/course-home/progress-tab/grades/grade-summary/GradeSummaryHeader.jsx", - "line": 26, - "column": 6, - "index": 864 - } - ], - "Tooltip": [ - { - "filePath": "src/course-home/dates-tab/timeline/Day.jsx", - "line": 92, - "column": 22, - "index": 3260 - } - ], - "Alert.Heading": [ - { - "filePath": "src/course-home/outline-tab/alerts/certificate-status-alert/CertificateStatusAlert.jsx", - "line": 170, - "column": 14, - "index": 6125 + "filePath": "src/components/NetworkButton/test.jsx", + "line": 55, + "column": 20, + "index": 1753 }, { - "filePath": "src/course-home/outline-tab/alerts/scheduled-content-alert/ScheduledCotentAlert.jsx", - "line": 15, - "column": 10, - "index": 448 + "filePath": "src/components/NetworkButton/test.jsx", + "line": 63, + "column": 20, + "index": 2098 }, { - "filePath": "src/course-home/suggested-schedule-messaging/UpgradeToCompleteAlert.jsx", - "line": 39, - "column": 10, - "index": 924 + "filePath": "src/components/NetworkButton/test.jsx", + "line": 64, + "column": 20, + "index": 2168 } ], - "Collapsible": [ + "Download": [ { - "filePath": "src/course-home/outline-tab/Section.jsx", - "line": 76, - "column": 6, - "index": 2108 + "filePath": "src/components/BulkManagementHistoryView/ResultsSummary.jsx", + "line": 28, + "column": 15, + "index": 786 } ], - "IconButton": [ + "Button": [ { - "filePath": "src/course-home/outline-tab/Section.jsx", - "line": 83, - "column": 10, - "index": 2302 + "filePath": "src/components/GradebookFilters/AssignmentGradeFilter/index.jsx", + "line": 38, + "column": 8, + "index": 1133 }, { - "filePath": "src/course-home/outline-tab/Section.jsx", - "line": 91, + "filePath": "src/components/GradebookFilters/CourseGradeFilter/index.jsx", + "line": 36, + "column": 8, + "index": 965 + }, + { + "filePath": "src/components/GradebookHeader/index.jsx", + "line": 31, "column": 10, - "index": 2526 + "index": 1016 }, { - "filePath": "src/course-home/progress-tab/grades/course-grade/GradeRangeTooltip.jsx", - "line": 63, - "column": 6, - "index": 1883 + "filePath": "src/components/GradesView/EditModal/index.jsx", + "line": 60, + "column": 10, + "index": 1656 }, { - "filePath": "src/course-home/progress-tab/grades/grade-summary/GradeSummaryHeader.jsx", - "line": 38, + "filePath": "src/components/GradesView/FilterBadges/FilterBadge.jsx", + "line": 39, "column": 8, - "index": 1204 + "index": 1114 }, { - "filePath": "src/courseware/course/sidebar/common/SidebarBase.jsx", - "line": 71, - "column": 18, - "index": 2385 - } - ], - "Card": [ - { - "filePath": "src/course-home/outline-tab/widgets/StartOrResumeCourseCard.jsx", - "line": 44, + "filePath": "src/components/GradesView/FilterMenuToggle/index.jsx", + "line": 19, "column": 4, - "index": 1038 + "index": 618 }, { - "filePath": "src/course-home/outline-tab/widgets/WeeklyLearningGoalCard.jsx", - "line": 91, - "column": 4, - "index": 3221 + "filePath": "src/components/GradesView/GradebookTable/GradeButton.jsx", + "line": 47, + "column": 6, + "index": 1339 }, { - "filePath": "src/course-home/progress-tab/certificate-status/CertificateStatus.jsx", - "line": 238, + "filePath": "src/components/GradesView/PageButtons/index.jsx", + "line": 15, "column": 6, - "index": 8403 + "index": 318 }, { - "filePath": "src/courseware/course/course-exit/CourseRecommendations.jsx", - "line": 106, + "filePath": "src/components/GradesView/PageButtons/index.jsx", + "line": 23, + "column": 6, + "index": 509 + } + ], + "IconButton": [ + { + "filePath": "src/components/GradebookFilters/index.jsx", + "line": 32, "column": 8, - "index": 3580 + "index": 997 } ], - "Card.Header": [ + "Close": [ { - "filePath": "src/course-home/outline-tab/widgets/StartOrResumeCourseCard.jsx", - "line": 45, + "filePath": "src/components/GradebookFilters/index.jsx", + "line": 36, + "column": 15, + "index": 1104 + } + ], + "Collapsible": [ + { + "filePath": "src/components/GradebookFilters/index.jsx", + "line": 42, "column": 6, - "index": 1112 + "index": 1255 }, { - "filePath": "src/course-home/outline-tab/widgets/WeeklyLearningGoalCard.jsx", - "line": 96, + "filePath": "src/components/GradebookFilters/index.jsx", + "line": 54, "column": 6, - "index": 3375 + "index": 1662 }, { - "filePath": "src/course-home/progress-tab/certificate-status/CertificateStatus.jsx", - "line": 239, - "column": 8, - "index": 8455 + "filePath": "src/components/GradebookFilters/index.jsx", + "line": 62, + "column": 6, + "index": 1893 }, { - "filePath": "src/courseware/course/course-exit/CourseRecommendations.jsx", - "line": 108, - "column": 10, - "index": 3696 - } - ], - "Card.Footer": [ - { - "filePath": "src/course-home/outline-tab/widgets/StartOrResumeCourseCard.jsx", - "line": 60, + "filePath": "src/components/GradebookFilters/index.jsx", + "line": 70, "column": 6, - "index": 1750 - }, + "index": 2127 + } + ], + "Form.Checkbox": [ { - "filePath": "src/course-home/progress-tab/certificate-status/CertificateStatus.jsx", - "line": 243, + "filePath": "src/components/GradebookFilters/index.jsx", + "line": 75, "column": 8, - "index": 8590 - }, - { - "filePath": "src/courseware/course/course-exit/CourseRecommendations.jsx", - "line": 111, - "column": 10, - "index": 3962 + "index": 2282 } ], - "Card.Section": [ + "Form.Group": [ { - "filePath": "src/course-home/outline-tab/widgets/WeeklyLearningGoalCard.jsx", - "line": 101, - "column": 6, - "index": 3591 + "filePath": "src/components/GradebookFilters/PercentGroup.jsx", + "line": 15, + "column": 4, + "index": 261 }, { - "filePath": "src/course-home/outline-tab/widgets/WeeklyLearningGoalCard.jsx", - "line": 134, - "column": 8, - "index": 4683 + "filePath": "src/components/GradebookFilters/SelectGroup.jsx", + "line": 16, + "column": 4, + "index": 296 }, { - "filePath": "src/course-home/progress-tab/certificate-status/CertificateStatus.jsx", - "line": 240, + "filePath": "src/components/GradesView/ImportGradesButton/index.jsx", + "line": 28, "column": 8, - "index": 8494 + "index": 786 }, { - "filePath": "src/courseware/course/course-exit/CourseRecommendations.jsx", - "line": 110, - "column": 10, - "index": 3915 + "filePath": "src/components/GradesView/ScoreViewInput/index.jsx", + "line": 18, + "column": 4, + "index": 532 } ], - "Form.Switch": [ + "Form.Label": [ { - "filePath": "src/course-home/outline-tab/widgets/WeeklyLearningGoalCard.jsx", - "line": 124, - "column": 10, - "index": 4328 - } - ], - "Email": [ + "filePath": "src/components/GradebookFilters/PercentGroup.jsx", + "line": 16, + "column": 6, + "index": 295 + }, { - "filePath": "src/course-home/outline-tab/widgets/WeeklyLearningGoalCard.jsx", - "line": 139, - "column": 21, - "index": 4912 - } - ], - "TransitionReplace": [ + "filePath": "src/components/GradebookFilters/SelectGroup.jsx", + "line": 17, + "column": 6, + "index": 330 + }, { - "filePath": "src/course-home/outline-tab/widgets/WelcomeMessage.jsx", - "line": 52, + "filePath": "src/components/GradesView/ScoreViewInput/index.jsx", + "line": 19, "column": 6, - "index": 1694 + "index": 573 } ], - "Popover": [ - { - "filePath": "src/course-home/progress-tab/course-completion/CompleteDonutSegment.jsx", - "line": 36, - "column": 10, - "index": 1110 - }, + "Form.Control": [ { - "filePath": "src/course-home/progress-tab/course-completion/IncompleteDonutSegment.jsx", - "line": 40, - "column": 10, - "index": 1171 + "filePath": "src/components/GradebookFilters/PercentGroup.jsx", + "line": 17, + "column": 6, + "index": 334 }, { - "filePath": "src/course-home/progress-tab/course-completion/LockedDonutSegment.jsx", - "line": 39, - "column": 10, - "index": 1099 + "filePath": "src/components/GradebookFilters/SelectGroup.jsx", + "line": 18, + "column": 6, + "index": 369 }, { - "filePath": "src/course-home/progress-tab/grades/course-grade/CurrentGradeTooltip.jsx", - "line": 42, - "column": 10, - "index": 946 + "filePath": "src/components/GradesView/EditModal/OverrideTable/AdjustedGradeInput/index.jsx", + "line": 20, + "column": 6, + "index": 429 }, { - "filePath": "src/course-home/progress-tab/grades/course-grade/GradeRangeTooltip.jsx", - "line": 38, - "column": 8, - "index": 992 + "filePath": "src/components/GradesView/EditModal/OverrideTable/ReasonInput/index.jsx", + "line": 16, + "column": 4, + "index": 371 }, { - "filePath": "src/course-home/progress-tab/grades/course-grade/PassingGradeTooltip.jsx", - "line": 26, + "filePath": "src/components/GradesView/ImportGradesButton/index.jsx", + "line": 29, "column": 10, - "index": 621 + "index": 825 }, { - "filePath": "src/course-home/progress-tab/grades/grade-summary/GradeSummaryHeader.jsx", - "line": 31, - "column": 10, - "index": 984 + "filePath": "src/components/GradesView/ScoreViewInput/index.jsx", + "line": 20, + "column": 6, + "index": 641 } ], - "Popover.Content": [ + "ModalDialog": [ { - "filePath": "src/course-home/progress-tab/course-completion/CompleteDonutSegment.jsx", - "line": 37, - "column": 12, - "index": 1151 - }, + "filePath": "src/components/GradesView/EditModal/index.jsx", + "line": 35, + "column": 4, + "index": 921 + } + ], + "ModalDialog.Body": [ { - "filePath": "src/course-home/progress-tab/course-completion/IncompleteDonutSegment.jsx", - "line": 41, - "column": 12, - "index": 1212 - }, + "filePath": "src/components/GradesView/EditModal/index.jsx", + "line": 43, + "column": 6, + "index": 1100 + } + ], + "ModalDialog.Footer": [ { - "filePath": "src/course-home/progress-tab/course-completion/LockedDonutSegment.jsx", - "line": 40, - "column": 12, - "index": 1140 - }, + "filePath": "src/components/GradesView/EditModal/index.jsx", + "line": 55, + "column": 6, + "index": 1465 + } + ], + "ActionRow": [ { - "filePath": "src/course-home/progress-tab/grades/course-grade/CurrentGradeTooltip.jsx", - "line": 43, - "column": 12, - "index": 1078 - }, + "filePath": "src/components/GradesView/EditModal/index.jsx", + "line": 56, + "column": 8, + "index": 1494 + } + ], + "ModalDialog.CloseButton": [ { - "filePath": "src/course-home/progress-tab/grades/course-grade/GradeRangeTooltip.jsx", - "line": 39, + "filePath": "src/components/GradesView/EditModal/index.jsx", + "line": 57, "column": 10, - "index": 1012 + "index": 1516 + } + ], + "Form": [ + { + "filePath": "src/components/GradesView/EditModal/OverrideTable/AdjustedGradeInput/index.test.jsx", + "line": 32, + "column": 45, + "index": 875 }, { - "filePath": "src/course-home/progress-tab/grades/course-grade/PassingGradeTooltip.jsx", + "filePath": "src/components/GradesView/EditModal/OverrideTable/ReasonInput/index.test.jsx", + "line": 32, + "column": 45, + "index": 830 + }, + { + "filePath": "src/components/GradesView/ImportGradesButton/index.jsx", "line": 27, - "column": 12, - "index": 738 + "column": 6, + "index": 733 }, { - "filePath": "src/course-home/progress-tab/grades/grade-summary/GradeSummaryHeader.jsx", + "filePath": "src/components/GradesView/ImportGradesButton/index.test.jsx", + "line": 40, + "column": 36, + "index": 1442 + } + ], + "FilterAlt": [ + { + "filePath": "src/components/GradesView/FilterMenuToggle/index.jsx", + "line": 24, + "column": 17, + "index": 757 + } + ], + "DataTable.TableControlBar": [ + { + "filePath": "src/components/GradesView/GradebookTable/index.jsx", "line": 32, - "column": 12, - "index": 1006 + "column": 8, + "index": 791 } ], - "CheckCircle": [ + "DataTable.Table": [ { - "filePath": "src/course-home/progress-tab/credit-information/CreditInformation.jsx", - "line": 76, - "column": 95, - "index": 2821 - }, + "filePath": "src/components/GradesView/GradebookTable/index.jsx", + "line": 33, + "column": 8, + "index": 829 + } + ], + "DataTable.EmptyTable": [ { - "filePath": "src/course-home/progress-tab/credit-information/CreditInformation.jsx", - "line": 83, - "column": 83, - "index": 3233 - }, + "filePath": "src/components/GradesView/GradebookTable/index.jsx", + "line": 34, + "column": 8, + "index": 857 + } + ], + "OverlayTrigger": [ { - "filePath": "src/course-home/progress-tab/grades/course-grade/CourseGradeFooter.jsx", - "line": 52, - "column": 38, - "index": 1769 - }, + "filePath": "src/components/GradesView/GradebookTable/LabelReplacements.jsx", + "line": 25, + "column": 6, + "index": 623 + } + ], + "Tooltip": [ { - "filePath": "src/courseware/course/course-exit/CourseCelebration.jsx", - "line": 317, - "column": 41, - "index": 12690 + "filePath": "src/components/GradesView/GradebookTable/LabelReplacements.jsx", + "line": 30, + "column": 10, + "index": 788 } ], - "WatchFilled": [ + "Toast": [ { - "filePath": "src/course-home/progress-tab/credit-information/CreditInformation.jsx", + "filePath": "src/components/GradesView/ImportSuccessToast/index.jsx", + "line": 20, + "column": 4, + "index": 426 + } + ], + "SearchField": [ + { + "filePath": "src/components/GradesView/SearchControls/index.jsx", + "line": 22, + "column": 6, + "index": 525 + } + ], + "StatefulButton": [ + { + "filePath": "src/components/NetworkButton/index.jsx", + "line": 53, + "column": 6, + "index": 1925 + } + ] + } + }, + { + "version": "22.9.0", + "name": "@edx/frontend-app-learner-dashboard", + "repository": { + "type": "git", + "url": "git+https://github.com/edx/frontend-app-learner-dashboard.git" + }, + "folderName": "frontend-app-learner-dashboard", + "usages": { + "Alert": [ + { + "filePath": "src/App.jsx", "line": 86, - "column": 82, - "index": 3422 + "column": 16, + "index": 2721 + }, + { + "filePath": "src/components/Banner.jsx", + "line": 10, + "column": 2, + "index": 227 } ], "useWindowSize": [ { - "filePath": "src/course-home/progress-tab/grades/course-grade/CourseGradeFooter.jsx", - "line": 28, - "column": 21, - "index": 762 + "filePath": "src/containers/CourseCard/components/CourseCardActions/ActionButton/hooks.js", + "line": 4, + "column": 20, + "index": 122 }, { - "filePath": "src/course-home/progress-tab/ProgressTab.jsx", - "line": 26, - "column": 22, - "index": 932 + "filePath": "src/containers/CourseCard/components/CourseCardActions/ActionButton/hooks.test.js", + "line": 14, + "column": 4, + "index": 476 }, { - "filePath": "src/courseware/course/celebration/CelebrationModal.jsx", - "line": 25, - "column": 21, - "index": 815 + "filePath": "src/containers/CourseCard/components/CourseCardActions/ActionButton/hooks.test.js", + "line": 16, + "column": 4, + "index": 599 }, { - "filePath": "src/courseware/course/course-exit/CourseCelebration.jsx", - "line": 40, - "column": 21, - "index": 1668 + "filePath": "src/containers/CourseCard/components/CourseCardActions/ActionButton/hooks.test.js", + "line": 18, + "column": 4, + "index": 722 }, { - "filePath": "src/courseware/course/Course.jsx", - "line": 141, - "column": 22, - "index": 4825 + "filePath": "src/containers/CourseCard/hooks.js", + "line": 6, + "column": 20, + "index": 213 }, { - "filePath": "src/courseware/course/sequence/lock-paywall/LockPaywall.jsx", - "line": 40, - "column": 52, - "index": 1391 + "filePath": "src/containers/CourseFilterControls/CourseFilterControls.jsx", + "line": 45, + "column": 20, + "index": 930 }, { - "filePath": "src/courseware/course/sequence/lock-paywall/LockPaywall.jsx", + "filePath": "src/containers/CourseFilterControls/CourseFilterControls.test.jsx", "line": 41, - "column": 45, - "index": 1489 + "column": 6, + "index": 1240 }, { - "filePath": "src/courseware/course/sequence/lock-paywall/LockPaywall.jsx", - "line": 43, - "column": 46, - "index": 1624 + "filePath": "src/containers/CourseFilterControls/CourseFilterControls.test.jsx", + "line": 48, + "column": 6, + "index": 1510 }, { - "filePath": "src/courseware/course/sequence/lock-paywall/LockPaywall.jsx", - "line": 45, - "column": 50, - "index": 1757 + "filePath": "src/containers/CourseFilterControls/CourseFilterControls.test.jsx", + "line": 55, + "column": 6, + "index": 1791 }, { - "filePath": "src/courseware/course/sequence/lock-paywall/LockPaywall.jsx", - "line": 47, - "column": 33, - "index": 1875 + "filePath": "src/containers/CoursesPanel/CourseList/hooks.js", + "line": 4, + "column": 20, + "index": 122 }, { - "filePath": "src/courseware/course/sequence/sequence-navigation/SequenceNavigation.jsx", - "line": 45, - "column": 53, - "index": 1361 + "filePath": "src/containers/Dashboard/hooks.js", + "line": 28, + "column": 20, + "index": 858 }, { - "filePath": "src/courseware/course/sequence/Sequence.jsx", - "line": 46, - "column": 53, - "index": 1701 + "filePath": "src/containers/Dashboard/hooks.test.js", + "line": 27, + "column": 0, + "index": 604 }, { - "filePath": "src/courseware/course/sidebar/SidebarContextProvider.jsx", - "line": 19, - "column": 34, - "index": 565 + "filePath": "src/containers/Dashboard/hooks.test.js", + "line": 52, + "column": 10, + "index": 1482 }, { - "filePath": "src/courseware/course/sidebar/SidebarContextProvider.jsx", - "line": 20, - "column": 35, - "index": 652 + "filePath": "src/containers/LearnerDashboardHeader/hooks.js", + "line": 17, + "column": 20, + "index": 516 }, { - "filePath": "src/generic/tabs/useIndexOfLastVisibleChild.js", - "line": 37, - "column": 21, - "index": 1678 + "filePath": "src/containers/LearnerDashboardHeader/hooks.test.js", + "line": 34, + "column": 6, + "index": 776 }, { - "filePath": "src/shared/streak-celebration/StreakCelebrationModal.jsx", - "line": 76, - "column": 21, - "index": 3230 + "filePath": "src/containers/LearnerDashboardHeader/hooks.test.js", + "line": 38, + "column": 6, + "index": 961 } ], "breakpoints": [ { - "filePath": "src/course-home/progress-tab/grades/course-grade/CourseGradeFooter.jsx", - "line": 28, - "column": 46, - "index": 787 - }, - { - "filePath": "src/course-home/progress-tab/ProgressTab.jsx", - "line": 34, - "column": 36, - "index": 1336 + "filePath": "src/containers/CourseCard/components/CourseCardActions/ActionButton/hooks.js", + "line": 5, + "column": 17, + "index": 156 }, { - "filePath": "src/course-home/progress-tab/ProgressTab.test.jsx", - "line": 828, - "column": 26, - "index": 30183 + "filePath": "src/containers/CourseCard/components/CourseCardActions/ActionButton/hooks.js", + "line": 5, + "column": 56, + "index": 195 }, { - "filePath": "src/courseware/course/celebration/CelebrationModal.jsx", - "line": 25, - "column": 46, - "index": 840 + "filePath": "src/containers/CourseCard/components/CourseCardActions/ActionButton/hooks.test.js", + "line": 8, + "column": 7, + "index": 294 }, { - "filePath": "src/courseware/course/course-exit/CourseCelebration.jsx", - "line": 40, - "column": 46, - "index": 1693 + "filePath": "src/containers/CourseCard/components/CourseCardActions/ActionButton/hooks.test.js", + "line": 9, + "column": 9, + "index": 335 }, { - "filePath": "src/courseware/course/Course.jsx", - "line": 53, - "column": 47, - "index": 1934 + "filePath": "src/containers/CourseCard/components/CourseCardActions/ActionButton/hooks.test.js", + "line": 10, + "column": 10, + "index": 378 }, { - "filePath": "src/courseware/course/Course.test.jsx", - "line": 46, - "column": 24, - "index": 1665 + "filePath": "src/containers/CourseCard/components/CourseCardActions/ActionButton/hooks.test.js", + "line": 11, + "column": 9, + "index": 420 }, { - "filePath": "src/courseware/course/sequence/lock-paywall/LockPaywall.jsx", - "line": 40, - "column": 77, - "index": 1416 + "filePath": "src/containers/CourseCard/components/CourseCardActions/ActionButton/hooks.test.js", + "line": 14, + "column": 43, + "index": 515 }, { - "filePath": "src/courseware/course/sequence/lock-paywall/LockPaywall.jsx", - "line": 41, - "column": 70, - "index": 1514 + "filePath": "src/containers/CourseCard/components/CourseCardActions/ActionButton/hooks.test.js", + "line": 16, + "column": 43, + "index": 638 }, { - "filePath": "src/courseware/course/sequence/lock-paywall/LockPaywall.jsx", - "line": 43, - "column": 70, - "index": 1648 + "filePath": "src/containers/CourseCard/components/CourseCardActions/ActionButton/hooks.test.js", + "line": 18, + "column": 43, + "index": 761 }, { - "filePath": "src/courseware/course/sequence/lock-paywall/LockPaywall.jsx", - "line": 45, - "column": 75, - "index": 1782 + "filePath": "src/containers/CourseCard/hooks.js", + "line": 7, + "column": 17, + "index": 247 }, { - "filePath": "src/courseware/course/sequence/lock-paywall/LockPaywall.jsx", - "line": 47, - "column": 57, - "index": 1899 + "filePath": "src/containers/CourseFilterControls/CourseFilterControls.jsx", + "line": 46, + "column": 27, + "index": 974 }, { - "filePath": "src/courseware/course/sequence/sequence-navigation/SequenceNavigation.jsx", + "filePath": "src/containers/CourseFilterControls/CourseFilterControls.test.jsx", + "line": 41, + "column": 49, + "index": 1283 + }, + { + "filePath": "src/containers/CourseFilterControls/CourseFilterControls.test.jsx", + "line": 48, + "column": 49, + "index": 1553 + }, + { + "filePath": "src/containers/CourseFilterControls/CourseFilterControls.test.jsx", + "line": 55, + "column": 49, + "index": 1834 + }, + { + "filePath": "src/containers/CoursesPanel/CourseList/hooks.js", + "line": 5, + "column": 17, + "index": 156 + }, + { + "filePath": "src/containers/Dashboard/hooks.js", + "line": 32, + "column": 34, + "index": 1002 + }, + { + "filePath": "src/containers/Dashboard/hooks.test.js", + "line": 28, + "column": 0, + "index": 650 + }, + { + "filePath": "src/containers/LearnerDashboardHeader/hooks.js", + "line": 18, + "column": 52, + "index": 585 + }, + { + "filePath": "src/containers/LearnerDashboardHeader/hooks.test.js", + "line": 34, + "column": 49, + "index": 819 + }, + { + "filePath": "src/containers/LearnerDashboardHeader/hooks.test.js", + "line": 38, + "column": 49, + "index": 1004 + } + ], + "Button": [ + { + "filePath": "src/containers/CourseCard/components/CourseCardActions/ActionButton/index.jsx", + "line": 9, + "column": 4, + "index": 202 + }, + { + "filePath": "src/containers/CourseCard/components/CourseCardBanners/CreditBanner/views/components/CreditContent.jsx", + "line": 14, + "column": 8, + "index": 404 + }, + { + "filePath": "src/containers/CourseCard/components/CourseCardBanners/CreditBanner/views/components/CreditRequestForm/index.jsx", + "line": 29, + "column": 6, + "index": 695 + }, + { + "filePath": "src/containers/CourseCard/components/CourseCardBanners/EntitlementBanner.jsx", "line": 45, - "column": 77, - "index": 1385 + "column": 12, + "index": 1300 }, { - "filePath": "src/courseware/course/sequence/Sequence.jsx", + "filePath": "src/containers/CourseCard/components/CourseCardDetails/index.jsx", + "line": 30, + "column": 10, + "index": 738 + }, + { + "filePath": "src/containers/CourseCard/components/RelatedProgramsBadge/index.jsx", + "line": 22, + "column": 6, + "index": 567 + }, + { + "filePath": "src/containers/CourseFilterControls/ActiveCourseFilters.jsx", + "line": 29, + "column": 6, + "index": 775 + }, + { + "filePath": "src/containers/CourseFilterControls/CourseFilterControls.jsx", + "line": 50, + "column": 6, + "index": 1058 + }, + { + "filePath": "src/containers/CoursesPanel/NoCoursesView/index.jsx", + "line": 28, + "column": 6, + "index": 906 + }, + { + "filePath": "src/containers/EmailSettingsModal/index.jsx", + "line": 43, + "column": 10, + "index": 1029 + }, + { + "filePath": "src/containers/EmailSettingsModal/index.jsx", "line": 46, - "column": 77, - "index": 1725 + "column": 10, + "index": 1156 }, { - "filePath": "src/courseware/course/sequence/Sequence.test.jsx", - "line": 44, - "column": 24, - "index": 1493 + "filePath": "src/containers/EnterpriseDashboardModal/index.jsx", + "line": 46, + "column": 10, + "index": 1096 }, { - "filePath": "src/courseware/course/sequence/Sequence.test.jsx", - "line": 424, - "column": 26, - "index": 18345 + "filePath": "src/containers/EnterpriseDashboardModal/index.jsx", + "line": 49, + "column": 10, + "index": 1244 }, { - "filePath": "src/courseware/course/sidebar/SidebarContextProvider.jsx", - "line": 19, - "column": 58, - "index": 589 + "filePath": "src/containers/LearnerDashboardHeader/ConfirmEmailBanner/index.jsx", + "line": 36, + "column": 12, + "index": 926 }, { - "filePath": "src/courseware/course/sidebar/SidebarContextProvider.jsx", + "filePath": "src/containers/LearnerDashboardHeader/ConfirmEmailBanner/index.jsx", + "line": 62, + "column": 10, + "index": 1686 + }, + { + "filePath": "src/containers/SelectSessionModal/index.jsx", + "line": 66, + "column": 8, + "index": 1709 + }, + { + "filePath": "src/containers/SelectSessionModal/index.jsx", + "line": 69, + "column": 8, + "index": 1837 + }, + { + "filePath": "src/containers/UnenrollConfirmModal/components/ConfirmPane.jsx", + "line": 21, + "column": 8, + "index": 423 + }, + { + "filePath": "src/containers/UnenrollConfirmModal/components/ConfirmPane.jsx", + "line": 24, + "column": 8, + "index": 549 + }, + { + "filePath": "src/containers/UnenrollConfirmModal/components/FinishedPane.jsx", + "line": 25, + "column": 8, + "index": 552 + }, + { + "filePath": "src/containers/UnenrollConfirmModal/components/ReasonPane.jsx", + "line": 40, + "column": 8, + "index": 1005 + }, + { + "filePath": "src/containers/UnenrollConfirmModal/components/ReasonPane.jsx", + "line": 43, + "column": 8, + "index": 1134 + } + ], + "ActionRow": [ + { + "filePath": "src/containers/CourseCard/components/CourseCardActions/index.jsx", + "line": 22, + "column": 4, + "index": 714 + }, + { + "filePath": "src/containers/CourseCard/components/CourseCardBanners/CreditBanner/views/components/CreditContent.jsx", + "line": 13, + "column": 6, + "index": 367 + }, + { + "filePath": "src/containers/EmailSettingsModal/index.jsx", + "line": 42, + "column": 8, + "index": 1007 + }, + { + "filePath": "src/containers/EnterpriseDashboardModal/index.jsx", + "line": 45, + "column": 8, + "index": 1074 + }, + { + "filePath": "src/containers/SelectSessionModal/index.jsx", + "line": 65, + "column": 6, + "index": 1689 + }, + { + "filePath": "src/containers/UnenrollConfirmModal/components/ConfirmPane.jsx", "line": 20, - "column": 59, - "index": 676 + "column": 6, + "index": 403 }, { - "filePath": "src/courseware/course/sidebar/sidebars/notifications/NotificationTray.test.jsx", - "line": 46, - "column": 24, - "index": 1799 + "filePath": "src/containers/UnenrollConfirmModal/components/FinishedPane.jsx", + "line": 24, + "column": 6, + "index": 532 }, { - "filePath": "src/courseware/course/sidebar/sidebars/notifications/NotificationTray.test.jsx", + "filePath": "src/containers/UnenrollConfirmModal/components/ReasonPane.jsx", + "line": 39, + "column": 6, + "index": 985 + } + ], + "Locked": [ + { + "filePath": "src/containers/CourseCard/components/CourseCardActions/UpgradeButton.jsx", + "line": 33, + "column": 18, + "index": 854 + } + ], + "MailtoLink": [ + { + "filePath": "src/containers/CourseCard/components/CourseCardBanners/CertificateBanner.jsx", + "line": 29, + "column": 31, + "index": 1025 + }, + { + "filePath": "src/containers/CourseCard/components/CourseCardBanners/CreditBanner/index.jsx", + "line": 20, + "column": 28, + "index": 551 + }, + { + "filePath": "src/containers/CourseCard/components/CourseCardBanners/CreditBanner/index.test.jsx", "line": 54, - "column": 24, - "index": 2165 + "column": 29, + "index": 1743 }, { - "filePath": "src/courseware/course/sidebar/sidebars/notifications/NotificationTray.test.jsx", - "line": 139, - "column": 24, - "index": 4817 + "filePath": "src/containers/CourseCard/components/CourseCardBanners/EntitlementBanner.jsx", + "line": 34, + "column": 37, + "index": 985 + } + ], + "CheckCircle": [ + { + "filePath": "src/containers/CourseCard/components/CourseCardBanners/CertificateBanner.jsx", + "line": 42, + "column": 38, + "index": 1644 + } + ], + "Hyperlink": [ + { + "filePath": "src/containers/CourseCard/components/CourseCardBanners/CertificateBanner.jsx", + "line": 47, + "column": 12, + "index": 1787 }, { - "filePath": "src/shared/streak-celebration/StreakCelebrationModal.jsx", - "line": 76, - "column": 46, - "index": 3255 + "filePath": "src/containers/CourseCard/components/CourseCardBanners/CertificateBanner.jsx", + "line": 68, + "column": 10, + "index": 2310 }, { - "filePath": "src/shared/streak-celebration/StreakCelebrationModal.test.jsx", - "line": 61, - "column": 24, - "index": 2004 + "filePath": "src/containers/CourseCard/components/CourseCardBanners/CourseBanner.jsx", + "line": 39, + "column": 12, + "index": 1130 }, { - "filePath": "src/shared/streak-celebration/StreakCelebrationModal.test.jsx", - "line": 94, - "column": 24, - "index": 3147 + "filePath": "src/containers/CourseCard/components/CourseCardBanners/CourseBanner.jsx", + "line": 49, + "column": 10, + "index": 1430 + }, + { + "filePath": "src/containers/CourseCard/components/CourseCardBanners/CreditBanner/views/components/ProviderLink.jsx", + "line": 11, + "column": 4, + "index": 292 + }, + { + "filePath": "src/widgets/LookingForChallengeWidget/index.jsx", + "line": 33, + "column": 10, + "index": 1090 } ], - "Locked": [ + "Form": [ { - "filePath": "src/course-home/progress-tab/grades/course-grade/CourseGradeHeader.jsx", + "filePath": "src/containers/CourseCard/components/CourseCardBanners/CreditBanner/views/components/CreditRequestForm/index.jsx", + "line": 15, + "column": 4, + "index": 398 + }, + { + "filePath": "src/containers/CourseFilterControls/CourseFilterControls.jsx", + "line": 59, + "column": 6, + "index": 1275 + }, + { + "filePath": "src/containers/MasqueradeBar/index.jsx", + "line": 40, + "column": 6, + "index": 909 + } + ], + "FormControl": [ + { + "filePath": "src/containers/CourseCard/components/CourseCardBanners/CreditBanner/views/components/CreditRequestForm/index.jsx", + "line": 22, + "column": 8, + "index": 556 + }, + { + "filePath": "src/containers/MasqueradeBar/index.jsx", + "line": 62, + "column": 14, + "index": 1728 + } + ], + "Program": [ + { + "filePath": "src/containers/CourseCard/components/CourseCardBanners/RelatedProgramsBanner/index.jsx", + "line": 24, + "column": 12, + "index": 577 + }, + { + "filePath": "src/containers/CourseCard/components/RelatedProgramsBadge/index.jsx", + "line": 29, + "column": 19, + "index": 801 + }, + { + "filePath": "src/containers/RelatedProgramsModal/components/ProgramCard.jsx", + "line": 45, + "column": 21, + "index": 1307 + } + ], + "Badge": [ + { + "filePath": "src/containers/CourseCard/components/CourseCardImage.jsx", + "line": 37, + "column": 12, + "index": 1330 + }, + { + "filePath": "src/containers/RelatedProgramsModal/components/ProgramCard.jsx", + "line": 44, + "column": 8, + "index": 1231 + } + ], + "Dropdown": [ + { + "filePath": "src/containers/CourseCard/components/CourseCardMenu/index.jsx", + "line": 42, + "column": 6, + "index": 1281 + } + ], + "Dropdown.Toggle": [ + { + "filePath": "src/containers/CourseCard/components/CourseCardMenu/index.jsx", + "line": 43, + "column": 8, + "index": 1332 + } + ], + "IconButton": [ + { + "filePath": "src/containers/CourseCard/components/CourseCardMenu/index.jsx", + "line": 45, + "column": 14, + "index": 1414 + } + ], + "MoreVert": [ + { + "filePath": "src/containers/CourseCard/components/CourseCardMenu/index.jsx", + "line": 46, + "column": 15, + "index": 1441 + } + ], + "Icon": [ + { + "filePath": "src/containers/CourseCard/components/CourseCardMenu/index.jsx", + "line": 47, + "column": 18, + "index": 1469 + }, + { + "filePath": "src/containers/CourseCard/components/RelatedProgramsBadge/index.jsx", + "line": 29, + "column": 8, + "index": 790 + }, + { + "filePath": "src/containers/CourseFilterControls/CourseFilterControls.jsx", + "line": 80, + "column": 18, + "index": 2035 + }, + { + "filePath": "src/containers/MasqueradeBar/index.jsx", + "line": 44, + "column": 14, + "index": 1069 + }, + { + "filePath": "src/containers/MasqueradeBar/index.jsx", "line": 58, - "column": 23, - "index": 1914 + "column": 14, + "index": 1523 }, { - "filePath": "src/courseware/course/sequence/lock-paywall/LockPaywall.jsx", - "line": 82, - "column": 49, - "index": 2863 + "filePath": "src/containers/RelatedProgramsModal/components/ProgramCard.jsx", + "line": 45, + "column": 10, + "index": 1296 + }, + { + "filePath": "src/widgets/LookingForChallengeWidget/index.jsx", + "line": 15, + "column": 26, + "index": 489 + } + ], + "Dropdown.Menu": [ + { + "filePath": "src/containers/CourseCard/components/CourseCardMenu/index.jsx", + "line": 51, + "column": 8, + "index": 1574 + } + ], + "Dropdown.Item": [ + { + "filePath": "src/containers/CourseCard/components/CourseCardMenu/index.jsx", + "line": 53, + "column": 12, + "index": 1641 + }, + { + "filePath": "src/containers/CourseCard/components/CourseCardMenu/SocialShareMenu.jsx", + "line": 36, + "column": 8, + "index": 1163 + } + ], + "Card": [ + { + "filePath": "src/containers/CourseCard/index.jsx", + "line": 23, + "column": 6, + "index": 793 + }, + { + "filePath": "src/containers/RelatedProgramsModal/components/ProgramCard.jsx", + "line": 25, + "column": 4, + "index": 604 + }, + { + "filePath": "src/widgets/LookingForChallengeWidget/index.jsx", + "line": 23, + "column": 4, + "index": 775 + } + ], + "Card.Body": [ + { + "filePath": "src/containers/CourseCard/index.jsx", + "line": 27, + "column": 12, + "index": 1025 + }, + { + "filePath": "src/widgets/LookingForChallengeWidget/index.jsx", + "line": 28, + "column": 6, + "index": 942 + } + ], + "Card.Header": [ + { + "filePath": "src/containers/CourseCard/index.jsx", + "line": 28, + "column": 14, + "index": 1051 + }, + { + "filePath": "src/containers/RelatedProgramsModal/components/ProgramCard.jsx", + "line": 39, + "column": 6, + "index": 1076 + } + ], + "Card.Section": [ + { + "filePath": "src/containers/CourseCard/index.jsx", + "line": 32, + "column": 14, + "index": 1216 + } + ], + "Card.Footer": [ + { + "filePath": "src/containers/CourseCard/index.jsx", + "line": 35, + "column": 14, + "index": 1346 + } + ], + "Chip": [ + { + "filePath": "src/containers/CourseFilterControls/ActiveCourseFilters.jsx", + "line": 21, + "column": 8, + "index": 580 + }, + { + "filePath": "src/containers/MasqueradeBar/index.jsx", + "line": 47, + "column": 12, + "index": 1184 + } + ], + "CloseSmall": [ + { + "filePath": "src/containers/CourseFilterControls/ActiveCourseFilters.jsx", + "line": 23, + "column": 21, + "index": 630 + } + ], + "Form.Checkbox": [ + { + "filePath": "src/containers/CourseFilterControls/components/Checkbox.jsx", + "line": 12, + "column": 4, + "index": 297 + } + ], + "Form.Group": [ + { + "filePath": "src/containers/CourseFilterControls/components/FilterForm.jsx", + "line": 26, + "column": 4, + "index": 558 + }, + { + "filePath": "src/containers/SelectSessionModal/index.jsx", + "line": 45, + "column": 6, + "index": 960 + } + ], + "Form.CheckboxSet": [ + { + "filePath": "src/containers/CourseFilterControls/components/FilterForm.jsx", + "line": 28, + "column": 6, + "index": 670 + } + ], + "Form.RadioSet": [ + { + "filePath": "src/containers/CourseFilterControls/components/SortForm.jsx", + "line": 19, + "column": 6, + "index": 459 + }, + { + "filePath": "src/containers/SelectSessionModal/index.jsx", + "line": 47, + "column": 8, + "index": 1038 + }, + { + "filePath": "src/containers/UnenrollConfirmModal/components/ReasonPane.jsx", + "line": 26, + "column": 6, + "index": 563 + } + ], + "Form.Radio": [ + { + "filePath": "src/containers/CourseFilterControls/components/SortForm.jsx", + "line": 24, + "column": 8, + "index": 569 + }, + { + "filePath": "src/containers/CourseFilterControls/components/SortForm.jsx", + "line": 27, + "column": 8, + "index": 708 + }, + { + "filePath": "src/containers/SelectSessionModal/index.jsx", + "line": 54, + "column": 12, + "index": 1253 + }, + { + "filePath": "src/containers/SelectSessionModal/index.jsx", + "line": 59, + "column": 12, + "index": 1506 + }, + { + "filePath": "src/containers/UnenrollConfirmModal/components/ReasonPane.jsx", + "line": 19, + "column": 4, + "index": 379 + }, + { + "filePath": "src/containers/UnenrollConfirmModal/components/ReasonPane.jsx", + "line": 32, + "column": 8, + "index": 733 + } + ], + "Tune": [ + { + "filePath": "src/containers/CourseFilterControls/CourseFilterControls.jsx", + "line": 53, + "column": 20, + "index": 1144 + } + ], + "Sheet": [ + { + "filePath": "src/containers/CourseFilterControls/CourseFilterControls.jsx", + "line": 62, + "column": 12, + "index": 1326 + } + ], + "ModalCloseButton": [ + { + "filePath": "src/containers/CourseFilterControls/CourseFilterControls.jsx", + "line": 79, + "column": 16, + "index": 1963 + } + ], + "Close": [ + { + "filePath": "src/containers/CourseFilterControls/CourseFilterControls.jsx", + "line": 80, + "column": 29, + "index": 2046 + }, + { + "filePath": "src/containers/MasqueradeBar/index.jsx", + "line": 49, + "column": 25, + "index": 1257 + } + ], + "ModalPopup": [ + { + "filePath": "src/containers/CourseFilterControls/CourseFilterControls.jsx", + "line": 85, + "column": 12, + "index": 2162 + } + ], + "useToggle": [ + { + "filePath": "src/containers/CourseFilterControls/hooks.js", + "line": 25, + "column": 44, + "index": 771 + }, + { + "filePath": "src/containers/CourseFilterControls/hooks.test.js", + "line": 48, + "column": 6, + "index": 1055 + }, + { + "filePath": "src/containers/CourseFilterControls/hooks.test.js", + "line": 75, + "column": 6, + "index": 1916 + } + ], + "Pagination": [ + { + "filePath": "src/containers/CoursesPanel/CourseList/index.jsx", + "line": 29, + "column": 10, + "index": 847 + } + ], + "Image": [ + { + "filePath": "src/containers/CoursesPanel/NoCoursesView/index.jsx", + "line": 21, + "column": 6, + "index": 670 + }, + { + "filePath": "src/containers/LearnerDashboardHeader/ConfirmEmailBanner/index.jsx", + "line": 54, + "column": 12, + "index": 1457 + } + ], + "Search": [ + { + "filePath": "src/containers/CoursesPanel/NoCoursesView/index.jsx", + "line": 32, + "column": 20, + "index": 1016 + } + ], + "Container": [ + { + "filePath": "src/containers/Dashboard/DashboardLayout.jsx", + "line": 38, + "column": 4, + "index": 826 + }, + { + "filePath": "src/containers/RelatedProgramsModal/index.jsx", + "line": 42, + "column": 8, + "index": 1295 + } + ], + "Row": [ + { + "filePath": "src/containers/Dashboard/DashboardLayout.jsx", + "line": 39, + "column": 6, + "index": 860 + }, + { + "filePath": "src/containers/RelatedProgramsModal/index.jsx", + "line": 43, + "column": 10, + "index": 1317 + } + ], + "Col": [ + { + "filePath": "src/containers/Dashboard/DashboardLayout.jsx", + "line": 40, + "column": 8, + "index": 874 + }, + { + "filePath": "src/containers/Dashboard/DashboardLayout.jsx", + "line": 43, + "column": 8, + "index": 982 + }, + { + "filePath": "src/containers/RelatedProgramsModal/index.jsx", + "line": 45, + "column": 14, + "index": 1389 + } + ], + "Spinner": [ + { + "filePath": "src/containers/Dashboard/LoadingView.jsx", + "line": 11, + "column": 6, + "index": 265 + } + ], + "ModalDialog": [ + { + "filePath": "src/containers/EmailSettingsModal/index.jsx", + "line": 30, + "column": 4, + "index": 537 + }, + { + "filePath": "src/containers/EnterpriseDashboardModal/index.jsx", + "line": 25, + "column": 4, + "index": 573 + }, + { + "filePath": "src/containers/RelatedProgramsModal/index.jsx", + "line": 24, + "column": 4, + "index": 643 + }, + { + "filePath": "src/containers/SelectSessionModal/index.jsx", + "line": 35, + "column": 4, + "index": 737 + }, + { + "filePath": "src/containers/UnenrollConfirmModal/index.jsx", + "line": 29, + "column": 4, + "index": 685 + } + ], + "Form.Switch": [ + { + "filePath": "src/containers/EmailSettingsModal/index.jsx", + "line": 38, + "column": 8, + "index": 788 + } + ], + "PageBanner": [ + { + "filePath": "src/containers/LearnerDashboardHeader/ConfirmEmailBanner/index.jsx", + "line": 33, + "column": 6, + "index": 743 + } + ], + "MarketingModal": [ + { + "filePath": "src/containers/LearnerDashboardHeader/ConfirmEmailBanner/index.jsx", + "line": 47, + "column": 6, + "index": 1238 + } + ], + "ModalDialog.Hero": [ + { + "filePath": "src/containers/LearnerDashboardHeader/ConfirmEmailBanner/index.jsx", + "line": 53, + "column": 10, + "index": 1402 + } + ], + "FormLabel": [ + { + "filePath": "src/containers/MasqueradeBar/index.jsx", + "line": 43, + "column": 12, + "index": 1002 + }, + { + "filePath": "src/containers/MasqueradeBar/index.jsx", + "line": 57, + "column": 12, + "index": 1429 + } + ], + "PersonSearch": [ + { + "filePath": "src/containers/MasqueradeBar/index.jsx", + "line": 44, + "column": 25, + "index": 1080 + }, + { + "filePath": "src/containers/MasqueradeBar/index.jsx", + "line": 58, + "column": 25, + "index": 1534 + } + ], + "FormGroup": [ + { + "filePath": "src/containers/MasqueradeBar/index.jsx", + "line": 61, + "column": 12, + "index": 1635 + } + ], + "FormControlFeedback": [ + { + "filePath": "src/containers/MasqueradeBar/index.jsx", + "line": 69, + "column": 16, + "index": 2039 + } + ], + "StatefulButton": [ + { + "filePath": "src/containers/MasqueradeBar/index.jsx", + "line": 74, + "column": 12, + "index": 2243 + } + ], + "Card.ImageCap": [ + { + "filePath": "src/containers/RelatedProgramsModal/components/ProgramCard.jsx", + "line": 32, + "column": 6, + "index": 810 + }, + { + "filePath": "src/widgets/LookingForChallengeWidget/index.jsx", + "line": 24, + "column": 6, + "index": 847 + } + ], + "ModalDialog.Header": [ + { + "filePath": "src/containers/RelatedProgramsModal/index.jsx", + "line": 34, + "column": 6, + "index": 912 + }, + { + "filePath": "src/containers/RelatedProgramsModal/index.jsx", + "line": 37, + "column": 6, + "index": 1066 + } + ], + "ModalDialog.Body": [ + { + "filePath": "src/containers/RelatedProgramsModal/index.jsx", + "line": 40, + "column": 6, + "index": 1182 + } + ], + "Form.Label": [ + { + "filePath": "src/containers/SelectSessionModal/index.jsx", + "line": 46, + "column": 8, + "index": 998 + } + ], + "Form.Control": [ + { + "filePath": "src/containers/UnenrollConfirmModal/components/ReasonPane.jsx", + "line": 33, + "column": 10, + "index": 792 + } + ], + "ArrowForward": [ + { + "filePath": "src/widgets/LookingForChallengeWidget/index.jsx", + "line": 15, + "column": 54, + "index": 517 + } + ] + } + }, + { + "version": "21.13.1", + "name": "frontend-app-learner-portal-enterprise", + "repository": { + "type": "git", + "url": "https://github.com/openedx/frontend-app-learner-portal-enterprise.git" + }, + "folderName": "frontend-app-learner-portal-enterprise", + "usages": { + "Button": [ + { + "filePath": "src/components/academies/AcademyContentCard.jsx", + "line": 131, + "column": 12, + "index": 4320 + }, + { + "filePath": "src/components/academies/AcademyContentCard.jsx", + "line": 170, + "column": 10, + "index": 5365 + }, + { + "filePath": "src/components/academies/AcademyContentCard.jsx", + "line": 181, + "column": 10, + "index": 5658 + }, + { + "filePath": "src/components/academies/GoToAcademy.jsx", + "line": 21, + "column": 6, + "index": 814 + }, + { + "filePath": "src/components/academies/PathwaysSection.jsx", + "line": 44, + "column": 14, + "index": 1714 + }, + { + "filePath": "src/components/app/routes/EnterpriseInviteRoute.jsx", + "line": 38, + "column": 4, + "index": 1213 + }, + { + "filePath": "src/components/app/routes/RouteErrorBoundary.jsx", + "line": 95, + "column": 12, + "index": 2973 + }, + { + "filePath": "src/components/app/routes/RouteErrorBoundary.jsx", + "line": 122, + "column": 6, + "index": 3754 + }, + { + "filePath": "src/components/budget-expiry-notification/index.jsx", + "line": 52, + "column": 6, + "index": 1578 + }, + { + "filePath": "src/components/budget-expiry-notification/index.jsx", + "line": 94, + "column": 14, + "index": 2612 + }, + { + "filePath": "src/components/course/course-header/course-run-actions/BasicNavigateToCourseware.jsx", + "line": 14, + "column": 4, + "index": 381 + }, + { + "filePath": "src/components/course/course-header/data/hooks/useCourseRunCardAction.jsx", + "line": 100, + "column": 11, + "index": 3773 + }, + { + "filePath": "src/components/course/CourseMaterialsButton.jsx", + "line": 29, + "column": 4, + "index": 908 + }, + { + "filePath": "src/components/course/data/utils.jsx", + "line": 567, + "column": 6, + "index": 20027 + }, + { + "filePath": "src/components/course/data/utils.jsx", + "line": 583, + "column": 6, + "index": 20405 + }, + { + "filePath": "src/components/course/data/utils.jsx", + "line": 609, + "column": 6, + "index": 21015 + }, + { + "filePath": "src/components/course/enrollment/components/ToExecutiveEducation2UEnrollment.jsx", + "line": 10, + "column": 2, + "index": 327 + }, + { + "filePath": "src/components/course/enrollment/components/ToExecutiveEducation2UEnrollment.jsx", + "line": 31, + "column": 4, + "index": 772 + }, + { + "filePath": "src/components/course/EnrollModal.jsx", + "line": 290, + "column": 10, + "index": 10858 + }, + { + "filePath": "src/components/course/routes/ExternalCourseEnrollment.jsx", + "line": 110, + "column": 18, + "index": 4605 + }, + { + "filePath": "src/components/course/routes/ExternalCourseEnrollmentConfirmation.jsx", + "line": 43, + "column": 16, + "index": 1688 + }, + { + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/AssignedCourseCard.jsx", + "line": 21, + "column": 4, + "index": 853 + }, + { + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/ContinueLearningButton.jsx", + "line": 57, + "column": 4, + "index": 1903 + }, + { + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/email-settings/EmailSettingsModal.jsx", + "line": 122, + "column": 12, + "index": 2910 + }, + { + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/mark-complete-modal/MarkCompleteModal.jsx", + "line": 86, + "column": 12, + "index": 2729 + }, + { + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/move-to-in-progress-modal/MoveToInProgressModal.jsx", + "line": 80, + "column": 12, + "index": 2240 + }, + { + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/unenroll/UnenrollModal.jsx", + "line": 65, + "column": 10, + "index": 1995 + }, + { + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/UpcomingCourseCard.jsx", + "line": 11, + "column": 4, + "index": 337 + }, + { + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/UpgradeCourseButton.jsx", + "line": 137, + "column": 8, + "index": 4117 + }, + { + "filePath": "src/components/dashboard/main-content/course-enrollments/CourseAssignmentAlert.jsx", + "line": 87, + "column": 4, + "index": 3097 + }, + { + "filePath": "src/components/dashboard/main-content/course-enrollments/CourseEnrollmentsEmptyState.jsx", + "line": 56, + "column": 6, + "index": 2160 + }, + { + "filePath": "src/components/dashboard/main-content/course-enrollments/NewGroupAssignmentAlert.jsx", + "line": 18, + "column": 8, + "index": 425 + }, + { + "filePath": "src/components/dashboard/main-content/CourseRecommendations.jsx", + "line": 28, + "column": 10, + "index": 1395 + }, + { + "filePath": "src/components/dashboard/sidebar/SubsidiesSummary.jsx", + "line": 42, + "column": 6, + "index": 1447 + }, + { + "filePath": "src/components/dashboard/SubscriptionExpirationModal.jsx", + "line": 107, + "column": 12, + "index": 3804 + }, + { + "filePath": "src/components/dashboard/SubscriptionExpirationModal.jsx", + "line": 169, + "column": 10, + "index": 5976 + }, + { + "filePath": "src/components/enterprise-banner/EnterpriseBanner.jsx", + "line": 25, + "column": 14, + "index": 824 + }, + { + "filePath": "src/components/executive-education-2u/components/ErrorPageContent.jsx", + "line": 59, + "column": 12, + "index": 2094 + }, + { + "filePath": "src/components/integration-warning-modal/IntegrationWarningModal.jsx", + "line": 35, + "column": 8, + "index": 1050 + }, + { + "filePath": "src/components/microlearning/VideoBanner.jsx", + "line": 47, + "column": 10, + "index": 2017 + }, + { + "filePath": "src/components/microlearning/VideoDetailPage.jsx", + "line": 286, + "column": 16, + "index": 12610 + }, + { + "filePath": "src/components/microlearning/VideoFeedbackCard.jsx", + "line": 166, + "column": 14, + "index": 6412 + }, + { + "filePath": "src/components/my-career/AddJobRole.jsx", + "line": 65, + "column": 20, + "index": 2423 + }, + { + "filePath": "src/components/my-career/CategoryCard.jsx", + "line": 114, + "column": 10, + "index": 4131 + }, + { + "filePath": "src/components/my-career/CategoryCard.jsx", + "line": 136, + "column": 8, + "index": 4802 + }, + { + "filePath": "src/components/my-career/SearchJobRole.jsx", + "line": 155, + "column": 10, + "index": 5737 + }, + { + "filePath": "src/components/my-career/VisualizeCareer.jsx", + "line": 79, + "column": 16, + "index": 2626 + }, + { + "filePath": "src/components/my-career/VisualizeCareer.jsx", + "line": 116, + "column": 14, + "index": 4056 + }, + { + "filePath": "src/components/pathway/PathwayModal.jsx", + "line": 55, + "column": 8, + "index": 1815 + }, + { + "filePath": "src/components/preview-expand/PreviewExpand.jsx", + "line": 20, + "column": 6, + "index": 590 + }, + { + "filePath": "src/components/program-progress/CouponCodesWarningModal.jsx", + "line": 29, + "column": 10, + "index": 1000 + }, + { + "filePath": "src/components/program-progress/ProgramPathwayOpportunity.jsx", + "line": 17, + "column": 16, + "index": 784 + }, + { + "filePath": "src/components/program-progress/ProgramProgressSidebar.jsx", + "line": 112, + "column": 14, + "index": 4500 + }, + { + "filePath": "src/components/program-progress/SubscriptionExpiringWarningModal.jsx", + "line": 56, + "column": 10, + "index": 2064 + }, + { + "filePath": "src/components/search/AssignmentsOnlyEmptyState.jsx", + "line": 30, + "column": 10, + "index": 1144 + }, + { + "filePath": "src/components/search/AssignmentsOnlyEmptyState.jsx", + "line": 85, + "column": 14, + "index": 3526 + }, + { + "filePath": "src/components/skills-quiz-v2/JobCardComponent.jsx", + "line": 135, + "column": 10, + "index": 4381 + }, + { + "filePath": "src/components/skills-quiz-v2/SkillsQuiz.jsx", + "line": 75, + "column": 12, + "index": 2811 + }, + { + "filePath": "src/components/skills-quiz-v2/SkillsQuiz.jsx", + "line": 82, + "column": 12, + "index": 3194 + }, + { + "filePath": "src/components/skills-quiz-v2/SkillsQuizForm.jsx", + "line": 47, + "column": 8, + "index": 1849 + }, + { + "filePath": "src/components/skills-quiz/SkillsCourses.jsx", + "line": 134, + "column": 12, + "index": 4519 + }, + { + "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", + "line": 335, + "column": 16, + "index": 13775 + }, + { + "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", + "line": 357, + "column": 12, + "index": 14706 + }, + { + "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", + "line": 365, + "column": 12, + "index": 15126 + }, + { + "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", + "line": 377, + "column": 12, + "index": 15691 + }, + { + "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", + "line": 384, + "column": 12, + "index": 15902 + }, + { + "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", + "line": 393, + "column": 12, + "index": 16399 + }, + { + "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", + "line": 400, + "column": 12, + "index": 16610 + } + ], + "CardGrid": [ + { + "filePath": "src/components/academies/AcademyContentCard.jsx", + "line": 141, + "column": 8, + "index": 4676 + }, + { + "filePath": "src/components/course/course-header/CourseRunCards.jsx", + "line": 31, + "column": 4, + "index": 1072 + }, + { + "filePath": "src/components/course/CourseRecommendations.jsx", + "line": 39, + "column": 10, + "index": 1420 + }, + { + "filePath": "src/components/course/CourseRecommendations.jsx", + "line": 52, + "column": 10, + "index": 2017 + }, + { + "filePath": "src/components/my-career/SkillsRecommendationCourses.jsx", + "line": 75, + "column": 6, + "index": 2468 + }, + { + "filePath": "src/components/pathway-progress/PathwayProgressListingPage.jsx", + "line": 20, + "column": 6, + "index": 714 + }, + { + "filePath": "src/components/program-progress/ProgramListingPage.jsx", + "line": 14, + "column": 6, + "index": 549 + }, + { + "filePath": "src/components/search/popular-results/PopularResults.jsx", + "line": 34, + "column": 8, + "index": 1138 + }, + { + "filePath": "src/components/search/popular-results/PopularResults.jsx", + "line": 41, + "column": 10, + "index": 1440 + }, + { + "filePath": "src/components/search/SearchAcademy.jsx", + "line": 47, + "column": 8, + "index": 1691 + }, + { + "filePath": "src/components/search/SearchResults.jsx", + "line": 163, + "column": 10, + "index": 5155 + }, + { + "filePath": "src/components/search/SearchResults.jsx", + "line": 170, + "column": 10, + "index": 5452 + }, + { + "filePath": "src/components/skills-quiz/CardLoadingSkeleton.jsx", + "line": 8, + "column": 2, + "index": 206 + }, + { + "filePath": "src/components/skills-quiz/JobCardComponent.jsx", + "line": 15, + "column": 4, + "index": 477 + }, + { + "filePath": "src/components/skills-quiz/SearchCourseCard.jsx", + "line": 92, + "column": 6, + "index": 3174 + }, + { + "filePath": "src/components/skills-quiz/SearchPathways.jsx", + "line": 74, + "column": 6, + "index": 2536 + }, + { + "filePath": "src/components/skills-quiz/SearchProgramCard.jsx", + "line": 162, + "column": 6, + "index": 5423 + }, + { + "filePath": "src/components/skills-quiz/SkillsCourses.jsx", + "line": 148, + "column": 10, + "index": 5098 + } + ], + "Spinner": [ + { + "filePath": "src/components/academies/AcademyContentCard.jsx", + "line": 198, + "column": 12, + "index": 6226 + }, + { + "filePath": "src/components/DelayedFallback/DelayedFallbackContainer.jsx", + "line": 41, + "column": 19, + "index": 1391 + }, + { + "filePath": "src/components/skills-quiz-v2/JobCardComponent.jsx", + "line": 76, + "column": 6, + "index": 2633 + } + ], + "Container": [ + { + "filePath": "src/components/academies/AcademyDetailPage.jsx", + "line": 59, + "column": 6, + "index": 2038 + }, + { + "filePath": "src/components/academies/AcademyDetailPage.jsx", + "line": 113, + "column": 6, + "index": 4705 + }, + { + "filePath": "src/components/academies/AcademyDetailPage.jsx", + "line": 123, + "column": 6, + "index": 5187 + }, + { + "filePath": "src/components/academies/PathwaysSection.jsx", + "line": 20, + "column": 6, + "index": 663 + }, + { + "filePath": "src/components/academies/PathwaysSection.jsx", + "line": 21, + "column": 8, + "index": 718 + }, + { + "filePath": "src/components/course/course-header/CourseHeader.jsx", + "line": 61, + "column": 6, + "index": 2362 + }, + { + "filePath": "src/components/course/CourseEnrollmentFailedAlert.jsx", + "line": 108, + "column": 4, + "index": 3643 + }, + { + "filePath": "src/components/course/CourseReview.jsx", + "line": 93, + "column": 4, + "index": 3804 + }, + { + "filePath": "src/components/course/LicenseRequestedAlert.jsx", + "line": 43, + "column": 4, + "index": 1768 + }, + { + "filePath": "src/components/course/routes/CourseAbout.jsx", + "line": 34, + "column": 6, + "index": 1074 + }, + { + "filePath": "src/components/course/routes/ExternalCourseEnrollment.jsx", + "line": 94, + "column": 8, + "index": 3923 + }, + { + "filePath": "src/components/course/routes/ExternalCourseEnrollmentConfirmation.jsx", + "line": 28, + "column": 8, + "index": 1012 + }, + { + "filePath": "src/components/dashboard/DashboardPage.jsx", + "line": 58, + "column": 4, + "index": 1741 + }, + { + "filePath": "src/components/enterprise-banner/EnterpriseBanner.jsx", + "line": 18, + "column": 6, + "index": 534 + }, + { + "filePath": "src/components/enterprise-user-subsidy/enterprise-offers/EnterpriseOffersBalanceAlert.jsx", + "line": 81, + "column": 4, + "index": 3482 + }, + { + "filePath": "src/components/error-page/ErrorPageContent.jsx", + "line": 14, + "column": 2, + "index": 384 + }, + { + "filePath": "src/components/error-page/ErrorPageHeader.jsx", + "line": 25, + "column": 8, + "index": 770 + }, + { + "filePath": "src/components/microlearning/VideoDetailPage.jsx", + "line": 118, + "column": 4, + "index": 4281 + }, + { + "filePath": "src/components/NotFoundPage/index.jsx", + "line": 16, + "column": 4, + "index": 466 + }, + { + "filePath": "src/components/pathway-progress/PathwayProgressPage.jsx", + "line": 25, + "column": 6, + "index": 670 + }, + { + "filePath": "src/components/pathway/PathwayModal.jsx", + "line": 134, + "column": 6, + "index": 4321 + }, + { + "filePath": "src/components/program-progress/ProgramProgressPage.jsx", + "line": 60, + "column": 6, + "index": 2470 + }, + { + "filePath": "src/components/program/ProgramDataBar.jsx", + "line": 21, + "column": 8, + "index": 942 + }, + { + "filePath": "src/components/program/ProgramPage.jsx", + "line": 40, + "column": 6, + "index": 1359 + }, + { + "filePath": "src/components/search/AssignmentsOnlyEmptyState.jsx", + "line": 20, + "column": 4, + "index": 760 + }, + { + "filePath": "src/components/search/content-highlights/ContentHighlights.jsx", + "line": 25, + "column": 4, + "index": 865 + }, + { + "filePath": "src/components/search/SearchAcademy.jsx", + "line": 20, + "column": 6, + "index": 695 + }, + { + "filePath": "src/components/search/SearchAcademy.jsx", + "line": 31, + "column": 4, + "index": 926 + }, + { + "filePath": "src/components/search/SearchResults.jsx", + "line": 130, + "column": 6, + "index": 4013 + }, + { + "filePath": "src/components/search/SearchResults.jsx", + "line": 136, + "column": 4, + "index": 4149 + }, + { + "filePath": "src/components/site-header/SiteHeader.jsx", + "line": 18, + "column": 6, + "index": 655 + }, + { + "filePath": "src/components/skills-quiz/SkillsQuiz.jsx", + "line": 28, + "column": 6, + "index": 1159 + }, + { + "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", + "line": 205, + "column": 10, + "index": 7210 + } + ], + "Breadcrumb": [ + { + "filePath": "src/components/academies/AcademyDetailPage.jsx", + "line": 61, + "column": 10, + "index": 2119 + }, + { + "filePath": "src/components/course/course-header/CourseHeader.jsx", + "line": 66, + "column": 16, + "index": 2588 + }, + { + "filePath": "src/components/pathway-progress/PathwayProgressHeader.jsx", + "line": 19, + "column": 10, + "index": 821 + }, + { + "filePath": "src/components/program/ProgramHeader.jsx", + "line": 85, + "column": 12, + "index": 2899 + } + ], + "ArrowDownward": [ + { + "filePath": "src/components/academies/AcademyDetailPage.jsx", + "line": 105, + "column": 18, + "index": 4499 + } + ], + "useToggle": [ + { + "filePath": "src/components/academies/PathwaysSection.jsx", + "line": 9, + "column": 72, + "index": 399 + }, + { + "filePath": "src/components/app/routes/RouteErrorBoundary.jsx", + "line": 57, + "column": 62, + "index": 1977 + }, + { + "filePath": "src/components/budget-expiry-notification/index.jsx", + "line": 17, + "column": 47, + "index": 576 + }, + { + "filePath": "src/components/budget-expiry-notification/index.jsx", + "line": 18, + "column": 47, + "index": 641 + }, + { + "filePath": "src/components/course/course-header/CoursePreview.jsx", + "line": 19, + "column": 38, + "index": 723 + }, + { + "filePath": "src/components/dashboard/sidebar/CouponCodesSummaryCard.jsx", + "line": 19, + "column": 6, + "index": 734 + }, + { + "filePath": "src/components/dashboard/sidebar/data/hooks/useSubscriptionSummaryCard.jsx", + "line": 134, + "column": 6, + "index": 4521 + }, + { + "filePath": "src/components/dashboard/SubscriptionExpirationModal.jsx", + "line": 33, + "column": 28, + "index": 1410 + }, + { + "filePath": "src/components/expired-subscription-modal/index.jsx", + "line": 13, + "column": 19, + "index": 546 + }, + { + "filePath": "src/components/my-career/CategoryCard.jsx", + "line": 21, + "column": 60, + "index": 985 + }, + { + "filePath": "src/components/my-career/CategoryCard.jsx", + "line": 22, + "column": 64, + "index": 1067 + }, + { + "filePath": "src/components/my-career/CategoryCard.jsx", + "line": 23, + "column": 55, + "index": 1140 + }, + { + "filePath": "src/components/my-career/VisualizeCareer.jsx", + "line": 23, + "column": 57, + "index": 994 + }, + { + "filePath": "src/components/pathway/SearchPathwayCard.jsx", + "line": 57, + "column": 72, + "index": 1953 + }, + { + "filePath": "src/components/search/Search.jsx", + "line": 38, + "column": 70, + "index": 1725 + }, + { + "filePath": "src/components/skills-quiz-v2/SkillsQuiz.jsx", + "line": 21, + "column": 32, + "index": 949 + } + ], + "Card": [ + { + "filePath": "src/components/academies/SearchAcademyCard.jsx", + "line": 14, + "column": 4, + "index": 380 + }, + { + "filePath": "src/components/course/course-header/CourseRunCard.jsx", + "line": 40, + "column": 4, + "index": 1501 + }, + { + "filePath": "src/components/course/course-header/deprecated/CourseRunCard.jsx", + "line": 352, + "column": 4, + "index": 11590 + }, + { + "filePath": "src/components/course/CourseRecommendationCard.jsx", + "line": 38, + "column": 4, + "index": 1540 + }, + { + "filePath": "src/components/dashboard/sidebar/DashboardSidebar.jsx", + "line": 10, + "column": 4, + "index": 271 + }, + { + "filePath": "src/components/dashboard/sidebar/SubsidiesSummary.jsx", + "line": 121, + "column": 4, + "index": 4230 + }, + { + "filePath": "src/components/executive-education-2u/components/CourseSummaryCard.jsx", + "line": 31, + "column": 4, + "index": 1010 + }, + { + "filePath": "src/components/executive-education-2u/components/EnrollmentCompletedSummaryCard.jsx", + "line": 13, + "column": 4, + "index": 496 + }, + { + "filePath": "src/components/executive-education-2u/components/RegistrationSummaryCard.jsx", + "line": 10, + "column": 2, + "index": 428 + }, + { + "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", + "line": 228, + "column": 10, + "index": 9119 + }, + { + "filePath": "src/components/microlearning/VideoBanner.jsx", + "line": 19, + "column": 6, + "index": 731 + }, + { + "filePath": "src/components/microlearning/VideoFeedbackCard.jsx", + "line": 74, + "column": 8, + "index": 2476 + }, + { + "filePath": "src/components/microlearning/VideoFeedbackCard.jsx", + "line": 182, + "column": 8, + "index": 6973 + }, + { + "filePath": "src/components/my-career/CategoryCard.jsx", + "line": 110, + "column": 4, + "index": 3951 + }, + { + "filePath": "src/components/my-career/MyCareerTabSkeleton.jsx", + "line": 19, + "column": 8, + "index": 327 + }, + { + "filePath": "src/components/pathway-progress/PathwayNode.jsx", + "line": 36, + "column": 8, + "index": 1094 + }, + { + "filePath": "src/components/pathway-progress/PathwayProgressCard.jsx", + "line": 13, + "column": 4, + "index": 616 + }, + { + "filePath": "src/components/pathway-progress/SubscriptionStatusCard.jsx", + "line": 15, + "column": 6, + "index": 611 + }, + { + "filePath": "src/components/pathway/SearchPathwayCard.jsx", + "line": 115, + "column": 6, + "index": 3303 + }, + { + "filePath": "src/components/program-progress/ProgramListingCard.jsx", + "line": 52, + "column": 4, + "index": 1676 + }, + { + "filePath": "src/components/search/AssignmentsOnlyEmptyState.jsx", + "line": 64, + "column": 10, + "index": 2515 + }, + { + "filePath": "src/components/search/content-highlights/HighlightedContentCard.jsx", + "line": 51, + "column": 4, + "index": 1442 + }, + { + "filePath": "src/components/search/SearchCourseCard.jsx", + "line": 91, + "column": 4, + "index": 2669 + }, + { + "filePath": "src/components/search/SearchProgramCard.jsx", + "line": 103, + "column": 4, + "index": 3122 + }, + { + "filePath": "src/components/search/SearchVideoCard.jsx", + "line": 48, + "column": 4, + "index": 1431 + }, + { + "filePath": "src/components/skills-quiz/CardLoadingSkeleton.jsx", + "line": 10, + "column": 6, + "index": 280 + }, + { + "filePath": "src/components/skills-quiz/CourseCard.jsx", + "line": 50, + "column": 4, + "index": 1822 + }, + { + "filePath": "src/components/skills-quiz/JobCardComponent.jsx", + "line": 17, + "column": 8, + "index": 522 + }, + { + "filePath": "src/components/skills-quiz/SearchProgramCard.jsx", + "line": 166, + "column": 12, + "index": 5600 + }, + { + "filePath": "src/components/skills-quiz/TopSkillsOverview.jsx", + "line": 68, + "column": 8, + "index": 2244 + } + ], + "Card.Header": [ + { + "filePath": "src/components/academies/SearchAcademyCard.jsx", + "line": 21, + "column": 6, + "index": 565 + }, + { + "filePath": "src/components/course/CourseRecommendationCard.jsx", + "line": 59, + "column": 6, + "index": 2077 + }, + { + "filePath": "src/components/dashboard/sidebar/CouponCodesSummaryCard.jsx", + "line": 59, + "column": 8, + "index": 2039 + }, + { + "filePath": "src/components/dashboard/sidebar/CouponCodesSummaryCard.jsx", + "line": 95, + "column": 6, + "index": 3393 + }, + { + "filePath": "src/components/dashboard/sidebar/LearnerCreditSummaryCard.jsx", + "line": 103, + "column": 6, + "index": 3519 + }, + { + "filePath": "src/components/dashboard/sidebar/SubscriptionSummaryCard.jsx", + "line": 69, + "column": 8, + "index": 2629 + }, + { + "filePath": "src/components/dashboard/sidebar/SubscriptionSummaryCard.jsx", + "line": 98, + "column": 6, + "index": 3573 + }, + { + "filePath": "src/components/executive-education-2u/components/CourseSummaryCard.jsx", + "line": 36, + "column": 8, + "index": 1117 + }, + { + "filePath": "src/components/microlearning/VideoFeedbackCard.jsx", + "line": 75, + "column": 10, + "index": 2493 + }, + { + "filePath": "src/components/microlearning/VideoFeedbackCard.jsx", + "line": 183, + "column": 10, + "index": 6990 + }, + { + "filePath": "src/components/my-career/CategoryCard.jsx", + "line": 111, + "column": 6, + "index": 3983 + }, + { + "filePath": "src/components/pathway-progress/PathwayProgressCard.jsx", + "line": 27, + "column": 6, + "index": 1090 + }, + { + "filePath": "src/components/pathway/SearchPathwayCard.jsx", + "line": 131, + "column": 8, + "index": 3750 + }, + { + "filePath": "src/components/program-progress/ProgramListingCard.jsx", + "line": 69, + "column": 6, + "index": 2203 + }, + { + "filePath": "src/components/search/content-highlights/HighlightedContentCard.jsx", + "line": 67, + "column": 6, + "index": 1887 + }, + { + "filePath": "src/components/search/SearchCourseCard.jsx", + "line": 109, + "column": 6, + "index": 3172 + }, + { + "filePath": "src/components/search/SearchProgramCard.jsx", + "line": 121, + "column": 6, + "index": 3589 + }, + { + "filePath": "src/components/search/SearchVideoCard.jsx", + "line": 65, + "column": 6, + "index": 1884 + }, + { + "filePath": "src/components/skills-quiz/CardLoadingSkeleton.jsx", + "line": 12, + "column": 8, + "index": 346 + }, + { + "filePath": "src/components/skills-quiz/CourseCard.jsx", + "line": 66, + "column": 6, + "index": 2320 + }, + { + "filePath": "src/components/skills-quiz/JobCardComponent.jsx", + "line": 18, + "column": 10, + "index": 576 + }, + { + "filePath": "src/components/skills-quiz/SearchProgramCard.jsx", + "line": 188, + "column": 14, + "index": 6376 + } + ], + "Card.Section": [ + { + "filePath": "src/components/academies/SearchAcademyCard.jsx", + "line": 22, + "column": 6, + "index": 601 + }, + { + "filePath": "src/components/academies/SearchAcademyCard.jsx", + "line": 23, + "column": 6, + "index": 655 + }, + { + "filePath": "src/components/academies/SearchAcademyCard.jsx", + "line": 24, + "column": 6, + "index": 678 + }, + { + "filePath": "src/components/course/course-header/CourseRunCard.jsx", + "line": 41, + "column": 6, + "index": 1514 + }, + { + "filePath": "src/components/course/course-header/deprecated/CourseRunCard.jsx", + "line": 353, + "column": 6, + "index": 11603 + }, + { + "filePath": "src/components/course/CourseRecommendationCard.jsx", + "line": 70, + "column": 6, + "index": 2490 + }, + { + "filePath": "src/components/dashboard/sidebar/CouponCodesSummaryCard.jsx", + "line": 77, + "column": 8, + "index": 2762 + }, + { + "filePath": "src/components/dashboard/sidebar/CouponCodesSummaryCard.jsx", + "line": 119, + "column": 6, + "index": 4312 + }, + { + "filePath": "src/components/dashboard/sidebar/DashboardSidebar.jsx", + "line": 11, + "column": 6, + "index": 284 + }, + { + "filePath": "src/components/dashboard/sidebar/data/hooks/useSubscriptionSummaryCard.jsx", + "line": 65, + "column": 6, + "index": 2330 + }, + { + "filePath": "src/components/dashboard/sidebar/data/hooks/useSubscriptionSummaryCard.jsx", + "line": 87, + "column": 4, + "index": 2934 + }, + { + "filePath": "src/components/dashboard/sidebar/LearnerCreditSummaryCard.jsx", + "line": 119, + "column": 6, + "index": 4089 + }, + { + "filePath": "src/components/dashboard/sidebar/SubsidiesSummary.jsx", + "line": 41, + "column": 4, + "index": 1426 + }, + { + "filePath": "src/components/executive-education-2u/components/CourseSummaryCard.jsx", + "line": 43, + "column": 8, + "index": 1368 + }, + { + "filePath": "src/components/executive-education-2u/components/EnrollmentCompletedSummaryCard.jsx", + "line": 16, + "column": 10, + "index": 596 + }, + { + "filePath": "src/components/executive-education-2u/components/EnrollmentCompletedSummaryCard.jsx", + "line": 26, + "column": 10, + "index": 870 + }, + { + "filePath": "src/components/executive-education-2u/components/RegistrationSummaryCard.jsx", + "line": 15, + "column": 6, + "index": 531 + }, + { + "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", + "line": 233, + "column": 14, + "index": 9262 + }, + { + "filePath": "src/components/microlearning/VideoBanner.jsx", + "line": 20, + "column": 8, + "index": 815 + }, + { + "filePath": "src/components/microlearning/VideoFeedbackCard.jsx", + "line": 120, + "column": 12, + "index": 4299 + }, + { + "filePath": "src/components/microlearning/VideoFeedbackCard.jsx", + "line": 208, + "column": 10, + "index": 7837 + }, + { + "filePath": "src/components/my-career/CategoryCard.jsx", + "line": 112, + "column": 6, + "index": 4048 + }, + { + "filePath": "src/components/my-career/CategoryCard.jsx", + "line": 126, + "column": 8, + "index": 4494 + }, + { + "filePath": "src/components/my-career/CategoryCard.jsx", + "line": 173, + "column": 8, + "index": 6103 + }, + { + "filePath": "src/components/my-career/MyCareerTabSkeleton.jsx", + "line": 20, + "column": 10, + "index": 344 + }, + { + "filePath": "src/components/pathway-progress/PathwayNode.jsx", + "line": 37, + "column": 10, + "index": 1129 + }, + { + "filePath": "src/components/pathway-progress/PathwayProgressCard.jsx", + "line": 32, + "column": 6, + "index": 1218 + }, + { + "filePath": "src/components/pathway-progress/PathwayProgressCard.jsx", + "line": 33, + "column": 6, + "index": 1241 + }, + { + "filePath": "src/components/pathway-progress/SubscriptionStatusCard.jsx", + "line": 16, + "column": 8, + "index": 643 + }, + { + "filePath": "src/components/pathway/SearchPathwayCard.jsx", + "line": 137, + "column": 10, + "index": 3925 + }, + { + "filePath": "src/components/program-progress/ProgramListingCard.jsx", + "line": 79, + "column": 6, + "index": 2522 + }, + { + "filePath": "src/components/program-progress/ProgramListingCard.jsx", + "line": 90, + "column": 6, + "index": 2865 + }, + { + "filePath": "src/components/search/AssignmentsOnlyEmptyState.jsx", + "line": 65, + "column": 12, + "index": 2534 + }, + { + "filePath": "src/components/search/AssignmentsOnlyEmptyState.jsx", + "line": 74, + "column": 12, + "index": 2954 + }, + { + "filePath": "src/components/search/AssignmentsOnlyEmptyState.jsx", + "line": 77, + "column": 12, + "index": 3117 + }, + { + "filePath": "src/components/search/content-highlights/HighlightedContentCard.jsx", + "line": 75, + "column": 6, + "index": 2132 + }, + { + "filePath": "src/components/search/SearchCourseCard.jsx", + "line": 117, + "column": 6, + "index": 3465 + }, + { + "filePath": "src/components/search/SearchProgramCard.jsx", + "line": 133, + "column": 6, + "index": 3953 + }, + { + "filePath": "src/components/search/SearchVideoCard.jsx", + "line": 73, + "column": 6, + "index": 2113 + }, + { + "filePath": "src/components/skills-quiz/CardLoadingSkeleton.jsx", + "line": 13, + "column": 8, + "index": 370 + }, + { + "filePath": "src/components/skills-quiz/CourseCard.jsx", + "line": 78, + "column": 6, + "index": 2678 + }, + { + "filePath": "src/components/skills-quiz/JobCardComponent.jsx", + "line": 19, + "column": 10, + "index": 619 + }, + { + "filePath": "src/components/skills-quiz/SearchProgramCard.jsx", + "line": 200, + "column": 14, + "index": 6815 + }, + { + "filePath": "src/components/skills-quiz/SearchProgramCard.jsx", + "line": 210, + "column": 14, + "index": 7337 + }, + { + "filePath": "src/components/skills-quiz/TopSkillsOverview.jsx", + "line": 69, + "column": 10, + "index": 2261 + }, + { + "filePath": "src/components/skills-quiz/TopSkillsOverview.jsx", + "line": 98, + "column": 10, + "index": 3163 + } + ], + "Image": [ + { + "filePath": "src/components/academies/SearchAcademyCard.jsx", + "line": 25, + "column": 8, + "index": 722 + }, + { + "filePath": "src/components/course/course-header/CoursePreview.jsx", + "line": 41, + "column": 14, + "index": 1309 + }, + { + "filePath": "src/components/course/course-header/CoursePreview.jsx", + "line": 54, + "column": 8, + "index": 1883 + }, + { + "filePath": "src/components/executive-education-2u/components/CourseSummaryCard.jsx", + "line": 39, + "column": 14, + "index": 1249 + }, + { + "filePath": "src/components/pathway/PathwayModal.jsx", + "line": 33, + "column": 8, + "index": 1217 + }, + { + "filePath": "src/components/search/AssignmentsOnlyEmptyState.jsx", + "line": 75, + "column": 14, + "index": 3031 + } + ], + "Hyperlink": [ + { + "filePath": "src/components/app/Root.jsx", + "line": 33, + "column": 10, + "index": 1269 + }, + { + "filePath": "src/components/app/routes/EnterpriseInviteRoute.jsx", + "line": 23, + "column": 6, + "index": 785 + }, + { + "filePath": "src/components/app/routes/EnterpriseInviteRoute.jsx", + "line": 30, + "column": 6, + "index": 1022 + }, + { + "filePath": "src/components/app/routes/EnterpriseInviteRoute.jsx", + "line": 39, + "column": 10, + "index": 1231 + }, + { + "filePath": "src/components/app/routes/LicenseActivationRoute.jsx", + "line": 32, + "column": 12, + "index": 1213 + }, + { + "filePath": "src/components/app/routes/LicenseActivationRoute.jsx", + "line": 45, + "column": 12, + "index": 1654 + }, + { + "filePath": "src/components/course/course-header/CourseHeader.jsx", + "line": 76, + "column": 18, + "index": 2942 + }, + { + "filePath": "src/components/course/CourseAssociatedPrograms.jsx", + "line": 56, + "column": 16, + "index": 2233 + }, + { + "filePath": "src/components/course/CourseMainContent.jsx", + "line": 97, + "column": 16, + "index": 3492 + }, + { + "filePath": "src/components/course/CourseMaterialsButton.jsx", + "line": 32, + "column": 10, + "index": 976 + }, + { + "filePath": "src/components/course/CreatedBy.jsx", + "line": 36, + "column": 14, + "index": 1205 + }, + { + "filePath": "src/components/course/CreatedBy.jsx", + "line": 54, + "column": 16, + "index": 1900 + }, + { + "filePath": "src/components/course/data/utils.jsx", + "line": 568, + "column": 12, + "index": 20047 + }, + { + "filePath": "src/components/course/data/utils.jsx", + "line": 584, + "column": 12, + "index": 20425 + }, + { + "filePath": "src/components/course/routes/ExternalCourseEnrollment.jsx", + "line": 110, + "column": 30, + "index": 4617 + }, + { + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/BaseCourseCard.jsx", + "line": 166, + "column": 4, + "index": 5980 + }, + { + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/CompletedCourseCard.jsx", + "line": 54, + "column": 12, + "index": 1668 + }, + { + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/CompletedCourseCard.jsx", + "line": 70, + "column": 10, + "index": 2158 + }, + { + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/ContinueLearningButton.jsx", + "line": 58, + "column": 10, + "index": 1921 + }, + { + "filePath": "src/components/dashboard/sidebar/SupportInformation.jsx", + "line": 45, + "column": 16, + "index": 1796 + }, + { + "filePath": "src/components/executive-education-2u/components/CourseSummaryCard.jsx", + "line": 38, + "column": 12, + "index": 1161 + }, + { + "filePath": "src/components/executive-education-2u/components/EnrollmentCompletedSummaryCard.jsx", + "line": 83, + "column": 22, + "index": 4470 + }, + { + "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", + "line": 363, + "column": 34, + "index": 15938 + }, + { + "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", + "line": 412, + "column": 32, + "index": 18758 + }, + { + "filePath": "src/components/program/ProgramInstructors.jsx", + "line": 23, + "column": 12, + "index": 873 + }, + { + "filePath": "src/components/program/ProgramInstructors.jsx", + "line": 78, + "column": 14, + "index": 2730 + }, + { + "filePath": "src/components/skills-quiz/SimilarJobs.jsx", + "line": 54, + "column": 10, + "index": 1759 + } + ], + "AlertModal": [ + { + "filePath": "src/components/app/routes/RouteErrorBoundary.jsx", + "line": 88, + "column": 6, + "index": 2742 + }, + { + "filePath": "src/components/budget-expiry-notification/index.jsx", + "line": 87, + "column": 8, + "index": 2424 + }, + { + "filePath": "src/components/course/EnrollModal.jsx", + "line": 284, + "column": 4, + "index": 10682 + }, + { + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/unenroll/UnenrollModal.jsx", + "line": 59, + "column": 4, + "index": 1847 + }, + { + "filePath": "src/components/dashboard/SubscriptionExpirationModal.jsx", + "line": 100, + "column": 6, + "index": 3570 + }, + { + "filePath": "src/components/dashboard/SubscriptionExpirationModal.jsx", + "line": 161, + "column": 4, + "index": 5679 + }, + { + "filePath": "src/components/expired-subscription-modal/index.jsx", + "line": 40, + "column": 4, + "index": 1234 + }, + { + "filePath": "src/components/integration-warning-modal/IntegrationWarningModal.jsx", + "line": 30, + "column": 4, + "index": 924 + } + ], + "ActionRow": [ + { + "filePath": "src/components/app/routes/RouteErrorBoundary.jsx", + "line": 94, + "column": 10, + "index": 2949 + }, + { + "filePath": "src/components/budget-expiry-notification/index.jsx", + "line": 93, + "column": 12, + "index": 2586 + }, + { + "filePath": "src/components/course/EnrollModal.jsx", + "line": 289, + "column": 8, + "index": 10836 + }, + { + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/email-settings/EmailSettingsModal.jsx", + "line": 121, + "column": 10, + "index": 2886 + }, + { + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/mark-complete-modal/MarkCompleteModal.jsx", + "line": 85, + "column": 10, + "index": 2705 + }, + { + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/move-to-in-progress-modal/MoveToInProgressModal.jsx", + "line": 79, + "column": 10, + "index": 2216 + }, + { + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/unenroll/UnenrollModal.jsx", + "line": 64, + "column": 8, + "index": 1973 + }, + { + "filePath": "src/components/dashboard/SubscriptionExpirationModal.jsx", + "line": 106, + "column": 10, + "index": 3780 + }, + { + "filePath": "src/components/dashboard/SubscriptionExpirationModal.jsx", + "line": 168, + "column": 8, + "index": 5954 + }, + { + "filePath": "src/components/expired-subscription-modal/index.jsx", + "line": 45, + "column": 8, + "index": 1391 + }, + { + "filePath": "src/components/microlearning/VideoFeedbackCard.jsx", + "line": 88, + "column": 14, + "index": 2928 + }, + { + "filePath": "src/components/microlearning/VideoFeedbackCard.jsx", + "line": 195, + "column": 14, + "index": 7468 + }, + { + "filePath": "src/components/my-career/VisualizeCareer.jsx", + "line": 70, + "column": 14, + "index": 2208 + }, + { + "filePath": "src/components/my-career/VisualizeCareer.jsx", + "line": 87, + "column": 14, + "index": 3047 + }, + { + "filePath": "src/components/my-career/VisualizeCareer.jsx", + "line": 100, + "column": 12, + "index": 3441 + }, + { + "filePath": "src/components/my-career/VisualizeCareer.jsx", + "line": 115, + "column": 12, + "index": 4030 + }, + { + "filePath": "src/components/program-progress/CouponCodesWarningModal.jsx", + "line": 28, + "column": 8, + "index": 978 + }, + { + "filePath": "src/components/program-progress/SubscriptionExpiringWarningModal.jsx", + "line": 55, + "column": 8, + "index": 2042 + }, + { + "filePath": "src/components/skills-quiz-v2/SkillsQuiz.jsx", + "line": 74, + "column": 10, + "index": 2768 + } + ], + "MailtoLink": [ + { + "filePath": "src/components/budget-expiry-notification/data/hooks/useExpiryThresholds.jsx", + "line": 73, + "column": 18, + "index": 3138 + }, + { + "filePath": "src/components/budget-expiry-notification/data/hooks/useExpiryThresholds.jsx", + "line": 155, + "column": 18, + "index": 6814 + }, + { + "filePath": "src/components/budget-expiry-notification/index.jsx", + "line": 53, + "column": 12, + "index": 1598 + }, + { + "filePath": "src/components/contact-admin-mailto/index.jsx", + "line": 14, + "column": 6, + "index": 417 + }, + { + "filePath": "src/components/course/data/utils.jsx", + "line": 610, + "column": 12, + "index": 21035 + }, + { + "filePath": "src/components/dashboard/main-content/course-enrollments/CourseAssignmentAlert.jsx", + "line": 87, + "column": 16, + "index": 3109 + }, + { + "filePath": "src/components/dashboard/sidebar/SupportInformation.jsx", + "line": 65, + "column": 20, + "index": 2612 + }, + { + "filePath": "src/components/dashboard/SubscriptionExpirationModal.jsx", + "line": 47, + "column": 8, + "index": 1846 + }, + { + "filePath": "src/components/enterprise-user-subsidy/enterprise-offers/EnterpriseOffersBalanceAlert.jsx", + "line": 62, + "column": 4, + "index": 2966 + }, + { + "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", + "line": 333, + "column": 32, + "index": 14289 + }, + { + "filePath": "src/components/program-progress/CouponCodesWarningModal.jsx", + "line": 42, + "column": 16, + "index": 1881 + }, + { + "filePath": "src/components/program-progress/SubscriptionExpiringWarningModal.jsx", + "line": 25, + "column": 8, + "index": 956 + }, + { + "filePath": "src/components/search/AssignmentsOnlyEmptyState.jsx", + "line": 31, + "column": 16, + "index": 1168 + } + ], + "Alert": [ + { + "filePath": "src/components/budget-expiry-notification/index.jsx", + "line": 70, + "column": 8, + "index": 1998 + }, + { + "filePath": "src/components/course/CourseEnrollmentFailedAlert.jsx", + "line": 96, + "column": 52, + "index": 3329 + }, + { + "filePath": "src/components/course/CourseEnrollmentFailedAlert.jsx", + "line": 109, + "column": 6, + "index": 3693 + }, + { + "filePath": "src/components/course/LicenseRequestedAlert.jsx", + "line": 44, + "column": 6, + "index": 1813 + }, + { + "filePath": "src/components/course/routes/ExternalCourseEnrollment.jsx", + "line": 104, + "column": 14, + "index": 4360 + }, + { + "filePath": "src/components/dashboard/DashboardPage.jsx", + "line": 79, + "column": 6, + "index": 2476 + }, + { + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/email-settings/EmailSettingsModal.jsx", + "line": 137, + "column": 10, + "index": 3435 + }, + { + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/mark-complete-modal/ModalError.jsx", + "line": 10, + "column": 4, + "index": 320 + }, + { + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/move-to-in-progress-modal/ModalError.jsx", + "line": 10, + "column": 4, + "index": 332 + }, + { + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/unenroll/UnenrollModal.jsx", + "line": 83, + "column": 8, + "index": 2404 + }, + { + "filePath": "src/components/dashboard/main-content/course-enrollments/CourseAssignmentAlert.jsx", + "line": 97, + "column": 4, + "index": 3461 + }, + { + "filePath": "src/components/dashboard/main-content/course-enrollments/CourseEnrollmentsAlert.jsx", + "line": 20, + "column": 4, + "index": 437 + }, + { + "filePath": "src/components/dashboard/main-content/course-enrollments/NewGroupAssignmentAlert.jsx", + "line": 13, + "column": 4, + "index": 331 + }, + { + "filePath": "src/components/enterprise-user-subsidy/enterprise-offers/EnterpriseOffersBalanceAlert.jsx", + "line": 82, + "column": 6, + "index": 3527 + }, + { + "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", + "line": 241, + "column": 16, + "index": 9701 + }, + { + "filePath": "src/components/program/ProgramCourses.jsx", + "line": 93, + "column": 18, + "index": 3657 + }, + { + "filePath": "src/components/search/AssignmentsOnlyEmptyState.jsx", + "line": 21, + "column": 6, + "index": 805 + }, + { + "filePath": "src/components/search/SearchError.jsx", + "line": 11, + "column": 4, + "index": 325 + }, + { + "filePath": "src/components/search/SearchNoResults.jsx", + "line": 14, + "column": 6, + "index": 385 + }, + { + "filePath": "src/components/skills-quiz/SearchCourseCard.jsx", + "line": 71, + "column": 6, + "index": 2648 + }, + { + "filePath": "src/components/skills-quiz/SearchProgramCard.jsx", + "line": 141, + "column": 6, + "index": 4892 + }, + { + "filePath": "src/components/skills-quiz/SkillsCourses.jsx", + "line": 162, + "column": 10, + "index": 5472 + } + ], + "Alert.Heading": [ + { + "filePath": "src/components/budget-expiry-notification/index.jsx", + "line": 79, + "column": 10, + "index": 2275 + }, + { + "filePath": "src/components/course/LicenseRequestedAlert.jsx", + "line": 45, + "column": 8, + "index": 1878 + }, + { + "filePath": "src/components/course/routes/ExternalCourseEnrollment.jsx", + "line": 119, + "column": 16, + "index": 5071 + }, + { + "filePath": "src/components/dashboard/main-content/course-enrollments/CourseAssignmentAlert.jsx", + "line": 116, + "column": 6, + "index": 4258 + }, + { + "filePath": "src/components/dashboard/main-content/course-enrollments/NewGroupAssignmentAlert.jsx", + "line": 37, + "column": 6, + "index": 1069 + }, + { + "filePath": "src/components/enterprise-user-subsidy/enterprise-offers/EnterpriseOffersBalanceAlert.jsx", + "line": 88, + "column": 8, + "index": 3690 + }, + { + "filePath": "src/components/search/AssignmentsOnlyEmptyState.jsx", + "line": 46, + "column": 10, + "index": 1707 + }, + { + "filePath": "src/components/search/SearchError.jsx", + "line": 17, + "column": 6, + "index": 425 + }, + { + "filePath": "src/components/search/SearchNoResults.jsx", + "line": 21, + "column": 8, + "index": 520 + } + ], + "Row": [ + { + "filePath": "src/components/course/course-header/CourseHeader.jsx", + "line": 62, + "column": 8, + "index": 2392 + }, + { + "filePath": "src/components/course/course-header/CourseImportantDates.jsx", + "line": 46, + "column": 2, + "index": 1531 + }, + { + "filePath": "src/components/course/CourseReview.jsx", + "line": 94, + "column": 6, + "index": 3844 + }, + { + "filePath": "src/components/course/CourseReview.jsx", + "line": 105, + "column": 6, + "index": 4200 + }, + { + "filePath": "src/components/course/CourseReview.jsx", + "line": 187, + "column": 6, + "index": 7882 + }, + { + "filePath": "src/components/course/CourseSidebarListItem.jsx", + "line": 10, + "column": 2, + "index": 186 + }, + { + "filePath": "src/components/course/routes/CourseAbout.jsx", + "line": 35, + "column": 8, + "index": 1121 + }, + { + "filePath": "src/components/course/routes/CourseAbout.jsx", + "line": 48, + "column": 10, + "index": 1501 + }, + { + "filePath": "src/components/course/routes/ExternalCourseEnrollment.jsx", + "line": 95, + "column": 10, + "index": 3972 + }, + { + "filePath": "src/components/course/routes/ExternalCourseEnrollmentConfirmation.jsx", + "line": 29, + "column": 10, + "index": 1061 + }, + { + "filePath": "src/components/course/routes/ExternalCourseEnrollmentConfirmation.jsx", + "line": 57, + "column": 10, + "index": 2271 + }, + { + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/BaseCourseCard.jsx", + "line": 507, + "column": 6, + "index": 15885 + }, + { + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/BaseCourseCard.jsx", + "line": 605, + "column": 16, + "index": 18823 + }, + { + "filePath": "src/components/dashboard/main-content/CoursesTabComponent.jsx", + "line": 13, + "column": 2, + "index": 404 + }, + { + "filePath": "src/components/enterprise-banner/EnterpriseBanner.jsx", + "line": 19, + "column": 8, + "index": 564 + }, + { + "filePath": "src/components/executive-education-2u/components/CourseSummaryCard.jsx", + "line": 44, + "column": 10, + "index": 1393 + }, + { + "filePath": "src/components/executive-education-2u/components/CourseSummaryCard.jsx", + "line": 46, + "column": 14, + "index": 1488 + }, + { + "filePath": "src/components/executive-education-2u/components/CourseSummaryCard.jsx", + "line": 55, + "column": 16, + "index": 1883 + }, + { + "filePath": "src/components/executive-education-2u/components/CourseSummaryCard.jsx", + "line": 72, + "column": 55, + "index": 2972 + }, + { + "filePath": "src/components/executive-education-2u/components/CourseSummaryCard.jsx", + "line": 74, + "column": 16, + "index": 3128 + }, + { + "filePath": "src/components/executive-education-2u/components/CourseSummaryCard.jsx", + "line": 82, + "column": 55, + "index": 3663 + }, + { + "filePath": "src/components/executive-education-2u/components/CourseSummaryCard.jsx", + "line": 84, + "column": 16, + "index": 3791 + }, + { + "filePath": "src/components/executive-education-2u/components/CourseSummaryCard.jsx", + "line": 93, + "column": 20, + "index": 4344 + }, + { + "filePath": "src/components/executive-education-2u/components/EnrollmentCompletedSummaryCard.jsx", + "line": 14, + "column": 6, + "index": 534 + }, + { + "filePath": "src/components/executive-education-2u/components/ErrorPageContent.jsx", + "line": 37, + "column": 6, + "index": 1278 + }, + { + "filePath": "src/components/executive-education-2u/components/RegistrationSummaryCard.jsx", + "line": 16, + "column": 8, + "index": 554 + }, + { + "filePath": "src/components/executive-education-2u/components/RegistrationSummaryCard.jsx", + "line": 36, + "column": 14, + "index": 1574 + }, + { + "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", + "line": 259, + "column": 16, + "index": 10577 + }, + { + "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", + "line": 307, + "column": 16, + "index": 12877 + }, + { + "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", + "line": 343, + "column": 18, + "index": 14664 + }, + { + "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", + "line": 392, + "column": 16, + "index": 17496 + }, + { + "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", + "line": 437, + "column": 16, + "index": 19926 + }, + { + "filePath": "src/components/microlearning/VideoDetailPage.jsx", + "line": 119, + "column": 6, + "index": 4352 + }, + { + "filePath": "src/components/my-career/AddJobRole.jsx", + "line": 39, + "column": 4, + "index": 1077 + }, + { + "filePath": "src/components/my-career/MyCareerTabSkeleton.jsx", + "line": 11, + "column": 4, + "index": 165 + }, + { + "filePath": "src/components/my-career/VisualizeCareer.jsx", + "line": 114, + "column": 10, + "index": 4012 + }, + { + "filePath": "src/components/my-career/VisualizeCareer.jsx", + "line": 144, + "column": 10, + "index": 5570 + }, + { + "filePath": "src/components/pathway/PathwayModal.jsx", + "line": 31, + "column": 4, + "index": 1141 + }, + { + "filePath": "src/components/pathway/PathwayModal.jsx", + "line": 135, + "column": 8, + "index": 4341 + }, + { + "filePath": "src/components/pathway/PathwayModal.jsx", + "line": 207, + "column": 10, + "index": 7830 + }, + { + "filePath": "src/components/program-progress/ProgramProgressCourses.jsx", + "line": 85, + "column": 4, + "index": 2818 + }, + { + "filePath": "src/components/program-progress/ProgramProgressCourses.jsx", + "line": 108, + "column": 6, + "index": 3681 + }, + { + "filePath": "src/components/program-progress/ProgramProgressPage.jsx", + "line": 62, + "column": 8, + "index": 2548 + }, + { + "filePath": "src/components/program/ProgramPage.jsx", + "line": 41, + "column": 8, + "index": 1406 + }, + { + "filePath": "src/components/program/ProgramPage.jsx", + "line": 53, + "column": 8, + "index": 1740 + }, + { + "filePath": "src/components/program/ProgramSidebarListItem.jsx", + "line": 9, + "column": 2, + "index": 160 + }, + { + "filePath": "src/components/search/AssignmentsOnlyEmptyState.jsx", + "line": 62, + "column": 6, + "index": 2470 + }, + { + "filePath": "src/components/skills-quiz/SkillsQuiz.jsx", + "line": 29, + "column": 8, + "index": 1206 + } + ], + "Col": [ + { + "filePath": "src/components/course/course-header/CourseHeader.jsx", + "line": 63, + "column": 10, + "index": 2425 + }, + { + "filePath": "src/components/course/course-header/CourseHeader.jsx", + "line": 127, + "column": 10, + "index": 4888 + }, + { + "filePath": "src/components/course/course-header/CourseHeader.jsx", + "line": 134, + "column": 10, + "index": 5205 + }, + { + "filePath": "src/components/course/course-header/CourseImportantDates.jsx", + "line": 47, + "column": 4, + "index": 1601 + }, + { + "filePath": "src/components/course/course-header/CourseImportantDates.jsx", + "line": 53, + "column": 4, + "index": 1757 + }, + { + "filePath": "src/components/course/CourseReview.jsx", + "line": 95, + "column": 8, + "index": 3884 + }, + { + "filePath": "src/components/course/CourseReview.jsx", + "line": 106, + "column": 8, + "index": 4214 + }, + { + "filePath": "src/components/course/CourseReview.jsx", + "line": 123, + "column": 8, + "index": 5016 + }, + { + "filePath": "src/components/course/CourseReview.jsx", + "line": 146, + "column": 8, + "index": 6007 + }, + { + "filePath": "src/components/course/CourseReview.jsx", + "line": 166, + "column": 8, + "index": 6937 + }, + { + "filePath": "src/components/course/CourseReview.jsx", + "line": 188, + "column": 8, + "index": 7922 + }, + { + "filePath": "src/components/course/CourseSidebarListItem.jsx", + "line": 11, + "column": 4, + "index": 260 + }, + { + "filePath": "src/components/course/CourseSidebarListItem.jsx", + "line": 15, + "column": 4, + "index": 390 + }, + { + "filePath": "src/components/course/routes/CourseAbout.jsx", + "line": 49, + "column": 12, + "index": 1519 + }, + { + "filePath": "src/components/course/routes/ExternalCourseEnrollment.jsx", + "line": 96, + "column": 12, + "index": 3990 + }, + { + "filePath": "src/components/course/routes/ExternalCourseEnrollmentConfirmation.jsx", + "line": 30, + "column": 12, + "index": 1096 + }, + { + "filePath": "src/components/course/routes/ExternalCourseEnrollmentConfirmation.jsx", + "line": 58, + "column": 12, + "index": 2289 + }, + { + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/BaseCourseCard.jsx", + "line": 508, + "column": 8, + "index": 15899 + }, + { + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/BaseCourseCard.jsx", + "line": 606, + "column": 18, + "index": 18876 + }, + { + "filePath": "src/components/enterprise-banner/EnterpriseBanner.jsx", + "line": 20, + "column": 10, + "index": 580 + }, + { + "filePath": "src/components/error-page/ErrorPage.jsx", + "line": 33, + "column": 8, + "index": 964 + }, + { + "filePath": "src/components/executive-education-2u/components/CourseSummaryCard.jsx", + "line": 45, + "column": 12, + "index": 1411 + }, + { + "filePath": "src/components/executive-education-2u/components/CourseSummaryCard.jsx", + "line": 47, + "column": 16, + "index": 1510 + }, + { + "filePath": "src/components/executive-education-2u/components/CourseSummaryCard.jsx", + "line": 53, + "column": 12, + "index": 1799 + }, + { + "filePath": "src/components/executive-education-2u/components/CourseSummaryCard.jsx", + "line": 56, + "column": 18, + "index": 1938 + }, + { + "filePath": "src/components/executive-education-2u/components/CourseSummaryCard.jsx", + "line": 72, + "column": 18, + "index": 2935 + }, + { + "filePath": "src/components/executive-education-2u/components/CourseSummaryCard.jsx", + "line": 75, + "column": 18, + "index": 3183 + }, + { + "filePath": "src/components/executive-education-2u/components/CourseSummaryCard.jsx", + "line": 82, + "column": 18, + "index": 3626 + }, + { + "filePath": "src/components/executive-education-2u/components/CourseSummaryCard.jsx", + "line": 85, + "column": 18, + "index": 3846 + }, + { + "filePath": "src/components/executive-education-2u/components/CourseSummaryCard.jsx", + "line": 92, + "column": 18, + "index": 4286 + }, + { + "filePath": "src/components/executive-education-2u/components/EnrollmentCompletedSummaryCard.jsx", + "line": 15, + "column": 8, + "index": 565 + }, + { + "filePath": "src/components/executive-education-2u/components/EnrollmentCompletedSummaryCard.jsx", + "line": 25, + "column": 8, + "index": 839 + }, + { + "filePath": "src/components/executive-education-2u/components/ErrorPageContent.jsx", + "line": 38, + "column": 8, + "index": 1292 + }, + { + "filePath": "src/components/executive-education-2u/components/RegistrationSummaryCard.jsx", + "line": 17, + "column": 10, + "index": 570 + }, + { + "filePath": "src/components/executive-education-2u/components/RegistrationSummaryCard.jsx", + "line": 34, + "column": 10, + "index": 1445 + }, + { + "filePath": "src/components/executive-education-2u/components/RegistrationSummaryCard.jsx", + "line": 37, + "column": 16, + "index": 1596 + }, + { + "filePath": "src/components/executive-education-2u/components/RegistrationSummaryCard.jsx", + "line": 44, + "column": 16, + "index": 2060 + }, + { + "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", + "line": 260, + "column": 18, + "index": 10618 + }, + { + "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", + "line": 283, + "column": 18, + "index": 11765 + }, + { + "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", + "line": 308, + "column": 18, + "index": 12918 + }, + { + "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", + "line": 344, + "column": 20, + "index": 14690 + }, + { + "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", + "line": 393, + "column": 18, + "index": 17520 + }, + { + "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", + "line": 438, + "column": 18, + "index": 19967 + }, + { + "filePath": "src/components/my-career/MyCareerTabSkeleton.jsx", + "line": 12, + "column": 6, + "index": 177 + }, + { + "filePath": "src/components/my-career/MyCareerTabSkeleton.jsx", + "line": 18, + "column": 6, + "index": 302 + }, + { + "filePath": "src/components/pathway/PathwayModal.jsx", + "line": 32, + "column": 6, + "index": 1188 + }, + { + "filePath": "src/components/pathway/PathwayModal.jsx", + "line": 41, + "column": 6, + "index": 1419 + }, + { + "filePath": "src/components/pathway/PathwayModal.jsx", + "line": 54, + "column": 6, + "index": 1763 + }, + { + "filePath": "src/components/pathway/PathwayModal.jsx", + "line": 136, + "column": 10, + "index": 4384 + }, + { + "filePath": "src/components/pathway/PathwayModal.jsx", + "line": 159, + "column": 10, + "index": 5510 + }, + { + "filePath": "src/components/pathway/PathwayModal.jsx", + "line": 181, + "column": 10, + "index": 6574 + }, + { + "filePath": "src/components/program-progress/ProgramProgressCourses.jsx", + "line": 86, + "column": 6, + "index": 2877 + }, + { + "filePath": "src/components/program-progress/ProgramProgressCourses.jsx", + "line": 109, + "column": 8, + "index": 3760 + }, + { + "filePath": "src/components/program-progress/ProgramProgressCourses.jsx", + "line": 255, + "column": 61, + "index": 10297 + }, + { + "filePath": "src/components/program/ProgramSidebarListItem.jsx", + "line": 10, + "column": 4, + "index": 234 + }, + { + "filePath": "src/components/program/ProgramSidebarListItem.jsx", + "line": 14, + "column": 4, + "index": 364 + }, + { + "filePath": "src/components/search/AssignmentsOnlyEmptyState.jsx", + "line": 63, + "column": 8, + "index": 2484 + } + ], + "Badge": [ + { + "filePath": "src/components/course/course-header/CourseHeader.jsx", + "line": 102, + "column": 16, + "index": 3896 + }, + { + "filePath": "src/components/course/CourseSkills.jsx", + "line": 58, + "column": 12, + "index": 2171 + }, + { + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/BaseCourseCard.jsx", + "line": 539, + "column": 11, + "index": 16546 + }, + { + "filePath": "src/components/dashboard/sidebar/CouponCodesSummaryCard.jsx", + "line": 109, + "column": 14, + "index": 4050 + }, + { + "filePath": "src/components/dashboard/sidebar/LearnerCreditSummaryCard.jsx", + "line": 69, + "column": 4, + "index": 2508 + }, + { + "filePath": "src/components/dashboard/sidebar/SubscriptionSummaryCard.jsx", + "line": 80, + "column": 16, + "index": 3143 + }, + { + "filePath": "src/components/dashboard/sidebar/SubscriptionSummaryCard.jsx", + "line": 108, + "column": 12, + "index": 4057 + }, + { + "filePath": "src/components/microlearning/BetaBadge.jsx", + "line": 24, + "column": 4, + "index": 868 + }, + { + "filePath": "src/components/microlearning/VideoDetailPage.jsx", + "line": 151, + "column": 22, + "index": 5869 + }, + { + "filePath": "src/components/pathway-progress/PathwayNode.jsx", + "line": 46, + "column": 20, + "index": 1521 + }, + { + "filePath": "src/components/pathway-progress/SubscriptionStatusCard.jsx", + "line": 27, + "column": 12, + "index": 1174 + }, + { + "filePath": "src/components/pathway/SearchPathwayCard.jsx", + "line": 140, + "column": 16, + "index": 4137 + }, + { + "filePath": "src/components/search/SearchProgramCard.jsx", + "line": 134, + "column": 8, + "index": 3976 + }, + { + "filePath": "src/components/skills-quiz/CourseCard.jsx", + "line": 85, + "column": 12, + "index": 2946 + }, + { + "filePath": "src/components/skills-quiz/SearchProgramCard.jsx", + "line": 204, + "column": 22, + "index": 7091 + }, + { + "filePath": "src/components/skills-quiz/SearchProgramCard.jsx", + "line": 211, + "column": 16, + "index": 7368 + }, + { + "filePath": "src/components/skills-quiz/SelectedJobSkills.jsx", + "line": 14, + "column": 10, + "index": 484 + }, + { + "filePath": "src/components/skills-quiz/SkillsCourses.jsx", + "line": 110, + "column": 10, + "index": 3546 + }, + { + "filePath": "src/components/skills-quiz/TopSkillsOverview.jsx", + "line": 79, + "column": 18, + "index": 2636 + }, + { + "filePath": "src/components/skills-quiz/TopSkillsOverview.jsx", + "line": 87, + "column": 18, + "index": 2850 + } + ], + "Stack": [ + { + "filePath": "src/components/course/course-header/CourseImportantDates.jsx", + "line": 48, + "column": 6, + "index": 1630 + }, + { + "filePath": "src/components/course/course-header/data/hooks/useCourseRunCardAction.jsx", + "line": 74, + "column": 6, + "index": 2938 + }, + { + "filePath": "src/components/course/course-header/data/hooks/useCourseRunCardAction.jsx", + "line": 110, + "column": 4, + "index": 4042 + }, + { + "filePath": "src/components/course/EnrollModal.jsx", + "line": 123, + "column": 4, + "index": 5969 + }, + { + "filePath": "src/components/course/EnrollModal.jsx", + "line": 161, + "column": 12, + "index": 7150 + }, + { + "filePath": "src/components/course/routes/ExternalCourseEnrollmentConfirmation.jsx", + "line": 31, + "column": 14, + "index": 1116 + }, + { + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/BaseCourseCard.jsx", + "line": 387, + "column": 6, + "index": 11834 + }, + { + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/BaseCourseCard.jsx", + "line": 443, + "column": 6, + "index": 14045 + }, + { + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/BaseCourseCard.jsx", + "line": 545, + "column": 6, + "index": 16788 + }, + { + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/BaseCourseCard.jsx", + "line": 576, + "column": 12, + "index": 17576 + }, + { + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/BaseCourseCard.jsx", + "line": 579, + "column": 18, + "index": 17700 + }, + { + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/InProgressCourseCard.jsx", + "line": 97, + "column": 4, + "index": 3807 + }, + { + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/InProgressCourseCard.jsx", + "line": 124, + "column": 6, + "index": 4625 + }, + { + "filePath": "src/components/dashboard/main-content/DashboardMainContent.jsx", + "line": 11, + "column": 2, + "index": 385 + }, + { + "filePath": "src/components/dashboard/sidebar/CouponCodesSummaryCard.jsx", + "line": 61, + "column": 12, + "index": 2083 + }, + { + "filePath": "src/components/dashboard/sidebar/CouponCodesSummaryCard.jsx", + "line": 97, + "column": 10, + "index": 3433 + }, + { + "filePath": "src/components/dashboard/sidebar/LearnerCreditSummaryCard.jsx", + "line": 106, + "column": 12, + "index": 3572 + }, + { + "filePath": "src/components/dashboard/sidebar/SubscriptionSummaryCard.jsx", + "line": 71, + "column": 12, + "index": 2673 + }, + { + "filePath": "src/components/dashboard/sidebar/SubscriptionSummaryCard.jsx", + "line": 100, + "column": 10, + "index": 3613 + }, + { + "filePath": "src/components/pathway/SearchPathwayCard.jsx", + "line": 138, + "column": 12, + "index": 3952 + }, + { + "filePath": "src/components/progress-category-bubbles/ProgressCategoryBubbles.jsx", + "line": 7, + "column": 2, + "index": 257 + }, + { + "filePath": "src/components/search/AssignmentsOnlyEmptyState.jsx", + "line": 45, + "column": 8, + "index": 1681 + }, + { + "filePath": "src/components/search/content-highlights/ContentHighlights.jsx", + "line": 26, + "column": 6, + "index": 915 + }, + { + "filePath": "src/components/search/Search.jsx", + "line": 156, + "column": 10, + "index": 5652 + }, + { + "filePath": "src/components/site-header/SiteHeaderLogos.jsx", + "line": 32, + "column": 4, + "index": 932 + }, + { + "filePath": "src/components/skills-quiz-v2/JobCardComponent.jsx", + "line": 128, + "column": 6, + "index": 4111 + }, + { + "filePath": "src/components/skills-quiz/CourseCard.jsx", + "line": 79, + "column": 8, + "index": 2701 + }, + { + "filePath": "src/components/skills-quiz/SearchProgramCard.jsx", + "line": 201, + "column": 16, + "index": 6846 + }, + { + "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", + "line": 326, + "column": 20, + "index": 13412 + } + ], + "Icon": [ + { + "filePath": "src/components/course/course-header/CourseImportantDates.jsx", + "line": 49, + "column": 8, + "index": 1677 + }, + { + "filePath": "src/components/course/CourseReview.jsx", + "line": 133, + "column": 12, + "index": 5512 + }, + { + "filePath": "src/components/course/CourseSidebarListItem.jsx", + "line": 12, + "column": 6, + "index": 310 + }, + { + "filePath": "src/components/course/EnrollModal.jsx", + "line": 124, + "column": 6, + "index": 6014 + }, + { + "filePath": "src/components/course/VerifiedCertPitch.jsx", + "line": 11, + "column": 4, + "index": 424 + }, + { + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/BaseCourseCard.jsx", + "line": 319, + "column": 20, + "index": 9980 + }, + { + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/BaseCourseCard.jsx", + "line": 394, + "column": 18, + "index": 12195 + }, + { + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/BaseCourseCard.jsx", + "line": 449, + "column": 20, + "index": 14478 + }, + { + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/BaseCourseCard.jsx", + "line": 550, + "column": 8, + "index": 16905 + }, + { + "filePath": "src/components/microlearning/VideoCourseReview.jsx", + "line": 43, + "column": 14, + "index": 1742 + }, + { + "filePath": "src/components/microlearning/VideoDetailPage.jsx", + "line": 225, + "column": 18, + "index": 9223 + }, + { + "filePath": "src/components/microlearning/VideoDetailPage.jsx", + "line": 237, + "column": 16, + "index": 10012 + }, + { + "filePath": "src/components/microlearning/VideoDetailPage.jsx", + "line": 245, + "column": 18, + "index": 10507 + }, + { + "filePath": "src/components/microlearning/VideoFeedbackCard.jsx", + "line": 92, + "column": 26, + "index": 3109 + }, + { + "filePath": "src/components/microlearning/VideoFeedbackCard.jsx", + "line": 101, + "column": 26, + "index": 3511 + }, + { + "filePath": "src/components/microlearning/VideoFeedbackCard.jsx", + "line": 111, + "column": 26, + "index": 3988 + }, + { + "filePath": "src/components/microlearning/VideoFeedbackCard.jsx", + "line": 199, + "column": 26, + "index": 7612 + }, + { + "filePath": "src/components/my-career/AddJobRole.jsx", + "line": 15, + "column": 2, + "index": 644 + }, + { + "filePath": "src/components/my-career/VisualizeCareer.jsx", + "line": 18, + "column": 2, + "index": 728 + }, + { + "filePath": "src/components/pathway-progress/PathwayStep.jsx", + "line": 45, + "column": 20, + "index": 1549 + }, + { + "filePath": "src/components/pathway-progress/PathwayStep.jsx", + "line": 46, + "column": 22, + "index": 1598 + }, + { + "filePath": "src/components/pathway/PathwayModal.jsx", + "line": 139, + "column": 16, + "index": 4567 + }, + { + "filePath": "src/components/pathway/PathwayModal.jsx", + "line": 162, + "column": 16, + "index": 5699 + }, + { + "filePath": "src/components/pathway/PathwayModal.jsx", + "line": 184, + "column": 16, + "index": 6747 + }, + { + "filePath": "src/components/preview-expand/PreviewExpand.jsx", + "line": 26, + "column": 8, + "index": 752 + }, + { + "filePath": "src/components/program/ProgramCourses.jsx", + "line": 42, + "column": 40, + "index": 1490 + }, + { + "filePath": "src/components/program/ProgramCourses.jsx", + "line": 45, + "column": 18, + "index": 1675 + }, + { + "filePath": "src/components/program/ProgramCourses.jsx", + "line": 49, + "column": 18, + "index": 1823 + }, + { + "filePath": "src/components/program/ProgramCourses.jsx", + "line": 58, + "column": 22, + "index": 2250 + }, + { + "filePath": "src/components/program/ProgramFAQ.jsx", + "line": 21, + "column": 26, + "index": 669 + }, + { + "filePath": "src/components/program/ProgramFAQ.jsx", + "line": 22, + "column": 28, + "index": 724 + }, + { + "filePath": "src/components/program/ProgramSidebarListItem.jsx", + "line": 11, + "column": 6, + "index": 284 + }, + { + "filePath": "src/components/search/content-highlights/HighlightedContentCard.jsx", + "line": 79, + "column": 12, + "index": 2294 + }, + { + "filePath": "src/components/search/SearchProgramCard.jsx", + "line": 140, + "column": 12, + "index": 4167 + }, + { + "filePath": "src/components/search/SearchVideoCard.jsx", + "line": 85, + "column": 8, + "index": 2664 + }, + { + "filePath": "src/components/skills-quiz/SearchProgramCard.jsx", + "line": 217, + "column": 20, + "index": 7607 + }, + { + "filePath": "src/components/system-wide-banner/SystemWideWarningBanner.jsx", + "line": 8, + "column": 4, + "index": 262 + } + ], + "Calendar": [ + { + "filePath": "src/components/course/course-header/CourseImportantDates.jsx", + "line": 49, + "column": 29, + "index": 1698 + } + ], + "Skeleton": [ + { + "filePath": "src/components/course/course-header/CoursePreview.jsx", + "line": 13, + "column": 6, + "index": 554 + }, + { + "filePath": "src/components/course/CourseSidebarPrice.jsx", + "line": 27, + "column": 11, + "index": 926 + }, + { + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/BaseCourseCard.jsx", + "line": 572, + "column": 12, + "index": 17500 + }, + { + "filePath": "src/components/dashboard/main-content/course-enrollments/CourseSection.jsx", + "line": 114, + "column": 14, + "index": 3585 + }, + { + "filePath": "src/components/microlearning/VideoDetailPage.jsx", + "line": 29, + "column": 6, + "index": 1395 + }, + { + "filePath": "src/components/my-career/MyCareerTabSkeleton.jsx", + "line": 14, + "column": 10, + "index": 213 + }, + { + "filePath": "src/components/my-career/MyCareerTabSkeleton.jsx", + "line": 16, + "column": 8, + "index": 260 + }, + { + "filePath": "src/components/my-career/MyCareerTabSkeleton.jsx", + "line": 21, + "column": 12, + "index": 371 + }, + { + "filePath": "src/components/pathway/PathwayModal.jsx", + "line": 111, + "column": 28, + "index": 3705 + }, + { + "filePath": "src/components/pathway/PathwayModal.jsx", + "line": 123, + "column": 8, + "index": 4070 + }, + { + "filePath": "src/components/pathway/PathwayModal.jsx", + "line": 137, + "column": 25, + "index": 4447 + }, + { + "filePath": "src/components/pathway/PathwayModal.jsx", + "line": 160, + "column": 25, + "index": 5573 + }, + { + "filePath": "src/components/pathway/PathwayModal.jsx", + "line": 182, + "column": 25, + "index": 6620 + }, + { + "filePath": "src/components/pathway/PathwayModal.jsx", + "line": 206, + "column": 21, + "index": 7735 + }, + { + "filePath": "src/components/pathway/PathwayModal.jsx", + "line": 214, + "column": 10, + "index": 8117 + }, + { + "filePath": "src/components/search/content-highlights/ContentHighlightSet.jsx", + "line": 114, + "column": 27, + "index": 3627 + }, + { + "filePath": "src/components/search/popular-results/PopularResults.jsx", + "line": 30, + "column": 10, + "index": 1026 + }, + { + "filePath": "src/components/search/SearchResults.jsx", + "line": 140, + "column": 12, + "index": 4364 + }, + { + "filePath": "src/components/search/SearchResults.jsx", + "line": 162, + "column": 10, + "index": 5098 + }, + { + "filePath": "src/components/skills-quiz/JobDescriptions.jsx", + "line": 20, + "column": 37, + "index": 1033 + }, + { + "filePath": "src/components/skills-quiz/SkillsCourses.jsx", + "line": 107, + "column": 12, + "index": 3427 + } + ], + "PlayCircleFilled": [ + { + "filePath": "src/components/course/course-header/CoursePreview.jsx", + "line": 43, + "column": 16, + "index": 1453 + } + ], + "Card.Status": [ + { + "filePath": "src/components/course/course-header/CourseRunCardStatus.jsx", + "line": 42, + "column": 6, + "index": 1982 + }, + { + "filePath": "src/components/course/course-header/CourseRunCardStatus.jsx", + "line": 49, + "column": 6, + "index": 2194 + } + ], + "Lock": [ + { + "filePath": "src/components/course/course-header/CourseRunCardStatus.jsx", + "line": 46, + "column": 14, + "index": 2163 + }, + { + "filePath": "src/components/course/course-header/CourseRunCardStatus.jsx", + "line": 51, + "column": 14, + "index": 2247 + } + ], + "Error": [ + { + "filePath": "src/components/course/CourseEnrollmentFailedAlert.jsx", + "line": 109, + "column": 36, + "index": 3723 + }, + { + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/email-settings/EmailSettingsModal.jsx", + "line": 137, + "column": 40, + "index": 3465 + }, + { + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/mark-complete-modal/ModalError.jsx", + "line": 10, + "column": 34, + "index": 350 + }, + { + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/move-to-in-progress-modal/ModalError.jsx", + "line": 10, + "column": 34, + "index": 362 + } + ], + "MediaQuery": [ + { + "filePath": "src/components/course/CourseMainContent.jsx", + "line": 37, + "column": 6, + "index": 1039 + }, + { + "filePath": "src/components/course/routes/CourseAbout.jsx", + "line": 39, + "column": 10, + "index": 1220 + }, + { + "filePath": "src/components/dashboard/main-content/CoursesTabComponent.jsx", + "line": 18, + "column": 4, + "index": 604 + }, + { + "filePath": "src/components/dashboard/main-content/DashboardMainContent.jsx", + "line": 12, + "column": 4, + "index": 405 + }, + { + "filePath": "src/components/dashboard/main-content/DashboardMainContent.jsx", + "line": 23, + "column": 4, + "index": 757 + }, + { + "filePath": "src/components/my-career/AddJobRole.jsx", + "line": 95, + "column": 6, + "index": 3510 + }, + { + "filePath": "src/components/program-progress/ProgramProgressPage.jsx", + "line": 122, + "column": 10, + "index": 5289 + }, + { + "filePath": "src/components/program/ProgramEndorsements.jsx", + "line": 15, + "column": 8, + "index": 705 + }, + { + "filePath": "src/components/program/ProgramPage.jsx", + "line": 45, + "column": 10, + "index": 1506 + }, + { + "filePath": "src/components/site-header/SiteHeader.jsx", + "line": 82, + "column": 6, + "index": 2855 + }, + { + "filePath": "src/components/site-header/SiteHeader.jsx", + "line": 85, + "column": 6, + "index": 2940 + } + ], + "breakpoints": [ + { + "filePath": "src/components/course/CourseMainContent.jsx", + "line": 37, + "column": 28, + "index": 1061 + }, + { + "filePath": "src/components/course/routes/CourseAbout.jsx", + "line": 39, + "column": 32, + "index": 1242 + }, + { + "filePath": "src/components/course/routes/tests/CourseAbout.test.jsx", + "line": 55, + "column": 36, + "index": 1914 + }, + { + "filePath": "src/components/course/routes/tests/CourseAbout.test.jsx", + "line": 105, + "column": 74, + "index": 3973 + }, + { + "filePath": "src/components/dashboard/main-content/CoursesTabComponent.jsx", + "line": 18, + "column": 26, + "index": 626 + }, + { + "filePath": "src/components/dashboard/main-content/DashboardMainContent.jsx", + "line": 12, + "column": 26, + "index": 427 + }, + { + "filePath": "src/components/dashboard/main-content/DashboardMainContent.jsx", + "line": 23, + "column": 26, + "index": 779 + }, + { + "filePath": "src/components/dashboard/tests/DashboardPage.test.jsx", + "line": 184, + "column": 9, + "index": 5679 + }, + { + "filePath": "src/components/dashboard/tests/DashboardPage.test.jsx", + "line": 353, + "column": 62, + "index": 11282 + }, + { + "filePath": "src/components/my-career/AddJobRole.jsx", + "line": 95, + "column": 28, + "index": 3532 + }, + { + "filePath": "src/components/program-progress/ProgramListingCard.jsx", + "line": 31, + "column": 23, + "index": 986 + }, + { + "filePath": "src/components/program-progress/ProgramListingCard.jsx", + "line": 33, + "column": 30, + "index": 1094 + }, + { + "filePath": "src/components/program-progress/ProgramListingCard.jsx", + "line": 35, + "column": 30, + "index": 1204 + }, + { + "filePath": "src/components/program-progress/ProgramProgressPage.jsx", + "line": 122, + "column": 32, + "index": 5311 + }, + { + "filePath": "src/components/program/ProgramEndorsements.jsx", + "line": 15, + "column": 30, + "index": 727 + }, + { + "filePath": "src/components/program/ProgramHeader.jsx", + "line": 23, + "column": 67, + "index": 905 + }, + { + "filePath": "src/components/program/ProgramPage.jsx", + "line": 45, + "column": 32, + "index": 1528 + }, + { + "filePath": "src/components/search/content-highlights/ContentHighlightSet.jsx", + "line": 64, + "column": 26, + "index": 2006 + }, + { + "filePath": "src/components/site-header/tests/SiteHeader.test.jsx", + "line": 61, + "column": 9, + "index": 1787 + } + ], + "Card.ImageCap": [ + { + "filePath": "src/components/course/CourseRecommendationCard.jsx", + "line": 53, + "column": 6, + "index": 1868 + }, + { + "filePath": "src/components/pathway-progress/PathwayProgressCard.jsx", + "line": 20, + "column": 6, + "index": 861 + }, + { + "filePath": "src/components/pathway/SearchPathwayCard.jsx", + "line": 126, + "column": 8, + "index": 3602 + }, + { + "filePath": "src/components/program-progress/ProgramListingCard.jsx", + "line": 59, + "column": 6, + "index": 1897 + }, + { + "filePath": "src/components/search/content-highlights/HighlightedContentCard.jsx", + "line": 60, + "column": 6, + "index": 1622 + }, + { + "filePath": "src/components/search/SearchCourseCard.jsx", + "line": 102, + "column": 6, + "index": 2922 + }, + { + "filePath": "src/components/search/SearchProgramCard.jsx", + "line": 114, + "column": 6, + "index": 3368 + }, + { + "filePath": "src/components/search/SearchVideoCard.jsx", + "line": 58, + "column": 6, + "index": 1650 + }, + { + "filePath": "src/components/skills-quiz/CardLoadingSkeleton.jsx", + "line": 11, + "column": 8, + "index": 320 + }, + { + "filePath": "src/components/skills-quiz/CourseCard.jsx", + "line": 59, + "column": 6, + "index": 2070 + }, + { + "filePath": "src/components/skills-quiz/SearchProgramCard.jsx", + "line": 181, + "column": 14, + "index": 6096 + } + ], + "Truncate": [ + { + "filePath": "src/components/course/CourseRecommendationCard.jsx", + "line": 61, + "column": 10, + "index": 2117 + }, + { + "filePath": "src/components/course/CourseRecommendationCard.jsx", + "line": 64, + "column": 10, + "index": 2246 + }, + { + "filePath": "src/components/pathway-progress/PathwayProgressCard.jsx", + "line": 29, + "column": 10, + "index": 1130 + }, + { + "filePath": "src/components/pathway/SearchPathwayCard.jsx", + "line": 133, + "column": 12, + "index": 3811 + }, + { + "filePath": "src/components/program-progress/ProgramListingCard.jsx", + "line": 71, + "column": 10, + "index": 2243 + }, + { + "filePath": "src/components/program-progress/ProgramListingCard.jsx", + "line": 74, + "column": 10, + "index": 2377 + }, + { + "filePath": "src/components/search/content-highlights/HighlightedContentCard.jsx", + "line": 69, + "column": 10, + "index": 1927 + }, + { + "filePath": "src/components/search/content-highlights/HighlightedContentCard.jsx", + "line": 72, + "column": 10, + "index": 2042 + }, + { + "filePath": "src/components/search/SearchCourseCard.jsx", + "line": 110, + "column": 32, + "index": 3217 + }, + { + "filePath": "src/components/search/SearchCourseCard.jsx", + "line": 112, + "column": 10, + "index": 3326 + }, + { + "filePath": "src/components/search/SearchProgramCard.jsx", + "line": 123, + "column": 10, + "index": 3646 + }, + { + "filePath": "src/components/search/SearchProgramCard.jsx", + "line": 127, + "column": 12, + "index": 3793 + }, + { + "filePath": "src/components/search/SearchVideoCard.jsx", + "line": 66, + "column": 32, + "index": 1929 + }, + { + "filePath": "src/components/search/SearchVideoCard.jsx", + "line": 68, + "column": 10, + "index": 2020 + }, + { + "filePath": "src/components/skills-quiz/CourseCard.jsx", + "line": 68, + "column": 10, + "index": 2360 + }, + { + "filePath": "src/components/skills-quiz/CourseCard.jsx", + "line": 73, + "column": 10, + "index": 2537 + }, + { + "filePath": "src/components/skills-quiz/SearchProgramCard.jsx", + "line": 190, + "column": 18, + "index": 6432 + }, + { + "filePath": "src/components/skills-quiz/SearchProgramCard.jsx", + "line": 195, + "column": 18, + "index": 6630 + } + ], + "Card.Footer": [ + { + "filePath": "src/components/course/CourseRecommendationCard.jsx", + "line": 71, + "column": 6, + "index": 2513 + }, + { + "filePath": "src/components/microlearning/VideoBanner.jsx", + "line": 46, + "column": 8, + "index": 1955 + }, + { + "filePath": "src/components/search/content-highlights/HighlightedContentCard.jsx", + "line": 76, + "column": 6, + "index": 2155 + }, + { + "filePath": "src/components/search/SearchCourseCard.jsx", + "line": 118, + "column": 6, + "index": 3488 + }, + { + "filePath": "src/components/search/SearchProgramCard.jsx", + "line": 145, + "column": 6, + "index": 4325 + }, + { + "filePath": "src/components/search/SearchVideoCard.jsx", + "line": 74, + "column": 6, + "index": 2136 + }, + { + "filePath": "src/components/skills-quiz/SearchProgramCard.jsx", + "line": 222, + "column": 14, + "index": 7805 + } + ], + "StarFilled": [ + { + "filePath": "src/components/course/CourseReview.jsx", + "line": 133, + "column": 46, + "index": 5546 + } + ], + "AccessTime": [ + { + "filePath": "src/components/course/CourseSidebar.jsx", + "line": 39, + "column": 22, + "index": 1766 + }, + { + "filePath": "src/components/program/ProgramSidebar.jsx", + "line": 44, + "column": 18, + "index": 1515 + } + ], + "Speed": [ + { + "filePath": "src/components/course/CourseSidebar.jsx", + "line": 52, + "column": 22, + "index": 2351 + }, + { + "filePath": "src/components/microlearning/VideoDetailPage.jsx", + "line": 245, + "column": 56, + "index": 10545 + }, + { + "filePath": "src/components/program/ProgramSidebar.jsx", + "line": 53, + "column": 18, + "index": 1731 + } + ], + "Tag": [ + { + "filePath": "src/components/course/CourseSidebar.jsx", + "line": 66, + "column": 16, + "index": 2921 + } + ], + "Institution": [ + { + "filePath": "src/components/course/CourseSidebar.jsx", + "line": 78, + "column": 18, + "index": 3336 + }, + { + "filePath": "src/components/course/CourseSidebar.jsx", + "line": 143, + "column": 18, + "index": 5708 + } + ], + "School": [ + { + "filePath": "src/components/course/CourseSidebar.jsx", + "line": 102, + "column": 18, + "index": 4201 + } + ], + "Equalizer": [ + { + "filePath": "src/components/course/CourseSidebar.jsx", + "line": 130, + "column": 18, + "index": 5197 + } + ], + "VideoFile": [ + { + "filePath": "src/components/course/CourseSidebar.jsx", + "line": 156, + "column": 18, + "index": 6242 + } + ], + "Person": [ + { + "filePath": "src/components/course/CourseSidebar.jsx", + "line": 165, + "column": 18, + "index": 6533 + }, + { + "filePath": "src/components/microlearning/VideoDetailPage.jsx", + "line": 237, + "column": 54, + "index": 10050 + }, + { + "filePath": "src/components/program/ProgramSidebar.jsx", + "line": 35, + "column": 18, + "index": 1295 + } + ], + "OverlayTrigger": [ + { + "filePath": "src/components/course/CourseSkills.jsx", + "line": 34, + "column": 10, + "index": 1060 + }, + { + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/UpgradeCourseButton.jsx", + "line": 43, + "column": 4, + "index": 1754 + }, + { + "filePath": "src/components/microlearning/BetaBadge.jsx", + "line": 8, + "column": 2, + "index": 203 + }, + { + "filePath": "src/components/microlearning/VideoCourseReview.jsx", + "line": 27, + "column": 8, + "index": 1035 + } + ], + "Popover": [ + { + "filePath": "src/components/course/CourseSkills.jsx", + "line": 39, + "column": 14, + "index": 1211 + } + ], + "Popover.Title": [ + { + "filePath": "src/components/course/CourseSkills.jsx", + "line": 40, + "column": 16, + "index": 1291 + } + ], + "Popover.Content": [ + { + "filePath": "src/components/course/CourseSkills.jsx", + "line": 41, + "column": 16, + "index": 1359 + } + ], + "StatefulButton": [ + { + "filePath": "src/components/course/EnrollModal.jsx", + "line": 296, + "column": 10, + "index": 11036 + }, + { + "filePath": "src/components/course/SubsidyRequestButton.jsx", + "line": 126, + "column": 4, + "index": 4462 + }, + { + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/email-settings/EmailSettingsModal.jsx", + "line": 123, + "column": 12, + "index": 3037 + }, + { + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/mark-complete-modal/MarkCompleteModal.jsx", + "line": 87, + "column": 12, + "index": 2858 + }, + { + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/move-to-in-progress-modal/MoveToInProgressModal.jsx", + "line": 81, + "column": 12, + "index": 2313 + }, + { + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/unenroll/UnenrollModal.jsx", + "line": 71, + "column": 10, + "index": 2136 + }, + { + "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", + "line": 453, + "column": 12, + "index": 20648 + }, + { + "filePath": "src/components/expired-subscription-modal/index.jsx", + "line": 46, + "column": 10, + "index": 1413 + }, + { + "filePath": "src/components/my-career/SearchJobRole.jsx", + "line": 122, + "column": 10, + "index": 4164 + }, + { + "filePath": "src/components/stateful-enroll/StatefulEnroll.jsx", + "line": 87, + "column": 4, + "index": 2415 + } + ], + "CheckCircle": [ + { + "filePath": "src/components/course/routes/ExternalCourseEnrollment.jsx", + "line": 107, + "column": 22, + "index": 4458 + }, + { + "filePath": "src/components/program-progress/ProgramProgressCourses.jsx", + "line": 94, + "column": 8, + "index": 3229 + } + ], + "ResponsiveContext.Provider": [ + { + "filePath": "src/components/course/routes/tests/CourseAbout.test.jsx", + "line": 59, + "column": 4, + "index": 2028 + } + ], + "RocketLaunch": [ + { + "filePath": "src/components/course/VerifiedCertPitch.jsx", + "line": 30, + "column": 37, + "index": 1131 + } + ], + "ContentPasteGo": [ + { + "filePath": "src/components/course/VerifiedCertPitch.jsx", + "line": 49, + "column": 37, + "index": 2015 + } + ], + "Tabs": [ + { + "filePath": "src/components/dashboard/DashboardPage.jsx", + "line": 92, + "column": 6, + "index": 2976 + } + ], + "Tab": [ + { + "filePath": "src/components/dashboard/data/useDashboardTabs.jsx", + "line": 73, + "column": 4, + "index": 2593 + }, + { + "filePath": "src/components/dashboard/data/useDashboardTabs.jsx", + "line": 84, + "column": 6, + "index": 2973 + }, + { + "filePath": "src/components/dashboard/data/useDashboardTabs.jsx", + "line": 97, + "column": 6, + "index": 3432 + }, + { + "filePath": "src/components/dashboard/data/useDashboardTabs.jsx", + "line": 110, + "column": 6, + "index": 3899 + } + ], + "Dropdown": [ + { + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/BaseCourseCard.jsx", + "line": 315, + "column": 8, + "index": 9867 + }, + { + "filePath": "src/components/error-page/ErrorPageHeader.jsx", + "line": 39, + "column": 14, + "index": 1287 + }, + { + "filePath": "src/components/program/ProgramCTA.jsx", + "line": 155, + "column": 8, + "index": 5941 + }, + { + "filePath": "src/components/site-header/AvatarDropdown.jsx", + "line": 38, + "column": 4, + "index": 1428 + }, + { + "filePath": "src/components/skills-quiz/GoalDropdown.jsx", + "line": 20, + "column": 4, + "index": 820 + } + ], + "Dropdown.Toggle": [ + { + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/BaseCourseCard.jsx", + "line": 316, + "column": 10, + "index": 9888 + }, + { + "filePath": "src/components/error-page/ErrorPageHeader.jsx", + "line": 40, + "column": 16, + "index": 1314 + }, + { + "filePath": "src/components/program/ProgramCTA.jsx", + "line": 156, + "column": 10, + "index": 6005 + }, + { + "filePath": "src/components/site-header/AvatarDropdown.jsx", + "line": 39, + "column": 6, + "index": 1445 + }, + { + "filePath": "src/components/skills-quiz/GoalDropdown.jsx", + "line": 21, + "column": 6, + "index": 837 + } + ], + "IconButton": [ + { + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/BaseCourseCard.jsx", + "line": 317, + "column": 16, + "index": 9921 + }, + { + "filePath": "src/components/microlearning/VideoFeedbackCard.jsx", + "line": 89, + "column": 16, + "index": 2973 + }, + { + "filePath": "src/components/microlearning/VideoFeedbackCard.jsx", + "line": 98, + "column": 16, + "index": 3368 + }, + { + "filePath": "src/components/microlearning/VideoFeedbackCard.jsx", + "line": 108, + "column": 16, + "index": 3885 + }, + { + "filePath": "src/components/microlearning/VideoFeedbackCard.jsx", + "line": 196, + "column": 16, + "index": 7513 + } + ], + "MoreVert": [ + { + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/BaseCourseCard.jsx", + "line": 318, + "column": 17, + "index": 9950 + } + ], + "Dropdown.Menu": [ + { + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/BaseCourseCard.jsx", + "line": 325, + "column": 10, + "index": 10207 + }, + { + "filePath": "src/components/error-page/ErrorPageHeader.jsx", + "line": 48, + "column": 16, + "index": 1617 + }, + { + "filePath": "src/components/program/ProgramCTA.jsx", + "line": 164, + "column": 10, + "index": 6248 + }, + { + "filePath": "src/components/site-header/AvatarDropdown.jsx", + "line": 47, + "column": 6, + "index": 1666 + }, + { + "filePath": "src/components/skills-quiz/GoalDropdown.jsx", + "line": 28, + "column": 6, + "index": 1043 + } + ], + "Dropdown.Item": [ + { + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/BaseCourseCard.jsx", + "line": 327, + "column": 14, + "index": 10278 + }, + { + "filePath": "src/components/error-page/ErrorPageHeader.jsx", + "line": 52, + "column": 18, + "index": 1741 + }, + { + "filePath": "src/components/program/ProgramCTA.jsx", + "line": 167, + "column": 16, + "index": 6363 + }, + { + "filePath": "src/components/program/ProgramCTA.jsx", + "line": 187, + "column": 16, + "index": 7097 + }, + { + "filePath": "src/components/site-header/AvatarDropdown.jsx", + "line": 58, + "column": 8, + "index": 2073 + }, + { + "filePath": "src/components/site-header/AvatarDropdown.jsx", + "line": 76, + "column": 14, + "index": 2968 + }, + { + "filePath": "src/components/site-header/AvatarDropdown.jsx", + "line": 90, + "column": 8, + "index": 3584 + }, + { + "filePath": "src/components/site-header/AvatarDropdown.jsx", + "line": 97, + "column": 8, + "index": 3894 + }, + { + "filePath": "src/components/site-header/AvatarDropdown.jsx", + "line": 104, + "column": 8, + "index": 4225 + }, + { + "filePath": "src/components/site-header/AvatarDropdown.jsx", + "line": 112, + "column": 8, + "index": 4559 + }, + { + "filePath": "src/components/skills-quiz/GoalDropdown.jsx", + "line": 30, + "column": 10, + "index": 1115 + } + ], + "IconButtonWithTooltip": [ + { + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/BaseCourseCard.jsx", + "line": 391, + "column": 8, + "index": 12089 + }, + { + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/BaseCourseCard.jsx", + "line": 446, + "column": 10, + "index": 14306 + } + ], + "InfoOutline": [ + { + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/BaseCourseCard.jsx", + "line": 395, + "column": 15, + "index": 12216 + }, + { + "filePath": "src/components/skills-quiz/JobDescriptions.jsx", + "line": 16, + "column": 8, + "index": 749 + } + ], + "Warning": [ + { + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/BaseCourseCard.jsx", + "line": 450, + "column": 17, + "index": 14501 + }, + { + "filePath": "src/components/search/SearchError.jsx", + "line": 14, + "column": 12, + "index": 393 + } + ], + "Info": [ + { + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/BaseCourseCard.jsx", + "line": 550, + "column": 19, + "index": 16916 + } + ], + "StandardModal": [ + { + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/email-settings/EmailSettingsModal.jsx", + "line": 114, + "column": 6, + "index": 2697 + }, + { + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/mark-complete-modal/MarkCompleteModal.jsx", + "line": 78, + "column": 6, + "index": 2485 + }, + { + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/move-to-in-progress-modal/MoveToInProgressModal.jsx", + "line": 72, + "column": 6, + "index": 1979 + }, + { + "filePath": "src/components/program-progress/CouponCodesWarningModal.jsx", + "line": 22, + "column": 4, + "index": 788 + }, + { + "filePath": "src/components/program-progress/SubscriptionExpiringWarningModal.jsx", + "line": 49, + "column": 4, + "index": 1832 + } + ], + "Form.Group": [ + { + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/email-settings/EmailSettingsModal.jsx", + "line": 141, + "column": 8, + "index": 3593 + }, + { + "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", + "line": 261, + "column": 20, + "index": 10659 + }, + { + "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", + "line": 284, + "column": 20, + "index": 11806 + }, + { + "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", + "line": 309, + "column": 20, + "index": 12960 + }, + { + "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", + "line": 345, + "column": 22, + "index": 14718 + }, + { + "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", + "line": 394, + "column": 20, + "index": 17546 + }, + { + "filePath": "src/components/microlearning/VideoFeedbackCard.jsx", + "line": 129, + "column": 14, + "index": 4737 + }, + { + "filePath": "src/components/my-career/SearchJobRole.jsx", + "line": 88, + "column": 8, + "index": 2875 + }, + { + "filePath": "src/components/program-progress/ProgramProgressCourses.jsx", + "line": 255, + "column": 28, + "index": 10264 + } + ], + "Form.Checkbox": [ + { + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/email-settings/EmailSettingsModal.jsx", + "line": 142, + "column": 10, + "index": 3616 + }, + { + "filePath": "src/components/microlearning/VideoFeedbackCard.jsx", + "line": 132, + "column": 20, + "index": 4904 + }, + { + "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", + "line": 255, + "column": 24, + "index": 10085 + } + ], + "Alert.Link": [ + { + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/mark-complete-modal/ModalError.jsx", + "line": 11, + "column": 21, + "index": 379 + }, + { + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/move-to-in-progress-modal/ModalError.jsx", + "line": 11, + "column": 42, + "index": 412 + } + ], + "Tooltip": [ + { + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/UpgradeCourseButton.jsx", + "line": 46, + "column": 8, + "index": 1817 + }, + { + "filePath": "src/components/microlearning/BetaBadge.jsx", + "line": 11, + "column": 6, + "index": 260 + }, + { + "filePath": "src/components/microlearning/VideoCourseReview.jsx", + "line": 30, + "column": 12, + "index": 1110 + } + ], + "Bubble": [ + { + "filePath": "src/components/dashboard/main-content/course-enrollments/CourseSection.jsx", + "line": 43, + "column": 13, + "index": 1500 + }, + { + "filePath": "src/components/progress-category-bubbles/ProgressCategoryBubbles.jsx", + "line": 8, + "column": 4, + "index": 322 + }, + { + "filePath": "src/components/progress-category-bubbles/ProgressCategoryBubbles.jsx", + "line": 19, + "column": 4, + "index": 678 + }, + { + "filePath": "src/components/progress-category-bubbles/ProgressCategoryBubbles.jsx", + "line": 30, + "column": 4, + "index": 1043 + } + ], + "Collapsible": [ + { + "filePath": "src/components/dashboard/main-content/course-enrollments/CourseSection.jsx", + "line": 136, + "column": 6, + "index": 4042 + }, + { + "filePath": "src/components/pathway-progress/PathwayStep.jsx", + "line": 40, + "column": 4, + "index": 1399 + }, + { + "filePath": "src/components/pathway/PathwayModal.jsx", + "line": 220, + "column": 10, + "index": 8308 + }, + { + "filePath": "src/components/program/ProgramFAQ.jsx", + "line": 16, + "column": 10, + "index": 494 + } + ], + "WarningFilled": [ + { + "filePath": "src/components/dashboard/sidebar/CouponCodesSummaryCard.jsx", + "line": 70, + "column": 16, + "index": 2590 + }, + { + "filePath": "src/components/dashboard/sidebar/data/hooks/useSubscriptionSummaryCard.jsx", + "line": 124, + "column": 6, + "index": 4132 + }, + { + "filePath": "src/components/program/ProgramCourses.jsx", + "line": 93, + "column": 49, + "index": 3688 + }, + { + "filePath": "src/components/system-wide-banner/SystemWideWarningBanner.jsx", + "line": 8, + "column": 15, + "index": 273 + } + ], + "Navbar": [ + { + "filePath": "src/components/error-page/ErrorPageHeader.jsx", + "line": 24, + "column": 6, + "index": 704 + } + ], + "Navbar.Brand": [ + { + "filePath": "src/components/error-page/ErrorPageHeader.jsx", + "line": 26, + "column": 10, + "index": 792 + } + ], + "AvatarButton": [ + { + "filePath": "src/components/error-page/ErrorPageHeader.jsx", + "line": 42, + "column": 22, + "index": 1424 + }, + { + "filePath": "src/components/site-header/AvatarDropdown.jsx", + "line": 41, + "column": 12, + "index": 1504 + } + ], + "Card.Body": [ + { + "filePath": "src/components/executive-education-2u/components/CourseSummaryCard.jsx", + "line": 35, + "column": 6, + "index": 1097 + }, + { + "filePath": "src/components/executive-education-2u/components/RegistrationSummaryCard.jsx", + "line": 14, + "column": 4, + "index": 513 + }, + { + "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", + "line": 232, + "column": 12, + "index": 9236 + } + ], + "ArrowBack": [ + { + "filePath": "src/components/executive-education-2u/components/ErrorPageContent.jsx", + "line": 61, + "column": 26, + "index": 2162 + } + ], + "Form.Control": [ + { + "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", + "line": 265, + "column": 22, + "index": 10817 + }, + { + "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", + "line": 287, + "column": 22, + "index": 11914 + }, + { + "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", + "line": 312, + "column": 22, + "index": 13071 + }, + { + "filePath": "src/components/program-progress/ProgramProgressCourses.jsx", + "line": 263, + "column": 30, + "index": 10808 + } + ], + "CheckboxControl": [ + { + "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", + "line": 347, + "column": 26, + "index": 14825 + }, + { + "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", + "line": 396, + "column": 24, + "index": 17649 + } + ], + "Timelapse": [ + { + "filePath": "src/components/microlearning/VideoDetailPage.jsx", + "line": 225, + "column": 56, + "index": 9261 + } + ], + "Close": [ + { + "filePath": "src/components/microlearning/VideoFeedbackCard.jsx", + "line": 110, + "column": 23, + "index": 3955 + }, + { + "filePath": "src/components/microlearning/VideoFeedbackCard.jsx", + "line": 198, + "column": 23, + "index": 7579 + }, + { + "filePath": "src/components/TagCloud/index.jsx", + "line": 12, + "column": 19, + "index": 329 + } + ], + "Input": [ + { + "filePath": "src/components/microlearning/VideoFeedbackCard.jsx", + "line": 151, + "column": 14, + "index": 5783 + } + ], + "Plus": [ + { + "filePath": "src/components/my-career/AddJobRole.jsx", + "line": 16, + "column": 9, + "index": 659 + } + ], + "TransitionReplace": [ + { + "filePath": "src/components/my-career/AddJobRole.jsx", + "line": 55, + "column": 14, + "index": 1704 + }, + { + "filePath": "src/components/my-career/VisualizeCareer.jsx", + "line": 67, + "column": 8, + "index": 2090 + } + ], + "Chip": [ + { + "filePath": "src/components/my-career/LevelBars.jsx", + "line": 18, + "column": 23, + "index": 402 + }, + { + "filePath": "src/components/my-career/LevelBars.jsx", + "line": 20, + "column": 23, + "index": 530 + }, + { + "filePath": "src/components/search/SearchVideoCard.jsx", + "line": 76, + "column": 30, + "index": 2261 + }, + { + "filePath": "src/components/skills-quiz-v2/JobCardComponent.jsx", + "line": 120, + "column": 18, + "index": 3908 + }, + { + "filePath": "src/components/TagCloud/index.jsx", + "line": 9, + "column": 6, + "index": 256 + } + ], + "Edit": [ + { + "filePath": "src/components/my-career/VisualizeCareer.jsx", + "line": 18, + "column": 13, + "index": 739 + } + ], + "ActionRow.Spacer": [ + { + "filePath": "src/components/my-career/VisualizeCareer.jsx", + "line": 78, + "column": 16, + "index": 2589 + }, + { + "filePath": "src/components/my-career/VisualizeCareer.jsx", + "line": 89, + "column": 16, + "index": 3124 + }, + { + "filePath": "src/components/my-career/VisualizeCareer.jsx", + "line": 108, + "column": 14, + "index": 3816 + }, + { + "filePath": "src/components/my-career/VisualizeCareer.jsx", + "line": 128, + "column": 14, + "index": 4637 + } + ], + "ExpandLess": [ + { + "filePath": "src/components/pathway-progress/PathwayStep.jsx", + "line": 45, + "column": 31, + "index": 1560 + }, + { + "filePath": "src/components/program/ProgramCourses.jsx", + "line": 49, + "column": 29, + "index": 1834 + }, + { + "filePath": "src/components/program/ProgramFAQ.jsx", + "line": 21, + "column": 37, + "index": 680 + } + ], + "ExpandMore": [ + { + "filePath": "src/components/pathway-progress/PathwayStep.jsx", + "line": 46, + "column": 33, + "index": 1609 + }, + { + "filePath": "src/components/program/ProgramCourses.jsx", + "line": 45, + "column": 29, + "index": 1686 + }, + { + "filePath": "src/components/program/ProgramFAQ.jsx", + "line": 22, + "column": 39, + "index": 735 + } + ], + "MarketingModal": [ + { + "filePath": "src/components/pathway/PathwayModal.jsx", + "line": 105, + "column": 4, + "index": 3496 + } + ], + "ModalDialog.Hero": [ + { + "filePath": "src/components/pathway/PathwayModal.jsx", + "line": 112, + "column": 8, + "index": 3780 + }, + { + "filePath": "src/components/skills-quiz-v2/SkillsQuiz.jsx", + "line": 100, + "column": 8, + "index": 3770 + }, + { + "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", + "line": 198, + "column": 8, + "index": 6899 + } + ], + "ModalDialog.Title": [ + { + "filePath": "src/components/pathway/PathwayModal.jsx", + "line": 129, + "column": 8, + "index": 4205 + }, + { + "filePath": "src/components/skills-quiz-v2/SkillsQuiz.jsx", + "line": 58, + "column": 10, + "index": 1999 + } + ], + "VerifiedBadge": [ + { + "filePath": "src/components/pathway/PathwayModal.jsx", + "line": 139, + "column": 27, + "index": 4578 + } + ], + "Assignment": [ + { + "filePath": "src/components/pathway/PathwayModal.jsx", + "line": 162, + "column": 27, + "index": 5710 + } + ], + "BookOpen": [ + { + "filePath": "src/components/pathway/PathwayModal.jsx", + "line": 184, + "column": 27, + "index": 6758 + } + ], + "Form.Label": [ + { + "filePath": "src/components/program-progress/ProgramProgressCourses.jsx", + "line": 256, + "column": 30, + "index": 10361 + } + ], + "Collapsible.Advanced": [ + { + "filePath": "src/components/program/ProgramCourses.jsx", + "line": 40, + "column": 12, + "index": 1308 + }, + { + "filePath": "src/components/program/ProgramInstructors.jsx", + "line": 87, + "column": 8, + "index": 3053 + } + ], + "Collapsible.Trigger": [ + { + "filePath": "src/components/program/ProgramCourses.jsx", + "line": 41, + "column": 14, + "index": 1396 + }, + { + "filePath": "src/components/program/ProgramInstructors.jsx", + "line": 88, + "column": 10, + "index": 3124 + } + ], + "LibraryBooks": [ + { + "filePath": "src/components/program/ProgramCourses.jsx", + "line": 42, + "column": 51, + "index": 1501 + }, + { + "filePath": "src/components/program/ProgramSidebar.jsx", + "line": 27, + "column": 14, + "index": 1058 + } + ], + "Collapsible.Visible": [ + { + "filePath": "src/components/program/ProgramCourses.jsx", + "line": 44, + "column": 16, + "index": 1624 + }, + { + "filePath": "src/components/program/ProgramCourses.jsx", + "line": 48, + "column": 16, + "index": 1774 + }, + { + "filePath": "src/components/program/ProgramInstructors.jsx", + "line": 90, + "column": 12, + "index": 3269 + }, + { + "filePath": "src/components/program/ProgramInstructors.jsx", + "line": 94, + "column": 12, + "index": 3395 + } + ], + "Collapsible.Body": [ + { + "filePath": "src/components/program/ProgramCourses.jsx", + "line": 53, + "column": 14, + "index": 1957 + }, + { + "filePath": "src/components/program/ProgramInstructors.jsx", + "line": 99, + "column": 10, + "index": 3553 + } + ], + "CalendarMonth": [ + { + "filePath": "src/components/program/ProgramCourses.jsx", + "line": 58, + "column": 33, + "index": 2261 + } + ], + "ExpandCircleDown": [ + { + "filePath": "src/components/program/ProgramDataBar.jsx", + "line": 45, + "column": 18, + "index": 1839 + } + ], + "FormatQuote": [ + { + "filePath": "src/components/program/ProgramEndorsements.jsx", + "line": 18, + "column": 14, + "index": 855 + } + ], + "AddCircle": [ + { + "filePath": "src/components/program/ProgramInstructors.jsx", + "line": 91, + "column": 14, + "index": 3316 + } + ], + "RemoveCircle": [ + { + "filePath": "src/components/program/ProgramInstructors.jsx", + "line": 95, + "column": 14, + "index": 3440 + } + ], + "useMediaQuery": [ + { + "filePath": "src/components/search/content-highlights/ContentHighlightSet.jsx", + "line": 63, + "column": 29, + "index": 1964 + } + ], + "CardCarousel": [ + { + "filePath": "src/components/search/content-highlights/ContentHighlightSet.jsx", + "line": 77, + "column": 6, + "index": 2368 + } + ], + "CardDeck": [ + { + "filePath": "src/components/search/content-highlights/ContentHighlightSet.jsx", + "line": 115, + "column": 6, + "index": 3651 + } + ], + "Archive": [ + { + "filePath": "src/components/search/content-highlights/HighlightedContentCard.jsx", + "line": 79, + "column": 40, + "index": 2322 + } + ], + "ZoomOut": [ + { + "filePath": "src/components/search/SearchNoResults.jsx", + "line": 18, + "column": 14, + "index": 482 + }, + { + "filePath": "src/components/skills-quiz/SearchCourseCard.jsx", + "line": 75, + "column": 14, + "index": 2750 + }, + { + "filePath": "src/components/skills-quiz/SearchProgramCard.jsx", + "line": 145, + "column": 14, + "index": 4994 + }, + { + "filePath": "src/components/skills-quiz/SkillsCourses.jsx", + "line": 166, + "column": 18, + "index": 5590 + } + ], + "Program": [ + { + "filePath": "src/components/search/SearchProgramCard.jsx", + "line": 140, + "column": 23, + "index": 4178 + }, + { + "filePath": "src/components/skills-quiz/SearchProgramCard.jsx", + "line": 217, + "column": 31, + "index": 7618 + } + ], + "PlayCircleOutline": [ + { + "filePath": "src/components/search/SearchVideoCard.jsx", + "line": 85, + "column": 19, + "index": 2675 + } + ], + "Dropdown.Header": [ + { + "filePath": "src/components/site-header/AvatarDropdown.jsx", + "line": 51, + "column": 8, + "index": 1750 + } + ], + "Dropdown.Divider": [ + { + "filePath": "src/components/site-header/AvatarDropdown.jsx", + "line": 89, + "column": 8, + "index": 3530 + }, + { + "filePath": "src/components/site-header/AvatarDropdown.jsx", + "line": 111, + "column": 8, + "index": 4505 + } + ], + "MenuIcon": [ + { + "filePath": "src/components/site-header/SiteHeader.jsx", + "line": 54, + "column": 14, + "index": 1955 + } + ], + "SelectableBox.Set": [ + { + "filePath": "src/components/skills-quiz-v2/JobCardComponent.jsx", + "line": 90, + "column": 6, + "index": 2885 + }, + { + "filePath": "src/components/skills-quiz/SelectJobCard.jsx", + "line": 36, + "column": 6, + "index": 1337 + } + ], + "SelectableBox": [ + { + "filePath": "src/components/skills-quiz-v2/JobCardComponent.jsx", + "line": 100, + "column": 10, + "index": 3150 + }, + { + "filePath": "src/components/skills-quiz/SelectJobCard.jsx", + "line": 45, + "column": 10, + "index": 1666 + } + ], + "ModalDialog": [ + { + "filePath": "src/components/skills-quiz-v2/SkillsQuiz.jsx", + "line": 49, + "column": 6, + "index": 1781 + }, + { + "filePath": "src/components/skills-quiz-v2/SkillsQuiz.jsx", + "line": 93, + "column": 6, + "index": 3583 + }, + { + "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", + "line": 191, + "column": 6, + "index": 6716 + } + ], + "ModalDialog.Header": [ + { + "filePath": "src/components/skills-quiz-v2/SkillsQuiz.jsx", + "line": 57, + "column": 8, + "index": 1968 + } + ], + "ModalDialog.Body": [ + { + "filePath": "src/components/skills-quiz-v2/SkillsQuiz.jsx", + "line": 66, + "column": 8, + "index": 2355 + }, + { + "filePath": "src/components/skills-quiz-v2/SkillsQuiz.jsx", + "line": 106, + "column": 8, + "index": 4052 + }, + { + "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", + "line": 204, + "column": 8, + "index": 7181 + } + ], + "Stepper": [ + { + "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", + "line": 190, + "column": 4, + "index": 6676 + } + ], + "Stepper.Step": [ + { + "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", + "line": 206, + "column": 12, + "index": 7244 + }, + { + "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", + "line": 305, + "column": 12, + "index": 12483 + }, + { + "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", + "line": 347, + "column": 12, + "index": 14352 + } + ], + "ModalDialog.Footer": [ + { + "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", + "line": 355, + "column": 8, + "index": 14618 + } + ], + "Stepper.ActionRow": [ + { + "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", + "line": 356, + "column": 10, + "index": 14649 + }, + { + "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", + "line": 376, + "column": 10, + "index": 15630 + }, + { + "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", + "line": 392, + "column": 10, + "index": 16336 + } + ], + "PageBanner": [ + { + "filePath": "src/components/system-wide-banner/SystemWideWarningBanner.jsx", + "line": 7, + "column": 2, + "index": 227 + } + ], + "Toast": [ + { + "filePath": "src/components/Toasts/Toasts.jsx", + "line": 9, + "column": 4, + "index": 268 + } + ] + } + }, + { + "version": "21.13.1", + "name": "frontend-app-learner-portal", + "repository": "https://github.com/openedx/frontend-app-learner-portal-programs", + "folderName": "frontend-app-learner-portal-programs", + "usages": { + "Dropdown.Deprecated": [ + { + "filePath": "src/components/course-enrollments/course-cards/BaseCourseCard.jsx", + "line": 152, + "column": 10, + "index": 3896 + } + ], + "Modal": [ + { + "filePath": "src/components/course-enrollments/course-cards/email-settings/EmailSettingsModal.jsx", + "line": 117, + "column": 6, + "index": 2842 + } + ], + "Alert": [ + { + "filePath": "src/components/course-enrollments/course-cards/email-settings/EmailSettingsModal.jsx", + "line": 122, + "column": 14, + "index": 2962 + }, + { + "filePath": "src/components/course-enrollments/CourseEnrollments.jsx", + "line": 52, + "column": 4, + "index": 1461 + }, + { + "filePath": "src/components/course-enrollments/CourseEnrollments.jsx", + "line": 67, + "column": 6, + "index": 1834 + }, + { + "filePath": "src/components/program/ProgramPage.jsx", + "line": 80, + "column": 6, + "index": 2569 + }, + { + "filePath": "src/components/programs-list/ProgramListPage.jsx", + "line": 81, + "column": 4, + "index": 2507 + } + ], + "Warning": [ + { + "filePath": "src/components/course-enrollments/course-cards/email-settings/EmailSettingsModal.jsx", + "line": 125, + "column": 22, + "index": 3060 + }, + { + "filePath": "src/components/course-enrollments/CourseEnrollments.jsx", + "line": 55, + "column": 12, + "index": 1529 + }, + { + "filePath": "src/components/program/ProgramPage.jsx", + "line": 82, + "column": 14, + "index": 2615 + }, + { + "filePath": "src/components/programs-list/ProgramListPage.jsx", + "line": 83, + "column": 12, + "index": 2549 + } + ], + "Input": [ + { + "filePath": "src/components/course-enrollments/course-cards/email-settings/EmailSettingsModal.jsx", + "line": 132, + "column": 14, + "index": 3285 + } + ], + "StatefulButton": [ + { + "filePath": "src/components/course-enrollments/course-cards/email-settings/EmailSettingsModal.jsx", + "line": 151, + "column": 10, + "index": 3957 + } + ], + "Button": [ + { + "filePath": "src/components/course-enrollments/course-cards/UpcomingCourseCard.jsx", + "line": 10, + "column": 4, + "index": 257 + }, + { + "filePath": "src/components/program/sidebar/Links.jsx", + "line": 65, + "column": 10, + "index": 1731 + } + ], + "CheckCircle": [ + { + "filePath": "src/components/course-enrollments/CourseEnrollments.jsx", + "line": 69, + "column": 14, + "index": 1881 + } + ], + "breakpoints": [ + { + "filePath": "src/components/course-enrollments/CourseEnrollments.jsx", + "line": 113, + "column": 30, + "index": 3046 + }, + { + "filePath": "src/components/course-enrollments/tests/CourseEnrollments.test.jsx", + "line": 156, + "column": 52, + "index": 5009 + }, + { + "filePath": "src/components/course-enrollments/tests/CourseEnrollments.test.jsx", + "line": 168, + "column": 52, + "index": 5495 + }, + { + "filePath": "src/components/program/ProgramPage.jsx", + "line": 128, + "column": 48, + "index": 4234 + }, + { + "filePath": "src/components/program/tab-components/JourneyTab.jsx", + "line": 16, + "column": 30, + "index": 470 + } + ], + "Collapsible": [ + { + "filePath": "src/components/course-enrollments/CourseSection.jsx", + "line": 83, + "column": 8, + "index": 2049 + } + ], + "Alert.Link": [ + { + "filePath": "src/components/program/ProgramPage.jsx", + "line": 91, + "column": 10, + "index": 2890 + } + ], + "Tabs": [ + { + "filePath": "src/components/program/TabularView.jsx", + "line": 37, + "column": 6, + "index": 1210 + } + ], + "Tab": [ + { + "filePath": "src/components/program/TabularView.jsx", + "line": 40, + "column": 10, + "index": 1377 + } + ] + } + }, + { + "version": "22.9.0", + "name": "@edx/frontend-app-learner-record", + "repository": { + "type": "git", + "url": "git+https://github.com/openedx/frontend-app-learner-record.git" + }, + "folderName": "frontend-app-learner-record", + "usages": { + "Tabs": [ + { + "filePath": "src/components/NavigationBar/NavigationBar.jsx", + "line": 30, + "column": 4, + "index": 760 + } + ], + "Tab": [ + { + "filePath": "src/components/NavigationBar/NavigationBar.jsx", + "line": 36, + "column": 8, + "index": 926 + } + ], + "Hyperlink": [ + { + "filePath": "src/components/ProgramCertificate/ProgramCertificate.jsx", + "line": 26, + "column": 8, + "index": 574 + }, + { + "filePath": "src/components/ProgramCertificatesList/ProgramCertificatesList.jsx", + "line": 88, + "column": 6, + "index": 2789 + }, + { + "filePath": "src/components/ProgramCertificatesList/ProgramCertificatesList.jsx", + "line": 152, + "column": 6, + "index": 4572 + }, + { + "filePath": "src/components/ProgramRecord/ProgramRecord.jsx", + "line": 84, + "column": 6, + "index": 2663 + }, + { + "filePath": "src/components/ProgramRecord/RecordsHelp.jsx", + "line": 23, + "column": 14, + "index": 757 + }, + { + "filePath": "src/components/ProgramRecordAlert/ProgramRecordAlert.jsx", + "line": 68, + "column": 18, + "index": 2578 + }, + { + "filePath": "src/components/ProgramRecordsList/ProgramRecordsList.jsx", + "line": 48, + "column": 6, + "index": 1566 + }, + { + "filePath": "src/components/ProgramRecordsList/ProgramRecordsList.jsx", + "line": 117, + "column": 14, + "index": 4094 + }, + { + "filePath": "src/components/ProgramRecordsList/ProgramRecordsList.jsx", + "line": 163, + "column": 6, + "index": 5481 + } + ], + "DropdownButton": [ + { + "filePath": "src/components/ProgramCertificate/ProgramCertificate.jsx", + "line": 34, + "column": 8, + "index": 838 + } + ], + "Dropdown.Item": [ + { + "filePath": "src/components/ProgramCertificate/ProgramCertificate.jsx", + "line": 36, + "column": 12, + "index": 1003 + } + ], + "StandardModal": [ + { + "filePath": "src/components/ProgramCertificateModal/ProgramCertificateModal.jsx", + "line": 27, + "column": 6, + "index": 745 + }, + { + "filePath": "src/components/ProgramCertificateModal/ProgramCertificateModal.jsx", + "line": 39, + "column": 4, + "index": 1025 + } + ], + "Info": [ + { + "filePath": "src/components/ProgramCertificateModal/ProgramCertificateModal.jsx", + "line": 28, + "column": 8, + "index": 827 + }, + { + "filePath": "src/components/ProgramCertificatesList/ProgramCertificatesList.jsx", + "line": 103, + "column": 8, + "index": 3256 + }, + { + "filePath": "src/components/ProgramRecord/ProgramRecord.jsx", + "line": 169, + "column": 8, + "index": 5575 + }, + { + "filePath": "src/components/ProgramRecordAlert/ProgramRecordAlert.jsx", + "line": 39, + "column": 18, + "index": 1342 + }, + { + "filePath": "src/components/ProgramRecordsList/ProgramRecordsList.jsx", + "line": 65, + "column": 8, + "index": 2106 + } + ], + "ActionRow": [ + { + "filePath": "src/components/ProgramCertificateModal/ProgramCertificateModal.jsx", + "line": 47, + "column": 12, + "index": 1242 + }, + { + "filePath": "src/components/ProgramRecordSendModal/SendLearnerRecordModal.jsx", + "line": 135, + "column": 8, + "index": 4169 + } + ], + "ActionRow.Spacer": [ + { + "filePath": "src/components/ProgramCertificateModal/ProgramCertificateModal.jsx", + "line": 48, + "column": 14, + "index": 1268 + } + ], + "Button": [ + { + "filePath": "src/components/ProgramCertificateModal/ProgramCertificateModal.jsx", + "line": 49, + "column": 14, + "index": 1303 + }, + { + "filePath": "src/components/ProgramCertificateModal/ProgramCertificateModal.jsx", + "line": 117, + "column": 10, + "index": 3737 + }, + { + "filePath": "src/components/ProgramCertificateModal/ProgramCertificateModal.jsx", + "line": 129, + "column": 10, + "index": 4106 + }, + { + "filePath": "src/components/ProgramCertificateModal/ProgramCertificateModal.jsx", + "line": 156, + "column": 10, + "index": 4974 + }, + { + "filePath": "src/components/ProgramCertificateModal/ProgramCertificateModal.jsx", + "line": 165, + "column": 10, + "index": 5220 + }, + { + "filePath": "src/components/ProgramRecord/ProgramRecord.jsx", + "line": 79, + "column": 4, + "index": 2555 + }, + { + "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", + "line": 127, + "column": 12, + "index": 4021 + }, + { + "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", + "line": 156, + "column": 16, + "index": 5021 + }, + { + "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", + "line": 169, + "column": 16, + "index": 5550 + }, + { + "filePath": "src/components/ProgramRecordAlert/ProgramRecordAlert.jsx", + "line": 41, + "column": 14, + "index": 1385 + }, + { + "filePath": "src/components/ProgramRecordSendModal/SendLearnerRecordModal.jsx", + "line": 143, + "column": 10, + "index": 4496 + }, + { + "filePath": "src/components/ProgramRecordsList/ProgramRecordsList.jsx", + "line": 121, + "column": 16, + "index": 4245 + } + ], + "Row": [ + { + "filePath": "src/components/ProgramCertificateModal/ProgramCertificateModal.jsx", + "line": 59, + "column": 10, + "index": 1546 + }, + { + "filePath": "src/components/ProgramCertificatesList/ProgramCertificatesList.jsx", + "line": 118, + "column": 6, + "index": 3689 + } + ], + "ContentCopy": [ + { + "filePath": "src/components/ProgramCertificateModal/ProgramCertificateModal.jsx", + "line": 74, + "column": 16, + "index": 2189 + }, + { + "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", + "line": 158, + "column": 30, + "index": 5103 + }, + { + "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", + "line": 171, + "column": 30, + "index": 5632 + } + ], + "useToggle": [ + { + "filePath": "src/components/ProgramCertificatesList/ProgramCertificatesList.jsx", + "line": 30, + "column": 47, + "index": 1171 + } + ], + "ChevronLeft": [ + { + "filePath": "src/components/ProgramCertificatesList/ProgramCertificatesList.jsx", + "line": 92, + "column": 8, + "index": 2943 + }, + { + "filePath": "src/components/ProgramRecordsList/ProgramRecordsList.jsx", + "line": 52, + "column": 8, + "index": 1720 + } + ], + "Alert": [ + { + "filePath": "src/components/ProgramCertificatesList/ProgramCertificatesList.jsx", + "line": 102, + "column": 6, + "index": 3223 + }, + { + "filePath": "src/components/ProgramRecord/ProgramRecord.jsx", + "line": 168, + "column": 6, + "index": 5542 + }, + { + "filePath": "src/components/ProgramRecordAlert/ProgramRecordAlert.jsx", + "line": 37, + "column": 10, + "index": 1288 + }, + { + "filePath": "src/components/ProgramRecordAlert/ProgramRecordAlert.jsx", + "line": 82, + "column": 10, + "index": 2981 + }, + { + "filePath": "src/components/ProgramRecordsList/ProgramRecordsList.jsx", + "line": 64, + "column": 6, + "index": 2073 + } + ], + "ArrowBack": [ + { + "filePath": "src/components/ProgramRecord/ProgramRecord.jsx", + "line": 81, + "column": 18, + "index": 2606 + } + ], + "Container": [ + { + "filePath": "src/components/ProgramRecord/ProgramRecord.jsx", + "line": 203, + "column": 4, + "index": 6478 + } + ], + "Icon": [ + { + "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", + "line": 51, + "column": 15, + "index": 1931 + }, + { + "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", + "line": 52, + "column": 15, + "index": 1971 + }, + { + "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", + "line": 53, + "column": 16, + "index": 2039 + }, + { + "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", + "line": 225, + "column": 24, + "index": 8286 + } + ], + "Download": [ + { + "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", + "line": 51, + "column": 26, + "index": 1942 + } + ], + "SpinnerSimple": [ + { + "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", + "line": 52, + "column": 26, + "index": 1982 + } + ], + "Check": [ + { + "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", + "line": 53, + "column": 27, + "index": 2050 + } + ], + "AccountBalance": [ + { + "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", + "line": 130, + "column": 26, + "index": 4133 + } + ], + "OverlayTrigger": [ + { + "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", + "line": 140, + "column": 12, + "index": 4471 + }, + { + "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", + "line": 183, + "column": 12, + "index": 6109 + } + ], + "Tooltip": [ + { + "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", + "line": 144, + "column": 16, + "index": 4595 + } + ], + "Popover": [ + { + "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", + "line": 187, + "column": 16, + "index": 6229 + } + ], + "Popover.Title": [ + { + "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", + "line": 190, + "column": 18, + "index": 6310 + }, + { + "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", + "line": 204, + "column": 18, + "index": 7206 + } + ], + "Popover.Content": [ + { + "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", + "line": 197, + "column": 18, + "index": 6665 + }, + { + "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", + "line": 211, + "column": 18, + "index": 7562 + } + ], + "IconButton": [ + { + "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", + "line": 221, + "column": 14, + "index": 8138 + } + ], + "Help": [ + { + "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", + "line": 224, + "column": 21, + "index": 8256 + } + ], + "StatefulButton": [ + { + "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", + "line": 235, + "column": 12, + "index": 8508 + } + ], + "Toast": [ + { + "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", + "line": 248, + "column": 10, + "index": 8978 + } + ], + "Badge": [ + { + "filePath": "src/components/ProgramRecord/ProgramRecordHeader.jsx", + "line": 52, + "column": 12, + "index": 1537 + }, + { + "filePath": "src/components/ProgramRecord/ProgramRecordHeader.jsx", + "line": 58, + "column": 16, + "index": 1729 + }, + { + "filePath": "src/components/ProgramRecord/ProgramRecordHeader.jsx", + "line": 63, + "column": 12, + "index": 1897 + }, + { + "filePath": "src/components/ProgramRecord/ProgramRecordTable.jsx", + "line": 26, + "column": 10, + "index": 937 + }, + { + "filePath": "src/components/ProgramRecord/ProgramRecordTable.jsx", + "line": 31, + "column": 10, + "index": 1075 + } + ], + "DataTable": [ + { + "filePath": "src/components/ProgramRecord/ProgramRecordTable.jsx", + "line": 38, + "column": 4, + "index": 1222 + } + ], + "DataTable.Table": [ + { + "filePath": "src/components/ProgramRecord/ProgramRecordTable.jsx", + "line": 76, + "column": 6, + "index": 2036 + } + ], + "DataTable.EmptyTable": [ + { + "filePath": "src/components/ProgramRecord/ProgramRecordTable.jsx", + "line": 77, + "column": 6, + "index": 2062 + } + ], + "Alert.Heading": [ + { + "filePath": "src/components/ProgramRecordAlert/ProgramRecordAlert.jsx", + "line": 54, + "column": 12, + "index": 1832 + }, + { + "filePath": "src/components/ProgramRecordAlert/ProgramRecordAlert.jsx", + "line": 88, + "column": 12, + "index": 3151 + } + ], + "CheckCircle": [ + { + "filePath": "src/components/ProgramRecordAlert/ProgramRecordAlert.jsx", + "line": 84, + "column": 18, + "index": 3036 + } + ], + "ModalDialog": [ + { + "filePath": "src/components/ProgramRecordSendModal/SendLearnerRecordModal.jsx", + "line": 71, + "column": 4, + "index": 2031 + } + ], + "ModalDialog.Header": [ + { + "filePath": "src/components/ProgramRecordSendModal/SendLearnerRecordModal.jsx", + "line": 80, + "column": 6, + "index": 2234 + } + ], + "ModalDialog.Title": [ + { + "filePath": "src/components/ProgramRecordSendModal/SendLearnerRecordModal.jsx", + "line": 81, + "column": 8, + "index": 2263 + } + ], + "ModalDialog.Body": [ + { + "filePath": "src/components/ProgramRecordSendModal/SendLearnerRecordModal.jsx", + "line": 92, + "column": 6, + "index": 2639 + } + ], + "Form": [ + { + "filePath": "src/components/ProgramRecordSendModal/SendLearnerRecordModal.jsx", + "line": 104, + "column": 8, + "index": 3154 + } + ], + "SelectableBox.Set": [ + { + "filePath": "src/components/ProgramRecordSendModal/SendLearnerRecordModal.jsx", + "line": 112, + "column": 10, + "index": 3468 + } + ], + "SelectableBox": [ + { + "filePath": "src/components/ProgramRecordSendModal/SendLearnerRecordModal.jsx", + "line": 121, + "column": 14, + "index": 3776 + } + ], + "ModalDialog.Footer": [ + { + "filePath": "src/components/ProgramRecordSendModal/SendLearnerRecordModal.jsx", + "line": 134, + "column": 6, + "index": 4140 } ], - "InfoOutline": [ - { - "filePath": "src/course-home/progress-tab/grades/course-grade/GradeRangeTooltip.jsx", - "line": 68, - "column": 13, - "index": 2126 - }, + "ModalDialog.CloseButton": [ { - "filePath": "src/course-home/progress-tab/grades/grade-summary/GradeSummaryHeader.jsx", - "line": 42, - "column": 15, - "index": 1411 + "filePath": "src/components/ProgramRecordSendModal/SendLearnerRecordModal.jsx", + "line": 136, + "column": 10, + "index": 4191 } - ], - "Blocked": [ + ] + } + }, + { + "version": "22.8.1", + "name": "@edx/frontend-app-learning", + "repository": { + "type": "git", + "url": "git+https://github.com/openedx/frontend-app-learning.git" + }, + "folderName": "frontend-app-learning", + "usages": { + "Hyperlink": [ { - "filePath": "src/course-home/progress-tab/grades/detailed-grades/DetailedGrades.jsx", - "line": 60, - "column": 99, - "index": 1945 + "filePath": "src/alerts/access-expiration-alert/AccessExpirationAlert.jsx", + "line": 65, + "column": 8, + "index": 1855 }, { - "filePath": "src/course-home/progress-tab/grades/detailed-grades/SubsectionTitleCell.jsx", - "line": 64, - "column": 21, - "index": 2273 + "filePath": "src/alerts/active-enteprise-alert/ActiveEnterpriseAlert.jsx", + "line": 13, + "column": 4, + "index": 487 }, { - "filePath": "src/course-home/progress-tab/grades/grade-summary/AssignmentTypeCell.jsx", - "line": 21, - "column": 256, - "index": 861 + "filePath": "src/alerts/logistration-alert/LogistrationAlert.jsx", + "line": 12, + "column": 4, + "index": 463 }, { - "filePath": "src/course-home/progress-tab/grades/grade-summary/GradeSummaryHeader.jsx", - "line": 51, - "column": 99, - "index": 1803 - } - ], - "DataTable": [ + "filePath": "src/alerts/logistration-alert/LogistrationAlert.jsx", + "line": 23, + "column": 4, + "index": 890 + }, { - "filePath": "src/course-home/progress-tab/grades/detailed-grades/DetailedGradesTable.jsx", - "line": 43, + "filePath": "src/course-home/goal-unsubscribe/ResultPage.jsx", + "line": 16, "column": 10, - "index": 1394 + "index": 687 }, { - "filePath": "src/course-home/progress-tab/grades/grade-summary/GradeSummaryTable.jsx", - "line": 95, - "column": 6, - "index": 3269 + "filePath": "src/course-home/outline-tab/alerts/private-course-alert/PrivateCourseAlert.jsx", + "line": 49, + "column": 4, + "index": 1514 }, { - "filePath": "src/courseware/course/course-exit/CourseRecommendations.jsx", - "line": 183, - "column": 8, - "index": 6429 - } - ], - "DataTable.Table": [ - { - "filePath": "src/course-home/progress-tab/grades/detailed-grades/DetailedGradesTable.jsx", - "line": 61, - "column": 12, - "index": 2021 + "filePath": "src/course-home/outline-tab/alerts/private-course-alert/PrivateCourseAlert.jsx", + "line": 58, + "column": 4, + "index": 1793 }, { - "filePath": "src/course-home/progress-tab/grades/grade-summary/GradeSummaryTable.jsx", - "line": 128, - "column": 8, - "index": 4564 - } - ], - "Collapsible.Advanced": [ + "filePath": "src/course-home/progress-tab/credit-information/CreditInformation.jsx", + "line": 29, + "column": 4, + "index": 883 + }, { - "filePath": "src/course-home/progress-tab/grades/detailed-grades/SubsectionTitleCell.jsx", - "line": 46, + "filePath": "src/course-home/progress-tab/grades/detailed-grades/DetailedGrades.jsx", + "line": 47, "column": 4, - "index": 1286 + "index": 1554 }, { - "filePath": "src/courseware/course/content-tools/calculator/Calculator.jsx", + "filePath": "src/course-home/progress-tab/related-links/RelatedLinks.jsx", "line": 42, - "column": 6, - "index": 1224 + "column": 10, + "index": 1318 }, { - "filePath": "src/courseware/course/content-tools/calculator/Calculator.jsx", - "line": 82, + "filePath": "src/course-home/progress-tab/related-links/RelatedLinks.jsx", + "line": 50, "column": 10, - "index": 3142 - } - ], - "Row": [ + "index": 1622 + }, { - "filePath": "src/course-home/progress-tab/grades/detailed-grades/SubsectionTitleCell.jsx", - "line": 47, - "column": 6, - "index": 1315 + "filePath": "src/courseware/course/course-exit/CatalogSuggestion.jsx", + "line": 25, + "column": 4, + "index": 882 }, { - "filePath": "src/course-home/suggested-schedule-messaging/ShiftDatesAlert.jsx", - "line": 40, - "column": 6, - "index": 834 + "filePath": "src/courseware/course/course-exit/CourseCelebration.jsx", + "line": 209, + "column": 14, + "index": 8617 }, { - "filePath": "src/course-home/suggested-schedule-messaging/UpgradeToCompleteAlert.jsx", - "line": 37, + "filePath": "src/courseware/course/course-exit/CourseRecommendations.jsx", + "line": 101, "column": 6, - "index": 827 + "index": 3457 }, { - "filePath": "src/course-home/suggested-schedule-messaging/UpgradeToShiftDatesAlert.jsx", - "line": 39, + "filePath": "src/courseware/course/course-exit/CourseRecommendations.jsx", + "line": 196, "column": 6, - "index": 882 - } - ], - "Collapsible.Trigger": [ + "index": 6797 + }, { - "filePath": "src/course-home/progress-tab/grades/detailed-grades/SubsectionTitleCell.jsx", - "line": 48, - "column": 8, - "index": 1351 + "filePath": "src/courseware/course/course-exit/DashboardFootnote.jsx", + "line": 25, + "column": 4, + "index": 851 }, { - "filePath": "src/courseware/course/content-tools/calculator/Calculator.jsx", - "line": 44, - "column": 10, - "index": 1317 + "filePath": "src/courseware/course/course-exit/ProgramCompletion.jsx", + "line": 34, + "column": 4, + "index": 1296 }, { - "filePath": "src/courseware/course/content-tools/calculator/Calculator.jsx", - "line": 84, - "column": 14, - "index": 3222 - } - ], - "Collapsible.Visible": [ + "filePath": "src/courseware/course/course-exit/ProgramCompletion.jsx", + "line": 59, + "column": 16, + "index": 2229 + }, { - "filePath": "src/course-home/progress-tab/grades/detailed-grades/SubsectionTitleCell.jsx", - "line": 53, - "column": 10, - "index": 1610 + "filePath": "src/courseware/course/course-exit/ProgramCompletion.jsx", + "line": 76, + "column": 14, + "index": 2959 }, { - "filePath": "src/course-home/progress-tab/grades/detailed-grades/SubsectionTitleCell.jsx", - "line": 54, - "column": 10, - "index": 1703 + "filePath": "src/courseware/course/course-exit/UpgradeFootnote.jsx", + "line": 23, + "column": 4, + "index": 816 }, { - "filePath": "src/courseware/course/content-tools/calculator/Calculator.jsx", - "line": 45, - "column": 12, - "index": 1383 + "filePath": "src/courseware/course/sequence/hidden-after-due/HiddenAfterDue.jsx", + "line": 16, + "column": 4, + "index": 583 }, { - "filePath": "src/courseware/course/content-tools/calculator/Calculator.jsx", - "line": 48, - "column": 12, - "index": 1552 + "filePath": "src/courseware/course/sequence/lock-paywall/LockPaywall.jsx", + "line": 91, + "column": 14, + "index": 3327 }, { - "filePath": "src/courseware/course/content-tools/calculator/Calculator.jsx", - "line": 85, + "filePath": "src/generic/PageNotFound.jsx", + "line": 36, "column": 16, - "index": 3330 + "index": 1135 }, { - "filePath": "src/courseware/course/content-tools/calculator/Calculator.jsx", - "line": 88, - "column": 16, - "index": 3511 - } - ], - "ArrowDropDown": [ + "filePath": "src/preferences-unsubscribe/index.jsx", + "line": 71, + "column": 24, + "index": 3072 + }, { - "filePath": "src/course-home/progress-tab/grades/detailed-grades/SubsectionTitleCell.jsx", - "line": 53, - "column": 53, - "index": 1653 - } - ], - "ArrowDropUp": [ + "filePath": "src/shared/links.jsx", + "line": 10, + "column": 2, + "index": 374 + }, { - "filePath": "src/course-home/progress-tab/grades/detailed-grades/SubsectionTitleCell.jsx", - "line": 54, - "column": 51, - "index": 1744 + "filePath": "src/shared/links.jsx", + "line": 28, + "column": 4, + "index": 754 + }, + { + "filePath": "src/shared/links.jsx", + "line": 46, + "column": 4, + "index": 1138 } ], - "Collapsible.Body": [ + "Alert": [ { - "filePath": "src/course-home/progress-tab/grades/detailed-grades/SubsectionTitleCell.jsx", - "line": 83, + "filePath": "src/alerts/access-expiration-alert/AccessExpirationAlert.jsx", + "line": 78, + "column": 4, + "index": 2139 + }, + { + "filePath": "src/alerts/active-enteprise-alert/ActiveEnterpriseAlert.jsx", + "line": 26, + "column": 4, + "index": 862 + }, + { + "filePath": "src/alerts/course-start-alert/CourseStartAlert.jsx", + "line": 43, "column": 6, - "index": 2842 + "index": 1120 }, { - "filePath": "src/courseware/course/content-tools/calculator/Calculator.jsx", - "line": 54, - "column": 8, - "index": 1847 + "filePath": "src/alerts/course-start-alert/CourseStartAlert.jsx", + "line": 68, + "column": 4, + "index": 1833 }, { - "filePath": "src/courseware/course/content-tools/calculator/Calculator.jsx", - "line": 97, - "column": 12, - "index": 3921 - } - ], - "DataTable.TableFooter": [ + "filePath": "src/alerts/enrollment-alert/EnrollmentAlert.jsx", + "line": 50, + "column": 4, + "index": 1406 + }, { - "filePath": "src/course-home/progress-tab/grades/grade-summary/GradeSummaryTableFooter.jsx", - "line": 30, + "filePath": "src/alerts/logistration-alert/LogistrationAlert.jsx", + "line": 32, "column": 4, - "index": 702 - } - ], - "Col": [ + "index": 1161 + }, { - "filePath": "src/course-home/suggested-schedule-messaging/ShiftDatesAlert.jsx", - "line": 41, - "column": 8, - "index": 870 + "filePath": "src/course-home/courseware-search/CoursewareSearch.jsx", + "line": 119, + "column": 12, + "index": 3749 }, { - "filePath": "src/course-home/suggested-schedule-messaging/ShiftDatesAlert.jsx", - "line": 45, + "filePath": "src/course-home/outline-tab/alerts/certificate-status-alert/CertificateStatusAlert.jsx", + "line": 166, "column": 8, - "index": 1079 + "index": 5845 }, { - "filePath": "src/course-home/suggested-schedule-messaging/UpgradeToCompleteAlert.jsx", - "line": 38, - "column": 8, - "index": 863 + "filePath": "src/course-home/outline-tab/alerts/course-end-alert/CourseEndAlert.jsx", + "line": 86, + "column": 4, + "index": 2156 }, { - "filePath": "src/course-home/suggested-schedule-messaging/UpgradeToCompleteAlert.jsx", - "line": 42, - "column": 8, - "index": 1096 + "filePath": "src/course-home/outline-tab/alerts/private-course-alert/PrivateCourseAlert.jsx", + "line": 67, + "column": 4, + "index": 2024 }, { - "filePath": "src/course-home/suggested-schedule-messaging/UpgradeToShiftDatesAlert.jsx", - "line": 40, - "column": 8, - "index": 918 + "filePath": "src/course-home/outline-tab/alerts/scheduled-content-alert/ScheduledCotentAlert.jsx", + "line": 12, + "column": 4, + "index": 286 }, { - "filePath": "src/course-home/suggested-schedule-messaging/UpgradeToShiftDatesAlert.jsx", - "line": 44, - "column": 8, - "index": 1131 - } - ], - "StatefulButton": [ + "filePath": "src/course-home/outline-tab/widgets/WelcomeMessage.jsx", + "line": 45, + "column": 4, + "index": 1705 + }, { - "filePath": "src/courseware/course/bookmark/BookmarkButton.jsx", - "line": 43, + "filePath": "src/course-home/suggested-schedule-messaging/ShiftDatesAlert.jsx", + "line": 39, "column": 4, - "index": 1346 - } - ], - "StandardModal": [ + "index": 806 + }, { - "filePath": "src/courseware/course/celebration/CelebrationModal.jsx", - "line": 35, + "filePath": "src/course-home/suggested-schedule-messaging/UpgradeToCompleteAlert.jsx", + "line": 36, "column": 4, - "index": 1081 + "index": 792 }, { - "filePath": "src/courseware/course/celebration/WeeklyGoalCelebrationModal.jsx", - "line": 27, + "filePath": "src/course-home/suggested-schedule-messaging/UpgradeToShiftDatesAlert.jsx", + "line": 38, "column": 4, - "index": 823 - } - ], - "ActionRow": [ + "index": 847 + }, { - "filePath": "src/courseware/course/celebration/CelebrationModal.jsx", - "line": 37, - "column": 8, - "index": 1124 + "filePath": "src/courseware/course/course-exit/CourseCelebration.jsx", + "line": 317, + "column": 10, + "index": 12667 }, { - "filePath": "src/courseware/course/celebration/WeeklyGoalCelebrationModal.jsx", - "line": 29, + "filePath": "src/courseware/course/course-exit/CourseInProgress.jsx", + "line": 41, "column": 8, - "index": 866 + "index": 1527 }, { - "filePath": "src/courseware/course/sequence/honor-code/HonorCode.jsx", - "line": 57, - "column": 6, - "index": 2318 + "filePath": "src/courseware/course/course-exit/CourseNonPassing.jsx", + "line": 41, + "column": 8, + "index": 1527 }, { - "filePath": "src/product-tours/newUserCourseHomeTour/NewUserCourseHomeTourModal.jsx", + "filePath": "src/courseware/course/course-exit/ProgramCompletion.jsx", "line": 44, - "column": 6, - "index": 1344 - } - ], - "Lightbulb": [ + "column": 4, + "index": 1501 + }, { - "filePath": "src/courseware/course/celebration/WeeklyGoalCelebrationModal.jsx", - "line": 57, - "column": 17, - "index": 1969 + "filePath": "src/courseware/course/sequence/hidden-after-due/HiddenAfterDue.jsx", + "line": 26, + "column": 4, + "index": 799 }, { - "filePath": "src/shared/streak-celebration/StreakCelebrationModal.jsx", - "line": 174, - "column": 50, - "index": 6926 - } - ], - "Card.ImageCap": [ + "filePath": "src/courseware/course/sequence/honor-code/HonorCode.jsx", + "line": 39, + "column": 4, + "index": 1437 + }, { - "filePath": "src/courseware/course/course-exit/CourseRecommendations.jsx", - "line": 107, - "column": 10, - "index": 3652 - } - ], - "CardView": [ + "filePath": "src/courseware/course/sequence/lock-paywall/LockPaywall.jsx", + "line": 82, + "column": 4, + "index": 2826 + }, { - "filePath": "src/courseware/course/course-exit/CourseRecommendations.jsx", - "line": 193, + "filePath": "src/generic/user-messages/Alert.jsx", + "line": 35, + "column": 2, + "index": 779 + }, + { + "filePath": "src/shared/streak-celebration/StreakCelebrationModal.jsx", + "line": 181, "column": 10, - "index": 6713 + "index": 7153 } ], - "useToggle": [ + "Info": [ { - "filePath": "src/courseware/course/CourseBreadcrumbs.jsx", - "line": 26, + "filePath": "src/alerts/access-expiration-alert/AccessExpirationAlert.jsx", + "line": 78, "column": 32, - "index": 967 + "index": 2167 }, { - "filePath": "src/tab-page/LoadedTabPage.jsx", + "filePath": "src/alerts/course-start-alert/CourseStartAlert.jsx", "line": 43, - "column": 61, - "index": 1502 - } - ], - "ModalPopup": [ - { - "filePath": "src/courseware/course/CourseBreadcrumbs.jsx", - "line": 61, - "column": 12, - "index": 1999 - } - ], - "Menu": [ - { - "filePath": "src/courseware/course/CourseBreadcrumbs.jsx", - "line": 62, - "column": 14, - "index": 2079 - } - ], - "Dropdown.Item": [ - { - "filePath": "src/courseware/course/JumpNavMenuItem.jsx", - "line": 48, - "column": 4, - "index": 1067 + "column": 34, + "index": 1148 }, { - "filePath": "src/courseware/course/sequence/sequence-navigation/SequenceNavigationDropdown.jsx", - "line": 28, - "column": 8, - "index": 888 + "filePath": "src/alerts/course-start-alert/CourseStartAlert.jsx", + "line": 68, + "column": 32, + "index": 1861 }, { - "filePath": "src/instructor-toolbar/masquerade-widget/MasqueradeWidgetOption.jsx", - "line": 70, - "column": 6, - "index": 1827 - } - ], - "ActionRow.Spacer": [ - { - "filePath": "src/courseware/course/sequence/honor-code/HonorCode.jsx", - "line": 58, - "column": 8, - "index": 2338 - } - ], - "Dropdown": [ + "filePath": "src/alerts/enrollment-alert/EnrollmentAlert.jsx", + "line": 38, + "column": 4, + "index": 1039 + }, { - "filePath": "src/courseware/course/sequence/sequence-navigation/SequenceNavigationDropdown.jsx", - "line": 14, - "column": 2, - "index": 310 + "filePath": "src/course-home/outline-tab/alerts/course-end-alert/CourseEndAlert.jsx", + "line": 86, + "column": 32, + "index": 2184 }, { - "filePath": "src/generic/tabs/Tabs.jsx", - "line": 41, - "column": 10, - "index": 1559 + "filePath": "src/course-home/progress-tab/grades/detailed-grades/SubsectionTitleCell.jsx", + "line": 89, + "column": 23, + "index": 3119 }, { - "filePath": "src/instructor-toolbar/masquerade-widget/MasqueradeWidget.jsx", - "line": 124, - "column": 10, - "index": 3481 + "filePath": "src/courseware/course/sequence/hidden-after-due/HiddenAfterDue.jsx", + "line": 26, + "column": 32, + "index": 827 } ], - "Dropdown.Toggle": [ + "PageBanner": [ { - "filePath": "src/courseware/course/sequence/sequence-navigation/SequenceNavigationDropdown.jsx", + "filePath": "src/alerts/access-expiration-alert/AccessExpirationMasqueradeBanner.jsx", "line": 15, "column": 4, - "index": 366 - }, - { - "filePath": "src/generic/tabs/Tabs.jsx", - "line": 42, - "column": 12, - "index": 1600 + "index": 407 }, { - "filePath": "src/instructor-toolbar/masquerade-widget/MasqueradeWidget.jsx", - "line": 125, - "column": 12, - "index": 3535 + "filePath": "src/alerts/course-start-alert/CourseStartMasqueradeBanner.jsx", + "line": 21, + "column": 4, + "index": 517 } ], - "Dropdown.Menu": [ + "WarningFilled": [ { - "filePath": "src/courseware/course/sequence/sequence-navigation/SequenceNavigationDropdown.jsx", + "filePath": "src/alerts/active-enteprise-alert/ActiveEnterpriseAlert.jsx", "line": 26, - "column": 4, - "index": 809 + "column": 35, + "index": 893 }, { - "filePath": "src/generic/tabs/Tabs.jsx", - "line": 49, - "column": 12, - "index": 1982 + "filePath": "src/alerts/logistration-alert/LogistrationAlert.jsx", + "line": 32, + "column": 35, + "index": 1192 }, { - "filePath": "src/instructor-toolbar/masquerade-widget/MasqueradeWidget.jsx", - "line": 128, - "column": 12, - "index": 3657 + "filePath": "src/course-home/progress-tab/credit-information/CreditInformation.jsx", + "line": 80, + "column": 92, + "index": 3057 + }, + { + "filePath": "src/course-home/progress-tab/grades/course-grade/CourseGradeFooter.jsx", + "line": 53, + "column": 17, + "index": 1866 } ], - "ModalDialog": [ + "Button": [ { - "filePath": "src/courseware/course/sequence/Unit/ContentIFrame.jsx", - "line": 94, - "column": 10, - "index": 2476 + "filePath": "src/alerts/enrollment-alert/EnrollmentAlert.jsx", + "line": 44, + "column": 4, + "index": 1154 }, { - "filePath": "src/courseware/course/sequence/Unit/ContentIFrame.test.jsx", - "line": 160, - "column": 49, - "index": 5588 + "filePath": "src/alerts/logistration-alert/AccountActivationAlert.jsx", + "line": 42, + "column": 4, + "index": 1460 }, { - "filePath": "src/courseware/course/sequence/Unit/ContentIFrame.test.jsx", - "line": 179, - "column": 49, - "index": 6436 + "filePath": "src/course-home/courseware-search/CoursewareSearch.jsx", + "line": 95, + "column": 8, + "index": 2690 }, { - "filePath": "src/shared/streak-celebration/StreakCelebrationModal.jsx", - "line": 147, - "column": 4, - "index": 5819 - } - ], - "ModalDialog.Body": [ - { - "filePath": "src/courseware/course/sequence/Unit/ContentIFrame.jsx", - "line": 101, - "column": 12, - "index": 2676 + "filePath": "src/course-home/courseware-search/CoursewareSearchToggle.jsx", + "line": 29, + "column": 6, + "index": 880 }, { - "filePath": "src/shared/streak-celebration/StreakCelebrationModal.jsx", - "line": 163, + "filePath": "src/course-home/goal-unsubscribe/ResultPage.jsx", + "line": 42, "column": 6, + "index": 1478 + }, + { + "filePath": "src/course-home/outline-tab/alerts/certificate-status-alert/CertificateStatusAlert.jsx", + "line": 175, + "column": 16, "index": 6314 - } - ], - "Modal": [ + }, { - "filePath": "src/courseware/course/sequence/Unit/ContentIFrame.jsx", - "line": 107, - "column": 10, - "index": 2850 - } - ], - "ArrowBackIos": [ + "filePath": "src/course-home/outline-tab/alerts/private-course-alert/PrivateCourseAlert.jsx", + "line": 36, + "column": 4, + "index": 1203 + }, { - "filePath": "src/courseware/course/sidebar/common/SidebarBase.jsx", - "line": 57, - "column": 21, - "index": 1861 - } - ], - "QuestionAnswer": [ + "filePath": "src/course-home/outline-tab/alerts/scheduled-content-alert/ScheduledCotentAlert.jsx", + "line": 28, + "column": 12, + "index": 1039 + }, { - "filePath": "src/courseware/course/sidebar/sidebars/discussions/DiscussionsTrigger.jsx", - "line": 47, - "column": 17, - "index": 1562 - } - ], - "WatchOutline": [ + "filePath": "src/course-home/outline-tab/OutlineTab.jsx", + "line": 167, + "column": 18, + "index": 5994 + }, { - "filePath": "src/courseware/course/sidebar/sidebars/notifications/NotificationIcon.jsx", - "line": 16, - "column": 15, - "index": 396 - } - ], - "Input": [ + "filePath": "src/course-home/outline-tab/widgets/ProctoringInfoPanel.jsx", + "line": 138, + "column": 6, + "index": 4819 + }, { - "filePath": "src/instructor-toolbar/masquerade-widget/MasqueradeUserNameInput.jsx", - "line": 49, + "filePath": "src/course-home/outline-tab/widgets/ProctoringInfoPanel.jsx", + "line": 153, "column": 6, - "index": 1065 - } - ], - "Compass": [ + "index": 5258 + }, { - "filePath": "src/product-tours/newUserCourseHomeTour/LaunchCourseHomeTourButton.jsx", - "line": 49, - "column": 19, - "index": 1462 - } - ], - "MarketingModal": [ + "filePath": "src/course-home/outline-tab/widgets/ProctoringInfoPanel.jsx", + "line": 160, + "column": 8, + "index": 5572 + }, { - "filePath": "src/product-tours/newUserCourseHomeTour/NewUserCourseHomeTourModal.jsx", - "line": 18, - "column": 2, - "index": 475 - } - ], - "ModalDialog.Hero": [ + "filePath": "src/course-home/outline-tab/widgets/ProctoringInfoPanel.jsx", + "line": 166, + "column": 8, + "index": 5833 + }, { - "filePath": "src/product-tours/newUserCourseHomeTour/NewUserCourseHomeTourModal.jsx", - "line": 25, - "column": 6, - "index": 652 - } - ], - "ModalDialog.Title": [ + "filePath": "src/course-home/outline-tab/widgets/ProctoringInfoPanel.jsx", + "line": 209, + "column": 12, + "index": 7625 + }, { - "filePath": "src/product-tours/newUserCourseHomeTour/NewUserCourseHomeTourModal.jsx", - "line": 30, + "filePath": "src/course-home/outline-tab/widgets/StartOrResumeCourseCard.jsx", + "line": 48, "column": 10, - "index": 830 + "index": 1276 }, { - "filePath": "src/shared/streak-celebration/StreakCelebrationModal.jsx", - "line": 159, + "filePath": "src/course-home/outline-tab/widgets/WelcomeMessage.jsx", + "line": 57, "column": 8, - "index": 6184 - } - ], - "ProductTour": [ + "index": 2020 + }, { - "filePath": "src/product-tours/ProductTours.jsx", - "line": 145, - "column": 6, - "index": 4804 - } - ], - "ModalDialog.Header": [ + "filePath": "src/course-home/progress-tab/certificate-status/CertificateStatus.jsx", + "line": 252, + "column": 12, + "index": 8853 + }, { - "filePath": "src/shared/streak-celebration/StreakCelebrationModal.jsx", - "line": 158, + "filePath": "src/course-home/progress-tab/grades/course-grade/CourseGradeHeader.jsx", + "line": 77, + "column": 10, + "index": 2686 + }, + { + "filePath": "src/course-home/progress-tab/ProgressHeader.jsx", + "line": 32, "column": 6, - "index": 6130 - } - ], - "MoneyFilled": [ + "index": 1021 + }, { - "filePath": "src/shared/streak-celebration/StreakCelebrationModal.jsx", - "line": 183, - "column": 69, - "index": 7275 - } - ], - "ModalDialog.Footer": [ + "filePath": "src/course-home/suggested-schedule-messaging/ShiftDatesAlert.jsx", + "line": 46, + "column": 10, + "index": 1172 + }, { - "filePath": "src/shared/streak-celebration/StreakCelebrationModal.jsx", - "line": 201, - "column": 6, - "index": 8036 - } - ], - "ModalDialog.CloseButton": [ + "filePath": "src/course-home/suggested-schedule-messaging/UpgradeToCompleteAlert.jsx", + "line": 43, + "column": 10, + "index": 1189 + }, { - "filePath": "src/shared/streak-celebration/StreakCelebrationModal.jsx", - "line": 213, - "column": 16, - "index": 8440 + "filePath": "src/course-home/suggested-schedule-messaging/UpgradeToShiftDatesAlert.jsx", + "line": 45, + "column": 10, + "index": 1224 }, { - "filePath": "src/shared/streak-celebration/StreakCelebrationModal.jsx", - "line": 226, - "column": 16, - "index": 8914 + "filePath": "src/courseware/course/celebration/CelebrationModal.jsx", + "line": 38, + "column": 10, + "index": 1177 }, { - "filePath": "src/shared/streak-celebration/StreakCelebrationModal.jsx", - "line": 234, + "filePath": "src/courseware/course/celebration/WeeklyGoalCelebrationModal.jsx", + "line": 30, "column": 10, - "index": 9189 - } - ], - "Toast": [ + "index": 923 + }, { - "filePath": "src/tab-page/TabPage.jsx", - "line": 52, + "filePath": "src/courseware/course/course-exit/CourseCelebration.jsx", + "line": 109, "column": 10, - "index": 1583 - } - ] - } - }, - { - "version": "21.5.6", - "name": "@edx/frontend-app-library-authoring", - "repository": { - "type": "git", - "url": "git+https://github.com/openedx/frontend-app-library-authoring.git" - }, - "folderName": "frontend-app-library-authoring", - "usages": { - "Col": [ + "index": 3889 + }, { - "filePath": "src/generic/LoadingPage.jsx", - "line": 6, - "column": 2, - "index": 148 + "filePath": "src/courseware/course/course-exit/CourseCelebration.jsx", + "line": 153, + "column": 8, + "index": 5950 }, { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 467, - "column": 6, - "index": 15100 + "filePath": "src/courseware/course/course-exit/CourseCelebration.jsx", + "line": 325, + "column": 20, + "index": 13041 }, { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 542, + "filePath": "src/courseware/course/course-exit/CourseExit.jsx", + "line": 67, "column": 8, - "index": 18009 + "index": 2051 }, { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 556, + "filePath": "src/courseware/course/course-exit/CourseInProgress.jsx", + "line": 45, "column": 14, - "index": 18618 + "index": 1782 }, { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 559, + "filePath": "src/courseware/course/course-exit/CourseNonPassing.jsx", + "line": 45, "column": 14, - "index": 18780 + "index": 1803 }, { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 643, - "column": 12, - "index": 22423 + "filePath": "src/courseware/course/course-exit/ProgramCompletion.jsx", + "line": 67, + "column": 14, + "index": 2584 }, { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 656, - "column": 6, - "index": 22894 + "filePath": "src/courseware/course/sequence/content-lock/ContentLock.jsx", + "line": 33, + "column": 8, + "index": 1016 }, { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 659, - "column": 12, - "index": 23004 + "filePath": "src/courseware/course/sequence/honor-code/HonorCode.jsx", + "line": 59, + "column": 8, + "index": 2371 }, { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 667, - "column": 12, - "index": 23617 + "filePath": "src/courseware/course/sequence/honor-code/HonorCode.jsx", + "line": 62, + "column": 8, + "index": 2515 }, { - "filePath": "src/library-authoring/common/ErrorAlert.jsx", - "line": 11, + "filePath": "src/courseware/course/sequence/sequence-navigation/generic/NextButton.jsx", + "line": 28, "column": 4, - "index": 414 + "index": 835 }, { - "filePath": "src/library-authoring/common/LicenseField.jsx", - "line": 56, - "column": 10, - "index": 1582 + "filePath": "src/courseware/course/sequence/sequence-navigation/generic/PreviousButton.jsx", + "line": 21, + "column": 4, + "index": 632 }, { - "filePath": "src/library-authoring/common/LicenseField.jsx", - "line": 65, - "column": 10, - "index": 1867 + "filePath": "src/courseware/course/sequence/sequence-navigation/UnitButton.jsx", + "line": 34, + "column": 4, + "index": 942 }, { - "filePath": "src/library-authoring/common/LicenseField.jsx", - "line": 70, - "column": 10, - "index": 2096 + "filePath": "src/courseware/course/sidebar/sidebars/course-outline/components/SidebarSection.jsx", + "line": 42, + "column": 6, + "index": 1318 }, { - "filePath": "src/library-authoring/common/LicenseField.jsx", - "line": 75, - "column": 10, - "index": 2317 + "filePath": "src/courseware/course/sidebar/sidebars/course-outline/CourseOutlineTray.jsx", + "line": 68, + "column": 8, + "index": 2450 }, { - "filePath": "src/library-authoring/common/LicenseField.jsx", - "line": 84, - "column": 10, - "index": 2651 + "filePath": "src/generic/upgrade-button/UpgradeButton.jsx", + "line": 22, + "column": 4, + "index": 560 }, { - "filePath": "src/library-authoring/common/LicenseField.jsx", - "line": 89, - "column": 10, - "index": 2884 + "filePath": "src/generic/upgrade-button/UpgradeNowButton.jsx", + "line": 22, + "column": 4, + "index": 567 }, { - "filePath": "src/library-authoring/common/LicenseField.jsx", - "line": 94, - "column": 10, - "index": 3107 + "filePath": "src/generic/upgrade-notification/UpgradeNotification.jsx", + "line": 453, + "column": 6, + "index": 14859 }, { - "filePath": "src/library-authoring/common/LicenseField.jsx", - "line": 103, - "column": 10, - "index": 3441 + "filePath": "src/product-tours/newUserCourseHomeTour/LaunchCourseHomeTourButton.jsx", + "line": 46, + "column": 8, + "index": 1290 }, { - "filePath": "src/library-authoring/common/LicenseField.jsx", - "line": 108, - "column": 10, - "index": 3675 + "filePath": "src/product-tours/newUserCourseHomeTour/NewUserCourseHomeTourModal.jsx", + "line": 45, + "column": 8, + "index": 1368 }, { - "filePath": "src/library-authoring/common/LicenseField.jsx", - "line": 113, + "filePath": "src/product-tours/newUserCourseHomeTour/NewUserCourseHomeTourModal.jsx", + "line": 51, + "column": 8, + "index": 1523 + } + ], + "Icon": [ + { + "filePath": "src/alerts/logistration-alert/AccountActivationAlert.jsx", + "line": 55, + "column": 6, + "index": 1826 + }, + { + "filePath": "src/alerts/logistration-alert/AccountActivationAlert.jsx", + "line": 105, "column": 10, - "index": 3899 + "index": 3351 }, { - "filePath": "src/library-authoring/common/LicenseField.jsx", + "filePath": "src/course-home/courseware-search/CoursewareSearch.jsx", + "line": 101, + "column": 9, + "index": 2930 + }, + { + "filePath": "src/course-home/courseware-search/CoursewareSearchResults.jsx", + "line": 47, + "column": 61, + "index": 1303 + }, + { + "filePath": "src/course-home/outline-tab/Section.jsx", + "line": 77, + "column": 12, + "index": 2312 + }, + { + "filePath": "src/course-home/outline-tab/SequenceLink.jsx", "line": 122, - "column": 10, - "index": 4224 + "column": 14, + "index": 3645 }, { - "filePath": "src/library-authoring/common/LicenseField.jsx", - "line": 127, - "column": 10, - "index": 4452 + "filePath": "src/course-home/outline-tab/widgets/WeeklyLearningGoalCard.jsx", + "line": 137, + "column": 14, + "index": 4848 }, { - "filePath": "src/library-authoring/common/LicenseField.jsx", - "line": 134, - "column": 6, - "index": 4668 + "filePath": "src/course-home/progress-tab/credit-information/CreditInformation.jsx", + "line": 76, + "column": 84, + "index": 2818 }, { - "filePath": "src/library-authoring/common/LicenseField.jsx", - "line": 138, - "column": 6, - "index": 4923 + "filePath": "src/course-home/progress-tab/credit-information/CreditInformation.jsx", + "line": 80, + "column": 81, + "index": 3046 }, { - "filePath": "src/library-authoring/common/SuccessAlert.jsx", - "line": 10, - "column": 4, - "index": 373 + "filePath": "src/course-home/progress-tab/credit-information/CreditInformation.jsx", + "line": 83, + "column": 72, + "index": 3230 }, { - "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", - "line": 195, - "column": 12, - "index": 4807 + "filePath": "src/course-home/progress-tab/credit-information/CreditInformation.jsx", + "line": 86, + "column": 71, + "index": 3419 }, { - "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", - "line": 330, - "column": 12, - "index": 11405 + "filePath": "src/course-home/progress-tab/grades/course-grade/CourseGradeFooter.jsx", + "line": 52, + "column": 27, + "index": 1766 + }, + { + "filePath": "src/course-home/progress-tab/grades/course-grade/CourseGradeFooter.jsx", + "line": 53, + "column": 6, + "index": 1855 }, { - "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", - "line": 386, + "filePath": "src/course-home/progress-tab/grades/course-grade/CourseGradeHeader.jsx", + "line": 58, "column": 12, - "index": 12847 + "index": 1911 }, { - "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", - "line": 423, - "column": 12, - "index": 14412 + "filePath": "src/course-home/progress-tab/grades/course-grade/GradeRangeTooltip.jsx", + "line": 69, + "column": 16, + "index": 2163 }, { - "filePath": "src/library-authoring/edit-block/LibraryBlockPage.jsx", - "line": 218, - "column": 12, - "index": 6366 + "filePath": "src/course-home/progress-tab/grades/detailed-grades/DetailedGrades.jsx", + "line": 81, + "column": 10, + "index": 2856 }, { - "filePath": "src/library-authoring/edit-block/LibraryBlockPage.jsx", - "line": 322, - "column": 12, - "index": 11069 + "filePath": "src/course-home/progress-tab/grades/detailed-grades/SubsectionTitleCell.jsx", + "line": 53, + "column": 42, + "index": 1650 }, { - "filePath": "src/library-authoring/library-access/LibraryAccessPage.jsx", - "line": 69, - "column": 8, - "index": 2307 + "filePath": "src/course-home/progress-tab/grades/detailed-grades/SubsectionTitleCell.jsx", + "line": 54, + "column": 40, + "index": 1741 }, { - "filePath": "src/library-authoring/library-access/LibraryAccessPage.jsx", - "line": 97, + "filePath": "src/course-home/progress-tab/grades/detailed-grades/SubsectionTitleCell.jsx", + "line": 59, "column": 14, - "index": 3234 + "index": 1977 }, { - "filePath": "src/library-authoring/library-access/LibraryAccessPage.jsx", - "line": 103, - "column": 8, - "index": 3467 + "filePath": "src/course-home/progress-tab/grades/detailed-grades/SubsectionTitleCell.jsx", + "line": 88, + "column": 16, + "index": 3090 }, { - "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", - "line": 36, - "column": 6, - "index": 1295 - } - ], - "Card": [ - { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 95, - "column": 2, - "index": 2579 + "filePath": "src/course-home/progress-tab/grades/grade-summary/AssignmentTypeCell.jsx", + "line": 21, + "column": 30, + "index": 643 }, { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 668, - "column": 14, - "index": 23681 + "filePath": "src/course-home/progress-tab/grades/grade-summary/GradeSummaryHeader.jsx", + "line": 43, + "column": 18, + "index": 1450 }, { - "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", - "line": 207, - "column": 16, - "index": 5218 + "filePath": "src/course-home/progress-tab/grades/grade-summary/GradeSummaryHeader.jsx", + "line": 51, + "column": 10, + "index": 1722 }, { - "filePath": "src/library-authoring/course-import/CourseImportListItem.jsx", - "line": 54, - "column": 4, - "index": 1666 + "filePath": "src/courseware/course/celebration/WeeklyGoalCelebrationModal.jsx", + "line": 56, + "column": 10, + "index": 1954 }, { - "filePath": "src/library-authoring/course-import/CourseImportTaskListItem.jsx", - "line": 31, - "column": 4, - "index": 620 + "filePath": "src/courseware/course/share/ShareButton.jsx", + "line": 39, + "column": 6, + "index": 905 }, { - "filePath": "src/library-authoring/create-library/LibraryCreatePage.jsx", - "line": 280, - "column": 14, - "index": 8412 + "filePath": "src/courseware/course/sidebar/common/SidebarBase.jsx", + "line": 57, + "column": 10, + "index": 1800 }, { - "filePath": "src/library-authoring/edit-block/LibraryBlockPage.jsx", - "line": 230, - "column": 16, - "index": 6777 + "filePath": "src/courseware/course/sidebar/common/SidebarBase.jsx", + "line": 74, + "column": 28, + "index": 2460 }, { - "filePath": "src/library-authoring/empty-page/EmptyPage.jsx", - "line": 10, - "column": 2, - "index": 163 + "filePath": "src/courseware/course/sidebar/sidebars/course-outline/components/SidebarSection.jsx", + "line": 51, + "column": 8, + "index": 1617 }, { - "filePath": "src/library-authoring/library-access/LibraryAccessForm.jsx", - "line": 28, + "filePath": "src/courseware/course/sidebar/sidebars/discussions/DiscussionsTrigger.jsx", + "line": 48, "column": 6, - "index": 915 + "index": 1590 }, { - "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", - "line": 30, - "column": 2, - "index": 889 + "filePath": "src/courseware/course/sidebar/sidebars/notifications/NotificationIcon.jsx", + "line": 16, + "column": 4, + "index": 393 }, { - "filePath": "src/library-authoring/list-libraries/LibraryListPage.jsx", - "line": 143, - "column": 22, - "index": 4351 - } - ], - "Card.Header": [ - { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 96, - "column": 4, - "index": 2614 + "filePath": "src/generic/upgrade-notification/UpgradeNotification.jsx", + "line": 502, + "column": 24, + "index": 16284 }, { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 669, + "filePath": "src/preferences-unsubscribe/index.jsx", + "line": 57, "column": 16, - "index": 23704 + "index": 2084 }, { - "filePath": "src/library-authoring/course-import/CourseImportListItem.jsx", - "line": 55, - "column": 6, - "index": 1701 + "filePath": "src/product-tours/newUserCourseHomeTour/LaunchCourseHomeTourButton.jsx", + "line": 48, + "column": 12, + "index": 1445 }, { - "filePath": "src/library-authoring/course-import/CourseImportTaskListItem.jsx", - "line": 32, - "column": 6, - "index": 655 + "filePath": "src/shared/streak-celebration/StreakCelebrationModal.jsx", + "line": 174, + "column": 12, + "index": 6915 }, { - "filePath": "src/library-authoring/library-access/LibraryAccessForm.jsx", - "line": 29, - "column": 8, - "index": 930 + "filePath": "src/shared/streak-celebration/StreakCelebrationModal.jsx", + "line": 183, + "column": 14, + "index": 7247 } ], - "ActionRow": [ + "ArrowForward": [ { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 100, - "column": 8, - "index": 2739 + "filePath": "src/alerts/logistration-alert/AccountActivationAlert.jsx", + "line": 55, + "column": 17, + "index": 1837 + } + ], + "Spinner": [ + { + "filePath": "src/alerts/logistration-alert/AccountActivationAlert.jsx", + "line": 92, + "column": 10, + "index": 3074 }, { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 154, - "column": 8, - "index": 4669 + "filePath": "src/course-home/courseware-search/CoursewareSearch.jsx", + "line": 115, + "column": 14, + "index": 3560 }, { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 410, + "filePath": "src/generic/PageLoading.jsx", + "line": 28, "column": 10, - "index": 13335 + "index": 575 }, { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 450, - "column": 6, - "index": 14526 - }, + "filePath": "src/shared/streak-celebration/StreakCelebrationModal.jsx", + "line": 170, + "column": 10, + "index": 6743 + } + ], + "Check": [ { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 468, - "column": 8, - "index": 15136 - }, + "filePath": "src/alerts/logistration-alert/AccountActivationAlert.jsx", + "line": 106, + "column": 17, + "index": 3374 + } + ], + "AlertModal": [ { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 492, - "column": 8, - "index": 16025 - }, + "filePath": "src/alerts/logistration-alert/AccountActivationAlert.jsx", + "line": 117, + "column": 4, + "index": 3599 + } + ], + "Tabs": [ { - "filePath": "src/library-authoring/course-import/CourseImportListItem.jsx", - "line": 60, - "column": 10, - "index": 1892 - }, + "filePath": "src/course-home/courseware-search/CoursewareResultsFilter.jsx", + "line": 59, + "column": 4, + "index": 2306 + } + ], + "Tab": [ { - "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", - "line": 50, + "filePath": "src/course-home/courseware-search/CoursewareResultsFilter.jsx", + "line": 68, "column": 8, - "index": 1489 - }, - { - "filePath": "src/library-authoring/create-library/LibraryCreatePage.jsx", - "line": 368, - "column": 12, - "index": 12978 - }, + "index": 2620 + } + ], + "Close": [ { - "filePath": "src/library-authoring/edit-block/LibraryBlockPage.jsx", - "line": 344, + "filePath": "src/course-home/courseware-search/CoursewareSearch.jsx", + "line": 101, "column": 20, - "index": 12328 + "index": 2941 }, { - "filePath": "src/library-authoring/library-access/LibraryAccessPage.jsx", - "line": 49, - "column": 8, - "index": 1654 + "filePath": "src/courseware/course/sidebar/common/SidebarBase.jsx", + "line": 72, + "column": 25, + "index": 2395 }, { - "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", - "line": 35, - "column": 4, - "index": 1260 - }, + "filePath": "src/generic/upgrade-notification/UpgradeNotification.jsx", + "line": 500, + "column": 21, + "index": 16227 + } + ], + "SearchField.Advanced": [ { - "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", - "line": 96, - "column": 14, - "index": 3800 - }, + "filePath": "src/course-home/courseware-search/CoursewareSearchForm.jsx", + "line": 14, + "column": 2, + "index": 319 + } + ], + "SearchField.Label": [ { - "filePath": "src/library-authoring/list-libraries/LibraryListPage.jsx", - "line": 122, - "column": 14, - "index": 3487 + "filePath": "src/course-home/courseware-search/CoursewareSearchForm.jsx", + "line": 27, + "column": 6, + "index": 809 } ], - "IconButtonWithTooltip": [ + "SearchField.Input": [ { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 101, - "column": 10, - "index": 2761 - }, + "filePath": "src/course-home/courseware-search/CoursewareSearchForm.jsx", + "line": 28, + "column": 6, + "index": 837 + } + ], + "SearchField.ClearButton": [ { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 108, - "column": 10, - "index": 3086 + "filePath": "src/course-home/courseware-search/CoursewareSearchForm.jsx", + "line": 29, + "column": 6, + "index": 901 } ], - "EditOutline": [ + "SearchField.SubmitButton": [ { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 104, - "column": 17, - "index": 2937 - }, + "filePath": "src/course-home/courseware-search/CoursewareSearchForm.jsx", + "line": 31, + "column": 4, + "index": 944 + } + ], + "ManageSearch": [ { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 413, - "column": 22, - "index": 13421 + "filePath": "src/course-home/courseware-search/CoursewareSearchToggle.jsx", + "line": 36, + "column": 19, + "index": 1152 } ], - "Icon": [ + "Badge": [ { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 105, - "column": 20, - "index": 2970 + "filePath": "src/course-home/dates-tab/timeline/badgelist.jsx", + "line": 99, + "column": 10, + "index": 3026 + } + ], + "OverlayTrigger": [ + { + "filePath": "src/course-home/dates-tab/timeline/Day.jsx", + "line": 89, + "column": 18, + "index": 3157 }, { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 112, - "column": 20, - "index": 3299 + "filePath": "src/course-home/progress-tab/course-completion/CompleteDonutSegment.jsx", + "line": 32, + "column": 6, + "index": 1010 }, { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 599, - "column": 22, - "index": 20476 + "filePath": "src/course-home/progress-tab/course-completion/IncompleteDonutSegment.jsx", + "line": 36, + "column": 6, + "index": 1069 }, { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 613, - "column": 22, - "index": 21139 + "filePath": "src/course-home/progress-tab/course-completion/LockedDonutSegment.jsx", + "line": 35, + "column": 6, + "index": 1001 }, { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 628, - "column": 22, - "index": 21849 + "filePath": "src/course-home/progress-tab/grades/course-grade/CurrentGradeTooltip.jsx", + "line": 38, + "column": 6, + "index": 868 }, { - "filePath": "src/library-authoring/common/License.jsx", - "line": 27, - "column": 8, - "index": 847 + "filePath": "src/course-home/progress-tab/grades/course-grade/GradeRangeTooltip.jsx", + "line": 33, + "column": 4, + "index": 890 }, { - "filePath": "src/library-authoring/common/License.jsx", - "line": 36, - "column": 10, - "index": 1118 + "filePath": "src/course-home/progress-tab/grades/course-grade/PassingGradeTooltip.jsx", + "line": 22, + "column": 6, + "index": 540 }, { - "filePath": "src/library-authoring/common/License.jsx", - "line": 46, - "column": 10, - "index": 1421 + "filePath": "src/course-home/progress-tab/grades/grade-summary/GradeSummaryHeader.jsx", + "line": 26, + "column": 6, + "index": 872 + } + ], + "Tooltip": [ + { + "filePath": "src/course-home/dates-tab/timeline/Day.jsx", + "line": 92, + "column": 22, + "index": 3264 + } + ], + "Alert.Heading": [ + { + "filePath": "src/course-home/outline-tab/alerts/certificate-status-alert/CertificateStatusAlert.jsx", + "line": 170, + "column": 14, + "index": 6129 }, { - "filePath": "src/library-authoring/common/License.jsx", - "line": 56, + "filePath": "src/course-home/outline-tab/alerts/scheduled-content-alert/ScheduledCotentAlert.jsx", + "line": 15, "column": 10, - "index": 1716 + "index": 452 }, { - "filePath": "src/library-authoring/common/License.jsx", - "line": 66, + "filePath": "src/course-home/suggested-schedule-messaging/UpgradeToCompleteAlert.jsx", + "line": 39, "column": 10, - "index": 2005 - }, + "index": 928 + } + ], + "DisabledVisible": [ { - "filePath": "src/library-authoring/common/License.jsx", - "line": 93, - "column": 4, - "index": 2637 - }, + "filePath": "src/course-home/outline-tab/Section.jsx", + "line": 77, + "column": 40, + "index": 2340 + } + ], + "Collapsible": [ { - "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", - "line": 319, - "column": 37, - "index": 11002 + "filePath": "src/course-home/outline-tab/Section.jsx", + "line": 90, + "column": 6, + "index": 2634 }, { - "filePath": "src/library-authoring/course-import/CourseImportListItem.jsx", - "line": 44, - "column": 15, - "index": 1407 - }, + "filePath": "src/courseware/course/sidebar/sidebars/course-outline/components/SidebarSequence.jsx", + "line": 55, + "column": 6, + "index": 1681 + } + ], + "IconButton": [ { - "filePath": "src/library-authoring/course-import/CourseImportListItem.jsx", - "line": 45, - "column": 15, - "index": 1442 + "filePath": "src/course-home/outline-tab/Section.jsx", + "line": 97, + "column": 10, + "index": 2828 }, { - "filePath": "src/library-authoring/course-import/CourseImportListItem.jsx", - "line": 46, - "column": 16, - "index": 1510 + "filePath": "src/course-home/outline-tab/Section.jsx", + "line": 105, + "column": 10, + "index": 3052 }, { - "filePath": "src/library-authoring/course-import/CourseImportListItem.jsx", - "line": 47, - "column": 13, - "index": 1545 + "filePath": "src/course-home/progress-tab/grades/course-grade/GradeRangeTooltip.jsx", + "line": 63, + "column": 6, + "index": 1891 }, { - "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", - "line": 226, - "column": 82, - "index": 7620 + "filePath": "src/course-home/progress-tab/grades/grade-summary/GradeSummaryHeader.jsx", + "line": 38, + "column": 8, + "index": 1212 }, { - "filePath": "src/library-authoring/create-library/LibraryCreatePage.jsx", - "line": 349, - "column": 35, - "index": 12168 + "filePath": "src/courseware/course/sidebar/common/SidebarBase.jsx", + "line": 71, + "column": 18, + "index": 2358 }, { - "filePath": "src/library-authoring/library-access/LibraryAccessForm.jsx", - "line": 82, - "column": 23, - "index": 3257 + "filePath": "src/courseware/course/sidebar/sidebars/course-outline/CourseOutlineTray.jsx", + "line": 81, + "column": 6, + "index": 2878 }, { - "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", - "line": 74, - "column": 20, - "index": 2983 - } - ], - "DeleteOutline": [ - { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 111, - "column": 17, - "index": 3264 + "filePath": "src/courseware/course/sidebar/sidebars/course-outline/CourseOutlineTrigger.jsx", + "line": 33, + "column": 6, + "index": 1146 }, { - "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", - "line": 73, - "column": 17, - "index": 2948 + "filePath": "src/generic/upgrade-notification/UpgradeNotification.jsx", + "line": 499, + "column": 14, + "index": 16194 + } + ], + "Block": [ + { + "filePath": "src/course-home/outline-tab/SequenceLink.jsx", + "line": 122, + "column": 42, + "index": 3673 } ], - "ModalDialog": [ + "Card": [ { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 118, + "filePath": "src/course-home/outline-tab/widgets/StartOrResumeCourseCard.jsx", + "line": 44, "column": 4, - "index": 3448 + "index": 1042 }, { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 141, + "filePath": "src/course-home/outline-tab/widgets/WeeklyLearningGoalCard.jsx", + "line": 91, "column": 4, - "index": 4208 + "index": 3229 }, { - "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", - "line": 80, - "column": 10, - "index": 3177 + "filePath": "src/course-home/progress-tab/certificate-status/CertificateStatus.jsx", + "line": 245, + "column": 6, + "index": 8577 + }, + { + "filePath": "src/courseware/course/course-exit/CourseRecommendations.jsx", + "line": 106, + "column": 8, + "index": 3586 } ], - "ModalDialog.Header": [ + "Card.Header": [ { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 145, + "filePath": "src/course-home/outline-tab/widgets/StartOrResumeCourseCard.jsx", + "line": 45, "column": 6, - "index": 4312 + "index": 1116 }, { - "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", - "line": 84, - "column": 12, - "index": 3305 - } - ], - "ModalDialog.Title": [ + "filePath": "src/course-home/outline-tab/widgets/WeeklyLearningGoalCard.jsx", + "line": 96, + "column": 6, + "index": 3383 + }, { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 146, + "filePath": "src/course-home/progress-tab/certificate-status/CertificateStatus.jsx", + "line": 246, "column": 8, - "index": 4341 + "index": 8629 }, { - "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", - "line": 85, - "column": 14, - "index": 3340 + "filePath": "src/courseware/course/course-exit/CourseRecommendations.jsx", + "line": 108, + "column": 10, + "index": 3702 } ], - "ModalDialog.Body": [ + "Card.Footer": [ { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 150, + "filePath": "src/course-home/outline-tab/widgets/StartOrResumeCourseCard.jsx", + "line": 60, "column": 6, - "index": 4508 + "index": 1754 }, { - "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", - "line": 89, - "column": 12, - "index": 3525 + "filePath": "src/course-home/progress-tab/certificate-status/CertificateStatus.jsx", + "line": 250, + "column": 8, + "index": 8764 + }, + { + "filePath": "src/courseware/course/course-exit/CourseRecommendations.jsx", + "line": 111, + "column": 10, + "index": 3968 } ], - "ModalDialog.Footer": [ + "Card.Section": [ { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 153, + "filePath": "src/course-home/outline-tab/widgets/WeeklyLearningGoalCard.jsx", + "line": 101, "column": 6, - "index": 4640 + "index": 3599 }, { - "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", - "line": 95, - "column": 12, - "index": 3765 - } - ], - "ModalDialog.CloseButton": [ - { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 155, - "column": 10, + "filePath": "src/course-home/outline-tab/widgets/WeeklyLearningGoalCard.jsx", + "line": 134, + "column": 8, "index": 4691 }, { - "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", - "line": 97, - "column": 16, - "index": 3828 + "filePath": "src/course-home/progress-tab/certificate-status/CertificateStatus.jsx", + "line": 247, + "column": 8, + "index": 8668 + }, + { + "filePath": "src/courseware/course/course-exit/CourseRecommendations.jsx", + "line": 110, + "column": 10, + "index": 3921 } ], - "Button": [ + "Form.Switch": [ { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 158, + "filePath": "src/course-home/outline-tab/widgets/WeeklyLearningGoalCard.jsx", + "line": 124, "column": 10, - "index": 4877 - }, + "index": 4336 + } + ], + "Email": [ { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 303, - "column": 4, - "index": 9923 - }, + "filePath": "src/course-home/outline-tab/widgets/WeeklyLearningGoalCard.jsx", + "line": 139, + "column": 21, + "index": 4920 + } + ], + "TransitionReplace": [ { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 314, - "column": 4, - "index": 10408 - }, + "filePath": "src/course-home/outline-tab/widgets/WelcomeMessage.jsx", + "line": 66, + "column": 6, + "index": 2345 + } + ], + "Popover": [ { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 544, + "filePath": "src/course-home/progress-tab/course-completion/CompleteDonutSegment.jsx", + "line": 36, "column": 10, - "index": 18149 + "index": 1114 }, { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 673, - "column": 18, - "index": 23929 + "filePath": "src/course-home/progress-tab/course-completion/IncompleteDonutSegment.jsx", + "line": 40, + "column": 10, + "index": 1175 }, { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 676, - "column": 18, - "index": 24130 + "filePath": "src/course-home/progress-tab/course-completion/LockedDonutSegment.jsx", + "line": 39, + "column": 10, + "index": 1103 }, { - "filePath": "src/library-authoring/common/LicenseField.jsx", + "filePath": "src/course-home/progress-tab/grades/course-grade/CurrentGradeTooltip.jsx", "line": 42, - "column": 8, - "index": 923 + "column": 10, + "index": 950 }, { - "filePath": "src/library-authoring/common/LicenseField.jsx", - "line": 45, + "filePath": "src/course-home/progress-tab/grades/course-grade/GradeRangeTooltip.jsx", + "line": 38, "column": 8, - "index": 1127 + "index": 1000 }, { - "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", - "line": 302, - "column": 24, - "index": 10078 + "filePath": "src/course-home/progress-tab/grades/course-grade/PassingGradeTooltip.jsx", + "line": 26, + "column": 10, + "index": 625 }, { - "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", - "line": 53, + "filePath": "src/course-home/progress-tab/grades/grade-summary/GradeSummaryHeader.jsx", + "line": 31, "column": 10, - "index": 1660 - }, + "index": 992 + } + ], + "Popover.Content": [ { - "filePath": "src/library-authoring/create-library/LibraryCreatePage.jsx", - "line": 335, - "column": 22, - "index": 11482 + "filePath": "src/course-home/progress-tab/course-completion/CompleteDonutSegment.jsx", + "line": 37, + "column": 12, + "index": 1193 }, { - "filePath": "src/library-authoring/create-library/LibraryCreatePage.jsx", - "line": 369, - "column": 14, - "index": 13004 + "filePath": "src/course-home/progress-tab/course-completion/IncompleteDonutSegment.jsx", + "line": 41, + "column": 12, + "index": 1248 }, { - "filePath": "src/library-authoring/create-library/LibraryCreatePage.jsx", - "line": 372, - "column": 14, - "index": 13187 + "filePath": "src/course-home/progress-tab/course-completion/LockedDonutSegment.jsx", + "line": 40, + "column": 12, + "index": 1172 }, { - "filePath": "src/library-authoring/edit-block/LibraryBlockAssets.jsx", - "line": 30, - "column": 15, - "index": 1105 + "filePath": "src/course-home/progress-tab/grades/course-grade/CurrentGradeTooltip.jsx", + "line": 43, + "column": 12, + "index": 1082 }, { - "filePath": "src/library-authoring/edit-block/LibraryBlockOlx.jsx", - "line": 56, + "filePath": "src/course-home/progress-tab/grades/course-grade/GradeRangeTooltip.jsx", + "line": 39, "column": 10, - "index": 1119 + "index": 1020 }, { - "filePath": "src/library-authoring/edit-block/LibraryBlockOlx.jsx", - "line": 57, - "column": 10, - "index": 1202 + "filePath": "src/course-home/progress-tab/grades/course-grade/PassingGradeTooltip.jsx", + "line": 27, + "column": 12, + "index": 742 }, { - "filePath": "src/library-authoring/edit-block/LibraryBlockOlx.jsx", - "line": 64, - "column": 8, - "index": 1378 - }, + "filePath": "src/course-home/progress-tab/grades/grade-summary/GradeSummaryHeader.jsx", + "line": 32, + "column": 12, + "index": 1014 + } + ], + "CheckCircle": [ { - "filePath": "src/library-authoring/edit-block/LibraryBlockPage.jsx", - "line": 345, - "column": 22, - "index": 12372 + "filePath": "src/course-home/progress-tab/credit-information/CreditInformation.jsx", + "line": 76, + "column": 95, + "index": 2829 }, { - "filePath": "src/library-authoring/edit-block/LibraryBlockPage.jsx", - "line": 354, - "column": 22, - "index": 12821 + "filePath": "src/course-home/progress-tab/credit-information/CreditInformation.jsx", + "line": 83, + "column": 83, + "index": 3241 }, { - "filePath": "src/library-authoring/edit-block/LibraryBlockPage.jsx", - "line": 363, - "column": 22, - "index": 13248 + "filePath": "src/course-home/progress-tab/grades/course-grade/CourseGradeFooter.jsx", + "line": 52, + "column": 38, + "index": 1777 }, { - "filePath": "src/library-authoring/library-access/LibraryAccessForm.jsx", - "line": 68, - "column": 10, - "index": 2559 + "filePath": "src/courseware/course/course-exit/CourseCelebration.jsx", + "line": 317, + "column": 41, + "index": 12698 }, { - "filePath": "src/library-authoring/library-access/LibraryAccessPage.jsx", - "line": 55, - "column": 12, - "index": 1905 - }, + "filePath": "src/courseware/course/sidebar/sidebars/course-outline/components/CompletionIcon.jsx", + "line": 17, + "column": 13, + "index": 591 + } + ], + "WatchFilled": [ { - "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", - "line": 51, - "column": 8, - "index": 1894 - }, + "filePath": "src/course-home/progress-tab/credit-information/CreditInformation.jsx", + "line": 86, + "column": 82, + "index": 3430 + } + ], + "useWindowSize": [ { - "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", - "line": 56, - "column": 8, - "index": 2151 + "filePath": "src/course-home/progress-tab/grades/course-grade/CourseGradeFooter.jsx", + "line": 28, + "column": 21, + "index": 770 }, { - "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", - "line": 62, - "column": 10, - "index": 2420 + "filePath": "src/course-home/progress-tab/ProgressTab.jsx", + "line": 26, + "column": 22, + "index": 936 }, { - "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", - "line": 65, - "column": 10, - "index": 2615 + "filePath": "src/courseware/course/celebration/CelebrationModal.jsx", + "line": 25, + "column": 21, + "index": 819 }, { - "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", - "line": 102, - "column": 16, - "index": 4067 + "filePath": "src/courseware/course/course-exit/CourseCelebration.jsx", + "line": 40, + "column": 21, + "index": 1676 }, { - "filePath": "src/library-authoring/list-libraries/LibraryListPage.jsx", - "line": 125, - "column": 16, - "index": 3695 + "filePath": "src/courseware/course/Course.jsx", + "line": 164, + "column": 22, + "index": 6128 }, { - "filePath": "src/library-authoring/list-libraries/LibraryListPage.jsx", - "line": 162, - "column": 20, - "index": 5290 - } - ], - "Card.Body": [ + "filePath": "src/courseware/course/sequence/lock-paywall/LockPaywall.jsx", + "line": 40, + "column": 52, + "index": 1399 + }, { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 165, - "column": 6, - "index": 5185 - } - ], - "Add": [ + "filePath": "src/courseware/course/sequence/lock-paywall/LockPaywall.jsx", + "line": 41, + "column": 45, + "index": 1497 + }, { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 322, - "column": 18, - "index": 10683 + "filePath": "src/courseware/course/sequence/lock-paywall/LockPaywall.jsx", + "line": 43, + "column": 46, + "index": 1632 }, { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 549, - "column": 24, - "index": 18328 + "filePath": "src/courseware/course/sequence/lock-paywall/LockPaywall.jsx", + "line": 45, + "column": 50, + "index": 1765 }, { - "filePath": "src/library-authoring/course-import/CourseImportListItem.jsx", - "line": 44, - "column": 26, - "index": 1418 + "filePath": "src/courseware/course/sequence/lock-paywall/LockPaywall.jsx", + "line": 47, + "column": 33, + "index": 1883 }, { - "filePath": "src/library-authoring/library-access/LibraryAccessPage.jsx", - "line": 58, - "column": 26, - "index": 2018 + "filePath": "src/courseware/course/sequence/sequence-navigation/hooks.js", + "line": 88, + "column": 21, + "index": 3478 }, { - "filePath": "src/library-authoring/list-libraries/LibraryListPage.jsx", - "line": 165, - "column": 34, - "index": 5439 - } - ], - "Form.Control": [ + "filePath": "src/courseware/course/sequence/sequence-navigation/hooks.js", + "line": 93, + "column": 21, + "index": 3671 + }, { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 396, - "column": 10, - "index": 12949 + "filePath": "src/courseware/course/sequence/sequence-navigation/hooks.js", + "line": 98, + "column": 21, + "index": 3865 }, { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 478, - "column": 12, - "index": 15523 + "filePath": "src/courseware/course/sequence/sequence-navigation/SequenceNavigation.jsx", + "line": 51, + "column": 53, + "index": 1543 }, { - "filePath": "src/library-authoring/common/FormGroup.jsx", - "line": 19, - "column": 6, - "index": 495 + "filePath": "src/courseware/course/sidebar/SidebarContextProvider.jsx", + "line": 25, + "column": 34, + "index": 929 }, { - "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", - "line": 220, - "column": 28, - "index": 5880 + "filePath": "src/courseware/course/sidebar/SidebarContextProvider.jsx", + "line": 26, + "column": 35, + "index": 1021 }, { - "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", - "line": 222, - "column": 16, - "index": 7293 + "filePath": "src/courseware/course/sidebar/SidebarTriggers.jsx", + "line": 13, + "column": 23, + "index": 377 }, { - "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", - "line": 236, - "column": 14, - "index": 7995 + "filePath": "src/generic/tabs/useIndexOfLastVisibleChild.js", + "line": 38, + "column": 21, + "index": 1715 }, { - "filePath": "src/library-authoring/library-access/LibraryAccessForm.jsx", - "line": 45, - "column": 20, - "index": 1613 + "filePath": "src/shared/streak-celebration/StreakCelebrationModal.jsx", + "line": 76, + "column": 21, + "index": 3257 } ], - "IconButton": [ + "breakpoints": [ { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 412, - "column": 12, - "index": 13387 + "filePath": "src/course-home/progress-tab/grades/course-grade/CourseGradeFooter.jsx", + "line": 28, + "column": 46, + "index": 795 }, { - "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", - "line": 226, - "column": 35, - "index": 7573 + "filePath": "src/course-home/progress-tab/ProgressTab.jsx", + "line": 34, + "column": 36, + "index": 1340 }, { - "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", - "line": 72, - "column": 10, - "index": 2919 - } - ], - "Container": [ + "filePath": "src/course-home/progress-tab/ProgressTab.test.jsx", + "line": 941, + "column": 26, + "index": 34297 + }, { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 447, - "column": 2, - "index": 14351 + "filePath": "src/courseware/course/celebration/CelebrationModal.jsx", + "line": 25, + "column": 46, + "index": 844 }, { - "filePath": "src/library-authoring/edit-block/LibraryBlockPage.jsx", - "line": 216, - "column": 8, - "index": 6270 - } - ], - "ActionRow.Spacer": [ + "filePath": "src/courseware/course/course-exit/CourseCelebration.jsx", + "line": 40, + "column": 46, + "index": 1701 + }, { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 454, - "column": 8, - "index": 14621 + "filePath": "src/courseware/course/Course.jsx", + "line": 66, + "column": 43, + "index": 2780 }, { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 477, - "column": 12, - "index": 15490 + "filePath": "src/courseware/course/Course.test.jsx", + "line": 50, + "column": 24, + "index": 1590 }, { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 502, - "column": 10, - "index": 16429 + "filePath": "src/courseware/course/Course.test.jsx", + "line": 382, + "column": 24, + "index": 15143 }, { - "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", - "line": 52, - "column": 10, - "index": 1629 + "filePath": "src/courseware/course/sequence/lock-paywall/LockPaywall.jsx", + "line": 40, + "column": 77, + "index": 1424 }, { - "filePath": "src/library-authoring/library-access/LibraryAccessPage.jsx", - "line": 53, - "column": 10, - "index": 1848 + "filePath": "src/courseware/course/sequence/lock-paywall/LockPaywall.jsx", + "line": 41, + "column": 70, + "index": 1522 + }, + { + "filePath": "src/courseware/course/sequence/lock-paywall/LockPaywall.jsx", + "line": 43, + "column": 70, + "index": 1656 }, { - "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", - "line": 44, - "column": 6, - "index": 1556 + "filePath": "src/courseware/course/sequence/lock-paywall/LockPaywall.jsx", + "line": 45, + "column": 75, + "index": 1790 }, { - "filePath": "src/library-authoring/list-libraries/LibraryListPage.jsx", - "line": 124, - "column": 16, - "index": 3658 - } - ], - "Row": [ - { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 464, - "column": 4, - "index": 14897 + "filePath": "src/courseware/course/sequence/lock-paywall/LockPaywall.jsx", + "line": 47, + "column": 57, + "index": 1907 }, { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 555, - "column": 12, - "index": 18526 + "filePath": "src/courseware/course/sequence/sequence-navigation/hooks.js", + "line": 89, + "column": 29, + "index": 3524 }, { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 598, - "column": 20, - "index": 20390 + "filePath": "src/courseware/course/sequence/sequence-navigation/hooks.js", + "line": 89, + "column": 79, + "index": 3574 }, { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 612, - "column": 20, - "index": 21053 + "filePath": "src/courseware/course/sequence/sequence-navigation/hooks.js", + "line": 94, + "column": 29, + "index": 3717 }, { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 627, - "column": 20, - "index": 21763 + "filePath": "src/courseware/course/sequence/sequence-navigation/hooks.js", + "line": 94, + "column": 83, + "index": 3771 }, { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 658, - "column": 10, - "index": 22986 + "filePath": "src/courseware/course/sequence/sequence-navigation/hooks.js", + "line": 99, + "column": 29, + "index": 3911 }, { - "filePath": "src/library-authoring/common/License.jsx", - "line": 22, - "column": 4, - "index": 660 + "filePath": "src/courseware/course/sequence/sequence-navigation/SequenceNavigation.jsx", + "line": 51, + "column": 77, + "index": 1567 }, { - "filePath": "src/library-authoring/common/License.jsx", - "line": 92, - "column": 2, - "index": 2592 + "filePath": "src/courseware/course/sequence/Sequence.test.jsx", + "line": 46, + "column": 24, + "index": 1681 }, { - "filePath": "src/library-authoring/common/LicenseField.jsx", - "line": 40, - "column": 4, - "index": 873 + "filePath": "src/courseware/course/sequence/Sequence.test.jsx", + "line": 464, + "column": 26, + "index": 19514 }, { - "filePath": "src/library-authoring/common/LicenseField.jsx", - "line": 55, - "column": 8, - "index": 1535 + "filePath": "src/courseware/course/sidebar/SidebarContextProvider.jsx", + "line": 25, + "column": 58, + "index": 953 }, { - "filePath": "src/library-authoring/common/LicenseField.jsx", - "line": 74, - "column": 8, - "index": 2270 + "filePath": "src/courseware/course/sidebar/SidebarContextProvider.jsx", + "line": 26, + "column": 59, + "index": 1045 }, { - "filePath": "src/library-authoring/common/LicenseField.jsx", - "line": 93, - "column": 8, - "index": 3060 + "filePath": "src/courseware/course/sidebar/sidebars/notifications/NotificationTray.test.jsx", + "line": 46, + "column": 24, + "index": 1803 }, { - "filePath": "src/library-authoring/common/LicenseField.jsx", - "line": 112, - "column": 8, - "index": 3852 + "filePath": "src/courseware/course/sidebar/sidebars/notifications/NotificationTray.test.jsx", + "line": 54, + "column": 24, + "index": 2169 }, { - "filePath": "src/library-authoring/common/LicenseField.jsx", + "filePath": "src/courseware/course/sidebar/sidebars/notifications/NotificationTray.test.jsx", "line": 133, - "column": 4, - "index": 4639 + "column": 24, + "index": 4583 }, { - "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", - "line": 194, - "column": 10, - "index": 4769 + "filePath": "src/courseware/course/sidebar/SidebarTriggers.jsx", + "line": 13, + "column": 47, + "index": 401 }, { - "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", - "line": 385, - "column": 10, - "index": 12804 + "filePath": "src/courseware/course/test-utils.jsx", + "line": 30, + "column": 22, + "index": 1186 }, { - "filePath": "src/library-authoring/edit-block/LibraryBlockPage.jsx", - "line": 217, - "column": 10, - "index": 6328 + "filePath": "src/shared/streak-celebration/StreakCelebrationModal.jsx", + "line": 76, + "column": 46, + "index": 3282 }, { - "filePath": "src/library-authoring/library-access/LibraryAccessForm.jsx", - "line": 26, - "column": 2, - "index": 836 + "filePath": "src/shared/streak-celebration/StreakCelebrationModal.test.jsx", + "line": 61, + "column": 24, + "index": 2008 }, { - "filePath": "src/library-authoring/library-access/LibraryAccessPage.jsx", - "line": 68, - "column": 6, - "index": 2273 + "filePath": "src/shared/streak-celebration/StreakCelebrationModal.test.jsx", + "line": 94, + "column": 24, + "index": 3151 } ], - "SearchField": [ + "Locked": [ { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 471, - "column": 12, - "index": 15230 + "filePath": "src/course-home/progress-tab/grades/course-grade/CourseGradeHeader.jsx", + "line": 58, + "column": 23, + "index": 1922 + }, + { + "filePath": "src/courseware/course/sequence/lock-paywall/LockPaywall.jsx", + "line": 82, + "column": 49, + "index": 2871 } ], - "Pagination": [ + "InfoOutline": [ { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 504, - "column": 12, - "index": 16509 + "filePath": "src/course-home/progress-tab/grades/course-grade/GradeRangeTooltip.jsx", + "line": 68, + "column": 13, + "index": 2134 }, { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 644, - "column": 14, - "index": 22451 - }, + "filePath": "src/course-home/progress-tab/grades/grade-summary/GradeSummaryHeader.jsx", + "line": 42, + "column": 15, + "index": 1419 + } + ], + "Blocked": [ { - "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", - "line": 125, - "column": 12, - "index": 4198 + "filePath": "src/course-home/progress-tab/grades/detailed-grades/DetailedGrades.jsx", + "line": 81, + "column": 99, + "index": 2945 }, { - "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", - "line": 301, - "column": 12, - "index": 10104 + "filePath": "src/course-home/progress-tab/grades/detailed-grades/SubsectionTitleCell.jsx", + "line": 64, + "column": 21, + "index": 2281 }, { - "filePath": "src/library-authoring/list-libraries/LibraryListPage.jsx", - "line": 174, - "column": 18, - "index": 5760 - } - ], - "SelectableBox.Set": [ + "filePath": "src/course-home/progress-tab/grades/grade-summary/AssignmentTypeCell.jsx", + "line": 21, + "column": 256, + "index": 869 + }, { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 560, - "column": 16, - "index": 18834 + "filePath": "src/course-home/progress-tab/grades/grade-summary/GradeSummaryHeader.jsx", + "line": 51, + "column": 99, + "index": 1811 } ], - "SelectableBox": [ + "DataTable": [ { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 593, - "column": 18, - "index": 20219 + "filePath": "src/course-home/progress-tab/grades/detailed-grades/DetailedGradesTable.jsx", + "line": 45, + "column": 10, + "index": 1497 }, { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 607, - "column": 18, - "index": 20876 + "filePath": "src/course-home/progress-tab/grades/grade-summary/GradeSummaryTable.jsx", + "line": 95, + "column": 6, + "index": 3273 }, { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 621, - "column": 18, - "index": 21546 - } - ], - "TextFields": [ - { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 600, - "column": 29, - "index": 20511 + "filePath": "src/courseware/course/course-exit/CourseRecommendations.jsx", + "line": 183, + "column": 8, + "index": 6435 } ], - "HelpOutline": [ + "DataTable.Table": [ { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 614, - "column": 29, - "index": 21174 - } - ], - "VideoCamera": [ + "filePath": "src/course-home/progress-tab/grades/detailed-grades/DetailedGradesTable.jsx", + "line": 63, + "column": 12, + "index": 2124 + }, { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 629, - "column": 29, - "index": 21884 + "filePath": "src/course-home/progress-tab/grades/grade-summary/GradeSummaryTable.jsx", + "line": 128, + "column": 8, + "index": 4568 } ], - "Card.Footer": [ + "Collapsible.Advanced": [ { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 672, - "column": 16, - "index": 23897 + "filePath": "src/course-home/progress-tab/grades/detailed-grades/SubsectionTitleCell.jsx", + "line": 46, + "column": 4, + "index": 1294 }, { - "filePath": "src/library-authoring/create-library/LibraryCreatePage.jsx", - "line": 333, - "column": 18, - "index": 11389 + "filePath": "src/courseware/course/content-tools/calculator/Calculator.jsx", + "line": 42, + "column": 6, + "index": 1228 }, { - "filePath": "src/library-authoring/empty-page/EmptyPage.jsx", - "line": 15, - "column": 4, - "index": 283 + "filePath": "src/courseware/course/content-tools/calculator/Calculator.jsx", + "line": 82, + "column": 10, + "index": 3146 } ], - "Alert": [ + "Row": [ { - "filePath": "src/library-authoring/common/ErrorAlert.jsx", - "line": 12, + "filePath": "src/course-home/progress-tab/grades/detailed-grades/SubsectionTitleCell.jsx", + "line": 47, "column": 6, - "index": 451 + "index": 1323 }, { - "filePath": "src/library-authoring/common/SuccessAlert.jsx", - "line": 11, + "filePath": "src/course-home/suggested-schedule-messaging/ShiftDatesAlert.jsx", + "line": 40, "column": 6, - "index": 410 + "index": 838 }, { - "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", - "line": 199, - "column": 16, - "index": 4966 + "filePath": "src/course-home/suggested-schedule-messaging/UpgradeToCompleteAlert.jsx", + "line": 37, + "column": 6, + "index": 831 }, { - "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", - "line": 389, - "column": 18, - "index": 12998 - }, + "filePath": "src/course-home/suggested-schedule-messaging/UpgradeToShiftDatesAlert.jsx", + "line": 39, + "column": 6, + "index": 886 + } + ], + "Collapsible.Trigger": [ { - "filePath": "src/library-authoring/create-library/LibraryCreatePage.jsx", - "line": 256, - "column": 12, - "index": 7288 + "filePath": "src/course-home/progress-tab/grades/detailed-grades/SubsectionTitleCell.jsx", + "line": 48, + "column": 8, + "index": 1359 }, { - "filePath": "src/library-authoring/edit-block/LibraryBlockPage.jsx", - "line": 222, - "column": 16, - "index": 6525 + "filePath": "src/courseware/course/content-tools/calculator/Calculator.jsx", + "line": 44, + "column": 10, + "index": 1321 }, { - "filePath": "src/library-authoring/library-access/LibraryAccessPage.jsx", - "line": 73, - "column": 16, - "index": 2456 + "filePath": "src/courseware/course/content-tools/calculator/Calculator.jsx", + "line": 84, + "column": 14, + "index": 3226 } ], - "Form.Group": [ + "Collapsible.Visible": [ { - "filePath": "src/library-authoring/common/FormGroup.jsx", - "line": 18, - "column": 4, - "index": 415 + "filePath": "src/course-home/progress-tab/grades/detailed-grades/SubsectionTitleCell.jsx", + "line": 53, + "column": 10, + "index": 1618 }, { - "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", - "line": 212, - "column": 26, - "index": 5437 + "filePath": "src/course-home/progress-tab/grades/detailed-grades/SubsectionTitleCell.jsx", + "line": 54, + "column": 10, + "index": 1711 }, { - "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", - "line": 217, + "filePath": "src/courseware/course/content-tools/calculator/Calculator.jsx", + "line": 45, "column": 12, - "index": 7025 + "index": 1387 }, { - "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", - "line": 232, + "filePath": "src/courseware/course/content-tools/calculator/Calculator.jsx", + "line": 48, "column": 12, - "index": 7765 + "index": 1556 }, { - "filePath": "src/library-authoring/library-access/LibraryAccessForm.jsx", - "line": 37, - "column": 18, - "index": 1229 - } - ], - "Cc": [ - { - "filePath": "src/library-authoring/common/License.jsx", - "line": 28, - "column": 15, - "index": 868 - } - ], - "Attribution": [ - { - "filePath": "src/library-authoring/common/License.jsx", - "line": 37, - "column": 17, - "index": 1141 - } - ], - "Nc": [ - { - "filePath": "src/library-authoring/common/License.jsx", - "line": 47, - "column": 17, - "index": 1444 - } - ], - "Nd": [ + "filePath": "src/courseware/course/content-tools/calculator/Calculator.jsx", + "line": 85, + "column": 16, + "index": 3334 + }, { - "filePath": "src/library-authoring/common/License.jsx", - "line": 57, - "column": 17, - "index": 1739 + "filePath": "src/courseware/course/content-tools/calculator/Calculator.jsx", + "line": 88, + "column": 16, + "index": 3515 } ], - "Sa": [ + "ArrowDropDown": [ { - "filePath": "src/library-authoring/common/License.jsx", - "line": 67, - "column": 17, - "index": 2028 + "filePath": "src/course-home/progress-tab/grades/detailed-grades/SubsectionTitleCell.jsx", + "line": 53, + "column": 53, + "index": 1661 } ], - "Copyright": [ + "ArrowDropUp": [ { - "filePath": "src/library-authoring/common/License.jsx", - "line": 93, - "column": 15, - "index": 2648 + "filePath": "src/course-home/progress-tab/grades/detailed-grades/SubsectionTitleCell.jsx", + "line": 54, + "column": 51, + "index": 1752 } ], - "ButtonGroup": [ + "Collapsible.Body": [ { - "filePath": "src/library-authoring/common/LicenseField.jsx", - "line": 41, + "filePath": "src/course-home/progress-tab/grades/detailed-grades/SubsectionTitleCell.jsx", + "line": 83, "column": 6, - "index": 901 - } - ], - "Form.Checkbox": [ - { - "filePath": "src/library-authoring/common/LicenseField.jsx", - "line": 57, - "column": 12, - "index": 1649 - }, - { - "filePath": "src/library-authoring/common/LicenseField.jsx", - "line": 76, - "column": 12, - "index": 2384 + "index": 2850 }, { - "filePath": "src/library-authoring/common/LicenseField.jsx", - "line": 95, - "column": 12, - "index": 3174 + "filePath": "src/courseware/course/content-tools/calculator/Calculator.jsx", + "line": 54, + "column": 8, + "index": 1851 }, { - "filePath": "src/library-authoring/common/LicenseField.jsx", - "line": 114, + "filePath": "src/courseware/course/content-tools/calculator/Calculator.jsx", + "line": 97, "column": 12, - "index": 3966 + "index": 3925 } ], - "Form": [ - { - "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", - "line": 208, - "column": 18, - "index": 5243 - }, + "DataTable.TableFooter": [ { - "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", - "line": 215, - "column": 8, - "index": 6931 + "filePath": "src/course-home/progress-tab/grades/grade-summary/GradeSummaryTableFooter.jsx", + "line": 30, + "column": 4, + "index": 706 } ], - "Card.Section": [ - { - "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", - "line": 211, - "column": 24, - "index": 5396 - }, - { - "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", - "line": 292, - "column": 24, - "index": 9647 - }, - { - "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", - "line": 301, - "column": 22, - "index": 10039 - }, - { - "filePath": "src/library-authoring/create-library/LibraryCreatePage.jsx", - "line": 282, - "column": 18, - "index": 8509 - }, + "Col": [ { - "filePath": "src/library-authoring/empty-page/EmptyPage.jsx", - "line": 11, - "column": 4, - "index": 199 + "filePath": "src/course-home/suggested-schedule-messaging/ShiftDatesAlert.jsx", + "line": 41, + "column": 8, + "index": 874 }, { - "filePath": "src/library-authoring/library-access/LibraryAccessForm.jsx", - "line": 32, + "filePath": "src/course-home/suggested-schedule-messaging/ShiftDatesAlert.jsx", + "line": 45, "column": 8, - "index": 1038 + "index": 1083 }, { - "filePath": "src/library-authoring/library-access/LibraryAccessForm.jsx", - "line": 67, + "filePath": "src/course-home/suggested-schedule-messaging/UpgradeToCompleteAlert.jsx", + "line": 38, "column": 8, - "index": 2517 + "index": 867 }, { - "filePath": "src/library-authoring/list-libraries/LibraryListPage.jsx", - "line": 149, - "column": 24, - "index": 4610 - } - ], - "Form.Label": [ - { - "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", - "line": 217, - "column": 28, - "index": 5665 + "filePath": "src/course-home/suggested-schedule-messaging/UpgradeToCompleteAlert.jsx", + "line": 42, + "column": 8, + "index": 1100 }, { - "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", - "line": 218, - "column": 14, - "index": 7070 + "filePath": "src/course-home/suggested-schedule-messaging/UpgradeToShiftDatesAlert.jsx", + "line": 40, + "column": 8, + "index": 922 }, { - "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", - "line": 233, - "column": 14, - "index": 7810 - }, + "filePath": "src/course-home/suggested-schedule-messaging/UpgradeToShiftDatesAlert.jsx", + "line": 44, + "column": 8, + "index": 1135 + } + ], + "StatefulButton": [ { - "filePath": "src/library-authoring/library-access/LibraryAccessForm.jsx", - "line": 42, - "column": 20, - "index": 1416 + "filePath": "src/courseware/course/bookmark/BookmarkButton.jsx", + "line": 43, + "column": 4, + "index": 1350 } ], - "Form.Text": [ + "StandardModal": [ { - "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", - "line": 228, - "column": 28, - "index": 6306 + "filePath": "src/courseware/course/celebration/CelebrationModal.jsx", + "line": 35, + "column": 4, + "index": 1085 }, { - "filePath": "src/library-authoring/library-access/LibraryAccessForm.jsx", - "line": 53, - "column": 20, - "index": 1966 + "filePath": "src/courseware/course/celebration/WeeklyGoalCelebrationModal.jsx", + "line": 27, + "column": 4, + "index": 831 } ], - "StatefulButton": [ + "ActionRow": [ { - "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", - "line": 309, - "column": 24, - "index": 10407 + "filePath": "src/courseware/course/celebration/CelebrationModal.jsx", + "line": 37, + "column": 8, + "index": 1128 }, { - "filePath": "src/library-authoring/course-import/CourseImportListItem.jsx", - "line": 61, - "column": 12, - "index": 1916 + "filePath": "src/courseware/course/celebration/WeeklyGoalCelebrationModal.jsx", + "line": 29, + "column": 8, + "index": 874 }, { - "filePath": "src/library-authoring/create-library/LibraryCreatePage.jsx", - "line": 342, - "column": 22, - "index": 11824 + "filePath": "src/courseware/course/sequence/honor-code/HonorCode.jsx", + "line": 57, + "column": 6, + "index": 2322 }, { - "filePath": "src/library-authoring/library-access/LibraryAccessForm.jsx", - "line": 71, - "column": 10, - "index": 2748 + "filePath": "src/product-tours/newUserCourseHomeTour/NewUserCourseHomeTourModal.jsx", + "line": 44, + "column": 6, + "index": 1348 } ], - "SpinnerSimple": [ + "Lightbulb": [ { - "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", - "line": 319, - "column": 48, - "index": 11013 + "filePath": "src/courseware/course/celebration/WeeklyGoalCelebrationModal.jsx", + "line": 57, + "column": 17, + "index": 1977 }, { - "filePath": "src/library-authoring/course-import/CourseImportListItem.jsx", - "line": 45, - "column": 26, - "index": 1453 + "filePath": "src/shared/streak-celebration/StreakCelebrationModal.jsx", + "line": 174, + "column": 50, + "index": 6953 } ], - "Check": [ + "Card.ImageCap": [ { - "filePath": "src/library-authoring/course-import/CourseImportListItem.jsx", - "line": 46, - "column": 27, - "index": 1521 + "filePath": "src/courseware/course/course-exit/CourseRecommendations.jsx", + "line": 107, + "column": 10, + "index": 3658 } ], - "Sync": [ - { - "filePath": "src/library-authoring/course-import/CourseImportListItem.jsx", - "line": 47, - "column": 24, - "index": 1556 - }, + "CardView": [ { - "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", - "line": 57, - "column": 24, - "index": 1813 + "filePath": "src/courseware/course/course-exit/CourseRecommendations.jsx", + "line": 193, + "column": 10, + "index": 6719 } ], - "Form.Row": [ + "useToggle": [ { - "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", - "line": 216, - "column": 10, - "index": 7002 + "filePath": "src/courseware/course/CourseBreadcrumbs.jsx", + "line": 26, + "column": 32, + "index": 971 }, { - "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", - "line": 231, - "column": 10, - "index": 7742 - } - ], - "Search": [ - { - "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", - "line": 226, - "column": 66, - "index": 7604 - } - ], - "Badge": [ + "filePath": "src/courseware/course/sequence/Sequence.jsx", + "line": 41, + "column": 32, + "index": 1488 + }, { - "filePath": "src/library-authoring/course-import/CourseImportTaskListItem.jsx", - "line": 37, - "column": 12, - "index": 902 + "filePath": "src/courseware/course/sidebar/sidebars/course-outline/CourseOutlineTray.jsx", + "line": 29, + "column": 84, + "index": 1172 }, { - "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", - "line": 31, - "column": 4, - "index": 921 + "filePath": "src/tab-page/LoadedTabPage.jsx", + "line": 43, + "column": 61, + "index": 1506 } ], - "Info": [ + "ModalPopup": [ { - "filePath": "src/library-authoring/create-library/LibraryCreatePage.jsx", - "line": 257, - "column": 20, - "index": 7315 + "filePath": "src/courseware/course/CourseBreadcrumbs.jsx", + "line": 61, + "column": 12, + "index": 2003 } ], - "Alert.Heading": [ + "Menu": [ { - "filePath": "src/library-authoring/create-library/LibraryCreatePage.jsx", - "line": 261, - "column": 29, - "index": 7451 + "filePath": "src/courseware/course/CourseBreadcrumbs.jsx", + "line": 62, + "column": 14, + "index": 2083 } ], - "Breadcrumb": [ + "Dropdown.Item": [ { - "filePath": "src/library-authoring/create-library/LibraryCreatePage.jsx", - "line": 265, - "column": 10, - "index": 7597 + "filePath": "src/courseware/course/JumpNavMenuItem.jsx", + "line": 48, + "column": 4, + "index": 1071 }, { - "filePath": "src/library-authoring/list-libraries/LibraryListPage.jsx", - "line": 115, - "column": 12, - "index": 3147 + "filePath": "src/courseware/course/sequence/sequence-navigation/SequenceNavigationDropdown.jsx", + "line": 28, + "column": 8, + "index": 915 + }, + { + "filePath": "src/instructor-toolbar/masquerade-widget/MasqueradeWidgetOption.jsx", + "line": 71, + "column": 6, + "index": 1901 } ], - "AlertModal": [ + "ActionRow.Spacer": [ { - "filePath": "src/library-authoring/create-library/LibraryCreatePage.jsx", - "line": 364, + "filePath": "src/courseware/course/sequence/honor-code/HonorCode.jsx", + "line": 58, "column": 8, - "index": 12824 + "index": 2342 } ], - "Spinner": [ - { - "filePath": "src/library-authoring/edit-block/LibraryBlockPage.jsx", - "line": 259, - "column": 24, - "index": 8503 - } - ] - } - }, - { - "version": "20.46.3", - "name": "@edx/frontend-app-ora-grading", - "repository": { - "type": "git", - "url": "git+https://github.com/edx/frontend-app-ora-grading.git" - }, - "folderName": "frontend-app-ora-grading", - "usages": { - "AlertModal": [ + "Dropdown": [ { - "filePath": "src/components/ConfirmModal.jsx", - "line": 16, + "filePath": "src/courseware/course/sequence/sequence-navigation/SequenceNavigationDropdown.jsx", + "line": 14, "column": 2, - "index": 288 + "index": 314 }, { - "filePath": "src/components/DemoAlert/index.jsx", - "line": 18, - "column": 2, - "index": 325 + "filePath": "src/generic/tabs/Tabs.jsx", + "line": 41, + "column": 10, + "index": 1563 + }, + { + "filePath": "src/instructor-toolbar/masquerade-widget/MasqueradeWidget.jsx", + "line": 131, + "column": 10, + "index": 3821 } ], - "ActionRow": [ - { - "filePath": "src/components/ConfirmModal.jsx", - "line": 22, - "column": 6, - "index": 417 - }, + "Dropdown.Toggle": [ { - "filePath": "src/components/DemoAlert/index.jsx", - "line": 23, - "column": 6, - "index": 445 + "filePath": "src/courseware/course/sequence/sequence-navigation/SequenceNavigationDropdown.jsx", + "line": 15, + "column": 4, + "index": 370 }, { - "filePath": "src/components/FilePreview/BaseRenderers/PDFRenderer.jsx", - "line": 51, - "column": 6, - "index": 1271 + "filePath": "src/generic/tabs/Tabs.jsx", + "line": 42, + "column": 12, + "index": 1604 }, { - "filePath": "src/containers/ReviewActions/index.jsx", - "line": 27, - "column": 4, - "index": 750 + "filePath": "src/instructor-toolbar/masquerade-widget/MasqueradeWidget.jsx", + "line": 132, + "column": 12, + "index": 3875 } ], - "Button": [ + "Dropdown.Menu": [ { - "filePath": "src/components/ConfirmModal.jsx", - "line": 23, - "column": 8, - "index": 437 + "filePath": "src/courseware/course/sequence/sequence-navigation/SequenceNavigationDropdown.jsx", + "line": 26, + "column": 4, + "index": 836 }, { - "filePath": "src/components/ConfirmModal.jsx", - "line": 29, - "column": 8, - "index": 562 + "filePath": "src/generic/tabs/Tabs.jsx", + "line": 49, + "column": 12, + "index": 1986 }, { - "filePath": "src/components/DemoAlert/index.jsx", - "line": 24, - "column": 8, - "index": 465 - }, + "filePath": "src/instructor-toolbar/masquerade-widget/MasqueradeWidget.jsx", + "line": 135, + "column": 12, + "index": 4027 + } + ], + "ModalDialog": [ { - "filePath": "src/components/FilePreview/Banners/ErrorBanner.jsx", - "line": 15, - "column": 4, - "index": 446 + "filePath": "src/courseware/course/sequence/Unit/ContentIFrame.jsx", + "line": 106, + "column": 10, + "index": 2824 }, { - "filePath": "src/components/FilePreview/FileInfo.jsx", - "line": 28, - "column": 4, - "index": 639 + "filePath": "src/courseware/course/sequence/Unit/ContentIFrame.test.jsx", + "line": 160, + "column": 49, + "index": 5582 }, { - "filePath": "src/containers/ListView/EmptySubmission.jsx", - "line": 21, - "column": 6, - "index": 681 + "filePath": "src/courseware/course/sequence/Unit/ContentIFrame.test.jsx", + "line": 179, + "column": 49, + "index": 6430 }, { - "filePath": "src/containers/ListView/FilterStatusComponent.jsx", - "line": 37, - "column": 6, - "index": 1072 - }, + "filePath": "src/shared/streak-celebration/StreakCelebrationModal.jsx", + "line": 147, + "column": 4, + "index": 5846 + } + ], + "ModalDialog.Body": [ { - "filePath": "src/containers/ListView/ListError.jsx", - "line": 27, - "column": 6, - "index": 562 + "filePath": "src/courseware/course/sequence/Unit/ContentIFrame.jsx", + "line": 113, + "column": 12, + "index": 3024 }, { - "filePath": "src/containers/ListView/SelectedBulkAction.jsx", - "line": 10, - "column": 2, - "index": 281 - }, + "filePath": "src/shared/streak-celebration/StreakCelebrationModal.jsx", + "line": 163, + "column": 6, + "index": 6341 + } + ], + "Modal": [ { - "filePath": "src/containers/ListView/TableAction.jsx", - "line": 10, - "column": 2, - "index": 271 - }, + "filePath": "src/courseware/course/sequence/Unit/ContentIFrame.jsx", + "line": 119, + "column": 10, + "index": 3198 + } + ], + "ArrowBackIos": [ { - "filePath": "src/containers/ResponseDisplay/SubmissionFiles.jsx", - "line": 90, - "column": 20, - "index": 3306 - }, + "filePath": "src/courseware/course/sidebar/common/SidebarBase.jsx", + "line": 57, + "column": 21, + "index": 1811 + } + ], + "LmsCompletionSolid": [ { - "filePath": "src/containers/ReviewActions/components/StartGradingButton/index.jsx", - "line": 27, - "column": 6, - "index": 622 - }, + "filePath": "src/courseware/course/sidebar/sidebars/course-outline/components/CompletionIcon.jsx", + "line": 15, + "column": 13, + "index": 458 + } + ], + "ChevronRightIcon": [ { - "filePath": "src/containers/ReviewActions/index.jsx", - "line": 45, - "column": 12, - "index": 1361 - }, + "filePath": "src/courseware/course/sidebar/sidebars/course-outline/components/SidebarSection.jsx", + "line": 51, + "column": 19, + "index": 1628 + } + ], + "ChevronLeftIcon": [ { - "filePath": "src/containers/ReviewModal/ReviewErrors/ReviewError.jsx", - "line": 26, - "column": 6, - "index": 513 - }, + "filePath": "src/courseware/course/sidebar/sidebars/course-outline/CourseOutlineTray.jsx", + "line": 70, + "column": 22, + "index": 2505 + } + ], + "MenuOpenIcon": [ { - "filePath": "src/containers/ReviewModal/ReviewErrors/ReviewError.jsx", - "line": 33, - "column": 6, - "index": 705 + "filePath": "src/courseware/course/sidebar/sidebars/course-outline/CourseOutlineTray.jsx", + "line": 84, + "column": 16, + "index": 3060 }, { - "filePath": "src/containers/ReviewModal/ReviewErrors/ReviewError.test.jsx", - "line": 34, - "column": 2, - "index": 758 - }, + "filePath": "src/courseware/course/sidebar/sidebars/course-outline/CourseOutlineTrigger.jsx", + "line": 36, + "column": 16, + "index": 1338 + } + ], + "QuestionAnswer": [ { - "filePath": "src/containers/ReviewModal/ReviewErrors/ReviewError.test.jsx", - "line": 40, - "column": 2, - "index": 891 + "filePath": "src/courseware/course/sidebar/sidebars/discussions/DiscussionsTrigger.jsx", + "line": 48, + "column": 17, + "index": 1601 } ], - "Alert": [ + "WatchOutline": [ { - "filePath": "src/components/FilePreview/Banners/ErrorBanner.jsx", - "line": 20, - "column": 4, - "index": 604 - }, + "filePath": "src/courseware/course/sidebar/sidebars/notifications/NotificationIcon.jsx", + "line": 16, + "column": 15, + "index": 404 + } + ], + "Input": [ { - "filePath": "src/components/FilePreview/Banners/LoadingBanner.jsx", - "line": 6, - "column": 2, - "index": 115 - }, + "filePath": "src/instructor-toolbar/masquerade-widget/MasqueradeUserNameInput.jsx", + "line": 49, + "column": 6, + "index": 1069 + } + ], + "ErrorOutline": [ { - "filePath": "src/containers/DemoWarning/index.jsx", - "line": 18, + "filePath": "src/preferences-unsubscribe/index.jsx", + "line": 42, "column": 4, - "index": 439 - }, + "index": 1470 + } + ], + "Container": [ { - "filePath": "src/containers/ListView/ListError.jsx", - "line": 23, - "column": 2, - "index": 497 - }, + "filePath": "src/preferences-unsubscribe/index.jsx", + "line": 51, + "column": 6, + "index": 1750 + } + ], + "Compass": [ { - "filePath": "src/containers/ReviewModal/ReviewErrors/ReviewError.jsx", - "line": 39, - "column": 4, - "index": 847 + "filePath": "src/product-tours/newUserCourseHomeTour/LaunchCourseHomeTourButton.jsx", + "line": 49, + "column": 19, + "index": 1470 } ], - "Info": [ + "MarketingModal": [ { - "filePath": "src/components/FilePreview/Banners/ErrorBanner.jsx", - "line": 20, - "column": 34, - "index": 634 - }, + "filePath": "src/product-tours/newUserCourseHomeTour/NewUserCourseHomeTourModal.jsx", + "line": 18, + "column": 2, + "index": 479 + } + ], + "ModalDialog.Hero": [ { - "filePath": "src/containers/DemoWarning/index.jsx", - "line": 21, - "column": 12, - "index": 515 - }, + "filePath": "src/product-tours/newUserCourseHomeTour/NewUserCourseHomeTourModal.jsx", + "line": 25, + "column": 6, + "index": 656 + } + ], + "ModalDialog.Title": [ { - "filePath": "src/containers/ListView/ListError.jsx", - "line": 25, + "filePath": "src/product-tours/newUserCourseHomeTour/NewUserCourseHomeTourModal.jsx", + "line": 30, "column": 10, - "index": 535 + "index": 834 }, { - "filePath": "src/containers/ReviewModal/ReviewErrors/ReviewError.jsx", - "line": 41, - "column": 12, - "index": 890 + "filePath": "src/shared/streak-celebration/StreakCelebrationModal.jsx", + "line": 159, + "column": 8, + "index": 6211 } ], - "Alert.Heading": [ + "ProductTour": [ { - "filePath": "src/components/FilePreview/Banners/ErrorBanner.jsx", - "line": 21, + "filePath": "src/product-tours/ProductTours.jsx", + "line": 145, "column": 6, - "index": 671 - }, + "index": 4808 + } + ], + "ModalDialog.Header": [ { - "filePath": "src/containers/DemoWarning/index.jsx", - "line": 23, + "filePath": "src/shared/streak-celebration/StreakCelebrationModal.jsx", + "line": 158, "column": 6, - "index": 533 - }, + "index": 6157 + } + ], + "MoneyFilled": [ { - "filePath": "src/containers/ListView/ListError.jsx", - "line": 32, - "column": 4, - "index": 688 - }, + "filePath": "src/shared/streak-celebration/StreakCelebrationModal.jsx", + "line": 183, + "column": 69, + "index": 7302 + } + ], + "ModalDialog.Footer": [ { - "filePath": "src/containers/ReviewModal/ReviewErrors/ReviewError.jsx", - "line": 45, + "filePath": "src/shared/streak-celebration/StreakCelebrationModal.jsx", + "line": 201, "column": 6, - "index": 960 + "index": 8063 } ], - "Spinner": [ + "ModalDialog.CloseButton": [ { - "filePath": "src/components/FilePreview/Banners/LoadingBanner.jsx", - "line": 7, - "column": 4, - "index": 142 + "filePath": "src/shared/streak-celebration/StreakCelebrationModal.jsx", + "line": 213, + "column": 16, + "index": 8467 }, { - "filePath": "src/components/LoadingMessage.jsx", - "line": 12, - "column": 4, - "index": 296 + "filePath": "src/shared/streak-celebration/StreakCelebrationModal.jsx", + "line": 226, + "column": 16, + "index": 8941 }, { - "filePath": "src/containers/ListView/index.jsx", - "line": 47, - "column": 12, - "index": 1316 + "filePath": "src/shared/streak-celebration/StreakCelebrationModal.jsx", + "line": 234, + "column": 10, + "index": 9216 } ], - "IconButton": [ + "Toast": [ { - "filePath": "src/components/FilePreview/BaseRenderers/PDFRenderer.jsx", + "filePath": "src/tab-page/TabPage.jsx", "line": 52, - "column": 8, - "index": 1337 - }, + "column": 10, + "index": 1568 + } + ] + } + }, + { + "version": "21.11.3", + "name": "@edx/frontend-app-library-authoring", + "repository": { + "type": "git", + "url": "git+https://github.com/openedx/frontend-app-library-authoring.git" + }, + "folderName": "frontend-app-library-authoring", + "usages": { + "Col": [ { - "filePath": "src/components/FilePreview/BaseRenderers/PDFRenderer.jsx", - "line": 71, - "column": 8, - "index": 1926 + "filePath": "src/generic/LoadingPage.jsx", + "line": 6, + "column": 2, + "index": 152 }, { - "filePath": "src/components/InfoPopover/index.jsx", - "line": 31, - "column": 4, - "index": 670 + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 154, + "column": 8, + "index": 4793 }, { - "filePath": "src/containers/ReviewActions/components/SubmissionNavigation.jsx", - "line": 26, - "column": 4, - "index": 651 + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 230, + "column": 10, + "index": 7920 }, { - "filePath": "src/containers/ReviewActions/components/SubmissionNavigation.jsx", - "line": 41, - "column": 4, - "index": 1077 - } - ], - "Icon": [ - { - "filePath": "src/components/FilePreview/BaseRenderers/PDFRenderer.jsx", - "line": 55, - "column": 18, - "index": 1425 + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 244, + "column": 16, + "index": 8557 }, { - "filePath": "src/components/FilePreview/BaseRenderers/PDFRenderer.jsx", - "line": 74, - "column": 18, - "index": 2010 + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 247, + "column": 16, + "index": 8725 }, { - "filePath": "src/components/InfoPopover/index.jsx", - "line": 35, + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 331, "column": 14, - "index": 801 - }, - { - "filePath": "src/containers/ListView/ListViewBreadcrumb.jsx", - "line": 20, - "column": 6, - "index": 623 + "index": 12536 }, { - "filePath": "src/containers/ListView/ListViewBreadcrumb.jsx", - "line": 26, + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 344, "column": 8, - "index": 938 - }, - { - "filePath": "src/containers/ResponseDisplay/FileDownload.jsx", - "line": 29, - "column": 15, - "index": 793 - }, - { - "filePath": "src/containers/ResponseDisplay/FileDownload.jsx", - "line": 30, - "column": 15, - "index": 845 + "index": 13033 }, { - "filePath": "src/containers/ResponseDisplay/FileDownload.jsx", - "line": 31, - "column": 16, - "index": 905 + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 347, + "column": 14, + "index": 13149 }, { - "filePath": "src/containers/ResponseDisplay/FileDownload.jsx", - "line": 32, + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 355, "column": 14, - "index": 953 + "index": 13778 }, { - "filePath": "src/containers/ResponseDisplay/SubmissionFiles.jsx", - "line": 47, - "column": 18, - "index": 1474 + "filePath": "src/library-authoring/common/ErrorAlert.jsx", + "line": 11, + "column": 4, + "index": 418 }, { - "filePath": "src/containers/ResponseDisplay/SubmissionFiles.jsx", - "line": 50, - "column": 18, - "index": 1607 + "filePath": "src/library-authoring/common/LicenseField.jsx", + "line": 56, + "column": 10, + "index": 1586 }, { - "filePath": "src/containers/ResponseDisplay/SubmissionFiles.jsx", - "line": 88, - "column": 20, - "index": 3103 + "filePath": "src/library-authoring/common/LicenseField.jsx", + "line": 65, + "column": 10, + "index": 1871 }, { - "filePath": "src/containers/ReviewActions/components/SubmissionNavigation.jsx", - "line": 32, - "column": 14, - "index": 854 + "filePath": "src/library-authoring/common/LicenseField.jsx", + "line": 70, + "column": 10, + "index": 2100 }, { - "filePath": "src/containers/ReviewActions/components/SubmissionNavigation.jsx", - "line": 47, - "column": 14, - "index": 1277 - } - ], - "ChevronLeft": [ - { - "filePath": "src/components/FilePreview/BaseRenderers/PDFRenderer.jsx", - "line": 56, - "column": 15, - "index": 1446 + "filePath": "src/library-authoring/common/LicenseField.jsx", + "line": 75, + "column": 10, + "index": 2321 }, { - "filePath": "src/containers/ReviewActions/components/SubmissionNavigation.jsx", - "line": 31, - "column": 11, - "index": 827 - } - ], - "Form.Group": [ - { - "filePath": "src/components/FilePreview/BaseRenderers/PDFRenderer.jsx", - "line": 60, - "column": 8, - "index": 1550 + "filePath": "src/library-authoring/common/LicenseField.jsx", + "line": 84, + "column": 10, + "index": 2655 }, { - "filePath": "src/containers/CriterionContainer/CriterionFeedback.jsx", - "line": 50, - "column": 6, - "index": 1254 + "filePath": "src/library-authoring/common/LicenseField.jsx", + "line": 89, + "column": 10, + "index": 2888 }, { - "filePath": "src/containers/CriterionContainer/index.jsx", - "line": 23, - "column": 4, - "index": 608 + "filePath": "src/library-authoring/common/LicenseField.jsx", + "line": 94, + "column": 10, + "index": 3111 }, { - "filePath": "src/containers/Rubric/RubricFeedback.jsx", - "line": 46, - "column": 6, - "index": 1030 - } - ], - "Form.Label": [ - { - "filePath": "src/components/FilePreview/BaseRenderers/PDFRenderer.jsx", - "line": 61, + "filePath": "src/library-authoring/common/LicenseField.jsx", + "line": 103, "column": 10, - "index": 1615 + "index": 3445 }, { - "filePath": "src/components/FilePreview/BaseRenderers/PDFRenderer.jsx", - "line": 69, + "filePath": "src/library-authoring/common/LicenseField.jsx", + "line": 108, "column": 10, - "index": 1847 + "index": 3679 }, { - "filePath": "src/containers/CriterionContainer/index.jsx", - "line": 24, - "column": 6, - "index": 627 + "filePath": "src/library-authoring/common/LicenseField.jsx", + "line": 113, + "column": 10, + "index": 3903 }, { - "filePath": "src/containers/CriterionContainer/ReviewCriterion.jsx", - "line": 19, + "filePath": "src/library-authoring/common/LicenseField.jsx", + "line": 122, "column": 10, - "index": 539 + "index": 4228 }, { - "filePath": "src/containers/Rubric/RubricFeedback.jsx", - "line": 47, - "column": 8, - "index": 1051 - } - ], - "Form.Control": [ - { - "filePath": "src/components/FilePreview/BaseRenderers/PDFRenderer.jsx", - "line": 62, + "filePath": "src/library-authoring/common/LicenseField.jsx", + "line": 127, "column": 10, - "index": 1665 + "index": 4456 }, { - "filePath": "src/containers/CriterionContainer/CriterionFeedback.jsx", - "line": 51, - "column": 8, - "index": 1310 + "filePath": "src/library-authoring/common/LicenseField.jsx", + "line": 134, + "column": 6, + "index": 4672 }, { - "filePath": "src/containers/Rubric/RubricFeedback.jsx", - "line": 55, - "column": 8, - "index": 1335 - } - ], - "ChevronRight": [ + "filePath": "src/library-authoring/common/LicenseField.jsx", + "line": 138, + "column": 6, + "index": 4927 + }, { - "filePath": "src/components/FilePreview/BaseRenderers/PDFRenderer.jsx", - "line": 75, - "column": 15, - "index": 2031 + "filePath": "src/library-authoring/common/SuccessAlert.jsx", + "line": 10, + "column": 4, + "index": 377 }, { - "filePath": "src/containers/ReviewActions/components/SubmissionNavigation.jsx", - "line": 46, - "column": 11, - "index": 1249 - } - ], - "Card": [ + "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", + "line": 195, + "column": 12, + "index": 4815 + }, { - "filePath": "src/components/FilePreview/FileCard.jsx", - "line": 14, - "column": 2, - "index": 317 + "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", + "line": 330, + "column": 12, + "index": 11413 }, { - "filePath": "src/containers/ResponseDisplay/index.jsx", - "line": 50, + "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", + "line": 386, "column": 12, - "index": 1318 + "index": 12855 }, { - "filePath": "src/containers/ResponseDisplay/SubmissionFiles.jsx", - "line": 40, - "column": 6, - "index": 1176 + "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", + "line": 423, + "column": 12, + "index": 14420 }, { - "filePath": "src/containers/Rubric/index.jsx", - "line": 31, - "column": 6, - "index": 716 - } - ], - "Collapsible": [ + "filePath": "src/library-authoring/edit-block/LibraryBlockPage.jsx", + "line": 218, + "column": 12, + "index": 6370 + }, { - "filePath": "src/components/FilePreview/FileCard.jsx", - "line": 15, - "column": 4, - "index": 366 - } - ], - "OverlayTrigger": [ + "filePath": "src/library-authoring/edit-block/LibraryBlockPage.jsx", + "line": 322, + "column": 12, + "index": 11073 + }, { - "filePath": "src/components/FilePreview/FileInfo.jsx", - "line": 18, - "column": 2, - "index": 400 + "filePath": "src/library-authoring/library-access/LibraryAccessPage.jsx", + "line": 69, + "column": 8, + "index": 2315 }, { - "filePath": "src/components/InfoPopover/index.jsx", - "line": 21, - "column": 2, - "index": 431 - } - ], - "Popover": [ + "filePath": "src/library-authoring/library-access/LibraryAccessPage.jsx", + "line": 97, + "column": 14, + "index": 3242 + }, { - "filePath": "src/components/FilePreview/FileInfo.jsx", - "line": 23, - "column": 6, - "index": 492 + "filePath": "src/library-authoring/library-access/LibraryAccessPage.jsx", + "line": 103, + "column": 8, + "index": 3475 }, { - "filePath": "src/components/InfoPopover/index.jsx", - "line": 26, + "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", + "line": 36, "column": 6, - "index": 523 + "index": 1303 } ], - "Popover.Content": [ + "Card": [ { - "filePath": "src/components/FilePreview/FileInfo.jsx", - "line": 24, - "column": 8, - "index": 561 + "filePath": "src/library-authoring/author-library/BlockPreviewBase.jsx", + "line": 49, + "column": 2, + "index": 1372 }, { - "filePath": "src/components/FilePreview/FileInfo.test.jsx", - "line": 22, - "column": 45, - "index": 684 + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 356, + "column": 16, + "index": 13844 }, { - "filePath": "src/components/InfoPopover/index.jsx", - "line": 27, - "column": 8, - "index": 592 - } - ], - "InfoOutline": [ - { - "filePath": "src/components/FilePreview/FileInfo.jsx", - "line": 32, - "column": 17, - "index": 729 + "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", + "line": 207, + "column": 16, + "index": 5226 }, { - "filePath": "src/components/InfoPopover/index.jsx", - "line": 33, - "column": 11, - "index": 725 - } - ], - "Badge": [ - { - "filePath": "src/components/StatusBadge.jsx", - "line": 33, + "filePath": "src/library-authoring/course-import/CourseImportListItem.jsx", + "line": 54, "column": 4, - "index": 868 - } - ], - "Form.RadioSet": [ + "index": 1674 + }, { - "filePath": "src/containers/CriterionContainer/RadioCriterion.jsx", - "line": 36, - "column": 6, - "index": 746 - } - ], - "Form.Radio": [ + "filePath": "src/library-authoring/course-import/CourseImportTaskListItem.jsx", + "line": 31, + "column": 4, + "index": 624 + }, { - "filePath": "src/containers/CriterionContainer/RadioCriterion.jsx", - "line": 38, - "column": 10, - "index": 846 - } - ], - "FormControlFeedback": [ + "filePath": "src/library-authoring/create-library/LibraryCreatePage.jsx", + "line": 280, + "column": 14, + "index": 8420 + }, { - "filePath": "src/containers/CriterionContainer/ReviewCriterion.jsx", - "line": 20, - "column": 10, - "index": 614 - } - ], - "PageBanner": [ + "filePath": "src/library-authoring/edit-block/LibraryBlockPage.jsx", + "line": 230, + "column": 16, + "index": 6781 + }, { - "filePath": "src/containers/CTA/index.jsx", - "line": 12, + "filePath": "src/library-authoring/empty-page/EmptyPage.jsx", + "line": 10, "column": 2, - "index": 231 - } - ], - "Hyperlink": [ + "index": 167 + }, { - "filePath": "src/containers/CTA/index.jsx", - "line": 15, + "filePath": "src/library-authoring/library-access/LibraryAccessForm.jsx", + "line": 28, "column": 6, - "index": 321 + "index": 919 }, { - "filePath": "src/containers/ListView/EmptySubmission.jsx", - "line": 20, - "column": 4, - "index": 604 + "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", + "line": 30, + "column": 2, + "index": 897 }, { - "filePath": "src/containers/ListView/ListError.jsx", - "line": 40, - "column": 12, - "index": 913 - }, + "filePath": "src/library-authoring/list-libraries/LibraryListPage.jsx", + "line": 140, + "column": 22, + "index": 4349 + } + ], + "Card.Header": [ { - "filePath": "src/containers/ListView/ListViewBreadcrumb.jsx", - "line": 19, + "filePath": "src/library-authoring/author-library/BlockPreviewBase.jsx", + "line": 50, "column": 4, - "index": 546 + "index": 1407 }, { - "filePath": "src/containers/ListView/ListViewBreadcrumb.jsx", - "line": 25, + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 357, + "column": 18, + "index": 13869 + }, + { + "filePath": "src/library-authoring/course-import/CourseImportListItem.jsx", + "line": 55, "column": 6, - "index": 846 - } - ], - "Container": [ + "index": 1709 + }, { - "filePath": "src/containers/ListView/index.jsx", - "line": 34, + "filePath": "src/library-authoring/course-import/CourseImportTaskListItem.jsx", + "line": 32, "column": 6, - "index": 907 - } - ], - "ArrowBack": [ + "index": 659 + }, { - "filePath": "src/containers/ListView/ListViewBreadcrumb.jsx", - "line": 20, - "column": 17, - "index": 634 + "filePath": "src/library-authoring/library-access/LibraryAccessForm.jsx", + "line": 29, + "column": 8, + "index": 934 } ], - "Launch": [ + "ActionRow": [ { - "filePath": "src/containers/ListView/ListViewBreadcrumb.jsx", - "line": 26, - "column": 19, - "index": 949 - } - ], - "DataTable": [ + "filePath": "src/library-authoring/author-library/BlockPreviewBase.jsx", + "line": 54, + "column": 8, + "index": 1532 + }, { - "filePath": "src/containers/ListView/SubmissionsTable.jsx", - "line": 76, + "filePath": "src/library-authoring/author-library/BlockPreviewBase.jsx", + "line": 152, "column": 8, - "index": 2138 + "index": 5153 }, { - "filePath": "src/containers/ResponseDisplay/SubmissionFiles.jsx", - "line": 55, - "column": 18, - "index": 1852 - } - ], - "DataTable.TableControlBar": [ + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 137, + "column": 8, + "index": 4185 + }, { - "filePath": "src/containers/ListView/SubmissionsTable.jsx", - "line": 120, + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 155, "column": 10, - "index": 3662 - } - ], - "DataTable.Table": [ + "index": 4831 + }, { - "filePath": "src/containers/ListView/SubmissionsTable.jsx", - "line": 121, + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 179, "column": 10, - "index": 3702 + "index": 5768 }, { - "filePath": "src/containers/ResponseDisplay/SubmissionFiles.jsx", - "line": 79, - "column": 20, - "index": 2780 - } - ], - "DataTable.TableFooter": [ + "filePath": "src/library-authoring/author-library/LibraryAuthoringPageHeaderBase.jsx", + "line": 47, + "column": 10, + "index": 1312 + }, { - "filePath": "src/containers/ListView/SubmissionsTable.jsx", - "line": 122, + "filePath": "src/library-authoring/course-import/CourseImportListItem.jsx", + "line": 60, "column": 10, - "index": 3732 - } - ], - "StatefulButton": [ + "index": 1900 + }, { - "filePath": "src/containers/ResponseDisplay/FileDownload.jsx", - "line": 25, - "column": 2, - "index": 673 + "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", + "line": 50, + "column": 8, + "index": 1497 }, { - "filePath": "src/containers/Rubric/index.jsx", - "line": 41, + "filePath": "src/library-authoring/create-library/LibraryCreatePage.jsx", + "line": 368, "column": 12, - "index": 1128 - } - ], - "Card.Section": [ + "index": 12986 + }, { - "filePath": "src/containers/ResponseDisplay/index.jsx", - "line": 51, - "column": 14, - "index": 1351 + "filePath": "src/library-authoring/edit-block/LibraryBlockPage.jsx", + "line": 344, + "column": 20, + "index": 12332 }, { - "filePath": "src/containers/Rubric/index.jsx", - "line": 32, + "filePath": "src/library-authoring/library-access/LibraryAccessPage.jsx", + "line": 49, "column": 8, - "index": 763 - } - ], - "Collapsible.Advanced": [ + "index": 1662 + }, { - "filePath": "src/containers/ResponseDisplay/SubmissionFiles.jsx", - "line": 43, - "column": 12, - "index": 1263 - } - ], - "Collapsible.Trigger": [ + "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", + "line": 35, + "column": 4, + "index": 1268 + }, { - "filePath": "src/containers/ResponseDisplay/SubmissionFiles.jsx", - "line": 44, + "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", + "line": 96, "column": 14, - "index": 1312 - } - ], - "Collapsible.Visible": [ - { - "filePath": "src/containers/ResponseDisplay/SubmissionFiles.jsx", - "line": 46, - "column": 16, - "index": 1423 + "index": 3808 }, { - "filePath": "src/containers/ResponseDisplay/SubmissionFiles.jsx", - "line": 49, - "column": 16, - "index": 1558 - } - ], - "ArrowDropDown": [ - { - "filePath": "src/containers/ResponseDisplay/SubmissionFiles.jsx", - "line": 47, - "column": 29, - "index": 1485 - } - ], - "ArrowDropUp": [ - { - "filePath": "src/containers/ResponseDisplay/SubmissionFiles.jsx", - "line": 50, - "column": 29, - "index": 1618 + "filePath": "src/library-authoring/list-libraries/LibraryListPage.jsx", + "line": 119, + "column": 14, + "index": 3485 } ], - "Collapsible.Body": [ + "OverlayTrigger": [ { - "filePath": "src/containers/ResponseDisplay/SubmissionFiles.jsx", - "line": 53, + "filePath": "src/library-authoring/author-library/BlockPreviewBase.jsx", + "line": 57, "column": 14, - "index": 1724 - } - ], - "Card.Footer": [ + "index": 1606 + }, { - "filePath": "src/containers/ResponseDisplay/SubmissionFiles.jsx", - "line": 84, - "column": 12, - "index": 2936 + "filePath": "src/library-authoring/author-library/BlockPreviewBase.jsx", + "line": 82, + "column": 10, + "index": 2608 } ], - "WarningFilled": [ + "Tooltip": [ { - "filePath": "src/containers/ResponseDisplay/SubmissionFiles.jsx", - "line": 88, - "column": 71, - "index": 3154 - } - ], - "FullscreenModal": [ + "filePath": "src/library-authoring/author-library/BlockPreviewBase.jsx", + "line": 60, + "column": 18, + "index": 1698 + }, { - "filePath": "src/containers/ReviewModal/index.jsx", - "line": 31, - "column": 4, - "index": 826 + "filePath": "src/library-authoring/author-library/BlockPreviewBase.jsx", + "line": 85, + "column": 14, + "index": 2689 } ], - "Row": [ + "Button": [ { - "filePath": "src/containers/ReviewModal/ReviewContent.jsx", - "line": 22, - "column": 4, - "index": 621 - } - ], - "Col": [ + "filePath": "src/library-authoring/author-library/BlockPreviewBase.jsx", + "line": 63, + "column": 16, + "index": 1859 + }, { - "filePath": "src/containers/ReviewModal/ReviewContent.jsx", - "line": 23, - "column": 6, - "index": 661 - } - ] - } - }, - { - "version": "20.46.2", - "name": "@edx/frontend-app-payment", - "repository": { - "type": "git", - "url": "git+https://github.com/openedx/frontend-app-payment.git" - }, - "folderName": "frontend-app-payment", - "usages": { - "Alert": [ + "filePath": "src/library-authoring/author-library/BlockPreviewBase.jsx", + "line": 156, + "column": 10, + "index": 5361 + }, { - "filePath": "src/feedback/AlertMessage.jsx", - "line": 46, + "filePath": "src/library-authoring/author-library/ButtonTogglesBase.jsx", + "line": 11, "column": 4, - "index": 1503 - } - ], - "Hyperlink": [ - { - "filePath": "src/feedback/FallbackErrorMessage.jsx", - "line": 13, - "column": 8, - "index": 487 + "index": 340 }, { - "filePath": "src/payment/AlertCodeMessages.jsx", + "filePath": "src/library-authoring/author-library/ButtonTogglesBase.jsx", "line": 22, - "column": 10, - "index": 1131 + "column": 4, + "index": 825 }, { - "filePath": "src/payment/checkout/FreeCheckoutOrderButton.jsx", - "line": 8, - "column": 2, - "index": 275 + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 232, + "column": 12, + "index": 8064 }, { - "filePath": "src/payment/EmptyCartMessage.jsx", - "line": 23, - "column": 14, - "index": 968 + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 361, + "column": 20, + "index": 14102 }, { - "filePath": "src/payment/EmptyCartMessage.jsx", - "line": 32, - "column": 14, - "index": 1347 + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 364, + "column": 20, + "index": 14309 }, { - "filePath": "src/subscription/alerts/ErrorMessages.jsx", - "line": 26, + "filePath": "src/library-authoring/common/LicenseField.jsx", + "line": 42, "column": 8, - "index": 1059 - }, - { - "filePath": "src/subscription/confirmation-modal/ConfirmationModal.jsx", - "line": 41, - "column": 4, - "index": 1173 + "index": 927 }, { - "filePath": "src/subscription/details/legal/SubscriptionLegal.jsx", - "line": 17, - "column": 4, - "index": 459 - } - ], - "Collapsible": [ - { - "filePath": "src/payment/cart/Cart.jsx", - "line": 106, - "column": 12, - "index": 3325 - } - ], - "Form.Group": [ - { - "filePath": "src/payment/cart/CouponForm.jsx", - "line": 47, + "filePath": "src/library-authoring/common/LicenseField.jsx", + "line": 45, "column": 8, - "index": 1339 - } - ], - "Form.Control": [ + "index": 1131 + }, { - "filePath": "src/payment/cart/CouponForm.jsx", - "line": 55, - "column": 10, - "index": 1689 + "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", + "line": 302, + "column": 24, + "index": 10086 }, { - "filePath": "src/payment/cart/UpdateQuantityForm.jsx", - "line": 37, + "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", + "line": 53, "column": 10, - "index": 1225 - } - ], - "Button": [ + "index": 1668 + }, { - "filePath": "src/payment/cart/CouponForm.jsx", - "line": 57, - "column": 8, - "index": 1786 + "filePath": "src/library-authoring/create-library/LibraryCreatePage.jsx", + "line": 335, + "column": 22, + "index": 11490 }, { - "filePath": "src/payment/cart/CouponForm.jsx", - "line": 124, - "column": 8, - "index": 3730 + "filePath": "src/library-authoring/create-library/LibraryCreatePage.jsx", + "line": 369, + "column": 14, + "index": 13012 }, { - "filePath": "src/subscription/confirmation-modal/ConfirmationModal.jsx", - "line": 83, - "column": 10, - "index": 2475 - } - ], - "StatefulButton": [ + "filePath": "src/library-authoring/create-library/LibraryCreatePage.jsx", + "line": 372, + "column": 14, + "index": 13195 + }, { - "filePath": "src/payment/cart/UpdateQuantityForm.jsx", - "line": 65, - "column": 6, - "index": 2027 + "filePath": "src/library-authoring/edit-block/LibraryBlockAssets.jsx", + "line": 30, + "column": 15, + "index": 1109 }, { - "filePath": "src/payment/checkout/payment-form/PlaceOrderButton.jsx", - "line": 22, + "filePath": "src/library-authoring/edit-block/LibraryBlockOlx.jsx", + "line": 56, "column": 10, - "index": 737 + "index": 1123 }, { - "filePath": "src/subscription/checkout/submit-button/SubscriptionSubmitButton.jsx", - "line": 29, + "filePath": "src/library-authoring/edit-block/LibraryBlockOlx.jsx", + "line": 57, "column": 10, - "index": 1061 - } - ], - "Skeleton": [ - { - "filePath": "src/subscription/checkout/skeleton/CheckoutSkeleton.jsx", - "line": 6, - "column": 4, - "index": 111 + "index": 1206 }, { - "filePath": "src/subscription/checkout/skeleton/CheckoutSkeleton.jsx", - "line": 9, + "filePath": "src/library-authoring/edit-block/LibraryBlockOlx.jsx", + "line": 64, "column": 8, - "index": 234 + "index": 1382 }, { - "filePath": "src/subscription/checkout/skeleton/CheckoutSkeleton.jsx", - "line": 12, - "column": 8, - "index": 346 + "filePath": "src/library-authoring/edit-block/LibraryBlockPage.jsx", + "line": 345, + "column": 22, + "index": 12376 }, { - "filePath": "src/subscription/checkout/skeleton/CheckoutSkeleton.jsx", - "line": 15, - "column": 4, - "index": 432 + "filePath": "src/library-authoring/edit-block/LibraryBlockPage.jsx", + "line": 354, + "column": 22, + "index": 12825 }, { - "filePath": "src/subscription/checkout/skeleton/CheckoutSkeleton.jsx", - "line": 18, - "column": 8, - "index": 551 + "filePath": "src/library-authoring/edit-block/LibraryBlockPage.jsx", + "line": 363, + "column": 22, + "index": 13252 }, { - "filePath": "src/subscription/checkout/skeleton/CheckoutSkeleton.jsx", - "line": 23, - "column": 12, - "index": 711 + "filePath": "src/library-authoring/library-access/LibraryAccessForm.jsx", + "line": 68, + "column": 10, + "index": 2563 }, { - "filePath": "src/subscription/checkout/skeleton/CheckoutSkeleton.jsx", - "line": 26, + "filePath": "src/library-authoring/library-access/LibraryAccessPage.jsx", + "line": 55, "column": 12, - "index": 812 + "index": 1913 }, { - "filePath": "src/subscription/checkout/skeleton/CheckoutSkeleton.jsx", - "line": 33, + "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", + "line": 51, "column": 8, - "index": 1000 + "index": 1902 }, { - "filePath": "src/subscription/checkout/skeleton/CheckoutSkeleton.jsx", - "line": 36, - "column": 4, - "index": 1063 + "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", + "line": 56, + "column": 8, + "index": 2159 }, { - "filePath": "src/subscription/details/skeleton/SubscriptionDetailsSkeleton.jsx", - "line": 14, - "column": 4, - "index": 491 + "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", + "line": 62, + "column": 10, + "index": 2428 }, { - "filePath": "src/subscription/details/skeleton/SubscriptionDetailsSkeleton.jsx", - "line": 16, - "column": 6, - "index": 599 + "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", + "line": 65, + "column": 10, + "index": 2623 }, { - "filePath": "src/subscription/details/skeleton/SubscriptionDetailsSkeleton.jsx", - "line": 17, - "column": 6, - "index": 677 + "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", + "line": 102, + "column": 16, + "index": 4075 }, { - "filePath": "src/subscription/details/skeleton/SubscriptionDetailsSkeleton.jsx", - "line": 19, - "column": 4, - "index": 759 + "filePath": "src/library-authoring/list-libraries/LibraryListPage.jsx", + "line": 122, + "column": 16, + "index": 3693 + }, + { + "filePath": "src/library-authoring/list-libraries/LibraryListPage.jsx", + "line": 160, + "column": 20, + "index": 5293 + } + ], + "Tag": [ + { + "filePath": "src/library-authoring/author-library/BlockPreviewBase.jsx", + "line": 65, + "column": 30, + "index": 1941 + } + ], + "IconButtonWithTooltip": [ + { + "filePath": "src/library-authoring/author-library/BlockPreviewBase.jsx", + "line": 75, + "column": 10, + "index": 2283 + } + ], + "EditOutline": [ + { + "filePath": "src/library-authoring/author-library/BlockPreviewBase.jsx", + "line": 78, + "column": 17, + "index": 2459 }, { - "filePath": "src/subscription/details/skeleton/SubscriptionDetailsSkeleton.jsx", - "line": 20, - "column": 4, - "index": 788 - }, + "filePath": "src/library-authoring/author-library/LibraryAuthoringPageHeaderBase.jsx", + "line": 50, + "column": 22, + "index": 1398 + } + ], + "Icon": [ { - "filePath": "src/subscription/details/skeleton/SubscriptionDetailsSkeleton.jsx", - "line": 24, - "column": 8, - "index": 919 + "filePath": "src/library-authoring/author-library/BlockPreviewBase.jsx", + "line": 79, + "column": 20, + "index": 2492 }, { - "filePath": "src/subscription/details/skeleton/SubscriptionDetailsSkeleton.jsx", - "line": 25, - "column": 8, - "index": 969 + "filePath": "src/library-authoring/author-library/BlockPreviewBase.jsx", + "line": 95, + "column": 24, + "index": 3097 }, { - "filePath": "src/subscription/details/skeleton/SubscriptionDetailsSkeleton.jsx", - "line": 28, - "column": 8, - "index": 1104 + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 287, + "column": 24, + "index": 10501 }, { - "filePath": "src/subscription/details/skeleton/SubscriptionDetailsSkeleton.jsx", - "line": 29, - "column": 8, - "index": 1156 + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 301, + "column": 24, + "index": 11192 }, { - "filePath": "src/subscription/details/skeleton/SubscriptionDetailsSkeleton.jsx", - "line": 32, - "column": 4, - "index": 1228 + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 316, + "column": 24, + "index": 11932 }, { - "filePath": "src/subscription/details/skeleton/SubscriptionDetailsSkeleton.jsx", - "line": 34, - "column": 6, - "index": 1323 + "filePath": "src/library-authoring/common/License.jsx", + "line": 27, + "column": 8, + "index": 855 }, { - "filePath": "src/subscription/details/skeleton/SubscriptionDetailsSkeleton.jsx", - "line": 35, - "column": 6, - "index": 1388 + "filePath": "src/library-authoring/common/License.jsx", + "line": 36, + "column": 10, + "index": 1126 }, { - "filePath": "src/subscription/details/skeleton/SubscriptionDetailsSkeleton.jsx", - "line": 38, - "column": 6, - "index": 1529 + "filePath": "src/library-authoring/common/License.jsx", + "line": 46, + "column": 10, + "index": 1429 }, { - "filePath": "src/subscription/details/skeleton/SubscriptionDetailsSkeleton.jsx", - "line": 39, - "column": 6, - "index": 1594 + "filePath": "src/library-authoring/common/License.jsx", + "line": 56, + "column": 10, + "index": 1724 }, { - "filePath": "src/subscription/details/skeleton/SubscriptionDetailsSkeleton.jsx", - "line": 41, - "column": 4, - "index": 1669 + "filePath": "src/library-authoring/common/License.jsx", + "line": 66, + "column": 10, + "index": 2013 }, { - "filePath": "src/subscription/details/skeleton/SubscriptionDetailsSkeleton.jsx", - "line": 42, + "filePath": "src/library-authoring/common/License.jsx", + "line": 93, "column": 4, - "index": 1698 + "index": 2645 }, { - "filePath": "src/subscription/details/skeleton/SubscriptionDetailsSkeleton.jsx", - "line": 43, - "column": 4, - "index": 1727 + "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", + "line": 319, + "column": 37, + "index": 11010 }, { - "filePath": "src/subscription/details/skeleton/SubscriptionDetailsSkeleton.jsx", + "filePath": "src/library-authoring/course-import/CourseImportListItem.jsx", "line": 44, - "column": 4, - "index": 1774 - } - ], - "Icon": [ - { - "filePath": "src/subscription/checkout/submit-button/SubscriptionSubmitButton.jsx", - "line": 58, - "column": 16, - "index": 2166 - } - ], - "CheckIcon": [ + "column": 15, + "index": 1415 + }, { - "filePath": "src/subscription/checkout/submit-button/SubscriptionSubmitButton.jsx", - "line": 58, - "column": 27, - "index": 2177 - } - ], - "ModalDialog": [ + "filePath": "src/library-authoring/course-import/CourseImportListItem.jsx", + "line": 45, + "column": 15, + "index": 1450 + }, { - "filePath": "src/subscription/confirmation-modal/ConfirmationModal.jsx", - "line": 51, - "column": 4, - "index": 1400 + "filePath": "src/library-authoring/course-import/CourseImportListItem.jsx", + "line": 46, + "column": 16, + "index": 1518 }, { - "filePath": "src/subscription/secure-3d/secure-3d-modal/Secure3dModal.jsx", - "line": 132, - "column": 4, - "index": 4027 - } - ], - "ModalDialog.Header": [ + "filePath": "src/library-authoring/course-import/CourseImportListItem.jsx", + "line": 47, + "column": 13, + "index": 1553 + }, { - "filePath": "src/subscription/confirmation-modal/ConfirmationModal.jsx", - "line": 59, - "column": 6, - "index": 1620 - } - ], - "ModalDialog.Title": [ + "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", + "line": 226, + "column": 82, + "index": 7628 + }, { - "filePath": "src/subscription/confirmation-modal/ConfirmationModal.jsx", - "line": 60, - "column": 8, - "index": 1649 - } - ], - "ModalDialog.Body": [ + "filePath": "src/library-authoring/create-library/LibraryCreatePage.jsx", + "line": 349, + "column": 35, + "index": 12176 + }, { - "filePath": "src/subscription/confirmation-modal/ConfirmationModal.jsx", - "line": 68, - "column": 6, - "index": 1937 - } - ], - "ModalDialog.Footer": [ + "filePath": "src/library-authoring/library-access/LibraryAccessForm.jsx", + "line": 82, + "column": 23, + "index": 3261 + }, { - "filePath": "src/subscription/confirmation-modal/ConfirmationModal.jsx", - "line": 81, - "column": 6, - "index": 2424 + "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", + "line": 74, + "column": 20, + "index": 2991 } ], - "ActionRow": [ + "Dropdown": [ { - "filePath": "src/subscription/confirmation-modal/ConfirmationModal.jsx", - "line": 82, - "column": 8, - "index": 2453 + "filePath": "src/library-authoring/author-library/BlockPreviewBase.jsx", + "line": 90, + "column": 12, + "index": 2873 } ], - "ArrowForward": [ + "Dropdown.Toggle": [ { - "filePath": "src/subscription/confirmation-modal/ConfirmationModal.jsx", - "line": 86, - "column": 23, - "index": 2553 + "filePath": "src/library-authoring/author-library/BlockPreviewBase.jsx", + "line": 91, + "column": 14, + "index": 2898 } ], - "Badge": [ + "IconButton": [ { - "filePath": "src/subscription/details/content/SubscriptionContent.jsx", - "line": 21, - "column": 8, - "index": 720 - } - ] - } - }, - { - "version": "20.46.3", - "name": "@edx/frontend-app-profile", - "repository": { - "type": "git", - "url": "git+https://github.com/openedx/frontend-app-profile.git" - }, - "folderName": "frontend-app-profile", - "usages": { - "Alert": [ + "filePath": "src/library-authoring/author-library/BlockPreviewBase.jsx", + "line": 93, + "column": 20, + "index": 3030 + }, { - "filePath": "src/profile/AgeMessage.jsx", - "line": 8, - "column": 2, - "index": 269 + "filePath": "src/library-authoring/author-library/LibraryAuthoringPageHeaderBase.jsx", + "line": 49, + "column": 12, + "index": 1364 }, { - "filePath": "src/profile/forms/SocialLinks.jsx", - "line": 170, - "column": 22, - "index": 5631 + "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", + "line": 226, + "column": 35, + "index": 7581 }, { - "filePath": "src/profile/ProfilePage.jsx", - "line": 147, + "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", + "line": 72, "column": 10, - "index": 4408 + "index": 2927 } ], - "Alert.Heading": [ + "MoreVert": [ { - "filePath": "src/profile/AgeMessage.jsx", - "line": 13, - "column": 4, - "index": 336 + "filePath": "src/library-authoring/author-library/BlockPreviewBase.jsx", + "line": 94, + "column": 21, + "index": 3063 } ], - "Alert.Link": [ + "Dropdown.Menu": [ { - "filePath": "src/profile/AgeMessage.jsx", - "line": 25, - "column": 4, - "index": 745 + "filePath": "src/library-authoring/author-library/BlockPreviewBase.jsx", + "line": 97, + "column": 14, + "index": 3134 } ], - "Form.Group": [ + "Dropdown.Item": [ { - "filePath": "src/profile/forms/Bio.jsx", - "line": 59, + "filePath": "src/library-authoring/author-library/BlockPreviewBase.jsx", + "line": 98, "column": 16, - "index": 1588 + "index": 3180 }, { - "filePath": "src/profile/forms/Country.jsx", - "line": 70, + "filePath": "src/library-authoring/author-library/BlockPreviewBase.jsx", + "line": 104, "column": 16, - "index": 1680 + "index": 3512 + } + ], + "ModalDialog": [ + { + "filePath": "src/library-authoring/author-library/BlockPreviewBase.jsx", + "line": 116, + "column": 4, + "index": 3932 }, { - "filePath": "src/profile/forms/Education.jsx", - "line": 66, - "column": 16, - "index": 1741 + "filePath": "src/library-authoring/author-library/BlockPreviewBase.jsx", + "line": 139, + "column": 4, + "index": 4692 }, { - "filePath": "src/profile/forms/PreferredLanguage.jsx", + "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", "line": 80, - "column": 16, - "index": 2164 + "column": 10, + "index": 3185 } ], - "Hyperlink": [ + "ModalDialog.Header": [ { - "filePath": "src/profile/forms/Certificates.jsx", - "line": 106, - "column": 14, - "index": 3393 + "filePath": "src/library-authoring/author-library/BlockPreviewBase.jsx", + "line": 143, + "column": 6, + "index": 4796 }, { - "filePath": "src/profile/ProfilePage.jsx", - "line": 117, - "column": 6, - "index": 3523 + "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", + "line": 84, + "column": 12, + "index": 3313 } ], - "Button": [ - { - "filePath": "src/profile/forms/elements/EditButton.jsx", - "line": 13, - "column": 2, - "index": 417 - }, + "ModalDialog.Title": [ { - "filePath": "src/profile/forms/elements/FormControls.jsx", - "line": 54, + "filePath": "src/library-authoring/author-library/BlockPreviewBase.jsx", + "line": 144, "column": 8, - "index": 2172 + "index": 4825 }, { - "filePath": "src/profile/forms/ProfileAvatar.jsx", - "line": 59, - "column": 8, - "index": 1447 + "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", + "line": 85, + "column": 14, + "index": 3348 } ], - "StatefulButton": [ + "ModalDialog.Body": [ { - "filePath": "src/profile/forms/elements/FormControls.jsx", - "line": 32, - "column": 8, - "index": 1140 - } - ], - "TransitionReplace": [ + "filePath": "src/library-authoring/author-library/BlockPreviewBase.jsx", + "line": 148, + "column": 6, + "index": 4992 + }, { - "filePath": "src/profile/forms/elements/SwitchContent.jsx", - "line": 44, - "column": 4, - "index": 1393 + "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", + "line": 89, + "column": 12, + "index": 3533 } ], - "Dropdown": [ + "ModalDialog.Footer": [ { - "filePath": "src/profile/forms/ProfileAvatar.jsx", - "line": 75, + "filePath": "src/library-authoring/author-library/BlockPreviewBase.jsx", + "line": 151, "column": 6, - "index": 1827 - } - ], - "Dropdown.Toggle": [ - { - "filePath": "src/profile/forms/ProfileAvatar.jsx", - "line": 76, - "column": 8, - "index": 1846 - } - ], - "Dropdown.Menu": [ + "index": 5124 + }, { - "filePath": "src/profile/forms/ProfileAvatar.jsx", - "line": 79, - "column": 8, - "index": 1979 + "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", + "line": 95, + "column": 12, + "index": 3773 } ], - "Dropdown.Item": [ + "ModalDialog.CloseButton": [ { - "filePath": "src/profile/forms/ProfileAvatar.jsx", - "line": 80, + "filePath": "src/library-authoring/author-library/BlockPreviewBase.jsx", + "line": 153, "column": 10, - "index": 2005 + "index": 5175 }, { - "filePath": "src/profile/forms/ProfileAvatar.jsx", - "line": 87, - "column": 10, - "index": 2293 - } - ], - "Icon": [ - { - "filePath": "src/profile/UsernameDescription.jsx", - "line": 9, - "column": 4, - "index": 332 + "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", + "line": 97, + "column": 16, + "index": 3836 } ], - "VisibilityOff": [ - { - "filePath": "src/profile/UsernameDescription.jsx", - "line": 9, - "column": 15, - "index": 343 - } - ] - } - }, - { - "version": "20.46.2", - "name": "@edx/frontend-app-program-console", - "repository": { - "type": "git", - "url": "git+https://github.com/openedx/frontend-app-program-console.git" - }, - "folderName": "frontend-app-program-console", - "usages": { - "Collapsible": [ + "Card.Body": [ { - "filePath": "src/console/ConsolePage.jsx", - "line": 64, + "filePath": "src/library-authoring/author-library/BlockPreviewBase.jsx", + "line": 163, "column": 6, - "index": 1807 - }, - { - "filePath": "src/report/reportSection.jsx", - "line": 36, - "column": 8, - "index": 1090 + "index": 5669 } ], - "Alert": [ + "Add": [ { - "filePath": "src/console/ConsolePage.jsx", - "line": 116, - "column": 8, - "index": 3600 + "filePath": "src/library-authoring/author-library/ButtonTogglesBase.jsx", + "line": 30, + "column": 18, + "index": 1100 }, { - "filePath": "src/console/ConsolePage.jsx", - "line": 131, - "column": 8, - "index": 4152 + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 237, + "column": 26, + "index": 8253 }, { - "filePath": "src/console/ConsolePage.jsx", - "line": 149, - "column": 12, - "index": 4877 + "filePath": "src/library-authoring/course-import/CourseImportListItem.jsx", + "line": 44, + "column": 26, + "index": 1426 }, { - "filePath": "src/console/ConsolePage.jsx", - "line": 171, - "column": 20, - "index": 5893 + "filePath": "src/library-authoring/library-access/LibraryAccessPage.jsx", + "line": 58, + "column": 26, + "index": 2026 }, { - "filePath": "src/report/reportSection.jsx", - "line": 22, - "column": 4, - "index": 695 + "filePath": "src/library-authoring/list-libraries/LibraryListPage.jsx", + "line": 163, + "column": 34, + "index": 5442 } ], - "SearchField": [ + "Container": [ { - "filePath": "src/console/ConsolePage.jsx", - "line": 143, - "column": 12, - "index": 4641 + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 134, + "column": 4, + "index": 4004 + }, + { + "filePath": "src/library-authoring/edit-block/LibraryBlockPage.jsx", + "line": 216, + "column": 8, + "index": 6274 } ], - "Pagination": [ + "ActionRow.Spacer": [ { - "filePath": "src/console/ConsolePage.jsx", - "line": 158, - "column": 12, - "index": 5150 + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 141, + "column": 10, + "index": 4288 }, { - "filePath": "src/console/ConsolePage.jsx", - "line": 194, + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 164, + "column": 14, + "index": 5203 + }, + { + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 189, "column": 12, - "index": 6908 - } - ] - } - }, - { - "version": "20.46.3", - "name": "edx-frontend-app-publisher", - "repository": "https://github.com/openedx/frontend-app-publisher", - "folderName": "frontend-app-publisher", - "usages": { - "StatefulButton": [ + "index": 6192 + }, + { + "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", + "line": 52, + "column": 10, + "index": 1637 + }, + { + "filePath": "src/library-authoring/library-access/LibraryAccessPage.jsx", + "line": 53, + "column": 10, + "index": 1856 + }, { - "filePath": "src/components/ActionButton/index.jsx", - "line": 8, - "column": 2, - "index": 297 + "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", + "line": 44, + "column": 6, + "index": 1564 + }, + { + "filePath": "src/library-authoring/list-libraries/LibraryListPage.jsx", + "line": 121, + "column": 16, + "index": 3656 } ], - "Icon": [ + "Row": [ { - "filePath": "src/components/Collaborator/index.jsx", - "line": 32, - "column": 8, - "index": 836 + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 151, + "column": 6, + "index": 4584 }, { - "filePath": "src/components/Collaborator/index.jsx", - "line": 53, - "column": 12, - "index": 1442 + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 243, + "column": 14, + "index": 8463 }, { - "filePath": "src/components/SidePanes/CommentsPane.jsx", - "line": 100, - "column": 24, - "index": 2842 + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 286, + "column": 22, + "index": 10413 }, { - "filePath": "src/components/SidePanes/UsersPane.jsx", - "line": 125, - "column": 13, - "index": 3432 - } - ], - "Alert": [ + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 300, + "column": 22, + "index": 11104 + }, { - "filePath": "src/components/CollaboratorPage/index.jsx", - "line": 56, - "column": 8, - "index": 1439 + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 315, + "column": 22, + "index": 11844 }, { - "filePath": "src/components/CollaboratorPage/index.jsx", - "line": 93, + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 346, "column": 12, - "index": 2372 + "index": 13129 }, { - "filePath": "src/components/CollaboratorPage/index.jsx", - "line": 117, - "column": 14, - "index": 3271 + "filePath": "src/library-authoring/common/License.jsx", + "line": 22, + "column": 4, + "index": 668 }, { - "filePath": "src/components/CreateCoursePage/index.jsx", - "line": 100, - "column": 8, - "index": 2609 + "filePath": "src/library-authoring/common/License.jsx", + "line": 92, + "column": 2, + "index": 2600 }, { - "filePath": "src/components/CreateCoursePage/index.jsx", - "line": 200, - "column": 16, - "index": 5646 + "filePath": "src/library-authoring/common/LicenseField.jsx", + "line": 40, + "column": 4, + "index": 877 }, { - "filePath": "src/components/CreateCourseRunPage/index.jsx", - "line": 156, - "column": 12, - "index": 4815 + "filePath": "src/library-authoring/common/LicenseField.jsx", + "line": 55, + "column": 8, + "index": 1539 }, { - "filePath": "src/components/CreateCourseRunPage/index.jsx", - "line": 181, - "column": 16, - "index": 5802 + "filePath": "src/library-authoring/common/LicenseField.jsx", + "line": 74, + "column": 8, + "index": 2274 }, { - "filePath": "src/components/EditCoursePage/index.jsx", - "line": 707, + "filePath": "src/library-authoring/common/LicenseField.jsx", + "line": 93, "column": 8, - "index": 24008 + "index": 3064 }, { - "filePath": "src/components/EditCoursePage/index.jsx", - "line": 823, - "column": 10, - "index": 27424 + "filePath": "src/library-authoring/common/LicenseField.jsx", + "line": 112, + "column": 8, + "index": 3856 }, { - "filePath": "src/components/EditCoursePage/index.jsx", - "line": 833, - "column": 10, - "index": 27707 + "filePath": "src/library-authoring/common/LicenseField.jsx", + "line": 133, + "column": 4, + "index": 4643 }, { - "filePath": "src/components/EditCoursePage/index.jsx", - "line": 883, + "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", + "line": 194, "column": 10, - "index": 29557 + "index": 4777 }, { - "filePath": "src/components/EditCoursePage/index.jsx", - "line": 920, - "column": 12, - "index": 30941 + "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", + "line": 385, + "column": 10, + "index": 12812 }, { - "filePath": "src/components/EditCoursePage/TranscriptLanguage.jsx", - "line": 36, + "filePath": "src/library-authoring/edit-block/LibraryBlockPage.jsx", + "line": 217, "column": 10, - "index": 900 + "index": 6332 }, { - "filePath": "src/components/ImageUpload/index.jsx", - "line": 95, - "column": 12, - "index": 2414 + "filePath": "src/library-authoring/library-access/LibraryAccessForm.jsx", + "line": 26, + "column": 2, + "index": 840 }, { - "filePath": "src/components/ImageUpload/index.jsx", - "line": 101, - "column": 12, - "index": 2574 + "filePath": "src/library-authoring/library-access/LibraryAccessPage.jsx", + "line": 68, + "column": 6, + "index": 2281 + } + ], + "SearchField": [ + { + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 158, + "column": 14, + "index": 4931 + } + ], + "Form.Control": [ + { + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 165, + "column": 14, + "index": 5238 }, { - "filePath": "src/components/ListField/index.jsx", - "line": 189, + "filePath": "src/library-authoring/author-library/LibraryAuthoringPageHeaderBase.jsx", + "line": 33, "column": 10, - "index": 5140 + "index": 926 }, { - "filePath": "src/components/ReduxFormCreatableSelect/index.jsx", - "line": 84, - "column": 12, - "index": 2085 + "filePath": "src/library-authoring/common/FormGroup.jsx", + "line": 19, + "column": 6, + "index": 499 }, { - "filePath": "src/components/RichEditor/index.jsx", - "line": 77, - "column": 10, - "index": 2171 + "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", + "line": 220, + "column": 28, + "index": 5888 }, { - "filePath": "src/components/SidePanes/CommentsPane.jsx", - "line": 107, - "column": 10, - "index": 3208 + "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", + "line": 222, + "column": 16, + "index": 7301 }, { - "filePath": "src/components/SidePanes/CommentsPane.jsx", - "line": 146, - "column": 12, - "index": 4378 + "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", + "line": 236, + "column": 14, + "index": 8003 }, { - "filePath": "src/components/SidePanes/UsersPane.jsx", - "line": 141, - "column": 13, - "index": 4036 + "filePath": "src/library-authoring/library-access/LibraryAccessForm.jsx", + "line": 45, + "column": 20, + "index": 1617 + } + ], + "Pagination": [ + { + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 191, + "column": 14, + "index": 6276 }, { - "filePath": "src/components/StafferPage/index.jsx", - "line": 114, - "column": 8, - "index": 3015 + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 332, + "column": 16, + "index": 12566 }, { - "filePath": "src/components/StafferPage/index.jsx", - "line": 164, + "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", + "line": 125, "column": 12, - "index": 4496 + "index": 4206 }, { - "filePath": "src/components/StafferPage/index.jsx", - "line": 193, - "column": 16, - "index": 5561 + "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", + "line": 301, + "column": 12, + "index": 10112 }, { - "filePath": "src/components/TableComponent/index.jsx", - "line": 129, - "column": 6, - "index": 4035 + "filePath": "src/library-authoring/list-libraries/LibraryListPage.jsx", + "line": 172, + "column": 18, + "index": 5763 } ], - "Alert.Heading": [ + "SelectableBox.Set": [ { - "filePath": "src/components/CollaboratorPage/index.jsx", - "line": 60, - "column": 10, - "index": 1514 - }, + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 248, + "column": 18, + "index": 8781 + } + ], + "SelectableBox": [ { - "filePath": "src/components/CreateCoursePage/index.jsx", - "line": 104, - "column": 10, - "index": 2684 + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 281, + "column": 20, + "index": 10232 }, { - "filePath": "src/components/EditCoursePage/index.jsx", - "line": 713, - "column": 10, - "index": 24123 + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 295, + "column": 20, + "index": 10917 }, { - "filePath": "src/components/StafferPage/index.jsx", - "line": 120, - "column": 10, - "index": 3130 + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 309, + "column": 20, + "index": 11615 } ], - "Collapsible": [ + "TextFields": [ { - "filePath": "src/components/Collapsible/index.jsx", - "line": 8, - "column": 32, - "index": 341 + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 288, + "column": 31, + "index": 10538 } ], - "Collapsible.Advanced": [ + "HelpOutline": [ { - "filePath": "src/components/Collapsible/index.jsx", - "line": 32, - "column": 2, - "index": 771 + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 302, + "column": 31, + "index": 11229 } ], - "Collapsible.Trigger": [ + "VideoCamera": [ { - "filePath": "src/components/Collapsible/index.jsx", - "line": 33, + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 317, + "column": 31, + "index": 11969 + } + ], + "Card.Footer": [ + { + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 360, + "column": 18, + "index": 14068 + }, + { + "filePath": "src/library-authoring/create-library/LibraryCreatePage.jsx", + "line": 333, + "column": 18, + "index": 11397 + }, + { + "filePath": "src/library-authoring/empty-page/EmptyPage.jsx", + "line": 15, "column": 4, - "index": 838 + "index": 287 } ], - "Collapsible.Visible": [ + "Alert": [ { - "filePath": "src/components/Collapsible/index.jsx", - "line": 35, + "filePath": "src/library-authoring/common/ErrorAlert.jsx", + "line": 12, "column": 6, - "index": 956 + "index": 455 }, { - "filePath": "src/components/Collapsible/index.jsx", - "line": 38, + "filePath": "src/library-authoring/common/SuccessAlert.jsx", + "line": 11, "column": 6, - "index": 1066 - } - ], - "ModalDialog": [ + "index": 414 + }, { - "filePath": "src/components/ConfirmationModal/index.jsx", - "line": 14, - "column": 2, - "index": 241 + "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", + "line": 199, + "column": 16, + "index": 4974 + }, + { + "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", + "line": 389, + "column": 18, + "index": 13006 + }, + { + "filePath": "src/library-authoring/create-library/LibraryCreatePage.jsx", + "line": 256, + "column": 12, + "index": 7296 + }, + { + "filePath": "src/library-authoring/edit-block/LibraryBlockPage.jsx", + "line": 222, + "column": 16, + "index": 6529 + }, + { + "filePath": "src/library-authoring/library-access/LibraryAccessPage.jsx", + "line": 73, + "column": 16, + "index": 2464 } ], - "ModalDialog.Header": [ + "Form.Group": [ { - "filePath": "src/components/ConfirmationModal/index.jsx", - "line": 19, + "filePath": "src/library-authoring/common/FormGroup.jsx", + "line": 18, "column": 4, - "index": 325 + "index": 419 + }, + { + "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", + "line": 212, + "column": 26, + "index": 5445 + }, + { + "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", + "line": 217, + "column": 12, + "index": 7033 + }, + { + "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", + "line": 232, + "column": 12, + "index": 7773 + }, + { + "filePath": "src/library-authoring/library-access/LibraryAccessForm.jsx", + "line": 37, + "column": 18, + "index": 1233 } ], - "ModalDialog.Title": [ + "Cc": [ { - "filePath": "src/components/ConfirmationModal/index.jsx", - "line": 20, - "column": 6, - "index": 352 + "filePath": "src/library-authoring/common/License.jsx", + "line": 28, + "column": 15, + "index": 876 } ], - "ModalDialog.Body": [ + "Attribution": [ { - "filePath": "src/components/ConfirmationModal/index.jsx", - "line": 24, - "column": 4, - "index": 445 + "filePath": "src/library-authoring/common/License.jsx", + "line": 37, + "column": 17, + "index": 1149 } ], - "ModalDialog.Footer": [ + "Nc": [ { - "filePath": "src/components/ConfirmationModal/index.jsx", - "line": 29, - "column": 4, - "index": 548 + "filePath": "src/library-authoring/common/License.jsx", + "line": 47, + "column": 17, + "index": 1452 } ], - "ActionRow": [ + "Nd": [ { - "filePath": "src/components/ConfirmationModal/index.jsx", - "line": 30, - "column": 6, - "index": 575 + "filePath": "src/library-authoring/common/License.jsx", + "line": 57, + "column": 17, + "index": 1747 } ], - "ModalDialog.CloseButton": [ + "Sa": [ { - "filePath": "src/components/ConfirmationModal/index.jsx", - "line": 31, - "column": 8, - "index": 595 + "filePath": "src/library-authoring/common/License.jsx", + "line": 67, + "column": 17, + "index": 2036 } ], - "Button": [ + "Copyright": [ { - "filePath": "src/components/ConfirmationModal/index.jsx", - "line": 34, - "column": 8, - "index": 696 + "filePath": "src/library-authoring/common/License.jsx", + "line": 93, + "column": 15, + "index": 2656 } ], - "SearchField": [ + "ButtonGroup": [ { - "filePath": "src/components/CourseTable/index.jsx", - "line": 167, - "column": 10, - "index": 5694 + "filePath": "src/library-authoring/common/LicenseField.jsx", + "line": 41, + "column": 6, + "index": 905 } ], - "Form.Group": [ - { - "filePath": "src/components/DateTimeField/index.jsx", - "line": 87, - "column": 10, - "index": 2121 - }, - { - "filePath": "src/components/DateTimeField/index.jsx", - "line": 113, - "column": 10, - "index": 2978 - }, + "Form.Checkbox": [ { - "filePath": "src/components/RenderInputTextField/index.jsx", - "line": 18, - "column": 2, - "index": 282 + "filePath": "src/library-authoring/common/LicenseField.jsx", + "line": 57, + "column": 12, + "index": 1653 }, { - "filePath": "src/components/RenderSelectField/index.jsx", - "line": 16, - "column": 2, - "index": 253 + "filePath": "src/library-authoring/common/LicenseField.jsx", + "line": 76, + "column": 12, + "index": 2388 }, { - "filePath": "src/components/RenderSelectField/updated-paragon-component.jsx", - "line": 22, - "column": 2, - "index": 763 - } - ], - "Form.Label": [ - { - "filePath": "src/components/DateTimeField/index.jsx", - "line": 88, + "filePath": "src/library-authoring/common/LicenseField.jsx", + "line": 95, "column": 12, - "index": 2179 + "index": 3178 }, { - "filePath": "src/components/DateTimeField/index.jsx", + "filePath": "src/library-authoring/common/LicenseField.jsx", "line": 114, "column": 12, - "index": 3036 - }, - { - "filePath": "src/components/RenderInputTextField/index.jsx", - "line": 19, - "column": 4, - "index": 361 - }, + "index": 3970 + } + ], + "Form": [ { - "filePath": "src/components/RenderSelectField/index.jsx", - "line": 17, - "column": 21, - "index": 349 + "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", + "line": 208, + "column": 18, + "index": 5251 }, { - "filePath": "src/components/RenderSelectField/updated-paragon-component.jsx", - "line": 23, - "column": 4, - "index": 842 + "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", + "line": 215, + "column": 8, + "index": 6939 } ], - "Form.Control": [ + "Card.Section": [ { - "filePath": "src/components/DateTimeField/index.jsx", - "line": 96, - "column": 12, - "index": 2409 + "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", + "line": 211, + "column": 24, + "index": 5404 }, { - "filePath": "src/components/DateTimeField/index.jsx", - "line": 121, - "column": 12, - "index": 3230 + "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", + "line": 292, + "column": 24, + "index": 9655 }, { - "filePath": "src/components/RenderInputTextField/index.jsx", - "line": 22, - "column": 4, - "index": 410 + "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", + "line": 301, + "column": 22, + "index": 10047 }, { - "filePath": "src/components/RenderSelectField/index.jsx", - "line": 18, - "column": 4, - "index": 387 + "filePath": "src/library-authoring/create-library/LibraryCreatePage.jsx", + "line": 282, + "column": 18, + "index": 8517 }, { - "filePath": "src/components/RenderSelectField/updated-paragon-component.jsx", - "line": 26, + "filePath": "src/library-authoring/empty-page/EmptyPage.jsx", + "line": 11, "column": 4, - "index": 891 - } - ], - "Hyperlink": [ - { - "filePath": "src/components/EditCoursePage/CollapsibleCourseRun.jsx", - "line": 81, - "column": 12, - "index": 3370 - }, - { - "filePath": "src/components/EditCoursePage/EditCourseForm.jsx", - "line": 146, - "column": 10, - "index": 5117 - }, - { - "filePath": "src/components/EditCoursePage/EditCourseForm.jsx", - "line": 161, - "column": 10, - "index": 5712 + "index": 203 }, { - "filePath": "src/components/EditCoursePage/EditCourseForm.test.jsx", - "line": 399, + "filePath": "src/library-authoring/library-access/LibraryAccessForm.jsx", + "line": 32, "column": 8, - "index": 13345 + "index": 1042 }, { - "filePath": "src/components/EditCoursePage/EditCourseForm.test.jsx", - "line": 432, + "filePath": "src/library-authoring/library-access/LibraryAccessForm.jsx", + "line": 67, "column": 8, - "index": 14589 + "index": 2521 }, { - "filePath": "src/components/Header/index.jsx", - "line": 37, - "column": 12, - "index": 1401 + "filePath": "src/library-authoring/list-libraries/LibraryListPage.jsx", + "line": 147, + "column": 24, + "index": 4613 } ], - "OverlayTrigger": [ + "Form.Label": [ { - "filePath": "src/components/EditCoursePage/CollapsibleCourseRun.jsx", - "line": 88, - "column": 12, - "index": 3600 + "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", + "line": 217, + "column": 28, + "index": 5673 }, { - "filePath": "src/components/SidePanes/Pane.jsx", - "line": 11, - "column": 6, - "index": 335 - } - ], - "Tooltip": [ + "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", + "line": 218, + "column": 14, + "index": 7078 + }, { - "filePath": "src/components/EditCoursePage/CollapsibleCourseRun.jsx", - "line": 90, - "column": 23, - "index": 3669 + "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", + "line": 233, + "column": 14, + "index": 7818 }, { - "filePath": "src/components/SidePanes/Pane.jsx", - "line": 15, - "column": 10, - "index": 428 + "filePath": "src/library-authoring/library-access/LibraryAccessForm.jsx", + "line": 42, + "column": 20, + "index": 1420 } ], - "Badge": [ + "Form.Text": [ { - "filePath": "src/components/EditCoursePage/CourseSkills.jsx", - "line": 29, - "column": 10, - "index": 588 + "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", + "line": 228, + "column": 28, + "index": 6314 + }, + { + "filePath": "src/library-authoring/library-access/LibraryAccessForm.jsx", + "line": 53, + "column": 20, + "index": 1970 } ], - "Add": [ + "StatefulButton": [ { - "filePath": "src/components/EditCoursePage/EditCourseForm.jsx", - "line": 123, - "column": 8, - "index": 4457 + "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", + "line": 309, + "column": 24, + "index": 10415 }, { - "filePath": "src/components/SidePanes/UsersPane.jsx", - "line": 160, - "column": 16, - "index": 4799 - } - ], - "InfoOutline": [ + "filePath": "src/library-authoring/course-import/CourseImportListItem.jsx", + "line": 61, + "column": 12, + "index": 1924 + }, { - "filePath": "src/components/FieldHelp/index.jsx", - "line": 57, - "column": 10, - "index": 1365 + "filePath": "src/library-authoring/create-library/LibraryCreatePage.jsx", + "line": 342, + "column": 22, + "index": 11832 }, { - "filePath": "src/components/SidePanes/Pane.jsx", - "line": 20, - "column": 8, - "index": 544 + "filePath": "src/library-authoring/library-access/LibraryAccessForm.jsx", + "line": 71, + "column": 10, + "index": 2752 } ], - "Dropdown": [ + "SpinnerSimple": [ { - "filePath": "src/components/Header/index.jsx", - "line": 60, - "column": 12, - "index": 2510 - } - ], - "Dropdown.Toggle": [ + "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", + "line": 319, + "column": 48, + "index": 11021 + }, { - "filePath": "src/components/Header/index.jsx", - "line": 61, - "column": 14, - "index": 2535 + "filePath": "src/library-authoring/course-import/CourseImportListItem.jsx", + "line": 45, + "column": 26, + "index": 1461 } ], - "AvatarButton": [ + "Check": [ { - "filePath": "src/components/Header/index.jsx", - "line": 61, - "column": 35, - "index": 2556 + "filePath": "src/library-authoring/course-import/CourseImportListItem.jsx", + "line": 46, + "column": 27, + "index": 1529 } ], - "Dropdown.Menu": [ + "Sync": [ { - "filePath": "src/components/Header/index.jsx", - "line": 65, - "column": 14, - "index": 2664 - } - ], - "Dropdown.Item": [ + "filePath": "src/library-authoring/course-import/CourseImportListItem.jsx", + "line": 47, + "column": 24, + "index": 1564 + }, { - "filePath": "src/components/Header/index.jsx", - "line": 66, - "column": 16, - "index": 2696 + "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", + "line": 57, + "column": 24, + "index": 1821 } ], - "Spinner": [ + "Form.Row": [ { - "filePath": "src/components/LoadingSpinner/index.jsx", - "line": 10, - "column": 4, - "index": 229 + "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", + "line": 216, + "column": 10, + "index": 7010 }, { - "filePath": "src/components/SidePanes/CatalogInclusionPane.jsx", - "line": 71, + "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", + "line": 231, "column": 10, - "index": 2530 + "index": 7750 } ], - "Close": [ + "Search": [ { - "filePath": "src/components/RemoveButton/index.jsx", - "line": 20, - "column": 4, - "index": 465 + "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", + "line": 226, + "column": 66, + "index": 7612 } ], - "Form": [ + "Badge": [ { - "filePath": "src/components/SidePanes/CatalogInclusionPane.jsx", - "line": 60, - "column": 6, - "index": 2093 - } - ], - "Form.Switch": [ + "filePath": "src/library-authoring/course-import/CourseImportTaskListItem.jsx", + "line": 37, + "column": 12, + "index": 906 + }, { - "filePath": "src/components/SidePanes/CatalogInclusionPane.jsx", - "line": 61, - "column": 8, - "index": 2125 + "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", + "line": 31, + "column": 4, + "index": 929 } ], - "TextArea": [ + "Info": [ { - "filePath": "src/components/SidePanes/CommentsPane.jsx", - "line": 123, - "column": 14, - "index": 3621 + "filePath": "src/library-authoring/create-library/LibraryCreatePage.jsx", + "line": 257, + "column": 20, + "index": 7323 } ], - "Delete": [ + "Alert.Heading": [ { - "filePath": "src/components/Staffer/index.jsx", - "line": 30, - "column": 8, - "index": 809 + "filePath": "src/library-authoring/create-library/LibraryCreatePage.jsx", + "line": 261, + "column": 29, + "index": 7459 } ], - "Edit": [ + "Breadcrumb": [ { - "filePath": "src/components/Staffer/index.jsx", - "line": 44, + "filePath": "src/library-authoring/create-library/LibraryCreatePage.jsx", + "line": 265, "column": 10, - "index": 1276 + "index": 7605 + }, + { + "filePath": "src/library-authoring/list-libraries/LibraryListPage.jsx", + "line": 112, + "column": 12, + "index": 3145 } ], - "DataTable": [ + "AlertModal": [ { - "filePath": "src/components/TableComponent/index.jsx", - "line": 94, - "column": 10, - "index": 2919 + "filePath": "src/library-authoring/create-library/LibraryCreatePage.jsx", + "line": 364, + "column": 8, + "index": 12832 } ], - "Pagination": [ + "Spinner": [ { - "filePath": "src/components/TableComponent/index.jsx", - "line": 107, - "column": 12, - "index": 3357 + "filePath": "src/library-authoring/edit-block/LibraryBlockPage.jsx", + "line": 259, + "column": 24, + "index": 8507 } ], - "ErrorIcon": [ + "DeleteOutline": [ { - "filePath": "src/components/TableComponent/index.jsx", - "line": 131, - "column": 14, - "index": 4081 + "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", + "line": 73, + "column": 17, + "index": 2956 } ] } }, { - "version": "20.46.0", - "name": "@edx/frontend-app-support", + "version": "21.11.3", + "name": "@edx/frontend-app-ora-grading", "repository": { "type": "git", - "url": "git+https://github.com/openedx/frontend-app-support-tools.git" + "url": "git+https://github.com/edx/frontend-app-ora-grading.git" }, - "folderName": "frontend-app-support-tools", + "folderName": "frontend-app-ora-grading", "usages": { - "Container": [ + "AlertModal": [ { - "filePath": "src/Configuration/ConfigurationPage.jsx", - "line": 15, - "column": 4, - "index": 444 + "filePath": "src/components/ConfirmModal.jsx", + "line": 16, + "column": 2, + "index": 292 }, { - "filePath": "src/Configuration/Provisioning/ErrorPage/ErrorPageContainer.jsx", + "filePath": "src/components/DemoAlert/index.jsx", + "line": 18, + "column": 2, + "index": 329 + } + ], + "ActionRow": [ + { + "filePath": "src/components/ConfirmModal.jsx", + "line": 22, + "column": 6, + "index": 421 + }, + { + "filePath": "src/components/DemoAlert/index.jsx", + "line": 23, + "column": 6, + "index": 449 + }, + { + "filePath": "src/components/FilePreview/BaseRenderers/PDFRenderer.jsx", + "line": 51, + "column": 6, + "index": 1279 + }, + { + "filePath": "src/containers/ReviewActions/index.jsx", "line": 27, "column": 4, - "index": 969 + "index": 754 + } + ], + "Button": [ + { + "filePath": "src/components/ConfirmModal.jsx", + "line": 23, + "column": 8, + "index": 441 }, { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormContainer.jsx", + "filePath": "src/components/ConfirmModal.jsx", + "line": 29, + "column": 8, + "index": 566 + }, + { + "filePath": "src/components/DemoAlert/index.jsx", + "line": 24, + "column": 8, + "index": 469 + }, + { + "filePath": "src/components/FilePreview/Banners/ErrorBanner.jsx", "line": 15, - "column": 6, - "index": 442 + "column": 4, + "index": 454 }, { - "filePath": "src/Configuration/Provisioning/ProvisioningPage.jsx", - "line": 9, + "filePath": "src/components/FilePreview/FileInfo.jsx", + "line": 28, "column": 4, - "index": 208 + "index": 647 }, { - "filePath": "src/Configuration/Provisioning/SubsidyDetailView/SubsidyDetailViewContainer.jsx", - "line": 13, + "filePath": "src/containers/ListView/EmptySubmission.jsx", + "line": 21, "column": 6, - "index": 491 + "index": 685 }, { - "filePath": "src/Configuration/Provisioning/SubsidyEditView/SubsidyEditViewContainer.jsx", - "line": 18, + "filePath": "src/containers/ListView/FilterStatusComponent.jsx", + "line": 37, "column": 6, - "index": 544 - } - ], - "Stack": [ + "index": 1076 + }, { - "filePath": "src/Configuration/ConfigurationPage.jsx", - "line": 17, + "filePath": "src/containers/ListView/ListError.jsx", + "line": 27, "column": 6, - "index": 527 + "index": 570 }, { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/CustomCatalog/ProvisioningFormDefineCustomCatalogHeader.jsx", - "line": 33, - "column": 10, - "index": 1145 + "filePath": "src/containers/ListView/SelectedBulkAction.jsx", + "line": 10, + "column": 2, + "index": 285 }, { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormTerm.jsx", - "line": 59, - "column": 6, - "index": 1787 + "filePath": "src/containers/ListView/TableAction.jsx", + "line": 10, + "column": 2, + "index": 275 }, { - "filePath": "src/Configuration/Provisioning/SubsidyDetailView/PolicyDetailView/PolicyContainer.jsx", - "line": 13, - "column": 4, - "index": 601 + "filePath": "src/containers/ResponseDisplay/SubmissionFiles.jsx", + "line": 90, + "column": 20, + "index": 3414 }, { - "filePath": "src/Configuration/Provisioning/SubsidyDetailView/TermDetail.jsx", - "line": 16, - "column": 8, - "index": 435 - } - ], - "Hyperlink": [ + "filePath": "src/containers/ReviewActions/components/StartGradingButton/index.jsx", + "line": 27, + "column": 6, + "index": 626 + }, { - "filePath": "src/Configuration/ConfigurationPage.jsx", - "line": 19, - "column": 10, - "index": 598 + "filePath": "src/containers/ReviewActions/index.jsx", + "line": 45, + "column": 12, + "index": 1365 }, { - "filePath": "src/Configuration/Provisioning/DashboardDataTable/DashboardTableLinks.jsx", - "line": 12, + "filePath": "src/containers/ReviewModal/ReviewErrors/ReviewError.jsx", + "line": 26, "column": 6, - "index": 537 + "index": 521 }, { - "filePath": "src/Configuration/Provisioning/DashboardDataTable/DashboardTableLinks.jsx", - "line": 35, - "column": 4, - "index": 1202 + "filePath": "src/containers/ReviewModal/ReviewErrors/ReviewError.jsx", + "line": 33, + "column": 6, + "index": 713 }, { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/CustomCatalog/ProvisioningFormDefineCustomCatalogHeader.jsx", - "line": 23, - "column": 8, - "index": 758 + "filePath": "src/containers/ReviewModal/ReviewErrors/ReviewError.test.jsx", + "line": 34, + "column": 2, + "index": 782 }, { - "filePath": "src/Configuration/Provisioning/SubsidyDetailView/PolicyDetailView/CustomCatalogDetail.jsx", - "line": 18, - "column": 10, - "index": 648 + "filePath": "src/containers/ReviewModal/ReviewErrors/ReviewError.test.jsx", + "line": 40, + "column": 2, + "index": 915 + } + ], + "Alert": [ + { + "filePath": "src/components/FilePreview/Banners/ErrorBanner.jsx", + "line": 20, + "column": 4, + "index": 612 }, { - "filePath": "src/ProgramEnrollments/ProgramInspector/EnrollmentDetails.jsx", - "line": 38, - "column": 18, - "index": 1246 + "filePath": "src/components/FilePreview/Banners/LoadingBanner.jsx", + "line": 6, + "column": 2, + "index": 119 }, { - "filePath": "src/users/CopyShowHyperLinks.jsx", - "line": 10, - "column": 6, - "index": 253 + "filePath": "src/containers/DemoWarning/index.jsx", + "line": 18, + "column": 4, + "index": 447 }, { - "filePath": "src/users/CopyShowHyperLinks.jsx", - "line": 24, - "column": 6, - "index": 647 + "filePath": "src/containers/ListView/ListError.jsx", + "line": 23, + "column": 2, + "index": 505 }, { - "filePath": "src/users/entitlements/Entitlements.jsx", - "line": 67, - "column": 8, - "index": 2598 + "filePath": "src/containers/ReviewModal/ReviewErrors/ReviewError.jsx", + "line": 39, + "column": 4, + "index": 855 + } + ], + "Info": [ + { + "filePath": "src/components/FilePreview/Banners/ErrorBanner.jsx", + "line": 20, + "column": 34, + "index": 642 }, { - "filePath": "src/users/LearnerCredentials.jsx", - "line": 113, - "column": 14, - "index": 3025 + "filePath": "src/containers/DemoWarning/index.jsx", + "line": 21, + "column": 12, + "index": 523 }, { - "filePath": "src/users/orderHistory/OrderHistory.jsx", - "line": 47, + "filePath": "src/containers/ListView/ListError.jsx", + "line": 25, "column": 10, - "index": 1542 + "index": 543 }, { - "filePath": "src/users/VerifiedName.jsx", - "line": 135, - "column": 6, - "index": 4398 + "filePath": "src/containers/ReviewModal/ReviewErrors/ReviewError.jsx", + "line": 41, + "column": 12, + "index": 898 } ], - "DataTable.FilterStatus": [ + "Alert.Heading": [ { - "filePath": "src/Configuration/Provisioning/DashboardDataTable/DashboardDataTable.jsx", - "line": 20, - "column": 31, - "index": 865 - } - ], - "DataTable": [ + "filePath": "src/components/FilePreview/Banners/ErrorBanner.jsx", + "line": 21, + "column": 6, + "index": 679 + }, { - "filePath": "src/Configuration/Provisioning/DashboardDataTable/DashboardDataTable.jsx", - "line": 49, + "filePath": "src/containers/DemoWarning/index.jsx", + "line": 23, "column": 6, - "index": 1737 + "index": 541 }, { - "filePath": "src/users/account-actions/PasswordHistory.jsx", - "line": 71, - "column": 10, - "index": 1856 + "filePath": "src/containers/ListView/ListError.jsx", + "line": 32, + "column": 4, + "index": 696 + }, + { + "filePath": "src/containers/ReviewModal/ReviewErrors/ReviewError.jsx", + "line": 45, + "column": 6, + "index": 968 } ], - "Badge": [ + "Spinner": [ { - "filePath": "src/Configuration/Provisioning/DashboardDataTable/DashboardTableBadges.jsx", - "line": 9, + "filePath": "src/components/FilePreview/Banners/LoadingBanner.jsx", + "line": 7, "column": 4, - "index": 172 - }, - { - "filePath": "src/FeatureBasedEnrollments/FeatureBasedEnrollmentCard.jsx", - "line": 16, - "column": 40, - "index": 384 + "index": 146 }, { - "filePath": "src/FeatureBasedEnrollments/FeatureBasedEnrollmentCard.jsx", - "line": 16, - "column": 83, - "index": 427 + "filePath": "src/components/LoadingMessage.jsx", + "line": 12, + "column": 4, + "index": 300 }, { - "filePath": "src/users/licenses/LicenseCard.jsx", - "line": 67, - "column": 14, - "index": 1781 + "filePath": "src/containers/ListView/index.jsx", + "line": 47, + "column": 12, + "index": 1320 } ], "IconButton": [ { - "filePath": "src/Configuration/Provisioning/DashboardDataTable/DashboardTableLinks.jsx", - "line": 42, - "column": 6, - "index": 1439 - } - ], - "DjangoShort": [ - { - "filePath": "src/Configuration/Provisioning/DashboardDataTable/DashboardTableLinks.jsx", - "line": 44, - "column": 13, - "index": 1482 - } - ], - "Icon": [ + "filePath": "src/components/FilePreview/BaseRenderers/PDFRenderer.jsx", + "line": 52, + "column": 8, + "index": 1345 + }, { - "filePath": "src/Configuration/Provisioning/DashboardDataTable/DashboardTableLinks.jsx", - "line": 45, - "column": 16, - "index": 1511 + "filePath": "src/components/FilePreview/BaseRenderers/PDFRenderer.jsx", + "line": 71, + "column": 8, + "index": 1934 }, { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/CustomCatalog/ProvisioningFormDefineCustomCatalogHeader.jsx", - "line": 34, - "column": 12, - "index": 1188 + "filePath": "src/components/InfoPopover/index.jsx", + "line": 31, + "column": 4, + "index": 678 }, { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormHelpText.jsx", - "line": 12, - "column": 55, - "index": 365 + "filePath": "src/containers/ReviewActions/components/SubmissionNavigation.jsx", + "line": 26, + "column": 4, + "index": 659 }, { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormTerm.jsx", - "line": 66, + "filePath": "src/containers/ReviewActions/components/SubmissionNavigation.jsx", + "line": 41, + "column": 4, + "index": 1085 + } + ], + "Icon": [ + { + "filePath": "src/components/FilePreview/BaseRenderers/PDFRenderer.jsx", + "line": 55, "column": 18, - "index": 2072 + "index": 1433 }, { - "filePath": "src/Configuration/Provisioning/SubsidyDetailView/InternalOnlyDetail.jsx", - "line": 16, - "column": 10, - "index": 489 + "filePath": "src/components/FilePreview/BaseRenderers/PDFRenderer.jsx", + "line": 74, + "column": 18, + "index": 2018 }, { - "filePath": "src/Configuration/Provisioning/SubsidyDetailView/TermDetail.jsx", - "line": 23, - "column": 20, - "index": 734 - } - ], - "ActionRow": [ - { - "filePath": "src/Configuration/Provisioning/DashboardHeader.jsx", - "line": 20, - "column": 4, - "index": 515 + "filePath": "src/components/InfoPopover/index.jsx", + "line": 36, + "column": 14, + "index": 843 }, { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/CustomCatalog/ProvisioningFormDefineCustomCatalogHeader.jsx", + "filePath": "src/containers/ListView/ListViewBreadcrumb.jsx", "line": 20, "column": 6, - "index": 645 + "index": 631 }, { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormSubmissionButton.jsx", - "line": 253, - "column": 4, - "index": 11163 + "filePath": "src/containers/ListView/ListViewBreadcrumb.jsx", + "line": 26, + "column": 8, + "index": 946 }, { - "filePath": "src/Configuration/Provisioning/SubsidyDetailView/SubsidyDetailViewContainer.jsx", - "line": 14, - "column": 8, - "index": 538 + "filePath": "src/containers/ResponseDisplay/FileDownload.jsx", + "line": 29, + "column": 15, + "index": 797 }, { - "filePath": "src/Configuration/Provisioning/SubsidyEditView/CancelButton.jsx", - "line": 53, - "column": 10, - "index": 1370 + "filePath": "src/containers/ResponseDisplay/FileDownload.jsx", + "line": 30, + "column": 15, + "index": 849 }, { - "filePath": "src/Configuration/Provisioning/SubsidyEditView/SubsidyEditViewContainer.jsx", - "line": 19, - "column": 8, - "index": 591 + "filePath": "src/containers/ResponseDisplay/FileDownload.jsx", + "line": 31, + "column": 16, + "index": 909 }, { - "filePath": "src/users/account-actions/CancelRetirement.jsx", - "line": 71, - "column": 10, - "index": 2144 + "filePath": "src/containers/ResponseDisplay/FileDownload.jsx", + "line": 32, + "column": 14, + "index": 957 }, { - "filePath": "src/users/account-actions/PasswordHistory.jsx", - "line": 78, - "column": 10, - "index": 2086 + "filePath": "src/containers/ResponseDisplay/SubmissionFiles.jsx", + "line": 47, + "column": 18, + "index": 1519 }, { - "filePath": "src/users/account-actions/ResetPassword.jsx", - "line": 74, - "column": 10, - "index": 2217 + "filePath": "src/containers/ResponseDisplay/SubmissionFiles.jsx", + "line": 50, + "column": 18, + "index": 1652 }, { - "filePath": "src/users/account-actions/RetireUser.jsx", - "line": 86, - "column": 10, - "index": 2661 + "filePath": "src/containers/ResponseDisplay/SubmissionFiles.jsx", + "line": 88, + "column": 20, + "index": 3176 }, { - "filePath": "src/users/account-actions/TogglePasswordStatus.jsx", - "line": 64, - "column": 10, - "index": 2178 + "filePath": "src/containers/ReviewActions/components/SubmissionNavigation.jsx", + "line": 32, + "column": 14, + "index": 862 }, { - "filePath": "src/users/courseSummary/CourseSummary.jsx", - "line": 169, - "column": 8, - "index": 4632 + "filePath": "src/containers/ReviewActions/components/SubmissionNavigation.jsx", + "line": 47, + "column": 14, + "index": 1285 + } + ], + "ChevronLeft": [ + { + "filePath": "src/components/FilePreview/BaseRenderers/PDFRenderer.jsx", + "line": 56, + "column": 15, + "index": 1454 }, { - "filePath": "src/users/enrollments/Certificates.jsx", - "line": 210, + "filePath": "src/containers/ReviewActions/components/SubmissionNavigation.jsx", + "line": 31, + "column": 11, + "index": 835 + } + ], + "Form.Group": [ + { + "filePath": "src/components/FilePreview/BaseRenderers/PDFRenderer.jsx", + "line": 60, "column": 8, - "index": 6357 + "index": 1558 }, { - "filePath": "src/users/enrollments/ChangeEnrollmentForm.jsx", - "line": 157, - "column": 8, - "index": 4292 + "filePath": "src/containers/CriterionContainer/CriterionFeedback.jsx", + "line": 50, + "column": 6, + "index": 1258 }, { - "filePath": "src/users/enrollments/CreateEnrollmentForm.jsx", - "line": 117, - "column": 8, - "index": 3214 + "filePath": "src/containers/CriterionContainer/index.jsx", + "line": 23, + "column": 4, + "index": 612 }, { - "filePath": "src/users/entitlements/CreateEntitlementForm.jsx", - "line": 119, - "column": 8, - "index": 3352 + "filePath": "src/containers/Rubric/RubricFeedback.jsx", + "line": 46, + "column": 6, + "index": 1034 + } + ], + "Form.Label": [ + { + "filePath": "src/components/FilePreview/BaseRenderers/PDFRenderer.jsx", + "line": 61, + "column": 10, + "index": 1623 }, { - "filePath": "src/users/entitlements/ExpireEntitlementForm.jsx", - "line": 114, - "column": 8, - "index": 3126 + "filePath": "src/components/FilePreview/BaseRenderers/PDFRenderer.jsx", + "line": 69, + "column": 10, + "index": 1855 }, { - "filePath": "src/users/entitlements/ReissueEntitlementForm.jsx", - "line": 112, - "column": 8, - "index": 3072 + "filePath": "src/containers/CriterionContainer/index.jsx", + "line": 24, + "column": 6, + "index": 631 }, { - "filePath": "src/users/SingleSignOnRecordCard.jsx", - "line": 86, + "filePath": "src/containers/CriterionContainer/ReviewCriterion.jsx", + "line": 19, "column": 10, - "index": 2551 + "index": 573 }, { - "filePath": "src/users/VerifiedName.jsx", - "line": 170, - "column": 10, - "index": 5330 + "filePath": "src/containers/Rubric/RubricFeedback.jsx", + "line": 47, + "column": 8, + "index": 1055 } ], - "ActionRow.Spacer": [ + "Form.Control": [ { - "filePath": "src/Configuration/Provisioning/DashboardHeader.jsx", - "line": 22, - "column": 6, - "index": 566 + "filePath": "src/components/FilePreview/BaseRenderers/PDFRenderer.jsx", + "line": 62, + "column": 10, + "index": 1673 }, { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/CustomCatalog/ProvisioningFormDefineCustomCatalogHeader.jsx", - "line": 22, + "filePath": "src/containers/CriterionContainer/CriterionFeedback.jsx", + "line": 51, "column": 8, - "index": 729 + "index": 1314 }, { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormAccountType.jsx", - "line": 104, - "column": 14, - "index": 3611 - }, + "filePath": "src/containers/Rubric/RubricFeedback.jsx", + "line": 55, + "column": 8, + "index": 1339 + } + ], + "ChevronRight": [ { - "filePath": "src/Configuration/Provisioning/SubsidyDetailView/SubsidyDetailViewContainer.jsx", - "line": 16, - "column": 10, - "index": 602 + "filePath": "src/components/FilePreview/BaseRenderers/PDFRenderer.jsx", + "line": 75, + "column": 15, + "index": 2039 }, { - "filePath": "src/Configuration/Provisioning/SubsidyEditView/SubsidyEditViewContainer.jsx", - "line": 21, - "column": 10, - "index": 655 + "filePath": "src/containers/ReviewActions/components/SubmissionNavigation.jsx", + "line": 46, + "column": 11, + "index": 1257 } ], - "Button": [ - { - "filePath": "src/Configuration/Provisioning/DashboardHeader.jsx", - "line": 23, - "column": 6, - "index": 593 - }, + "Card": [ { - "filePath": "src/Configuration/Provisioning/ErrorPage/ErrorPageButton.jsx", - "line": 7, + "filePath": "src/components/FilePreview/FileCard.jsx", + "line": 14, "column": 2, - "index": 153 + "index": 321 }, { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/CustomCatalog/ProvisioningFormCustomCatalogDropdown.jsx", - "line": 129, - "column": 8, - "index": 4872 + "filePath": "src/containers/ResponseDisplay/index.jsx", + "line": 50, + "column": 12, + "index": 1385 }, { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormSubmissionButton.jsx", - "line": 260, + "filePath": "src/containers/ResponseDisplay/SubmissionFiles.jsx", + "line": 40, "column": 6, - "index": 11417 + "index": 1184 }, { - "filePath": "src/Configuration/Provisioning/SubsidyDetailView/EditButton.jsx", - "line": 17, + "filePath": "src/containers/Rubric/index.jsx", + "line": 31, + "column": 6, + "index": 720 + } + ], + "Collapsible": [ + { + "filePath": "src/components/FilePreview/FileCard.jsx", + "line": 15, "column": 4, - "index": 461 + "index": 370 + } + ], + "OverlayTrigger": [ + { + "filePath": "src/components/FilePreview/FileInfo.jsx", + "line": 18, + "column": 2, + "index": 408 }, { - "filePath": "src/Configuration/Provisioning/SubsidyEditView/CancelButton.jsx", - "line": 29, + "filePath": "src/components/InfoPopover/index.jsx", + "line": 21, + "column": 2, + "index": 439 + } + ], + "Popover": [ + { + "filePath": "src/components/FilePreview/FileInfo.jsx", + "line": 23, "column": 6, - "index": 772 + "index": 500 }, { - "filePath": "src/Configuration/Provisioning/SubsidyEditView/CancelButton.jsx", - "line": 54, - "column": 12, - "index": 1394 + "filePath": "src/components/InfoPopover/index.jsx", + "line": 26, + "column": 6, + "index": 531 + } + ], + "Popover.Content": [ + { + "filePath": "src/components/FilePreview/FileInfo.jsx", + "line": 24, + "column": 8, + "index": 569 }, { - "filePath": "src/FeatureBasedEnrollments/FeatureBasedEnrollmentIndexPage.jsx", - "line": 101, - "column": 10, - "index": 3357 + "filePath": "src/components/FilePreview/FileInfo.test.jsx", + "line": 22, + "column": 45, + "index": 718 }, { - "filePath": "src/ProgramEnrollments/LinkProgramEnrollments.jsx", - "line": 76, - "column": 10, - "index": 2374 + "filePath": "src/components/InfoPopover/index.jsx", + "line": 27, + "column": 8, + "index": 600 + } + ], + "InfoOutline": [ + { + "filePath": "src/components/FilePreview/FileInfo.jsx", + "line": 32, + "column": 17, + "index": 737 }, { - "filePath": "src/ProgramEnrollments/ProgramInspector/ProgramInspector.jsx", - "line": 157, + "filePath": "src/components/InfoPopover/index.jsx", + "line": 34, + "column": 11, + "index": 767 + } + ], + "Badge": [ + { + "filePath": "src/components/StatusBadge.jsx", + "line": 33, + "column": 4, + "index": 872 + } + ], + "Form.RadioSet": [ + { + "filePath": "src/containers/CriterionContainer/RadioCriterion.jsx", + "line": 36, + "column": 6, + "index": 750 + } + ], + "Form.Radio": [ + { + "filePath": "src/containers/CriterionContainer/RadioCriterion.jsx", + "line": 38, "column": 10, - "index": 5137 - }, + "index": 850 + } + ], + "FormControlFeedback": [ { - "filePath": "src/userMessages/Alert.jsx", - "line": 49, - "column": 22, - "index": 1254 - }, + "filePath": "src/containers/CriterionContainer/ReviewCriterion.jsx", + "line": 20, + "column": 10, + "index": 675 + } + ], + "Hyperlink": [ { - "filePath": "src/users/account-actions/CancelRetirement.jsx", - "line": 48, - "column": 6, - "index": 1414 + "filePath": "src/containers/ListView/EmptySubmission.jsx", + "line": 20, + "column": 4, + "index": 608 }, { - "filePath": "src/users/account-actions/CancelRetirement.jsx", - "line": 80, - "column": 18, - "index": 2381 + "filePath": "src/containers/ListView/ListError.jsx", + "line": 40, + "column": 12, + "index": 921 }, { - "filePath": "src/users/account-actions/PasswordHistory.jsx", - "line": 48, - "column": 8, - "index": 1182 + "filePath": "src/containers/ListView/ListViewBreadcrumb.jsx", + "line": 19, + "column": 4, + "index": 554 }, { - "filePath": "src/users/account-actions/ResetPassword.jsx", - "line": 51, + "filePath": "src/containers/ListView/ListViewBreadcrumb.jsx", + "line": 25, "column": 6, - "index": 1503 + "index": 854 }, { - "filePath": "src/users/account-actions/ResetPassword.jsx", - "line": 82, - "column": 16, - "index": 2435 - }, + "filePath": "src/containers/NotificationsBanner/index.jsx", + "line": 21, + "column": 12, + "index": 710 + } + ], + "Container": [ { - "filePath": "src/users/account-actions/RetireUser.jsx", - "line": 61, + "filePath": "src/containers/ListView/index.jsx", + "line": 34, "column": 6, - "index": 1910 - }, + "index": 911 + } + ], + "ArrowBack": [ { - "filePath": "src/users/account-actions/RetireUser.jsx", - "line": 94, - "column": 16, - "index": 2879 - }, + "filePath": "src/containers/ListView/ListViewBreadcrumb.jsx", + "line": 20, + "column": 17, + "index": 642 + } + ], + "Launch": [ { - "filePath": "src/users/account-actions/TogglePasswordStatus.jsx", - "line": 28, - "column": 6, - "index": 734 - }, + "filePath": "src/containers/ListView/ListViewBreadcrumb.jsx", + "line": 26, + "column": 19, + "index": 957 + } + ], + "DataTable": [ { - "filePath": "src/users/account-actions/TogglePasswordStatus.jsx", - "line": 70, - "column": 12, - "index": 2341 + "filePath": "src/containers/ListView/SubmissionsTable.jsx", + "line": 76, + "column": 8, + "index": 2142 }, { - "filePath": "src/users/enrollments/Certificates.jsx", - "line": 159, - "column": 24, - "index": 4984 - }, + "filePath": "src/containers/ResponseDisplay/SubmissionFiles.jsx", + "line": 55, + "column": 18, + "index": 1897 + } + ], + "DataTable.TableControlBar": [ { - "filePath": "src/users/enrollments/Certificates.jsx", - "line": 169, - "column": 24, - "index": 5382 - }, + "filePath": "src/containers/ListView/SubmissionsTable.jsx", + "line": 121, + "column": 10, + "index": 3701 + } + ], + "DataTable.Table": [ { - "filePath": "src/users/enrollments/ChangeEnrollmentForm.jsx", - "line": 166, - "column": 14, - "index": 4563 + "filePath": "src/containers/ListView/SubmissionsTable.jsx", + "line": 122, + "column": 10, + "index": 3741 }, { - "filePath": "src/users/enrollments/CreateEnrollmentForm.jsx", - "line": 126, - "column": 14, - "index": 3485 - }, + "filePath": "src/containers/ResponseDisplay/SubmissionFiles.jsx", + "line": 79, + "column": 20, + "index": 2825 + } + ], + "DataTable.TableFooter": [ { - "filePath": "src/users/enrollments/Enrollments.jsx", - "line": 272, - "column": 8, - "index": 8892 - }, + "filePath": "src/containers/ListView/SubmissionsTable.jsx", + "line": 123, + "column": 10, + "index": 3771 + } + ], + "PageBanner": [ { - "filePath": "src/users/entitlements/CreateEntitlementForm.jsx", - "line": 128, - "column": 14, - "index": 3624 - }, + "filePath": "src/containers/NotificationsBanner/index.jsx", + "line": 10, + "column": 2, + "index": 284 + } + ], + "StatefulButton": [ { - "filePath": "src/users/entitlements/Entitlements.jsx", - "line": 250, - "column": 8, - "index": 7917 + "filePath": "src/containers/ResponseDisplay/FileDownload.jsx", + "line": 25, + "column": 2, + "index": 677 }, { - "filePath": "src/users/entitlements/ExpireEntitlementForm.jsx", - "line": 123, - "column": 14, - "index": 3398 - }, + "filePath": "src/containers/Rubric/index.jsx", + "line": 41, + "column": 12, + "index": 1132 + } + ], + "Card.Section": [ { - "filePath": "src/users/entitlements/ReissueEntitlementForm.jsx", - "line": 121, + "filePath": "src/containers/ResponseDisplay/index.jsx", + "line": 51, "column": 14, - "index": 3344 - }, - { - "filePath": "src/users/LearnerCredentials.jsx", - "line": 26, - "column": 10, - "index": 813 + "index": 1418 }, { - "filePath": "src/users/LearnerCredentials.jsx", - "line": 52, + "filePath": "src/containers/Rubric/index.jsx", + "line": 32, "column": 8, - "index": 1447 - }, + "index": 767 + } + ], + "Collapsible.Advanced": [ { - "filePath": "src/users/LearnerRecords.jsx", - "line": 73, - "column": 18, - "index": 2311 - }, + "filePath": "src/containers/ResponseDisplay/SubmissionFiles.jsx", + "line": 43, + "column": 12, + "index": 1271 + } + ], + "Collapsible.Trigger": [ { - "filePath": "src/users/SingleSignOnRecordCard.jsx", - "line": 115, + "filePath": "src/containers/ResponseDisplay/SubmissionFiles.jsx", + "line": 44, "column": 14, - "index": 3496 - }, + "index": 1320 + } + ], + "Collapsible.Visible": [ { - "filePath": "src/users/UserSearch.jsx", - "line": 22, - "column": 8, - "index": 679 + "filePath": "src/containers/ResponseDisplay/SubmissionFiles.jsx", + "line": 46, + "column": 16, + "index": 1468 }, { - "filePath": "src/users/VerifiedName.jsx", - "line": 55, - "column": 10, - "index": 2095 + "filePath": "src/containers/ResponseDisplay/SubmissionFiles.jsx", + "line": 49, + "column": 16, + "index": 1603 } ], - "Add": [ + "ArrowDropDown": [ { - "filePath": "src/Configuration/Provisioning/DashboardHeader.jsx", - "line": 26, - "column": 20, - "index": 677 + "filePath": "src/containers/ResponseDisplay/SubmissionFiles.jsx", + "line": 47, + "column": 29, + "index": 1530 } ], - "Toast": [ + "ArrowDropUp": [ { - "filePath": "src/Configuration/Provisioning/DashboardToast.jsx", - "line": 16, - "column": 4, - "index": 495 + "filePath": "src/containers/ResponseDisplay/SubmissionFiles.jsx", + "line": 50, + "column": 29, + "index": 1663 } ], - "Image": [ + "Collapsible.Body": [ { - "filePath": "src/Configuration/Provisioning/ErrorPage/ErrorPageImage.jsx", - "line": 5, - "column": 2, - "index": 131 + "filePath": "src/containers/ResponseDisplay/SubmissionFiles.jsx", + "line": 53, + "column": 14, + "index": 1769 } ], - "Form.AutosuggestOption": [ - { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/CustomCatalog/ProvisioningFormCustomCatalogDropdown.jsx", - "line": 66, - "column": 8, - "index": 2609 - }, - { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/CustomCatalog/ProvisioningFormCustomCatalogDropdown.jsx", - "line": 78, - "column": 10, - "index": 3169 - }, - { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/CustomCatalog/ProvisioningFormCustomCatalogDropdown.jsx", - "line": 91, - "column": 6, - "index": 3514 - }, + "Card.Footer": [ { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormCustomerDropdown.jsx", - "line": 67, - "column": 10, - "index": 2708 + "filePath": "src/containers/ResponseDisplay/SubmissionFiles.jsx", + "line": 84, + "column": 12, + "index": 2981 } ], - "Form.Group": [ + "WarningFilled": [ { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/CustomCatalog/ProvisioningFormCustomCatalogDropdown.jsx", - "line": 105, - "column": 8, - "index": 3936 - }, + "filePath": "src/containers/ResponseDisplay/SubmissionFiles.jsx", + "line": 88, + "column": 71, + "index": 3227 + } + ], + "FullscreenModal": [ { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/PolicyForm/ProvisioningFormAccountDetails.jsx", - "line": 78, - "column": 6, - "index": 3295 - }, + "filePath": "src/containers/ReviewModal/index.jsx", + "line": 31, + "column": 4, + "index": 830 + } + ], + "Row": [ { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/PolicyForm/ProvisioningFormAccountDetails.jsx", - "line": 107, - "column": 8, - "index": 4191 - }, + "filePath": "src/containers/ReviewModal/ReviewContent.jsx", + "line": 22, + "column": 4, + "index": 625 + } + ], + "Col": [ { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/PolicyForm/ProvisioningFormCatalog.jsx", - "line": 69, + "filePath": "src/containers/ReviewModal/ReviewContent.jsx", + "line": 23, "column": 6, - "index": 2387 - }, + "index": 665 + } + ] + } + }, + { + "version": "22.9.0", + "name": "@edx/frontend-app-payment", + "repository": { + "type": "git", + "url": "git+https://github.com/openedx/frontend-app-payment.git" + }, + "folderName": "frontend-app-payment", + "usages": { + "Alert": [ { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/PolicyForm/ProvisioningFormDescription.jsx", - "line": 44, - "column": 6, - "index": 1478 - }, + "filePath": "src/feedback/AlertMessage.jsx", + "line": 46, + "column": 4, + "index": 1507 + } + ], + "Hyperlink": [ { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/PolicyForm/ProvisioningFormPerLearnerCap.jsx", - "line": 45, - "column": 6, - "index": 1615 + "filePath": "src/feedback/FallbackErrorMessage.jsx", + "line": 13, + "column": 8, + "index": 491 }, { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/PolicyForm/ProvisioningFormPerLearnerCapAmount.jsx", - "line": 48, - "column": 6, - "index": 2128 + "filePath": "src/payment/AlertCodeMessages.jsx", + "line": 22, + "column": 10, + "index": 1135 }, { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/PolicyForm/ProvisioningFormPolicyType.jsx", - "line": 63, - "column": 6, - "index": 2125 + "filePath": "src/payment/checkout/FreeCheckoutOrderButton.jsx", + "line": 8, + "column": 2, + "index": 279 }, { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormAccountType.jsx", - "line": 80, - "column": 6, - "index": 2575 + "filePath": "src/payment/EmptyCartMessage.jsx", + "line": 23, + "column": 14, + "index": 972 }, { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormCustomer.jsx", - "line": 43, - "column": 6, - "index": 1756 + "filePath": "src/payment/EmptyCartMessage.jsx", + "line": 32, + "column": 14, + "index": 1351 }, { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormCustomer.jsx", - "line": 46, - "column": 6, - "index": 1864 + "filePath": "src/subscription/alerts/ErrorMessages.jsx", + "line": 26, + "column": 8, + "index": 1063 }, { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormCustomerDropdown.jsx", - "line": 55, + "filePath": "src/subscription/confirmation-modal/ConfirmationModal.jsx", + "line": 41, "column": 4, - "index": 2270 - }, - { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormInternalOnly.jsx", - "line": 32, - "column": 6, - "index": 1124 + "index": 1181 }, { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormSubsidy.jsx", - "line": 38, - "column": 6, - "index": 1320 - }, + "filePath": "src/subscription/details/legal/SubscriptionLegal.jsx", + "line": 17, + "column": 4, + "index": 463 + } + ], + "Collapsible": [ { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormTerm.jsx", - "line": 72, - "column": 6, - "index": 2192 - }, + "filePath": "src/payment/cart/Cart.jsx", + "line": 106, + "column": 12, + "index": 3329 + } + ], + "Form.Group": [ { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormTitle.jsx", - "line": 44, - "column": 6, - "index": 1499 + "filePath": "src/payment/cart/CouponForm.jsx", + "line": 47, + "column": 8, + "index": 1343 } ], - "Form.Autosuggest": [ + "Form.Control": [ { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/CustomCatalog/ProvisioningFormCustomCatalogDropdown.jsx", - "line": 108, + "filePath": "src/payment/cart/CouponForm.jsx", + "line": 55, "column": 10, - "index": 3997 + "index": 1693 }, { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormCustomerDropdown.jsx", - "line": 56, - "column": 6, - "index": 2289 + "filePath": "src/payment/cart/UpdateQuantityForm.jsx", + "line": 37, + "column": 10, + "index": 1229 } ], - "Warning": [ + "Button": [ { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/CustomCatalog/ProvisioningFormDefineCustomCatalogHeader.jsx", - "line": 34, - "column": 23, - "index": 1199 + "filePath": "src/payment/cart/CouponForm.jsx", + "line": 57, + "column": 8, + "index": 1807 + }, + { + "filePath": "src/payment/cart/CouponForm.jsx", + "line": 124, + "column": 8, + "index": 3751 + }, + { + "filePath": "src/subscription/confirmation-modal/ConfirmationModal.jsx", + "line": 83, + "column": 10, + "index": 2483 } ], - "Col": [ + "StatefulButton": [ { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/CustomCatalog/ProvisioningFormDefineCustomCatalogHeader.jsx", - "line": 35, - "column": 12, - "index": 1252 + "filePath": "src/payment/cart/UpdateQuantityForm.jsx", + "line": 65, + "column": 6, + "index": 2031 }, { - "filePath": "src/FeatureBasedEnrollments/FeatureBasedEnrollment.jsx", - "line": 46, - "column": 18, - "index": 1599 + "filePath": "src/payment/checkout/payment-form/PlaceOrderButton.jsx", + "line": 22, + "column": 10, + "index": 741 }, { - "filePath": "src/FeatureBasedEnrollments/FeatureBasedEnrollment.jsx", - "line": 49, - "column": 18, - "index": 1758 - }, + "filePath": "src/subscription/checkout/submit-button/SubscriptionSubmitButton.jsx", + "line": 29, + "column": 10, + "index": 1069 + } + ], + "Skeleton": [ { - "filePath": "src/ProgramEnrollments/ProgramInspector/ProgramInspector.jsx", - "line": 168, - "column": 16, - "index": 5525 + "filePath": "src/subscription/checkout/skeleton/CheckoutSkeleton.jsx", + "line": 6, + "column": 4, + "index": 115 }, { - "filePath": "src/ProgramEnrollments/ProgramInspector/ProgramInspector.jsx", - "line": 171, - "column": 16, - "index": 5619 + "filePath": "src/subscription/checkout/skeleton/CheckoutSkeleton.jsx", + "line": 9, + "column": 8, + "index": 238 + }, + { + "filePath": "src/subscription/checkout/skeleton/CheckoutSkeleton.jsx", + "line": 12, + "column": 8, + "index": 350 }, { - "filePath": "src/ProgramEnrollments/ProgramInspector/ProgramInspector.jsx", - "line": 178, - "column": 16, - "index": 5876 + "filePath": "src/subscription/checkout/skeleton/CheckoutSkeleton.jsx", + "line": 15, + "column": 4, + "index": 436 }, { - "filePath": "src/ProgramEnrollments/ProgramInspector/ProgramInspector.jsx", - "line": 181, - "column": 16, - "index": 5967 + "filePath": "src/subscription/checkout/skeleton/CheckoutSkeleton.jsx", + "line": 18, + "column": 8, + "index": 555 }, { - "filePath": "src/users/licenses/LicenseCard.jsx", - "line": 66, + "filePath": "src/subscription/checkout/skeleton/CheckoutSkeleton.jsx", + "line": 23, "column": 12, - "index": 1731 + "index": 715 }, { - "filePath": "src/users/licenses/LicenseCard.jsx", - "line": 70, + "filePath": "src/subscription/checkout/skeleton/CheckoutSkeleton.jsx", + "line": 26, "column": 12, - "index": 1922 + "index": 816 }, { - "filePath": "src/users/licenses/Licenses.jsx", - "line": 36, - "column": 14, - "index": 1051 + "filePath": "src/subscription/checkout/skeleton/CheckoutSkeleton.jsx", + "line": 33, + "column": 8, + "index": 1004 }, { - "filePath": "src/users/SingleSignOnRecordCard.jsx", - "line": 105, - "column": 12, - "index": 3092 + "filePath": "src/subscription/checkout/skeleton/CheckoutSkeleton.jsx", + "line": 36, + "column": 4, + "index": 1067 }, { - "filePath": "src/users/SingleSignOnRecordCard.jsx", - "line": 108, - "column": 12, - "index": 3234 + "filePath": "src/subscription/details/skeleton/SubscriptionDetailsSkeleton.jsx", + "line": 14, + "column": 4, + "index": 495 }, { - "filePath": "src/users/SingleSignOnRecords.jsx", - "line": 45, - "column": 14, - "index": 1675 - } - ], - "Form.Control": [ - { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/PolicyForm/ProvisioningFormAccountDetails.jsx", - "line": 83, - "column": 8, - "index": 3421 + "filePath": "src/subscription/details/skeleton/SubscriptionDetailsSkeleton.jsx", + "line": 16, + "column": 6, + "index": 603 }, { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/PolicyForm/ProvisioningFormAccountDetails.jsx", - "line": 110, - "column": 10, - "index": 4252 + "filePath": "src/subscription/details/skeleton/SubscriptionDetailsSkeleton.jsx", + "line": 17, + "column": 6, + "index": 681 }, { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/PolicyForm/ProvisioningFormDescription.jsx", - "line": 46, - "column": 8, - "index": 1583 + "filePath": "src/subscription/details/skeleton/SubscriptionDetailsSkeleton.jsx", + "line": 19, + "column": 4, + "index": 763 }, { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/PolicyForm/ProvisioningFormPerLearnerCapAmount.jsx", - "line": 51, - "column": 8, - "index": 2183 + "filePath": "src/subscription/details/skeleton/SubscriptionDetailsSkeleton.jsx", + "line": 20, + "column": 4, + "index": 792 }, { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormCustomer.jsx", - "line": 51, + "filePath": "src/subscription/details/skeleton/SubscriptionDetailsSkeleton.jsx", + "line": 24, "column": 8, - "index": 2027 + "index": 923 }, { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormTerm.jsx", - "line": 76, + "filePath": "src/subscription/details/skeleton/SubscriptionDetailsSkeleton.jsx", + "line": 25, "column": 8, - "index": 2317 + "index": 973 }, { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormTerm.jsx", - "line": 84, + "filePath": "src/subscription/details/skeleton/SubscriptionDetailsSkeleton.jsx", + "line": 28, "column": 8, - "index": 2578 + "index": 1108 }, { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormTitle.jsx", - "line": 48, - "column": 8, - "index": 1604 - } - ], - "Form.Label": [ - { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/PolicyForm/ProvisioningFormCatalog.jsx", - "line": 70, + "filePath": "src/subscription/details/skeleton/SubscriptionDetailsSkeleton.jsx", + "line": 29, "column": 8, - "index": 2427 + "index": 1160 }, { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/PolicyForm/ProvisioningFormDescription.jsx", - "line": 45, - "column": 8, - "index": 1499 + "filePath": "src/subscription/details/skeleton/SubscriptionDetailsSkeleton.jsx", + "line": 32, + "column": 4, + "index": 1232 }, { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/PolicyForm/ProvisioningFormPerLearnerCap.jsx", - "line": 48, - "column": 8, - "index": 1670 + "filePath": "src/subscription/details/skeleton/SubscriptionDetailsSkeleton.jsx", + "line": 34, + "column": 6, + "index": 1327 }, { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/PolicyForm/ProvisioningFormPolicyType.jsx", - "line": 66, - "column": 8, - "index": 2180 + "filePath": "src/subscription/details/skeleton/SubscriptionDetailsSkeleton.jsx", + "line": 35, + "column": 6, + "index": 1392 }, { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormAccountType.jsx", - "line": 81, - "column": 8, - "index": 2615 + "filePath": "src/subscription/details/skeleton/SubscriptionDetailsSkeleton.jsx", + "line": 38, + "column": 6, + "index": 1533 }, { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormSubsidy.jsx", + "filePath": "src/subscription/details/skeleton/SubscriptionDetailsSkeleton.jsx", "line": 39, - "column": 8, - "index": 1360 - } - ], - "Form.RadioSet": [ - { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/PolicyForm/ProvisioningFormCatalog.jsx", - "line": 88, - "column": 14, - "index": 3244 + "column": 6, + "index": 1598 }, { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/PolicyForm/ProvisioningFormPerLearnerCap.jsx", - "line": 49, - "column": 8, - "index": 1746 + "filePath": "src/subscription/details/skeleton/SubscriptionDetailsSkeleton.jsx", + "line": 41, + "column": 4, + "index": 1673 }, { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/PolicyForm/ProvisioningFormPolicyType.jsx", - "line": 75, - "column": 8, - "index": 2648 + "filePath": "src/subscription/details/skeleton/SubscriptionDetailsSkeleton.jsx", + "line": 42, + "column": 4, + "index": 1702 }, { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormAccountType.jsx", - "line": 83, - "column": 8, - "index": 2731 + "filePath": "src/subscription/details/skeleton/SubscriptionDetailsSkeleton.jsx", + "line": 43, + "column": 4, + "index": 1731 }, { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormSubsidy.jsx", - "line": 40, - "column": 8, - "index": 1437 + "filePath": "src/subscription/details/skeleton/SubscriptionDetailsSkeleton.jsx", + "line": 44, + "column": 4, + "index": 1778 } ], - "Form.Radio": [ + "Icon": [ { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/PolicyForm/ProvisioningFormCatalog.jsx", - "line": 95, - "column": 20, - "index": 3492 - }, + "filePath": "src/subscription/checkout/submit-button/SubscriptionSubmitButton.jsx", + "line": 58, + "column": 16, + "index": 2174 + } + ], + "CheckIcon": [ { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/PolicyForm/ProvisioningFormPerLearnerCap.jsx", - "line": 56, - "column": 12, - "index": 2006 - }, + "filePath": "src/subscription/checkout/submit-button/SubscriptionSubmitButton.jsx", + "line": 58, + "column": 27, + "index": 2185 + } + ], + "ModalDialog": [ { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/PolicyForm/ProvisioningFormPolicyType.jsx", - "line": 83, - "column": 14, - "index": 2915 + "filePath": "src/subscription/confirmation-modal/ConfirmationModal.jsx", + "line": 51, + "column": 4, + "index": 1408 }, { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormAccountType.jsx", - "line": 105, - "column": 14, - "index": 3646 - }, + "filePath": "src/subscription/secure-3d/secure-3d-modal/Secure3dModal.jsx", + "line": 132, + "column": 4, + "index": 4031 + } + ], + "ModalDialog.Header": [ { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormSubsidy.jsx", - "line": 47, - "column": 12, - "index": 1636 + "filePath": "src/subscription/confirmation-modal/ConfirmationModal.jsx", + "line": 59, + "column": 6, + "index": 1628 } ], - "Spinner": [ + "ModalDialog.Title": [ { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormAccountType.jsx", - "line": 93, - "column": 16, - "index": 3200 + "filePath": "src/subscription/confirmation-modal/ConfirmationModal.jsx", + "line": 60, + "column": 8, + "index": 1657 } ], - "Alert": [ + "ModalDialog.Body": [ { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormAlert.jsx", - "line": 9, + "filePath": "src/subscription/confirmation-modal/ConfirmationModal.jsx", + "line": 68, "column": 6, - "index": 280 - }, + "index": 1945 + } + ], + "ModalDialog.Footer": [ { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormInstructionAlert.jsx", - "line": 21, + "filePath": "src/subscription/confirmation-modal/ConfirmationModal.jsx", + "line": 81, "column": 6, - "index": 610 - }, + "index": 2432 + } + ], + "ActionRow": [ { - "filePath": "src/ProgramEnrollments/ProgramInspector/ProgramInspector.jsx", - "line": 113, + "filePath": "src/subscription/confirmation-modal/ConfirmationModal.jsx", + "line": 82, "column": 8, - "index": 3466 - }, - { - "filePath": "src/ProgramEnrollments/ProgramInspector/ProgramInspector.jsx", - "line": 202, - "column": 16, - "index": 6754 - }, - { - "filePath": "src/users/account-actions/CancelRetirement.jsx", - "line": 31, - "column": 19, - "index": 924 - }, + "index": 2461 + } + ], + "ArrowForward": [ { - "filePath": "src/users/account-actions/CancelRetirement.jsx", - "line": 34, - "column": 10, - "index": 1005 - }, + "filePath": "src/subscription/confirmation-modal/ConfirmationModal.jsx", + "line": 86, + "column": 23, + "index": 2561 + } + ], + "Badge": [ { - "filePath": "src/users/account-actions/ResetPassword.jsx", - "line": 31, - "column": 19, - "index": 886 - }, + "filePath": "src/subscription/details/content/SubscriptionContent.jsx", + "line": 21, + "column": 8, + "index": 724 + } + ] + } + }, + { + "version": "22.9.0", + "name": "@edx/frontend-app-profile", + "repository": { + "type": "git", + "url": "git+https://github.com/openedx/frontend-app-profile.git" + }, + "folderName": "frontend-app-profile", + "usages": { + "Alert": [ { - "filePath": "src/users/account-actions/ResetPassword.jsx", - "line": 34, - "column": 10, - "index": 967 + "filePath": "src/profile/AgeMessage.jsx", + "line": 8, + "column": 2, + "index": 273 }, { - "filePath": "src/users/account-actions/RetireUser.jsx", - "line": 36, - "column": 19, - "index": 994 + "filePath": "src/profile/forms/SocialLinks.jsx", + "line": 272, + "column": 22, + "index": 8108 }, { - "filePath": "src/users/account-actions/RetireUser.jsx", - "line": 39, + "filePath": "src/profile/ProfilePage.jsx", + "line": 146, "column": 10, - "index": 1075 - }, + "index": 4397 + } + ], + "Alert.Heading": [ { - "filePath": "src/users/account-actions/TogglePasswordStatus.jsx", - "line": 49, - "column": 12, - "index": 1613 - }, + "filePath": "src/profile/AgeMessage.jsx", + "line": 13, + "column": 4, + "index": 340 + } + ], + "Alert.Link": [ { - "filePath": "src/users/enrollments/Certificates.jsx", - "line": 119, - "column": 20, - "index": 3799 - }, + "filePath": "src/profile/AgeMessage.jsx", + "line": 29, + "column": 4, + "index": 926 + } + ], + "Form.Group": [ { - "filePath": "src/users/EnterpriseAssociations.jsx", - "line": 40, + "filePath": "src/profile/forms/Bio.jsx", + "line": 59, "column": 16, - "index": 1477 + "index": 1592 }, { - "filePath": "src/users/LearnerCredentials.jsx", - "line": 16, - "column": 6, - "index": 518 + "filePath": "src/profile/forms/Country.jsx", + "line": 70, + "column": 16, + "index": 1684 }, { - "filePath": "src/users/LearnerRecords.jsx", - "line": 53, - "column": 6, - "index": 1474 + "filePath": "src/profile/forms/Education.jsx", + "line": 66, + "column": 16, + "index": 1745 }, { - "filePath": "src/users/LearnerRecords.jsx", + "filePath": "src/profile/forms/PreferredLanguage.jsx", "line": 80, - "column": 18, - "index": 2631 + "column": 16, + "index": 2168 } ], - "Info": [ + "Hyperlink": [ { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormAlert.jsx", - "line": 11, + "filePath": "src/profile/forms/Certificates.jsx", + "line": 106, "column": 14, - "index": 326 + "index": 3400 + }, + { + "filePath": "src/profile/ProfilePage.jsx", + "line": 116, + "column": 6, + "index": 3512 } ], - "Alert.Heading": [ + "Button": [ { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormAlert.jsx", + "filePath": "src/profile/forms/elements/EditButton.jsx", "line": 13, + "column": 2, + "index": 421 + }, + { + "filePath": "src/profile/forms/elements/FormControls.jsx", + "line": 54, "column": 8, - "index": 348 + "index": 2176 }, { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormInstructionAlert.jsx", - "line": 29, + "filePath": "src/profile/forms/ProfileAvatar.jsx", + "line": 59, "column": 8, - "index": 771 + "index": 1451 } ], - "WarningFilled": [ + "StatefulButton": [ { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormHelpText.jsx", - "line": 12, - "column": 66, - "index": 376 + "filePath": "src/profile/forms/elements/FormControls.jsx", + "line": 32, + "column": 8, + "index": 1144 } ], - "useToggle": [ - { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormInstructionAlert.jsx", - "line": 8, - "column": 28, - "index": 366 - }, + "TransitionReplace": [ { - "filePath": "src/Configuration/Provisioning/SubsidyEditView/CancelButton.jsx", - "line": 13, - "column": 32, - "index": 374 + "filePath": "src/profile/forms/elements/SwitchContent.jsx", + "line": 44, + "column": 4, + "index": 1397 } ], - "Edit": [ + "Dropdown": [ { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormInstructionAlert.jsx", - "line": 23, - "column": 14, - "index": 654 + "filePath": "src/profile/forms/ProfileAvatar.jsx", + "line": 75, + "column": 6, + "index": 1831 } ], - "Form.Checkbox": [ + "Dropdown.Toggle": [ { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormInternalOnly.jsx", - "line": 35, + "filePath": "src/profile/forms/ProfileAvatar.jsx", + "line": 76, "column": 8, - "index": 1179 - } - ], - "StatefulButton": [ - { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormSubmissionButton.jsx", - "line": 254, - "column": 6, - "index": 11220 - }, - { - "filePath": "src/Configuration/Provisioning/SubsidyEditView/SaveEditsButton.jsx", - "line": 248, - "column": 4, - "index": 11150 + "index": 1850 } ], - "IconButtonWithTooltip": [ + "Dropdown.Menu": [ { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormTerm.jsx", - "line": 61, + "filePath": "src/profile/forms/ProfileAvatar.jsx", + "line": 79, "column": 8, - "index": 1908 - }, - { - "filePath": "src/Configuration/Provisioning/SubsidyDetailView/TermDetail.jsx", - "line": 18, - "column": 10, - "index": 560 + "index": 1983 } ], - "InfoOutline": [ + "Dropdown.Item": [ { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormTerm.jsx", - "line": 62, - "column": 15, - "index": 1946 + "filePath": "src/profile/forms/ProfileAvatar.jsx", + "line": 80, + "column": 10, + "index": 2009 }, { - "filePath": "src/Configuration/Provisioning/SubsidyDetailView/TermDetail.jsx", - "line": 19, - "column": 17, - "index": 600 + "filePath": "src/profile/forms/ProfileAvatar.jsx", + "line": 87, + "column": 10, + "index": 2297 } ], - "Check": [ + "Icon": [ { - "filePath": "src/Configuration/Provisioning/SubsidyDetailView/InternalOnlyDetail.jsx", - "line": 16, - "column": 21, - "index": 500 + "filePath": "src/profile/UsernameDescription.jsx", + "line": 9, + "column": 4, + "index": 340 } ], - "ModalDialog": [ + "VisibilityOff": [ { - "filePath": "src/Configuration/Provisioning/SubsidyEditView/CancelButton.jsx", - "line": 32, - "column": 6, - "index": 884 - }, + "filePath": "src/profile/UsernameDescription.jsx", + "line": 9, + "column": 15, + "index": 351 + } + ] + } + }, + { + "version": "21.13.1", + "name": "@edx/frontend-app-program-console", + "repository": { + "type": "git", + "url": "git+https://github.com/openedx/frontend-app-program-console.git" + }, + "folderName": "frontend-app-program-console", + "usages": { + "Collapsible": [ { - "filePath": "src/users/account-actions/CancelRetirement.jsx", - "line": 55, + "filePath": "src/console/ConsolePage.jsx", + "line": 64, "column": 6, - "index": 1624 + "index": 1811 }, { - "filePath": "src/users/account-actions/PasswordHistory.jsx", - "line": 58, - "column": 6, - "index": 1409 - }, + "filePath": "src/report/reportSection.jsx", + "line": 36, + "column": 8, + "index": 1094 + } + ], + "Alert": [ { - "filePath": "src/users/account-actions/ResetPassword.jsx", - "line": 58, - "column": 6, - "index": 1704 + "filePath": "src/console/ConsolePage.jsx", + "line": 117, + "column": 8, + "index": 3638 }, { - "filePath": "src/users/account-actions/RetireUser.jsx", - "line": 70, - "column": 6, - "index": 2152 + "filePath": "src/console/ConsolePage.jsx", + "line": 133, + "column": 8, + "index": 4227 }, { - "filePath": "src/users/account-actions/TogglePasswordStatus.jsx", - "line": 36, - "column": 6, - "index": 1070 + "filePath": "src/console/ConsolePage.jsx", + "line": 152, + "column": 12, + "index": 4990 }, { - "filePath": "src/users/courseSummary/CourseSummary.jsx", - "line": 146, - "column": 4, - "index": 3981 + "filePath": "src/console/ConsolePage.jsx", + "line": 174, + "column": 20, + "index": 6005 }, { - "filePath": "src/users/enrollments/Certificates.jsx", - "line": 191, + "filePath": "src/report/reportSection.jsx", + "line": 22, "column": 4, - "index": 5876 - }, + "index": 699 + } + ], + "SearchField": [ { - "filePath": "src/users/enrollments/ChangeEnrollmentForm.jsx", - "line": 137, - "column": 4, - "index": 3754 - }, + "filePath": "src/console/ConsolePage.jsx", + "line": 146, + "column": 12, + "index": 4754 + } + ], + "Pagination": [ { - "filePath": "src/users/enrollments/CreateEnrollmentForm.jsx", - "line": 97, - "column": 4, - "index": 2672 + "filePath": "src/console/ConsolePage.jsx", + "line": 161, + "column": 12, + "index": 5262 }, { - "filePath": "src/users/entitlements/CreateEntitlementForm.jsx", - "line": 99, - "column": 4, - "index": 2806 - }, + "filePath": "src/console/ConsolePage.jsx", + "line": 199, + "column": 12, + "index": 7118 + } + ] + } + }, + { + "version": "21.13.1", + "name": "edx-frontend-app-publisher", + "repository": "https://github.com/openedx/frontend-app-publisher", + "folderName": "frontend-app-publisher", + "usages": { + "StatefulButton": [ { - "filePath": "src/users/entitlements/ExpireEntitlementForm.jsx", - "line": 94, - "column": 4, - "index": 2585 + "filePath": "src/components/ActionButton/index.jsx", + "line": 8, + "column": 2, + "index": 301 + } + ], + "Icon": [ + { + "filePath": "src/components/Collaborator/index.jsx", + "line": 32, + "column": 8, + "index": 840 }, { - "filePath": "src/users/entitlements/ReissueEntitlementForm.jsx", - "line": 92, - "column": 4, - "index": 2527 + "filePath": "src/components/Collaborator/index.jsx", + "line": 53, + "column": 12, + "index": 1446 }, { - "filePath": "src/users/SingleSignOnRecordCard.jsx", - "line": 66, - "column": 6, - "index": 1918 + "filePath": "src/components/SidePanes/CommentsPane.jsx", + "line": 100, + "column": 24, + "index": 2846 }, { - "filePath": "src/users/VerifiedName.jsx", - "line": 148, - "column": 6, - "index": 4666 + "filePath": "src/components/SidePanes/UsersPane.jsx", + "line": 125, + "column": 13, + "index": 3440 } ], - "ModalDialog.Header": [ - { - "filePath": "src/Configuration/Provisioning/SubsidyEditView/CancelButton.jsx", - "line": 40, - "column": 8, - "index": 1068 - }, + "Alert": [ { - "filePath": "src/users/account-actions/CancelRetirement.jsx", - "line": 62, + "filePath": "src/components/CollaboratorPage/index.jsx", + "line": 56, "column": 8, - "index": 1828 + "index": 1443 }, { - "filePath": "src/users/account-actions/PasswordHistory.jsx", - "line": 65, - "column": 8, - "index": 1614 + "filePath": "src/components/CollaboratorPage/index.jsx", + "line": 93, + "column": 12, + "index": 2376 }, { - "filePath": "src/users/account-actions/ResetPassword.jsx", - "line": 65, - "column": 8, - "index": 1899 + "filePath": "src/components/CollaboratorPage/index.jsx", + "line": 117, + "column": 14, + "index": 3275 }, { - "filePath": "src/users/account-actions/RetireUser.jsx", - "line": 77, + "filePath": "src/components/CreateCoursePage/index.jsx", + "line": 100, "column": 8, - "index": 2333 + "index": 2613 }, { - "filePath": "src/users/account-actions/TogglePasswordStatus.jsx", - "line": 42, - "column": 8, - "index": 1259 + "filePath": "src/components/CreateCoursePage/index.jsx", + "line": 200, + "column": 16, + "index": 5650 }, { - "filePath": "src/users/courseSummary/CourseSummary.jsx", + "filePath": "src/components/CreateCourseRunPage/index.jsx", "line": 156, - "column": 6, - "index": 4183 + "column": 12, + "index": 4819 }, { - "filePath": "src/users/enrollments/Certificates.jsx", - "line": 201, - "column": 6, - "index": 6075 + "filePath": "src/components/CreateCourseRunPage/index.jsx", + "line": 181, + "column": 16, + "index": 5806 }, { - "filePath": "src/users/enrollments/ChangeEnrollmentForm.jsx", - "line": 148, - "column": 6, - "index": 4000 + "filePath": "src/components/EditCoursePage/index.jsx", + "line": 709, + "column": 8, + "index": 24126 }, { - "filePath": "src/users/enrollments/CreateEnrollmentForm.jsx", - "line": 108, - "column": 6, - "index": 2918 + "filePath": "src/components/EditCoursePage/index.jsx", + "line": 825, + "column": 10, + "index": 27542 }, { - "filePath": "src/users/entitlements/CreateEntitlementForm.jsx", - "line": 110, - "column": 6, - "index": 3053 + "filePath": "src/components/EditCoursePage/index.jsx", + "line": 835, + "column": 10, + "index": 27825 }, { - "filePath": "src/users/entitlements/ExpireEntitlementForm.jsx", - "line": 105, - "column": 6, - "index": 2832 + "filePath": "src/components/EditCoursePage/index.jsx", + "line": 885, + "column": 10, + "index": 29675 }, { - "filePath": "src/users/entitlements/ReissueEntitlementForm.jsx", - "line": 103, - "column": 6, - "index": 2776 + "filePath": "src/components/EditCoursePage/index.jsx", + "line": 922, + "column": 12, + "index": 31059 }, { - "filePath": "src/users/SingleSignOnRecordCard.jsx", - "line": 72, - "column": 8, - "index": 2102 + "filePath": "src/components/EditCoursePage/TranscriptLanguage.jsx", + "line": 36, + "column": 10, + "index": 904 }, { - "filePath": "src/users/VerifiedName.jsx", - "line": 157, - "column": 8, - "index": 4888 - } - ], - "ModalDialog.Title": [ - { - "filePath": "src/Configuration/Provisioning/SubsidyEditView/CancelButton.jsx", - "line": 41, - "column": 10, - "index": 1099 + "filePath": "src/components/ImageUpload/index.jsx", + "line": 95, + "column": 12, + "index": 2418 }, { - "filePath": "src/users/account-actions/CancelRetirement.jsx", - "line": 63, - "column": 10, - "index": 1876 + "filePath": "src/components/ImageUpload/index.jsx", + "line": 101, + "column": 12, + "index": 2578 }, { - "filePath": "src/users/account-actions/PasswordHistory.jsx", - "line": 66, + "filePath": "src/components/ListField/index.jsx", + "line": 189, "column": 10, - "index": 1662 + "index": 5144 }, { - "filePath": "src/users/account-actions/ResetPassword.jsx", - "line": 66, - "column": 10, - "index": 1952 + "filePath": "src/components/ReduxFormCreatableSelect/index.jsx", + "line": 84, + "column": 12, + "index": 2089 }, { - "filePath": "src/users/account-actions/RetireUser.jsx", - "line": 78, + "filePath": "src/components/RichEditor/index.jsx", + "line": 77, "column": 10, - "index": 2386 + "index": 2175 }, { - "filePath": "src/users/account-actions/TogglePasswordStatus.jsx", - "line": 43, + "filePath": "src/components/SidePanes/CommentsPane.jsx", + "line": 107, "column": 10, - "index": 1313 + "index": 3212 }, { - "filePath": "src/users/courseSummary/CourseSummary.jsx", - "line": 157, - "column": 8, - "index": 4229 + "filePath": "src/components/SidePanes/CommentsPane.jsx", + "line": 146, + "column": 12, + "index": 4382 }, { - "filePath": "src/users/enrollments/Certificates.jsx", - "line": 202, - "column": 8, - "index": 6121 + "filePath": "src/components/SidePanes/UsersPane.jsx", + "line": 141, + "column": 13, + "index": 4044 }, { - "filePath": "src/users/enrollments/ChangeEnrollmentForm.jsx", - "line": 149, + "filePath": "src/components/StafferPage/index.jsx", + "line": 114, "column": 8, - "index": 4046 + "index": 3019 }, { - "filePath": "src/users/enrollments/CreateEnrollmentForm.jsx", - "line": 109, - "column": 8, - "index": 2964 + "filePath": "src/components/StafferPage/index.jsx", + "line": 164, + "column": 12, + "index": 4500 }, { - "filePath": "src/users/entitlements/CreateEntitlementForm.jsx", - "line": 111, - "column": 8, - "index": 3099 + "filePath": "src/components/StafferPage/index.jsx", + "line": 193, + "column": 16, + "index": 5565 }, { - "filePath": "src/users/entitlements/ExpireEntitlementForm.jsx", - "line": 106, - "column": 8, - "index": 2878 + "filePath": "src/components/TableComponent/index.jsx", + "line": 129, + "column": 6, + "index": 4043 + } + ], + "Alert.Heading": [ + { + "filePath": "src/components/CollaboratorPage/index.jsx", + "line": 60, + "column": 10, + "index": 1518 }, { - "filePath": "src/users/entitlements/ReissueEntitlementForm.jsx", + "filePath": "src/components/CreateCoursePage/index.jsx", "line": 104, - "column": 8, - "index": 2822 + "column": 10, + "index": 2688 }, { - "filePath": "src/users/SingleSignOnRecordCard.jsx", - "line": 73, + "filePath": "src/components/EditCoursePage/index.jsx", + "line": 715, "column": 10, - "index": 2150 + "index": 24241 }, { - "filePath": "src/users/VerifiedName.jsx", - "line": 158, + "filePath": "src/components/StafferPage/index.jsx", + "line": 120, "column": 10, - "index": 4936 + "index": 3134 } ], - "ModalDialog.Body": [ - { - "filePath": "src/Configuration/Provisioning/SubsidyEditView/CancelButton.jsx", - "line": 46, - "column": 8, - "index": 1222 - }, - { - "filePath": "src/users/account-actions/CancelRetirement.jsx", - "line": 67, - "column": 8, - "index": 2019 - }, - { - "filePath": "src/users/account-actions/PasswordHistory.jsx", - "line": 70, - "column": 8, - "index": 1810 - }, - { - "filePath": "src/users/account-actions/ResetPassword.jsx", - "line": 70, - "column": 8, - "index": 2092 - }, - { - "filePath": "src/users/account-actions/RetireUser.jsx", - "line": 82, - "column": 8, - "index": 2536 - }, - { - "filePath": "src/users/account-actions/TogglePasswordStatus.jsx", - "line": 47, - "column": 8, - "index": 1549 - }, - { - "filePath": "src/users/courseSummary/CourseSummary.jsx", - "line": 165, - "column": 6, - "index": 4501 - }, - { - "filePath": "src/users/enrollments/Certificates.jsx", - "line": 206, - "column": 6, - "index": 6250 - }, + "Collapsible": [ { - "filePath": "src/users/enrollments/ChangeEnrollmentForm.jsx", - "line": 153, - "column": 6, - "index": 4181 - }, + "filePath": "src/components/Collapsible/index.jsx", + "line": 8, + "column": 32, + "index": 345 + } + ], + "Collapsible.Advanced": [ { - "filePath": "src/users/enrollments/CreateEnrollmentForm.jsx", - "line": 113, - "column": 6, - "index": 3103 - }, + "filePath": "src/components/Collapsible/index.jsx", + "line": 32, + "column": 2, + "index": 775 + } + ], + "Collapsible.Trigger": [ { - "filePath": "src/users/entitlements/CreateEntitlementForm.jsx", - "line": 115, - "column": 6, - "index": 3239 - }, + "filePath": "src/components/Collapsible/index.jsx", + "line": 33, + "column": 4, + "index": 842 + } + ], + "Collapsible.Visible": [ { - "filePath": "src/users/entitlements/ExpireEntitlementForm.jsx", - "line": 110, + "filePath": "src/components/Collapsible/index.jsx", + "line": 35, "column": 6, - "index": 3014 + "index": 960 }, { - "filePath": "src/users/entitlements/ReissueEntitlementForm.jsx", - "line": 108, + "filePath": "src/components/Collapsible/index.jsx", + "line": 38, "column": 6, - "index": 2959 - }, - { - "filePath": "src/users/SingleSignOnRecordCard.jsx", - "line": 77, - "column": 8, - "index": 2287 - }, - { - "filePath": "src/users/VerifiedName.jsx", - "line": 162, - "column": 8, - "index": 5083 + "index": 1070 } ], - "ModalDialog.Footer": [ - { - "filePath": "src/Configuration/Provisioning/SubsidyEditView/CancelButton.jsx", - "line": 52, - "column": 8, - "index": 1339 - }, + "ModalDialog": [ { - "filePath": "src/users/account-actions/CancelRetirement.jsx", - "line": 70, - "column": 8, - "index": 2113 - }, + "filePath": "src/components/ConfirmationModal/index.jsx", + "line": 14, + "column": 2, + "index": 245 + } + ], + "ModalDialog.Header": [ { - "filePath": "src/users/account-actions/PasswordHistory.jsx", - "line": 77, - "column": 8, - "index": 2055 - }, + "filePath": "src/components/ConfirmationModal/index.jsx", + "line": 19, + "column": 4, + "index": 329 + } + ], + "ModalDialog.Title": [ { - "filePath": "src/users/account-actions/ResetPassword.jsx", - "line": 73, - "column": 8, - "index": 2186 - }, + "filePath": "src/components/ConfirmationModal/index.jsx", + "line": 20, + "column": 6, + "index": 356 + } + ], + "ModalDialog.Body": [ { - "filePath": "src/users/account-actions/RetireUser.jsx", - "line": 85, - "column": 8, - "index": 2630 - }, + "filePath": "src/components/ConfirmationModal/index.jsx", + "line": 24, + "column": 4, + "index": 449 + } + ], + "ModalDialog.Footer": [ { - "filePath": "src/users/account-actions/TogglePasswordStatus.jsx", - "line": 63, - "column": 8, - "index": 2147 - }, + "filePath": "src/components/ConfirmationModal/index.jsx", + "line": 29, + "column": 4, + "index": 552 + } + ], + "ActionRow": [ { - "filePath": "src/users/courseSummary/CourseSummary.jsx", - "line": 168, + "filePath": "src/components/ConfirmationModal/index.jsx", + "line": 30, "column": 6, - "index": 4603 - }, + "index": 579 + } + ], + "ModalDialog.CloseButton": [ { - "filePath": "src/users/enrollments/Certificates.jsx", - "line": 209, - "column": 6, - "index": 6328 - }, + "filePath": "src/components/ConfirmationModal/index.jsx", + "line": 31, + "column": 8, + "index": 599 + } + ], + "Button": [ { - "filePath": "src/users/enrollments/ChangeEnrollmentForm.jsx", - "line": 156, - "column": 6, - "index": 4263 - }, + "filePath": "src/components/ConfirmationModal/index.jsx", + "line": 34, + "column": 8, + "index": 700 + } + ], + "SearchField": [ { - "filePath": "src/users/enrollments/CreateEnrollmentForm.jsx", - "line": 116, - "column": 6, - "index": 3185 - }, + "filePath": "src/components/CourseTable/index.jsx", + "line": 167, + "column": 10, + "index": 5698 + } + ], + "Form.Group": [ { - "filePath": "src/users/entitlements/CreateEntitlementForm.jsx", - "line": 118, - "column": 6, - "index": 3323 + "filePath": "src/components/DateTimeField/index.jsx", + "line": 87, + "column": 10, + "index": 2125 }, { - "filePath": "src/users/entitlements/ExpireEntitlementForm.jsx", + "filePath": "src/components/DateTimeField/index.jsx", "line": 113, - "column": 6, - "index": 3097 + "column": 10, + "index": 2982 }, { - "filePath": "src/users/entitlements/ReissueEntitlementForm.jsx", - "line": 111, - "column": 6, - "index": 3043 + "filePath": "src/components/RenderInputTextField/index.jsx", + "line": 18, + "column": 2, + "index": 286 }, { - "filePath": "src/users/SingleSignOnRecordCard.jsx", - "line": 85, - "column": 8, - "index": 2520 + "filePath": "src/components/RenderSelectField/index.jsx", + "line": 16, + "column": 2, + "index": 257 }, { - "filePath": "src/users/VerifiedName.jsx", - "line": 169, - "column": 8, - "index": 5299 + "filePath": "src/components/RenderSelectField/updated-paragon-component.jsx", + "line": 22, + "column": 2, + "index": 767 } ], - "ModalDialog.CloseButton": [ + "Form.Label": [ { - "filePath": "src/Configuration/Provisioning/SubsidyEditView/CancelButton.jsx", - "line": 55, + "filePath": "src/components/DateTimeField/index.jsx", + "line": 88, "column": 12, - "index": 1514 + "index": 2183 }, { - "filePath": "src/users/account-actions/CancelRetirement.jsx", - "line": 72, + "filePath": "src/components/DateTimeField/index.jsx", + "line": 114, "column": 12, - "index": 2168 + "index": 3040 }, { - "filePath": "src/users/account-actions/PasswordHistory.jsx", - "line": 79, - "column": 12, - "index": 2110 + "filePath": "src/components/RenderInputTextField/index.jsx", + "line": 19, + "column": 4, + "index": 365 }, { - "filePath": "src/users/account-actions/ResetPassword.jsx", - "line": 75, - "column": 12, - "index": 2241 + "filePath": "src/components/RenderSelectField/index.jsx", + "line": 17, + "column": 21, + "index": 353 }, { - "filePath": "src/users/account-actions/RetireUser.jsx", - "line": 87, + "filePath": "src/components/RenderSelectField/updated-paragon-component.jsx", + "line": 23, + "column": 4, + "index": 846 + } + ], + "Form.Control": [ + { + "filePath": "src/components/DateTimeField/index.jsx", + "line": 96, "column": 12, - "index": 2685 + "index": 2413 }, { - "filePath": "src/users/account-actions/TogglePasswordStatus.jsx", - "line": 65, + "filePath": "src/components/DateTimeField/index.jsx", + "line": 121, "column": 12, - "index": 2202 + "index": 3234 }, { - "filePath": "src/users/courseSummary/CourseSummary.jsx", - "line": 170, - "column": 10, - "index": 4654 + "filePath": "src/components/RenderInputTextField/index.jsx", + "line": 22, + "column": 4, + "index": 414 }, { - "filePath": "src/users/enrollments/Certificates.jsx", - "line": 211, - "column": 10, - "index": 6379 + "filePath": "src/components/RenderSelectField/index.jsx", + "line": 18, + "column": 4, + "index": 391 }, { - "filePath": "src/users/enrollments/ChangeEnrollmentForm.jsx", - "line": 158, - "column": 10, - "index": 4314 - }, + "filePath": "src/components/RenderSelectField/updated-paragon-component.jsx", + "line": 26, + "column": 4, + "index": 895 + } + ], + "Hyperlink": [ { - "filePath": "src/users/enrollments/CreateEnrollmentForm.jsx", - "line": 118, - "column": 10, - "index": 3236 + "filePath": "src/components/EditCoursePage/CollapsibleCourseRun.jsx", + "line": 82, + "column": 12, + "index": 3430 }, { - "filePath": "src/users/entitlements/CreateEntitlementForm.jsx", - "line": 120, + "filePath": "src/components/EditCoursePage/EditCourseForm.jsx", + "line": 146, "column": 10, - "index": 3374 + "index": 5125 }, { - "filePath": "src/users/entitlements/ExpireEntitlementForm.jsx", - "line": 115, + "filePath": "src/components/EditCoursePage/EditCourseForm.jsx", + "line": 161, "column": 10, - "index": 3148 + "index": 5720 }, { - "filePath": "src/users/entitlements/ReissueEntitlementForm.jsx", - "line": 113, - "column": 10, - "index": 3094 + "filePath": "src/components/EditCoursePage/EditCourseForm.test.jsx", + "line": 399, + "column": 8, + "index": 13349 }, { - "filePath": "src/users/SingleSignOnRecordCard.jsx", - "line": 87, - "column": 12, - "index": 2575 + "filePath": "src/components/EditCoursePage/EditCourseForm.test.jsx", + "line": 432, + "column": 8, + "index": 14593 }, { - "filePath": "src/users/VerifiedName.jsx", - "line": 171, + "filePath": "src/components/Header/index.jsx", + "line": 37, "column": 12, - "index": 5354 + "index": 1405 } ], - "Row": [ + "OverlayTrigger": [ { - "filePath": "src/FeatureBasedEnrollments/FeatureBasedEnrollment.jsx", - "line": 45, - "column": 16, - "index": 1575 + "filePath": "src/components/EditCoursePage/CollapsibleCourseRun.jsx", + "line": 89, + "column": 12, + "index": 3660 }, { - "filePath": "src/ProgramEnrollments/ProgramInspector/ProgramInspector.jsx", - "line": 167, - "column": 14, - "index": 5467 - }, + "filePath": "src/components/SidePanes/Pane.jsx", + "line": 11, + "column": 6, + "index": 343 + } + ], + "Tooltip": [ { - "filePath": "src/ProgramEnrollments/ProgramInspector/ProgramInspector.jsx", - "line": 177, - "column": 14, - "index": 5812 + "filePath": "src/components/EditCoursePage/CollapsibleCourseRun.jsx", + "line": 91, + "column": 23, + "index": 3729 }, { - "filePath": "src/users/licenses/LicenseCard.jsx", - "line": 65, + "filePath": "src/components/SidePanes/Pane.jsx", + "line": 15, "column": 10, - "index": 1713 - }, + "index": 436 + } + ], + "Badge": [ { - "filePath": "src/users/licenses/Licenses.jsx", - "line": 34, + "filePath": "src/components/EditCoursePage/CourseSkills.jsx", + "line": 29, "column": 10, - "index": 966 - }, + "index": 592 + } + ], + "Add": [ { - "filePath": "src/users/SingleSignOnRecordCard.jsx", - "line": 104, - "column": 10, - "index": 3074 + "filePath": "src/components/EditCoursePage/EditCourseForm.jsx", + "line": 123, + "column": 8, + "index": 4465 }, { - "filePath": "src/users/SingleSignOnRecordCard.jsx", - "line": 113, + "filePath": "src/components/SidePanes/UsersPane.jsx", + "line": 160, + "column": 16, + "index": 4807 + } + ], + "InfoOutline": [ + { + "filePath": "src/components/FieldHelp/index.jsx", + "line": 57, "column": 10, - "index": 3438 + "index": 1369 }, { - "filePath": "src/users/SingleSignOnRecords.jsx", - "line": 43, - "column": 10, - "index": 1593 + "filePath": "src/components/SidePanes/Pane.jsx", + "line": 20, + "column": 8, + "index": 552 } ], - "Card": [ + "Dropdown": [ { - "filePath": "src/FeatureBasedEnrollments/FeatureBasedEnrollmentCard.jsx", - "line": 10, - "column": 4, - "index": 238 - }, + "filePath": "src/components/Header/index.jsx", + "line": 60, + "column": 12, + "index": 2514 + } + ], + "Dropdown.Toggle": [ { - "filePath": "src/users/licenses/LicenseCard.jsx", - "line": 56, - "column": 6, - "index": 1459 - }, + "filePath": "src/components/Header/index.jsx", + "line": 61, + "column": 14, + "index": 2539 + } + ], + "AvatarButton": [ { - "filePath": "src/users/SingleSignOnRecordCard.jsx", - "line": 95, - "column": 6, - "index": 2782 + "filePath": "src/components/Header/index.jsx", + "line": 61, + "column": 35, + "index": 2560 } ], - "Card.Header": [ + "Dropdown.Menu": [ { - "filePath": "src/FeatureBasedEnrollments/FeatureBasedEnrollmentCard.jsx", - "line": 11, - "column": 6, - "index": 251 - }, + "filePath": "src/components/Header/index.jsx", + "line": 65, + "column": 14, + "index": 2668 + } + ], + "Dropdown.Item": [ { - "filePath": "src/users/licenses/LicenseCard.jsx", - "line": 57, - "column": 8, - "index": 1507 - }, + "filePath": "src/components/Header/index.jsx", + "line": 66, + "column": 16, + "index": 2700 + } + ], + "Spinner": [ { - "filePath": "src/users/licenses/LicenseCard.jsx", - "line": 75, - "column": 8, - "index": 2117 + "filePath": "src/components/LoadingSpinner/index.jsx", + "line": 10, + "column": 4, + "index": 233 }, { - "filePath": "src/users/SingleSignOnRecordCard.jsx", - "line": 96, - "column": 8, - "index": 2830 - }, + "filePath": "src/components/SidePanes/CatalogInclusionPane.jsx", + "line": 71, + "column": 10, + "index": 2580 + } + ], + "Close": [ { - "filePath": "src/users/SingleSignOnRecordCard.jsx", - "line": 126, - "column": 8, - "index": 3764 + "filePath": "src/components/RemoveButton/index.jsx", + "line": 20, + "column": 4, + "index": 469 } ], - "Card.Section": [ + "Form": [ { - "filePath": "src/FeatureBasedEnrollments/FeatureBasedEnrollmentCard.jsx", - "line": 21, + "filePath": "src/components/SidePanes/CatalogInclusionPane.jsx", + "line": 60, "column": 6, - "index": 530 - }, - { - "filePath": "src/users/licenses/LicenseCard.jsx", - "line": 64, - "column": 8, - "index": 1688 - }, + "index": 2143 + } + ], + "Form.Switch": [ { - "filePath": "src/users/licenses/LicenseCard.jsx", - "line": 83, + "filePath": "src/components/SidePanes/CatalogInclusionPane.jsx", + "line": 61, "column": 8, - "index": 2275 - }, + "index": 2175 + } + ], + "TextArea": [ { - "filePath": "src/users/SingleSignOnRecordCard.jsx", - "line": 103, - "column": 8, - "index": 3049 - }, + "filePath": "src/components/SidePanes/CommentsPane.jsx", + "line": 123, + "column": 14, + "index": 3625 + } + ], + "Delete": [ { - "filePath": "src/users/SingleSignOnRecordCard.jsx", - "line": 134, + "filePath": "src/components/Staffer/index.jsx", + "line": 30, "column": 8, - "index": 3921 + "index": 813 } ], - "Card.Footer": [ + "Edit": [ { - "filePath": "src/FeatureBasedEnrollments/FeatureBasedEnrollmentCard.jsx", - "line": 39, - "column": 6, - "index": 957 + "filePath": "src/components/Staffer/index.jsx", + "line": 44, + "column": 10, + "index": 1280 } ], - "Input": [ + "DataTable": [ { - "filePath": "src/FeatureBasedEnrollments/FeatureBasedEnrollmentIndexPage.jsx", - "line": 100, + "filePath": "src/components/TableComponent/index.jsx", + "line": 94, "column": 10, - "index": 3235 - }, - { - "filePath": "src/ProgramEnrollments/LinkProgramEnrollments.jsx", - "line": 51, - "column": 12, - "index": 1563 - }, + "index": 2927 + } + ], + "Pagination": [ { - "filePath": "src/ProgramEnrollments/LinkProgramEnrollments.jsx", - "line": 66, + "filePath": "src/components/TableComponent/index.jsx", + "line": 107, "column": 12, - "index": 2045 - }, - { - "filePath": "src/ProgramEnrollments/ProgramInspector/ProgramInspector.jsx", - "line": 121, - "column": 14, - "index": 3771 - }, - { - "filePath": "src/ProgramEnrollments/ProgramInspector/ProgramInspector.jsx", - "line": 134, - "column": 14, - "index": 4270 - }, + "index": 3365 + } + ], + "ErrorIcon": [ { - "filePath": "src/ProgramEnrollments/ProgramInspector/ProgramInspector.jsx", - "line": 145, + "filePath": "src/components/TableComponent/index.jsx", + "line": 131, "column": 14, - "index": 4693 - }, - { - "filePath": "src/users/account-actions/TogglePasswordStatus.jsx", - "line": 55, - "column": 12, - "index": 1920 - }, - { - "filePath": "src/users/enrollments/ChangeEnrollmentForm.jsx", - "line": 122, - "column": 8, - "index": 3425 - }, + "index": 4089 + } + ] + } + }, + { + "version": "21.13.1", + "name": "@edx/frontend-app-support", + "repository": { + "type": "git", + "url": "git+https://github.com/openedx/frontend-app-support-tools.git" + }, + "folderName": "frontend-app-support-tools", + "usages": { + "Container": [ { - "filePath": "src/users/enrollments/CreateEnrollmentForm.jsx", - "line": 58, - "column": 8, - "index": 1722 + "filePath": "src/Configuration/ConfigurationPage.jsx", + "line": 15, + "column": 4, + "index": 448 }, { - "filePath": "src/users/enrollments/CreateEnrollmentForm.jsx", - "line": 84, - "column": 8, - "index": 2406 + "filePath": "src/Configuration/Customers/CustomerDataTable/CustomersPage.jsx", + "line": 86, + "column": 4, + "index": 2545 }, { - "filePath": "src/users/entitlements/CreateEntitlementForm.jsx", - "line": 63, - "column": 6, - "index": 1839 + "filePath": "src/Configuration/Customers/CustomerDetailView/CustomerViewContainer.jsx", + "line": 65, + "column": 8, + "index": 1968 }, { - "filePath": "src/users/entitlements/CreateEntitlementForm.jsx", - "line": 73, + "filePath": "src/Configuration/Customers/CustomerDetailView/CustomerViewContainer.jsx", + "line": 82, "column": 6, - "index": 2108 + "index": 2562 }, { - "filePath": "src/users/entitlements/CreateEntitlementForm.jsx", + "filePath": "src/Configuration/Customers/CustomerDetailView/CustomerViewContainer.jsx", "line": 87, "column": 6, - "index": 2567 + "index": 2767 }, { - "filePath": "src/users/entitlements/ExpireEntitlementForm.jsx", - "line": 80, + "filePath": "src/Configuration/Customers/CustomerDetailView/CustomerViewContainer.jsx", + "line": 90, "column": 6, - "index": 2289 + "index": 2853 }, { - "filePath": "src/users/entitlements/ReissueEntitlementForm.jsx", - "line": 78, - "column": 6, - "index": 2231 + "filePath": "src/Configuration/Provisioning/ErrorPage/ErrorPageContainer.jsx", + "line": 27, + "column": 4, + "index": 973 }, { - "filePath": "src/users/EntitlementsAndEnrollmentsContainer.jsx", + "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormContainer.jsx", "line": 15, - "column": 8, - "index": 480 + "column": 6, + "index": 446 }, { - "filePath": "src/users/UserSearch.jsx", - "line": 21, - "column": 8, - "index": 547 - } - ], - "Tabs": [ - { - "filePath": "src/ProgramEnrollments/ProgramEnrollmentsIndexPage.jsx", - "line": 20, + "filePath": "src/Configuration/Provisioning/ProvisioningPage.jsx", + "line": 9, "column": 4, - "index": 618 + "index": 212 }, { - "filePath": "src/SupportToolsTab/SupportToolsTab.jsx", - "line": 47, - "column": 8, - "index": 1568 + "filePath": "src/Configuration/Provisioning/SubsidyDetailView/SubsidyDetailViewContainer.jsx", + "line": 13, + "column": 6, + "index": 495 }, { - "filePath": "src/users/LearnerInformation.jsx", + "filePath": "src/Configuration/Provisioning/SubsidyEditView/SubsidyEditViewContainer.jsx", "line": 18, "column": 6, - "index": 600 + "index": 548 } ], - "Tab": [ - { - "filePath": "src/ProgramEnrollments/ProgramEnrollmentsIndexPage.jsx", - "line": 21, - "column": 6, - "index": 694 - }, + "Stack": [ { - "filePath": "src/ProgramEnrollments/ProgramEnrollmentsIndexPage.jsx", - "line": 25, + "filePath": "src/Configuration/ConfigurationPage.jsx", + "line": 17, "column": 6, - "index": 838 - }, - { - "filePath": "src/SupportToolsTab/SupportToolsTab.jsx", - "line": 57, - "column": 10, - "index": 1862 - }, - { - "filePath": "src/SupportToolsTab/SupportToolsTab.jsx", - "line": 62, - "column": 10, - "index": 2016 + "index": 531 }, { - "filePath": "src/SupportToolsTab/SupportToolsTab.jsx", - "line": 69, - "column": 10, - "index": 2244 + "filePath": "src/Configuration/Customers/CustomerDataTable/CustomerDetailSubComponent.jsx", + "line": 31, + "column": 2, + "index": 911 }, { - "filePath": "src/users/LearnerInformation.jsx", - "line": 22, + "filePath": "src/Configuration/Customers/CustomerDetailView/CustomerViewContainer.jsx", + "line": 47, "column": 8, - "index": 695 + "index": 1513 }, { - "filePath": "src/users/LearnerInformation.jsx", - "line": 30, + "filePath": "src/Configuration/Customers/CustomerDetailView/CustomerViewContainer.jsx", + "line": 83, "column": 8, - "index": 895 + "index": 2599 }, { - "filePath": "src/users/LearnerInformation.jsx", - "line": 35, + "filePath": "src/Configuration/Customers/CustomerDetailView/CustomerViewContainer.jsx", + "line": 91, "column": 8, - "index": 1082 + "index": 2895 }, { - "filePath": "src/users/LearnerInformation.jsx", - "line": 40, - "column": 8, - "index": 1236 + "filePath": "src/Configuration/Customers/CustomerDetailView/EnterpriseCustomerUserDetail.jsx", + "line": 66, + "column": 4, + "index": 1693 }, { - "filePath": "src/users/LearnerInformation.jsx", - "line": 51, + "filePath": "src/Configuration/Customers/CustomerDetailView/LearnerCreditPlanCard.jsx", + "line": 48, "column": 8, - "index": 1489 + "index": 1455 }, { - "filePath": "src/users/LearnerInformation.jsx", - "line": 56, + "filePath": "src/Configuration/Customers/CustomerDetailView/SubscriptionPlanCard.jsx", + "line": 45, "column": 8, - "index": 1645 - } - ], - "Dropdown": [ + "index": 1431 + }, { - "filePath": "src/supportHeader/DesktopHeader.jsx", - "line": 54, - "column": 6, - "index": 1367 + "filePath": "src/Configuration/Provisioning/ProvisioningForm/CustomCatalog/ProvisioningFormDefineCustomCatalogHeader.jsx", + "line": 33, + "column": 10, + "index": 1153 }, { - "filePath": "src/supportHeader/MobileHeader.jsx", - "line": 56, + "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormTerm.jsx", + "line": 59, "column": 6, - "index": 1326 + "index": 1795 }, { - "filePath": "src/users/enrollments/Enrollments.jsx", - "line": 89, - "column": 8, - "index": 3492 + "filePath": "src/Configuration/Provisioning/SubsidyDetailView/PolicyDetailView/PolicyContainer.jsx", + "line": 13, + "column": 4, + "index": 605 }, { - "filePath": "src/users/entitlements/Entitlements.jsx", - "line": 104, + "filePath": "src/Configuration/Provisioning/SubsidyDetailView/TermDetail.jsx", + "line": 16, "column": 8, - "index": 3729 + "index": 443 } ], - "Dropdown.Toggle": [ - { - "filePath": "src/supportHeader/DesktopHeader.jsx", - "line": 55, - "column": 8, - "index": 1386 - }, - { - "filePath": "src/supportHeader/MobileHeader.jsx", - "line": 57, - "column": 8, - "index": 1345 - }, - { - "filePath": "src/users/enrollments/Enrollments.jsx", - "line": 90, - "column": 10, - "index": 3513 - }, + "Hyperlink": [ { - "filePath": "src/users/entitlements/Entitlements.jsx", - "line": 105, + "filePath": "src/Configuration/ConfigurationPage.jsx", + "line": 19, "column": 10, - "index": 3750 - } - ], - "AvatarButton": [ - { - "filePath": "src/supportHeader/DesktopHeader.jsx", - "line": 55, - "column": 65, - "index": 1443 + "index": 602 }, { - "filePath": "src/supportHeader/MobileHeader.jsx", - "line": 57, - "column": 57, - "index": 1394 - } - ], - "Dropdown.Menu": [ - { - "filePath": "src/supportHeader/DesktopHeader.jsx", - "line": 59, + "filePath": "src/Configuration/Customers/CustomerDataTable/CustomerDetails.jsx", + "line": 21, "column": 8, - "index": 1528 + "index": 619 }, { - "filePath": "src/supportHeader/MobileHeader.jsx", - "line": 61, + "filePath": "src/Configuration/Customers/CustomerDataTable/CustomerDetails.jsx", + "line": 34, "column": 8, - "index": 1479 + "index": 975 }, { - "filePath": "src/users/enrollments/Enrollments.jsx", - "line": 93, + "filePath": "src/Configuration/Customers/CustomerDetailView/CustomerCard.jsx", + "line": 47, "column": 10, - "index": 3603 + "index": 1701 }, { - "filePath": "src/users/entitlements/Entitlements.jsx", - "line": 108, + "filePath": "src/Configuration/Customers/CustomerDetailView/CustomerViewCard.jsx", + "line": 22, "column": 10, - "index": 3840 - } - ], - "Dropdown.Item": [ - { - "filePath": "src/supportHeader/DesktopHeader.jsx", - "line": 70, - "column": 6, - "index": 1815 - }, - { - "filePath": "src/supportHeader/DesktopHeader.jsx", - "line": 78, - "column": 6, - "index": 2077 + "index": 563 }, { - "filePath": "src/supportHeader/MobileHeader.jsx", - "line": 72, - "column": 6, - "index": 1766 + "filePath": "src/Configuration/Customers/CustomerDetailView/EnterpriseCustomerUserDetail.jsx", + "line": 18, + "column": 8, + "index": 580 }, { - "filePath": "src/supportHeader/MobileHeader.jsx", - "line": 80, + "filePath": "src/Configuration/Provisioning/DashboardDataTable/DashboardTableLinks.jsx", + "line": 12, "column": 6, - "index": 2028 - }, - { - "filePath": "src/users/enrollments/Enrollments.jsx", - "line": 94, - "column": 12, - "index": 3631 - }, - { - "filePath": "src/users/enrollments/Enrollments.jsx", - "line": 103, - "column": 12, - "index": 3901 - }, - { - "filePath": "src/users/entitlements/Entitlements.jsx", - "line": 109, - "column": 12, - "index": 3868 + "index": 545 }, { - "filePath": "src/users/entitlements/Entitlements.jsx", - "line": 121, - "column": 12, - "index": 4307 - } - ], - "InputSelect": [ - { - "filePath": "src/users/enrollments/ChangeEnrollmentForm.jsx", - "line": 102, - "column": 8, - "index": 2909 + "filePath": "src/Configuration/Provisioning/DashboardDataTable/DashboardTableLinks.jsx", + "line": 35, + "column": 4, + "index": 1210 }, { - "filePath": "src/users/enrollments/ChangeEnrollmentForm.jsx", - "line": 112, + "filePath": "src/Configuration/Provisioning/ProvisioningForm/CustomCatalog/ProvisioningFormDefineCustomCatalogHeader.jsx", + "line": 23, "column": 8, - "index": 3166 + "index": 766 }, { - "filePath": "src/users/enrollments/CreateEnrollmentForm.jsx", - "line": 66, - "column": 8, - "index": 1951 + "filePath": "src/Configuration/Provisioning/SubsidyDetailView/PolicyDetailView/CustomCatalogDetail.jsx", + "line": 18, + "column": 10, + "index": 652 }, { - "filePath": "src/users/enrollments/CreateEnrollmentForm.jsx", - "line": 75, - "column": 8, - "index": 2175 - } - ], - "TransitionReplace": [ - { - "filePath": "src/users/enrollments/Enrollments.jsx", - "line": 298, - "column": 6, - "index": 9656 + "filePath": "src/ProgramEnrollments/ProgramInspector/EnrollmentDetails.jsx", + "line": 38, + "column": 18, + "index": 1250 }, { - "filePath": "src/users/enrollments/Enrollments.jsx", - "line": 312, + "filePath": "src/users/CopyShowHyperLinks.jsx", + "line": 10, "column": 6, - "index": 10126 + "index": 257 }, { - "filePath": "src/users/entitlements/Entitlements.jsx", - "line": 277, + "filePath": "src/users/CopyShowHyperLinks.jsx", + "line": 24, "column": 6, - "index": 8673 + "index": 651 }, { "filePath": "src/users/entitlements/Entitlements.jsx", - "line": 291, - "column": 6, - "index": 9144 + "line": 67, + "column": 8, + "index": 2602 }, { "filePath": "src/users/LearnerCredentials.jsx", - "line": 23, - "column": 4, - "index": 754 - } - ], - "OverlayTrigger": [ - { - "filePath": "src/users/VerifiedName.jsx", - "line": 43, - "column": 8, - "index": 1544 - } - ], - "Popover": [ + "line": 113, + "column": 14, + "index": 3029 + }, { - "filePath": "src/users/VerifiedName.jsx", + "filePath": "src/users/orderHistory/OrderHistory.jsx", "line": 47, - "column": 12, - "index": 1647 - } - ], - "Popover.Title": [ + "column": 10, + "index": 1546 + }, { "filePath": "src/users/VerifiedName.jsx", - "line": 48, - "column": 14, - "index": 1745 + "line": 149, + "column": 6, + "index": 4428 } ], - "Popover.Content": [ + "Icon": [ { - "filePath": "src/users/VerifiedName.jsx", + "filePath": "src/Configuration/Customers/CustomerDataTable/CustomerDetails.jsx", "line": 49, - "column": 14, - "index": 1864 - } - ] - } - }, - { - "version": "20.28.4", - "name": "@edx/frontend-component-cookie-policy-banner", - "repository": { - "type": "git", - "url": "https://github.com/openedx/frontend-component-cookie-policy-banner" - }, - "folderName": "frontend-component-cookie-policy-banner", - "usages": { - "StatusAlert": [ - { - "filePath": "src/CookiePolicyBanner/index.jsx", - "line": 68, "column": 10, - "index": 1763 - } - ] - } - }, - { - "version": "21.5.6", - "name": "@edx/frontend-component-header-edx", - "repository": { - "type": "git", - "url": "git+https://github.com/edx/frontend-component-header-edx.git" - }, - "folderName": "frontend-component-header-edx", - "usages": { - "Dropdown": [ + "index": 1446 + }, { - "filePath": "src/DesktopHeader.jsx", - "line": 66, + "filePath": "src/Configuration/Customers/CustomerDataTable/CustomerDetails.jsx", + "line": 71, "column": 6, - "index": 1657 + "index": 1927 }, { - "filePath": "src/learning-header/AuthenticatedUserDropdown.jsx", - "line": 54, + "filePath": "src/Configuration/Customers/CustomerDataTable/CustomerDetails.jsx", + "line": 80, "column": 6, - "index": 1944 - } - ], - "Dropdown.Toggle": [ - { - "filePath": "src/DesktopHeader.jsx", - "line": 67, - "column": 8, - "index": 1676 + "index": 2118 }, { - "filePath": "src/learning-header/AuthenticatedUserDropdown.jsx", - "line": 55, - "column": 8, - "index": 1994 - } - ], - "AvatarButton": [ - { - "filePath": "src/DesktopHeader.jsx", - "line": 69, - "column": 14, - "index": 1736 + "filePath": "src/Configuration/Customers/CustomerDataTable/CustomerDetails.jsx", + "line": 89, + "column": 6, + "index": 2311 }, { - "filePath": "src/MobileHeader.jsx", - "line": 136, - "column": 21, - "index": 4484 - } - ], - "Dropdown.Menu": [ + "filePath": "src/Configuration/Customers/CustomerDataTable/CustomerDetailSubComponent.jsx", + "line": 11, + "column": 11, + "index": 429 + }, { - "filePath": "src/DesktopHeader.jsx", - "line": 78, - "column": 8, - "index": 1983 + "filePath": "src/Configuration/Customers/CustomerDataTable/CustomerDetailSubComponent.jsx", + "line": 18, + "column": 11, + "index": 604 }, { - "filePath": "src/learning-header/AuthenticatedUserDropdown.jsx", - "line": 61, - "column": 8, - "index": 2280 - } - ], - "Dropdown.Item": [ + "filePath": "src/Configuration/Customers/CustomerDataTable/CustomerDetailSubComponent.jsx", + "line": 25, + "column": 11, + "index": 785 + }, { - "filePath": "src/DesktopHeader.jsx", - "line": 80, - "column": 12, - "index": 2077 + "filePath": "src/Configuration/Customers/CustomerDataTable/CustomerDetailSubComponent.jsx", + "line": 54, + "column": 6, + "index": 1723 }, { - "filePath": "src/learning-header/AuthenticatedUserDropdown.jsx", - "line": 27, - "column": 4, - "index": 1055 + "filePath": "src/Configuration/Customers/CustomerDataTable/CustomersPage.jsx", + "line": 43, + "column": 6, + "index": 1435 }, { - "filePath": "src/learning-header/AuthenticatedUserDropdown.jsx", - "line": 32, - "column": 4, - "index": 1221 + "filePath": "src/Configuration/Customers/CustomerDetailView/CustomerCard.jsx", + "line": 63, + "column": 12, + "index": 2228 }, { - "filePath": "src/learning-header/AuthenticatedUserDropdown.jsx", - "line": 41, - "column": 6, - "index": 1580 + "filePath": "src/Configuration/Customers/CustomerDetailView/CustomerDetailModal.jsx", + "line": 35, + "column": 10, + "index": 1040 }, { - "filePath": "src/learning-header/AuthenticatedUserDropdown.jsx", - "line": 64, + "filePath": "src/Configuration/Customers/CustomerDetailView/CustomerDetailModal.jsx", + "line": 49, "column": 10, - "index": 2405 + "index": 1536 }, { - "filePath": "src/learning-header/AuthenticatedUserDropdown.jsx", + "filePath": "src/Configuration/Customers/CustomerDetailView/CustomerDetailModal.jsx", "line": 67, "column": 10, - "index": 2567 + "index": 2380 }, { - "filePath": "src/learning-header/AuthenticatedUserDropdown.jsx", + "filePath": "src/Configuration/Customers/CustomerDetailView/CustomerDetailModal.jsx", "line": 75, - "column": 12, - "index": 3081 + "column": 10, + "index": 2659 }, { - "filePath": "src/learning-header/AuthenticatedUserDropdown.jsx", - "line": 79, + "filePath": "src/Configuration/Customers/CustomerDetailView/CustomerDetailModal.jsx", + "line": 82, "column": 10, - "index": 3244 + "index": 2895 }, { - "filePath": "src/studio-header/NavDropdownMenu.jsx", - "line": 20, - "column": 6, - "index": 331 - } - ], - "Badge": [ + "filePath": "src/Configuration/Customers/CustomerDetailView/CustomerDetailModal.jsx", + "line": 89, + "column": 10, + "index": 3119 + }, { - "filePath": "src/Header.jsx", - "line": 95, - "column": 87, - "index": 2928 + "filePath": "src/Configuration/Customers/CustomerDetailView/CustomerDetailModal.jsx", + "line": 96, + "column": 10, + "index": 3315 }, { - "filePath": "src/learning-header/AuthenticatedUserDropdown.jsx", - "line": 34, - "column": 6, - "index": 1319 - } - ], - "Button": [ + "filePath": "src/Configuration/Customers/CustomerDetailView/CustomerDetailModal.jsx", + "line": 103, + "column": 10, + "index": 3529 + }, { - "filePath": "src/learning-header/AnonymousUserMenu.jsx", - "line": 12, - "column": 4, - "index": 362 + "filePath": "src/Configuration/Customers/CustomerDetailView/CustomerDetailModal.jsx", + "line": 110, + "column": 10, + "index": 3747 }, { - "filePath": "src/learning-header/AnonymousUserMenu.jsx", - "line": 19, - "column": 4, - "index": 615 + "filePath": "src/Configuration/Customers/CustomerDetailView/EnterpriseCustomerUserDetail.jsx", + "line": 29, + "column": 20, + "index": 873 + }, + { + "filePath": "src/Configuration/Customers/CustomerDetailView/EnterpriseCustomerUserDetail.jsx", + "line": 42, + "column": 16, + "index": 1180 }, { - "filePath": "src/Notifications/index.jsx", - "line": 125, + "filePath": "src/Configuration/Provisioning/DashboardDataTable/DashboardTableLinks.jsx", + "line": 45, "column": 16, - "index": 4659 + "index": 1519 }, { - "filePath": "src/Notifications/NotificationSections.jsx", - "line": 58, + "filePath": "src/Configuration/Provisioning/ProvisioningForm/CustomCatalog/ProvisioningFormDefineCustomCatalogHeader.jsx", + "line": 34, "column": 12, - "index": 2608 + "index": 1196 }, { - "filePath": "src/Notifications/NotificationSections.jsx", - "line": 104, - "column": 8, - "index": 4363 + "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormHelpText.jsx", + "line": 12, + "column": 55, + "index": 373 }, { - "filePath": "src/studio-header/HeaderBody.jsx", - "line": 56, - "column": 14, - "index": 1060 - } - ], - "useWindowSize": [ + "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormTerm.jsx", + "line": 66, + "column": 18, + "index": 2080 + }, { - "filePath": "src/Notifications/data/hook.js", - "line": 4, - "column": 21, - "index": 121 + "filePath": "src/Configuration/Provisioning/SubsidyDetailView/InternalOnlyDetail.jsx", + "line": 16, + "column": 10, + "index": 497 }, { - "filePath": "src/Notifications/data/hook.js", - "line": 9, - "column": 21, - "index": 308 + "filePath": "src/Configuration/Provisioning/SubsidyDetailView/TermDetail.jsx", + "line": 23, + "column": 20, + "index": 742 } ], - "breakpoints": [ - { - "filePath": "src/Notifications/data/hook.js", - "line": 5, - "column": 9, - "index": 147 - }, + "ContentCopy": [ { - "filePath": "src/Notifications/data/hook.js", - "line": 5, - "column": 78, - "index": 216 + "filePath": "src/Configuration/Customers/CustomerDataTable/CustomerDetails.jsx", + "line": 51, + "column": 17, + "index": 1499 }, { - "filePath": "src/Notifications/data/hook.js", - "line": 10, - "column": 29, - "index": 354 + "filePath": "src/Configuration/Customers/CustomerDetailView/CustomerCard.jsx", + "line": 65, + "column": 19, + "index": 2285 } ], - "OverlayTrigger": [ + "Toast": [ { - "filePath": "src/Notifications/index.jsx", - "line": 79, + "filePath": "src/Configuration/Customers/CustomerDataTable/CustomerDetails.jsx", + "line": 57, "column": 6, - "index": 2667 + "index": 1653 }, { - "filePath": "src/studio-header/CourseLockUp.jsx", - "line": 18, - "column": 2, - "index": 326 - } - ], - "Popover": [ - { - "filePath": "src/Notifications/index.jsx", - "line": 85, - "column": 10, - "index": 2822 - } - ], - "Popover.Title": [ + "filePath": "src/Configuration/Customers/CustomerDetailView/CustomerCard.jsx", + "line": 75, + "column": 6, + "index": 2626 + }, { - "filePath": "src/Notifications/index.jsx", - "line": 98, - "column": 16, - "index": 3410 + "filePath": "src/Configuration/Provisioning/DashboardToast.jsx", + "line": 16, + "column": 4, + "index": 499 } ], - "Hyperlink": [ + "Check": [ { - "filePath": "src/Notifications/index.jsx", - "line": 104, - "column": 18, - "index": 3731 + "filePath": "src/Configuration/Customers/CustomerDataTable/CustomerDetails.jsx", + "line": 71, + "column": 17, + "index": 1938 }, { - "filePath": "src/Notifications/tours/constants.js", - "line": 16, - "column": 14, - "index": 487 + "filePath": "src/Configuration/Customers/CustomerDataTable/CustomerDetails.jsx", + "line": 80, + "column": 17, + "index": 2129 }, { - "filePath": "src/Notifications/tours/constants.js", - "line": 33, - "column": 14, - "index": 1151 - } - ], - "Icon": [ - { - "filePath": "src/Notifications/index.jsx", - "line": 110, - "column": 20, - "index": 3993 + "filePath": "src/Configuration/Customers/CustomerDataTable/CustomerDetails.jsx", + "line": 89, + "column": 17, + "index": 2322 }, { - "filePath": "src/Notifications/index.jsx", - "line": 144, - "column": 20, - "index": 5322 + "filePath": "src/Configuration/Customers/CustomerDataTable/CustomerDetailSubComponent.jsx", + "line": 11, + "column": 22, + "index": 440 }, { - "filePath": "src/Notifications/NotificationEmptySection.jsx", - "line": 24, - "column": 16, - "index": 849 + "filePath": "src/Configuration/Customers/CustomerDataTable/CustomerDetailSubComponent.jsx", + "line": 18, + "column": 22, + "index": 615 }, { - "filePath": "src/Notifications/NotificationRowItem.jsx", - "line": 37, - "column": 6, - "index": 1120 + "filePath": "src/Configuration/Customers/CustomerDataTable/CustomerDetailSubComponent.jsx", + "line": 25, + "column": 22, + "index": 796 }, { - "filePath": "src/Notifications/NotificationSections.jsx", - "line": 120, - "column": 12, - "index": 4902 + "filePath": "src/Configuration/Customers/CustomerDetailView/EnterpriseCustomerUserDetail.jsx", + "line": 85, + "column": 69, + "index": 2115 }, { - "filePath": "src/Notifications/NotificationSections.jsx", - "line": 125, - "column": 14, - "index": 5244 + "filePath": "src/Configuration/Customers/CustomerDetailView/EnterpriseCustomerUserDetail.jsx", + "line": 94, + "column": 73, + "index": 2416 }, { - "filePath": "src/Notifications/tours/constants.js", - "line": 23, - "column": 16, - "index": 775 + "filePath": "src/Configuration/Provisioning/SubsidyDetailView/InternalOnlyDetail.jsx", + "line": 16, + "column": 21, + "index": 508 } ], - "Settings": [ + "OverlayTrigger": [ { - "filePath": "src/Notifications/index.jsx", - "line": 111, - "column": 27, - "index": 4026 + "filePath": "src/Configuration/Customers/CustomerDataTable/CustomerDetailSubComponent.jsx", + "line": 39, + "column": 4, + "index": 1237 }, { - "filePath": "src/Notifications/tours/constants.js", - "line": 24, - "column": 23, - "index": 804 - } - ], - "Popover.Content": [ - { - "filePath": "src/Notifications/index.jsx", - "line": 119, - "column": 14, - "index": 4338 - } - ], - "IconButton": [ + "filePath": "src/Configuration/Customers/CustomerDataTable/CustomersPage.jsx", + "line": 28, + "column": 4, + "index": 936 + }, { - "filePath": "src/Notifications/index.jsx", - "line": 139, - "column": 10, - "index": 5085 + "filePath": "src/users/VerifiedName.jsx", + "line": 92, + "column": 8, + "index": 2252 }, { - "filePath": "src/Notifications/NotificationEmptySection.jsx", - "line": 20, - "column": 6, - "index": 698 + "filePath": "src/users/VerifiedName.jsx", + "line": 113, + "column": 8, + "index": 3093 } ], - "NotificationsNone": [ + "Tooltip": [ { - "filePath": "src/Notifications/index.jsx", - "line": 143, - "column": 17, - "index": 5283 + "filePath": "src/Configuration/Customers/CustomerDataTable/CustomerDetailSubComponent.jsx", + "line": 43, + "column": 8, + "index": 1336 }, { - "filePath": "src/Notifications/NotificationEmptySection.jsx", - "line": 23, - "column": 13, - "index": 814 + "filePath": "src/Configuration/Customers/CustomerDataTable/CustomersPage.jsx", + "line": 32, + "column": 8, + "index": 1035 } ], - "Bubble": [ + "InfoOutline": [ { - "filePath": "src/Notifications/index.jsx", - "line": 152, - "column": 10, - "index": 5601 - } - ], - "Spinner": [ + "filePath": "src/Configuration/Customers/CustomerDataTable/CustomerDetailSubComponent.jsx", + "line": 54, + "column": 27, + "index": 1744 + }, { - "filePath": "src/Notifications/NotificationSections.jsx", - "line": 101, - "column": 10, - "index": 4150 - } - ], - "CheckCircleLightOutline": [ + "filePath": "src/Configuration/Customers/CustomerDataTable/CustomersPage.jsx", + "line": 43, + "column": 27, + "index": 1456 + }, { - "filePath": "src/Notifications/NotificationSections.jsx", - "line": 120, - "column": 56, - "index": 4946 - } - ], - "AutoAwesome": [ + "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormTerm.jsx", + "line": 62, + "column": 15, + "index": 1954 + }, { - "filePath": "src/Notifications/NotificationSections.jsx", - "line": 125, - "column": 25, - "index": 5255 + "filePath": "src/Configuration/Provisioning/SubsidyDetailView/TermDetail.jsx", + "line": 19, + "column": 17, + "index": 608 } ], - "Tabs": [ + "DataTable": [ { - "filePath": "src/Notifications/NotificationTabs.jsx", - "line": 39, + "filePath": "src/Configuration/Customers/CustomerDataTable/CustomerDetailSubComponent.jsx", + "line": 64, + "column": 6, + "index": 2051 + }, + { + "filePath": "src/Configuration/Customers/CustomerDataTable/CustomersPage.jsx", + "line": 89, "column": 8, - "index": 1411 - } - ], - "Tab": [ + "index": 2640 + }, { - "filePath": "src/Notifications/NotificationTabs.jsx", - "line": 46, - "column": 12, - "index": 1679 - } - ], - "ProductTour": [ + "filePath": "src/Configuration/Customers/CustomerDataTable/CustomersPage.jsx", + "line": 109, + "column": 20, + "index": 3323 + }, { - "filePath": "src/Notifications/tours/NotificationTour.jsx", - "line": 18, + "filePath": "src/Configuration/Customers/CustomerDetailView/EnterpriseCustomerUsersTable.jsx", + "line": 20, "column": 6, - "index": 508 - } - ], - "Tooltip": [ + "index": 678 + }, { - "filePath": "src/studio-header/CourseLockUp.jsx", - "line": 21, + "filePath": "src/Configuration/Provisioning/DashboardDataTable/DashboardDataTable.jsx", + "line": 49, "column": 6, - "index": 386 - } - ], - "Container": [ + "index": 1741 + }, { - "filePath": "src/studio-header/HeaderBody.jsx", - "line": 47, - "column": 4, - "index": 801 + "filePath": "src/users/account-actions/PasswordHistory.jsx", + "line": 71, + "column": 10, + "index": 1860 } ], - "ActionRow": [ + "DataTable.Table": [ { - "filePath": "src/studio-header/HeaderBody.jsx", - "line": 48, - "column": 6, - "index": 848 + "filePath": "src/Configuration/Customers/CustomerDataTable/CustomerDetailSubComponent.jsx", + "line": 86, + "column": 8, + "index": 2633 } ], - "Row": [ + "useToggle": [ { - "filePath": "src/studio-header/HeaderBody.jsx", - "line": 50, - "column": 10, - "index": 912 + "filePath": "src/Configuration/Customers/CustomerDetailView/CustomerCard.jsx", + "line": 13, + "column": 53, + "index": 650 }, { - "filePath": "src/studio-header/HeaderBody.jsx", - "line": 68, - "column": 16, - "index": 1495 - } - ], - "ActionRow.Spacer": [ + "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormInstructionAlert.jsx", + "line": 8, + "column": 28, + "index": 374 + }, { - "filePath": "src/studio-header/HeaderBody.jsx", - "line": 83, - "column": 16, - "index": 1905 + "filePath": "src/Configuration/Provisioning/SubsidyEditView/CancelButton.jsx", + "line": 13, + "column": 32, + "index": 378 }, { - "filePath": "src/studio-header/HeaderBody.jsx", - "line": 98, - "column": 8, - "index": 2393 + "filePath": "src/users/CourseReset.jsx", + "line": 19, + "column": 32, + "index": 618 } ], - "Nav": [ + "Card": [ { - "filePath": "src/studio-header/HeaderBody.jsx", - "line": 87, - "column": 14, - "index": 2009 + "filePath": "src/Configuration/Customers/CustomerDetailView/CustomerCard.jsx", + "line": 22, + "column": 6, + "index": 830 }, { - "filePath": "src/studio-header/HeaderBody.jsx", - "line": 99, - "column": 8, - "index": 2422 - } - ], - "useToggle": [ - { - "filePath": "src/studio-header/MobileHeader.jsx", + "filePath": "src/Configuration/Customers/CustomerDetailView/CustomerViewCard.jsx", "line": 11, - "column": 36, - "index": 310 - } - ], - "ModalPopup": [ + "column": 2, + "index": 197 + }, { - "filePath": "src/studio-header/MobileHeader.jsx", - "line": 23, - "column": 6, - "index": 570 - } - ], - "Collapsible": [ + "filePath": "src/Configuration/Customers/CustomerDetailView/LearnerCreditPlanCard.jsx", + "line": 20, + "column": 4, + "index": 586 + }, { - "filePath": "src/studio-header/MobileMenu.jsx", - "line": 16, - "column": 10, - "index": 408 - } - ], - "DropdownButton": [ + "filePath": "src/Configuration/Customers/CustomerDetailView/SubscriptionPlanCard.jsx", + "line": 19, + "column": 4, + "index": 598 + }, { - "filePath": "src/studio-header/NavDropdownMenu.jsx", - "line": 13, - "column": 2, - "index": 193 + "filePath": "src/FeatureBasedEnrollments/FeatureBasedEnrollmentCard.jsx", + "line": 10, + "column": 4, + "index": 242 + }, + { + "filePath": "src/users/licenses/LicenseCard.jsx", + "line": 56, + "column": 6, + "index": 1463 + }, + { + "filePath": "src/users/SingleSignOnRecordCard.jsx", + "line": 95, + "column": 6, + "index": 2786 } ], - "Avatar": [ + "Card.Section": [ { - "filePath": "src/studio-header/UserMenu.jsx", - "line": 28, - "column": 4, - "index": 607 - } - ] - } - }, - { - "version": "21.5.6", - "name": "@edx/frontend-component-header", - "repository": { - "type": "git", - "url": "git+https://github.com/openedx/frontend-component-header.git" - }, - "folderName": "frontend-component-header", - "usages": { - "Button": [ + "filePath": "src/Configuration/Customers/CustomerDetailView/CustomerCard.jsx", + "line": 23, + "column": 8, + "index": 877 + }, { - "filePath": "src/learning-header/AnonymousUserMenu.jsx", + "filePath": "src/Configuration/Customers/CustomerDetailView/CustomerViewCard.jsx", "line": 12, "column": 4, - "index": 362 + "index": 225 }, { - "filePath": "src/learning-header/AnonymousUserMenu.jsx", - "line": 19, + "filePath": "src/Configuration/Customers/CustomerDetailView/CustomerViewCard.jsx", + "line": 16, "column": 4, - "index": 615 + "index": 381 }, { - "filePath": "src/studio-header/HeaderBody.jsx", - "line": 56, - "column": 14, - "index": 1060 + "filePath": "src/Configuration/Customers/CustomerDetailView/LearnerCreditPlanCard.jsx", + "line": 21, + "column": 6, + "index": 616 + }, + { + "filePath": "src/Configuration/Customers/CustomerDetailView/SubscriptionPlanCard.jsx", + "line": 20, + "column": 6, + "index": 628 + }, + { + "filePath": "src/FeatureBasedEnrollments/FeatureBasedEnrollmentCard.jsx", + "line": 21, + "column": 6, + "index": 534 + }, + { + "filePath": "src/users/licenses/LicenseCard.jsx", + "line": 64, + "column": 8, + "index": 1692 + }, + { + "filePath": "src/users/licenses/LicenseCard.jsx", + "line": 83, + "column": 8, + "index": 2279 + }, + { + "filePath": "src/users/SingleSignOnRecordCard.jsx", + "line": 103, + "column": 8, + "index": 3053 + }, + { + "filePath": "src/users/SingleSignOnRecordCard.jsx", + "line": 134, + "column": 8, + "index": 3925 } ], - "Dropdown.Item": [ + "ActionRow": [ { - "filePath": "src/learning-header/AuthenticatedUserDropdown.jsx", - "line": 14, - "column": 4, - "index": 489 + "filePath": "src/Configuration/Customers/CustomerDetailView/CustomerCard.jsx", + "line": 25, + "column": 12, + "index": 924 }, { - "filePath": "src/learning-header/AuthenticatedUserDropdown.jsx", - "line": 31, - "column": 10, - "index": 1166 + "filePath": "src/Configuration/Customers/CustomerDetailView/CustomerDetailModal.jsx", + "line": 119, + "column": 8, + "index": 3992 }, { - "filePath": "src/learning-header/AuthenticatedUserDropdown.jsx", - "line": 34, + "filePath": "src/Configuration/Customers/CustomerDetailView/LearnerCreditPlanCard.jsx", + "line": 24, "column": 10, - "index": 1328 + "index": 689 }, { - "filePath": "src/learning-header/AuthenticatedUserDropdown.jsx", - "line": 38, - "column": 12, - "index": 1521 + "filePath": "src/Configuration/Customers/CustomerDetailView/SubscriptionPlanCard.jsx", + "line": 23, + "column": 10, + "index": 701 }, { - "filePath": "src/learning-header/AuthenticatedUserDropdown.jsx", - "line": 42, - "column": 10, - "index": 1684 + "filePath": "src/Configuration/Provisioning/DashboardHeader.jsx", + "line": 20, + "column": 4, + "index": 523 }, { - "filePath": "src/studio-header/NavDropdownMenu.jsx", + "filePath": "src/Configuration/Provisioning/ProvisioningForm/CustomCatalog/ProvisioningFormDefineCustomCatalogHeader.jsx", "line": 20, "column": 6, - "index": 331 - } - ], - "Dropdown": [ + "index": 653 + }, { - "filePath": "src/learning-header/AuthenticatedUserDropdown.jsx", - "line": 22, - "column": 6, - "index": 761 - } - ], - "Dropdown.Toggle": [ + "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormSubmissionButton.jsx", + "line": 253, + "column": 4, + "index": 11167 + }, { - "filePath": "src/learning-header/AuthenticatedUserDropdown.jsx", - "line": 23, + "filePath": "src/Configuration/Provisioning/SubsidyDetailView/SubsidyDetailViewContainer.jsx", + "line": 14, "column": 8, - "index": 811 - } - ], - "Dropdown.Menu": [ + "index": 542 + }, { - "filePath": "src/learning-header/AuthenticatedUserDropdown.jsx", - "line": 29, + "filePath": "src/Configuration/Provisioning/SubsidyEditView/CancelButton.jsx", + "line": 53, + "column": 10, + "index": 1374 + }, + { + "filePath": "src/Configuration/Provisioning/SubsidyEditView/SubsidyEditViewContainer.jsx", + "line": 19, "column": 8, - "index": 1078 - } - ], - "OverlayTrigger": [ + "index": 595 + }, { - "filePath": "src/studio-header/CourseLockUp.jsx", - "line": 18, - "column": 2, - "index": 326 - } - ], - "Tooltip": [ + "filePath": "src/users/account-actions/CancelRetirement.jsx", + "line": 71, + "column": 10, + "index": 2148 + }, { - "filePath": "src/studio-header/CourseLockUp.jsx", - "line": 21, - "column": 6, - "index": 386 - } - ], - "Container": [ + "filePath": "src/users/account-actions/PasswordHistory.jsx", + "line": 78, + "column": 10, + "index": 2090 + }, { - "filePath": "src/studio-header/HeaderBody.jsx", - "line": 47, - "column": 4, - "index": 801 - } - ], - "ActionRow": [ + "filePath": "src/users/account-actions/ResetPassword.jsx", + "line": 74, + "column": 10, + "index": 2221 + }, { - "filePath": "src/studio-header/HeaderBody.jsx", - "line": 48, - "column": 6, - "index": 848 - } - ], - "Row": [ + "filePath": "src/users/account-actions/RetireUser.jsx", + "line": 86, + "column": 10, + "index": 2665 + }, { - "filePath": "src/studio-header/HeaderBody.jsx", - "line": 50, + "filePath": "src/users/account-actions/TogglePasswordStatus.jsx", + "line": 64, "column": 10, - "index": 912 + "index": 2182 }, { - "filePath": "src/studio-header/HeaderBody.jsx", - "line": 68, - "column": 16, - "index": 1495 - } - ], - "ActionRow.Spacer": [ + "filePath": "src/users/CourseReset.jsx", + "line": 126, + "column": 14, + "index": 3427 + }, { - "filePath": "src/studio-header/HeaderBody.jsx", - "line": 83, - "column": 16, - "index": 1905 + "filePath": "src/users/courseSummary/CourseSummary.jsx", + "line": 169, + "column": 8, + "index": 4636 }, { - "filePath": "src/studio-header/HeaderBody.jsx", - "line": 98, + "filePath": "src/users/enrollments/Certificates.jsx", + "line": 210, "column": 8, - "index": 2393 - } - ], - "Nav": [ + "index": 6361 + }, { - "filePath": "src/studio-header/HeaderBody.jsx", - "line": 87, - "column": 14, - "index": 2009 + "filePath": "src/users/enrollments/ChangeEnrollmentForm.jsx", + "line": 157, + "column": 8, + "index": 4296 }, { - "filePath": "src/studio-header/HeaderBody.jsx", - "line": 99, + "filePath": "src/users/enrollments/CreateEnrollmentForm.jsx", + "line": 117, "column": 8, - "index": 2422 - } - ], - "useToggle": [ + "index": 3218 + }, { - "filePath": "src/studio-header/MobileHeader.jsx", - "line": 11, - "column": 36, - "index": 310 - } - ], - "ModalPopup": [ + "filePath": "src/users/entitlements/CreateEntitlementForm.jsx", + "line": 119, + "column": 8, + "index": 3356 + }, { - "filePath": "src/studio-header/MobileHeader.jsx", - "line": 23, - "column": 6, - "index": 570 - } - ], - "Collapsible": [ + "filePath": "src/users/entitlements/ExpireEntitlementForm.jsx", + "line": 114, + "column": 8, + "index": 3130 + }, { - "filePath": "src/studio-header/MobileMenu.jsx", - "line": 16, + "filePath": "src/users/entitlements/ReissueEntitlementForm.jsx", + "line": 112, + "column": 8, + "index": 3076 + }, + { + "filePath": "src/users/SingleSignOnRecordCard.jsx", + "line": 86, "column": 10, - "index": 408 - } - ], - "DropdownButton": [ + "index": 2555 + }, { - "filePath": "src/studio-header/NavDropdownMenu.jsx", - "line": 13, - "column": 2, - "index": 193 + "filePath": "src/users/VerifiedName.jsx", + "line": 184, + "column": 10, + "index": 5360 } ], - "Avatar": [ - { - "filePath": "src/studio-header/UserMenu.jsx", - "line": 28, - "column": 4, - "index": 607 - } - ] - } - }, - { - "version": "20.45.0", - "name": "@edx/frontend-enterprise-catalog-search", - "repository": { - "type": "git", - "url": "git+https://github.com/openedx/frontend-enterprise.git" - }, - "folderName": "catalog-search", - "usages": { "Button": [ { - "filePath": "src/ClearCurrentRefinements.jsx", - "line": 25, - "column": 6, - "index": 787 + "filePath": "src/Configuration/Customers/CustomerDetailView/CustomerCard.jsx", + "line": 26, + "column": 14, + "index": 950 }, { - "filePath": "src/CurrentRefinements.jsx", - "line": 107, + "filePath": "src/Configuration/Customers/CustomerDetailView/CustomerCard.jsx", + "line": 27, + "column": 14, + "index": 1016 + }, + { + "filePath": "src/Configuration/Customers/CustomerDetailView/CustomerDetailModal.jsx", + "line": 123, "column": 10, - "index": 4247 + "index": 4140 }, { - "filePath": "src/MobileFilterMenu.jsx", - "line": 20, + "filePath": "src/Configuration/Customers/CustomerDetailView/CustomerViewCard.jsx", + "line": 21, "column": 8, - "index": 686 + "index": 544 }, { - "filePath": "src/MobileFilterMenu.jsx", - "line": 55, - "column": 14, - "index": 1974 + "filePath": "src/Configuration/Customers/CustomerDetailView/LearnerCreditPlanCard.jsx", + "line": 25, + "column": 12, + "index": 713 }, { - "filePath": "src/MobileFilterMenu.jsx", - "line": 74, - "column": 16, - "index": 2682 - } - ], - "Badge": [ + "filePath": "src/Configuration/Customers/CustomerDetailView/LearnerCreditPlanCard.jsx", + "line": 34, + "column": 12, + "index": 1038 + }, { - "filePath": "src/CurrentRefinements.jsx", - "line": 81, - "column": 10, - "index": 2964 + "filePath": "src/Configuration/Customers/CustomerDetailView/SubscriptionPlanCard.jsx", + "line": 24, + "column": 12, + "index": 725 }, { - "filePath": "src/CurrentRefinements.jsx", - "line": 95, - "column": 10, - "index": 3652 + "filePath": "src/Configuration/Customers/CustomerDetailView/SubscriptionPlanCard.jsx", + "line": 32, + "column": 12, + "index": 1034 }, { - "filePath": "src/FacetItem.jsx", - "line": 22, + "filePath": "src/Configuration/Provisioning/DashboardHeader.jsx", + "line": 23, "column": 6, - "index": 686 - } - ], - "CloseSmall": [ + "index": 601 + }, { - "filePath": "src/CurrentRefinements.jsx", - "line": 88, - "column": 12, - "index": 3370 - } - ], - "Dropdown": [ + "filePath": "src/Configuration/Provisioning/ErrorPage/ErrorPageButton.jsx", + "line": 7, + "column": 2, + "index": 157 + }, { - "filePath": "src/FacetDropdown.jsx", - "line": 16, - "column": 4, - "index": 314 + "filePath": "src/Configuration/Provisioning/ProvisioningForm/CustomCatalog/ProvisioningFormCustomCatalogDropdown.jsx", + "line": 129, + "column": 8, + "index": 4876 }, { - "filePath": "src/LearningTypeRadioFacet.jsx", - "line": 29, + "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormSubmissionButton.jsx", + "line": 260, "column": 6, - "index": 1244 - } - ], - "Dropdown.Toggle": [ + "index": 11421 + }, { - "filePath": "src/FacetDropdown.jsx", + "filePath": "src/Configuration/Provisioning/SubsidyDetailView/EditButton.jsx", "line": 17, - "column": 6, - "index": 401 + "column": 4, + "index": 465 }, { - "filePath": "src/LearningTypeRadioFacet.jsx", - "line": 30, - "column": 8, - "index": 1302 - } - ], - "Dropdown.Menu": [ - { - "filePath": "src/FacetDropdown.jsx", - "line": 27, + "filePath": "src/Configuration/Provisioning/SubsidyEditView/CancelButton.jsx", + "line": 29, "column": 6, - "index": 739 + "index": 776 }, { - "filePath": "src/LearningTypeRadioFacet.jsx", - "line": 37, - "column": 8, - "index": 1528 - } - ], - "Dropdown.Item": [ - { - "filePath": "src/FacetItem.jsx", - "line": 11, - "column": 2, - "index": 299 + "filePath": "src/Configuration/Provisioning/SubsidyEditView/CancelButton.jsx", + "line": 54, + "column": 12, + "index": 1398 }, { - "filePath": "src/LearningTypeRadioFacet.jsx", - "line": 38, + "filePath": "src/FeatureBasedEnrollments/FeatureBasedEnrollmentIndexPage.jsx", + "line": 101, "column": 10, - "index": 1554 + "index": 3361 }, { - "filePath": "src/LearningTypeRadioFacet.jsx", - "line": 50, + "filePath": "src/ProgramEnrollments/LinkProgramEnrollments.jsx", + "line": 76, "column": 10, - "index": 2032 + "index": 2378 }, { - "filePath": "src/LearningTypeRadioFacet.jsx", - "line": 62, + "filePath": "src/ProgramEnrollments/ProgramInspector/ProgramInspector.jsx", + "line": 157, "column": 10, - "index": 2578 + "index": 5141 }, { - "filePath": "src/LearningTypeRadioFacet.jsx", - "line": 76, - "column": 14, - "index": 3187 - } - ], - "Input": [ + "filePath": "src/userMessages/Alert.jsx", + "line": 49, + "column": 22, + "index": 1258 + }, { - "filePath": "src/FacetItem.jsx", - "line": 12, - "column": 4, - "index": 378 + "filePath": "src/users/account-actions/CancelRetirement.jsx", + "line": 48, + "column": 6, + "index": 1418 }, { - "filePath": "src/LearningTypeRadioFacet.jsx", - "line": 39, - "column": 12, - "index": 1641 + "filePath": "src/users/account-actions/CancelRetirement.jsx", + "line": 80, + "column": 18, + "index": 2385 }, { - "filePath": "src/LearningTypeRadioFacet.jsx", + "filePath": "src/users/account-actions/PasswordHistory.jsx", + "line": 48, + "column": 8, + "index": 1186 + }, + { + "filePath": "src/users/account-actions/ResetPassword.jsx", "line": 51, - "column": 12, - "index": 2119 + "column": 6, + "index": 1507 }, { - "filePath": "src/LearningTypeRadioFacet.jsx", - "line": 63, - "column": 12, - "index": 2665 + "filePath": "src/users/account-actions/ResetPassword.jsx", + "line": 82, + "column": 16, + "index": 2439 }, { - "filePath": "src/LearningTypeRadioFacet.jsx", - "line": 77, + "filePath": "src/users/account-actions/RetireUser.jsx", + "line": 61, + "column": 6, + "index": 1914 + }, + { + "filePath": "src/users/account-actions/RetireUser.jsx", + "line": 94, "column": 16, - "index": 3278 + "index": 2883 }, { - "filePath": "src/TypeaheadFacetDropdown.jsx", - "line": 26, - "column": 8, - "index": 649 - } - ], - "ArrowDropDown": [ + "filePath": "src/users/account-actions/TogglePasswordStatus.jsx", + "line": 28, + "column": 6, + "index": 738 + }, { - "filePath": "src/MobileFilterMenu.jsx", - "line": 32, + "filePath": "src/users/account-actions/TogglePasswordStatus.jsx", + "line": 70, + "column": 12, + "index": 2345 + }, + { + "filePath": "src/users/CourseReset.jsx", + "line": 112, "column": 10, - "index": 1171 - } - ], - "Close": [ + "index": 3093 + }, { - "filePath": "src/MobileFilterMenu.jsx", - "line": 60, + "filePath": "src/users/CourseReset.jsx", + "line": 127, "column": 16, - "index": 2155 - } - ], - "SearchField.Advanced": [ + "index": 3455 + }, { - "filePath": "src/SearchBox.jsx", - "line": 151, - "column": 6, - "index": 5508 - } - ], - "SearchField.Input": [ + "filePath": "src/users/CourseReset.jsx", + "line": 134, + "column": 16, + "index": 3695 + }, { - "filePath": "src/SearchBox.jsx", - "line": 162, + "filePath": "src/users/CourseReset.jsx", + "line": 165, "column": 8, - "index": 5854 - } - ], - "SearchField.ClearButton": [ + "index": 4656 + }, { - "filePath": "src/SearchBox.jsx", + "filePath": "src/users/enrollments/Certificates.jsx", + "line": 159, + "column": 24, + "index": 4988 + }, + { + "filePath": "src/users/enrollments/Certificates.jsx", "line": 169, + "column": 24, + "index": 5386 + }, + { + "filePath": "src/users/enrollments/ChangeEnrollmentForm.jsx", + "line": 166, + "column": 14, + "index": 4567 + }, + { + "filePath": "src/users/enrollments/CreateEnrollmentForm.jsx", + "line": 126, + "column": 14, + "index": 3489 + }, + { + "filePath": "src/users/enrollments/Enrollments.jsx", + "line": 291, "column": 8, - "index": 6115 - } - ], - "SearchField.SubmitButton": [ + "index": 9343 + }, { - "filePath": "src/SearchBox.jsx", - "line": 170, + "filePath": "src/users/entitlements/CreateEntitlementForm.jsx", + "line": 128, + "column": 14, + "index": 3628 + }, + { + "filePath": "src/users/entitlements/Entitlements.jsx", + "line": 250, "column": 8, - "index": 6198 - } - ], - "MediaQuery": [ + "index": 7921 + }, { - "filePath": "src/SearchFilters.jsx", - "line": 60, - "column": 6, - "index": 1852 + "filePath": "src/users/entitlements/ExpireEntitlementForm.jsx", + "line": 123, + "column": 14, + "index": 3402 }, { - "filePath": "src/SearchFilters.jsx", - "line": 65, - "column": 6, - "index": 2026 - } - ], - "breakpoints": [ + "filePath": "src/users/entitlements/ReissueEntitlementForm.jsx", + "line": 121, + "column": 14, + "index": 3348 + }, { - "filePath": "src/SearchFilters.jsx", - "line": 60, - "column": 28, - "index": 1874 + "filePath": "src/users/LearnerCredentials.jsx", + "line": 26, + "column": 10, + "index": 817 }, { - "filePath": "src/SearchFilters.jsx", - "line": 65, - "column": 28, - "index": 2048 + "filePath": "src/users/LearnerCredentials.jsx", + "line": 52, + "column": 8, + "index": 1451 + }, + { + "filePath": "src/users/LearnerRecords.jsx", + "line": 73, + "column": 18, + "index": 2315 }, { - "filePath": "src/tests/SearchFilters.test.jsx", - "line": 13, - "column": 47, - "index": 494 - } - ], - "Container": [ - { - "filePath": "src/SearchHeader.jsx", - "line": 41, - "column": 6, - "index": 1183 - } - ], - "Row": [ + "filePath": "src/users/SingleSignOnRecordCard.jsx", + "line": 115, + "column": 14, + "index": 3500 + }, { - "filePath": "src/SearchHeader.jsx", - "line": 42, + "filePath": "src/users/UserSearch.jsx", + "line": 22, "column": 8, - "index": 1224 - } - ], - "Col": [ + "index": 683 + }, { - "filePath": "src/SearchHeader.jsx", - "line": 43, + "filePath": "src/users/VerifiedName.jsx", + "line": 106, "column": 10, - "index": 1262 + "index": 2808 }, { - "filePath": "src/SearchHeader.jsx", - "line": 62, + "filePath": "src/users/VerifiedName.jsx", + "line": 127, "column": 10, - "index": 1984 + "index": 3681 } ], - "Icon": [ + "Launch": [ { - "filePath": "src/SearchPagination.jsx", - "line": 21, - "column": 10, - "index": 619 + "filePath": "src/Configuration/Customers/CustomerDetailView/CustomerCard.jsx", + "line": 34, + "column": 27, + "index": 1356 }, { - "filePath": "src/SearchPagination.jsx", - "line": 27, - "column": 10, - "index": 759 - } - ], - "ArrowBackIos": [ - { - "filePath": "src/SearchPagination.jsx", - "line": 21, - "column": 21, - "index": 630 - } - ], - "ArrowForwardIos": [ + "filePath": "src/Configuration/Customers/CustomerDetailView/CustomerDetailModal.jsx", + "line": 128, + "column": 23, + "index": 4366 + }, { - "filePath": "src/SearchPagination.jsx", - "line": 27, - "column": 21, - "index": 770 - } - ], - "Pagination": [ + "filePath": "src/Configuration/Customers/CustomerDetailView/LearnerCreditPlanCard.jsx", + "line": 41, + "column": 25, + "index": 1332 + }, { - "filePath": "src/SearchPagination.jsx", - "line": 52, - "column": 4, - "index": 1224 + "filePath": "src/Configuration/Customers/CustomerDetailView/SubscriptionPlanCard.jsx", + "line": 38, + "column": 25, + "index": 1308 } ], - "ResponsiveContext.Provider": [ + "ModalDialog": [ { - "filePath": "src/tests/SearchFilters.test.jsx", + "filePath": "src/Configuration/Customers/CustomerDetailView/CustomerDetailModal.jsx", "line": 15, "column": 4, - "index": 545 - } - ] - } - }, - { - "version": "12.2.0", - "name": "@edx/frontend-learner-portal-base", - "repository": "https://github.com/edx/frontend-learner-portal-base", - "folderName": "frontend-learner-portal-base", - "usages": { - "Dropdown.Deprecated": [ - { - "filePath": "src/components/course-enrollments/course-cards/BaseCourseCard.jsx", - "line": 150, - "column": 10, - "index": 3778 - } - ], - "Modal": [ + "index": 486 + }, { - "filePath": "src/components/course-enrollments/course-cards/email-settings/EmailSettingsModal.jsx", - "line": 111, + "filePath": "src/Configuration/Provisioning/SubsidyEditView/CancelButton.jsx", + "line": 32, "column": 6, - "index": 2819 + "index": 888 }, { - "filePath": "src/components/course-enrollments/course-cards/mark-complete-modal/MarkCompleteModal.jsx", - "line": 74, + "filePath": "src/users/account-actions/CancelRetirement.jsx", + "line": 55, "column": 6, - "index": 2189 - } - ], - "StatusAlert": [ - { - "filePath": "src/components/course-enrollments/course-cards/email-settings/EmailSettingsModal.jsx", - "line": 116, - "column": 14, - "index": 2938 + "index": 1628 }, { - "filePath": "src/components/course-enrollments/course-cards/mark-complete-modal/ModalError.jsx", - "line": 11, - "column": 4, - "index": 412 + "filePath": "src/users/account-actions/PasswordHistory.jsx", + "line": 58, + "column": 6, + "index": 1413 }, { - "filePath": "src/components/course-enrollments/CourseEnrollments.jsx", - "line": 56, - "column": 4, - "index": 1718 + "filePath": "src/users/account-actions/ResetPassword.jsx", + "line": 58, + "column": 6, + "index": 1708 }, { - "filePath": "src/components/course-enrollments/CourseEnrollments.jsx", - "line": 76, + "filePath": "src/users/account-actions/RetireUser.jsx", + "line": 70, "column": 6, - "index": 2241 - } - ], - "Input": [ - { - "filePath": "src/components/course-enrollments/course-cards/email-settings/EmailSettingsModal.jsx", - "line": 133, - "column": 14, - "index": 3527 - } - ], - "StatefulButton": [ - { - "filePath": "src/components/course-enrollments/course-cards/email-settings/EmailSettingsModal.jsx", - "line": 149, - "column": 10, - "index": 4151 + "index": 2156 }, { - "filePath": "src/components/course-enrollments/course-cards/mark-complete-modal/MarkCompleteModal.jsx", - "line": 78, - "column": 10, - "index": 2294 - } - ], - "Button": [ + "filePath": "src/users/account-actions/TogglePasswordStatus.jsx", + "line": 36, + "column": 6, + "index": 1074 + }, { - "filePath": "src/components/course-enrollments/course-cards/UpcomingCourseCard.jsx", - "line": 10, + "filePath": "src/users/courseSummary/CourseSummary.jsx", + "line": 146, "column": 4, - "index": 256 - } - ], - "breakpoints": [ - { - "filePath": "src/components/course-enrollments/CourseEnrollments.jsx", - "line": 126, - "column": 30, - "index": 3586 + "index": 3985 }, { - "filePath": "src/components/course-enrollments/tests/CourseEnrollments.test.jsx", - "line": 161, - "column": 26, - "index": 4917 + "filePath": "src/users/enrollments/Certificates.jsx", + "line": 191, + "column": 4, + "index": 5880 }, { - "filePath": "src/components/course-enrollments/tests/CourseEnrollments.test.jsx", - "line": 174, - "column": 26, - "index": 5374 - } - ], - "Collapsible": [ - { - "filePath": "src/components/course-enrollments/CourseSection.jsx", - "line": 80, - "column": 8, - "index": 1990 - } - ] - } - }, - { - "version": "21.5.6", - "name": "@edx/frontend-lib-content-components", - "repository": { - "type": "git", - "url": "git+https://github.com/edx/frontend-lib-content-components.git" - }, - "folderName": "frontend-lib-content-components", - "usages": { - "Toast": [ - { - "filePath": "src/editors/containers/EditorContainer/components/EditorFooter/index.jsx", - "line": 33, - "column": 8, - "index": 728 + "filePath": "src/users/enrollments/ChangeEnrollmentForm.jsx", + "line": 137, + "column": 4, + "index": 3758 }, { - "filePath": "src/editors/containers/TextEditor/index.jsx", - "line": 67, - "column": 8, - "index": 1675 - } - ], - "ModalDialog.Footer": [ - { - "filePath": "src/editors/containers/EditorContainer/components/EditorFooter/index.jsx", - "line": 38, - "column": 6, - "index": 863 + "filePath": "src/users/enrollments/CreateEnrollmentForm.jsx", + "line": 97, + "column": 4, + "index": 2676 }, { - "filePath": "src/editors/containers/ProblemEditor/components/SelectTypeModal/SelectTypeWrapper/SelectTypeFooter.jsx", - "line": 26, + "filePath": "src/users/entitlements/CreateEntitlementForm.jsx", + "line": 99, "column": 4, - "index": 564 + "index": 2810 }, { - "filePath": "src/editors/containers/VideoEditor/components/BaseModal.jsx", - "line": 33, + "filePath": "src/users/entitlements/ExpireEntitlementForm.jsx", + "line": 94, "column": 4, - "index": 567 + "index": 2589 }, { - "filePath": "src/editors/sharedComponents/BaseModal/index.jsx", - "line": 45, + "filePath": "src/users/entitlements/ReissueEntitlementForm.jsx", + "line": 92, "column": 4, - "index": 935 + "index": 2531 + }, + { + "filePath": "src/users/SingleSignOnRecordCard.jsx", + "line": 66, + "column": 6, + "index": 1922 + }, + { + "filePath": "src/users/VerifiedName.jsx", + "line": 162, + "column": 6, + "index": 4696 } ], - "ActionRow": [ + "ModalDialog.Header": [ { - "filePath": "src/editors/containers/EditorContainer/components/EditorFooter/index.jsx", - "line": 39, + "filePath": "src/Configuration/Customers/CustomerDetailView/CustomerDetailModal.jsx", + "line": 23, + "column": 6, + "index": 661 + }, + { + "filePath": "src/Configuration/Provisioning/SubsidyEditView/CancelButton.jsx", + "line": 40, "column": 8, - "index": 914 + "index": 1072 }, { - "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/index.jsx", - "line": 63, - "column": 10, - "index": 1898 + "filePath": "src/users/account-actions/CancelRetirement.jsx", + "line": 62, + "column": 8, + "index": 1832 }, { - "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/GroupFeedback/GroupFeedbackRow.jsx", - "line": 21, - "column": 4, - "index": 484 + "filePath": "src/users/account-actions/PasswordHistory.jsx", + "line": 65, + "column": 8, + "index": 1618 }, { - "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/HintRow.jsx", - "line": 22, - "column": 2, - "index": 494 + "filePath": "src/users/account-actions/ResetPassword.jsx", + "line": 65, + "column": 8, + "index": 1903 }, { - "filePath": "src/editors/containers/ProblemEditor/components/SelectTypeModal/content/AdvanceTypeSelect.jsx", - "line": 29, + "filePath": "src/users/account-actions/RetireUser.jsx", + "line": 77, "column": 8, - "index": 750 + "index": 2337 }, { - "filePath": "src/editors/containers/ProblemEditor/components/SelectTypeModal/content/AdvanceTypeSelect.jsx", - "line": 46, - "column": 16, - "index": 1441 + "filePath": "src/users/account-actions/TogglePasswordStatus.jsx", + "line": 42, + "column": 8, + "index": 1263 }, { - "filePath": "src/editors/containers/ProblemEditor/components/SelectTypeModal/content/AdvanceTypeSelect.jsx", - "line": 69, - "column": 14, - "index": 2487 + "filePath": "src/users/courseSummary/CourseSummary.jsx", + "line": 156, + "column": 6, + "index": 4187 }, { - "filePath": "src/editors/containers/ProblemEditor/components/SelectTypeModal/SelectTypeWrapper/SelectTypeFooter.jsx", - "line": 27, + "filePath": "src/users/enrollments/Certificates.jsx", + "line": 201, "column": 6, - "index": 616 + "index": 6079 }, { - "filePath": "src/editors/containers/VideoEditor/components/BaseModal.jsx", - "line": 34, + "filePath": "src/users/enrollments/ChangeEnrollmentForm.jsx", + "line": 148, "column": 6, - "index": 594 + "index": 4004 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/HandoutWidget/index.jsx", - "line": 68, - "column": 10, - "index": 2046 + "filePath": "src/users/enrollments/CreateEnrollmentForm.jsx", + "line": 108, + "column": 6, + "index": 2922 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", - "line": 49, - "column": 18, - "index": 1327 + "filePath": "src/users/entitlements/CreateEntitlementForm.jsx", + "line": 110, + "column": 6, + "index": 3057 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", - "line": 68, - "column": 18, - "index": 2131 + "filePath": "src/users/entitlements/ExpireEntitlementForm.jsx", + "line": 105, + "column": 6, + "index": 2836 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", - "line": 93, - "column": 18, - "index": 3202 + "filePath": "src/users/entitlements/ReissueEntitlementForm.jsx", + "line": 103, + "column": 6, + "index": 2780 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", - "line": 119, - "column": 18, - "index": 4308 + "filePath": "src/users/SingleSignOnRecordCard.jsx", + "line": 72, + "column": 8, + "index": 2106 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseSelector.jsx", - "line": 36, + "filePath": "src/users/VerifiedName.jsx", + "line": 171, + "column": 8, + "index": 4918 + } + ], + "ModalDialog.Body": [ + { + "filePath": "src/Configuration/Customers/CustomerDetailView/CustomerDetailModal.jsx", + "line": 29, "column": 6, - "index": 908 + "index": 770 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/ImportTranscriptCard.jsx", - "line": 24, - "column": 4, - "index": 568 + "filePath": "src/Configuration/Provisioning/SubsidyEditView/CancelButton.jsx", + "line": 46, + "column": 8, + "index": 1226 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/index.jsx", - "line": 126, - "column": 12, - "index": 3792 + "filePath": "src/users/account-actions/CancelRetirement.jsx", + "line": 67, + "column": 8, + "index": 2023 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/LanguageSelector.jsx", - "line": 66, + "filePath": "src/users/account-actions/PasswordHistory.jsx", + "line": 70, "column": 8, - "index": 2019 + "index": 1814 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/LanguageSelector.jsx", - "line": 75, - "column": 6, - "index": 2225 + "filePath": "src/users/account-actions/ResetPassword.jsx", + "line": 70, + "column": 8, + "index": 2096 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/Transcript.jsx", - "line": 80, - "column": 10, - "index": 2413 + "filePath": "src/users/account-actions/RetireUser.jsx", + "line": 82, + "column": 8, + "index": 2540 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoSourceWidget/index.jsx", - "line": 118, + "filePath": "src/users/account-actions/TogglePasswordStatus.jsx", + "line": 47, "column": 8, - "index": 3987 + "index": 1553 }, { - "filePath": "src/editors/sharedComponents/BaseModal/index.jsx", - "line": 46, + "filePath": "src/users/courseSummary/CourseSummary.jsx", + "line": 165, "column": 6, - "index": 962 - }, - { - "filePath": "src/editors/sharedComponents/SelectionModal/SearchSort.jsx", - "line": 33, - "column": 4, - "index": 707 + "index": 4505 }, { - "filePath": "src/editors/sharedComponents/TypeaheadDropdown/index.jsx", - "line": 188, + "filePath": "src/users/enrollments/Certificates.jsx", + "line": 206, "column": 6, - "index": 4786 - } - ], - "Hyperlink": [ - { - "filePath": "src/editors/containers/EditorContainer/components/EditorFooter/index.jsx", - "line": 44, - "column": 10, - "index": 1080 + "index": 6254 }, { - "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/ResetCard.jsx", - "line": 36, - "column": 10, - "index": 1427 + "filePath": "src/users/enrollments/ChangeEnrollmentForm.jsx", + "line": 153, + "column": 6, + "index": 4185 }, { - "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/ScoringCard.jsx", - "line": 83, - "column": 8, - "index": 2766 + "filePath": "src/users/enrollments/CreateEnrollmentForm.jsx", + "line": 113, + "column": 6, + "index": 3107 }, { - "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/ShowAnswerCard.jsx", - "line": 40, - "column": 10, - "index": 1135 + "filePath": "src/users/entitlements/CreateEntitlementForm.jsx", + "line": 115, + "column": 6, + "index": 3243 }, { - "filePath": "src/editors/containers/ProblemEditor/components/SelectTypeModal/content/AdvanceTypeSelect.jsx", - "line": 79, + "filePath": "src/users/entitlements/ExpireEntitlementForm.jsx", + "line": 110, "column": 6, - "index": 2887 + "index": 3018 }, { - "filePath": "src/editors/containers/ProblemEditor/components/SelectTypeModal/content/Preview.jsx", - "line": 35, + "filePath": "src/users/entitlements/ReissueEntitlementForm.jsx", + "line": 108, "column": 6, - "index": 1038 + "index": 2963 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDisplay.jsx", - "line": 31, + "filePath": "src/users/SingleSignOnRecordCard.jsx", + "line": 77, "column": 8, - "index": 832 + "index": 2291 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/SocialShareWidget/index.jsx", - "line": 75, + "filePath": "src/users/VerifiedName.jsx", + "line": 176, "column": 8, - "index": 2274 - }, - { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoPreviewWidget/index.jsx", - "line": 50, - "column": 14, - "index": 1666 + "index": 5113 } ], - "ActionRow.Spacer": [ + "Badge": [ { - "filePath": "src/editors/containers/EditorContainer/components/EditorFooter/index.jsx", - "line": 49, - "column": 10, - "index": 1316 + "filePath": "src/Configuration/Customers/CustomerDetailView/CustomerDetailModal.jsx", + "line": 30, + "column": 8, + "index": 797 }, { - "filePath": "src/editors/containers/ProblemEditor/components/SelectTypeModal/content/AdvanceTypeSelect.jsx", - "line": 31, - "column": 10, - "index": 947 + "filePath": "src/Configuration/Provisioning/DashboardDataTable/DashboardTableBadges.jsx", + "line": 9, + "column": 4, + "index": 176 }, { - "filePath": "src/editors/containers/ProblemEditor/components/SelectTypeModal/content/AdvanceTypeSelect.jsx", - "line": 35, - "column": 10, - "index": 1104 + "filePath": "src/FeatureBasedEnrollments/FeatureBasedEnrollmentCard.jsx", + "line": 16, + "column": 40, + "index": 388 }, { - "filePath": "src/editors/containers/ProblemEditor/components/SelectTypeModal/content/AdvanceTypeSelect.jsx", - "line": 50, - "column": 18, - "index": 1721 + "filePath": "src/FeatureBasedEnrollments/FeatureBasedEnrollmentCard.jsx", + "line": 16, + "column": 83, + "index": 431 }, { - "filePath": "src/editors/containers/ProblemEditor/components/SelectTypeModal/content/AdvanceTypeSelect.jsx", - "line": 73, - "column": 16, - "index": 2759 + "filePath": "src/users/licenses/LicenseCard.jsx", + "line": 67, + "column": 14, + "index": 1785 + } + ], + "ModalDialog.Footer": [ + { + "filePath": "src/Configuration/Customers/CustomerDetailView/CustomerDetailModal.jsx", + "line": 118, + "column": 6, + "index": 3963 }, { - "filePath": "src/editors/containers/ProblemEditor/components/SelectTypeModal/SelectTypeWrapper/SelectTypeFooter.jsx", - "line": 28, + "filePath": "src/Configuration/Provisioning/SubsidyEditView/CancelButton.jsx", + "line": 52, "column": 8, - "index": 636 + "index": 1343 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/HandoutWidget/index.jsx", + "filePath": "src/users/account-actions/CancelRetirement.jsx", "line": 70, - "column": 12, - "index": 2149 + "column": 8, + "index": 2117 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", - "line": 54, - "column": 20, - "index": 1618 + "filePath": "src/users/account-actions/PasswordHistory.jsx", + "line": 77, + "column": 8, + "index": 2059 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", + "filePath": "src/users/account-actions/ResetPassword.jsx", "line": 73, - "column": 20, - "index": 2386 + "column": 8, + "index": 2190 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", - "line": 98, - "column": 20, - "index": 3457 + "filePath": "src/users/account-actions/RetireUser.jsx", + "line": 85, + "column": 8, + "index": 2634 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", - "line": 124, - "column": 20, - "index": 4560 + "filePath": "src/users/account-actions/TogglePasswordStatus.jsx", + "line": 63, + "column": 8, + "index": 2151 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseSelector.jsx", - "line": 54, - "column": 12, - "index": 1683 + "filePath": "src/users/courseSummary/CourseSummary.jsx", + "line": 168, + "column": 6, + "index": 4607 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/ImportTranscriptCard.jsx", - "line": 26, + "filePath": "src/users/enrollments/Certificates.jsx", + "line": 209, "column": 6, - "index": 655 + "index": 6332 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/index.jsx", - "line": 147, - "column": 14, - "index": 4679 + "filePath": "src/users/enrollments/ChangeEnrollmentForm.jsx", + "line": 156, + "column": 6, + "index": 4267 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/LanguageSelector.jsx", - "line": 68, - "column": 10, - "index": 2088 + "filePath": "src/users/enrollments/CreateEnrollmentForm.jsx", + "line": 116, + "column": 6, + "index": 3189 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/LanguageSelector.jsx", - "line": 77, - "column": 8, - "index": 2310 + "filePath": "src/users/entitlements/CreateEntitlementForm.jsx", + "line": 118, + "column": 6, + "index": 3327 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/Transcript.jsx", - "line": 85, - "column": 12, - "index": 2544 + "filePath": "src/users/entitlements/ExpireEntitlementForm.jsx", + "line": 113, + "column": 6, + "index": 3101 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoSourceWidget/index.jsx", - "line": 139, - "column": 10, - "index": 4761 + "filePath": "src/users/entitlements/ReissueEntitlementForm.jsx", + "line": 111, + "column": 6, + "index": 3047 }, { - "filePath": "src/editors/sharedComponents/BaseModal/index.jsx", - "line": 48, + "filePath": "src/users/SingleSignOnRecordCard.jsx", + "line": 85, "column": 8, - "index": 1005 - }, - { - "filePath": "src/editors/sharedComponents/SelectionModal/SearchSort.jsx", - "line": 58, - "column": 23, - "index": 1438 - }, - { - "filePath": "src/editors/sharedComponents/SelectionModal/SearchSort.jsx", - "line": 98, - "column": 10, - "index": 2752 + "index": 2524 }, { - "filePath": "src/editors/sharedComponents/TypeaheadDropdown/index.jsx", - "line": 190, + "filePath": "src/users/VerifiedName.jsx", + "line": 183, "column": 8, - "index": 4894 + "index": 5329 } ], - "Button": [ - { - "filePath": "src/editors/containers/EditorContainer/components/EditorFooter/index.jsx", - "line": 50, - "column": 10, - "index": 1347 - }, + "ModalDialog.CloseButton": [ { - "filePath": "src/editors/containers/EditorContainer/components/EditorFooter/index.jsx", - "line": 57, + "filePath": "src/Configuration/Customers/CustomerDetailView/CustomerDetailModal.jsx", + "line": 120, "column": 10, - "index": 1600 + "index": 4014 }, { - "filePath": "src/editors/containers/EditorContainer/index.jsx", - "line": 39, - "column": 10, - "index": 1188 + "filePath": "src/Configuration/Provisioning/SubsidyEditView/CancelButton.jsx", + "line": 55, + "column": 12, + "index": 1518 }, { - "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/index.jsx", - "line": 64, + "filePath": "src/users/account-actions/CancelRetirement.jsx", + "line": 72, "column": 12, - "index": 1922 + "index": 2172 }, { - "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/index.jsx", - "line": 67, + "filePath": "src/users/account-actions/PasswordHistory.jsx", + "line": 79, "column": 12, - "index": 2099 + "index": 2114 }, { - "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/index.jsx", - "line": 94, + "filePath": "src/users/account-actions/ResetPassword.jsx", + "line": 75, "column": 12, - "index": 3125 + "index": 2245 }, { - "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/ResetCard.jsx", - "line": 42, - "column": 8, - "index": 1685 + "filePath": "src/users/account-actions/RetireUser.jsx", + "line": 87, + "column": 12, + "index": 2689 }, { - "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/ResetCard.jsx", - "line": 45, - "column": 8, - "index": 1879 + "filePath": "src/users/account-actions/TogglePasswordStatus.jsx", + "line": 65, + "column": 12, + "index": 2206 }, { - "filePath": "src/editors/containers/ProblemEditor/components/SelectTypeModal/content/ProblemTypeSelect.jsx", - "line": 39, - "column": 6, - "index": 1277 + "filePath": "src/users/courseSummary/CourseSummary.jsx", + "line": 170, + "column": 10, + "index": 4658 }, { - "filePath": "src/editors/containers/ProblemEditor/components/SelectTypeModal/SelectTypeWrapper/SelectTypeFooter.jsx", - "line": 29, - "column": 8, - "index": 665 + "filePath": "src/users/enrollments/Certificates.jsx", + "line": 211, + "column": 10, + "index": 6383 }, { - "filePath": "src/editors/containers/ProblemEditor/components/SelectTypeModal/SelectTypeWrapper/SelectTypeFooter.jsx", - "line": 36, - "column": 8, - "index": 904 + "filePath": "src/users/enrollments/ChangeEnrollmentForm.jsx", + "line": 158, + "column": 10, + "index": 4318 }, { - "filePath": "src/editors/containers/VideoEditor/components/SelectVideoModal.jsx", - "line": 41, - "column": 21, - "index": 1055 + "filePath": "src/users/enrollments/CreateEnrollmentForm.jsx", + "line": 118, + "column": 10, + "index": 3240 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/HandoutWidget/index.jsx", - "line": 101, + "filePath": "src/users/entitlements/CreateEntitlementForm.jsx", + "line": 120, "column": 10, - "index": 3472 + "index": 3378 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/index.jsx", - "line": 71, - "column": 12, - "index": 1973 + "filePath": "src/users/entitlements/ExpireEntitlementForm.jsx", + "line": 115, + "column": 10, + "index": 3152 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/ThumbnailWidget/index.jsx", - "line": 112, + "filePath": "src/users/entitlements/ReissueEntitlementForm.jsx", + "line": 113, "column": 10, - "index": 3441 + "index": 3098 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/ImportTranscriptCard.jsx", - "line": 34, - "column": 4, - "index": 858 + "filePath": "src/users/SingleSignOnRecordCard.jsx", + "line": 87, + "column": 12, + "index": 2579 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/index.jsx", - "line": 168, + "filePath": "src/users/VerifiedName.jsx", + "line": 185, + "column": 12, + "index": 5384 + } + ], + "Form.Switch": [ + { + "filePath": "src/Configuration/Customers/CustomerDetailView/CustomerPlanContainer.jsx", + "line": 44, + "column": 14, + "index": 1849 + } + ], + "Skeleton": [ + { + "filePath": "src/Configuration/Customers/CustomerDetailView/CustomerPlanContainer.jsx", + "line": 66, "column": 10, - "index": 5468 + "index": 2511 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/LanguageSelector.jsx", - "line": 89, - "column": 18, - "index": 2480 + "filePath": "src/Configuration/Customers/CustomerDetailView/CustomerViewContainer.jsx", + "line": 57, + "column": 13, + "index": 1861 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/Transcript.jsx", - "line": 61, - "column": 16, - "index": 1729 + "filePath": "src/Configuration/Customers/CustomerDetailView/CustomerViewContainer.jsx", + "line": 81, + "column": 10, + "index": 2542 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/Transcript.jsx", - "line": 64, - "column": 16, - "index": 1918 - }, + "filePath": "src/Configuration/Customers/CustomerDetailView/CustomerViewContainer.jsx", + "line": 84, + "column": 83, + "index": 2698 + } + ], + "Card.Footer": [ { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoSourceWidget/index.jsx", - "line": 143, + "filePath": "src/Configuration/Customers/CustomerDetailView/CustomerViewCard.jsx", + "line": 20, "column": 6, - "index": 4893 + "index": 522 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/index.jsx", - "line": 29, + "filePath": "src/FeatureBasedEnrollments/FeatureBasedEnrollmentCard.jsx", + "line": 39, "column": 6, - "index": 992 - }, + "index": 961 + } + ], + "Breadcrumb": [ { - "filePath": "src/editors/sharedComponents/Button/index.jsx", - "line": 12, - "column": 2, - "index": 319 - }, + "filePath": "src/Configuration/Customers/CustomerDetailView/CustomerViewContainer.jsx", + "line": 66, + "column": 10, + "index": 2007 + } + ], + "IconButton": [ { - "filePath": "src/editors/sharedComponents/CodeEditor/index.jsx", - "line": 32, - "column": 8, - "index": 726 + "filePath": "src/Configuration/Customers/CustomerDetailView/EnterpriseCustomerUserDetail.jsx", + "line": 25, + "column": 10, + "index": 770 }, { - "filePath": "src/editors/sharedComponents/ErrorBoundary/ErrorPage.jsx", - "line": 44, - "column": 14, - "index": 1431 + "filePath": "src/Configuration/Customers/CustomerDetailView/EnterpriseCustomerUserDetail.jsx", + "line": 38, + "column": 6, + "index": 1093 }, { - "filePath": "src/editors/sharedComponents/ErrorBoundary/ErrorPage.jsx", - "line": 48, - "column": 14, - "index": 1644 - }, + "filePath": "src/Configuration/Provisioning/DashboardDataTable/DashboardTableLinks.jsx", + "line": 42, + "column": 6, + "index": 1447 + } + ], + "Person": [ { - "filePath": "src/editors/sharedComponents/ErrorBoundary/ErrorPage.jsx", - "line": 52, - "column": 12, - "index": 1872 + "filePath": "src/Configuration/Customers/CustomerDetailView/EnterpriseCustomerUserDetail.jsx", + "line": 28, + "column": 17, + "index": 845 }, { - "filePath": "src/editors/sharedComponents/ImageUploadModal/ImageSettingsModal/index.jsx", - "line": 47, - "column": 8, - "index": 1484 - }, + "filePath": "src/Configuration/Customers/CustomerDetailView/EnterpriseCustomerUserDetail.jsx", + "line": 41, + "column": 13, + "index": 1156 + } + ], + "Chip": [ { - "filePath": "src/editors/sharedComponents/ImageUploadModal/ImageSettingsModal/index.jsx", - "line": 64, + "filePath": "src/Configuration/Customers/CustomerDetailView/EnterpriseCustomerUserDetail.jsx", + "line": 76, "column": 6, - "index": 1942 - }, - { - "filePath": "src/editors/sharedComponents/SelectionModal/index.jsx", - "line": 63, - "column": 8, - "index": 1349 + "index": 1939 }, { - "filePath": "src/editors/sharedComponents/SelectionModal/index.jsx", - "line": 71, - "column": 8, - "index": 1586 + "filePath": "src/Configuration/Customers/CustomerDetailView/EnterpriseCustomerUserDetail.jsx", + "line": 100, + "column": 4, + "index": 2529 }, { - "filePath": "src/editors/sharedComponents/SourceCodeModal/index.jsx", - "line": 30, - "column": 8, - "index": 622 + "filePath": "src/Configuration/Customers/CustomerDetailView/LearnerCreditPlanCard.jsx", + "line": 52, + "column": 23, + "index": 1546 }, { - "filePath": "src/editors/sharedComponents/TypeaheadDropdown/index.jsx", - "line": 192, - "column": 10, - "index": 4965 + "filePath": "src/Configuration/Customers/CustomerDetailView/SubscriptionPlanCard.jsx", + "line": 49, + "column": 23, + "index": 1522 } ], - "Spinner": [ - { - "filePath": "src/editors/containers/EditorContainer/components/EditorFooter/index.jsx", - "line": 63, - "column": 16, - "index": 1799 - }, + "Timelapse": [ { - "filePath": "src/editors/containers/GameEditor/index.jsx", - "line": 52, - "column": 12, - "index": 1273 + "filePath": "src/Configuration/Customers/CustomerDetailView/EnterpriseCustomerUserDetail.jsx", + "line": 77, + "column": 20, + "index": 1965 }, { - "filePath": "src/editors/containers/ProblemEditor/index.jsx", - "line": 34, - "column": 8, - "index": 1116 - }, + "filePath": "src/Configuration/Customers/CustomerDetailView/EnterpriseCustomerUserDetail.jsx", + "line": 101, + "column": 18, + "index": 2553 + } + ], + "DataTable.FilterStatus": [ { - "filePath": "src/editors/containers/ProblemEditor/index.test.jsx", - "line": 59, - "column": 45, - "index": 2003 - }, + "filePath": "src/Configuration/Provisioning/DashboardDataTable/DashboardDataTable.jsx", + "line": 20, + "column": 31, + "index": 869 + } + ], + "DjangoShort": [ { - "filePath": "src/editors/containers/ProblemEditor/index.test.jsx", - "line": 63, - "column": 45, - "index": 2254 - }, + "filePath": "src/Configuration/Provisioning/DashboardDataTable/DashboardTableLinks.jsx", + "line": 44, + "column": 13, + "index": 1490 + } + ], + "ActionRow.Spacer": [ { - "filePath": "src/editors/containers/ProblemEditor/index.test.jsx", - "line": 67, - "column": 45, - "index": 2501 + "filePath": "src/Configuration/Provisioning/DashboardHeader.jsx", + "line": 22, + "column": 6, + "index": 574 }, { - "filePath": "src/editors/containers/ProblemEditor/index.test.jsx", - "line": 71, - "column": 45, - "index": 2767 + "filePath": "src/Configuration/Provisioning/ProvisioningForm/CustomCatalog/ProvisioningFormDefineCustomCatalogHeader.jsx", + "line": 22, + "column": 8, + "index": 737 }, { - "filePath": "src/editors/containers/TextEditor/index.jsx", - "line": 74, + "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormAccountType.jsx", + "line": 104, "column": 14, - "index": 1917 - }, - { - "filePath": "src/editors/containers/VideoEditor/index.jsx", - "line": 51, - "column": 12, - "index": 1315 + "index": 3615 }, { - "filePath": "src/editors/containers/VideoUploadEditor/index.jsx", - "line": 24, - "column": 6, - "index": 645 + "filePath": "src/Configuration/Provisioning/SubsidyDetailView/SubsidyDetailViewContainer.jsx", + "line": 16, + "column": 10, + "index": 606 }, { - "filePath": "src/editors/sharedComponents/SelectionModal/Gallery.jsx", - "line": 38, - "column": 8, - "index": 711 - }, + "filePath": "src/Configuration/Provisioning/SubsidyEditView/SubsidyEditViewContainer.jsx", + "line": 21, + "column": 10, + "index": 659 + } + ], + "Add": [ { - "filePath": "src/example.jsx", - "line": 48, - "column": 12, - "index": 1215 + "filePath": "src/Configuration/Provisioning/DashboardHeader.jsx", + "line": 26, + "column": 20, + "index": 685 } ], - "Form.Group": [ + "Image": [ { - "filePath": "src/editors/containers/EditorContainer/components/TitleHeader/EditableHeader.jsx", - "line": 15, + "filePath": "src/Configuration/Provisioning/ErrorPage/ErrorPageImage.jsx", + "line": 5, "column": 2, - "index": 298 - }, + "index": 135 + } + ], + "Form.AutosuggestOption": [ { - "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/AnswerWidget/components/Feedback/FeedbackControl.jsx", - "line": 19, - "column": 2, - "index": 517 + "filePath": "src/Configuration/Provisioning/ProvisioningForm/CustomCatalog/ProvisioningFormCustomCatalogDropdown.jsx", + "line": 66, + "column": 8, + "index": 2613 }, { - "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/GeneralFeedback/index.jsx", - "line": 27, - "column": 6, - "index": 902 + "filePath": "src/Configuration/Provisioning/ProvisioningForm/CustomCatalog/ProvisioningFormCustomCatalogDropdown.jsx", + "line": 78, + "column": 10, + "index": 3173 }, { - "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/Randomization/index.jsx", - "line": 32, + "filePath": "src/Configuration/Provisioning/ProvisioningForm/CustomCatalog/ProvisioningFormCustomCatalogDropdown.jsx", + "line": 91, "column": 6, - "index": 1047 + "index": 3518 }, { - "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/ScoringCard.jsx", - "line": 49, - "column": 6, - "index": 1557 - }, + "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormCustomerDropdown.jsx", + "line": 67, + "column": 10, + "index": 2712 + } + ], + "Form.Group": [ { - "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/ScoringCard.jsx", - "line": 60, - "column": 6, - "index": 1926 + "filePath": "src/Configuration/Provisioning/ProvisioningForm/CustomCatalog/ProvisioningFormCustomCatalogDropdown.jsx", + "line": 105, + "column": 8, + "index": 3940 }, { - "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/ShowAnswerCard.jsx", - "line": 45, + "filePath": "src/Configuration/Provisioning/ProvisioningForm/PolicyForm/ProvisioningFormAccountDetails.jsx", + "line": 78, "column": 6, - "index": 1375 + "index": 3299 }, { - "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/ShowAnswerCard.jsx", - "line": 69, + "filePath": "src/Configuration/Provisioning/ProvisioningForm/PolicyForm/ProvisioningFormAccountDetails.jsx", + "line": 107, "column": 8, - "index": 2184 + "index": 4195 }, { - "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/TimerCard.jsx", - "line": 27, + "filePath": "src/Configuration/Provisioning/ProvisioningForm/PolicyForm/ProvisioningFormCatalog.jsx", + "line": 69, "column": 6, - "index": 794 + "index": 2391 }, { - "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/Tolerance/index.jsx", - "line": 74, + "filePath": "src/Configuration/Provisioning/ProvisioningForm/PolicyForm/ProvisioningFormDescription.jsx", + "line": 44, "column": 6, - "index": 2410 + "index": 1482 }, { - "filePath": "src/editors/containers/ProblemEditor/components/SelectTypeModal/content/AdvanceTypeSelect.jsx", - "line": 28, + "filePath": "src/Configuration/Provisioning/ProvisioningForm/PolicyForm/ProvisioningFormPerLearnerCap.jsx", + "line": 45, "column": 6, - "index": 681 + "index": 1619 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/DurationWidget/index.jsx", - "line": 49, - "column": 8, - "index": 1260 + "filePath": "src/Configuration/Provisioning/ProvisioningForm/PolicyForm/ProvisioningFormPerLearnerCapAmount.jsx", + "line": 48, + "column": 6, + "index": 2132 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/DurationWidget/index.jsx", - "line": 61, - "column": 8, - "index": 1750 + "filePath": "src/Configuration/Provisioning/ProvisioningForm/PolicyForm/ProvisioningFormPolicyType.jsx", + "line": 63, + "column": 6, + "index": 2129 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", - "line": 35, + "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormAccountType.jsx", + "line": 80, "column": 6, - "index": 771 + "index": 2579 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", - "line": 48, - "column": 16, - "index": 1296 + "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormCustomer.jsx", + "line": 43, + "column": 6, + "index": 1760 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", - "line": 67, - "column": 16, - "index": 2100 + "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormCustomer.jsx", + "line": 46, + "column": 6, + "index": 1868 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", - "line": 92, - "column": 16, - "index": 3171 + "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormCustomerDropdown.jsx", + "line": 55, + "column": 4, + "index": 2274 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", - "line": 118, - "column": 16, - "index": 4277 + "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormInternalOnly.jsx", + "line": 32, + "column": 6, + "index": 1128 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/index.jsx", - "line": 118, - "column": 10, - "index": 3475 + "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormSubsidy.jsx", + "line": 38, + "column": 6, + "index": 1324 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoSourceWidget/index.jsx", + "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormTerm.jsx", "line": 72, "column": 6, - "index": 2003 - }, - { - "filePath": "src/editors/sharedComponents/ImageUploadModal/ImageSettingsModal/AltTextControls.jsx", - "line": 28, - "column": 2, - "index": 804 - }, - { - "filePath": "src/editors/sharedComponents/ImageUploadModal/ImageSettingsModal/DimensionControls.jsx", - "line": 38, - "column": 2, - "index": 974 + "index": 2200 }, { - "filePath": "src/editors/sharedComponents/SelectionModal/SearchSort.jsx", - "line": 34, + "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormTitle.jsx", + "line": 44, "column": 6, - "index": 725 + "index": 1503 }, { - "filePath": "src/editors/sharedComponents/TypeaheadDropdown/FormGroup.jsx", - "line": 19, - "column": 4, - "index": 502 - }, + "filePath": "src/users/CourseReset.jsx", + "line": 146, + "column": 12, + "index": 4139 + } + ], + "Form.Autosuggest": [ { - "filePath": "www/src/Gallery.jsx", - "line": 41, - "column": 8, - "index": 1664 + "filePath": "src/Configuration/Provisioning/ProvisioningForm/CustomCatalog/ProvisioningFormCustomCatalogDropdown.jsx", + "line": 108, + "column": 10, + "index": 4001 }, { - "filePath": "www/src/Gallery.jsx", - "line": 52, - "column": 8, - "index": 1996 + "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormCustomerDropdown.jsx", + "line": 56, + "column": 6, + "index": 2293 } ], - "Form.Control": [ + "Warning": [ { - "filePath": "src/editors/containers/EditorContainer/components/TitleHeader/EditableHeader.jsx", - "line": 16, - "column": 4, - "index": 346 - }, + "filePath": "src/Configuration/Provisioning/ProvisioningForm/CustomCatalog/ProvisioningFormDefineCustomCatalogHeader.jsx", + "line": 34, + "column": 23, + "index": 1207 + } + ], + "Col": [ { - "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/AnswerWidget/AnswerOption.jsx", - "line": 55, - "column": 8, - "index": 1971 + "filePath": "src/Configuration/Provisioning/ProvisioningForm/CustomCatalog/ProvisioningFormDefineCustomCatalogHeader.jsx", + "line": 35, + "column": 12, + "index": 1260 }, { - "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/AnswerWidget/AnswerOption.jsx", - "line": 69, - "column": 8, - "index": 2350 + "filePath": "src/FeatureBasedEnrollments/FeatureBasedEnrollment.jsx", + "line": 46, + "column": 18, + "index": 1603 }, { - "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/GeneralFeedback/index.jsx", - "line": 28, - "column": 8, - "index": 923 + "filePath": "src/FeatureBasedEnrollments/FeatureBasedEnrollment.jsx", + "line": 49, + "column": 18, + "index": 1762 }, { - "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/GroupFeedback/GroupFeedbackRow.jsx", - "line": 22, - "column": 6, - "index": 519 + "filePath": "src/ProgramEnrollments/ProgramInspector/ProgramInspector.jsx", + "line": 168, + "column": 16, + "index": 5529 }, { - "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/Randomization/index.jsx", - "line": 33, - "column": 8, - "index": 1068 + "filePath": "src/ProgramEnrollments/ProgramInspector/ProgramInspector.jsx", + "line": 171, + "column": 16, + "index": 5623 }, { - "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/ScoringCard.jsx", - "line": 50, - "column": 8, - "index": 1578 + "filePath": "src/ProgramEnrollments/ProgramInspector/ProgramInspector.jsx", + "line": 178, + "column": 16, + "index": 5880 }, { - "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/ScoringCard.jsx", - "line": 61, - "column": 8, - "index": 1947 + "filePath": "src/ProgramEnrollments/ProgramInspector/ProgramInspector.jsx", + "line": 181, + "column": 16, + "index": 5971 }, { - "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/ShowAnswerCard.jsx", - "line": 46, - "column": 8, - "index": 1418 + "filePath": "src/users/licenses/LicenseCard.jsx", + "line": 66, + "column": 12, + "index": 1735 }, { - "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/ShowAnswerCard.jsx", + "filePath": "src/users/licenses/LicenseCard.jsx", "line": 70, - "column": 10, - "index": 2234 - }, - { - "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/TimerCard.jsx", - "line": 28, - "column": 8, - "index": 815 + "column": 12, + "index": 1926 }, { - "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/Tolerance/index.jsx", - "line": 75, - "column": 8, - "index": 2453 + "filePath": "src/users/licenses/Licenses.jsx", + "line": 36, + "column": 14, + "index": 1055 }, { - "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/Tolerance/index.jsx", - "line": 92, - "column": 10, - "index": 3064 + "filePath": "src/users/SingleSignOnRecordCard.jsx", + "line": 105, + "column": 12, + "index": 3096 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/DurationWidget/index.jsx", - "line": 50, - "column": 10, - "index": 1292 + "filePath": "src/users/SingleSignOnRecordCard.jsx", + "line": 108, + "column": 12, + "index": 3238 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/DurationWidget/index.jsx", - "line": 62, - "column": 10, - "index": 1782 - }, + "filePath": "src/users/SingleSignOnRecords.jsx", + "line": 45, + "column": 14, + "index": 1679 + } + ], + "Form.Control": [ { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseSelector.jsx", - "line": 37, + "filePath": "src/Configuration/Provisioning/ProvisioningForm/PolicyForm/ProvisioningFormAccountDetails.jsx", + "line": 83, "column": 8, - "index": 928 - }, - { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoSourceWidget/index.jsx", - "line": 74, - "column": 10, - "index": 2090 + "index": 3425 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoSourceWidget/index.jsx", - "line": 83, + "filePath": "src/Configuration/Provisioning/ProvisioningForm/PolicyForm/ProvisioningFormAccountDetails.jsx", + "line": 110, "column": 10, - "index": 2472 - }, - { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoSourceWidget/index.jsx", - "line": 101, - "column": 12, - "index": 3270 - }, - { - "filePath": "src/editors/sharedComponents/ImageUploadModal/ImageSettingsModal/AltTextControls.jsx", - "line": 32, - "column": 4, - "index": 943 + "index": 4256 }, { - "filePath": "src/editors/sharedComponents/ImageUploadModal/ImageSettingsModal/DimensionControls.jsx", - "line": 43, - "column": 6, - "index": 1127 + "filePath": "src/Configuration/Provisioning/ProvisioningForm/PolicyForm/ProvisioningFormDescription.jsx", + "line": 46, + "column": 8, + "index": 1587 }, { - "filePath": "src/editors/sharedComponents/ImageUploadModal/ImageSettingsModal/DimensionControls.jsx", - "line": 50, - "column": 6, - "index": 1375 + "filePath": "src/Configuration/Provisioning/ProvisioningForm/PolicyForm/ProvisioningFormPerLearnerCapAmount.jsx", + "line": 51, + "column": 8, + "index": 2187 }, { - "filePath": "src/editors/sharedComponents/SelectionModal/SearchSort.jsx", - "line": 35, + "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormCustomer.jsx", + "line": 51, "column": 8, - "index": 768 + "index": 2031 }, { - "filePath": "src/editors/sharedComponents/TypeaheadDropdown/FormGroup.jsx", - "line": 24, - "column": 6, - "index": 627 - } - ], - "Form": [ - { - "filePath": "src/editors/containers/EditorContainer/components/TitleHeader/EditableHeader.test.jsx", - "line": 26, - "column": 34, - "index": 855 + "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormTerm.jsx", + "line": 76, + "column": 8, + "index": 2325 }, { - "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/AnswerWidget/components/Checker/index.jsx", - "line": 11, - "column": 20, - "index": 202 + "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormTerm.jsx", + "line": 84, + "column": 8, + "index": 2586 }, { - "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/AnswerWidget/components/Checker/index.jsx", - "line": 13, - "column": 18, - "index": 260 - } - ], - "ButtonGroup": [ - { - "filePath": "src/editors/containers/EditorContainer/components/TitleHeader/EditConfirmationButtons.jsx", - "line": 16, - "column": 2, - "index": 397 + "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormTitle.jsx", + "line": 48, + "column": 8, + "index": 1608 }, { - "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/ResetCard.jsx", - "line": 41, - "column": 6, - "index": 1615 + "filePath": "src/users/CourseReset.jsx", + "line": 147, + "column": 14, + "index": 4166 } ], - "IconButtonWithTooltip": [ - { - "filePath": "src/editors/containers/EditorContainer/components/TitleHeader/EditConfirmationButtons.jsx", - "line": 17, - "column": 4, - "index": 415 - }, - { - "filePath": "src/editors/containers/EditorContainer/components/TitleHeader/EditConfirmationButtons.jsx", - "line": 24, - "column": 4, - "index": 611 - }, - { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseSelector.jsx", - "line": 55, - "column": 12, - "index": 1716 - }, + "Form.Label": [ { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/ThumbnailWidget/index.jsx", - "line": 94, - "column": 12, - "index": 2753 + "filePath": "src/Configuration/Provisioning/ProvisioningForm/PolicyForm/ProvisioningFormCatalog.jsx", + "line": 70, + "column": 8, + "index": 2431 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoSourceWidget/index.jsx", - "line": 107, - "column": 12, - "index": 3547 + "filePath": "src/Configuration/Provisioning/ProvisioningForm/PolicyForm/ProvisioningFormDescription.jsx", + "line": 45, + "column": 8, + "index": 1503 }, { - "filePath": "src/editors/sharedComponents/DraggableList/SortableItem.jsx", - "line": 38, - "column": 6, - "index": 810 - } - ], - "Check": [ - { - "filePath": "src/editors/containers/EditorContainer/components/TitleHeader/EditConfirmationButtons.jsx", - "line": 20, - "column": 11, - "index": 545 + "filePath": "src/Configuration/Provisioning/ProvisioningForm/PolicyForm/ProvisioningFormPerLearnerCap.jsx", + "line": 48, + "column": 8, + "index": 1674 }, { - "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/TypeRow.jsx", - "line": 37, - "column": 43, - "index": 839 + "filePath": "src/Configuration/Provisioning/ProvisioningForm/PolicyForm/ProvisioningFormPolicyType.jsx", + "line": 66, + "column": 8, + "index": 2184 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/LanguageSelector.jsx", - "line": 69, - "column": 50, - "index": 2159 + "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormAccountType.jsx", + "line": 81, + "column": 8, + "index": 2619 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/LanguageSelector.jsx", - "line": 101, - "column": 83, - "index": 2966 + "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormSubsidy.jsx", + "line": 39, + "column": 8, + "index": 1364 } ], - "Icon": [ + "Form.RadioSet": [ { - "filePath": "src/editors/containers/EditorContainer/components/TitleHeader/EditConfirmationButtons.jsx", - "line": 21, + "filePath": "src/Configuration/Provisioning/ProvisioningForm/PolicyForm/ProvisioningFormCatalog.jsx", + "line": 88, "column": 14, - "index": 566 + "index": 3248 }, { - "filePath": "src/editors/containers/EditorContainer/components/TitleHeader/EditConfirmationButtons.jsx", - "line": 28, - "column": 14, - "index": 765 + "filePath": "src/Configuration/Provisioning/ProvisioningForm/PolicyForm/ProvisioningFormPerLearnerCap.jsx", + "line": 49, + "column": 8, + "index": 1750 }, { - "filePath": "src/editors/containers/EditorContainer/components/TitleHeader/index.jsx", - "line": 57, - "column": 16, - "index": 1463 + "filePath": "src/Configuration/Provisioning/ProvisioningForm/PolicyForm/ProvisioningFormPolicyType.jsx", + "line": 75, + "column": 8, + "index": 2652 }, { - "filePath": "src/editors/containers/EditorContainer/index.jsx", - "line": 64, - "column": 20, - "index": 2039 + "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormAccountType.jsx", + "line": 83, + "column": 8, + "index": 2735 }, { - "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/AnswerWidget/AnswerOption.jsx", - "line": 114, - "column": 10, - "index": 3820 - }, + "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormSubsidy.jsx", + "line": 40, + "column": 8, + "index": 1441 + } + ], + "Form.Radio": [ { - "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/AnswerWidget/AnswerOption.jsx", - "line": 121, - "column": 18, - "index": 4045 + "filePath": "src/Configuration/Provisioning/ProvisioningForm/PolicyForm/ProvisioningFormCatalog.jsx", + "line": 95, + "column": 20, + "index": 3496 }, { - "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/AnswerWidget/AnswersContainer.jsx", - "line": 53, + "filePath": "src/Configuration/Provisioning/ProvisioningForm/PolicyForm/ProvisioningFormPerLearnerCap.jsx", + "line": 56, "column": 12, - "index": 1601 - }, - { - "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/GroupFeedback/GroupFeedbackRow.jsx", - "line": 29, - "column": 18, - "index": 733 - }, - { - "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/HintRow.jsx", - "line": 34, - "column": 16, - "index": 873 + "index": 2010 }, { - "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/TypeRow.jsx", - "line": 37, - "column": 32, - "index": 828 + "filePath": "src/Configuration/Provisioning/ProvisioningForm/PolicyForm/ProvisioningFormPolicyType.jsx", + "line": 83, + "column": 14, + "index": 2919 }, { - "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/SettingsOption.jsx", - "line": 29, + "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormAccountType.jsx", + "line": 105, "column": 14, - "index": 1074 + "index": 3650 }, { - "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/SettingsOption.jsx", - "line": 32, - "column": 14, - "index": 1199 - }, + "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormSubsidy.jsx", + "line": 47, + "column": 12, + "index": 1640 + } + ], + "Spinner": [ + { + "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormAccountType.jsx", + "line": 93, + "column": 16, + "index": 3204 + } + ], + "Alert": [ { - "filePath": "src/editors/containers/ProblemEditor/components/SelectTypeModal/content/AdvanceTypeSelect.jsx", - "line": 30, - "column": 46, - "index": 870 + "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormAlert.jsx", + "line": 9, + "column": 6, + "index": 288 }, { - "filePath": "src/editors/containers/ProblemEditor/components/SelectTypeModal/SelectTypeWrapper/index.jsx", - "line": 28, - "column": 22, - "index": 875 + "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormInstructionAlert.jsx", + "line": 21, + "column": 6, + "index": 618 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/CollapsibleFormWidget.jsx", - "line": 41, - "column": 22, - "index": 1402 + "filePath": "src/ProgramEnrollments/ProgramInspector/ProgramInspector.jsx", + "line": 113, + "column": 8, + "index": 3470 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/CollapsibleFormWidget.jsx", - "line": 42, - "column": 96, - "index": 1549 + "filePath": "src/ProgramEnrollments/ProgramInspector/ProgramInspector.jsx", + "line": 202, + "column": 16, + "index": 6758 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/CollapsibleFormWidget.jsx", - "line": 48, - "column": 98, - "index": 1866 + "filePath": "src/users/account-actions/CancelRetirement.jsx", + "line": 31, + "column": 19, + "index": 928 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/HandoutWidget/index.jsx", - "line": 76, - "column": 24, - "index": 2389 + "filePath": "src/users/account-actions/CancelRetirement.jsx", + "line": 34, + "column": 10, + "index": 1009 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseBlurb.jsx", - "line": 26, - "column": 50, - "index": 644 + "filePath": "src/users/account-actions/ResetPassword.jsx", + "line": 31, + "column": 19, + "index": 890 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseBlurb.jsx", - "line": 27, - "column": 48, - "index": 784 + "filePath": "src/users/account-actions/ResetPassword.jsx", + "line": 34, + "column": 10, + "index": 971 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseBlurb.jsx", - "line": 28, - "column": 27, - "index": 896 + "filePath": "src/users/account-actions/RetireUser.jsx", + "line": 36, + "column": 19, + "index": 998 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseBlurb.jsx", - "line": 29, - "column": 29, - "index": 1036 + "filePath": "src/users/account-actions/RetireUser.jsx", + "line": 39, + "column": 10, + "index": 1079 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseBlurb.jsx", - "line": 30, - "column": 29, - "index": 1150 + "filePath": "src/users/account-actions/TogglePasswordStatus.jsx", + "line": 49, + "column": 12, + "index": 1617 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseBlurb.jsx", - "line": 31, - "column": 26, - "index": 1261 + "filePath": "src/users/CourseReset.jsx", + "line": 156, + "column": 14, + "index": 4444 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", - "line": 50, - "column": 20, - "index": 1359 + "filePath": "src/users/CourseReset.jsx", + "line": 178, + "column": 8, + "index": 4890 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", - "line": 69, + "filePath": "src/users/enrollments/Certificates.jsx", + "line": 119, "column": 20, - "index": 2163 + "index": 3803 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", - "line": 94, - "column": 20, - "index": 3234 + "filePath": "src/users/EnterpriseAssociations.jsx", + "line": 40, + "column": 16, + "index": 1481 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", - "line": 120, - "column": 20, - "index": 4340 + "filePath": "src/users/LearnerCredentials.jsx", + "line": 16, + "column": 6, + "index": 522 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseSelector.jsx", - "line": 56, - "column": 22, - "index": 1761 + "filePath": "src/users/LearnerRecords.jsx", + "line": 53, + "column": 6, + "index": 1478 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/ThumbnailWidget/index.jsx", - "line": 97, - "column": 22, - "index": 2911 + "filePath": "src/users/LearnerRecords.jsx", + "line": 80, + "column": 18, + "index": 2635 + } + ], + "Info": [ + { + "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormAlert.jsx", + "line": 11, + "column": 14, + "index": 334 + } + ], + "Alert.Heading": [ + { + "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormAlert.jsx", + "line": 13, + "column": 8, + "index": 356 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/ImportTranscriptCard.jsx", + "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormInstructionAlert.jsx", "line": 29, - "column": 16, - "index": 730 + "column": 8, + "index": 779 + } + ], + "WarningFilled": [ + { + "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormHelpText.jsx", + "line": 12, + "column": 66, + "index": 384 + } + ], + "Edit": [ + { + "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormInstructionAlert.jsx", + "line": 23, + "column": 14, + "index": 662 + } + ], + "Form.Checkbox": [ + { + "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormInternalOnly.jsx", + "line": 35, + "column": 8, + "index": 1183 + } + ], + "StatefulButton": [ + { + "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormSubmissionButton.jsx", + "line": 254, + "column": 6, + "index": 11224 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/index.jsx", - "line": 145, - "column": 16, - "index": 4564 + "filePath": "src/Configuration/Provisioning/SubsidyEditView/SaveEditsButton.jsx", + "line": 248, + "column": 4, + "index": 11154 + } + ], + "IconButtonWithTooltip": [ + { + "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormTerm.jsx", + "line": 61, + "column": 8, + "index": 1916 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/LanguageSelector.jsx", - "line": 69, + "filePath": "src/Configuration/Provisioning/SubsidyDetailView/TermDetail.jsx", + "line": 18, "column": 10, - "index": 2119 + "index": 568 + } + ], + "ModalDialog.Title": [ + { + "filePath": "src/Configuration/Provisioning/SubsidyEditView/CancelButton.jsx", + "line": 41, + "column": 10, + "index": 1103 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/LanguageSelector.jsx", - "line": 101, - "column": 43, - "index": 2926 + "filePath": "src/users/account-actions/CancelRetirement.jsx", + "line": 63, + "column": 10, + "index": 1880 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/Transcript.jsx", - "line": 88, - "column": 24, - "index": 2649 + "filePath": "src/users/account-actions/PasswordHistory.jsx", + "line": 66, + "column": 10, + "index": 1666 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/TranscriptActionMenu.jsx", - "line": 42, - "column": 16, - "index": 1357 + "filePath": "src/users/account-actions/ResetPassword.jsx", + "line": 66, + "column": 10, + "index": 1956 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoPreviewWidget/LanguageNamesWidget.jsx", - "line": 21, - "column": 6, - "index": 778 + "filePath": "src/users/account-actions/RetireUser.jsx", + "line": 78, + "column": 10, + "index": 2390 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoSourceWidget/index.jsx", - "line": 112, - "column": 22, - "index": 3788 + "filePath": "src/users/account-actions/TogglePasswordStatus.jsx", + "line": 43, + "column": 10, + "index": 1317 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoSourceWidget/index.jsx", - "line": 137, - "column": 12, - "index": 4654 + "filePath": "src/users/courseSummary/CourseSummary.jsx", + "line": 157, + "column": 8, + "index": 4233 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/index.jsx", - "line": 39, + "filePath": "src/users/enrollments/Certificates.jsx", + "line": 202, "column": 8, - "index": 1212 + "index": 6125 }, { - "filePath": "src/editors/containers/VideoUploadEditor/VideoUploader.jsx", - "line": 20, + "filePath": "src/users/enrollments/ChangeEnrollmentForm.jsx", + "line": 149, "column": 8, - "index": 761 + "index": 4050 }, { - "filePath": "src/editors/containers/VideoUploadEditor/VideoUploader.jsx", - "line": 44, - "column": 24, - "index": 1973 + "filePath": "src/users/enrollments/CreateEnrollmentForm.jsx", + "line": 109, + "column": 8, + "index": 2968 }, { - "filePath": "src/editors/containers/VideoUploadEditor/VideoUploader.jsx", - "line": 81, - "column": 18, - "index": 3001 + "filePath": "src/users/entitlements/CreateEntitlementForm.jsx", + "line": 111, + "column": 8, + "index": 3103 }, { - "filePath": "src/editors/sharedComponents/DraggableList/SortableItem.jsx", - "line": 43, - "column": 16, - "index": 1012 + "filePath": "src/users/entitlements/ExpireEntitlementForm.jsx", + "line": 106, + "column": 8, + "index": 2882 }, { - "filePath": "src/editors/sharedComponents/ImageUploadModal/ImageSettingsModal/DimensionControls.jsx", - "line": 64, - "column": 16, - "index": 1860 + "filePath": "src/users/entitlements/ReissueEntitlementForm.jsx", + "line": 104, + "column": 8, + "index": 2826 }, { - "filePath": "src/editors/sharedComponents/SelectionModal/SearchSort.jsx", - "line": 44, - "column": 26, - "index": 1099 + "filePath": "src/users/SingleSignOnRecordCard.jsx", + "line": 73, + "column": 10, + "index": 2154 }, { - "filePath": "src/editors/sharedComponents/SelectionModal/SearchSort.jsx", - "line": 52, + "filePath": "src/users/VerifiedName.jsx", + "line": 172, + "column": 10, + "index": 4966 + } + ], + "Row": [ + { + "filePath": "src/FeatureBasedEnrollments/FeatureBasedEnrollment.jsx", + "line": 45, "column": 16, - "index": 1318 + "index": 1579 }, { - "filePath": "src/editors/sharedComponents/TypeaheadDropdown/index.jsx", - "line": 162, - "column": 16, - "index": 4260 + "filePath": "src/ProgramEnrollments/ProgramInspector/ProgramInspector.jsx", + "line": 167, + "column": 14, + "index": 5471 }, { - "filePath": "src/editors/sharedComponents/TypeaheadDropdown/index.jsx", + "filePath": "src/ProgramEnrollments/ProgramInspector/ProgramInspector.jsx", "line": 177, - "column": 16, - "index": 4582 - } - ], - "Close": [ - { - "filePath": "src/editors/containers/EditorContainer/components/TitleHeader/EditConfirmationButtons.jsx", - "line": 27, - "column": 11, - "index": 744 + "column": 14, + "index": 5816 }, { - "filePath": "src/editors/containers/EditorContainer/index.jsx", - "line": 63, - "column": 17, - "index": 2012 + "filePath": "src/users/licenses/LicenseCard.jsx", + "line": 65, + "column": 10, + "index": 1717 }, { - "filePath": "src/editors/containers/ProblemEditor/components/SelectTypeModal/SelectTypeWrapper/index.jsx", - "line": 27, - "column": 19, - "index": 846 + "filePath": "src/users/licenses/Licenses.jsx", + "line": 34, + "column": 10, + "index": 970 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/ImportTranscriptCard.jsx", - "line": 28, - "column": 13, - "index": 707 + "filePath": "src/users/SingleSignOnRecordCard.jsx", + "line": 104, + "column": 10, + "index": 3078 }, { - "filePath": "src/editors/containers/VideoUploadEditor/VideoUploader.jsx", - "line": 80, - "column": 15, - "index": 2976 + "filePath": "src/users/SingleSignOnRecordCard.jsx", + "line": 113, + "column": 10, + "index": 3442 }, { - "filePath": "src/editors/sharedComponents/SelectionModal/SearchSort.jsx", - "line": 49, - "column": 23, - "index": 1260 - } - ], - "Truncate": [ - { - "filePath": "src/editors/containers/EditorContainer/components/TitleHeader/index.jsx", - "line": 52, - "column": 6, - "index": 1326 + "filePath": "src/users/SingleSignOnRecords.jsx", + "line": 43, + "column": 10, + "index": 1597 } ], - "IconButton": [ + "Card.Header": [ { - "filePath": "src/editors/containers/EditorContainer/components/TitleHeader/index.jsx", - "line": 55, + "filePath": "src/FeatureBasedEnrollments/FeatureBasedEnrollmentCard.jsx", + "line": 11, "column": 6, - "index": 1377 + "index": 255 }, { - "filePath": "src/editors/containers/EditorContainer/index.jsx", - "line": 62, - "column": 10, - "index": 1983 + "filePath": "src/users/licenses/LicenseCard.jsx", + "line": 57, + "column": 8, + "index": 1511 }, { - "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/AnswerWidget/AnswerOption.jsx", - "line": 119, + "filePath": "src/users/licenses/LicenseCard.jsx", + "line": 75, "column": 8, - "index": 3985 + "index": 2121 }, { - "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/GroupFeedback/GroupFeedbackRow.jsx", - "line": 27, + "filePath": "src/users/SingleSignOnRecordCard.jsx", + "line": 96, "column": 8, - "index": 673 + "index": 2834 }, { - "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/HintRow.jsx", - "line": 32, - "column": 6, - "index": 817 - }, + "filePath": "src/users/SingleSignOnRecordCard.jsx", + "line": 126, + "column": 8, + "index": 3768 + } + ], + "Input": [ { - "filePath": "src/editors/containers/ProblemEditor/components/SelectTypeModal/content/AdvanceTypeSelect.jsx", - "line": 30, + "filePath": "src/FeatureBasedEnrollments/FeatureBasedEnrollmentIndexPage.jsx", + "line": 100, "column": 10, - "index": 834 + "index": 3239 }, { - "filePath": "src/editors/containers/ProblemEditor/components/SelectTypeModal/SelectTypeWrapper/index.jsx", - "line": 26, + "filePath": "src/ProgramEnrollments/LinkProgramEnrollments.jsx", + "line": 51, "column": 12, - "index": 815 - }, - { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/CollapsibleFormWidget.jsx", - "line": 42, - "column": 10, - "index": 1463 + "index": 1567 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/CollapsibleFormWidget.jsx", - "line": 48, - "column": 10, - "index": 1778 + "filePath": "src/ProgramEnrollments/LinkProgramEnrollments.jsx", + "line": 66, + "column": 12, + "index": 2049 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/HandoutWidget/index.jsx", - "line": 74, - "column": 20, - "index": 2321 + "filePath": "src/ProgramEnrollments/ProgramInspector/ProgramInspector.jsx", + "line": 121, + "column": 14, + "index": 3775 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/ImportTranscriptCard.jsx", - "line": 27, - "column": 6, - "index": 682 + "filePath": "src/ProgramEnrollments/ProgramInspector/ProgramInspector.jsx", + "line": 134, + "column": 14, + "index": 4274 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/Transcript.jsx", - "line": 87, + "filePath": "src/ProgramEnrollments/ProgramInspector/ProgramInspector.jsx", + "line": 145, "column": 14, - "index": 2613 + "index": 4697 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/TranscriptActionMenu.jsx", - "line": 40, + "filePath": "src/users/account-actions/TogglePasswordStatus.jsx", + "line": 55, "column": 12, - "index": 1305 - }, - { - "filePath": "src/editors/containers/VideoUploadEditor/VideoUploader.jsx", - "line": 40, - "column": 14, - "index": 1785 + "index": 1924 }, { - "filePath": "src/editors/containers/VideoUploadEditor/VideoUploader.jsx", - "line": 77, + "filePath": "src/users/enrollments/ChangeEnrollmentForm.jsx", + "line": 122, "column": 8, - "index": 2835 - }, - { - "filePath": "src/editors/sharedComponents/ImageUploadModal/ImageSettingsModal/DimensionControls.jsx", - "line": 57, - "column": 6, - "index": 1626 - }, - { - "filePath": "src/editors/sharedComponents/SelectionModal/SearchSort.jsx", - "line": 42, - "column": 16, - "index": 996 - }, - { - "filePath": "src/editors/sharedComponents/TypeaheadDropdown/index.jsx", - "line": 158, - "column": 6, - "index": 4134 + "index": 3429 }, { - "filePath": "src/editors/sharedComponents/TypeaheadDropdown/index.jsx", - "line": 173, - "column": 6, - "index": 4456 - } - ], - "EditOutline": [ - { - "filePath": "src/editors/containers/EditorContainer/components/TitleHeader/index.jsx", - "line": 61, - "column": 13, - "index": 1556 - } - ], - "ModalDialog.Header": [ + "filePath": "src/users/enrollments/CreateEnrollmentForm.jsx", + "line": 58, + "column": 8, + "index": 1726 + }, { - "filePath": "src/editors/containers/EditorContainer/index.jsx", - "line": 57, - "column": 6, - "index": 1741 + "filePath": "src/users/enrollments/CreateEnrollmentForm.jsx", + "line": 84, + "column": 8, + "index": 2410 }, { - "filePath": "src/editors/containers/ProblemEditor/components/SelectTypeModal/SelectTypeWrapper/index.jsx", - "line": 22, + "filePath": "src/users/entitlements/CreateEntitlementForm.jsx", + "line": 63, "column": 6, - "index": 606 + "index": 1843 }, { - "filePath": "src/editors/containers/VideoEditor/components/BaseModal.jsx", - "line": 25, - "column": 4, - "index": 383 + "filePath": "src/users/entitlements/CreateEntitlementForm.jsx", + "line": 73, + "column": 6, + "index": 2112 }, { - "filePath": "src/editors/sharedComponents/BaseModal/index.jsx", - "line": 36, - "column": 4, - "index": 642 - } - ], - "ModalDialog.Body": [ + "filePath": "src/users/entitlements/CreateEntitlementForm.jsx", + "line": 87, + "column": 6, + "index": 2571 + }, { - "filePath": "src/editors/containers/EditorContainer/index.jsx", - "line": 69, + "filePath": "src/users/entitlements/ExpireEntitlementForm.jsx", + "line": 80, "column": 6, - "index": 2152 + "index": 2293 }, { - "filePath": "src/editors/containers/ProblemEditor/components/SelectTypeModal/SelectTypeWrapper/index.jsx", - "line": 34, + "filePath": "src/users/entitlements/ReissueEntitlementForm.jsx", + "line": 78, "column": 6, - "index": 1013 + "index": 2235 }, { - "filePath": "src/editors/containers/VideoEditor/components/BaseModal.jsx", - "line": 30, - "column": 4, - "index": 503 + "filePath": "src/users/EntitlementsAndEnrollmentsContainer.jsx", + "line": 15, + "column": 8, + "index": 484 }, { - "filePath": "src/editors/sharedComponents/BaseModal/index.jsx", - "line": 42, - "column": 4, - "index": 853 + "filePath": "src/users/UserSearch.jsx", + "line": 21, + "column": 8, + "index": 551 } ], - "Collapsible.Advanced": [ + "Tabs": [ { - "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/AnswerWidget/AnswerOption.jsx", - "line": 87, + "filePath": "src/ProgramEnrollments/ProgramEnrollmentsIndexPage.jsx", + "line": 20, "column": 4, - "index": 2833 + "index": 622 }, { - "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/CardSection.jsx", - "line": 15, - "column": 6, - "index": 344 + "filePath": "src/SupportToolsTab/SupportToolsTab.jsx", + "line": 47, + "column": 8, + "index": 1572 }, { - "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/CardSection.jsx", - "line": 22, + "filePath": "src/users/LearnerInformation.jsx", + "line": 19, "column": 6, - "index": 632 - }, + "index": 645 + } + ], + "Tab": [ { - "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/index.jsx", - "line": 92, - "column": 8, - "index": 2995 + "filePath": "src/ProgramEnrollments/ProgramEnrollmentsIndexPage.jsx", + "line": 21, + "column": 6, + "index": 698 }, { - "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/index.jsx", - "line": 106, + "filePath": "src/ProgramEnrollments/ProgramEnrollmentsIndexPage.jsx", + "line": 25, "column": 6, - "index": 3479 + "index": 842 }, { - "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/SettingsOption.jsx", - "line": 22, - "column": 8, - "index": 751 + "filePath": "src/SupportToolsTab/SupportToolsTab.jsx", + "line": 57, + "column": 10, + "index": 1866 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/CollapsibleFormWidget.jsx", - "line": 26, - "column": 2, - "index": 706 + "filePath": "src/SupportToolsTab/SupportToolsTab.jsx", + "line": 62, + "column": 10, + "index": 2020 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoPreviewWidget/index.jsx", - "line": 26, - "column": 4, - "index": 814 - } - ], - "Collapsible.Body": [ + "filePath": "src/SupportToolsTab/SupportToolsTab.jsx", + "line": 69, + "column": 10, + "index": 2248 + }, { - "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/AnswerWidget/AnswerOption.jsx", - "line": 102, + "filePath": "src/users/LearnerInformation.jsx", + "line": 23, "column": 8, - "index": 3332 + "index": 740 }, { - "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/CardSection.jsx", - "line": 18, + "filePath": "src/users/LearnerInformation.jsx", + "line": 31, "column": 8, - "index": 420 + "index": 940 }, { - "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/CardSection.jsx", - "line": 25, + "filePath": "src/users/LearnerInformation.jsx", + "line": 36, "column": 8, - "index": 707 + "index": 1127 }, { - "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/index.jsx", - "line": 93, - "column": 10, - "index": 3059 + "filePath": "src/users/LearnerInformation.jsx", + "line": 41, + "column": 8, + "index": 1281 }, { - "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/index.jsx", - "line": 107, + "filePath": "src/users/LearnerInformation.jsx", + "line": 52, "column": 8, - "index": 3540 + "index": 1534 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/CollapsibleFormWidget.jsx", - "line": 52, - "column": 4, - "index": 1965 + "filePath": "src/users/LearnerInformation.jsx", + "line": 57, + "column": 8, + "index": 1690 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoPreviewWidget/index.jsx", - "line": 31, - "column": 6, - "index": 935 + "filePath": "src/users/LearnerInformation.jsx", + "line": 61, + "column": 8, + "index": 1833 } ], - "Collapsible.Trigger": [ + "Dropdown": [ { - "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/AnswerWidget/AnswerOption.jsx", - "line": 113, - "column": 8, - "index": 3690 + "filePath": "src/supportHeader/DesktopHeader.jsx", + "line": 54, + "column": 6, + "index": 1371 }, { - "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/SettingsOption.jsx", - "line": 26, - "column": 10, - "index": 872 + "filePath": "src/supportHeader/MobileHeader.jsx", + "line": 56, + "column": 6, + "index": 1330 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/CollapsibleFormWidget.jsx", - "line": 31, - "column": 4, - "index": 857 - } - ], - "FeedbackOutline": [ + "filePath": "src/users/enrollments/Enrollments.jsx", + "line": 90, + "column": 8, + "index": 3552 + }, { - "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/AnswerWidget/AnswerOption.jsx", - "line": 115, - "column": 17, - "index": 3843 + "filePath": "src/users/entitlements/Entitlements.jsx", + "line": 104, + "column": 8, + "index": 3733 } ], - "DeleteOutline": [ - { - "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/AnswerWidget/AnswerOption.jsx", - "line": 120, - "column": 15, - "index": 4012 - }, - { - "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/GroupFeedback/GroupFeedbackRow.jsx", - "line": 28, - "column": 15, - "index": 700 - }, + "Dropdown.Toggle": [ { - "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/HintRow.jsx", - "line": 33, - "column": 13, - "index": 842 + "filePath": "src/supportHeader/DesktopHeader.jsx", + "line": 55, + "column": 8, + "index": 1390 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseSelector.jsx", + "filePath": "src/supportHeader/MobileHeader.jsx", "line": 57, - "column": 19, - "index": 1786 + "column": 8, + "index": 1349 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/ThumbnailWidget/index.jsx", - "line": 98, - "column": 19, - "index": 2936 + "filePath": "src/users/enrollments/Enrollments.jsx", + "line": 91, + "column": 10, + "index": 3573 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/Transcript.jsx", - "line": 89, - "column": 21, - "index": 2676 + "filePath": "src/users/entitlements/Entitlements.jsx", + "line": 105, + "column": 10, + "index": 3754 + } + ], + "AvatarButton": [ + { + "filePath": "src/supportHeader/DesktopHeader.jsx", + "line": 55, + "column": 65, + "index": 1447 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoSourceWidget/index.jsx", - "line": 111, - "column": 19, - "index": 3751 + "filePath": "src/supportHeader/MobileHeader.jsx", + "line": 57, + "column": 57, + "index": 1398 } ], - "Dropdown": [ + "Dropdown.Menu": [ { - "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/AnswerWidget/AnswersContainer.jsx", - "line": 47, + "filePath": "src/supportHeader/DesktopHeader.jsx", + "line": 59, "column": 8, - "index": 1435 - }, - { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/HandoutWidget/index.jsx", - "line": 71, - "column": 12, - "index": 2182 + "index": 1532 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/LanguageSelector.jsx", - "line": 85, - "column": 6, - "index": 2388 + "filePath": "src/supportHeader/MobileHeader.jsx", + "line": 61, + "column": 8, + "index": 1483 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/TranscriptActionMenu.jsx", - "line": 37, - "column": 4, - "index": 1190 + "filePath": "src/users/enrollments/Enrollments.jsx", + "line": 94, + "column": 10, + "index": 3663 }, { - "filePath": "src/editors/sharedComponents/SelectionModal/SearchSort.jsx", - "line": 77, - "column": 6, - "index": 2097 + "filePath": "src/users/entitlements/Entitlements.jsx", + "line": 108, + "column": 10, + "index": 3844 } ], - "Dropdown.Toggle": [ + "Dropdown.Item": [ { - "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/AnswerWidget/AnswersContainer.jsx", - "line": 48, - "column": 10, - "index": 1456 + "filePath": "src/supportHeader/DesktopHeader.jsx", + "line": 70, + "column": 6, + "index": 1819 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/HandoutWidget/index.jsx", - "line": 72, - "column": 14, - "index": 2207 + "filePath": "src/supportHeader/DesktopHeader.jsx", + "line": 78, + "column": 6, + "index": 2081 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/LanguageSelector.jsx", - "line": 88, - "column": 8, - "index": 2445 + "filePath": "src/supportHeader/MobileHeader.jsx", + "line": 72, + "column": 6, + "index": 1770 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/TranscriptActionMenu.jsx", - "line": 38, + "filePath": "src/supportHeader/MobileHeader.jsx", + "line": 80, "column": 6, - "index": 1207 + "index": 2032 }, { - "filePath": "src/editors/sharedComponents/SelectionModal/SearchSort.jsx", - "line": 78, - "column": 8, - "index": 2116 - } - ], - "Add": [ + "filePath": "src/users/enrollments/Enrollments.jsx", + "line": 95, + "column": 12, + "index": 3691 + }, { - "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/AnswerWidget/AnswersContainer.jsx", - "line": 54, - "column": 19, - "index": 1626 + "filePath": "src/users/enrollments/Enrollments.jsx", + "line": 104, + "column": 12, + "index": 3961 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/index.jsx", - "line": 74, - "column": 26, - "index": 2118 + "filePath": "src/users/entitlements/Entitlements.jsx", + "line": 109, + "column": 12, + "index": 3872 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/index.jsx", - "line": 171, - "column": 24, - "index": 5607 + "filePath": "src/users/entitlements/Entitlements.jsx", + "line": 121, + "column": 12, + "index": 4311 + } + ], + "AlertModal": [ + { + "filePath": "src/users/CourseReset.jsx", + "line": 120, + "column": 10, + "index": 3261 + } + ], + "InputSelect": [ + { + "filePath": "src/users/enrollments/ChangeEnrollmentForm.jsx", + "line": 102, + "column": 8, + "index": 2913 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoSourceWidget/index.jsx", - "line": 146, - "column": 20, - "index": 4998 + "filePath": "src/users/enrollments/ChangeEnrollmentForm.jsx", + "line": 112, + "column": 8, + "index": 3170 }, { - "filePath": "src/editors/sharedComponents/SelectionModal/index.jsx", - "line": 73, - "column": 22, - "index": 1655 + "filePath": "src/users/enrollments/CreateEnrollmentForm.jsx", + "line": 66, + "column": 8, + "index": 1955 }, { - "filePath": "src/editors/sharedComponents/TypeaheadDropdown/index.jsx", - "line": 194, - "column": 24, - "index": 5041 + "filePath": "src/users/enrollments/CreateEnrollmentForm.jsx", + "line": 75, + "column": 8, + "index": 2179 } ], - "Dropdown.Menu": [ + "TransitionReplace": [ { - "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/AnswerWidget/AnswersContainer.jsx", - "line": 58, - "column": 10, - "index": 1752 + "filePath": "src/users/enrollments/Enrollments.jsx", + "line": 317, + "column": 6, + "index": 10107 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/HandoutWidget/index.jsx", - "line": 80, - "column": 14, - "index": 2499 + "filePath": "src/users/enrollments/Enrollments.jsx", + "line": 331, + "column": 6, + "index": 10577 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/LanguageSelector.jsx", - "line": 98, - "column": 8, - "index": 2754 + "filePath": "src/users/entitlements/Entitlements.jsx", + "line": 277, + "column": 6, + "index": 8677 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/TranscriptActionMenu.jsx", - "line": 46, + "filePath": "src/users/entitlements/Entitlements.jsx", + "line": 291, "column": 6, - "index": 1435 + "index": 9148 }, { - "filePath": "src/editors/sharedComponents/SelectionModal/SearchSort.jsx", - "line": 86, - "column": 8, - "index": 2381 + "filePath": "src/users/LearnerCredentials.jsx", + "line": 23, + "column": 4, + "index": 758 } ], - "Dropdown.Item": [ + "Popover": [ { - "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/AnswerWidget/AnswersContainer.jsx", - "line": 59, + "filePath": "src/users/VerifiedName.jsx", + "line": 96, "column": 12, - "index": 1780 + "index": 2355 }, { - "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/AnswerWidget/AnswersContainer.jsx", - "line": 66, + "filePath": "src/users/VerifiedName.jsx", + "line": 117, "column": 12, - "index": 2097 - }, + "index": 3196 + } + ], + "Popover.Title": [ { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/HandoutWidget/index.jsx", - "line": 81, - "column": 16, - "index": 2569 + "filePath": "src/users/VerifiedName.jsx", + "line": 97, + "column": 14, + "index": 2453 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/HandoutWidget/index.jsx", - "line": 87, - "column": 16, - "index": 2811 - }, + "filePath": "src/users/VerifiedName.jsx", + "line": 118, + "column": 14, + "index": 3302 + } + ], + "Popover.Content": [ { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/HandoutWidget/index.jsx", - "line": 90, - "column": 16, - "index": 3012 + "filePath": "src/users/VerifiedName.jsx", + "line": 100, + "column": 14, + "index": 2545 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/LanguageSelector.jsx", - "line": 101, - "column": 22, - "index": 2905 - }, + "filePath": "src/users/VerifiedName.jsx", + "line": 121, + "column": 14, + "index": 3394 + } + ] + } + }, + { + "version": "21.13.1", + "name": "@edx/frontend-component-cookie-policy-banner", + "repository": { + "type": "git", + "url": "https://github.com/openedx/frontend-component-cookie-policy-banner" + }, + "folderName": "frontend-component-cookie-policy-banner", + "usages": { + "StatusAlert": [ + { + "filePath": "src/CookiePolicyBanner/index.jsx", + "line": 68, + "column": 10, + "index": 1767 + } + ] + } + }, + { + "version": "21.13.1", + "name": "@edx/frontend-component-header-edx", + "repository": { + "type": "git", + "url": "git+https://github.com/edx/frontend-component-header-edx.git" + }, + "folderName": "frontend-component-header-edx", + "usages": { + "Avatar": [ { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/LanguageSelector.jsx", - "line": 104, - "column": 22, - "index": 3095 + "filePath": "src/common/UserMenuItem.jsx", + "line": 11, + "column": 4, + "index": 243 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/LanguageSelector.jsx", - "line": 106, - "column": 20, - "index": 3221 - }, + "filePath": "src/studio-header/UserMenu.jsx", + "line": 28, + "column": 4, + "index": 600 + } + ], + "Dropdown": [ { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/TranscriptActionMenu.jsx", - "line": 47, - "column": 8, - "index": 1500 + "filePath": "src/DesktopHeader.jsx", + "line": 90, + "column": 6, + "index": 2385 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/TranscriptActionMenu.jsx", - "line": 53, - "column": 8, - "index": 1707 - }, + "filePath": "src/learning-header/AuthenticatedUserDropdown.jsx", + "line": 63, + "column": 4, + "index": 1627 + } + ], + "Dropdown.Toggle": [ { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/TranscriptActionMenu.jsx", - "line": 56, + "filePath": "src/DesktopHeader.jsx", + "line": 91, "column": 8, - "index": 1885 + "index": 2404 }, { - "filePath": "src/editors/sharedComponents/SelectionModal/SearchSort.jsx", - "line": 88, - "column": 12, - "index": 2457 + "filePath": "src/learning-header/AuthenticatedUserDropdown.jsx", + "line": 64, + "column": 6, + "index": 1675 } ], - "Form.Label": [ - { - "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/AnswerWidget/components/Checker/index.jsx", - "line": 25, - "column": 6, - "index": 542 - }, + "AvatarButton": [ { - "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/AnswerWidget/components/Feedback/FeedbackControl.jsx", - "line": 20, - "column": 4, - "index": 534 + "filePath": "src/DesktopHeader.jsx", + "line": 93, + "column": 14, + "index": 2464 }, { - "filePath": "src/editors/containers/ProblemEditor/components/SelectTypeModal/content/AdvanceTypeSelect.jsx", - "line": 32, - "column": 10, - "index": 978 - }, + "filePath": "src/MobileHeader.jsx", + "line": 181, + "column": 21, + "index": 6129 + } + ], + "Dropdown.Menu": [ { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", - "line": 51, - "column": 20, - "index": 1435 + "filePath": "src/DesktopHeader.jsx", + "line": 99, + "column": 8, + "index": 2659 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", - "line": 70, - "column": 20, - "index": 2201 - }, + "filePath": "src/learning-header/AuthenticatedUserDropdown.jsx", + "line": 67, + "column": 6, + "index": 1827 + } + ], + "Dropdown.Item": [ { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", - "line": 95, - "column": 20, - "index": 3272 + "filePath": "src/DesktopHeader.jsx", + "line": 101, + "column": 12, + "index": 2730 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", - "line": 121, - "column": 20, - "index": 4378 + "filePath": "src/DesktopHeader.jsx", + "line": 120, + "column": 16, + "index": 3475 }, { - "filePath": "src/editors/sharedComponents/ImageUploadModal/ImageSettingsModal/AltTextControls.jsx", - "line": 29, + "filePath": "src/learning-header/AuthenticatedUserDropdown.jsx", + "line": 24, "column": 4, - "index": 840 + "index": 639 }, { - "filePath": "src/editors/sharedComponents/ImageUploadModal/ImageSettingsModal/AltTextControls.jsx", - "line": 52, - "column": 6, - "index": 1565 + "filePath": "src/learning-header/AuthenticatedUserDropdown.jsx", + "line": 30, + "column": 4, + "index": 806 }, { - "filePath": "src/editors/sharedComponents/ImageUploadModal/ImageSettingsModal/DimensionControls.jsx", + "filePath": "src/learning-header/AuthenticatedUserDropdown.jsx", "line": 39, "column": 4, - "index": 991 - } - ], - "AlertModal": [ + "index": 1093 + }, { - "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/index.jsx", - "line": 56, + "filePath": "src/learning-header/AuthenticatedUserDropdown.jsx", + "line": 53, "column": 6, - "index": 1611 - } - ], - "Container": [ - { - "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/index.jsx", - "line": 102, - "column": 10, - "index": 3245 + "index": 1434 }, { - "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/HintRow.jsx", - "line": 23, - "column": 4, - "index": 527 + "filePath": "src/learning-header/AuthenticatedUserDropdown.jsx", + "line": 71, + "column": 8, + "index": 1969 }, { - "filePath": "src/editors/containers/ProblemEditor/components/SelectTypeModal/content/Preview.jsx", - "line": 22, - "column": 4, - "index": 502 + "filePath": "src/learning-header/AuthenticatedUserDropdown.jsx", + "line": 74, + "column": 8, + "index": 2125 }, { - "filePath": "src/editors/containers/ProblemEditor/components/SelectTypeModal/content/ProblemTypeSelect.jsx", - "line": 17, - "column": 4, - "index": 622 + "filePath": "src/learning-header/AuthenticatedUserDropdown.jsx", + "line": 82, + "column": 10, + "index": 2623 }, { - "filePath": "src/editors/sharedComponents/ErrorBoundary/ErrorPage.jsx", - "line": 31, - "column": 4, - "index": 930 - } - ], - "Card.Section": [ + "filePath": "src/learning-header/AuthenticatedUserDropdown.jsx", + "line": 86, + "column": 8, + "index": 2778 + }, { - "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/CardSection.jsx", - "line": 14, + "filePath": "src/studio-header/NavDropdownMenu.jsx", + "line": 24, "column": 4, - "index": 306 + "index": 403 }, { - "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/SettingsOption.jsx", - "line": 21, + "filePath": "src/studio-header/NavDropdownMenu.jsx", + "line": 35, "column": 6, - "index": 652 - }, - { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/Transcript.jsx", - "line": 57, - "column": 14, - "index": 1563 + "index": 621 } ], - "Form.CheckboxSet": [ + "Dropdown.Header": [ { - "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/GroupFeedback/GroupFeedbackRow.jsx", - "line": 36, - "column": 4, - "index": 916 + "filePath": "src/DesktopHeader.jsx", + "line": 115, + "column": 32, + "index": 3226 } ], - "Row": [ - { - "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/GroupFeedback/GroupFeedbackRow.jsx", - "line": 40, - "column": 6, - "index": 1019 - }, + "Dropdown.Divider": [ { - "filePath": "src/editors/containers/ProblemEditor/components/SelectTypeModal/index.jsx", - "line": 20, - "column": 6, - "index": 660 - }, + "filePath": "src/DesktopHeader.jsx", + "line": 129, + "column": 46, + "index": 3843 + } + ], + "Badge": [ { - "filePath": "src/editors/sharedComponents/DraggableList/SortableItem.jsx", - "line": 32, - "column": 4, - "index": 710 + "filePath": "src/Header.jsx", + "line": 111, + "column": 87, + "index": 3935 }, { - "filePath": "src/editors/sharedComponents/ErrorBoundary/ErrorPage.jsx", + "filePath": "src/learning-header/AuthenticatedUserDropdown.jsx", "line": 32, "column": 6, - "index": 1024 - }, - { - "filePath": "src/editors/sharedComponents/ErrorBoundary/ErrorPage.jsx", - "line": 42, - "column": 10, - "index": 1300 + "index": 908 } ], - "Form.Checkbox": [ - { - "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/GroupFeedback/GroupFeedbackRow.jsx", - "line": 42, - "column": 10, - "index": 1087 - }, + "Button": [ { - "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/ScoringCard.jsx", - "line": 71, - "column": 8, - "index": 2348 + "filePath": "src/learning-header/AnonymousUserMenu.jsx", + "line": 12, + "column": 4, + "index": 366 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/SocialShareWidget/index.jsx", - "line": 54, - "column": 6, - "index": 1626 + "filePath": "src/learning-header/AnonymousUserMenu.jsx", + "line": 19, + "column": 4, + "index": 619 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/index.jsx", - "line": 127, + "filePath": "src/Notification/index.jsx", + "line": 153, "column": 14, - "index": 3837 + "index": 5656 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/index.jsx", - "line": 149, + "filePath": "src/Notification/NotificationSections.jsx", + "line": 55, "column": 12, - "index": 4737 + "index": 2506 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoSourceWidget/index.jsx", - "line": 119, - "column": 10, - "index": 4028 + "filePath": "src/Notification/NotificationSections.jsx", + "line": 102, + "column": 8, + "index": 4241 }, { - "filePath": "src/editors/sharedComponents/ImageUploadModal/ImageSettingsModal/AltTextControls.jsx", - "line": 47, - "column": 4, - "index": 1402 + "filePath": "src/studio-header/HeaderBody.jsx", + "line": 57, + "column": 14, + "index": 1073 } ], - "Card": [ - { - "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/SwitchToAdvancedEditorCard.jsx", - "line": 22, - "column": 4, - "index": 822 - }, + "useWindowSize": [ { - "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/SettingsOption.jsx", - "line": 20, - "column": 4, - "index": 561 + "filePath": "src/Notification/data/hook.js", + "line": 17, + "column": 21, + "index": 623 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/Transcript.jsx", - "line": 54, - "column": 10, - "index": 1403 + "filePath": "src/Notification/data/hook.js", + "line": 22, + "column": 21, + "index": 810 } ], - "Alert": [ - { - "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/Tolerance/index.jsx", - "line": 63, - "column": 7, - "index": 2127 - }, - { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/ThumbnailWidget/index.jsx", - "line": 79, - "column": 8, - "index": 2277 - }, + "breakpoints": [ { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/ErrorSummary.jsx", + "filePath": "src/Notification/data/hook.js", "line": 18, - "column": 4, - "index": 575 + "column": 9, + "index": 649 }, { - "filePath": "src/editors/sharedComponents/ErrorAlerts/ErrorAlert.jsx", - "line": 47, - "column": 4, - "index": 1119 + "filePath": "src/Notification/data/hook.js", + "line": 18, + "column": 78, + "index": 718 }, { - "filePath": "src/editors/sharedComponents/RawEditor/index.jsx", + "filePath": "src/Notification/data/hook.js", "line": 23, - "column": 8, - "index": 458 + "column": 29, + "index": 856 } ], - "Collapsible.Visible": [ - { - "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/SettingsOption.jsx", - "line": 28, - "column": 12, - "index": 1027 - }, - { - "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/SettingsOption.jsx", - "line": 31, - "column": 12, - "index": 1154 - }, + "OverlayTrigger": [ { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/CollapsibleFormWidget.jsx", - "line": 35, + "filePath": "src/Notification/index.jsx", + "line": 108, "column": 6, - "index": 1014 + "index": 3673 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/CollapsibleFormWidget.jsx", - "line": 45, - "column": 6, - "index": 1623 + "filePath": "src/studio-header/CourseLockUp.jsx", + "line": 18, + "column": 2, + "index": 330 } ], - "KeyboardArrowDown": [ + "Popover": [ { - "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/SettingsOption.jsx", - "line": 29, - "column": 25, - "index": 1085 + "filePath": "src/Notification/index.jsx", + "line": 114, + "column": 10, + "index": 3828 } ], - "KeyboardArrowUp": [ + "Popover.Title": [ { - "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/SettingsOption.jsx", - "line": 32, - "column": 25, - "index": 1210 + "filePath": "src/Notification/index.jsx", + "line": 127, + "column": 16, + "index": 4428 } ], - "Col": [ + "Hyperlink": [ { - "filePath": "src/editors/containers/ProblemEditor/components/SelectTypeModal/content/AdvanceTypeSelect.jsx", - "line": 27, + "filePath": "src/Notification/index.jsx", + "line": 133, + "column": 18, + "index": 4762 + }, + { + "filePath": "src/Notification/NotificationRowItem.jsx", + "line": 43, "column": 4, - "index": 619 + "index": 1371 + } + ], + "Icon": [ + { + "filePath": "src/Notification/index.jsx", + "line": 138, + "column": 20, + "index": 4978 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/DurationWidget/index.jsx", - "line": 49, - "column": 24, - "index": 1276 + "filePath": "src/Notification/index.jsx", + "line": 171, + "column": 20, + "index": 6267 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/DurationWidget/index.jsx", - "line": 61, - "column": 24, - "index": 1766 + "filePath": "src/Notification/NotificationEmptySection.jsx", + "line": 24, + "column": 16, + "index": 895 }, { - "filePath": "src/editors/sharedComponents/ErrorBoundary/ErrorPage.jsx", - "line": 33, - "column": 8, - "index": 1038 + "filePath": "src/Notification/NotificationRowItem.jsx", + "line": 51, + "column": 6, + "index": 1680 + }, + { + "filePath": "src/Notification/NotificationSections.jsx", + "line": 118, + "column": 12, + "index": 4780 + }, + { + "filePath": "src/Notification/NotificationSections.jsx", + "line": 123, + "column": 14, + "index": 5122 } ], - "ArrowBack": [ + "Settings": [ { - "filePath": "src/editors/containers/ProblemEditor/components/SelectTypeModal/content/AdvanceTypeSelect.jsx", - "line": 30, + "filePath": "src/Notification/index.jsx", + "line": 139, "column": 27, - "index": 851 + "index": 5011 } ], - "Form.RadioSet": [ + "Popover.Content": [ { - "filePath": "src/editors/containers/ProblemEditor/components/SelectTypeModal/content/AdvanceTypeSelect.jsx", - "line": 37, - "column": 8, - "index": 1154 - }, + "filePath": "src/Notification/index.jsx", + "line": 147, + "column": 14, + "index": 5323 + } + ], + "IconButton": [ { - "filePath": "www/src/Gallery.jsx", - "line": 42, + "filePath": "src/Notification/index.jsx", + "line": 166, "column": 10, - "index": 1687 + "index": 6030 }, { - "filePath": "www/src/Gallery.jsx", - "line": 59, - "column": 10, - "index": 2177 + "filePath": "src/Notification/NotificationEmptySection.jsx", + "line": 20, + "column": 6, + "index": 744 } ], - "Form.Radio": [ - { - "filePath": "src/editors/containers/ProblemEditor/components/SelectTypeModal/content/AdvanceTypeSelect.jsx", - "line": 47, - "column": 18, - "index": 1531 - }, - { - "filePath": "src/editors/containers/ProblemEditor/components/SelectTypeModal/content/AdvanceTypeSelect.jsx", - "line": 70, - "column": 16, - "index": 2575 - }, + "NotificationsNone": [ { - "filePath": "www/src/Gallery.jsx", - "line": 48, - "column": 14, - "index": 1882 + "filePath": "src/Notification/index.jsx", + "line": 170, + "column": 17, + "index": 6228 }, { - "filePath": "www/src/Gallery.jsx", - "line": 64, - "column": 12, - "index": 2317 - }, + "filePath": "src/Notification/NotificationEmptySection.jsx", + "line": 23, + "column": 13, + "index": 860 + } + ], + "Bubble": [ { - "filePath": "www/src/Gallery.jsx", - "line": 65, + "filePath": "src/Notification/index.jsx", + "line": 181, "column": 12, - "index": 2375 + "index": 6602 } ], - "OverlayTrigger": [ + "Spinner": [ { - "filePath": "src/editors/containers/ProblemEditor/components/SelectTypeModal/content/AdvanceTypeSelect.jsx", - "line": 51, - "column": 18, - "index": 1760 - }, + "filePath": "src/Notification/NotificationSections.jsx", + "line": 99, + "column": 10, + "index": 3998 + } + ], + "CheckCircleLightOutline": [ { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/index.jsx", - "line": 136, - "column": 14, - "index": 4268 - }, + "filePath": "src/Notification/NotificationSections.jsx", + "line": 118, + "column": 56, + "index": 4824 + } + ], + "AutoAwesome": [ { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoSourceWidget/index.jsx", - "line": 128, - "column": 10, - "index": 4381 + "filePath": "src/Notification/NotificationSections.jsx", + "line": 123, + "column": 25, + "index": 5133 + } + ], + "Tabs": [ + { + "filePath": "src/Notification/NotificationTabs.jsx", + "line": 43, + "column": 8, + "index": 1314 } ], - "Tooltip": [ - { - "filePath": "src/editors/containers/ProblemEditor/components/SelectTypeModal/content/AdvanceTypeSelect.jsx", - "line": 54, - "column": 22, - "index": 1867 - }, + "Tab": [ { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/index.jsx", - "line": 140, - "column": 18, - "index": 4387 - }, + "filePath": "src/Notification/NotificationTabs.jsx", + "line": 50, + "column": 12, + "index": 1559 + } + ], + "ProductTour": [ { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoSourceWidget/index.jsx", - "line": 132, - "column": 14, - "index": 4484 + "filePath": "src/Notification/tours/NotificationTour.jsx", + "line": 23, + "column": 6, + "index": 769 } ], - "Image": [ + "Tooltip": [ { - "filePath": "src/editors/containers/ProblemEditor/components/SelectTypeModal/content/Preview.jsx", - "line": 26, + "filePath": "src/studio-header/CourseLockUp.jsx", + "line": 21, "column": 6, - "index": 726 - }, + "index": 390 + } + ], + "Container": [ { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/ThumbnailWidget/index.jsx", - "line": 85, - "column": 10, - "index": 2469 - }, + "filePath": "src/studio-header/HeaderBody.jsx", + "line": 48, + "column": 4, + "index": 814 + } + ], + "ActionRow": [ { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoPreviewWidget/index.jsx", - "line": 33, - "column": 10, - "index": 1053 - }, + "filePath": "src/studio-header/HeaderBody.jsx", + "line": 49, + "column": 6, + "index": 861 + } + ], + "Row": [ { - "filePath": "src/editors/containers/VideoGallery/index.jsx", + "filePath": "src/studio-header/HeaderBody.jsx", "line": 51, - "column": 4, - "index": 1761 - }, - { - "filePath": "src/editors/sharedComponents/ImageUploadModal/ImageSettingsModal/index.jsx", - "line": 75, "column": 10, - "index": 2310 + "index": 925 }, { - "filePath": "src/editors/sharedComponents/SelectionModal/GalleryCard.jsx", - "line": 40, - "column": 12, - "index": 1185 + "filePath": "src/studio-header/HeaderBody.jsx", + "line": 69, + "column": 16, + "index": 1508 } ], - "SelectableBox.Set": [ + "ActionRow.Spacer": [ { - "filePath": "src/editors/containers/ProblemEditor/components/SelectTypeModal/content/ProblemTypeSelect.jsx", - "line": 18, - "column": 6, - "index": 684 + "filePath": "src/studio-header/HeaderBody.jsx", + "line": 84, + "column": 16, + "index": 1918 }, { - "filePath": "src/editors/sharedComponents/SelectionModal/Gallery.jsx", - "line": 63, + "filePath": "src/studio-header/HeaderBody.jsx", + "line": 99, "column": 8, - "index": 1426 + "index": 2406 } ], - "SelectableBox": [ + "Nav": [ { - "filePath": "src/editors/containers/ProblemEditor/components/SelectTypeModal/content/ProblemTypeSelect.jsx", - "line": 27, + "filePath": "src/studio-header/HeaderBody.jsx", + "line": 88, "column": 14, - "index": 931 + "index": 2022 }, { - "filePath": "src/editors/sharedComponents/SelectionModal/GalleryCard.jsx", - "line": 21, - "column": 4, - "index": 604 + "filePath": "src/studio-header/HeaderBody.jsx", + "line": 100, + "column": 8, + "index": 2435 } ], - "Stack": [ + "useToggle": [ { - "filePath": "src/editors/containers/ProblemEditor/components/SelectTypeModal/index.jsx", - "line": 22, + "filePath": "src/studio-header/MobileHeader.jsx", + "line": 11, + "column": 36, + "index": 314 + } + ], + "ModalPopup": [ + { + "filePath": "src/studio-header/MobileHeader.jsx", + "line": 23, + "column": 6, + "index": 574 + } + ], + "Collapsible": [ + { + "filePath": "src/studio-header/MobileMenu.jsx", + "line": 16, "column": 10, - "index": 780 - }, + "index": 412 + } + ], + "DropdownButton": [ { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/HandoutWidget/index.jsx", - "line": 67, - "column": 8, - "index": 2020 - }, + "filePath": "src/studio-header/NavDropdownMenu.jsx", + "line": 17, + "column": 2, + "index": 266 + } + ] + } + }, + { + "version": "22.9.0", + "name": "@edx/frontend-component-header", + "repository": { + "type": "git", + "url": "git+https://github.com/openedx/frontend-component-header.git" + }, + "folderName": "frontend-component-header", + "usages": { + "Dropdown": [ { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/HandoutWidget/index.jsx", - "line": 99, - "column": 8, - "index": 3383 - }, + "filePath": "src/learning-header/AuthenticatedUserDropdown.jsx", + "line": 39, + "column": 4, + "index": 1203 + } + ], + "Dropdown.Toggle": [ { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/index.jsx", - "line": 56, + "filePath": "src/learning-header/AuthenticatedUserDropdown.jsx", + "line": 40, "column": 6, - "index": 1463 - }, + "index": 1251 + } + ], + "Dropdown.Menu": [ { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", + "filePath": "src/learning-header/AuthenticatedUserDropdown.jsx", "line": 46, - "column": 12, - "index": 1194 - }, - { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDisplay.jsx", - "line": 25, "column": 6, - "index": 499 - }, + "index": 1506 + } + ], + "Dropdown.Item": [ { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/ThumbnailWidget/index.jsx", - "line": 84, - "column": 8, - "index": 2420 + "filePath": "src/learning-header/LearningHeaderUserMenuItems.jsx", + "line": 7, + "column": 2, + "index": 185 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/ThumbnailWidget/index.jsx", - "line": 104, - "column": 8, - "index": 3064 - }, + "filePath": "src/studio-header/NavDropdownMenu.jsx", + "line": 21, + "column": 6, + "index": 376 + } + ], + "Button": [ { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/ImportTranscriptCard.jsx", - "line": 23, + "filePath": "src/learning-header/LearningLoggedOutButtons.jsx", + "line": 7, "column": 2, - "index": 498 + "index": 196 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/index.jsx", - "line": 116, - "column": 6, - "index": 3421 - }, + "filePath": "src/studio-header/HeaderBody.jsx", + "line": 71, + "column": 14, + "index": 1463 + } + ], + "OverlayTrigger": [ { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoPreviewWidget/index.jsx", - "line": 46, - "column": 10, - "index": 1447 - }, + "filePath": "src/studio-header/CourseLockUp.jsx", + "line": 20, + "column": 2, + "index": 372 + } + ], + "Tooltip": [ { - "filePath": "src/editors/sharedComponents/SelectionModal/index.jsx", - "line": 96, + "filePath": "src/studio-header/CourseLockUp.jsx", + "line": 23, "column": 6, - "index": 2330 + "index": 432 } ], - "ModalDialog.Title": [ + "Container": [ { - "filePath": "src/editors/containers/ProblemEditor/components/SelectTypeModal/SelectTypeWrapper/index.jsx", - "line": 23, - "column": 8, - "index": 667 + "filePath": "src/studio-header/HeaderBody.jsx", + "line": 58, + "column": 4, + "index": 1123 }, { - "filePath": "src/editors/containers/VideoEditor/components/BaseModal.jsx", - "line": 26, - "column": 6, - "index": 410 - }, + "filePath": "src/studio-header/HeaderBody.jsx", + "line": 172, + "column": 34, + "index": 4453 + } + ], + "ActionRow": [ { - "filePath": "src/editors/sharedComponents/BaseModal/index.jsx", - "line": 37, + "filePath": "src/studio-header/HeaderBody.jsx", + "line": 63, "column": 6, - "index": 736 + "index": 1251 } ], - "ModalDialog": [ + "Row": [ { - "filePath": "src/editors/containers/VideoEditor/components/BaseModal.jsx", - "line": 16, - "column": 2, - "index": 220 + "filePath": "src/studio-header/HeaderBody.jsx", + "line": 65, + "column": 10, + "index": 1315 }, { - "filePath": "src/editors/sharedComponents/BaseModal/index.jsx", - "line": 25, - "column": 2, - "index": 411 + "filePath": "src/studio-header/HeaderBody.jsx", + "line": 83, + "column": 16, + "index": 1898 } ], - "ModalDialog.CloseButton": [ + "ActionRow.Spacer": [ { - "filePath": "src/editors/containers/VideoEditor/components/BaseModal.jsx", - "line": 35, - "column": 8, - "index": 614 + "filePath": "src/studio-header/HeaderBody.jsx", + "line": 98, + "column": 16, + "index": 2308 }, { - "filePath": "src/editors/sharedComponents/BaseModal/index.jsx", - "line": 49, + "filePath": "src/studio-header/HeaderBody.jsx", + "line": 118, "column": 8, - "index": 1034 + "index": 2907 } ], - "InfoOutline": [ - { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/CollapsibleFormWidget.jsx", - "line": 41, - "column": 56, - "index": 1436 - }, + "Nav": [ { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/index.jsx", - "line": 145, - "column": 27, - "index": 4575 + "filePath": "src/studio-header/HeaderBody.jsx", + "line": 102, + "column": 14, + "index": 2412 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoSourceWidget/index.jsx", - "line": 137, - "column": 23, - "index": 4665 + "filePath": "src/studio-header/HeaderBody.jsx", + "line": 120, + "column": 10, + "index": 2971 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/ErrorSummary.jsx", - "line": 19, - "column": 12, - "index": 594 + "filePath": "src/studio-header/HeaderBody.jsx", + "line": 130, + "column": 8, + "index": 3309 } ], - "ExpandMore": [ - { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/CollapsibleFormWidget.jsx", - "line": 42, - "column": 76, - "index": 1529 - }, + "IconButton": [ { - "filePath": "src/editors/sharedComponents/TypeaheadDropdown/index.jsx", - "line": 161, - "column": 13, - "index": 4232 + "filePath": "src/studio-header/HeaderBody.jsx", + "line": 121, + "column": 12, + "index": 2989 } ], - "ExpandLess": [ - { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/CollapsibleFormWidget.jsx", - "line": 48, - "column": 78, - "index": 1846 - }, + "Search": [ { - "filePath": "src/editors/sharedComponents/TypeaheadDropdown/index.jsx", - "line": 176, - "column": 13, - "index": 4554 + "filePath": "src/studio-header/HeaderBody.jsx", + "line": 122, + "column": 19, + "index": 3020 } ], - "Form.Row": [ - { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/DurationWidget/index.jsx", - "line": 48, - "column": 6, - "index": 1222 - }, + "Icon": [ { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoSourceWidget/index.jsx", - "line": 100, - "column": 10, - "index": 3211 + "filePath": "src/studio-header/HeaderBody.jsx", + "line": 123, + "column": 22, + "index": 3050 } ], - "MoreHoriz": [ - { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/HandoutWidget/index.jsx", - "line": 75, - "column": 21, - "index": 2354 - }, + "useToggle": [ { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/TranscriptActionMenu.jsx", - "line": 41, - "column": 13, - "index": 1330 + "filePath": "src/studio-header/MobileHeader.jsx", + "line": 11, + "column": 36, + "index": 314 } ], - "FileUpload": [ - { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/HandoutWidget/index.jsx", - "line": 104, - "column": 24, - "index": 3611 - }, - { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/ThumbnailWidget/index.jsx", - "line": 115, - "column": 24, - "index": 3580 - }, + "ModalPopup": [ { - "filePath": "src/editors/containers/VideoUploadEditor/VideoUploader.jsx", - "line": 20, - "column": 19, - "index": 772 + "filePath": "src/studio-header/MobileHeader.jsx", + "line": 23, + "column": 6, + "index": 574 } ], - "Copyright": [ + "Collapsible": [ { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseBlurb.jsx", - "line": 26, - "column": 61, - "index": 655 + "filePath": "src/studio-header/MobileMenu.jsx", + "line": 15, + "column": 10, + "index": 450 } ], - "Cc": [ + "DropdownButton": [ { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseBlurb.jsx", - "line": 27, - "column": 59, - "index": 795 + "filePath": "src/studio-header/NavDropdownMenu.jsx", + "line": 14, + "column": 2, + "index": 238 } ], - "Attribution": [ + "Avatar": [ { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseBlurb.jsx", + "filePath": "src/studio-header/UserMenu.jsx", "line": 28, - "column": 38, - "index": 907 - }, - { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", - "line": 50, - "column": 60, - "index": 1399 + "column": 4, + "index": 611 } - ], - "Nc": [ + ] + } + }, + { + "version": "21.13.1", + "name": "@edx/frontend-enterprise-catalog-search", + "repository": { + "type": "git", + "url": "git+https://github.com/openedx/frontend-enterprise.git" + }, + "folderName": "catalog-search", + "usages": { + "Button": [ { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseBlurb.jsx", - "line": 29, - "column": 40, - "index": 1047 + "filePath": "src/ClearCurrentRefinements.jsx", + "line": 26, + "column": 6, + "index": 855 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", - "line": 69, - "column": 31, - "index": 2174 - } - ], - "Nd": [ - { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseBlurb.jsx", - "line": 30, - "column": 40, - "index": 1161 + "filePath": "src/CurrentRefinements.jsx", + "line": 125, + "column": 10, + "index": 4887 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", - "line": 94, - "column": 31, - "index": 3245 - } - ], - "Sa": [ + "filePath": "src/MobileFilterMenu.jsx", + "line": 21, + "column": 8, + "index": 758 + }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseBlurb.jsx", - "line": 31, - "column": 37, - "index": 1272 + "filePath": "src/MobileFilterMenu.jsx", + "line": 74, + "column": 14, + "index": 2912 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", - "line": 120, - "column": 31, - "index": 4351 + "filePath": "src/MobileFilterMenu.jsx", + "line": 99, + "column": 16, + "index": 3860 } ], - "CheckboxControl": [ + "Badge": [ { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", - "line": 55, - "column": 20, - "index": 1659 + "filePath": "src/CurrentRefinements.jsx", + "line": 83, + "column": 10, + "index": 3081 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", - "line": 74, - "column": 20, - "index": 2427 + "filePath": "src/CurrentRefinements.jsx", + "line": 106, + "column": 10, + "index": 4002 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", - "line": 99, - "column": 20, - "index": 3498 + "filePath": "src/FacetItem.jsx", + "line": 27, + "column": 6, + "index": 906 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", - "line": 125, - "column": 20, - "index": 4601 - } - ], - "Card.Header": [ - { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/Transcript.jsx", - "line": 55, + "filePath": "src/LearningTypeRadioFacet.jsx", + "line": 134, "column": 12, - "index": 1439 + "index": 6165 } ], - "Card.Body": [ + "CloseSmall": [ { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/Transcript.jsx", - "line": 56, + "filePath": "src/CurrentRefinements.jsx", + "line": 92, "column": 12, - "index": 1537 - } - ], - "Card.Footer": [ - { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/Transcript.jsx", - "line": 60, - "column": 14, - "index": 1699 + "index": 3424 } ], - "ClosedCaption": [ + "Dropdown": [ { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoPreviewWidget/LanguageNamesWidget.jsx", + "filePath": "src/FacetDropdown.jsx", "line": 16, "column": 4, - "index": 669 + "index": 318 + }, + { + "filePath": "src/LearningTypeRadioFacet.jsx", + "line": 35, + "column": 6, + "index": 1545 } ], - "Alert.Heading": [ + "Dropdown.Toggle": [ { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/ErrorSummary.jsx", - "line": 23, + "filePath": "src/FacetDropdown.jsx", + "line": 17, "column": 6, - "index": 680 + "index": 405 }, { - "filePath": "src/editors/sharedComponents/ErrorAlerts/ErrorAlert.jsx", - "line": 55, - "column": 10, - "index": 1264 + "filePath": "src/LearningTypeRadioFacet.jsx", + "line": 36, + "column": 8, + "index": 1603 } ], - "ArrowBackIos": [ + "Dropdown.Menu": [ { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/index.jsx", - "line": 39, - "column": 19, - "index": 1223 + "filePath": "src/FacetDropdown.jsx", + "line": 27, + "column": 6, + "index": 743 }, { - "filePath": "src/editors/sharedComponents/ImageUploadModal/ImageSettingsModal/index.jsx", - "line": 65, - "column": 20, - "index": 1970 - } - ], - "InputGroup": [ - { - "filePath": "src/editors/containers/VideoUploadEditor/VideoUploader.jsx", - "line": 30, + "filePath": "src/LearningTypeRadioFacet.jsx", + "line": 47, "column": 8, - "index": 1343 + "index": 2012 } ], - "FormControl": [ + "Dropdown.Item": [ { - "filePath": "src/editors/containers/VideoUploadEditor/VideoUploader.jsx", - "line": 31, + "filePath": "src/FacetItem.jsx", + "line": 16, + "column": 4, + "index": 433 + }, + { + "filePath": "src/LearningTypeRadioFacet.jsx", + "line": 48, "column": 10, - "index": 1366 - } - ], - "ArrowForward": [ + "index": 2038 + }, { - "filePath": "src/editors/containers/VideoUploadEditor/VideoUploader.jsx", - "line": 43, - "column": 21, - "index": 1935 - } - ], - "Dropzone": [ + "filePath": "src/LearningTypeRadioFacet.jsx", + "line": 64, + "column": 10, + "index": 2753 + }, { - "filePath": "src/editors/containers/VideoUploadEditor/VideoUploader.jsx", - "line": 85, - "column": 6, - "index": 3064 - } - ], - "DragIndicator": [ + "filePath": "src/LearningTypeRadioFacet.jsx", + "line": 80, + "column": 10, + "index": 3523 + }, { - "filePath": "src/editors/sharedComponents/DraggableList/SortableItem.jsx", - "line": 42, - "column": 13, - "index": 981 - } - ], - "Error": [ + "filePath": "src/LearningTypeRadioFacet.jsx", + "line": 100, + "column": 14, + "index": 4535 + }, { - "filePath": "src/editors/sharedComponents/ErrorAlerts/ErrorAlert.jsx", - "line": 49, - "column": 12, - "index": 1161 + "filePath": "src/LearningTypeRadioFacet.jsx", + "line": 119, + "column": 10, + "index": 5427 } ], - "paragon": [ + "Input": [ { - "filePath": "src/editors/sharedComponents/ImageUploadModal/ImageSettingsModal/DimensionControls.test.jsx", - "line": 70, + "filePath": "src/FacetItem.jsx", + "line": 17, "column": 6, - "index": 2398 + "index": 514 }, { - "filePath": "src/editors/sharedComponents/ImageUploadModal/ImageSettingsModal/DimensionControls.test.jsx", - "line": 73, - "column": 6, - "index": 2514 + "filePath": "src/LearningTypeRadioFacet.jsx", + "line": 49, + "column": 12, + "index": 2125 }, { - "filePath": "src/editors/sharedComponents/ImageUploadModal/ImageSettingsModal/DimensionControls.test.jsx", - "line": 77, - "column": 6, - "index": 2681 + "filePath": "src/LearningTypeRadioFacet.jsx", + "line": 65, + "column": 12, + "index": 2840 }, { - "filePath": "src/editors/sharedComponents/ImageUploadModal/ImageSettingsModal/DimensionControls.test.jsx", + "filePath": "src/LearningTypeRadioFacet.jsx", "line": 81, - "column": 6, - "index": 2842 + "column": 12, + "index": 3610 }, { - "filePath": "src/editors/sharedComponents/ImageUploadModal/ImageSettingsModal/DimensionControls.test.jsx", - "line": 84, - "column": 6, - "index": 2958 + "filePath": "src/LearningTypeRadioFacet.jsx", + "line": 101, + "column": 16, + "index": 4626 }, { - "filePath": "src/editors/sharedComponents/ImageUploadModal/ImageSettingsModal/DimensionControls.test.jsx", - "line": 93, - "column": 6, - "index": 3409 + "filePath": "src/LearningTypeRadioFacet.jsx", + "line": 120, + "column": 12, + "index": 5514 }, { - "filePath": "src/editors/sharedComponents/ImageUploadModal/ImageSettingsModal/DimensionControls.test.jsx", - "line": 94, - "column": 6, - "index": 3449 - }, + "filePath": "src/TypeaheadFacetDropdown.jsx", + "line": 26, + "column": 8, + "index": 653 + } + ], + "ArrowDropDown": [ { - "filePath": "src/editors/sharedComponents/ImageUploadModal/ImageSettingsModal/DimensionControls.test.jsx", - "line": 95, - "column": 6, - "index": 3489 - }, + "filePath": "src/MobileFilterMenu.jsx", + "line": 42, + "column": 10, + "index": 1652 + } + ], + "Close": [ { - "filePath": "src/editors/sharedComponents/ImageUploadModal/ImageSettingsModal/DimensionControls.test.jsx", - "line": 96, + "filePath": "src/MobileFilterMenu.jsx", + "line": 79, + "column": 16, + "index": 3093 + } + ], + "Image": [ + { + "filePath": "src/PrequerySearchSuggestionItem.jsx", + "line": 15, "column": 6, - "index": 3531 - }, + "index": 382 + } + ], + "SearchField.Advanced": [ { - "filePath": "src/editors/sharedComponents/ImageUploadModal/ImageSettingsModal/DimensionControls.test.jsx", - "line": 97, + "filePath": "src/SearchBox.jsx", + "line": 169, "column": 6, - "index": 3565 + "index": 6222 } ], - "icons": [ + "SearchField.Input": [ { - "filePath": "src/editors/sharedComponents/ImageUploadModal/ImageSettingsModal/DimensionControls.test.jsx", - "line": 88, + "filePath": "src/SearchBox.jsx", + "line": 183, + "column": 8, + "index": 6642 + } + ], + "SearchField.ClearButton": [ + { + "filePath": "src/SearchBox.jsx", + "line": 190, + "column": 8, + "index": 6903 + } + ], + "SearchField.SubmitButton": [ + { + "filePath": "src/SearchBox.jsx", + "line": 191, + "column": 8, + "index": 6986 + } + ], + "MediaQuery": [ + { + "filePath": "src/SearchFilters.jsx", + "line": 60, "column": 6, - "index": 3204 + "index": 1904 }, { - "filePath": "src/editors/sharedComponents/ImageUploadModal/ImageSettingsModal/DimensionControls.test.jsx", - "line": 90, + "filePath": "src/SearchFilters.jsx", + "line": 65, "column": 6, - "index": 3316 + "index": 2078 + } + ], + "breakpoints": [ + { + "filePath": "src/SearchFilters.jsx", + "line": 60, + "column": 28, + "index": 1926 }, { - "filePath": "src/editors/sharedComponents/ImageUploadModal/ImageSettingsModal/DimensionControls.test.jsx", - "line": 98, - "column": 6, - "index": 3605 + "filePath": "src/SearchFilters.jsx", + "line": 65, + "column": 28, + "index": 2100 }, { - "filePath": "src/editors/sharedComponents/ImageUploadModal/ImageSettingsModal/DimensionControls.test.jsx", - "line": 99, + "filePath": "src/tests/SearchFilters.test.jsx", + "line": 13, + "column": 47, + "index": 498 + } + ], + "Container": [ + { + "filePath": "src/SearchHeader.jsx", + "line": 42, "column": 6, - "index": 3639 + "index": 1220 } ], - "Scrollable": [ + "Row": [ { - "filePath": "src/editors/sharedComponents/SelectionModal/Gallery.jsx", - "line": 61, - "column": 4, - "index": 1304 + "filePath": "src/SearchHeader.jsx", + "line": 43, + "column": 8, + "index": 1261 } ], - "Badge": [ + "Col": [ { - "filePath": "src/editors/sharedComponents/SelectionModal/GalleryCard.jsx", - "line": 47, - "column": 12, - "index": 1479 + "filePath": "src/SearchHeader.jsx", + "line": 44, + "column": 10, + "index": 1299 }, { - "filePath": "src/editors/sharedComponents/SelectionModal/GalleryCard.jsx", - "line": 52, - "column": 12, - "index": 1692 + "filePath": "src/SearchHeader.jsx", + "line": 65, + "column": 10, + "index": 2093 } ], - "Search": [ + "Icon": [ { - "filePath": "src/editors/sharedComponents/SelectionModal/SearchSort.jsx", - "line": 52, - "column": 27, - "index": 1329 + "filePath": "src/SearchPagination.jsx", + "line": 23, + "column": 10, + "index": 708 + }, + { + "filePath": "src/SearchPagination.jsx", + "line": 29, + "column": 10, + "index": 848 } ], - "SelectMenu": [ + "ArrowBackIos": [ { - "filePath": "src/editors/sharedComponents/SelectionModal/SearchSort.jsx", - "line": 59, - "column": 6, - "index": 1467 + "filePath": "src/SearchPagination.jsx", + "line": 23, + "column": 21, + "index": 719 } ], - "MenuItem": [ + "ArrowForwardIos": [ { - "filePath": "src/editors/sharedComponents/SelectionModal/SearchSort.jsx", - "line": 61, - "column": 10, - "index": 1578 + "filePath": "src/SearchPagination.jsx", + "line": 29, + "column": 21, + "index": 859 } ], - "Form.SwitchSet": [ + "Pagination": [ { - "filePath": "src/editors/sharedComponents/SelectionModal/SearchSort.jsx", - "line": 99, - "column": 10, - "index": 2783 + "filePath": "src/SearchPagination.jsx", + "line": 66, + "column": 4, + "index": 1853 } ], - "Form.Switch": [ + "ResponsiveContext.Provider": [ { - "filePath": "src/editors/sharedComponents/SelectionModal/SearchSort.jsx", - "line": 104, - "column": 12, - "index": 2907 + "filePath": "src/tests/SearchFilters.test.jsx", + "line": 15, + "column": 4, + "index": 549 } ] } }, { - "version": "20.36.0", - "name": "content-components-gallery", - "folderName": "www", + "version": "12.2.0", + "name": "@edx/frontend-learner-portal-base", + "repository": "https://github.com/edx/frontend-learner-portal-base", + "folderName": "frontend-learner-portal-base", "usages": { - "Form.Group": [ + "Dropdown.Deprecated": [ { - "filePath": "src/Gallery.jsx", - "line": 41, - "column": 8, - "index": 1664 + "filePath": "src/components/course-enrollments/course-cards/BaseCourseCard.jsx", + "line": 150, + "column": 10, + "index": 3778 + } + ], + "Modal": [ + { + "filePath": "src/components/course-enrollments/course-cards/email-settings/EmailSettingsModal.jsx", + "line": 111, + "column": 6, + "index": 2819 }, { - "filePath": "src/Gallery.jsx", - "line": 52, - "column": 8, - "index": 1996 + "filePath": "src/components/course-enrollments/course-cards/mark-complete-modal/MarkCompleteModal.jsx", + "line": 74, + "column": 6, + "index": 2189 } ], - "Form.RadioSet": [ + "StatusAlert": [ { - "filePath": "src/Gallery.jsx", - "line": 42, + "filePath": "src/components/course-enrollments/course-cards/email-settings/EmailSettingsModal.jsx", + "line": 116, + "column": 14, + "index": 2938 + }, + { + "filePath": "src/components/course-enrollments/course-cards/mark-complete-modal/ModalError.jsx", + "line": 11, + "column": 4, + "index": 412 + }, + { + "filePath": "src/components/course-enrollments/CourseEnrollments.jsx", + "line": 56, + "column": 4, + "index": 1718 + }, + { + "filePath": "src/components/course-enrollments/CourseEnrollments.jsx", + "line": 76, + "column": 6, + "index": 2241 + } + ], + "Input": [ + { + "filePath": "src/components/course-enrollments/course-cards/email-settings/EmailSettingsModal.jsx", + "line": 133, + "column": 14, + "index": 3527 + } + ], + "StatefulButton": [ + { + "filePath": "src/components/course-enrollments/course-cards/email-settings/EmailSettingsModal.jsx", + "line": 149, "column": 10, - "index": 1687 + "index": 4151 }, { - "filePath": "src/Gallery.jsx", - "line": 59, + "filePath": "src/components/course-enrollments/course-cards/mark-complete-modal/MarkCompleteModal.jsx", + "line": 78, "column": 10, - "index": 2177 + "index": 2294 } ], - "Form.Radio": [ + "Button": [ { - "filePath": "src/Gallery.jsx", - "line": 48, - "column": 14, - "index": 1882 + "filePath": "src/components/course-enrollments/course-cards/UpcomingCourseCard.jsx", + "line": 10, + "column": 4, + "index": 256 + } + ], + "breakpoints": [ + { + "filePath": "src/components/course-enrollments/CourseEnrollments.jsx", + "line": 126, + "column": 30, + "index": 3586 }, { - "filePath": "src/Gallery.jsx", - "line": 64, - "column": 12, - "index": 2317 + "filePath": "src/components/course-enrollments/tests/CourseEnrollments.test.jsx", + "line": 161, + "column": 26, + "index": 4917 }, { - "filePath": "src/Gallery.jsx", - "line": 65, - "column": 12, - "index": 2375 + "filePath": "src/components/course-enrollments/tests/CourseEnrollments.test.jsx", + "line": 174, + "column": 26, + "index": 5374 + } + ], + "Collapsible": [ + { + "filePath": "src/components/course-enrollments/CourseSection.jsx", + "line": 80, + "column": 8, + "index": 1990 } ] } }, { - "version": "20.44.0", + "version": "22.7.0", "name": "@edx/frontend-lib-special-exams", "repository": { "type": "git", @@ -42879,121 +51137,121 @@ "Spinner": [ { "filePath": "src/exam/Exam.jsx", - "line": 78, + "line": 79, "column": 8, - "index": 2982 + "index": 3102 }, { "filePath": "src/instructions/proctored_exam/ReadyToStartProctoredExamInstructions.jsx", - "line": 126, + "line": 125, "column": 32, - "index": 4472 + "index": 4484 } ], "Alert": [ { "filePath": "src/exam/Exam.jsx", - "line": 99, + "line": 100, "column": 8, - "index": 3701 + "index": 3821 }, { "filePath": "src/exam/ExamAPIError.jsx", - "line": 16, + "line": 15, "column": 4, - "index": 618 + "index": 599 }, { "filePath": "src/instructions/UnknownAttemptStatusError.jsx", "line": 6, "column": 2, - "index": 174 + "index": 178 }, { "filePath": "src/timer/ExamTimerBlock.jsx", - "line": 62, + "line": 63, "column": 6, - "index": 2077 + "index": 2128 } ], "Info": [ { "filePath": "src/exam/Exam.jsx", - "line": 99, + "line": 100, "column": 36, - "index": 3729 + "index": 3849 }, { "filePath": "src/exam/ExamAPIError.jsx", - "line": 17, + "line": 16, "column": 17, - "index": 699 + "index": 680 } ], "Icon": [ { "filePath": "src/exam/ExamAPIError.jsx", - "line": 17, + "line": 16, "column": 6, - "index": 688 + "index": 669 }, { "filePath": "src/timer/CountDownTimer.jsx", "line": 51, "column": 12, - "index": 1835 + "index": 1843 }, { "filePath": "src/timer/CountDownTimer.jsx", "line": 52, "column": 12, - "index": 1921 + "index": 1929 } ], "Alert.Heading": [ { "filePath": "src/exam/ExamAPIError.jsx", - "line": 18, + "line": 17, "column": 6, - "index": 737 + "index": 718 }, { "filePath": "src/instructions/UnknownAttemptStatusError.jsx", "line": 7, "column": 4, - "index": 238 + "index": 242 } ], "Hyperlink": [ { "filePath": "src/exam/ExamAPIError.jsx", - "line": 31, + "line": 30, "column": 16, - "index": 1305 + "index": 1286 }, { "filePath": "src/instructions/proctored_exam/download-instructions/LtiProviderInstructions.jsx", "line": 10, "column": 4, - "index": 321 + "index": 325 }, { "filePath": "src/instructions/proctored_exam/ErrorProctoredExamInstructions.jsx", "line": 34, "column": 31, - "index": 1454 + "index": 1432 }, { "filePath": "src/instructions/proctored_exam/OnboardingErrorExamInstructions.jsx", - "line": 30, + "line": 29, "column": 14, - "index": 1153 + "index": 1127 }, { "filePath": "src/instructions/proctored_exam/OnboardingErrorExamInstructions.jsx", - "line": 59, + "line": 58, "column": 14, - "index": 2303 + "index": 2277 } ], "Container": [ @@ -43001,289 +51259,283 @@ "filePath": "src/instructions/EntranceInstructions.jsx", "line": 29, "column": 6, - "index": 1054 + "index": 1058 }, { "filePath": "src/instructions/ErrorInstructions.jsx", "line": 26, "column": 6, - "index": 826 + "index": 830 }, { "filePath": "src/instructions/ExpiredInstructions.jsx", "line": 6, "column": 2, - "index": 176 + "index": 180 }, { "filePath": "src/instructions/proctored_exam/download-instructions/index.jsx", - "line": 106, + "line": 111, "column": 6, - "index": 3644 + "index": 3709 }, { "filePath": "src/instructions/proctored_exam/OnboardingErrorExamInstructions.jsx", - "line": 75, + "line": 74, "column": 6, - "index": 2685 + "index": 2659 }, { "filePath": "src/instructions/proctored_exam/prerequisites-instructions/index.jsx", "line": 37, "column": 6, - "index": 1295 + "index": 1267 }, { "filePath": "src/instructions/proctored_exam/ReadyToStartProctoredExamInstructions.jsx", - "line": 33, + "line": 32, "column": 6, - "index": 1030 + "index": 1042 }, { "filePath": "src/instructions/proctored_exam/SkipProctoredExamInstruction.jsx", - "line": 14, + "line": 15, "column": 6, - "index": 454 + "index": 437 }, { "filePath": "src/instructions/RejectedInstructions.jsx", - "line": 24, + "line": 26, "column": 6, - "index": 760 + "index": 848 }, { "filePath": "src/instructions/SubmitInstructions.jsx", - "line": 31, + "line": 34, "column": 6, - "index": 1109 + "index": 1165 }, { "filePath": "src/instructions/SubmittedInstructions.jsx", "line": 29, "column": 6, - "index": 995 + "index": 999 }, { "filePath": "src/instructions/VerifiedInstructions.jsx", - "line": 23, + "line": 25, "column": 6, - "index": 696 + "index": 784 } ], "MailtoLink": [ { "filePath": "src/instructions/onboarding_exam/EntranceOnboardingExamInstructions.jsx", - "line": 64, + "line": 68, "column": 10, - "index": 2393 + "index": 2446 }, { "filePath": "src/instructions/onboarding_exam/EntranceOnboardingExamInstructions.jsx", - "line": 79, + "line": 83, "column": 10, - "index": 2969 + "index": 3022 }, { "filePath": "src/instructions/onboarding_exam/RejectedOnboardingExamInstructions.jsx", - "line": 25, + "line": 29, "column": 10, - "index": 988 + "index": 1041 }, { "filePath": "src/instructions/onboarding_exam/SubmittedOnboardingExamInstructions.jsx", - "line": 37, + "line": 42, "column": 8, - "index": 1517 + "index": 1571 }, { "filePath": "src/instructions/onboarding_exam/SubmittedOnboardingExamInstructions.jsx", - "line": 86, + "line": 83, "column": 8, - "index": 3406 + "index": 3076 }, { "filePath": "src/instructions/onboarding_exam/VerifiedOnboardingExamInstructions.jsx", - "line": 32, + "line": 33, "column": 8, - "index": 1090 + "index": 1099 }, { "filePath": "src/instructions/proctored_exam/ErrorProctoredExamInstructions.jsx", "line": 23, "column": 33, - "index": 998 + "index": 976 }, { "filePath": "src/instructions/proctored_exam/OnboardingErrorExamInstructions.jsx", - "line": 91, + "line": 90, "column": 12, - "index": 3430 + "index": 3404 } ], "Button": [ { "filePath": "src/instructions/onboarding_exam/EntranceOnboardingExamInstructions.jsx", - "line": 89, + "line": 93, "column": 8, - "index": 3296 + "index": 3349 }, { "filePath": "src/instructions/onboarding_exam/ErrorOnboardingExamInstructions.jsx", - "line": 25, + "line": 26, "column": 6, - "index": 849 + "index": 832 }, { "filePath": "src/instructions/onboarding_exam/RejectedOnboardingExamInstructions.jsx", - "line": 34, + "line": 38, "column": 6, - "index": 1344 + "index": 1397 }, { "filePath": "src/instructions/onboarding_exam/SubmittedOnboardingExamInstructions.jsx", - "line": 63, + "line": 60, "column": 8, - "index": 2663 + "index": 2315 }, { "filePath": "src/instructions/onboarding_exam/SubmittedOnboardingExamInstructions.jsx", - "line": 70, + "line": 67, "column": 6, - "index": 2928 + "index": 2580 }, { "filePath": "src/instructions/practice_exam/EntrancePracticeExamInstructions.jsx", - "line": 26, + "line": 27, "column": 8, - "index": 907 + "index": 890 }, { "filePath": "src/instructions/practice_exam/ErrorPracticeExamInstructions.jsx", - "line": 37, + "line": 38, "column": 6, - "index": 1306 + "index": 1289 }, { "filePath": "src/instructions/practice_exam/SubmittedPracticeExamInstructions.jsx", - "line": 25, - "column": 6, - "index": 880 + "line": 35, + "column": 8, + "index": 1230 }, { "filePath": "src/instructions/proctored_exam/download-instructions/DownloadButtons.jsx", "line": 11, "column": 6, - "index": 302 + "index": 306 }, { "filePath": "src/instructions/proctored_exam/download-instructions/DownloadButtons.jsx", "line": 23, "column": 4, - "index": 721 + "index": 725 }, { "filePath": "src/instructions/proctored_exam/EntranceProctoredExamInstructions.jsx", - "line": 54, + "line": 58, "column": 8, - "index": 2063 + "index": 2116 }, { "filePath": "src/instructions/proctored_exam/Footer.jsx", "line": 12, "column": 8, - "index": 336 + "index": 340 }, { "filePath": "src/instructions/proctored_exam/ReadyToStartProctoredExamInstructions.jsx", - "line": 87, + "line": 86, "column": 10, - "index": 3154 + "index": 3166 }, { "filePath": "src/instructions/proctored_exam/ReadyToStartProctoredExamInstructions.jsx", - "line": 120, + "line": 119, "column": 8, - "index": 4282 + "index": 4294 }, { "filePath": "src/instructions/proctored_exam/SkipProctoredExamButton.jsx", "line": 8, "column": 4, - "index": 232 + "index": 236 }, { "filePath": "src/instructions/proctored_exam/SkipProctoredExamInstruction.jsx", - "line": 29, + "line": 30, "column": 10, - "index": 1117 + "index": 1100 }, { "filePath": "src/instructions/proctored_exam/SkipProctoredExamInstruction.jsx", - "line": 40, + "line": 41, "column": 10, - "index": 1508 + "index": 1509 }, { "filePath": "src/instructions/proctored_exam/SubmitProctoredExamInstructions.jsx", - "line": 62, + "line": 61, "column": 6, - "index": 2224 + "index": 2271 }, { "filePath": "src/instructions/proctored_exam/WarningModal.jsx", - "line": 23, + "line": 25, "column": 8, - "index": 493 + "index": 541 }, { "filePath": "src/instructions/SubmitInstructions.jsx", - "line": 36, + "line": 39, "column": 10, - "index": 1316 + "index": 1372 }, { "filePath": "src/instructions/timed_exam/StartTimedExamInstructions.jsx", - "line": 38, + "line": 39, "column": 6, - "index": 1350 + "index": 1400 }, { "filePath": "src/instructions/timed_exam/SubmitTimedExamInstructions.jsx", - "line": 30, + "line": 31, "column": 6, - "index": 998 + "index": 981 }, { "filePath": "src/timer/ExamTimerBlock.jsx", - "line": 118, + "line": 119, "column": 14, - "index": 4189 + "index": 4240 } ], "useToggle": [ { "filePath": "src/instructions/onboarding_exam/SubmittedOnboardingExamInstructions.jsx", - "line": 7, + "line": 9, "column": 31, - "index": 299 + "index": 338 }, { "filePath": "src/timer/CountDownTimer.jsx", "line": 14, "column": 46, - "index": 559 + "index": 567 }, { "filePath": "src/timer/ExamTimerBlock.jsx", "line": 23, "column": 43, - "index": 751 - }, - { - "filePath": "src/timer/TimerProvider.jsx", - "line": 36, - "column": 42, - "index": 1128 + "index": 799 } ], "Check": [ @@ -43291,7 +51543,7 @@ "filePath": "src/instructions/proctored_exam/download-instructions/ExamCode.jsx", "line": 14, "column": 16, - "index": 389 + "index": 397 } ], "Form.Group": [ @@ -43299,7 +51551,7 @@ "filePath": "src/instructions/proctored_exam/download-instructions/ExamCode.jsx", "line": 29, "column": 4, - "index": 666 + "index": 674 } ], "Form.Label": [ @@ -43307,7 +51559,7 @@ "filePath": "src/instructions/proctored_exam/download-instructions/ExamCode.jsx", "line": 30, "column": 6, - "index": 685 + "index": 693 } ], "Form.Control": [ @@ -43315,7 +51567,7 @@ "filePath": "src/instructions/proctored_exam/download-instructions/ExamCode.jsx", "line": 36, "column": 6, - "index": 973 + "index": 981 } ], "StatefulButton": [ @@ -43323,7 +51575,7 @@ "filePath": "src/instructions/proctored_exam/download-instructions/ExamCode.jsx", "line": 41, "column": 10, - "index": 1087 + "index": 1095 } ], "ModalDialog": [ @@ -43331,47 +51583,47 @@ "filePath": "src/instructions/proctored_exam/WarningModal.jsx", "line": 8, "column": 2, - "index": 197 + "index": 201 } ], "ModalDialog.Header": [ { "filePath": "src/instructions/proctored_exam/WarningModal.jsx", - "line": 13, + "line": 15, "column": 4, - "index": 266 + "index": 314 } ], "ModalDialog.Title": [ { "filePath": "src/instructions/proctored_exam/WarningModal.jsx", - "line": 14, + "line": 16, "column": 6, - "index": 293 + "index": 341 } ], "ModalDialog.Body": [ { "filePath": "src/instructions/proctored_exam/WarningModal.jsx", - "line": 18, + "line": 20, "column": 4, - "index": 386 + "index": 434 } ], "ModalDialog.Footer": [ { "filePath": "src/instructions/proctored_exam/WarningModal.jsx", - "line": 21, + "line": 23, "column": 4, - "index": 446 + "index": 494 } ], "ActionRow": [ { "filePath": "src/instructions/proctored_exam/WarningModal.jsx", - "line": 22, + "line": 24, "column": 6, - "index": 473 + "index": 521 } ], "VisibilityOff": [ @@ -43379,7 +51631,7 @@ "filePath": "src/timer/CountDownTimer.jsx", "line": 51, "column": 48, - "index": 1871 + "index": 1879 } ], "Visibility": [ @@ -43387,33 +51639,33 @@ "filePath": "src/timer/CountDownTimer.jsx", "line": 52, "column": 48, - "index": 1957 + "index": 1965 } ], "Alert.Link": [ { "filePath": "src/timer/ExamTimerBlock.jsx", - "line": 73, + "line": 74, "column": 18, - "index": 2490 + "index": 2541 }, { "filePath": "src/timer/ExamTimerBlock.jsx", - "line": 91, + "line": 92, "column": 20, - "index": 3209 + "index": 3260 }, { "filePath": "src/timer/ExamTimerBlock.jsx", - "line": 100, + "line": 101, "column": 18, - "index": 3530 + "index": 3581 } ] } }, { - "version": "21.5.6", + "version": "22.8.1", "name": "@edx/frontend-platform", "repository": { "type": "git", @@ -43426,7 +51678,7 @@ "filePath": "src/react/ErrorPage.jsx", "line": 39, "column": 6, - "index": 814 + "index": 818 } ], "Row": [ @@ -43434,7 +51686,7 @@ "filePath": "src/react/ErrorPage.jsx", "line": 40, "column": 8, - "index": 935 + "index": 939 } ], "Col": [ @@ -43442,7 +51694,7 @@ "filePath": "src/react/ErrorPage.jsx", "line": 41, "column": 10, - "index": 951 + "index": 955 } ], "Button": [ @@ -43450,13 +51702,13 @@ "filePath": "src/react/ErrorPage.jsx", "line": 54, "column": 12, - "index": 1460 + "index": 1464 } ] } }, { - "version": "21.5.6", + "version": "22.9.0", "name": "@edx/frontend-template-application", "repository": { "type": "git", @@ -43469,7 +51721,7 @@ "filePath": "src/example/ExamplePage.jsx", "line": 5, "column": 4, - "index": 84 + "index": 88 } ] } @@ -43510,9 +51762,9 @@ }, { "filePath": "src/packages/exec-ed-page/components/MobileCollapsibleSection.jsx", - "line": 21, - "column": 21, - "index": 916 + "line": 31, + "column": 23, + "index": 1249 }, { "filePath": "src/packages/product-page/components/ProductStickyNav/index.jsx", @@ -43520,25 +51772,31 @@ "column": 33, "index": 4013 }, + { + "filePath": "src/packages/product-page/components/ProductStickyNavV2/index.jsx", + "line": 139, + "column": 18, + "index": 4903 + }, { "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", - "line": 860, + "line": 875, "column": 35, - "index": 40537 + "index": 41065 } ], "Container": [ { "filePath": "src/packages/about-edx-page/template/AboutEdXPage/index.jsx", - "line": 229, + "line": 228, "column": 10, - "index": 11050 + "index": 11148 }, { "filePath": "src/packages/about-edx-page/template/AboutEdXPage/index.jsx", - "line": 256, + "line": 258, "column": 10, - "index": 12699 + "index": 12845 }, { "filePath": "src/packages/become-page/components/BecomeCards.jsx", @@ -43576,6 +51834,42 @@ "column": 10, "index": 6691 }, + { + "filePath": "src/packages/common/ui/CardContainer/index.jsx", + "line": 106, + "column": 18, + "index": 3861 + }, + { + "filePath": "src/packages/common/ui/CardContainer/index.jsx", + "line": 118, + "column": 12, + "index": 4379 + }, + { + "filePath": "src/packages/common/ui/CardContainer/index.jsx", + "line": 126, + "column": 12, + "index": 4711 + }, + { + "filePath": "src/packages/common/ui/CardContainer/v2/index.jsx", + "line": 144, + "column": 18, + "index": 5212 + }, + { + "filePath": "src/packages/common/ui/CardContainer/v2/index.jsx", + "line": 157, + "column": 12, + "index": 5741 + }, + { + "filePath": "src/packages/common/ui/CardContainer/v2/index.jsx", + "line": 167, + "column": 10, + "index": 6089 + }, { "filePath": "src/packages/common/ui/Form/StandaloneHubspotCaptureForm/index.jsx", "line": 44, @@ -43586,25 +51880,31 @@ "filePath": "src/packages/common/ui/Hero/variants/BootcampVariant.jsx", "line": 73, "column": 6, - "index": 2371 + "index": 2370 + }, + { + "filePath": "src/packages/common/ui/MarketingTakeover/index.jsx", + "line": 23, + "column": 6, + "index": 680 }, { "filePath": "src/packages/common/ui/SitewideBanner/index.jsx", - "line": 64, - "column": 8, - "index": 2287 + "line": 61, + "column": 6, + "index": 2013 }, { "filePath": "src/packages/degree-page/components/TabSections/index.jsx", - "line": 178, + "line": 177, "column": 6, - "index": 6280 + "index": 5971 }, { "filePath": "src/packages/degree-page/template/DegreeDetailPage/index.jsx", - "line": 258, + "line": 269, "column": 8, - "index": 9274 + "index": 9687 }, { "filePath": "src/packages/exec-ed-page/components/AboutCourse.jsx", @@ -43614,15 +51914,15 @@ }, { "filePath": "src/packages/exec-ed-page/components/Certificate/index.jsx", - "line": 25, + "line": 31, "column": 6, - "index": 839 + "index": 1210 }, { "filePath": "src/packages/exec-ed-page/components/CourseHeader2U/index.jsx", - "line": 235, + "line": 247, "column": 6, - "index": 7626 + "index": 8056 }, { "filePath": "src/packages/exec-ed-page/components/Factoid/index.jsx", @@ -43644,39 +51944,81 @@ }, { "filePath": "src/packages/exec-ed-page/template/ExecEdDetailPage/index.jsx", - "line": 482, + "line": 469, "column": 18, - "index": 18794 + "index": 18126 }, { "filePath": "src/packages/home-page/components/Audiences/index.jsx", - "line": 19, + "line": 18, "column": 6, - "index": 695 + "index": 632 }, { "filePath": "src/packages/home-page/components/EdxVision/index.jsx", - "line": 10, + "line": 11, "column": 6, - "index": 332 + "index": 401 }, { "filePath": "src/packages/home-page/components/Hero/index.jsx", - "line": 60, + "line": 66, + "column": 10, + "index": 2214 + }, + { + "filePath": "src/packages/home-page/components/HeroV2/index.jsx", + "line": 35, "column": 10, - "index": 1932 + "index": 1248 + }, + { + "filePath": "src/packages/home-page/components/MarketingModule/index.jsx", + "line": 23, + "column": 6, + "index": 684 + }, + { + "filePath": "src/packages/home-page/components/MarketingModule/index.jsx", + "line": 36, + "column": 12, + "index": 1351 }, { - "filePath": "src/packages/home-page/components/MarketingTakeover/index.jsx", + "filePath": "src/packages/home-page/components/MarketingModule/index.jsx", + "line": 37, + "column": 14, + "index": 1417 + }, + { + "filePath": "src/packages/home-page/components/MarketingModule/index.jsx", + "line": 42, + "column": 14, + "index": 1739 + }, + { + "filePath": "src/packages/home-page/components/MarketingTakeoverV2/index.jsx", "line": 22, "column": 6, - "index": 668 + "index": 709 }, { "filePath": "src/packages/home-page/components/NewOnEdxCarousel/index.jsx", - "line": 60, + "line": 65, "column": 6, - "index": 1904 + "index": 2008 + }, + { + "filePath": "src/packages/home-page/components/NewOnEdxCarousel/v2/index.jsx", + "line": 66, + "column": 6, + "index": 2317 + }, + { + "filePath": "src/packages/home-page/components/PopularTopics/index.jsx", + "line": 49, + "column": 4, + "index": 1516 }, { "filePath": "src/packages/home-page/components/Recommendations/components/RecommendationsBase.jsx", @@ -43690,17 +52032,29 @@ "column": 6, "index": 516 }, + { + "filePath": "src/packages/home-page/components/Testimonials/index.jsx", + "line": 26, + "column": 6, + "index": 988 + }, { "filePath": "src/packages/home-page/components/Trustbar/index.jsx", "line": 12, "column": 4, "index": 383 }, + { + "filePath": "src/packages/home-page/components/TrustbarV2/index.jsx", + "line": 12, + "column": 4, + "index": 383 + }, { "filePath": "src/packages/home-page/components/UniversalDesignOfLearning/index.jsx", - "line": 7, + "line": 8, "column": 4, - "index": 185 + "index": 254 }, { "filePath": "src/packages/learn-index-page/components/Hero.jsx", @@ -43710,15 +52064,15 @@ }, { "filePath": "src/packages/learn-index-page/template/AllTopicsPage/index.jsx", - "line": 76, + "line": 70, "column": 10, - "index": 3130 + "index": 2876 }, { "filePath": "src/packages/learn-index-page/template/AllTopicsPage/index.jsx", - "line": 88, + "line": 82, "column": 8, - "index": 3719 + "index": 3465 }, { "filePath": "src/packages/learn-index-page/template/LearnIndexPage/index.jsx", @@ -43726,11 +52080,29 @@ "column": 8, "index": 1404 }, + { + "filePath": "src/packages/learn-page/components/CTABanner/index.jsx", + "line": 40, + "column": 6, + "index": 1443 + }, { "filePath": "src/packages/learn-page/components/DynamicProductList/index.jsx", - "line": 289, + "line": 290, + "column": 6, + "index": 10370 + }, + { + "filePath": "src/packages/learn-page/components/DynamicProductListV2/index.jsx", + "line": 296, "column": 6, - "index": 10351 + "index": 10574 + }, + { + "filePath": "src/packages/learn-page/components/DynamicProductListV2/index.jsx", + "line": 392, + "column": 12, + "index": 15008 }, { "filePath": "src/packages/learn-page/components/Hero/index.jsx", @@ -43738,41 +52110,89 @@ "column": 6, "index": 2629 }, + { + "filePath": "src/packages/learn-page/components/HeroV2/index.jsx", + "line": 59, + "column": 6, + "index": 2150 + }, + { + "filePath": "src/packages/learn-page/components/HeroV2/index.jsx", + "line": 69, + "column": 12, + "index": 2588 + }, { "filePath": "src/packages/learn-page/components/RelatedTopics/index.jsx", "line": 20, "column": 6, - "index": 553 + "index": 540 + }, + { + "filePath": "src/packages/learn-page/components/RelatedTopicsV2/index.jsx", + "line": 20, + "column": 6, + "index": 560 + }, + { + "filePath": "src/packages/learn-page/components/SubHeadedLearnPageIntro/index.jsx", + "line": 13, + "column": 6, + "index": 554 }, { "filePath": "src/packages/learn-page/template/LearnPage/index.jsx", - "line": 212, - "column": 10, - "index": 7585 + "line": 228, + "column": 14, + "index": 8376 }, { "filePath": "src/packages/learn-page/template/LearnPage/index.jsx", - "line": 237, + "line": 254, "column": 12, - "index": 8597 + "index": 9472 }, { "filePath": "src/packages/learn-page/template/LearnPage/index.jsx", - "line": 274, + "line": 294, "column": 10, - "index": 9824 + "index": 10938 }, { "filePath": "src/packages/learn-page/template/LearnPage/index.jsx", - "line": 327, + "line": 349, + "column": 10, + "index": 12813 + }, + { + "filePath": "src/packages/learn-page/template/LearnPage/v2/index.jsx", + "line": 265, "column": 10, - "index": 11628 + "index": 9598 + }, + { + "filePath": "src/packages/learn-page/template/LearnPage/v2/index.jsx", + "line": 290, + "column": 14, + "index": 10576 + }, + { + "filePath": "src/packages/learn-page/template/LearnPage/v2/index.jsx", + "line": 304, + "column": 14, + "index": 11059 + }, + { + "filePath": "src/packages/learn-page/template/LearnPage/v2/index.jsx", + "line": 342, + "column": 12, + "index": 12542 }, { "filePath": "src/packages/modular-page/components/Section/index.jsx", - "line": 23, + "line": 22, "column": 6, - "index": 690 + "index": 592 }, { "filePath": "src/packages/modular-page/components/SplitView/index.jsx", @@ -43787,16 +52207,22 @@ "index": 3486 }, { - "filePath": "src/packages/modular-page/modules/AdmissionsAboutSection/index.jsx", - "line": 71, - "column": 4, - "index": 2112 + "filePath": "src/packages/modular-page/components/StaticCalloutsV2/index.jsx", + "line": 91, + "column": 6, + "index": 3528 }, { - "filePath": "src/packages/modular-page/modules/BlurbModule/components/SlantedBlurbModule.jsx", - "line": 47, - "column": 6, - "index": 1606 + "filePath": "src/packages/modular-page/components/StaticCalloutsV2/index.jsx", + "line": 110, + "column": 12, + "index": 4138 + }, + { + "filePath": "src/packages/modular-page/modules/AccordionTextModule/components/AccordionFaqModuleV2.jsx", + "line": 40, + "column": 4, + "index": 1022 }, { "filePath": "src/packages/modular-page/modules/FeaturedProductsModule/index.jsx", @@ -43805,34 +52231,40 @@ "index": 1931 }, { - "filePath": "src/packages/modular-page/modules/PartnershipModule/index.jsx", - "line": 37, + "filePath": "src/packages/modular-page/modules/MediaModule/components/BlurbModuleSlanted.jsx", + "line": 54, "column": 6, - "index": 1058 + "index": 1619 }, { - "filePath": "src/packages/modular-page/modules/PlacementAboutSection/index.jsx", - "line": 31, + "filePath": "src/packages/modular-page/modules/MediaModule/components/PlacementAboutSection.jsx", + "line": 30, "column": 4, - "index": 812 + "index": 810 }, { - "filePath": "src/packages/modular-page/modules/ProgramReferralModule/index.jsx", - "line": 32, + "filePath": "src/packages/modular-page/modules/MediaModule/components/UpcomingProgramModule.jsx", + "line": 57, "column": 6, - "index": 937 + "index": 1941 }, { - "filePath": "src/packages/modular-page/modules/UpcomingProgramModule/index.jsx", - "line": 57, + "filePath": "src/packages/modular-page/modules/PartnershipModule/index.jsx", + "line": 37, "column": 6, - "index": 1954 + "index": 1058 + }, + { + "filePath": "src/packages/modular-page/modules/ProgramReferralModule/index.jsx", + "line": 32, + "column": 6, + "index": 937 }, { "filePath": "src/packages/open-course-page/components/BusinessBlock/variants/DesktopVariant.jsx", - "line": 17, + "line": 79, "column": 4, - "index": 600 + "index": 2160 }, { "filePath": "src/packages/open-course-page/components/BusinessBlock/variants/MobileVariant.jsx", @@ -43842,15 +52274,15 @@ }, { "filePath": "src/packages/open-course-page/components/CourseHeader/index.jsx", - "line": 50, + "line": 58, "column": 6, - "index": 1360 + "index": 1825 }, { "filePath": "src/packages/open-course-page/components/CourseMain/variants/DesktopVariant.jsx", - "line": 106, + "line": 114, "column": 4, - "index": 3904 + "index": 4173 }, { "filePath": "src/packages/open-course-page/components/CourseMain/variants/MobileVariant.jsx", @@ -43872,33 +52304,27 @@ }, { "filePath": "src/packages/open-course-page/components/CourseModes/index.jsx", - "line": 251, - "column": 4, - "index": 10410 - }, - { - "filePath": "src/packages/open-course-page/components/CourseModes/TerminologyUpdateVariant/index.jsx", - "line": 199, + "line": 205, "column": 4, - "index": 8330 + "index": 8538 }, { "filePath": "src/packages/open-course-page/components/CoursePageMobile.jsx", - "line": 81, + "line": 82, "column": 10, - "index": 3141 + "index": 3151 }, { "filePath": "src/packages/open-course-page/components/CourseRunSelector/index.jsx", "line": 145, "column": 4, - "index": 5288 + "index": 5309 }, { "filePath": "src/packages/open-course-page/components/CourseSnapshot/index.jsx", - "line": 210, + "line": 173, "column": 12, - "index": 6744 + "index": 5927 }, { "filePath": "src/packages/open-course-page/components/FAQ/index.jsx", @@ -43922,13 +52348,13 @@ "filePath": "src/packages/open-course-page/components/ProgramUpsell/ProgramUpsellWidget.jsx", "line": 96, "column": 6, - "index": 3164 + "index": 3163 }, { "filePath": "src/packages/open-course-page/components/StickyNav/index.jsx", - "line": 198, + "line": 200, "column": 12, - "index": 6855 + "index": 6890 }, { "filePath": "src/packages/product-page/components/PLPFooter/index.jsx", @@ -43944,63 +52370,63 @@ }, { "filePath": "src/packages/program-page/components/AboutEdx/index.jsx", - "line": 8, + "line": 9, "column": 4, - "index": 205 + "index": 274 }, { "filePath": "src/packages/program-page/components/ProgramDataBar/index.jsx", - "line": 38, + "line": 31, "column": 8, - "index": 1004 + "index": 934 }, { "filePath": "src/packages/program-page/components/ProgramMain/index.jsx", - "line": 441, + "line": 449, "column": 6, - "index": 17018 + "index": 17208 }, { "filePath": "src/packages/program-page/components/ProgramMain/index.jsx", - "line": 442, + "line": 450, "column": 8, - "index": 17090 + "index": 17280 }, { "filePath": "src/packages/program-page/components/ProgramMain/index.jsx", - "line": 443, + "line": 451, "column": 10, - "index": 17122 + "index": 17312 }, { "filePath": "src/packages/program-page/components/ProgramMain/index.jsx", - "line": 628, + "line": 640, "column": 10, - "index": 26309 + "index": 26582 }, { "filePath": "src/packages/program-page/components/ProgramMain/index.jsx", - "line": 636, + "line": 648, "column": 10, - "index": 26764 + "index": 27037 }, { "filePath": "src/packages/program-page/components/ProgramMain/index.jsx", - "line": 655, + "line": 667, "column": 6, - "index": 27488 + "index": 27761 }, { "filePath": "src/packages/program-page/components/ProgramMain/index.jsx", - "line": 778, + "line": 800, "column": 12, - "index": 33126 + "index": 33730 }, { "filePath": "src/packages/program-page/components/ProgramMain/index.jsx", - "line": 779, + "line": 801, "column": 14, - "index": 33179 + "index": 33783 }, { "filePath": "src/packages/program-page/components/SubjectTopics/index.jsx", @@ -44036,7 +52462,7 @@ "filePath": "src/packages/resource-page/template/ResourcePage/index.jsx", "line": 81, "column": 6, - "index": 2859 + "index": 2821 }, { "filePath": "src/packages/search-page/components/BaseHeader/components/SearchInput.jsx", @@ -44080,12 +52506,6 @@ "column": 6, "index": 1706 }, - { - "filePath": "src/packages/search-page/components/HeaderSection.jsx", - "line": 140, - "column": 4, - "index": 5084 - }, { "filePath": "src/packages/search-page/components/PreQueryPage/components/PopularSearchLinks/index.jsx", "line": 36, @@ -44094,9 +52514,9 @@ }, { "filePath": "src/packages/search-page/components/PreQueryPage/index.jsx", - "line": 69, + "line": 50, "column": 4, - "index": 2295 + "index": 1524 }, { "filePath": "src/packages/search-page/components/QuizMatchRecommendations/index.jsx", @@ -44106,9 +52526,9 @@ }, { "filePath": "src/packages/search-page/components/RefinementFilters/index.jsx", - "line": 67, + "line": 81, "column": 8, - "index": 2412 + "index": 2810 }, { "filePath": "src/packages/search-page/components/Results/FirstLevelResult.jsx", @@ -44118,9 +52538,9 @@ }, { "filePath": "src/packages/search-page/components/Results/SecondLevelResult.jsx", - "line": 44, + "line": 61, "column": 4, - "index": 1368 + "index": 2283 }, { "filePath": "src/packages/search-page/components/SearchBreadcrumb/index.jsx", @@ -44130,15 +52550,27 @@ }, { "filePath": "src/packages/search-page/components/SearchPage/index.jsx", - "line": 557, + "line": 560, "column": 10, - "index": 20933 + "index": 20948 }, { "filePath": "src/packages/search-page/components/SkillsBuilderCTA/index.jsx", "line": 48, "column": 6, - "index": 1944 + "index": 1928 + }, + { + "filePath": "src/packages/shop-page/template/components/HeadLineModule/index.jsx", + "line": 13, + "column": 6, + "index": 415 + }, + { + "filePath": "src/packages/shop-page/template/ShopPage/index.jsx", + "line": 314, + "column": 16, + "index": 11291 } ], "Icon": [ @@ -44168,45 +52600,39 @@ }, { "filePath": "src/packages/common/ui/Carousel/index.jsx", - "line": 250, + "line": 252, "column": 14, - "index": 7521 + "index": 7609 }, { "filePath": "src/packages/common/ui/Carousel/index.jsx", - "line": 270, + "line": 272, "column": 14, - "index": 8339 - }, - { - "filePath": "src/packages/common/ui/Collapsible/components/ParagonCollapsible/index.jsx", - "line": 72, - "column": 11, - "index": 1837 + "index": 8427 }, { "filePath": "src/packages/common/ui/Footer/utils.jsx", - "line": 598, + "line": 643, "column": 12, - "index": 28182 + "index": 30143 }, { "filePath": "src/packages/common/ui/Footer/utils.jsx", - "line": 604, + "line": 649, "column": 12, - "index": 28426 + "index": 30397 }, { "filePath": "src/packages/common/ui/Footer/utils.jsx", - "line": 610, + "line": 655, "column": 12, - "index": 28678 + "index": 30659 }, { "filePath": "src/packages/common/ui/Footer/utils.jsx", - "line": 616, + "line": 661, "column": 12, - "index": 28932 + "index": 30913 }, { "filePath": "src/packages/common/ui/Header/components/mobile-navigation/MenuAccordion/index.jsx", @@ -44229,62 +52655,8 @@ { "filePath": "src/packages/common/ui/PreviewExpand/index.jsx", "line": 55, - "column": 10, - "index": 1495 - }, - { - "filePath": "src/packages/common/ui/xpert/experiments/ChatFloatingActionButton/index.jsx", - "line": 146, - "column": 14, - "index": 5006 - }, - { - "filePath": "src/packages/common/ui/xpert/experiments/OCMFloatingActionButton/index.jsx", - "line": 165, - "column": 19, - "index": 4927 - }, - { - "filePath": "src/packages/common/ui/xpert/experiments/OCMFloatingActionButton/index.jsx", - "line": 180, - "column": 8, - "index": 5438 - }, - { - "filePath": "src/packages/common/ui/xpert/experiments/OCMFloatingActionButton/index.jsx", - "line": 204, "column": 12, - "index": 6260 - }, - { - "filePath": "src/packages/common/ui/xpert/experiments/OCMFloatingActionButton/index.jsx", - "line": 265, - "column": 16, - "index": 8925 - }, - { - "filePath": "src/packages/common/ui/xpert/experiments/OCMFloatingActionButton/index.jsx", - "line": 275, - "column": 16, - "index": 9407 - }, - { - "filePath": "src/packages/common/ui/xpert/experiments/SkillsBuilderFloatingActionButton/index.jsx", - "line": 75, - "column": 8, - "index": 2581 - }, - { - "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 + "index": 1512 }, { "filePath": "src/packages/degree-page/components/CTAButton/index.jsx", @@ -44300,15 +52672,15 @@ }, { "filePath": "src/packages/degree-page/template/DegreeDetailPage/index.jsx", - "line": 221, + "line": 222, "column": 14, - "index": 7963 + "index": 7969 }, { "filePath": "src/packages/degree-page/template/DegreeDetailPage/index.jsx", - "line": 272, + "line": 283, "column": 12, - "index": 9998 + "index": 10411 }, { "filePath": "src/packages/exec-ed-page/components/CourseCurriculum/index.jsx", @@ -44318,33 +52690,33 @@ }, { "filePath": "src/packages/exec-ed-page/components/CourseHeader2U/index.jsx", - "line": 198, + "line": 210, "column": 14, - "index": 6515 + "index": 6945 }, { "filePath": "src/packages/exec-ed-page/components/CourseHeader2U/index.jsx", - "line": 224, + "line": 236, "column": 12, - "index": 7381 + "index": 7811 }, { "filePath": "src/packages/exec-ed-page/components/CourseHeader2U/index.jsx", - "line": 240, + "line": 252, "column": 10, - "index": 7890 + "index": 8320 }, { "filePath": "src/packages/exec-ed-page/components/MobileCollapsibleSection.jsx", - "line": 21, - "column": 10, - "index": 905 + "line": 31, + "column": 12, + "index": 1238 }, { "filePath": "src/packages/exec-ed-page/components/MobileCollapsibleSection.jsx", - "line": 24, - "column": 10, - "index": 1057 + "line": 34, + "column": 12, + "index": 1396 }, { "filePath": "src/packages/exec-ed-page/components/StickyNav2U.jsx", @@ -44370,29 +52742,41 @@ "column": 20, "index": 3350 }, + { + "filePath": "src/packages/home-page/components/NewOnEdxCarousel/v2/components/SubcategoriesList/index.jsx", + "line": 64, + "column": 20, + "index": 2809 + }, + { + "filePath": "src/packages/home-page/components/NewOnEdxCarousel/v2/components/SubcategoriesList/index.jsx", + "line": 80, + "column": 20, + "index": 3406 + }, { "filePath": "src/packages/instructor-page/components/InstructorBioDynamic/components/Header/index.jsx", - "line": 17, + "line": 20, "column": 14, - "index": 640 + "index": 796 }, { "filePath": "src/packages/instructor-page/components/InstructorBioDynamic/components/Overview/index.jsx", - "line": 20, + "line": 21, "column": 13, - "index": 827 + "index": 896 }, { "filePath": "src/packages/instructor-page/components/InstructorBioDynamic/components/Overview/index.jsx", - "line": 22, + "line": 23, "column": 13, - "index": 911 + "index": 980 }, { "filePath": "src/packages/instructor-page/components/InstructorBioDynamic/components/Overview/index.jsx", - "line": 24, + "line": 25, "column": 13, - "index": 1035 + "index": 1104 }, { "filePath": "src/packages/learn-index-page/components/Hero.jsx", @@ -44419,22 +52803,46 @@ "index": 1596 }, { - "filePath": "src/packages/learn-page/template/LearnPage/index.jsx", + "filePath": "src/packages/learn-page/components/DynamicProductListV2/components/ProductFilter/index.jsx", "line": 40, + "column": 12, + "index": 1141 + }, + { + "filePath": "src/packages/learn-page/components/DynamicProductListV2/components/ProductFilter/index.jsx", + "line": 41, + "column": 12, + "index": 1234 + }, + { + "filePath": "src/packages/learn-page/components/DynamicProductListV2/components/ProductInformation/index.jsx", + "line": 45, + "column": 14, + "index": 1543 + }, + { + "filePath": "src/packages/learn-page/template/LearnPage/index.jsx", + "line": 41, "column": 9, - "index": 2292 + "index": 2372 + }, + { + "filePath": "src/packages/learn-page/template/LearnPage/v2/index.jsx", + "line": 44, + "column": 9, + "index": 2543 }, { "filePath": "src/packages/masters-program-page/template/MastersProgramDetailPage/index.jsx", - "line": 363, + "line": 364, "column": 20, - "index": 13323 + "index": 13335 }, { "filePath": "src/packages/masters-program-page/template/MastersProgramDetailPage/index.jsx", - "line": 528, + "line": 533, "column": 22, - "index": 21699 + "index": 22008 }, { "filePath": "src/packages/modular-page/components/StaticCallouts/index.jsx", @@ -44460,6 +52868,30 @@ "column": 37, "index": 11058 }, + { + "filePath": "src/packages/modular-page/components/StaticCalloutsV2/index.jsx", + "line": 154, + "column": 33, + "index": 6035 + }, + { + "filePath": "src/packages/modular-page/components/StaticCalloutsV2/index.jsx", + "line": 194, + "column": 33, + "index": 7725 + }, + { + "filePath": "src/packages/modular-page/components/StaticCalloutsV2/index.jsx", + "line": 233, + "column": 33, + "index": 9430 + }, + { + "filePath": "src/packages/modular-page/components/StaticCalloutsV2/index.jsx", + "line": 274, + "column": 37, + "index": 11315 + }, { "filePath": "src/packages/modular-page/modules/AccordionTextModule/components/CollapsibleTextTabModule.jsx", "line": 42, @@ -44470,7 +52902,7 @@ "filePath": "src/packages/modular-page/modules/AccordionTextModule/components/CollapsibleTextTabModule.jsx", "line": 121, "column": 14, - "index": 3756 + "index": 3780 }, { "filePath": "src/packages/modular-page/modules/AccordionTextModule/components/CurriculumModule.jsx", @@ -44478,24 +52910,6 @@ "column": 12, "index": 3206 }, - { - "filePath": "src/packages/modular-page/modules/BootCampCurriculumModule/index.js", - "line": 88, - "column": 12, - "index": 3159 - }, - { - "filePath": "src/packages/modular-page/modules/CollapsibleTextTabModule/index.jsx", - "line": 42, - "column": 12, - "index": 1438 - }, - { - "filePath": "src/packages/modular-page/modules/CollapsibleTextTabModule/index.jsx", - "line": 117, - "column": 16, - "index": 3457 - }, { "filePath": "src/packages/modular-page/modules/FeaturedProductsModule/index.jsx", "line": 88, @@ -44514,11 +52928,23 @@ "column": 16, "index": 4124 }, + { + "filePath": "src/packages/modular-page/modules/FootnoteModuleV2/index.jsx", + "line": 108, + "column": 16, + "index": 3897 + }, + { + "filePath": "src/packages/modular-page/modules/MediaModule/components/UpcomingProgramModule.jsx", + "line": 76, + "column": 16, + "index": 3024 + }, { "filePath": "src/packages/modular-page/modules/MediaModule/index.jsx", - "line": 42, + "line": 49, "column": 16, - "index": 1585 + "index": 1962 }, { "filePath": "src/packages/modular-page/modules/PriceModule/index.jsx", @@ -44539,70 +52965,34 @@ "index": 2743 }, { - "filePath": "src/packages/modular-page/modules/StatisticIconModule/index.jsx", - "line": 32, - "column": 14, - "index": 1193 - }, - { - "filePath": "src/packages/modular-page/modules/TextModule/index.jsx", - "line": 74, + "filePath": "src/packages/modular-page/modules/TextModule/components/DefaultTextModule.jsx", + "line": 80, "column": 12, - "index": 2333 - }, - { - "filePath": "src/packages/modular-page/modules/UpcomingProgramModule/index.jsx", - "line": 76, - "column": 16, - "index": 3045 + "index": 2543 }, { "filePath": "src/packages/open-course-page/components/CourseModes/index.jsx", - "line": 339, + "line": 297, "column": 36, - "index": 14906 + "index": 13232 }, { "filePath": "src/packages/open-course-page/components/CourseModes/index.jsx", - "line": 364, + "line": 322, "column": 36, - "index": 16173 + "index": 14499 }, { "filePath": "src/packages/open-course-page/components/CourseModes/index.jsx", - "line": 420, + "line": 378, "column": 20, - "index": 18997 + "index": 17323 }, { "filePath": "src/packages/open-course-page/components/CourseModes/index.jsx", - "line": 433, - "column": 20, - "index": 19675 - }, - { - "filePath": "src/packages/open-course-page/components/CourseModes/TerminologyUpdateVariant/index.jsx", - "line": 283, - "column": 20, - "index": 12459 - }, - { - "filePath": "src/packages/open-course-page/components/CourseModes/TerminologyUpdateVariant/index.jsx", - "line": 308, - "column": 36, - "index": 13801 - }, - { - "filePath": "src/packages/open-course-page/components/CourseModes/TerminologyUpdateVariant/index.jsx", - "line": 333, - "column": 36, - "index": 15068 - }, - { - "filePath": "src/packages/open-course-page/components/CourseModes/TerminologyUpdateVariant/index.jsx", - "line": 363, + "line": 391, "column": 20, - "index": 16472 + "index": 18001 }, { "filePath": "src/packages/open-course-page/components/CourseSnapshot/components/WeeksToComplete.jsx", @@ -44612,21 +53002,21 @@ }, { "filePath": "src/packages/open-course-page/components/CourseSnapshot/index.jsx", - "line": 243, + "line": 194, "column": 24, - "index": 8133 + "index": 7010 }, { "filePath": "src/packages/open-course-page/components/CourseSnapshot/index.jsx", - "line": 257, + "line": 202, "column": 22, - "index": 8643 + "index": 7402 }, { "filePath": "src/packages/open-course-page/components/CourseSnapshot/index.jsx", - "line": 300, + "line": 244, "column": 24, - "index": 11014 + "index": 9747 }, { "filePath": "src/packages/open-course-page/components/Instructors/components/InstructorCard.jsx", @@ -44642,51 +53032,51 @@ }, { "filePath": "src/packages/open-course-page/components/ProgramUpsell/ProgramUpsellWidget.jsx", - "line": 130, + "line": 131, "column": 27, - "index": 4597 + "index": 4619 }, { "filePath": "src/packages/open-course-page/components/ProgramUpsell/ProgramUpsellWidget.jsx", - "line": 135, + "line": 136, "column": 14, - "index": 4899 + "index": 4921 }, { "filePath": "src/packages/open-course-page/components/ProgramUpsell/ProgramUpsellWidget.jsx", - "line": 152, + "line": 153, "column": 16, - "index": 5702 + "index": 5724 }, { "filePath": "src/packages/open-course-page/components/ProgramUpsell/ProgramUpsellWidget.jsx", - "line": 174, + "line": 175, "column": 16, - "index": 6754 + "index": 6776 }, { "filePath": "src/packages/open-course-page/components/ProgramUpsell/ProgramUpsellWidget.jsx", - "line": 196, + "line": 197, "column": 14, - "index": 7839 + "index": 7861 }, { "filePath": "src/packages/open-course-page/components/SocialShare/index.jsx", - "line": 85, + "line": 88, "column": 12, - "index": 2924 + "index": 3076 }, { "filePath": "src/packages/open-course-page/components/SocialShare/index.jsx", - "line": 92, + "line": 95, "column": 12, - "index": 3227 + "index": 3379 }, { "filePath": "src/packages/open-course-page/components/SocialShare/index.jsx", - "line": 99, + "line": 102, "column": 12, - "index": 3527 + "index": 3679 }, { "filePath": "src/packages/product-page/components/ProductDetailHero/components/BootCampHero.jsx", @@ -44708,69 +53098,69 @@ }, { "filePath": "src/packages/program-page/components/ProgramMain/components/InstructorCard/index.jsx", - "line": 59, + "line": 65, "column": 16, - "index": 1604 + "index": 1810 }, { "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", - "line": 176, + "line": 177, "column": 6, - "index": 5799 + "index": 5868 }, { "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", - "line": 235, + "line": 236, "column": 10, - "index": 7767 + "index": 7836 }, { "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", - "line": 249, + "line": 250, "column": 6, - "index": 8135 + "index": 8204 }, { "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", - "line": 257, + "line": 258, "column": 8, - "index": 8458 + "index": 8527 }, { "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", - "line": 267, + "line": 268, "column": 8, - "index": 8756 + "index": 8825 }, { "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", - "line": 457, + "line": 472, "column": 16, - "index": 18682 + "index": 18993 }, { "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", - "line": 468, + "line": 483, "column": 16, - "index": 19213 + "index": 19524 }, { "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", - "line": 479, + "line": 494, "column": 16, - "index": 19737 + "index": 20048 }, { "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", - "line": 860, + "line": 875, "column": 24, - "index": 40526 + "index": 41054 }, { "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", - "line": 863, + "line": 878, "column": 24, - "index": 40674 + "index": 41202 }, { "filePath": "src/packages/recommendations-page/components/RecommendationsPage/Checkmark.jsx", @@ -44786,15 +53176,15 @@ }, { "filePath": "src/packages/search-page/components/RefinementFilters/components/FacetList/index.jsx", - "line": 239, - "column": 22, - "index": 6626 + "line": 238, + "column": 24, + "index": 6563 }, { "filePath": "src/packages/search-page/components/RefinementFilters/components/FacetList/index.jsx", - "line": 240, - "column": 23, - "index": 6739 + "line": 239, + "column": 26, + "index": 6679 }, { "filePath": "src/packages/search-page/components/SearchBreadcrumb/index.jsx", @@ -44832,7 +53222,7 @@ "filePath": "src/packages/modular-page/modules/AccordionTextModule/components/CollapsibleTextTabModule.jsx", "line": 122, "column": 21, - "index": 3783 + "index": 3807 }, { "filePath": "src/packages/modular-page/modules/AccordionTextModule/components/CurriculumModule.jsx", @@ -44840,35 +53230,23 @@ "column": 19, "index": 3231 }, - { - "filePath": "src/packages/modular-page/modules/BootCampCurriculumModule/index.js", - "line": 89, - "column": 19, - "index": 3184 - }, - { - "filePath": "src/packages/modular-page/modules/CollapsibleTextTabModule/index.jsx", - "line": 43, - "column": 19, - "index": 1463 - }, - { - "filePath": "src/packages/modular-page/modules/CollapsibleTextTabModule/index.jsx", - "line": 118, - "column": 23, - "index": 3486 - }, { "filePath": "src/packages/modular-page/modules/FootnoteModule/index.jsx", "line": 49, "column": 23, "index": 1807 }, + { + "filePath": "src/packages/modular-page/modules/MediaModule/components/UpcomingProgramModule.jsx", + "line": 77, + "column": 23, + "index": 3053 + }, { "filePath": "src/packages/modular-page/modules/MediaModule/index.jsx", - "line": 43, + "line": 50, "column": 23, - "index": 1614 + "index": 1991 }, { "filePath": "src/packages/modular-page/modules/PriceModule/index.jsx", @@ -44877,22 +53255,10 @@ "index": 2851 }, { - "filePath": "src/packages/modular-page/modules/StatisticIconModule/index.jsx", - "line": 33, - "column": 21, - "index": 1220 - }, - { - "filePath": "src/packages/modular-page/modules/TextModule/index.jsx", - "line": 75, + "filePath": "src/packages/modular-page/modules/TextModule/components/DefaultTextModule.jsx", + "line": 81, "column": 19, - "index": 2358 - }, - { - "filePath": "src/packages/modular-page/modules/UpcomingProgramModule/index.jsx", - "line": 77, - "column": 23, - "index": 3074 + "index": 2568 }, { "filePath": "src/packages/product-page/components/ProductDetailHero/components/BootCampHero.jsx", @@ -44940,9 +53306,9 @@ }, { "filePath": "src/packages/search-page/components/Results/ShowAllLink.jsx", - "line": 24, + "line": 27, "column": 69, - "index": 832 + "index": 1051 } ], "Button": [ @@ -44958,72 +53324,6 @@ "column": 12, "index": 5665 }, - { - "filePath": "src/packages/common/ui/Collapsible/components/ParagonCollapsible/index.jsx", - "line": 94, - "column": 10, - "index": 2328 - }, - { - "filePath": "src/packages/common/ui/xpert/experiments/ChatFloatingActionButton/index.jsx", - "line": 141, - "column": 12, - "index": 4712 - }, - { - "filePath": "src/packages/common/ui/xpert/experiments/ChatFloatingActionButton/Survey/index.jsx", - "line": 262, - "column": 14, - "index": 9078 - }, - { - "filePath": "src/packages/common/ui/xpert/experiments/ChatFloatingActionButton/Survey/index.jsx", - "line": 273, - "column": 14, - "index": 9640 - }, - { - "filePath": "src/packages/common/ui/xpert/experiments/OCMFloatingActionButton/index.jsx", - "line": 198, - "column": 10, - "index": 6050 - }, - { - "filePath": "src/packages/common/ui/xpert/experiments/OCMFloatingActionButton/index.jsx", - "line": 257, - "column": 14, - "index": 8575 - }, - { - "filePath": "src/packages/common/ui/xpert/experiments/OCMFloatingActionButton/index.jsx", - "line": 267, - "column": 14, - "index": 9048 - }, - { - "filePath": "src/packages/common/ui/xpert/shared/FloatingActionButton/index.jsx", - "line": 15, - "column": 4, - "index": 391 - }, - { - "filePath": "src/packages/common/ui/xpert/shared/FloatingActionButton/index.jsx", - "line": 39, - "column": 5, - "index": 975 - }, - { - "filePath": "src/packages/common/ui/xpert/shared/ProactiveMessage/index.jsx", - "line": 67, - "column": 12, - "index": 2157 - }, - { - "filePath": "src/packages/common/ui/xpert/shared/ProactiveMessage/index.jsx", - "line": 78, - "column": 10, - "index": 2627 - }, { "filePath": "src/packages/degree-page/components/TabNavigation/index.jsx", "line": 91, @@ -45032,9 +53332,9 @@ }, { "filePath": "src/packages/exec-ed-page/components/CaptureForm/index.jsx", - "line": 445, + "line": 465, "column": 26, - "index": 19628 + "index": 20504 }, { "filePath": "src/packages/exec-ed-page/components/CourseCurriculum/index.jsx", @@ -45044,21 +53344,21 @@ }, { "filePath": "src/packages/exec-ed-page/components/CourseHeader2U/index.jsx", - "line": 192, + "line": 204, "column": 12, - "index": 6235 + "index": 6665 }, { "filePath": "src/packages/exec-ed-page/components/CourseHeader2U/index.jsx", - "line": 256, + "line": 268, "column": 20, - "index": 8677 + "index": 9107 }, { "filePath": "src/packages/exec-ed-page/components/CourseHeader2U/index.jsx", - "line": 283, + "line": 295, "column": 16, - "index": 9772 + "index": 10254 }, { "filePath": "src/packages/exec-ed-page/components/RequestMoreInfoButton.jsx", @@ -45068,9 +53368,9 @@ }, { "filePath": "src/packages/exec-ed-page/template/ExecEdDetailPage/index.jsx", - "line": 337, + "line": 322, "column": 6, - "index": 12972 + "index": 12236 }, { "filePath": "src/packages/learn-index-page/components/Hero.jsx", @@ -45078,11 +53378,23 @@ "column": 10, "index": 1528 }, + { + "filePath": "src/packages/learn-page/components/DynamicProductListV2/index.jsx", + "line": 393, + "column": 14, + "index": 15119 + }, { "filePath": "src/packages/learn-page/template/LearnPage/index.jsx", - "line": 199, + "line": 207, "column": 12, - "index": 7141 + "index": 7681 + }, + { + "filePath": "src/packages/learn-page/template/LearnPage/v2/index.jsx", + "line": 242, + "column": 16, + "index": 8767 }, { "filePath": "src/packages/modular-page/modules/DynamicProductModule/index.jsx", @@ -45096,12 +53408,6 @@ "column": 8, "index": 1965 }, - { - "filePath": "src/packages/modular-page/modules/StatisticIconModule/index.jsx", - "line": 89, - "column": 12, - "index": 2980 - }, { "filePath": "src/packages/open-course-page/components/CourseHeader/components/CourseDescription.jsx", "line": 42, @@ -45110,27 +53416,21 @@ }, { "filePath": "src/packages/open-course-page/components/CourseHeader/components/CourseVideo.jsx", - "line": 42, + "line": 37, "column": 8, - "index": 1445 - }, - { - "filePath": "src/packages/open-course-page/components/CourseModes/TerminologyUpdateVariant/index.jsx", - "line": 216, - "column": 14, - "index": 9022 + "index": 1208 }, { "filePath": "src/packages/open-course-page/components/CourseRunSelector/index.jsx", - "line": 224, + "line": 229, "column": 8, - "index": 8916 + "index": 9266 }, { "filePath": "src/packages/open-course-page/components/EnrollButton/EnrollButtonLink.jsx", - "line": 337, + "line": 364, "column": 20, - "index": 11429 + "index": 11952 }, { "filePath": "src/packages/open-course-page/components/EnterpriseEnrollmentInformModal/index.jsx", @@ -45164,21 +53464,21 @@ }, { "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", - "line": 390, + "line": 397, "column": 14, - "index": 15532 + "index": 15679 }, { "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", - "line": 881, + "line": 896, "column": 12, - "index": 41575 + "index": 42103 }, { "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", - "line": 925, + "line": 940, "column": 14, - "index": 43584 + "index": 44112 }, { "filePath": "src/packages/recommendations-page/components/RecommendationsNotFound/index.jsx", @@ -45190,7 +53490,7 @@ "filePath": "src/packages/resource-page/template/ResourcePage/index.jsx", "line": 137, "column": 14, - "index": 4877 + "index": 4843 }, { "filePath": "src/packages/search-page/components/AutoComplete/components/ManagedAutoComplete/index.jsx", @@ -45198,12 +53498,6 @@ "column": 14, "index": 12321 }, - { - "filePath": "src/packages/search-page/components/HeaderSection.jsx", - "line": 148, - "column": 6, - "index": 5416 - }, { "filePath": "src/packages/search-page/components/PreQueryPage/components/PopularSearchLinks/index.jsx", "line": 42, @@ -45212,15 +53506,15 @@ }, { "filePath": "src/packages/search-page/components/RefinementFilters/components/ClearRefinements/index.jsx", - "line": 41, + "line": 44, "column": 4, - "index": 1245 + "index": 1366 }, { "filePath": "src/packages/search-page/components/SkillsBuilderCTA/index.jsx", "line": 66, "column": 14, - "index": 2752 + "index": 2736 }, { "filePath": "src/pages/secure-preview/DynamicProductList.jsx", @@ -45244,15 +53538,15 @@ }, { "filePath": "src/packages/exec-ed-page/components/MobileCollapsibleSection.jsx", - "line": 24, - "column": 21, - "index": 1068 + "line": 34, + "column": 23, + "index": 1407 }, { "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", - "line": 863, + "line": 878, "column": 35, - "index": 40685 + "index": 41213 } ], "Close": [ @@ -45264,15 +53558,9 @@ }, { "filePath": "src/packages/common/ui/SitewideBanner/index.jsx", - "line": 72, - "column": 12, - "index": 2696 - }, - { - "filePath": "src/packages/common/ui/xpert/shared/ProactiveMessage/index.jsx", - "line": 75, - "column": 67, - "index": 2568 + "line": 69, + "column": 10, + "index": 2406 }, { "filePath": "src/packages/program-page/components/ProgramMain/components/ProgramTrackModal/index.jsx", @@ -45284,71 +53572,71 @@ "filePath": "src/packages/queryless-pages/templates/Trademarks.jsx", "line": 100, "column": 42, - "index": 5260 + "index": 5263 }, { "filePath": "src/packages/queryless-pages/templates/Trademarks.jsx", "line": 101, "column": 42, - "index": 5340 + "index": 5343 }, { "filePath": "src/packages/queryless-pages/templates/Trademarks.jsx", "line": 102, "column": 42, - "index": 5416 + "index": 5419 }, { "filePath": "src/packages/queryless-pages/templates/Trademarks.jsx", "line": 147, "column": 42, - "index": 9204 + "index": 9205 }, { "filePath": "src/packages/queryless-pages/templates/Trademarks.jsx", "line": 148, "column": 42, - "index": 9285 + "index": 9286 }, { "filePath": "src/packages/queryless-pages/templates/Trademarks.jsx", "line": 149, "column": 42, - "index": 9362 + "index": 9363 }, { "filePath": "src/packages/queryless-pages/templates/Trademarks.jsx", "line": 150, "column": 42, - "index": 9442 + "index": 9443 } ], "ArrowBack": [ { "filePath": "src/packages/common/ui/Carousel/index.jsx", - "line": 250, + "line": 252, "column": 58, - "index": 7565 + "index": 7653 }, { "filePath": "src/packages/home-page/components/NewOnEdxCarousel/components/SubcategoriesList/index.jsx", "line": 62, "column": 17, "index": 2722 + }, + { + "filePath": "src/packages/home-page/components/NewOnEdxCarousel/v2/components/SubcategoriesList/index.jsx", + "line": 63, + "column": 17, + "index": 2778 } ], "ArrowForward": [ { "filePath": "src/packages/common/ui/Carousel/index.jsx", - "line": 270, + "line": 272, "column": 58, - "index": 8383 - }, - { - "filePath": "src/packages/common/ui/xpert/experiments/OCMFloatingActionButton/index.jsx", - "line": 165, - "column": 99, - "index": 5007 + "index": 8471 }, { "filePath": "src/packages/degree-page/components/CTAButton/index.jsx", @@ -45358,33 +53646,15 @@ }, { "filePath": "src/packages/degree-page/template/DegreeDetailPage/index.jsx", - "line": 221, + "line": 222, "column": 25, - "index": 7974 + "index": 7980 }, { "filePath": "src/packages/degree-page/template/DegreeDetailPage/index.jsx", - "line": 272, + "line": 283, "column": 23, - "index": 10009 - }, - { - "filePath": "src/packages/home-page/components/Audiences/index.jsx", - "line": 56, - "column": 18, - "index": 2606 - }, - { - "filePath": "src/packages/home-page/components/Audiences/index.jsx", - "line": 93, - "column": 18, - "index": 4468 - }, - { - "filePath": "src/packages/home-page/components/Audiences/index.jsx", - "line": 130, - "column": 18, - "index": 6284 + "index": 10422 }, { "filePath": "src/packages/home-page/components/NewOnEdxCarousel/components/SubcategoriesList/index.jsx", @@ -45392,6 +53662,12 @@ "column": 17, "index": 3316 }, + { + "filePath": "src/packages/home-page/components/NewOnEdxCarousel/v2/components/SubcategoriesList/index.jsx", + "line": 79, + "column": 17, + "index": 3372 + }, { "filePath": "src/packages/modular-page/components/StaticCallouts/index.jsx", "line": 151, @@ -45416,6 +53692,30 @@ "column": 48, "index": 11069 }, + { + "filePath": "src/packages/modular-page/components/StaticCalloutsV2/index.jsx", + "line": 154, + "column": 44, + "index": 6046 + }, + { + "filePath": "src/packages/modular-page/components/StaticCalloutsV2/index.jsx", + "line": 194, + "column": 44, + "index": 7736 + }, + { + "filePath": "src/packages/modular-page/components/StaticCalloutsV2/index.jsx", + "line": 233, + "column": 44, + "index": 9441 + }, + { + "filePath": "src/packages/modular-page/components/StaticCalloutsV2/index.jsx", + "line": 274, + "column": 48, + "index": 11326 + }, { "filePath": "src/packages/modular-page/modules/FeaturedProductsModule/index.jsx", "line": 88, @@ -45424,15 +53724,9 @@ }, { "filePath": "src/packages/open-course-page/components/ProgramUpsell/ProgramUpsellWidget.jsx", - "line": 130, + "line": 131, "column": 38, - "index": 4608 - }, - { - "filePath": "src/packages/search-page/components/HeaderSection.jsx", - "line": 148, - "column": 84, - "index": 5494 + "index": 4630 } ], "Form.Checkbox": [ @@ -45443,94 +53737,42 @@ "index": 481 } ], - "Input": [ - { - "filePath": "src/packages/common/ui/Footer/index.jsx", - "line": 341, - "column": 18, - "index": 11455 - }, - { - "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 - } - ], - "Facebook": [ + "Collapsible": [ { - "filePath": "src/packages/common/ui/Footer/utils.jsx", - "line": 598, - "column": 23, - "index": 28193 + "filePath": "src/packages/common/ui/FAQs/index.jsx", + "line": 96, + "column": 12, + "index": 2836 }, { - "filePath": "src/packages/instructor-page/components/InstructorBioDynamic/components/Overview/index.jsx", - "line": 22, - "column": 24, - "index": 922 + "filePath": "src/packages/common/ui/FAQs/index.jsx", + "line": 124, + "column": 10, + "index": 3823 }, { - "filePath": "src/packages/open-course-page/components/SocialShare/index.jsx", - "line": 85, - "column": 23, - "index": 2935 - } - ], - "BsTwitter": [ - { - "filePath": "src/packages/common/ui/Footer/utils.jsx", - "line": 604, - "column": 23, - "index": 28437 + "filePath": "src/packages/common/ui/Header/components/mobile-navigation/MenuAccordion/CollapsibleTrigger.jsx", + "line": 11, + "column": 17, + "index": 305 }, { - "filePath": "src/packages/instructor-page/components/InstructorBioDynamic/components/Overview/index.jsx", - "line": 20, - "column": 24, - "index": 838 + "filePath": "src/packages/common/ui/MultiselectDropdown/index.jsx", + "line": 88, + "column": 6, + "index": 2701 }, { - "filePath": "src/packages/open-course-page/components/SocialShare/index.jsx", - "line": 92, - "column": 23, - "index": 3238 - } - ], - "BsLinkedin": [ - { - "filePath": "src/packages/common/ui/Footer/utils.jsx", - "line": 610, - "column": 23, - "index": 28689 + "filePath": "src/packages/modular-page/components/AccordianFAQV2/index.jsx", + "line": 82, + "column": 14, + "index": 2529 }, { - "filePath": "src/packages/open-course-page/components/SocialShare/index.jsx", - "line": 99, - "column": 23, - "index": 3538 - } - ], - "Reddit": [ - { - "filePath": "src/packages/common/ui/Footer/utils.jsx", - "line": 616, - "column": 23, - "index": 28943 - } - ], - "Collapsible": [ - { - "filePath": "src/packages/common/ui/Header/components/mobile-navigation/MenuAccordion/CollapsibleTrigger.jsx", - "line": 11, - "column": 17, - "index": 305 + "filePath": "src/packages/modular-page/components/AccordianFAQV2/index.jsx", + "line": 110, + "column": 12, + "index": 3618 }, { "filePath": "src/packages/modular-page/components/AccordionFAQ/index.jsx", @@ -45551,52 +53793,164 @@ "index": 2419 }, { - "filePath": "src/packages/modular-page/modules/BootCampCurriculumModule/index.js", - "line": 70, - "column": 16, - "index": 2352 + "filePath": "src/packages/modular-page/modules/TextModule/components/DefaultTextModule.jsx", + "line": 146, + "column": 14, + "index": 4485 }, { "filePath": "src/packages/open-course-page/components/CoursePageMobile.jsx", - "line": 66, + "line": 67, "column": 6, - "index": 2527 + "index": 2537 }, { "filePath": "src/packages/open-course-page/components/CoursePageMobile.jsx", - "line": 80, + "line": 81, "column": 8, - "index": 3022 + "index": 3032 }, { "filePath": "src/packages/open-course-page/components/CoursePageMobile.jsx", - "line": 86, + "line": 87, "column": 6, - "index": 3261 + "index": 3271 }, { "filePath": "src/packages/open-course-page/components/CoursePageMobile.jsx", - "line": 98, + "line": 99, "column": 8, - "index": 3920 + "index": 3930 }, { "filePath": "src/packages/open-course-page/components/CoursePageMobile.jsx", - "line": 110, + "line": 111, "column": 8, - "index": 4351 + "index": 4361 }, { "filePath": "src/packages/open-course-page/components/CoursePageMobile.jsx", - "line": 126, + "line": 127, "column": 8, - "index": 4883 + "index": 4893 }, { "filePath": "src/packages/open-course-page/components/CoursePageMobile.jsx", - "line": 131, + "line": 132, + "column": 8, + "index": 5137 + }, + { + "filePath": "src/packages/program-page/components/ProgramMain/index.jsx", + "line": 488, + "column": 16, + "index": 18971 + }, + { + "filePath": "src/packages/program-page/components/ProgramMain/index.jsx", + "line": 505, + "column": 18, + "index": 19700 + }, + { + "filePath": "src/packages/program-page/components/ProgramPathway/components/ProgramPathwayCourse.jsx", + "line": 140, + "column": 10, + "index": 4661 + }, + { + "filePath": "src/packages/program-page/components/ProgramPathway/index.jsx", + "line": 270, + "column": 16, + "index": 10026 + }, + { + "filePath": "src/packages/program-page/components/ProgramPathway/index.jsx", + "line": 288, + "column": 16, + "index": 10770 + }, + { + "filePath": "src/packages/queryless-pages/templates/ResearchPage/index.jsx", + "line": 324, + "column": 16, + "index": 29624 + }, + { + "filePath": "src/packages/search-page/components/RefinementFilters/components/FacetList/index.jsx", + "line": 237, "column": 8, - "index": 5127 + "index": 6526 + } + ], + "Input": [ + { + "filePath": "src/packages/common/ui/Footer/index.jsx", + "line": 352, + "column": 18, + "index": 11815 + } + ], + "Facebook": [ + { + "filePath": "src/packages/common/ui/Footer/utils.jsx", + "line": 643, + "column": 23, + "index": 30154 + }, + { + "filePath": "src/packages/instructor-page/components/InstructorBioDynamic/components/Overview/index.jsx", + "line": 23, + "column": 24, + "index": 991 + }, + { + "filePath": "src/packages/open-course-page/components/SocialShare/index.jsx", + "line": 88, + "column": 23, + "index": 3087 + } + ], + "BsTwitter": [ + { + "filePath": "src/packages/common/ui/Footer/utils.jsx", + "line": 649, + "column": 23, + "index": 30408 + }, + { + "filePath": "src/packages/instructor-page/components/InstructorBioDynamic/components/Overview/index.jsx", + "line": 21, + "column": 24, + "index": 907 + }, + { + "filePath": "src/packages/open-course-page/components/SocialShare/index.jsx", + "line": 95, + "column": 23, + "index": 3390 + } + ], + "BsLinkedin": [ + { + "filePath": "src/packages/common/ui/Footer/utils.jsx", + "line": 655, + "column": 23, + "index": 30670 + }, + { + "filePath": "src/packages/open-course-page/components/SocialShare/index.jsx", + "line": 102, + "column": 23, + "index": 3690 + } + ], + "Reddit": [ + { + "filePath": "src/packages/common/ui/Footer/utils.jsx", + "line": 661, + "column": 23, + "index": 30924 } ], "Collapsible.Advanced": [ @@ -45608,21 +53962,21 @@ }, { "filePath": "src/packages/exec-ed-page/components/MobileCollapsibleSection.jsx", - "line": 17, - "column": 4, - "index": 566 + "line": 27, + "column": 6, + "index": 866 }, { "filePath": "src/packages/program-page/components/ProgramMain/index.jsx", - "line": 679, + "line": 701, "column": 20, - "index": 28739 + "index": 29343 }, { "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", - "line": 850, + "line": 865, "column": 18, - "index": 39870 + "index": 40398 } ], "Collapsible.Visible": [ @@ -45640,39 +53994,39 @@ }, { "filePath": "src/packages/exec-ed-page/components/MobileCollapsibleSection.jsx", - "line": 20, - "column": 8, - "index": 862 + "line": 30, + "column": 10, + "index": 1193 }, { "filePath": "src/packages/exec-ed-page/components/MobileCollapsibleSection.jsx", - "line": 23, - "column": 8, - "index": 1016 + "line": 33, + "column": 10, + "index": 1353 }, { "filePath": "src/packages/program-page/components/ProgramMain/index.jsx", - "line": 687, + "line": 709, "column": 24, - "index": 29330 + "index": 29934 }, { "filePath": "src/packages/program-page/components/ProgramMain/index.jsx", - "line": 688, + "line": 710, "column": 24, - "index": 29422 + "index": 30026 }, { "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", - "line": 859, + "line": 874, "column": 22, - "index": 40469 + "index": 40997 }, { "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", - "line": 862, + "line": 877, "column": 22, - "index": 40619 + "index": 41147 } ], "Collapsible.Body": [ @@ -45684,29 +54038,29 @@ }, { "filePath": "src/packages/exec-ed-page/components/MobileCollapsibleSection.jsx", - "line": 27, - "column": 6, - "index": 1194 + "line": 38, + "column": 10, + "index": 1678 }, { "filePath": "src/packages/program-page/components/ProgramMain/index.jsx", - "line": 690, + "line": 712, "column": 22, - "index": 29558 + "index": 30162 }, { "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", - "line": 866, + "line": 881, "column": 20, - "index": 40808 + "index": 41336 } ], "SearchField.Advanced": [ { "filePath": "src/packages/common/ui/Header/components/SearchBox.jsx", - "line": 99, + "line": 105, "column": 6, - "index": 3185 + "index": 3415 }, { "filePath": "src/packages/home-page/components/Hero/components/HomeSearchBar/components/HomeSearchInput/index.jsx", @@ -45714,6 +54068,12 @@ "column": 6, "index": 1891 }, + { + "filePath": "src/packages/home-page/components/Hero/components/HomeSearchBar/components/HomeSearchInputV2/index.jsx", + "line": 58, + "column": 6, + "index": 1893 + }, { "filePath": "src/packages/search-page/components/PreQueryPage/components/SearchBox/index.jsx", "line": 76, @@ -45722,17 +54082,17 @@ }, { "filePath": "src/packages/search-page/components/SearchBox/index.jsx", - "line": 105, + "line": 106, "column": 10, - "index": 3335 + "index": 3391 } ], "SearchField.Input": [ { "filePath": "src/packages/common/ui/Header/components/SearchBox.jsx", - "line": 116, + "line": 122, "column": 10, - "index": 4001 + "index": 4231 }, { "filePath": "src/packages/home-page/components/Hero/components/HomeSearchBar/components/HomeSearchInput/index.jsx", @@ -45740,6 +54100,12 @@ "column": 12, "index": 2663 }, + { + "filePath": "src/packages/home-page/components/Hero/components/HomeSearchBar/components/HomeSearchInputV2/index.jsx", + "line": 75, + "column": 12, + "index": 2692 + }, { "filePath": "src/packages/search-page/components/PreQueryPage/components/SearchBox/index.jsx", "line": 92, @@ -45748,23 +54114,23 @@ }, { "filePath": "src/packages/search-page/components/SearchBox/index.jsx", - "line": 123, + "line": 124, "column": 14, - "index": 3965 + "index": 4021 } ], "SearchField.SubmitButton": [ { "filePath": "src/packages/common/ui/Header/components/SearchBox.jsx", - "line": 128, + "line": 134, "column": 12, - "index": 4450 + "index": 4680 }, { "filePath": "src/packages/common/ui/Header/components/SearchBox.jsx", - "line": 136, + "line": 142, "column": 10, - "index": 4661 + "index": 4891 }, { "filePath": "src/packages/home-page/components/Hero/components/HomeSearchBar/components/HomeSearchInput/index.jsx", @@ -45772,6 +54138,18 @@ "column": 10, "index": 3133 }, + { + "filePath": "src/packages/home-page/components/Hero/components/HomeSearchBar/components/HomeSearchInputV2/index.jsx", + "line": 86, + "column": 12, + "index": 3115 + }, + { + "filePath": "src/packages/home-page/components/Hero/components/HomeSearchBar/components/HomeSearchInputV2/index.jsx", + "line": 89, + "column": 10, + "index": 3243 + }, { "filePath": "src/packages/search-page/components/PreQueryPage/components/SearchBox/index.jsx", "line": 105, @@ -45780,9 +54158,9 @@ }, { "filePath": "src/packages/search-page/components/SearchBox/index.jsx", - "line": 135, + "line": 136, "column": 12, - "index": 4488 + "index": 4544 } ], "IconButton": [ @@ -45805,78 +54183,132 @@ "index": 3287 }, { - "filePath": "src/packages/open-course-page/components/CourseModes/index.jsx", - "line": 337, - "column": 26, - "index": 14812 + "filePath": "src/packages/home-page/components/NewOnEdxCarousel/v2/components/SubcategoriesList/index.jsx", + "line": 62, + "column": 10, + "index": 2749 }, { - "filePath": "src/packages/open-course-page/components/CourseModes/index.jsx", - "line": 362, - "column": 26, - "index": 16079 + "filePath": "src/packages/home-page/components/NewOnEdxCarousel/v2/components/SubcategoriesList/index.jsx", + "line": 78, + "column": 10, + "index": 3343 }, { - "filePath": "src/packages/open-course-page/components/CourseModes/TerminologyUpdateVariant/index.jsx", - "line": 306, + "filePath": "src/packages/open-course-page/components/CourseModes/index.jsx", + "line": 295, "column": 26, - "index": 13707 + "index": 13138 }, { - "filePath": "src/packages/open-course-page/components/CourseModes/TerminologyUpdateVariant/index.jsx", - "line": 331, + "filePath": "src/packages/open-course-page/components/CourseModes/index.jsx", + "line": 320, "column": 26, - "index": 14974 + "index": 14405 } ], "Dropdown": [ { "filePath": "src/packages/common/ui/Header/components/UserMenu/index.jsx", - "line": 160, + "line": 225, + "column": 8, + "index": 7547 + }, + { + "filePath": "src/packages/home-page/components/NewOnEdxCarousel/v2/index.jsx", + "line": 79, + "column": 12, + "index": 2824 + }, + { + "filePath": "src/packages/home-page/components/ProductOfferings/components/ProductFilter/index.jsx", + "line": 28, "column": 8, - "index": 4998 + "index": 752 }, { "filePath": "src/packages/learn-page/components/DynamicProductList/components/ProductFilter/index.jsx", "line": 38, "column": 8, "index": 947 + }, + { + "filePath": "src/packages/learn-page/components/DynamicProductListV2/components/ProductFilter/index.jsx", + "line": 38, + "column": 8, + "index": 952 } ], "Dropdown.Toggle": [ { "filePath": "src/packages/common/ui/Header/components/UserMenu/index.jsx", - "line": 165, + "line": 230, "column": 10, - "index": 5127 + "index": 7676 + }, + { + "filePath": "src/packages/home-page/components/NewOnEdxCarousel/v2/index.jsx", + "line": 80, + "column": 14, + "index": 2866 + }, + { + "filePath": "src/packages/home-page/components/ProductOfferings/components/ProductFilter/index.jsx", + "line": 29, + "column": 10, + "index": 773 }, { "filePath": "src/packages/learn-page/components/DynamicProductList/components/ProductFilter/index.jsx", "line": 39, "column": 10, "index": 968 + }, + { + "filePath": "src/packages/learn-page/components/DynamicProductListV2/components/ProductFilter/index.jsx", + "line": 39, + "column": 10, + "index": 973 } ], "AvatarButton": [ { "filePath": "src/packages/common/ui/Header/components/UserMenu/index.jsx", - "line": 166, + "line": 231, "column": 16, - "index": 5160 + "index": 7709 } ], "Dropdown.Menu": [ { "filePath": "src/packages/common/ui/Header/components/UserMenu/index.jsx", - "line": 184, + "line": 249, "column": 10, - "index": 5807 + "index": 8356 + }, + { + "filePath": "src/packages/home-page/components/NewOnEdxCarousel/v2/index.jsx", + "line": 88, + "column": 14, + "index": 3340 + }, + { + "filePath": "src/packages/home-page/components/ProductOfferings/components/ProductFilter/index.jsx", + "line": 37, + "column": 10, + "index": 1224 }, { "filePath": "src/packages/learn-page/components/DynamicProductList/components/ProductFilter/index.jsx", "line": 49, "column": 10, "index": 1704 + }, + { + "filePath": "src/packages/learn-page/components/DynamicProductListV2/components/ProductFilter/index.jsx", + "line": 49, + "column": 10, + "index": 1715 } ], "Badge": [ @@ -45894,9 +54326,9 @@ }, { "filePath": "src/packages/open-course-page/components/CourseRunSelector/components/SelectionTile.jsx", - "line": 57, + "line": 61, "column": 12, - "index": 2059 + "index": 2124 }, { "filePath": "src/packages/program-page/components/ProgramHeader.jsx", @@ -45912,15 +54344,15 @@ }, { "filePath": "src/packages/search-page/components/AutoComplete/components/AutoCompleteDropdownItem/index.jsx", - "line": 117, + "line": 122, "column": 18, - "index": 3607 + "index": 3850 }, { "filePath": "src/packages/search-page/components/AutoComplete/components/AutoCompleteDropdownItem/index.jsx", - "line": 121, + "line": 126, "column": 16, - "index": 3836 + "index": 4079 } ], "ChevronLeft": [ @@ -45938,113 +54370,29 @@ }, { "filePath": "src/packages/exec-ed-page/components/CourseHeader2U/index.jsx", - "line": 240, + "line": 252, "column": 21, - "index": 7901 + "index": 8331 } ], "PlayCircleFilled": [ { "filePath": "src/packages/common/ui/Video/index.jsx", - "line": 101, + "line": 106, "column": 18, - "index": 3271 + "index": 3497 }, { "filePath": "src/packages/exec-ed-page/components/CourseHeader2U/index.jsx", - "line": 283, + "line": 295, "column": 99, - "index": 9855 + "index": 10337 }, { "filePath": "src/packages/open-course-page/components/CourseHeader/components/CourseVideo.jsx", - "line": 50, - "column": 10, - "index": 1630 - } - ], - "Minimize": [ - { - "filePath": "src/packages/common/ui/xpert/experiments/ChatFloatingActionButton/index.jsx", - "line": 146, - "column": 54, - "index": 5046 - } - ], - "Form": [ - { - "filePath": "src/packages/common/ui/xpert/experiments/ChatFloatingActionButton/Survey/index.jsx", - "line": 154, - "column": 8, - "index": 4200 - }, - { - "filePath": "src/packages/exec-ed-page/components/CaptureForm/index.jsx", - "line": 301, - "column": 24, - "index": 11200 - }, - { - "filePath": "src/packages/search-page/components/RefinementFilters/components/FacetList/index.jsx", - "line": 261, - "column": 22, - "index": 7599 - }, - { - "filePath": "src/pages/secure-preview/DynamicProductList.jsx", - "line": 63, - "column": 6, - "index": 1980 - } - ], - "Lightbulb": [ - { - "filePath": "src/packages/common/ui/xpert/experiments/OCMFloatingActionButton/index.jsx", - "line": 180, - "column": 19, - "index": 5449 - }, - { - "filePath": "src/packages/common/ui/xpert/experiments/SkillsBuilderFloatingActionButton/index.jsx", - "line": 75, - "column": 19, - "index": 2592 - } - ], - "KeyboardArrowDown": [ - { - "filePath": "src/packages/common/ui/xpert/experiments/OCMFloatingActionButton/index.jsx", - "line": 204, - "column": 23, - "index": 6271 - }, - { - "filePath": "src/packages/search-page/components/RefinementFilters/components/MobileFilterMenu/index.jsx", - "line": 76, + "line": 42, "column": 10, - "index": 2619 - } - ], - "Recommend": [ - { - "filePath": "src/packages/common/ui/xpert/experiments/OCMFloatingActionButton/index.jsx", - "line": 265, - "column": 87, - "index": 8996 - }, - { - "filePath": "src/packages/common/ui/xpert/experiments/OCMFloatingActionButton/index.jsx", - "line": 275, - "column": 89, - "index": 9480 - } - ], - "useArrowKeyNavigation": [ - { - "filePath": "src/packages/common/ui/xpert/shared/FloatingActionPopup/index.jsx", - "line": 19, - "column": 20, - "index": 481 + "index": 1335 } ], "FormGroup": [ @@ -46066,9 +54414,9 @@ "Spinner": [ { "filePath": "src/packages/exec-ed-page/components/CaptureForm/index.jsx", - "line": 278, + "line": 298, "column": 14, - "index": 10038 + "index": 10878 }, { "filePath": "src/packages/program-page/components/ProgramHeader.jsx", @@ -46089,42 +54437,62 @@ "index": 2433 } ], + "Form": [ + { + "filePath": "src/packages/exec-ed-page/components/CaptureForm/index.jsx", + "line": 321, + "column": 24, + "index": 12040 + }, + { + "filePath": "src/packages/search-page/components/RefinementFilters/components/FacetList/index.jsx", + "line": 259, + "column": 22, + "index": 7531 + }, + { + "filePath": "src/pages/secure-preview/DynamicProductList.jsx", + "line": 63, + "column": 6, + "index": 1980 + } + ], "Form.Group": [ { "filePath": "src/packages/exec-ed-page/components/CaptureForm/index.jsx", - "line": 303, + "line": 323, "column": 28, - "index": 11325 + "index": 12165 }, { "filePath": "src/packages/exec-ed-page/components/CaptureForm/index.jsx", - "line": 323, + "line": 343, "column": 28, - "index": 12445 + "index": 13285 }, { "filePath": "src/packages/exec-ed-page/components/CaptureForm/index.jsx", - "line": 344, + "line": 364, "column": 26, - "index": 13589 + "index": 14429 }, { "filePath": "src/packages/exec-ed-page/components/CaptureForm/index.jsx", - "line": 366, + "line": 386, "column": 30, - "index": 14785 + "index": 15625 }, { "filePath": "src/packages/exec-ed-page/components/CaptureForm/index.jsx", - "line": 398, + "line": 418, "column": 32, - "index": 16777 + "index": 17617 }, { "filePath": "src/packages/exec-ed-page/components/CaptureForm/index.jsx", - "line": 430, + "line": 450, "column": 26, - "index": 18763 + "index": 19603 }, { "filePath": "src/packages/queryless-pages/templates/CCPAPage/CCPAPageEN.jsx", @@ -46184,21 +54552,21 @@ "Form.Control": [ { "filePath": "src/packages/exec-ed-page/components/CaptureForm/index.jsx", - "line": 311, + "line": 331, "column": 30, - "index": 11726 + "index": 12566 }, { "filePath": "src/packages/exec-ed-page/components/CaptureForm/index.jsx", - "line": 331, + "line": 351, "column": 30, - "index": 12844 + "index": 13684 }, { "filePath": "src/packages/exec-ed-page/components/CaptureForm/index.jsx", - "line": 352, + "line": 372, "column": 28, - "index": 13977 + "index": 14817 }, { "filePath": "src/pages/secure-preview/DynamicProductList.jsx", @@ -46246,85 +54614,85 @@ "FormLabel": [ { "filePath": "src/packages/exec-ed-page/components/CaptureForm/index.jsx", - "line": 367, + "line": 387, "column": 32, - "index": 14874 + "index": 15714 }, { "filePath": "src/packages/exec-ed-page/components/CaptureForm/index.jsx", - "line": 379, + "line": 399, "column": 36, - "index": 15600 + "index": 16440 }, { "filePath": "src/packages/exec-ed-page/components/CaptureForm/index.jsx", - "line": 384, + "line": 404, "column": 36, - "index": 15955 + "index": 16795 }, { "filePath": "src/packages/exec-ed-page/components/CaptureForm/index.jsx", - "line": 399, + "line": 419, "column": 34, - "index": 16868 + "index": 17708 }, { "filePath": "src/packages/exec-ed-page/components/CaptureForm/index.jsx", - "line": 411, + "line": 431, "column": 38, - "index": 17624 + "index": 18464 }, { "filePath": "src/packages/exec-ed-page/components/CaptureForm/index.jsx", - "line": 416, + "line": 436, "column": 38, - "index": 17989 + "index": 18829 }, { "filePath": "src/packages/exec-ed-page/components/CaptureForm/index.jsx", - "line": 431, + "line": 451, "column": 28, - "index": 18814 + "index": 19654 } ], "Form.RadioSet": [ { "filePath": "src/packages/exec-ed-page/components/CaptureForm/index.jsx", - "line": 372, + "line": 392, "column": 32, - "index": 15188 + "index": 16028 }, { "filePath": "src/packages/exec-ed-page/components/CaptureForm/index.jsx", - "line": 404, + "line": 424, "column": 34, - "index": 17194 + "index": 18034 } ], "Form.Radio": [ { "filePath": "src/packages/exec-ed-page/components/CaptureForm/index.jsx", - "line": 378, + "line": 398, "column": 34, - "index": 15497 + "index": 16337 }, { "filePath": "src/packages/exec-ed-page/components/CaptureForm/index.jsx", - "line": 383, + "line": 403, "column": 34, - "index": 15854 + "index": 16694 }, { "filePath": "src/packages/exec-ed-page/components/CaptureForm/index.jsx", - "line": 410, + "line": 430, "column": 36, - "index": 17519 + "index": 18359 }, { "filePath": "src/packages/exec-ed-page/components/CaptureForm/index.jsx", - "line": 415, + "line": 435, "column": 36, - "index": 17886 + "index": 18726 } ], "OverlayTrigger": [ @@ -46336,9 +54704,9 @@ }, { "filePath": "src/packages/exec-ed-page/components/CourseHeader2U/index.jsx", - "line": 184, + "line": 196, "column": 10, - "index": 5961 + "index": 6391 }, { "filePath": "src/packages/exec-ed-page/components/StickyNav2U.jsx", @@ -46348,33 +54716,21 @@ }, { "filePath": "src/packages/open-course-page/components/CourseModes/index.jsx", - "line": 329, + "line": 287, "column": 24, - "index": 14424 + "index": 12750 }, { "filePath": "src/packages/open-course-page/components/CourseModes/index.jsx", - "line": 354, - "column": 24, - "index": 15695 - }, - { - "filePath": "src/packages/open-course-page/components/CourseModes/TerminologyUpdateVariant/index.jsx", - "line": 298, - "column": 24, - "index": 13319 - }, - { - "filePath": "src/packages/open-course-page/components/CourseModes/TerminologyUpdateVariant/index.jsx", - "line": 323, + "line": 312, "column": 24, - "index": 14590 + "index": 14021 }, { "filePath": "src/packages/program-page/components/ProgramPathway/components/ProgramPathwayCourse.jsx", - "line": 55, + "line": 51, "column": 6, - "index": 2125 + "index": 2072 } ], "Tooltip": [ @@ -46386,9 +54742,9 @@ }, { "filePath": "src/packages/exec-ed-page/components/CourseHeader2U/index.jsx", - "line": 187, + "line": 199, "column": 14, - "index": 6042 + "index": 6472 }, { "filePath": "src/packages/exec-ed-page/components/StickyNav2U.jsx", @@ -46398,33 +54754,21 @@ }, { "filePath": "src/packages/open-course-page/components/CourseModes/index.jsx", - "line": 332, + "line": 290, "column": 28, - "index": 14547 + "index": 12873 }, { "filePath": "src/packages/open-course-page/components/CourseModes/index.jsx", - "line": 357, - "column": 28, - "index": 15818 - }, - { - "filePath": "src/packages/open-course-page/components/CourseModes/TerminologyUpdateVariant/index.jsx", - "line": 301, - "column": 28, - "index": 13442 - }, - { - "filePath": "src/packages/open-course-page/components/CourseModes/TerminologyUpdateVariant/index.jsx", - "line": 326, + "line": 315, "column": 28, - "index": 14713 + "index": 14144 }, { "filePath": "src/packages/program-page/components/ProgramPathway/components/ProgramPathwayCourse.jsx", - "line": 61, + "line": 57, "column": 10, - "index": 2258 + "index": 2205 } ], "Launch": [ @@ -46436,9 +54780,9 @@ }, { "filePath": "src/packages/exec-ed-page/components/CourseHeader2U/index.jsx", - "line": 200, + "line": 212, "column": 21, - "index": 6575 + "index": 7005 }, { "filePath": "src/packages/exec-ed-page/components/StickyNav2U.jsx", @@ -46454,9 +54798,9 @@ }, { "filePath": "src/packages/instructor-page/components/InstructorBioDynamic/components/Overview/index.jsx", - "line": 24, + "line": 25, "column": 24, - "index": 1046 + "index": 1115 }, { "filePath": "src/packages/open-course-page/components/CourseModes/AuditTrackUpdateVariant/index.jsx", @@ -46466,69 +54810,75 @@ }, { "filePath": "src/packages/open-course-page/components/CourseModes/index.jsx", - "line": 463, + "line": 430, "column": 20, - "index": 21010 + "index": 19702 }, { "filePath": "src/packages/open-course-page/components/CourseRunSelector/index.jsx", "line": 128, "column": 6, - "index": 4818 + "index": 4839 }, { "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", - "line": 177, + "line": 178, "column": 13, - "index": 5818 + "index": 5887 }, { "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", - "line": 236, + "line": 237, "column": 17, - "index": 7790 + "index": 7859 } ], "useToggle": [ { "filePath": "src/packages/exec-ed-page/components/CourseHeader2U/index.jsx", - "line": 98, + "line": 100, "column": 32, - "index": 3605 + "index": 3581 }, { "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", - "line": 41, + "line": 42, "column": 62, - "index": 1432 + "index": 1501 } ], "CallMade": [ { "filePath": "src/packages/exec-ed-page/components/CourseHeader2U/index.jsx", - "line": 224, + "line": 236, "column": 23, - "index": 7392 + "index": 7822 } ], "Breadcrumb": [ { "filePath": "src/packages/exec-ed-page/components/CourseHeader2U/index.jsx", - "line": 237, + "line": 249, "column": 10, - "index": 7757 + "index": 8187 }, { "filePath": "src/packages/exec-ed-page/components/CourseHeader2U/index.jsx", - "line": 241, + "line": 253, "column": 10, - "index": 7927 + "index": 8357 }, { "filePath": "src/packages/search-page/components/SearchBreadcrumb/index.jsx", "line": 102, "column": 10, "index": 3726 + }, + { + "filePath": "src/packages/shop-page/template/components/ShopBreadCrumb/index.jsx", + "line": 24, + "column": 6, + "index": 833 } ], "ModalDialog": [ @@ -46580,9 +54930,9 @@ }, { "filePath": "src/packages/open-course-page/components/StickyNav/index.jsx", - "line": 209, + "line": 211, "column": 16, - "index": 7264 + "index": 7299 } ], "Dropdown.Item": [ @@ -46592,17 +54942,35 @@ "column": 20, "index": 6939 }, + { + "filePath": "src/packages/home-page/components/NewOnEdxCarousel/v2/index.jsx", + "line": 94, + "column": 20, + "index": 3597 + }, + { + "filePath": "src/packages/home-page/components/ProductOfferings/components/ProductFilter/index.jsx", + "line": 39, + "column": 14, + "index": 1321 + }, { "filePath": "src/packages/learn-page/components/DynamicProductList/components/ProductFilter/index.jsx", "line": 51, "column": 14, "index": 1782 }, + { + "filePath": "src/packages/learn-page/components/DynamicProductListV2/components/ProductFilter/index.jsx", + "line": 51, + "column": 14, + "index": 1793 + }, { "filePath": "src/packages/open-course-page/components/StickyNav/index.jsx", - "line": 221, + "line": 223, "column": 20, - "index": 7797 + "index": 7832 } ], "SearchField.ClearButton": [ @@ -46612,6 +54980,12 @@ "column": 12, "index": 3078 }, + { + "filePath": "src/packages/home-page/components/Hero/components/HomeSearchBar/components/HomeSearchInputV2/index.jsx", + "line": 87, + "column": 12, + "index": 3188 + }, { "filePath": "src/packages/search-page/components/PreQueryPage/components/SearchBox/index.jsx", "line": 103, @@ -46622,9 +54996,9 @@ "useWindowSize": [ { "filePath": "src/packages/home-page/components/Hero/index.jsx", - "line": 32, + "line": 38, "column": 20, - "index": 1308 + "index": 1590 }, { "filePath": "src/packages/modular-page/modules/CarouselModule/ImageCarousel.jsx", @@ -46633,6 +55007,64 @@ "index": 861 } ], + "Stack": [ + { + "filePath": "src/packages/home-page/components/MarketingModule/index.jsx", + "line": 38, + "column": 16, + "index": 1482 + } + ], + "Card": [ + { + "filePath": "src/packages/home-page/components/NewOnEdxCarousel/v2/variants/DesktopVariant/index.jsx", + "line": 84, + "column": 6, + "index": 3041 + }, + { + "filePath": "src/packages/learn-index-page/template/AllTopicsPage/index.jsx", + "line": 87, + "column": 12, + "index": 3709 + }, + { + "filePath": "src/packages/learn-page/components/DynamicProductListV2/components/ProductFilter/index.jsx", + "line": 64, + "column": 8, + "index": 2235 + }, + { + "filePath": "src/packages/modular-page/modules/FacultyModule/index.jsx", + "line": 45, + "column": 10, + "index": 1393 + }, + { + "filePath": "src/packages/open-course-page/components/CourseModes/AuditTrackUpdateVariant/index.jsx", + "line": 242, + "column": 18, + "index": 10842 + }, + { + "filePath": "src/packages/open-course-page/components/CourseRunSelector/components/SelectionTile.jsx", + "line": 56, + "column": 4, + "index": 1876 + }, + { + "filePath": "src/packages/search-page/components/PreQueryPage/components/PartnerFilters/index.jsx", + "line": 94, + "column": 16, + "index": 2797 + }, + { + "filePath": "src/packages/search-page/components/SkillsBuilderCTA/index.jsx", + "line": 49, + "column": 8, + "index": 1986 + } + ], "KeyboardArrowRight": [ { "filePath": "src/packages/home-page/components/SubjectList/index.jsx", @@ -46644,15 +55076,27 @@ "Skeleton": [ { "filePath": "src/packages/home-page/template/HomePage/index.jsx", - "line": 107, + "line": 95, "column": 15, - "index": 4204 + "index": 3599 }, { "filePath": "src/packages/home-page/template/HomePage/index.jsx", - "line": 122, + "line": 109, + "column": 13, + "index": 3948 + }, + { + "filePath": "src/packages/home-page/template/HomePage/v2/index.jsx", + "line": 104, "column": 15, - "index": 4578 + "index": 3838 + }, + { + "filePath": "src/packages/learn-page/components/DynamicProductListV2/index.jsx", + "line": 403, + "column": 33, + "index": 15557 }, { "filePath": "src/packages/modular-page/modules/CarouselModule/ImageCarousel.jsx", @@ -46670,15 +55114,15 @@ "Person": [ { "filePath": "src/packages/instructor-page/components/InstructorBioDynamic/components/Header/index.jsx", - "line": 17, + "line": 20, "column": 25, - "index": 651 + "index": 807 }, { "filePath": "src/packages/open-course-page/components/CourseSnapshot/index.jsx", - "line": 257, + "line": 202, "column": 33, - "index": 8654 + "index": 7413 }, { "filePath": "src/packages/open-course-page/components/Instructors/components/InstructorCard.jsx", @@ -46688,39 +55132,39 @@ }, { "filePath": "src/packages/open-course-page/components/ProgramUpsell/ProgramUpsellWidget.jsx", - "line": 152, + "line": 153, "column": 27, - "index": 5713 + "index": 5735 }, { "filePath": "src/packages/open-course-page/components/ProgramUpsell/ProgramUpsellWidget.jsx", - "line": 174, + "line": 175, "column": 27, - "index": 6765 + "index": 6787 }, { "filePath": "src/packages/program-page/components/ProgramMain/components/InstructorCard/index.jsx", - "line": 59, + "line": 65, "column": 27, - "index": 1615 + "index": 1821 }, { "filePath": "src/packages/program-page/components/ProgramMain/index.jsx", - "line": 533, + "line": 545, "column": 28, - "index": 21231 + "index": 21504 }, { "filePath": "src/packages/program-page/components/ProgramMain/index.jsx", - "line": 557, + "line": 569, "column": 28, - "index": 22507 + "index": 22780 }, { "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", - "line": 469, + "line": 484, "column": 23, - "index": 19242 + "index": 19553 } ], "Search": [ @@ -46732,61 +55176,29 @@ }, { "filePath": "src/packages/learn-page/template/LearnPage/index.jsx", - "line": 40, + "line": 41, "column": 20, - "index": 2303 - } - ], - "Card": [ - { - "filePath": "src/packages/learn-index-page/template/AllTopicsPage/index.jsx", - "line": 93, - "column": 12, - "index": 3979 - }, - { - "filePath": "src/packages/modular-page/modules/FacultyModule/index.jsx", - "line": 45, - "column": 10, - "index": 1393 - }, - { - "filePath": "src/packages/open-course-page/components/CourseModes/AuditTrackUpdateVariant/index.jsx", - "line": 242, - "column": 18, - "index": 10842 - }, - { - "filePath": "src/packages/open-course-page/components/CourseRunSelector/components/SelectionTile.jsx", - "line": 52, - "column": 4, - "index": 1811 - }, - { - "filePath": "src/packages/search-page/components/PreQueryPage/components/PartnerFilters/index.jsx", - "line": 94, - "column": 16, - "index": 2797 + "index": 2383 }, { - "filePath": "src/packages/search-page/components/SkillsBuilderCTA/index.jsx", - "line": 49, - "column": 8, - "index": 2002 + "filePath": "src/packages/learn-page/template/LearnPage/v2/index.jsx", + "line": 44, + "column": 20, + "index": 2554 } ], "Card.Body": [ { "filePath": "src/packages/learn-index-page/template/AllTopicsPage/index.jsx", - "line": 94, + "line": 88, "column": 14, - "index": 4055 + "index": 3783 }, { "filePath": "src/packages/open-course-page/components/CourseRunSelector/components/SelectionTile.jsx", - "line": 53, + "line": 57, "column": 6, - "index": 1850 + "index": 1915 } ], "Tune": [ @@ -46801,14 +55213,32 @@ "line": 41, "column": 30, "index": 1241 + }, + { + "filePath": "src/packages/learn-page/components/DynamicProductListV2/components/ProductFilter/index.jsx", + "line": 40, + "column": 30, + "index": 1159 + }, + { + "filePath": "src/packages/learn-page/components/DynamicProductListV2/components/ProductFilter/index.jsx", + "line": 41, + "column": 30, + "index": 1252 } ], "useMediaQuery": [ { "filePath": "src/packages/learn-page/template/LearnPage/index.jsx", - "line": 164, + "line": 168, + "column": 19, + "index": 6487 + }, + { + "filePath": "src/packages/learn-page/template/LearnPage/v2/index.jsx", + "line": 200, "column": 19, - "index": 6024 + "index": 7496 }, { "filePath": "src/packages/recommendations-page/components/RecommendationsLoader/index.jsx", @@ -46826,15 +55256,21 @@ "filePath": "src/packages/search-page/components/SkillsBuilderCTA/index.jsx", "line": 27, "column": 23, - "index": 1023 + "index": 1007 } ], "breakpoints": [ { "filePath": "src/packages/learn-page/template/LearnPage/index.jsx", - "line": 164, + "line": 168, "column": 45, - "index": 6050 + "index": 6513 + }, + { + "filePath": "src/packages/learn-page/template/LearnPage/v2/index.jsx", + "line": 200, + "column": 45, + "index": 7522 }, { "filePath": "src/packages/recommendations-page/components/RecommendationsLoader/index.jsx", @@ -46852,7 +55288,7 @@ "filePath": "src/packages/search-page/components/SkillsBuilderCTA/index.jsx", "line": 27, "column": 49, - "index": 1049 + "index": 1033 } ], "Hyperlink": [ @@ -46868,6 +55304,18 @@ "column": 14, "index": 3907 }, + { + "filePath": "src/packages/modular-page/modules/FootnoteModuleV2/index.jsx", + "line": 103, + "column": 14, + "index": 3680 + }, + { + "filePath": "src/packages/modular-page/modules/ReadMoreText/index.jsx", + "line": 67, + "column": 8, + "index": 2115 + }, { "filePath": "src/packages/program-page/components/ProgramSubscriptionSection/index.jsx", "line": 225, @@ -46951,96 +55399,108 @@ "index": 4141 } ], - "Check": [ + "CardGrid": [ { - "filePath": "src/packages/modular-page/modules/AboutTheProgramModule/index.jsx", - "line": 73, - "column": 14, - "index": 2740 + "filePath": "src/packages/modular-page/modules/FacultyModule/index.jsx", + "line": 43, + "column": 6, + "index": 1335 }, { - "filePath": "src/packages/modular-page/modules/AdmissionsAboutSection/index.jsx", - "line": 20, + "filePath": "src/packages/open-course-page/components/CourseRunSelector/index.jsx", + "line": 198, "column": 10, - "index": 676 + "index": 8221 }, { - "filePath": "src/packages/open-course-page/components/CourseModes/AuditTrackUpdateVariant/index.jsx", - "line": 246, - "column": 24, - "index": 11052 - }, + "filePath": "src/packages/search-page/components/PreQueryPage/components/PartnerFilters/index.jsx", + "line": 83, + "column": 10, + "index": 2433 + } + ], + "Card.Section": [ { - "filePath": "src/packages/open-course-page/components/CourseModes/index.jsx", - "line": 391, - "column": 20, - "index": 17402 + "filePath": "src/packages/modular-page/modules/FacultyModule/index.jsx", + "line": 50, + "column": 12, + "index": 1546 }, { - "filePath": "src/packages/open-course-page/components/CourseModes/index.jsx", - "line": 394, - "column": 20, - "index": 17584 + "filePath": "src/packages/open-course-page/components/CourseModes/AuditTrackUpdateVariant/index.jsx", + "line": 245, + "column": 22, + "index": 10996 }, { - "filePath": "src/packages/open-course-page/components/CourseModes/index.jsx", - "line": 404, - "column": 20, - "index": 18108 - }, + "filePath": "src/packages/search-page/components/SkillsBuilderCTA/index.jsx", + "line": 50, + "column": 10, + "index": 2026 + } + ], + "ArrowUpward": [ { - "filePath": "src/packages/open-course-page/components/CourseModes/index.jsx", - "line": 407, - "column": 20, - "index": 18290 + "filePath": "src/packages/modular-page/modules/FootnoteModule/index.jsx", + "line": 119, + "column": 23, + "index": 4153 }, { - "filePath": "src/packages/open-course-page/components/CourseModes/index.jsx", - "line": 417, - "column": 20, - "index": 18815 + "filePath": "src/packages/modular-page/modules/FootnoteModuleV2/index.jsx", + "line": 109, + "column": 23, + "index": 3926 + } + ], + "Check": [ + { + "filePath": "src/packages/modular-page/modules/TextListModule/components/AboutTheProgramModule.jsx", + "line": 71, + "column": 14, + "index": 2692 }, { - "filePath": "src/packages/open-course-page/components/CourseModes/index.jsx", - "line": 430, - "column": 20, - "index": 19493 + "filePath": "src/packages/open-course-page/components/CourseModes/AuditTrackUpdateVariant/index.jsx", + "line": 246, + "column": 24, + "index": 11052 }, { - "filePath": "src/packages/open-course-page/components/CourseModes/TerminologyUpdateVariant/index.jsx", - "line": 280, + "filePath": "src/packages/open-course-page/components/CourseModes/index.jsx", + "line": 349, "column": 20, - "index": 12277 + "index": 15728 }, { - "filePath": "src/packages/open-course-page/components/CourseModes/TerminologyUpdateVariant/index.jsx", - "line": 360, + "filePath": "src/packages/open-course-page/components/CourseModes/index.jsx", + "line": 352, "column": 20, - "index": 16290 + "index": 15910 }, { - "filePath": "src/packages/open-course-page/components/CourseModes/TerminologyUpdateVariant/index.jsx", - "line": 373, + "filePath": "src/packages/open-course-page/components/CourseModes/index.jsx", + "line": 362, "column": 20, - "index": 16975 + "index": 16434 }, { - "filePath": "src/packages/open-course-page/components/CourseModes/TerminologyUpdateVariant/index.jsx", - "line": 376, + "filePath": "src/packages/open-course-page/components/CourseModes/index.jsx", + "line": 365, "column": 20, - "index": 17157 + "index": 16616 }, { - "filePath": "src/packages/open-course-page/components/CourseModes/TerminologyUpdateVariant/index.jsx", - "line": 386, + "filePath": "src/packages/open-course-page/components/CourseModes/index.jsx", + "line": 375, "column": 20, - "index": 17681 + "index": 17141 }, { - "filePath": "src/packages/open-course-page/components/CourseModes/TerminologyUpdateVariant/index.jsx", - "line": 389, + "filePath": "src/packages/open-course-page/components/CourseModes/index.jsx", + "line": 388, "column": 20, - "index": 17863 + "index": 17819 }, { "filePath": "src/packages/product-page/components/ProductDetailHero/index.jsx", @@ -47086,9 +55546,9 @@ }, { "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", - "line": 249, + "line": 250, "column": 17, - "index": 8146 + "index": 8215 }, { "filePath": "src/packages/search-page/components/FilterProgramCard.jsx", @@ -47097,54 +55557,6 @@ "index": 1392 } ], - "CardGrid": [ - { - "filePath": "src/packages/modular-page/modules/FacultyModule/index.jsx", - "line": 43, - "column": 6, - "index": 1335 - }, - { - "filePath": "src/packages/open-course-page/components/CourseRunSelector/index.jsx", - "line": 196, - "column": 10, - "index": 8045 - }, - { - "filePath": "src/packages/search-page/components/PreQueryPage/components/PartnerFilters/index.jsx", - "line": 83, - "column": 10, - "index": 2433 - } - ], - "Card.Section": [ - { - "filePath": "src/packages/modular-page/modules/FacultyModule/index.jsx", - "line": 50, - "column": 12, - "index": 1546 - }, - { - "filePath": "src/packages/open-course-page/components/CourseModes/AuditTrackUpdateVariant/index.jsx", - "line": 245, - "column": 22, - "index": 10996 - }, - { - "filePath": "src/packages/search-page/components/SkillsBuilderCTA/index.jsx", - "line": 50, - "column": 10, - "index": 2042 - } - ], - "ArrowUpward": [ - { - "filePath": "src/packages/modular-page/modules/FootnoteModule/index.jsx", - "line": 119, - "column": 23, - "index": 4153 - } - ], "Card.Divider": [ { "filePath": "src/packages/open-course-page/components/CourseModes/AuditTrackUpdateVariant/index.jsx", @@ -47156,53 +55568,29 @@ "InfoOutline": [ { "filePath": "src/packages/open-course-page/components/CourseModes/index.jsx", - "line": 338, + "line": 296, "column": 33, - "index": 14857 + "index": 13183 }, { "filePath": "src/packages/open-course-page/components/CourseModes/index.jsx", - "line": 363, - "column": 33, - "index": 16124 - }, - { - "filePath": "src/packages/open-course-page/components/CourseModes/TerminologyUpdateVariant/index.jsx", - "line": 307, - "column": 33, - "index": 13752 - }, - { - "filePath": "src/packages/open-course-page/components/CourseModes/TerminologyUpdateVariant/index.jsx", - "line": 332, + "line": 321, "column": 33, - "index": 15019 + "index": 14450 } ], "Remove": [ { "filePath": "src/packages/open-course-page/components/CourseModes/index.jsx", - "line": 420, + "line": 378, "column": 50, - "index": 19027 + "index": 17353 }, { "filePath": "src/packages/open-course-page/components/CourseModes/index.jsx", - "line": 433, - "column": 50, - "index": 19705 - }, - { - "filePath": "src/packages/open-course-page/components/CourseModes/TerminologyUpdateVariant/index.jsx", - "line": 283, - "column": 50, - "index": 12489 - }, - { - "filePath": "src/packages/open-course-page/components/CourseModes/TerminologyUpdateVariant/index.jsx", - "line": 363, + "line": 391, "column": 50, - "index": 16502 + "index": 18031 } ], "Timelapse": [ @@ -47214,23 +55602,23 @@ }, { "filePath": "src/packages/open-course-page/components/ProgramUpsell/ProgramUpsellWidget.jsx", - "line": 196, + "line": 197, "column": 25, - "index": 7850 + "index": 7872 }, { "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", - "line": 458, + "line": 473, "column": 23, - "index": 18711 + "index": 19022 } ], "MoneyOutline": [ { "filePath": "src/packages/open-course-page/components/CourseSnapshot/index.jsx", - "line": 300, + "line": 244, "column": 35, - "index": 11025 + "index": 9758 } ], "ModalDialog.Header": [ @@ -47314,9 +55702,9 @@ "Program": [ { "filePath": "src/packages/open-course-page/components/ProgramUpsell/ProgramUpsellWidget.jsx", - "line": 135, + "line": 136, "column": 25, - "index": 4910 + "index": 4932 } ], "Alert": [ @@ -47328,9 +55716,9 @@ }, { "filePath": "src/packages/program-page/components/ProgramMain/index.jsx", - "line": 448, + "line": 456, "column": 22, - "index": 17330 + "index": 17520 }, { "filePath": "src/packages/search-page/components/QuizMatchRecommendations/index.jsx", @@ -47348,23 +55736,23 @@ }, { "filePath": "src/packages/program-page/components/ProgramMain/index.jsx", - "line": 449, + "line": 457, "column": 24, - "index": 17404 + "index": 17594 }, { "filePath": "src/packages/program-page/components/ProgramPathway/components/ProgramPathwayCourse.jsx", - "line": 187, - "column": 16, - "index": 6336 + "line": 185, + "column": 18, + "index": 6371 } ], "Email": [ { "filePath": "src/packages/open-course-page/components/SocialShare/index.jsx", - "line": 106, + "line": 109, "column": 12, - "index": 3842 + "index": 3994 } ], "ArrowRightAlt": [ @@ -47412,135 +55800,135 @@ "LocalOffer": [ { "filePath": "src/packages/program-page/components/ProgramMain/index.jsx", - "line": 344, + "line": 352, "column": 12, - "index": 12787 + "index": 12977 } ], "CreditCard": [ { "filePath": "src/packages/program-page/components/ProgramMain/index.jsx", - "line": 381, + "line": 389, "column": 12, - "index": 14235 + "index": 14425 } ], "LibraryBooks": [ { "filePath": "src/packages/program-page/components/ProgramMain/index.jsx", - "line": 514, + "line": 526, "column": 22, - "index": 20344 + "index": 20617 }, { "filePath": "src/packages/program-page/components/ProgramPathway/components/ProgramPathwayCourse.jsx", - "line": 138, + "line": 134, "column": 10, - "index": 4548 + "index": 4495 } ], "AccessTime": [ { "filePath": "src/packages/program-page/components/ProgramMain/index.jsx", - "line": 581, + "line": 593, "column": 28, - "index": 23829 + "index": 24102 }, { "filePath": "src/packages/program-page/components/ProgramPathway/components/ProgramPathwayCourse.jsx", - "line": 176, + "line": 173, "column": 15, - "index": 5995 + "index": 5973 } ], "School": [ { "filePath": "src/packages/program-page/components/ProgramMain/index.jsx", - "line": 602, + "line": 614, "column": 28, - "index": 24913 + "index": 25186 }, { "filePath": "src/packages/program-page/components/ProgramPathway/index.jsx", - "line": 267, + "line": 266, "column": 18, - "index": 9814 + "index": 9888 } ], "Collapsible.Trigger": [ { "filePath": "src/packages/program-page/components/ProgramMain/index.jsx", - "line": 683, + "line": 705, "column": 22, - "index": 29011 + "index": 29615 }, { "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", - "line": 856, + "line": 871, "column": 20, - "index": 40210 + "index": 40738 } ], "AddCircle": [ { "filePath": "src/packages/program-page/components/ProgramMain/index.jsx", - "line": 687, + "line": 709, "column": 56, - "index": 29362 + "index": 29966 } ], "RemoveCircle": [ { "filePath": "src/packages/program-page/components/ProgramMain/index.jsx", - "line": 688, + "line": 710, "column": 54, - "index": 29452 + "index": 30056 } ], "FormatQuote": [ { "filePath": "src/packages/program-page/components/ProgramMain/index.jsx", - "line": 736, + "line": 758, "column": 18, - "index": 31694 + "index": 32298 } ], "Info": [ { "filePath": "src/packages/program-page/components/ProgramPathway/components/ProgramPathwayCourse.jsx", - "line": 93, + "line": 89, "column": 12, - "index": 3601 + "index": 3548 } ], "CalendarMonth": [ { "filePath": "src/packages/program-page/components/ProgramPathway/components/ProgramPathwayCourse.jsx", - "line": 152, + "line": 149, "column": 16, - "index": 5085 + "index": 5063 } ], "LocationOn": [ { "filePath": "src/packages/program-page/components/ProgramPathway/components/ProgramPathwayCourse.jsx", - "line": 222, + "line": 221, "column": 18, - "index": 7801 + "index": 7907 }, { "filePath": "src/packages/program-page/components/ProgramPathway/index.jsx", "line": 190, "column": 14, - "index": 6882 + "index": 6971 } ], "Compass": [ { "filePath": "src/packages/program-page/components/ProgramPathway/index.jsx", - "line": 285, + "line": 284, "column": 18, - "index": 10542 + "index": 10631 } ], "StatusAlert": [ @@ -47580,17 +55968,17 @@ "MoneyFilled": [ { "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", - "line": 258, + "line": 259, "column": 15, - "index": 8479 + "index": 8548 } ], "CheckCircle": [ { "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", - "line": 268, + "line": 269, "column": 15, - "index": 8777 + "index": 8846 }, { "filePath": "src/packages/recommendations-page/components/RecommendationsPage/Checkmark.jsx", @@ -47608,9 +55996,9 @@ "Calendar": [ { "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", - "line": 480, + "line": 495, "column": 23, - "index": 19766 + "index": 20077 } ], "StarFilled": [ @@ -47644,7 +56032,7 @@ "filePath": "src/packages/queryless-pages/templates/Trademarks.jsx", "line": 103, "column": 43, - "index": 5506 + "index": 5509 } ], "TrendingUp": [ @@ -47685,42 +56073,56 @@ "line": 27, "column": 6, "index": 1154 + }, + { + "filePath": "src/packages/shop-page/template/components/RelatedSearches/components/RelatedSearchesChips/index.jsx", + "line": 14, + "column": 8, + "index": 398 } ], "CloseSmall": [ { "filePath": "src/packages/search-page/components/RefinementFilters/components/CurrentRefinements/index.jsx", - "line": 148, + "line": 153, "column": 25, - "index": 5015 + "index": 5082 }, { "filePath": "src/packages/search-page/components/RefinementFilters/components/CurrentRefinements/index.jsx", - "line": 174, + "line": 179, "column": 25, - "index": 5959 + "index": 6026 }, { "filePath": "src/packages/search-page/components/RefinementFilters/components/CurrentRefinements/index.jsx", - "line": 196, + "line": 201, "column": 27, - "index": 7059 + "index": 7126 } ], "Menu": [ { "filePath": "src/packages/search-page/components/RefinementFilters/components/FacetList/index.jsx", - "line": 255, + "line": 253, "column": 10, - "index": 7264 + "index": 7196 } ], "MenuItem": [ { "filePath": "src/packages/search-page/components/RefinementFilters/components/FacetList/index.jsx", - "line": 257, + "line": 255, "column": 16, - "index": 7356 + "index": 7288 + } + ], + "KeyboardArrowDown": [ + { + "filePath": "src/packages/search-page/components/RefinementFilters/components/MobileFilterMenu/index.jsx", + "line": 76, + "column": 10, + "index": 2619 } ], "Tabs": [ diff --git a/icons/es5/Newsstand.js b/icons/es5/Newsstand.js new file mode 100644 index 0000000000..09c5d07c58 --- /dev/null +++ b/icons/es5/Newsstand.js @@ -0,0 +1,15 @@ +function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); } +import * as React from "react"; +var SvgNewsstand = function SvgNewsstand(props) { + return /*#__PURE__*/React.createElement("svg", _extends({ + xmlns: "http://www.w3.org/2000/svg", + height: 24, + viewBox: "0 -960 960 960", + width: 24, + fill: "none" + }, props), /*#__PURE__*/React.createElement("path", { + d: "M80-160v-80h800v80H80Zm80-160v-320h80v320h-80Zm160 0v-480h80v480h-80Zm160 0v-480h80v480h-80Zm280 0L600-600l70-40 160 280-70 40Z", + fill: "currentColor" + })); +}; +export default SvgNewsstand; \ No newline at end of file diff --git a/icons/es5/index.js b/icons/es5/index.js index cdf8d9d817..ebe918718a 100644 --- a/icons/es5/index.js +++ b/icons/es5/index.js @@ -1381,6 +1381,7 @@ export { default as NetworkWifi3Bar } from "./NetworkWifi3Bar"; export { default as NewLabel } from "./NewLabel"; export { default as NewReleases } from "./NewReleases"; export { default as Newspaper } from "./Newspaper"; +export { default as Newsstand } from "./Newsstand"; export { default as NextPlan } from "./NextPlan"; export { default as NextWeek } from "./NextWeek"; export { default as Nfc } from "./Nfc"; diff --git a/icons/es5/index.ts b/icons/es5/index.ts index 3e1aaea345..96fa5149c9 100644 --- a/icons/es5/index.ts +++ b/icons/es5/index.ts @@ -1382,6 +1382,7 @@ export { default as NetworkWifi3Bar } from "./NetworkWifi3Bar"; export { default as NewLabel } from "./NewLabel"; export { default as NewReleases } from "./NewReleases"; export { default as Newspaper } from "./Newspaper"; +export { default as Newsstand } from "./Newsstand"; export { default as NextPlan } from "./NextPlan"; export { default as NextWeek } from "./NextWeek"; export { default as Nfc } from "./Nfc"; diff --git a/icons/jsx/Newsstand.jsx b/icons/jsx/Newsstand.jsx new file mode 100644 index 0000000000..933c2a9d30 --- /dev/null +++ b/icons/jsx/Newsstand.jsx @@ -0,0 +1,17 @@ +import * as React from "react"; +const SvgNewsstand = (props) => ( + + + +); +export default SvgNewsstand; diff --git a/icons/jsx/index.jsx b/icons/jsx/index.jsx index e2f0c9dd6b..49752ebbb1 100644 --- a/icons/jsx/index.jsx +++ b/icons/jsx/index.jsx @@ -1381,6 +1381,7 @@ export { default as NetworkWifi3Bar } from "./NetworkWifi3Bar"; export { default as NewLabel } from "./NewLabel"; export { default as NewReleases } from "./NewReleases"; export { default as Newspaper } from "./Newspaper"; +export { default as Newsstand } from "./Newsstand"; export { default as NextPlan } from "./NextPlan"; export { default as NextWeek } from "./NextWeek"; export { default as Nfc } from "./Nfc"; diff --git a/icons/svg/newsstand.svg b/icons/svg/newsstand.svg new file mode 100644 index 0000000000..a64aab53f2 --- /dev/null +++ b/icons/svg/newsstand.svg @@ -0,0 +1 @@ + diff --git a/package-lock.json b/package-lock.json index 6c038abf86..46613e952f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -58,7 +58,7 @@ "@babel/preset-env": "^7.16.8", "@babel/preset-react": "^7.16.7", "@babel/preset-typescript": "^7.16.7", - "@edx/eslint-config": "^3.2.0", + "@edx/eslint-config": "^4.2.0", "@edx/stylelint-config-edx": "^2.3.0", "@edx/typescript-config": "^1.0.1", "@formatjs/cli": "^5.0.2", @@ -69,8 +69,8 @@ "@testing-library/react-hooks": "^8.0.1", "@testing-library/user-event": "^13.5.0", "@types/jest": "^29.5.10", - "@types/react": "17.0.0", - "@types/react-dom": "17.0.11", + "@types/react": "^17.0.80", + "@types/react-dom": "^17.0.11", "@types/react-responsive": "^8.0.8", "@types/react-table": "^7.7.19", "@types/react-test-renderer": "^18.0.0", @@ -2368,14 +2368,17 @@ "license": "UNLICENSED" }, "node_modules/@edx/eslint-config": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/@edx/eslint-config/-/eslint-config-3.2.0.tgz", - "integrity": "sha512-X2o34xr3KqmQSV/vJVv6k4FxUKYwbBATHTtTHLTYQvM9PVoM3WbKQP9tl6Z057pRErKzshJcks+4ENzDyhr11Q==", + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/@edx/eslint-config/-/eslint-config-4.2.0.tgz", + "integrity": "sha512-2wuIw49uyj6gRwS74qJ8WhBU+X2FOP4uot40sthIC4YU9qCM7WJOcOuAhkRPP1FvZKd3UQH3gZM7eJ85xzDBqA==", "dev": true, "peerDependencies": { - "eslint": "^6.8.0 || ^7.0.0 || ^8.0.0", + "@typescript-eslint/eslint-plugin": "^5.62.0", + "@typescript-eslint/parser": "^5.62.0", + "eslint": "^7.32.0 || ^8.2.0", "eslint-config-airbnb": "^18.0.1 || ^19.0.0", - "eslint-plugin-import": "^2.20.0", + "eslint-config-airbnb-typescript": "^17.0.0", + "eslint-plugin-import": "^2.25.3", "eslint-plugin-jsx-a11y": "^6.2.3", "eslint-plugin-react": "^7.18.0", "eslint-plugin-react-hooks": "^1.7.0 || ^4.0.0" @@ -2477,6 +2480,20 @@ "url": "https://opencollective.com/babel" } }, + "node_modules/@edx/frontend-build/node_modules/@edx/eslint-config": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/@edx/eslint-config/-/eslint-config-3.2.0.tgz", + "integrity": "sha512-X2o34xr3KqmQSV/vJVv6k4FxUKYwbBATHTtTHLTYQvM9PVoM3WbKQP9tl6Z057pRErKzshJcks+4ENzDyhr11Q==", + "dev": true, + "peerDependencies": { + "eslint": "^6.8.0 || ^7.0.0 || ^8.0.0", + "eslint-config-airbnb": "^18.0.1 || ^19.0.0", + "eslint-plugin-import": "^2.20.0", + "eslint-plugin-jsx-a11y": "^6.2.3", + "eslint-plugin-react": "^7.18.0", + "eslint-plugin-react-hooks": "^1.7.0 || ^4.0.0" + } + }, "node_modules/@edx/frontend-build/node_modules/@eslint/eslintrc": { "version": "2.0.2", "dev": true, @@ -3988,9 +4005,10 @@ } }, "node_modules/@edx/frontend-build/node_modules/ws": { - "version": "7.5.9", + "version": "7.5.10", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.10.tgz", + "integrity": "sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=8.3.0" }, @@ -5740,65 +5758,6 @@ "darwin" ] }, - "node_modules/@lmdb/lmdb-darwin-x64": { - "version": "2.5.3", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "darwin" - ] - }, - "node_modules/@lmdb/lmdb-linux-arm": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.3.tgz", - "integrity": "sha512-mU2HFJDGwECkoD9dHQEfeTG5mp8hNS2BCfwoiOpVPMeapjYpQz9Uw3FkUjRZ4dGHWKbin40oWHuL0bk2bCx+Sg==", - "cpu": [ - "arm" - ], - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@lmdb/lmdb-linux-arm64": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.3.tgz", - "integrity": "sha512-VJw60Mdgb4n+L0fO1PqfB0C7TyEQolJAC8qpqvG3JoQwvyOv6LH7Ib/WE3wxEW9nuHmVz9jkK7lk5HfWWgoO1Q==", - "cpu": [ - "arm64" - ], - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@lmdb/lmdb-linux-x64": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.3.tgz", - "integrity": "sha512-qaReO5aV8griBDsBr8uBF/faO3ieGjY1RY4p8JvTL6Mu1ylLrTVvOONqKFlNaCwrmUjWw5jnf7VafxDAeQHTow==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@lmdb/lmdb-win32-x64": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.3.tgz", - "integrity": "sha512-cK+Elf3RjEzrm3SerAhrFWL5oQAsZSJ/LmjL1joIpTfEP1etJJ9CTRvdaV6XLYAxaEkfdhk/9hOvHLbR9yIhCA==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "win32" - ] - }, "node_modules/@material-icons/svg": { "version": "1.0.33", "resolved": "https://registry.npmjs.org/@material-icons/svg/-/svg-1.0.33.tgz", @@ -5919,17 +5878,6 @@ "node": ">=12.0.0" } }, - "node_modules/@msgpackr-extract/msgpackr-extract-darwin-x64": { - "version": "3.0.2", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "darwin" - ] - }, "node_modules/@newrelic/publish-sourcemap": { "version": "5.1.0", "dev": true, @@ -6216,65 +6164,6 @@ "darwin" ] }, - "node_modules/@parcel/cache/node_modules/@lmdb/lmdb-darwin-x64": { - "version": "2.5.2", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "darwin" - ] - }, - "node_modules/@parcel/cache/node_modules/@lmdb/lmdb-linux-arm": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.2.tgz", - "integrity": "sha512-5kQAP21hAkfW5Bl+e0P57dV4dGYnkNIpR7f/GAh6QHlgXx+vp/teVj4PGRZaKAvt0GX6++N6hF8NnGElLDuIDw==", - "cpu": [ - "arm" - ], - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@parcel/cache/node_modules/@lmdb/lmdb-linux-arm64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.2.tgz", - "integrity": "sha512-aLl89VHL/wjhievEOlPocoefUyWdvzVrcQ/MHQYZm2JfV1jUsrbr/ZfkPPUFvZBf+VSE+Q0clWs9l29PCX1hTQ==", - "cpu": [ - "arm64" - ], - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@parcel/cache/node_modules/@lmdb/lmdb-linux-x64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.2.tgz", - "integrity": "sha512-xUdUfwDJLGjOUPH3BuPBt0NlIrR7f/QHKgu3GZIXswMMIihAekj2i97oI0iWG5Bok/b+OBjHPfa8IU9velnP/Q==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@parcel/cache/node_modules/@lmdb/lmdb-win32-x64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.2.tgz", - "integrity": "sha512-zrBczSbXKxEyK2ijtbRdICDygRqWSRPpZMN5dD1T8VMEW5RIhIbwFWw2phDRXuBQdVDpSjalCIUMWMV2h3JaZA==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "win32" - ] - }, "node_modules/@parcel/cache/node_modules/lmdb": { "version": "2.5.2", "hasInstallScript": true, @@ -8419,17 +8308,20 @@ } }, "node_modules/@types/react": { - "version": "17.0.0", - "license": "MIT", + "version": "17.0.80", + "resolved": "https://registry.npmjs.org/@types/react/-/react-17.0.80.tgz", + "integrity": "sha512-LrgHIu2lEtIo8M7d1FcI3BdwXWoRQwMoXOZ7+dPTW0lYREjmlHl3P0U1VD0i/9tppOuv8/sam7sOjx34TxSFbA==", "dependencies": { "@types/prop-types": "*", + "@types/scheduler": "^0.16", "csstype": "^3.0.2" } }, "node_modules/@types/react-dom": { "version": "17.0.11", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-17.0.11.tgz", + "integrity": "sha512-f96K3k+24RaLGVu/Y2Ng3e1EbZ8/cVJvypZWd7cy0ofCBaf2lcM46xNhycMZ2xGwbBjRql7hOlZ+e2WlJ5MH3Q==", "dev": true, - "license": "MIT", "dependencies": { "@types/react": "*" } @@ -8508,7 +8400,6 @@ }, "node_modules/@types/scheduler": { "version": "0.16.3", - "dev": true, "license": "MIT" }, "node_modules/@types/schema-utils": { @@ -11958,9 +11849,10 @@ } }, "node_modules/babel-plugin-react-intl/node_modules/ws": { - "version": "7.5.9", + "version": "7.5.10", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.10.tgz", + "integrity": "sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==", "dev": true, - "license": "MIT", "optional": true, "peer": true, "engines": { @@ -12511,10 +12403,11 @@ } }, "node_modules/braces": { - "version": "3.0.2", - "license": "MIT", + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", "dependencies": { - "fill-range": "^7.0.1" + "fill-range": "^7.1.1" }, "engines": { "node": ">=8" @@ -12921,9 +12814,9 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001616", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001616.tgz", - "integrity": "sha512-RHVYKov7IcdNjVHJFNY/78RdG4oGVjbayxv8u5IO74Wv7Hlq4PnJE6mo/OjFijjVFNy5ijnCt6H3IIo4t+wfEw==", + "version": "1.0.30001629", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001629.tgz", + "integrity": "sha512-c3dl911slnQhmxUIT4HhYzT7wnBK/XYpGnYLOj4nJBaRiw52Ibe7YxlDaAeRECvA786zCuExhxIUJ2K7nHMrBw==", "funding": [ { "type": "opencollective", @@ -17598,8 +17491,9 @@ } }, "node_modules/fill-range": { - "version": "7.0.1", - "license": "MIT", + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", "dependencies": { "to-regex-range": "^5.0.1" }, @@ -22346,7 +22240,8 @@ }, "node_modules/is-number": { "version": "7.0.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", "engines": { "node": ">=0.12.0" } @@ -24265,9 +24160,10 @@ } }, "node_modules/jest-jasmine2/node_modules/ws": { - "version": "7.5.9", + "version": "7.5.10", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.10.tgz", + "integrity": "sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=8.3.0" }, @@ -37863,7 +37759,8 @@ }, "node_modules/to-regex-range": { "version": "5.0.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", "dependencies": { "is-number": "^7.0.0" }, @@ -39180,9 +39077,10 @@ } }, "node_modules/webpack-bundle-analyzer/node_modules/ws": { - "version": "7.5.9", + "version": "7.5.10", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.10.tgz", + "integrity": "sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=8.3.0" }, @@ -39721,9 +39619,10 @@ } }, "node_modules/ws": { - "version": "8.13.0", + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.17.1.tgz", + "integrity": "sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==", "devOptional": true, - "license": "MIT", "engines": { "node": ">=10.0.0" }, @@ -40189,6 +40088,20 @@ "playroom": "^0.31.0" } }, + "www/node_modules/@edx/eslint-config": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/@edx/eslint-config/-/eslint-config-3.2.0.tgz", + "integrity": "sha512-X2o34xr3KqmQSV/vJVv6k4FxUKYwbBATHTtTHLTYQvM9PVoM3WbKQP9tl6Z057pRErKzshJcks+4ENzDyhr11Q==", + "dev": true, + "peerDependencies": { + "eslint": "^6.8.0 || ^7.0.0 || ^8.0.0", + "eslint-config-airbnb": "^18.0.1 || ^19.0.0", + "eslint-plugin-import": "^2.20.0", + "eslint-plugin-jsx-a11y": "^6.2.3", + "eslint-plugin-react": "^7.18.0", + "eslint-plugin-react-hooks": "^1.7.0 || ^4.0.0" + } + }, "www/node_modules/decode-uri-component": { "version": "0.4.1", "license": "MIT", diff --git a/package.json b/package.json index e2039d55e5..4e8f977aa1 100644 --- a/package.json +++ b/package.json @@ -95,7 +95,7 @@ "@babel/preset-env": "^7.16.8", "@babel/preset-react": "^7.16.7", "@babel/preset-typescript": "^7.16.7", - "@edx/eslint-config": "^3.2.0", + "@edx/eslint-config": "^4.2.0", "@edx/stylelint-config-edx": "^2.3.0", "@edx/typescript-config": "^1.0.1", "@formatjs/cli": "^5.0.2", @@ -106,8 +106,8 @@ "@testing-library/react-hooks": "^8.0.1", "@testing-library/user-event": "^13.5.0", "@types/jest": "^29.5.10", - "@types/react": "17.0.0", - "@types/react-dom": "17.0.11", + "@types/react": "^17.0.80", + "@types/react-dom": "^17.0.11", "@types/react-responsive": "^8.0.8", "@types/react-table": "^7.7.19", "@types/react-test-renderer": "^18.0.0", @@ -153,7 +153,7 @@ "^.+\\.tsx?$": "ts-jest" }, "setupFilesAfterEnv": [ - "./src/setupTest.js" + "./src/setupTest.ts" ], "moduleNameMapper": { "\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "/__mocks__/fileMock.js", @@ -164,7 +164,7 @@ ], "coveragePathIgnorePatterns": [ "/node_modules/", - "src/setupTest.js", + "src/setupTest.ts", "src/index.js", "/tests/", "/www/", diff --git a/src/Button/Button.test.jsx b/src/Button/Button.test.tsx similarity index 84% rename from src/Button/Button.test.jsx rename to src/Button/Button.test.tsx index ebe19e0b55..8a3abc3af8 100644 --- a/src/Button/Button.test.jsx +++ b/src/Button/Button.test.tsx @@ -30,7 +30,7 @@ describe(' + )).toJSON(); expect(tree).toMatchSnapshot(); }); @@ -94,9 +94,21 @@ describe('); + // eslint-disable-next-line @typescript-eslint/no-unused-vars + const ref = (_current: HTMLAnchorElement) => {}; // Check typing of a ref - should not show type errors. + render(); expect(screen.getByRole('link').getAttribute('href')).toEqual('https://www.poop.com/💩'); }); }); + + test('with size="inline"', () => { + const tree = renderer.create(( +

+ 2 items selected. + +

+ )).toJSON(); + expect(tree).toMatchSnapshot(); + }); }); }); diff --git a/src/Button/ButtonGroup.test.jsx b/src/Button/ButtonGroup.test.tsx similarity index 100% rename from src/Button/ButtonGroup.test.jsx rename to src/Button/ButtonGroup.test.tsx diff --git a/src/Button/ButtonToolbar.test.jsx b/src/Button/ButtonToolbar.test.tsx similarity index 100% rename from src/Button/ButtonToolbar.test.jsx rename to src/Button/ButtonToolbar.test.tsx diff --git a/src/Button/__snapshots__/Button.test.jsx.snap b/src/Button/__snapshots__/Button.test.tsx.snap similarity index 92% rename from src/Button/__snapshots__/Button.test.jsx.snap rename to src/Button/__snapshots__/Button.test.tsx.snap index 863a1f933e..2cfb8b2f61 100644 --- a/src/Button/__snapshots__/Button.test.jsx.snap +++ b/src/Button/__snapshots__/Button.test.tsx.snap @@ -55,13 +55,13 @@ exports[` `; + +exports[` +

+`; diff --git a/src/Button/__snapshots__/ButtonGroup.test.jsx.snap b/src/Button/__snapshots__/ButtonGroup.test.tsx.snap similarity index 100% rename from src/Button/__snapshots__/ButtonGroup.test.jsx.snap rename to src/Button/__snapshots__/ButtonGroup.test.tsx.snap diff --git a/src/Button/__snapshots__/ButtonToolbar.test.jsx.snap b/src/Button/__snapshots__/ButtonToolbar.test.tsx.snap similarity index 100% rename from src/Button/__snapshots__/ButtonToolbar.test.jsx.snap rename to src/Button/__snapshots__/ButtonToolbar.test.tsx.snap diff --git a/src/Button/index.jsx b/src/Button/index.tsx similarity index 51% rename from src/Button/index.jsx rename to src/Button/index.tsx index 13c444e9fa..c22e3c3e28 100644 --- a/src/Button/index.jsx +++ b/src/Button/index.tsx @@ -1,32 +1,57 @@ import React from 'react'; -import PropTypes from 'prop-types'; +import PropTypes, { type Requireable } from 'prop-types'; import classNames from 'classnames'; -import BaseButton from 'react-bootstrap/Button'; -import BaseButtonGroup from 'react-bootstrap/ButtonGroup'; -import BaseButtonToolbar from 'react-bootstrap/ButtonToolbar'; +import BaseButton, { type ButtonProps as BaseButtonProps } from 'react-bootstrap/Button'; +import BaseButtonGroup, { type ButtonGroupProps as BaseButtonGroupProps } from 'react-bootstrap/ButtonGroup'; +import BaseButtonToolbar, { type ButtonToolbarProps } from 'react-bootstrap/ButtonToolbar'; +import type { ComponentWithAsProp } from '../utils/types/bootstrap'; +// @ts-ignore - we're not going to bother adding types for the deprecated button import ButtonDeprecated from './deprecated'; import Icon from '../Icon'; -const Button = React.forwardRef(({ +interface ButtonProps extends Omit { + /** + * An icon component to render. Example: + * ``` + * import { Close } from '@openedx/paragon/icons'; + * + * ``` + */ + iconBefore?: React.ComponentType; + /** + * An icon component to render. Example: + * ``` + * import { Close } from '@openedx/paragon/icons'; + * + * ``` + */ + iconAfter?: React.ComponentType; + size?: 'sm' | 'md' | 'lg' | 'inline'; +} + +type ButtonType = ComponentWithAsProp<'button', ButtonProps> & { Deprecated?: any }; + +const Button: ButtonType = React.forwardRef(({ children, iconAfter, iconBefore, + size, ...props }, ref) => ( types do not allow 'md' or 'inline', but we do. {...props} className={classNames(props.className)} ref={ref} > - {iconBefore && } + {iconBefore && } {children} - {iconAfter && } + {iconAfter && } )); Button.propTypes = { - ...Button.propTypes, /** Specifies class name to apply to the button */ className: PropTypes.string, /** Disables the Button, preventing mouse events, even if the underlying component is an `` element */ @@ -52,10 +77,13 @@ Button.propTypes = { variant: PropTypes.string, /** An icon component to render. * Example import of a Paragon icon component: `import { Check } from '@openedx/paragon/icons';` */ - iconBefore: PropTypes.oneOfType([PropTypes.elementType, PropTypes.node]), + iconBefore: PropTypes.elementType as Requireable, /** An icon component to render. * Example import of a Paragon icon component: `import { Check } from '@openedx/paragon/icons';` */ - iconAfter: PropTypes.oneOfType([PropTypes.elementType, PropTypes.node]), + iconAfter: PropTypes.elementType as Requireable, + // The 'as' type casting above is required for TypeScript checking, because the 'PropTypes.elementType' type normally + // allows strings as a value (for use cases like 'div') but we don't support that for /iconBefore/iconAfter. + // The React TypeScript type definitions are more specific (React.ComponentType vs React.ElementType). }; Button.defaultProps = { @@ -69,20 +97,29 @@ Button.defaultProps = { Button.Deprecated = ButtonDeprecated; -function ButtonGroup(props) { - return ; -} -function ButtonToolbar(props) { - return ; +// We could just re-export 'ButtonGroup' and 'ButtonToolbar', but we currently +// override them to add propTypes validation at runtime, since most Paragon +// consumers aren't using TypeScript yet. We also force ButtonGroup's 'size' +// prop to accept our custom values of 'md' and 'inline' which are used in +// Paragon but not used in the base Bootstrap classes. + +interface ButtonGroupProps extends Omit { + size?: 'sm' | 'md' | 'lg' | 'inline'; } +const ButtonGroup: ComponentWithAsProp<'div', ButtonGroupProps> = ( + React.forwardRef(({ size, ...props }, ref) => ( + + )) +); + ButtonGroup.propTypes = { /** Specifies element type for this component. */ as: PropTypes.elementType, /** An ARIA role describing the button group. */ role: PropTypes.string, /** Specifies the size for all Buttons in the group. */ - size: PropTypes.oneOf(['sm', 'md', 'lg']), + size: PropTypes.oneOf(['sm', 'md', 'lg', 'inline']), /** Display as a button toggle group. */ toggle: PropTypes.bool, /** Specifies if the set of Buttons should appear vertically stacked. */ @@ -100,6 +137,12 @@ ButtonGroup.defaultProps = { size: 'md', }; +const ButtonToolbar: ComponentWithAsProp<'div', ButtonToolbarProps> = ( + React.forwardRef((props, ref) => ( + + )) +); + ButtonToolbar.propTypes = { /** An ARIA role describing the button group. */ role: PropTypes.string, diff --git a/src/Card/index.scss b/src/Card/index.scss index 56d0269aad..74bb2095bf 100644 --- a/src/Card/index.scss +++ b/src/Card/index.scss @@ -353,6 +353,8 @@ a.pgn__card { bottom: #{-$card-logo-bottom-offset}; width: $card-logo-width; height: $card-logo-height; + object-fit: scale-down; + object-position: center center; border-radius: $card-logo-border-radius; box-shadow: $level-1-box-shadow; padding: map_get($spacers, 2); diff --git a/src/Chip/Chip.test.jsx b/src/Chip/Chip.test.tsx similarity index 94% rename from src/Chip/Chip.test.jsx rename to src/Chip/Chip.test.tsx index f5e5367d18..1624e62d36 100644 --- a/src/Chip/Chip.test.jsx +++ b/src/Chip/Chip.test.tsx @@ -7,7 +7,7 @@ import { Close } from '../../icons'; import { STYLE_VARIANTS } from './constants'; import Chip from '.'; -function TestChip(props) { +function TestChip(props: Omit, 'children'>) { return ( Test @@ -42,15 +42,13 @@ describe('', () => { iconBeforeAlt="close icon" iconAfter={Close} iconAfterAlt="close icon" - > - Chip - + /> )).toJSON(); expect(tree).toMatchSnapshot(); }); it('renders div with "button" role when onClick is provided', () => { const tree = renderer.create(( - Chip + )).toJSON(); expect(tree).toMatchSnapshot(); }); @@ -104,7 +102,7 @@ describe('', () => { />, ); const iconAfter = screen.getByLabelText('icon-after'); - await userEvent.click(iconAfter, '{enter}', { skipClick: true }); + await userEvent.click(iconAfter); expect(func).toHaveBeenCalledTimes(1); }); it('onIconBeforeClick is triggered', async () => { @@ -130,7 +128,7 @@ describe('', () => { />, ); const iconBefore = screen.getByLabelText('icon-before'); - await userEvent.click(iconBefore, '{enter}', { skipClick: true }); + await userEvent.click(iconBefore); expect(func).toHaveBeenCalledTimes(1); }); it('checks the absence of the `selected` class in the chip', async () => { diff --git a/src/Chip/ChipIcon.tsx b/src/Chip/ChipIcon.tsx index a32692c5ce..8ef97ef1ee 100644 --- a/src/Chip/ChipIcon.tsx +++ b/src/Chip/ChipIcon.tsx @@ -1,19 +1,19 @@ import React, { KeyboardEventHandler, MouseEventHandler } from 'react'; import PropTypes from 'prop-types'; import Icon from '../Icon'; -// @ts-ignore import IconButton from '../IconButton'; -// @ts-ignore import { STYLE_VARIANTS } from './constants'; -export interface ChipIconProps { +export type ChipIconProps = { className: string, - src: React.ReactElement | Function, - onClick?: KeyboardEventHandler & MouseEventHandler, - alt?: string, - variant: string, + src: React.ComponentType, + variant: typeof STYLE_VARIANTS[keyof typeof STYLE_VARIANTS], disabled?: boolean, -} +} & ( + // Either _both_ onClick and alt are provided, or neither is: + | { onClick: KeyboardEventHandler & MouseEventHandler, alt: string } + | { onClick?: undefined, alt?: undefined } +); function ChipIcon({ className, src, onClick, alt, variant, disabled, diff --git a/src/Chip/__snapshots__/Chip.test.jsx.snap b/src/Chip/__snapshots__/Chip.test.tsx.snap similarity index 100% rename from src/Chip/__snapshots__/Chip.test.jsx.snap rename to src/Chip/__snapshots__/Chip.test.tsx.snap diff --git a/src/Chip/constants.js b/src/Chip/constants.ts similarity index 91% rename from src/Chip/constants.js rename to src/Chip/constants.ts index 6259d0c8dd..dea354757b 100644 --- a/src/Chip/constants.js +++ b/src/Chip/constants.ts @@ -2,4 +2,4 @@ export const STYLE_VARIANTS = { DARK: 'dark', LIGHT: 'light', -}; +} as const; diff --git a/src/Chip/index.tsx b/src/Chip/index.tsx index 23abfde5c7..81be775f78 100644 --- a/src/Chip/index.tsx +++ b/src/Chip/index.tsx @@ -1,11 +1,9 @@ import React, { ForwardedRef, KeyboardEventHandler, MouseEventHandler } from 'react'; -import PropTypes from 'prop-types'; +import PropTypes, { type Requireable } from 'prop-types'; import classNames from 'classnames'; // @ts-ignore import { requiredWhen } from '../utils/propTypes'; -// @ts-ignore import { STYLE_VARIANTS } from './constants'; -// @ts-ignore import ChipIcon from './ChipIcon'; export const CHIP_PGN_CLASS = 'pgn__chip'; @@ -14,10 +12,10 @@ export interface IChip { children: React.ReactNode, onClick?: KeyboardEventHandler & MouseEventHandler, className?: string, - variant?: string, - iconBefore?: React.ReactElement | Function, + variant?: typeof STYLE_VARIANTS[keyof typeof STYLE_VARIANTS], + iconBefore?: React.ComponentType, iconBeforeAlt?: string, - iconAfter?: React.ReactElement | Function, + iconAfter?: React.ComponentType, iconAfterAlt?: string, onIconBeforeClick?: KeyboardEventHandler & MouseEventHandler, onIconAfterClick?: KeyboardEventHandler & MouseEventHandler, @@ -111,7 +109,7 @@ Chip.propTypes = { * * `import { Check } from '@openedx/paragon/icons';` */ - iconBefore: PropTypes.oneOfType([PropTypes.element, PropTypes.func]), + iconBefore: PropTypes.elementType as Requireable, /** Specifies icon alt text. */ iconBeforeAlt: requiredWhen(PropTypes.string, ['iconBefore', 'onIconBeforeClick']), /** A click handler for the `Chip` icon before. */ @@ -122,7 +120,7 @@ Chip.propTypes = { * * `import { Check } from '@openedx/paragon/icons';` */ - iconAfter: PropTypes.oneOfType([PropTypes.element, PropTypes.func]), + iconAfter: PropTypes.elementType as Requireable, /** Specifies icon alt text. */ iconAfterAlt: requiredWhen(PropTypes.string, ['iconAfter', 'onIconAfterClick']), /** A click handler for the `Chip` icon after. */ diff --git a/src/ChipCarousel/index.tsx b/src/ChipCarousel/index.tsx index acb26ae115..062a21a347 100644 --- a/src/ChipCarousel/index.tsx +++ b/src/ChipCarousel/index.tsx @@ -4,9 +4,7 @@ import { useIntl } from 'react-intl'; import classNames from 'classnames'; // @ts-ignore import { OverflowScroll, OverflowScrollContext } from '../OverflowScroll'; -// @ts-ignore import IconButton from '../IconButton'; -// @ts-ignore import Icon from '../Icon'; // @ts-ignore import { ArrowForward, ArrowBack } from '../../icons'; diff --git a/src/Container/Container.test.jsx b/src/Container/Container.test.tsx similarity index 62% rename from src/Container/Container.test.jsx rename to src/Container/Container.test.tsx index b3a6faaf7c..82efafa24b 100644 --- a/src/Container/Container.test.jsx +++ b/src/Container/Container.test.tsx @@ -1,8 +1,8 @@ import React from 'react'; import { render } from '@testing-library/react'; -import Container from '.'; +import Container, { type ContainerSize } from '.'; -const getClassNames = (container) => container.className.split(' '); +const getClassNames = (container: HTMLElement) => container.className.split(' '); describe('', () => { it('displays children', () => { @@ -12,32 +12,38 @@ describe('', () => { it('adds the .container-fluid class', () => { const { container } = render(Content); - const containerElement = container.firstChild; + const containerElement = container.firstChild as HTMLElement; expect(getClassNames(containerElement)).toContain('container-fluid'); }); it('adds the .container class', () => { const { container } = render(Content); - const containerElement = container.firstChild; - expect(getClassNames(containerElement)).toContain('container'); + const containerElement = container.firstChild as HTMLElement; + expect(getClassNames(containerElement!)).toContain('container'); expect(getClassNames(containerElement)).not.toContain('container-fluid'); }); - ['xs', 'sm', 'md', 'lg', 'xl'].forEach((size) => { + ['xs', 'sm', 'md', 'lg', 'xl'].forEach((size: ContainerSize) => { it(`adds the .container-mw-${size} class`, () => { const { container } = render(Content); - const containerElement = container.firstChild; + const containerElement = container.firstChild as HTMLElement; expect(getClassNames(containerElement)).toContain(`container-mw-${size}`); }); }); + it('does not add a size class when size is not specified', () => { + const { container } = render(Content); + const containerElement = container.firstChild as HTMLElement; + expect(getClassNames(containerElement)).toEqual(['container-fluid']); + }); + it('preserves custom class names', () => { const { container } = render( Content , ); - const containerElement = container.firstChild; + const containerElement = container.firstChild as HTMLElement; expect(getClassNames(containerElement)).toContain('container-mw-md'); expect(getClassNames(containerElement)).toContain('container-fluid'); expect(getClassNames(containerElement)).toContain('custom-class'); diff --git a/src/Container/README.md b/src/Container/README.md index de2bdab76c..8c2f6a4775 100644 --- a/src/Container/README.md +++ b/src/Container/README.md @@ -19,6 +19,10 @@ The base container to contain, pad, and center content in the viewport. This com ```jsx live
+ + The content in this container doesn't have a max width + + The content in this container won't exceed the extra large width. diff --git a/src/Container/index.jsx b/src/Container/index.jsx deleted file mode 100644 index a2f38de7bb..0000000000 --- a/src/Container/index.jsx +++ /dev/null @@ -1,49 +0,0 @@ -import React, { forwardRef } from 'react'; -import classNames from 'classnames'; -import RBContainer from 'react-bootstrap/Container'; -import PropTypes from 'prop-types'; - -const SIZE_CLASS_NAMES = { - xs: 'container-mw-xs', - sm: 'container-mw-sm', - md: 'container-mw-md', - lg: 'container-mw-lg', - xl: 'container-mw-xl', -}; - -const Container = forwardRef(({ size, children, ...props }, ref) => ( - - {children} - -)); - -Container.propTypes = { - ...RBContainer.propTypes, - /** Override the base element */ - as: PropTypes.elementType, - /** Specifies the contents of the container */ - children: PropTypes.node, - /** Fill all available space at any breakpoint */ - fluid: PropTypes.bool, - /** Set the maximum width for the container */ - size: PropTypes.oneOf(Object.keys(SIZE_CLASS_NAMES)), - /** Overrides underlying component base CSS class name */ - bsPrefix: PropTypes.string, -}; - -Container.defaultProps = { - as: 'div', - children: undefined, - fluid: true, - size: undefined, - bsPrefix: 'container', -}; - -export default Container; diff --git a/src/Container/index.tsx b/src/Container/index.tsx new file mode 100644 index 0000000000..ea95d58867 --- /dev/null +++ b/src/Container/index.tsx @@ -0,0 +1,64 @@ +/* eslint-disable react/require-default-props */ +import React from 'react'; +import classNames from 'classnames'; +import PropTypes from 'prop-types'; +import RBContainer, { type ContainerProps as RBContainerProps } from 'react-bootstrap/Container'; + +import type { ComponentWithAsProp } from '../utils/types/bootstrap'; + +enum ContainerSizeClass { + xs = 'container-mw-xs', + sm = 'container-mw-sm', + md = 'container-mw-md', + lg = 'container-mw-lg', + xl = 'container-mw-xl', +} + +export type ContainerSize = keyof typeof ContainerSizeClass; + +interface ContainerProps extends RBContainerProps { + size?: ContainerSize; +} + +type ContainerType = ComponentWithAsProp<'div', ContainerProps>; + +const Container: ContainerType = React.forwardRef(({ + size, + children, + ...props +}, ref) => ( + + {children} + +)); + +Container.propTypes = { + ...RBContainer.propTypes, + /** Override the base element */ + as: PropTypes.elementType, + /** Specifies the contents of the container */ + children: PropTypes.node, + /** Fill all available space at any breakpoint */ + fluid: PropTypes.bool, + /** Set the maximum width for the container. Omiting the prop will remove the max-width */ + size: PropTypes.oneOf(['xs', 'sm', 'md', 'lg', 'xl']), + /** Overrides underlying component base CSS class name */ + bsPrefix: PropTypes.string, +}; + +Container.defaultProps = { + as: 'div', + children: undefined, + fluid: true, + size: undefined, + bsPrefix: 'container', +}; + +export default Container; diff --git a/src/DataTable/selection/tests/ControlledSelectHeader.test.jsx b/src/DataTable/selection/tests/ControlledSelectHeader.test.jsx index 732c3cdb43..2af2b283ba 100644 --- a/src/DataTable/selection/tests/ControlledSelectHeader.test.jsx +++ b/src/DataTable/selection/tests/ControlledSelectHeader.test.jsx @@ -8,6 +8,13 @@ import DataTableContext from '../../DataTableContext'; import * as selectActions from '../data/actions'; import { getRowIds } from '../data/helpers'; +function DataTableContextChild() { + const contextValue = useContext(DataTableContext); + return ( +
+ ); +} + // eslint-disable-next-line react/prop-types function ControlledSelectHeaderWrapper({ tableProps, selectProps, ...rest }) { return ( @@ -18,13 +25,6 @@ function ControlledSelectHeaderWrapper({ tableProps, selectProps, ...rest }) { ); } -function DataTableContextChild() { - const contextValue = useContext(DataTableContext); - return ( -
- ); -} - const mockToggleAllPageRowsSelectedProps = jest.fn(); const rows = [{ id: 1 }, { id: 2 }]; const tableProps = { diff --git a/src/Hyperlink/Hyperlink.test.jsx b/src/Hyperlink/Hyperlink.test.tsx similarity index 74% rename from src/Hyperlink/Hyperlink.test.jsx rename to src/Hyperlink/Hyperlink.test.tsx index 2d5ffd3c5e..3982cc6fa6 100644 --- a/src/Hyperlink/Hyperlink.test.jsx +++ b/src/Hyperlink/Hyperlink.test.tsx @@ -4,30 +4,34 @@ import userEvent from '@testing-library/user-event'; import Hyperlink from '.'; -const content = 'content'; const destination = 'destination'; +const content = 'content'; const onClick = jest.fn(); const props = { - content, destination, onClick, }; const externalLinkAlternativeText = 'externalLinkAlternativeText'; const externalLinkTitle = 'externalLinkTitle'; const externalLinkProps = { - target: '_blank', + target: '_blank' as const, externalLinkAlternativeText, externalLinkTitle, ...props, }; describe('correct rendering', () => { + beforeEach(() => { + onClick.mockClear(); + }); + it('renders Hyperlink', async () => { - const { getByRole } = render(); + const { getByRole } = render({content}); const wrapper = getByRole('link'); expect(wrapper).toBeInTheDocument(); expect(wrapper).toHaveClass('pgn__hyperlink'); + expect(wrapper).toHaveClass('standalone-link'); expect(wrapper).toHaveTextContent(content); expect(wrapper).toHaveAttribute('href', destination); expect(wrapper).toHaveAttribute('target', '_self'); @@ -36,8 +40,17 @@ describe('correct rendering', () => { expect(onClick).toHaveBeenCalledTimes(1); }); + it('renders an underlined Hyperlink', async () => { + const { getByRole } = render({content}); + const wrapper = getByRole('link'); + expect(wrapper).toBeInTheDocument(); + expect(wrapper).toHaveClass('pgn__hyperlink'); + expect(wrapper).not.toHaveClass('standalone-link'); + expect(wrapper).toHaveClass('inline-link'); + }); + it('renders external Hyperlink', () => { - const { getByRole, getByTestId } = render(); + const { getByRole, getByTestId } = render({content}); const wrapper = getByRole('link'); const icon = getByTestId('hyperlink-icon'); const iconSvg = icon.querySelector('svg'); @@ -53,18 +66,16 @@ describe('correct rendering', () => { describe('security', () => { it('prevents reverse tabnabbing for links with target="_blank"', () => { - const { getByRole } = render(); + const { getByRole } = render({content}); const wrapper = getByRole('link'); expect(wrapper).toHaveAttribute('rel', 'noopener noreferrer'); }); }); describe('event handlers are triggered correctly', () => { - let spy; - beforeEach(() => { spy = jest.fn(); }); - it('should fire onClick', async () => { - const { getByRole } = render(); + const spy = jest.fn(); + const { getByRole } = render({content}); const wrapper = getByRole('link'); expect(spy).toHaveBeenCalledTimes(0); await userEvent.click(wrapper); diff --git a/src/Hyperlink/index.jsx b/src/Hyperlink/index.tsx similarity index 63% rename from src/Hyperlink/index.jsx rename to src/Hyperlink/index.tsx index 7c4a61f882..5229f73f8f 100644 --- a/src/Hyperlink/index.jsx +++ b/src/Hyperlink/index.tsx @@ -1,29 +1,45 @@ import React from 'react'; import PropTypes from 'prop-types'; import classNames from 'classnames'; -import isRequiredIf from 'react-proptype-conditional-require'; import { Launch } from '../../icons'; import Icon from '../Icon'; -import withDeprecatedProps, { DeprTypes } from '../withDeprecatedProps'; - export const HYPER_LINK_EXTERNAL_LINK_ALT_TEXT = 'in a new tab'; export const HYPER_LINK_EXTERNAL_LINK_TITLE = 'Opens in a new tab'; -const Hyperlink = React.forwardRef((props, ref) => { - const { - className, - destination, - children, - target, - onClick, - externalLinkAlternativeText, - externalLinkTitle, - variant, - isInline, - showLaunchIcon, - ...attrs - } = props; +interface Props extends Omit, 'href' | 'target'> { + /** specifies the URL */ + destination: string; + /** Content of the hyperlink */ + children: React.ReactNode; + /** Custom class names for the hyperlink */ + className?: string; + /** Alt text for the icon indicating that this link opens in a new tab, if target="_blank". e.g. _("in a new tab") */ + externalLinkAlternativeText?: string; + /** Tooltip text for the "opens in new tab" icon, if target="_blank". e.g. _("Opens in a new tab"). */ + externalLinkTitle?: string; + /** type of hyperlink */ + variant?: 'default' | 'muted' | 'brand'; + /** Display the link with an underline. By default, it is only underlined on hover. */ + isInline?: boolean; + /** specify if we need to show launch Icon. By default, it will be visible. */ + showLaunchIcon?: boolean; + target?: '_blank' | '_self'; +} + +const Hyperlink = React.forwardRef(({ + className, + destination, + children, + target, + onClick, + externalLinkAlternativeText, + externalLinkTitle, + variant, + isInline, + showLaunchIcon, + ...attrs +}, ref) => { let externalLinkIcon; if (target === '_blank') { @@ -105,32 +121,20 @@ Hyperlink.propTypes = { * loaded into the same browsing context as the current one. * If the target is `_blank` (opening a new window) `rel='noopener'` will be added to the anchor tag to prevent * any potential [reverse tabnabbing attack](https://www.owasp.org/index.php/Reverse_Tabnabbing). - */ - target: PropTypes.string, + */ + target: PropTypes.oneOf(['_blank', '_self']), /** specifies the callback function when the link is clicked */ onClick: PropTypes.func, - /** specifies the text for links with a `_blank` target (which loads the URL in a new browsing context). */ - externalLinkAlternativeText: isRequiredIf( - PropTypes.string, - props => props.target === '_blank', - ), - /** specifies the title for links with a `_blank` target (which loads the URL in a new browsing context). */ - externalLinkTitle: isRequiredIf( - PropTypes.string, - props => props.target === '_blank', - ), + /** Alt text for the icon indicating that this link opens in a new tab, if target="_blank". e.g. _("in a new tab") */ + externalLinkAlternativeText: PropTypes.string, + /** Tooltip text for the "opens in new tab" icon, if target="_blank". e.g. _("Opens in a new tab"). */ + externalLinkTitle: PropTypes.string, /** type of hyperlink */ variant: PropTypes.oneOf(['default', 'muted', 'brand']), - /** specify the link style. By default, it will be underlined. */ + /** Display the link with an underline. By default, it is only underlined on hover. */ isInline: PropTypes.bool, /** specify if we need to show launch Icon. By default, it will be visible. */ showLaunchIcon: PropTypes.bool, }; -export default withDeprecatedProps(Hyperlink, 'Hyperlink', { - /** specifies the text or element that a URL should be associated with */ - content: { - deprType: DeprTypes.MOVED, - newName: 'children', - }, -}); +export default Hyperlink; diff --git a/src/Icon/index.d.ts b/src/Icon/index.d.ts index 45505bb49a..b9d6f5d746 100644 --- a/src/Icon/index.d.ts +++ b/src/Icon/index.d.ts @@ -1,13 +1,15 @@ import React from 'react'; export interface IconProps extends React.ComponentPropsWithoutRef<'span'> { - src?: React.ReactElement | Function; + // Note: React.ComponentType is what we want here. React.ElementType would allow some element type strings like "div", + // but we only want to allow components like 'Add' (a specific icon component function/class) + src?: React.ComponentType; svgAttrs?: { 'aria-label'?: string; 'aria-labelledby'?: string; }; id?: string | null; - size?: 'xs' | 'sm' | 'md' | 'lg'; + size?: 'xs' | 'sm' | 'md' | 'lg' | 'inline'; className?: string | string[]; hidden?: boolean; screenReaderText?: React.ReactNode; diff --git a/src/Icon/index.jsx b/src/Icon/index.jsx index 6f0a7a3cf3..89403430f2 100644 --- a/src/Icon/index.jsx +++ b/src/Icon/index.jsx @@ -74,7 +74,7 @@ Icon.propTypes = { * An icon component to render. * Example import of a Paragon icon component: `import { Check } from '@openedx/paragon/icons';` */ - src: PropTypes.oneOfType([PropTypes.element, PropTypes.elementType]), + src: PropTypes.elementType, /** HTML element attributes to pass through to the underlying svg element */ svgAttrs: PropTypes.shape({ 'aria-label': PropTypes.string, diff --git a/src/IconButton/IconButton.test.jsx b/src/IconButton/IconButton.test.tsx similarity index 82% rename from src/IconButton/IconButton.test.jsx rename to src/IconButton/IconButton.test.tsx index 9f098002ea..8e4b2e72c4 100644 --- a/src/IconButton/IconButton.test.jsx +++ b/src/IconButton/IconButton.test.tsx @@ -11,21 +11,27 @@ describe('', () => { const alt = 'alternative'; const iconAs = Icon; const src = InfoOutline; - const variant = 'secondary'; + const variant = 'secondary' as const; const props = { alt, src, iconAs, variant, }; - const iconParams = { + const deprecatedFontAwesomeExample = { prefix: 'pgn', iconName: 'InfoOutlineIcon', icon: [InfoOutline], }; it('renders with required props', () => { const tree = renderer.create(( - + + )).toJSON(); + expect(tree).toMatchSnapshot(); + }); + it('renders with deprecated props', () => { + const tree = renderer.create(( + )).toJSON(); expect(tree).toMatchSnapshot(); }); @@ -94,4 +100,19 @@ describe('', () => { expect(spy2).toHaveBeenCalledTimes(1); }); }); + + describe('', () => { + it('renders with required props', () => { + const tree = renderer.create(( + + )).toJSON(); + expect(tree).toMatchSnapshot(); + }); + }); }); diff --git a/src/IconButton/__snapshots__/IconButton.test.jsx.snap b/src/IconButton/__snapshots__/IconButton.test.jsx.snap deleted file mode 100644 index b30da46240..0000000000 --- a/src/IconButton/__snapshots__/IconButton.test.jsx.snap +++ /dev/null @@ -1,43 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[` renders with required props 1`] = ` - -`; diff --git a/src/IconButton/__snapshots__/IconButton.test.tsx.snap b/src/IconButton/__snapshots__/IconButton.test.tsx.snap new file mode 100644 index 0000000000..dd82977c10 --- /dev/null +++ b/src/IconButton/__snapshots__/IconButton.test.tsx.snap @@ -0,0 +1,112 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[` renders with required props 1`] = ` + +`; + +exports[` renders with deprecated props 1`] = ` + +`; + +exports[` renders with required props 1`] = ` + +`; diff --git a/src/IconButton/index.jsx b/src/IconButton/index.tsx similarity index 59% rename from src/IconButton/index.jsx rename to src/IconButton/index.tsx index bf25709577..5cc805c8a2 100644 --- a/src/IconButton/index.jsx +++ b/src/IconButton/index.tsx @@ -1,12 +1,46 @@ import React from 'react'; import PropTypes from 'prop-types'; import classNames from 'classnames'; - import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; +import { type Placement } from 'react-bootstrap/Overlay'; + import { OverlayTrigger } from '../Overlay'; import Tooltip from '../Tooltip'; +import Icon from '../Icon'; -const IconButton = React.forwardRef(({ +interface Props extends React.HTMLAttributes { + iconAs?: typeof Icon | typeof FontAwesomeIcon, + /** Additional CSS class[es] to apply to this button */ + className?: string; + /** Alt text for your icon. For best practice, avoid using alt text to describe + * the image in the `IconButton`. Instead, we recommend describing the function + * of the button. */ + alt: string; + /** Changes icon styles for dark background */ + invertColors?: boolean; + /** An icon component to render. Example import of a Paragon icon component: + * `import { Check } from '@openedx/paragon/icons';` + * */ + // Note: React.ComponentType is what we want here. React.ElementType would allow some element type strings like "div", + // but we only want to allow components like 'Add' (a specific icon component function/class) + src?: React.ComponentType; + /** Extra class names that will be added to the icon */ + iconClassNames?: string; + /** Click handler for the button */ + onClick?: React.MouseEventHandler; + /** whether to show the `IconButton` in an active state, whose styling is distinct from default state */ + isActive?: boolean; + /** @deprecated Using FontAwesome icons is deprecated. Instead, pass iconAs={Icon} src={...} */ + icon?: { prefix?: string; iconName?: string, icon?: any[] }, + /** Type of button (uses Bootstrap options) */ + variant?: 'primary' | 'secondary' | 'success' | 'warning' | 'danger' | 'light' | 'dark' | 'black' | 'brand'; + /** size of button to render */ + size?: 'sm' | 'md' | 'inline'; + /** no children */ + children?: never; +} + +const IconButton = React.forwardRef(({ className, alt, invertColors, @@ -18,6 +52,7 @@ const IconButton = React.forwardRef(({ variant, iconAs, isActive, + children, // unused, just here because we don't want it to be part of 'attrs' ...attrs }, ref) => { const invert = invertColors ? 'inverse-' : ''; @@ -50,7 +85,7 @@ const IconButton = React.forwardRef(({ @@ -60,7 +95,7 @@ const IconButton = React.forwardRef(({ IconButton.defaultProps = { iconAs: undefined, - src: null, + src: undefined, icon: undefined, iconClassNames: undefined, className: undefined, @@ -69,6 +104,7 @@ IconButton.defaultProps = { size: 'md', onClick: () => {}, isActive: false, + children: undefined, }; IconButton.propTypes = { @@ -76,11 +112,11 @@ IconButton.propTypes = { className: PropTypes.string, /** Component that renders the icon, currently defaults to `FontAwesomeIcon`, * but is going to be deprecated soon, please use Paragon's icons instead. */ - iconAs: PropTypes.elementType, + iconAs: PropTypes.elementType as any, /** An icon component to render. Example import of a Paragon icon component: - * `import { Check } from '@openedx/paragon/dist/icon';` + * `import { Check } from '@openedx/paragon/icons';` * */ - src: PropTypes.oneOfType([PropTypes.element, PropTypes.elementType]), + src: PropTypes.elementType as any, /** Alt text for your icon. For best practice, avoid using alt text to describe * the image in the `IconButton`. Instead, we recommend describing the function * of the button. */ @@ -93,7 +129,7 @@ IconButton.propTypes = { iconName: PropTypes.string, // eslint-disable-next-line react/forbid-prop-types icon: PropTypes.array, - }), + }) as any, /** Extra class names that will be added to the icon */ iconClassNames: PropTypes.string, /** Click handler for the button */ @@ -106,38 +142,40 @@ IconButton.propTypes = { isActive: PropTypes.bool, }; +interface PropsWithTooltip extends Props { + /** choose from https://popper.js.org/docs/v2/constructors/#options */ + tooltipPlacement: Placement, + /** any content to pass to tooltip content area */ + tooltipContent: React.ReactNode, +} + /** - * - * @param { object } args Arguments - * @param { string } args.tooltipPlacement choose from https://popper.js.org/docs/v2/constructors/#options - * @param { React.Component } args.tooltipContent any content to pass to tooltip content area - * @returns { IconButton } a button wrapped in overlaytrigger + * An icon button wrapped in overlaytrigger to display a tooltip. */ function IconButtonWithTooltip({ - tooltipPlacement, tooltipContent, variant, invertColors, ...props -}) { - const invert = invertColors ? 'inverse-' : ''; + tooltipPlacement, tooltipContent, ...props +}: PropsWithTooltip) { + const invert = props.invertColors ? 'inverse-' : ''; return ( {tooltipContent} )} > - + ); } IconButtonWithTooltip.defaultProps = { + ...IconButton.defaultProps, tooltipPlacement: 'top', - variant: 'primary', - invertColors: false, }; IconButtonWithTooltip.propTypes = { @@ -151,7 +189,9 @@ IconButtonWithTooltip.propTypes = { invertColors: PropTypes.bool, }; -IconButton.IconButtonWithTooltip = IconButtonWithTooltip; +(IconButton as any).IconButtonWithTooltip = IconButtonWithTooltip; -export default IconButton; +export default IconButton as typeof IconButton & { + IconButtonWithTooltip: typeof IconButtonWithTooltip, +}; export { IconButtonWithTooltip }; diff --git a/src/Menu/SelectMenu.jsx b/src/Menu/SelectMenu.jsx index 5bee47ba7b..0e6feb9506 100644 --- a/src/Menu/SelectMenu.jsx +++ b/src/Menu/SelectMenu.jsx @@ -15,6 +15,7 @@ function SelectMenu({ children, className, variant, + disabled, ...props }) { const [triggerTarget, setTriggerTarget] = useState(null); @@ -89,6 +90,7 @@ function SelectMenu({ variant={variant} iconAfter={ExpandMore} onClick={open} + disabled={disabled} > {selected !== undefined && children[selected] ? children[selected].props.children : defaultMessage} @@ -131,12 +133,15 @@ SelectMenu.propTypes = { className: PropTypes.string, /** Specifies variant to use. */ variant: PropTypes.string, + /** Specifies if the `SelectMenu` is disabled. */ + disabled: PropTypes.bool, }; SelectMenu.defaultProps = { defaultMessage: SELECT_MENU_DEFAULT_MESSAGE, className: undefined, variant: 'outline-primary', + disabled: false, }; const SelectMenuWithDeprecatedProp = withDeprecatedProps(SelectMenu, 'SelectMenu', { diff --git a/src/Menu/SelectMenu.test.jsx b/src/Menu/SelectMenu.test.jsx index 9d542da4e2..49d0f544a5 100644 --- a/src/Menu/SelectMenu.test.jsx +++ b/src/Menu/SelectMenu.test.jsx @@ -58,6 +58,12 @@ describe('correct rendering', () => { const button = screen.getByRole('button'); expect(button).toHaveClass('btn-brand'); }); + + it('renders as disabled', () => { + render(DefaultSelectMenu({ disabled: true })); + const button = screen.getByRole('button'); + expect(button).toBeDisabled(); + }); }); describe('mouse behavior & keyboard behavior', () => { diff --git a/src/Menu/select-menu.md b/src/Menu/select-menu.md index 0aa7ad33fc..e11a6116f2 100644 --- a/src/Menu/select-menu.md +++ b/src/Menu/select-menu.md @@ -56,3 +56,11 @@ The ``Modal`` brings focus to the first menu element upon the click of the trigg M. Hortens ``` + +## Disabled + +```jsx live + + A Menu Item + +``` diff --git a/src/Modal/ModalContext.jsx b/src/Modal/ModalContext.tsx similarity index 50% rename from src/Modal/ModalContext.jsx rename to src/Modal/ModalContext.tsx index f374c3ee6f..a9bdd3b702 100644 --- a/src/Modal/ModalContext.jsx +++ b/src/Modal/ModalContext.tsx @@ -1,14 +1,29 @@ import React, { useMemo } from 'react'; -import PropTypes from 'prop-types'; -const ModalContext = React.createContext({ +interface ContextData { + onClose: () => void; + isOpen: boolean; + isBlocking: boolean; +} + +const ModalContext = React.createContext({ onClose: () => {}, + isOpen: false, + isBlocking: false, }); function ModalContextProvider({ - onClose, isOpen, isBlocking, children, + onClose, + isOpen, + isBlocking = false, + children = null, +}: { + onClose: () => void; + isOpen: boolean; + isBlocking?: boolean; + children?: React.ReactNode; }) { - const modalContextValue = useMemo( + const modalContextValue = useMemo( () => ({ onClose, isOpen, isBlocking }), [onClose, isOpen, isBlocking], ); @@ -20,17 +35,5 @@ function ModalContextProvider({ ); } -ModalContextProvider.propTypes = { - children: PropTypes.node, - onClose: PropTypes.func.isRequired, - isBlocking: PropTypes.bool, - isOpen: PropTypes.bool.isRequired, -}; - -ModalContextProvider.defaultProps = { - children: null, - isBlocking: false, -}; - export { ModalContextProvider }; export default ModalContext; diff --git a/src/Modal/ModalDialog.jsx b/src/Modal/ModalDialog.tsx similarity index 64% rename from src/Modal/ModalDialog.jsx rename to src/Modal/ModalDialog.tsx index 6814b3c22e..6ad659ca06 100644 --- a/src/Modal/ModalDialog.jsx +++ b/src/Modal/ModalDialog.tsx @@ -3,11 +3,16 @@ import PropTypes from 'prop-types'; import classNames from 'classnames'; import { useMediaQuery } from 'react-responsive'; import ModalLayer from './ModalLayer'; +// @ts-ignore for now - this needs to be converted to TypeScript import ModalCloseButton from './ModalCloseButton'; import ModalDialogHeader from './ModalDialogHeader'; +// @ts-ignore for now - this needs to be converted to TypeScript import ModalDialogTitle from './ModalDialogTitle'; +// @ts-ignore for now - this needs to be converted to TypeScript import ModalDialogFooter from './ModalDialogFooter'; +// @ts-ignore for now - this needs to be converted to TypeScript import ModalDialogBody from './ModalDialogBody'; +// @ts-ignore for now - this needs to be converted to TypeScript import ModalDialogHero from './ModalDialogHero'; import Icon from '../Icon'; @@ -16,22 +21,57 @@ import { Close } from '../../icons'; export const MODAL_DIALOG_CLOSE_LABEL = 'Close'; +interface Props { + /** Specifies the content of the dialog */ + children: React.ReactNode; + /** The aria-label of the dialog */ + title: string; + /** A callback to close the modal dialog, e.g. when Escape is pressed */ + onClose: () => void; + /** Is the modal dialog open or closed? */ + isOpen?: boolean; + /** The close 'x' icon button in the top right of the dialog box */ + hasCloseButton?: boolean; + /** Size determines the maximum width of the dialog box */ + size?: 'sm' | 'md' | 'lg' | 'xl' | 'fullscreen'; + /** The visual style of the dialog box */ + variant?: 'default' | 'warning' | 'danger' | 'success' | 'dark'; + /** The label supplied to the close icon button if one is rendered */ + closeLabel?: string; + /** Specifies class name to append to the base element */ + className?: string; + /** + * Determines where a scrollbar should appear if a modal is too large for the + * viewport. When false, the ``ModalDialog``. Body receives a scrollbar, when true + * the browser window itself receives the scrollbar. + */ + isFullscreenScroll?: boolean; + /** To show full screen view on mobile screens */ + isFullscreenOnMobile?: boolean; + /** Prevent clicking on the backdrop or pressing Esc to close the modal */ + isBlocking?: boolean; + /** Specifies the z-index of the modal */ + zIndex?: number; + /** Specifies whether overflow is visible in the modal */ + isOverflowVisible?: boolean; +} + function ModalDialog({ children, title, - isOpen, + isOpen = false, onClose, - size, - variant, - hasCloseButton, - closeLabel, - isFullscreenScroll, + size = 'md', + variant = 'default', + hasCloseButton = true, + closeLabel = MODAL_DIALOG_CLOSE_LABEL, + isFullscreenScroll = false, className, - isFullscreenOnMobile, - isBlocking, + isFullscreenOnMobile = false, + isBlocking = false, zIndex, - isOverflowVisible, -}) { + isOverflowVisible = true, +}: Props) { const isMobile = useMediaQuery({ query: '(max-width: 767.98px)' }); const showFullScreen = (isFullscreenOnMobile && isMobile); return ( @@ -126,20 +166,6 @@ ModalDialog.propTypes = { isOverflowVisible: PropTypes.bool, }; -ModalDialog.defaultProps = { - isOpen: false, - hasCloseButton: true, - size: 'md', - variant: 'default', - closeLabel: MODAL_DIALOG_CLOSE_LABEL, - className: undefined, - isFullscreenScroll: false, - isFullscreenOnMobile: false, - isBlocking: false, - zIndex: undefined, - isOverflowVisible: true, -}; - ModalDialog.Header = ModalDialogHeader; ModalDialog.Title = ModalDialogTitle; ModalDialog.Footer = ModalDialogFooter; diff --git a/src/Modal/ModalDialogHeader.jsx b/src/Modal/ModalDialogHeader.tsx similarity index 57% rename from src/Modal/ModalDialogHeader.jsx rename to src/Modal/ModalDialogHeader.tsx index 0a0ff4ca9a..9299db8295 100644 --- a/src/Modal/ModalDialogHeader.jsx +++ b/src/Modal/ModalDialogHeader.tsx @@ -1,21 +1,32 @@ +/* eslint-disable react/require-default-props */ import React from 'react'; import PropTypes from 'prop-types'; import classNames from 'classnames'; +import type { ComponentWithAsProp } from '../utils/types/bootstrap'; -function ModalDialogHeader({ - as, +export interface Props { + as?: string; + children: React.ReactNode; + className?: string; +} + +type HeaderType = ComponentWithAsProp<'div', Props>; + +const ModalDialogHeader: HeaderType = React.forwardRef(({ + as = 'div', children, ...props -}) { - return React.createElement( +}, ref) => ( + React.createElement( as, { ...props, + ref, className: classNames('pgn__modal-header', props.className), }, children, - ); -} + ) +)); ModalDialogHeader.propTypes = { /** Specifies the base element */ @@ -26,9 +37,4 @@ ModalDialogHeader.propTypes = { className: PropTypes.string, }; -ModalDialogHeader.defaultProps = { - as: 'div', - className: undefined, -}; - export default ModalDialogHeader; diff --git a/src/Modal/ModalLayer.jsx b/src/Modal/ModalLayer.tsx similarity index 79% rename from src/Modal/ModalLayer.jsx rename to src/Modal/ModalLayer.tsx index 1cc38cf0f4..dc74923403 100644 --- a/src/Modal/ModalLayer.jsx +++ b/src/Modal/ModalLayer.tsx @@ -6,7 +6,7 @@ import Portal from './Portal'; import { ModalContextProvider } from './ModalContext'; // istanbul ignore next -function ModalBackdrop({ onClick }) { +function ModalBackdrop({ onClick }: { onClick?: () => void }) { return ( // eslint-disable-next-line jsx-a11y/no-static-element-interactions
{children}
; } @@ -35,9 +31,18 @@ ModalContentContainer.propTypes = { children: PropTypes.node, }; -ModalContentContainer.defaultProps = { - children: null, -}; +interface Props { + /** Specifies the contents of the modal */ + children: React.ReactNode; + /** A callback function for when the modal is dismissed */ + onClose: () => void; + /** Is the modal dialog open or closed */ + isOpen: boolean; + /** Prevent clicking on the backdrop or pressing Esc to close the modal */ + isBlocking?: boolean; + /** Specifies the z-index of the modal */ + zIndex?: number; +} /** * The ModalLayer should be used for any component that wishes to engage the user @@ -46,8 +51,8 @@ ModalContentContainer.defaultProps = { * component is that if a modal object is visible then it is "enabled" */ function ModalLayer({ - children, onClose, isOpen, isBlocking, zIndex, -}) { + children, onClose, isOpen, isBlocking = false, zIndex, +}: Props) { useEffect(() => { if (isOpen) { document.body.classList.add('pgn__hidden-scroll-padding-right'); @@ -63,7 +68,7 @@ function ModalLayer({ return null; } - const handleClose = isBlocking ? null : onClose; + const handleClose = isBlocking ? undefined : onClose; return ( @@ -102,10 +107,5 @@ ModalLayer.propTypes = { zIndex: PropTypes.number, }; -ModalLayer.defaultProps = { - isBlocking: false, - zIndex: undefined, -}; - export { ModalBackdrop, ModalContentContainer }; export default ModalLayer; diff --git a/src/Modal/ModalPopup.jsx b/src/Modal/ModalPopup.jsx index 52bc3adb04..e6c36fd45e 100644 --- a/src/Modal/ModalPopup.jsx +++ b/src/Modal/ModalPopup.jsx @@ -34,6 +34,14 @@ function ModalPopup({ }, ]; + const handleOnClickOutside = (e) => { + if (e.type === 'touchstart') { + return; + } + + onClose(); + }; + return ( @@ -47,7 +55,7 @@ function ModalPopup({ scrollLock={false} enabled={isOpen} onEscapeKey={onClose} - onClickOutside={onClose} + onClickOutside={handleOnClickOutside} > {isOpen && (
diff --git a/src/Modal/Portal.jsx b/src/Modal/Portal.tsx similarity index 80% rename from src/Modal/Portal.jsx rename to src/Modal/Portal.tsx index cf30fa1c30..d06dc2aa5e 100644 --- a/src/Modal/Portal.jsx +++ b/src/Modal/Portal.tsx @@ -1,9 +1,16 @@ import React from 'react'; import ReactDOM from 'react-dom'; -import PropTypes from 'prop-types'; -class Portal extends React.Component { - constructor(props) { +interface Props { + children: React.ReactNode; +} + +class Portal extends React.Component { + private rootName: string; + + private rootElement: HTMLElement | null; + + constructor(props: Props) { super(props); this.rootName = 'paragon-portal-root'; // istanbul ignore if @@ -31,8 +38,4 @@ class Portal extends React.Component { } } -Portal.propTypes = { - children: PropTypes.node.isRequired, -}; - export default Portal; diff --git a/src/Modal/_ModalDialog.scss b/src/Modal/_ModalDialog.scss index 65ea4c519b..31ab661e2a 100644 --- a/src/Modal/_ModalDialog.scss +++ b/src/Modal/_ModalDialog.scss @@ -76,6 +76,10 @@ border-top: solid 1px $light; padding-top: $modal-footer-padding-y; } + + .pgn__modal-header { + border-radius: 0; + } } // Made specific due to a selector in Modal.scss diff --git a/src/Modal/tests/ModalDialog.test.jsx b/src/Modal/tests/ModalDialog.test.tsx similarity index 80% rename from src/Modal/tests/ModalDialog.test.jsx rename to src/Modal/tests/ModalDialog.test.tsx index 6ca06dbdcc..93759521eb 100644 --- a/src/Modal/tests/ModalDialog.test.jsx +++ b/src/Modal/tests/ModalDialog.test.tsx @@ -3,16 +3,6 @@ import { render, screen } from '@testing-library/react'; import ModalDialog from '../ModalDialog'; -jest.mock('../ModalLayer', () => function ModalLayerMock(props) { - // eslint-disable-next-line react/prop-types - const { children, ...otherProps } = props; - return ( - - {children} - - ); -}); - describe('ModalDialog', () => { it('renders a dialog with aria-label and content', () => { const onClose = jest.fn(); @@ -45,6 +35,22 @@ describe('ModalDialog', () => { expect(dialogNode).toHaveAttribute('aria-label', 'My dialog'); expect(screen.getByText('The content')).toBeInTheDocument(); }); + + it('is hidden by default', () => { + const onClose = jest.fn(); + render( + + The title +

The hidden content

+ Cancel +
, + ); + + expect(screen.queryByRole('dialog')).not.toBeInTheDocument(); + }); }); describe('ModalDialog with Hero', () => { diff --git a/src/Modal/tests/ModalLayer.test.jsx b/src/Modal/tests/ModalLayer.test.tsx similarity index 90% rename from src/Modal/tests/ModalLayer.test.jsx rename to src/Modal/tests/ModalLayer.test.tsx index bc93b66013..f316086cea 100644 --- a/src/Modal/tests/ModalLayer.test.jsx +++ b/src/Modal/tests/ModalLayer.test.tsx @@ -6,12 +6,11 @@ import userEvent from '@testing-library/user-event'; import ModalLayer from '../ModalLayer'; /* eslint-disable react/prop-types */ -jest.mock('../Portal', () => function PortalMock(props) { +jest.mock('../Portal', () => function PortalMock(props: any) { const { children, ...otherProps } = props; return ( - - {children} - + // @ts-ignore this fake element. (Property 'paragon-portal' does not exist on type 'JSX.IntrinsicElements') + {children} ); }); @@ -19,6 +18,7 @@ jest.mock('react-focus-on', () => ({ FocusOn: jest.fn().mockImplementation((props) => { const { children, ...otherProps } = props; return ( + // @ts-ignore this fake element. (Property 'focus-on' does not exist on type 'JSX.IntrinsicElements') {children} ); }), @@ -117,7 +117,7 @@ describe('', () => { ); expect(FocusOn).toHaveBeenCalledWith( expect.objectContaining({ - onEscapeKey: null, + onEscapeKey: undefined, }), // note: this 2nd function argument represents the // `refOrContext` (in this case, the context value diff --git a/src/Modal/tests/ModalPopupNoMock.test.jsx b/src/Modal/tests/ModalPopupNoMock.test.jsx new file mode 100644 index 0000000000..ac7ea3a4e8 --- /dev/null +++ b/src/Modal/tests/ModalPopupNoMock.test.jsx @@ -0,0 +1,29 @@ +import React from 'react'; +import { fireEvent, render } from '@testing-library/react'; +import userEvent from '@testing-library/user-event'; +import ModalPopup from '../ModalPopup'; + +describe('', () => { + const mockPositionRef = React.createRef(); + + describe('when isOpen', () => { + const isOpen = true; + const closeFn = jest.fn(); + + it('calls close on click events but not touchstart events', async () => { + render( + +
Modal Contents
+
, + ); + await fireEvent.touchStart(document.body); + expect(closeFn).not.toHaveBeenCalled(); + await userEvent.click(document.body); + expect(closeFn).toHaveBeenCalled(); + }); + }); +}); diff --git a/src/Modal/tests/Portal.test.jsx b/src/Modal/tests/Portal.test.tsx similarity index 83% rename from src/Modal/tests/Portal.test.jsx rename to src/Modal/tests/Portal.test.tsx index 0f3ec32d70..7cda3ac9e0 100644 --- a/src/Modal/tests/Portal.test.jsx +++ b/src/Modal/tests/Portal.test.tsx @@ -21,7 +21,7 @@ describe('', () => { const portalRoot = getPortalRoot(); expect(portalRoot).not.toBeNull(); - expect(portalRoot.children[0].id).toBe('portal-content-a'); + expect(portalRoot!.children[0].id).toBe('portal-content-a'); }); it('renders both contents in a single #paragon-portal-root div', () => { @@ -38,7 +38,7 @@ describe('', () => { const portalRoot = getPortalRoot(); expect(portalRoot).not.toBeNull(); - expect(portalRoot.children[0].id).toBe('portal-content-a'); - expect(portalRoot.children[1].id).toBe('portal-content-b'); + expect(portalRoot!.children[0].id).toBe('portal-content-a'); + expect(portalRoot!.children[1].id).toBe('portal-content-b'); }); }); diff --git a/src/Overlay/index.jsx b/src/Overlay/index.tsx similarity index 88% rename from src/Overlay/index.jsx rename to src/Overlay/index.tsx index 6e3fb7c83d..6c640f7239 100644 --- a/src/Overlay/index.jsx +++ b/src/Overlay/index.tsx @@ -1,10 +1,14 @@ import React from 'react'; -import BaseOverlay from 'react-bootstrap/Overlay'; -import BaseOverlayTrigger from 'react-bootstrap/OverlayTrigger'; +import BaseOverlay, { type OverlayProps, type Placement } from 'react-bootstrap/Overlay'; +import BaseOverlayTrigger, { type OverlayTriggerProps, type OverlayTriggerType } from 'react-bootstrap/OverlayTrigger'; import Fade from 'react-bootstrap/Fade'; import PropTypes from 'prop-types'; -const PLACEMENT_VARIANTS = [ +// Note: The only thing this file adds to the base component is propTypes validation. +// As more Paragon consumers adopt TypeScript, we could consider removing almost all of this code +// and just re-export the Overlay and OverlayTrigger components from react-bootstrap unmodified. + +const PLACEMENT_VARIANTS: Placement[] = [ 'auto-start', 'auto', 'auto-end', @@ -22,16 +26,16 @@ const PLACEMENT_VARIANTS = [ 'left-start', ]; -const TRIGGER_VARIANTS = [ +const TRIGGER_VARIANTS: OverlayTriggerType[] = [ 'hover', 'click', 'focus', ]; -function Overlay(props) { +function Overlay(props: OverlayProps) { return ; } -function OverlayTrigger(props) { +function OverlayTrigger(props: OverlayTriggerProps) { return ( {props.children} diff --git a/src/Tooltip/Tooltip.test.jsx b/src/Tooltip/Tooltip.test.tsx similarity index 100% rename from src/Tooltip/Tooltip.test.jsx rename to src/Tooltip/Tooltip.test.tsx diff --git a/src/Tooltip/index.jsx b/src/Tooltip/index.tsx similarity index 83% rename from src/Tooltip/index.jsx rename to src/Tooltip/index.tsx index 9b3733112e..9d9131b459 100644 --- a/src/Tooltip/index.jsx +++ b/src/Tooltip/index.tsx @@ -1,9 +1,15 @@ import React from 'react'; import PropTypes from 'prop-types'; import classNames from 'classnames'; -import BaseTooltip from 'react-bootstrap/Tooltip'; +import BaseTooltip, { type TooltipProps as BaseTooltipProps } from 'react-bootstrap/Tooltip'; +import { type Placement } from 'react-bootstrap/Overlay'; +import type { ComponentWithAsProp } from '../utils/types/bootstrap'; -const PLACEMENT_VARIANTS = [ +interface TooltipProps extends BaseTooltipProps { + variant?: 'light'; +} + +const PLACEMENT_VARIANTS: Placement[] = [ 'auto-start', 'auto', 'auto-end', @@ -21,7 +27,7 @@ const PLACEMENT_VARIANTS = [ 'left-start', ]; -const Tooltip = React.forwardRef(({ +const Tooltip: ComponentWithAsProp<'div', TooltipProps> = React.forwardRef(({ children, variant, ...props diff --git a/src/Truncate/Truncate.test.js b/src/Truncate/utils.test.js similarity index 100% rename from src/Truncate/Truncate.test.js rename to src/Truncate/utils.test.js diff --git a/src/hooks/useArrowKeyNavigation.jsx b/src/hooks/useArrowKeyNavigation.jsx index 69b3bb6cbc..bdfe258b2f 100644 --- a/src/hooks/useArrowKeyNavigation.jsx +++ b/src/hooks/useArrowKeyNavigation.jsx @@ -32,8 +32,7 @@ function handleArrowKey({ event, currentIndex, availableElements }) { [nextElement] = availableElements; } - // eslint-disable-next-line no-unused-expressions - nextElement && nextElement.focus(); + nextElement?.focus(); event.preventDefault(); } diff --git a/src/index.d.ts b/src/index.d.ts index 9d71f85477..217ee12a89 100644 --- a/src/index.d.ts +++ b/src/index.d.ts @@ -5,9 +5,19 @@ // Things that have types // // // // // // // // // // // // // // // // // // // // // // // // // // // export { default as Bubble } from './Bubble'; +export { default as Button, ButtonGroup, ButtonToolbar } from './Button'; export { default as Chip, CHIP_PGN_CLASS } from './Chip'; export { default as ChipCarousel } from './ChipCarousel'; +export { default as Container, ContainerSize } from './Container'; +export { default as Hyperlink, HYPER_LINK_EXTERNAL_LINK_ALT_TEXT, HYPER_LINK_EXTERNAL_LINK_TITLE } from './Hyperlink'; export { default as Icon } from './Icon'; +export { default as IconButton, IconButtonWithTooltip } from './IconButton'; +export { default as ModalContext } from './Modal/ModalContext'; +export { default as ModalDialog, MODAL_DIALOG_CLOSE_LABEL } from './Modal/ModalDialog'; +export { default as ModalLayer } from './Modal/ModalLayer'; +export { default as Overlay, OverlayTrigger } from './Overlay'; +export { default as Portal } from './Modal/Portal'; +export { default as Tooltip } from './Tooltip'; // // // // // // // // // // // // // // // // // // // // // // // // // // // // Things that don't have types @@ -20,7 +30,6 @@ export const Avatar: any; // from './Avatar'; export const AvatarButton: any; // from './AvatarButton'; export const Badge: any; // from './Badge'; export const Breadcrumb: any; // from './Breadcrumb'; -export const Button: any, ButtonGroup: any, ButtonToolbar: any; // from './Button'; export const Card: any, CardColumns: any, @@ -34,10 +43,11 @@ export const export const Carousel: any, CarouselItem: any, CAROUSEL_NEXT_LABEL_TEXT: any, CAROUSEL_PREV_LABEL_TEXT: any; // from './Carousel'; +/** @deprecated Replaced by `Form.Checkbox`. */ export const CheckBox: any; // from './CheckBox'; +/** @deprecated Replaced by `Form.Checkbox` and `Form.CheckboxSet`. */ export const CheckBoxGroup: any; // from './CheckBoxGroup'; export const CloseButton: any; // from './CloseButton'; -export const Container: any; // from './Container'; export const Layout: any, Col: any, Row: any; // from './Layout'; export const Collapse: any; // from './Collapse'; export const Collapsible: any; // from './Collapsible'; @@ -49,6 +59,7 @@ export const SplitButton: any; // from './Dropdown'; export const Fade: any; // from './Fade'; +/** @deprecated */ export const Fieldset: any; // from './Fieldset'; export const Form: any, @@ -72,31 +83,31 @@ export const FormAutosuggestOption: any, InputGroup: any; // from './Form'; -export const Hyperlink: any, HYPER_LINK_EXTERNAL_LINK_ALT_TEXT: string, HYPER_LINK_EXTERNAL_LINK_TITLE: string; // from './Hyperlink'; -export const IconButton: any, IconButtonWithTooltip: any; // from './IconButton'; export const IconButtonToggle: any; // from './IconButtonToggle'; +/** @deprecated Replaced by `Form.Control`. */ export const Input: any; // from './Input'; +/** @deprecated Replaced by `Form.Control`. */ export const InputSelect: any; // from './InputSelect'; +/** @deprecated Replaced by `Form.Control`. */ export const InputText: any; // from './InputText'; export const Image: any, Figure; // from './Image'; +/** @deprecated */ export const ListBox: any; // from './ListBox'; +/** @deprecated */ export const ListBoxOption: any; // from './ListBoxOption'; export const MailtoLink: any, MAIL_TO_LINK_EXTERNAL_LINK_ALTERNATIVE_TEXT: string, MAIL_TO_LINK_EXTERNAL_LINK_TITLE: string; // from './MailtoLink'; export const Media: any; // from './Media'; export const Menu: any; // from './Menu'; export const MenuItem: any; // from './Menu/MenuItem'; export const SelectMenu: any, SELECT_MENU_DEFAULT_MESSAGE: string; // from './Menu/SelectMenu'; +/** @deprecated Use `ModalDialog` instead. */ export const Modal: any; // from './Modal'; export const ModalCloseButton: any; // from './Modal/ModalCloseButton'; export const FullscreenModal: any, FULLSCREEN_MODAL_CLOSE_LABEL: string; // from './Modal/FullscreenModal'; export const MarketingModal: any; // from './Modal/MarketingModal'; export const StandardModal: any, STANDARD_MODAL_CLOSE_LABEL: string; // from './Modal/StandardModal'; export const AlertModal: any; // from './Modal/AlertModal'; -export const ModalLayer: any; // from './Modal/ModalLayer'; -export const ModalDialog: any, MODAL_DIALOG_CLOSE_LABEL: string; // from './Modal/ModalDialog'; export const ModalPopup: any; // from './Modal/ModalPopup'; -export const ModalContext: any; // from './Modal/ModalContext'; -export const Portal: any; // from './Modal/Portal'; export const PopperElement: any; // from './Modal/PopperElement'; export const @@ -106,7 +117,6 @@ export const NavLink: any; // from './Nav'; export const Navbar: any, NavbarBrand: any, NAVBAR_LABEL: string; // from './Navbar'; -export const Overlay: any, OverlayTrigger: any; // from './Overlay'; export const PageBanner: any, PAGE_BANNER_DISMISS_ALT_TEXT: string; // from './PageBanner'; export const Pagination: any, @@ -121,6 +131,7 @@ export const export const Popover: any, PopoverTitle: any, PopoverContent: any; // from './Popover'; export const ProgressBar: any; // from './ProgressBar'; export const ProductTour: any; // from './ProductTour'; +/** @deprecated Replaced by `Form.Radio` and `Form.RadioSet`. */ export const RadioButtonGroup: any, RadioButton: any; // from './RadioButtonGroup'; export const ResponsiveEmbed: any; // from './ResponsiveEmbed'; export const @@ -134,7 +145,9 @@ export const Sheet: any; // from './Sheet'; export const Spinner: any; // from './Spinner'; export const Stepper: any; // from './Stepper'; export const StatefulButton: any; // from './StatefulButton'; +/** @deprecated Replaced by `Alert`. */ export const StatusAlert: any; // from './StatusAlert'; +/** @deprecated Replaced by `DataTable`. */ export const Table: any; // from './Table'; export const Tabs: any, @@ -143,9 +156,10 @@ export const TabContent: any, TabPane: any; // from './Tabs'; +/** @deprecated Replaced by `Form.Control`. */ export const TextArea: any; // from './TextArea'; export const Toast: any, TOAST_CLOSE_LABEL_TEXT: string, TOAST_DELAY: number; // from './Toast'; -export const Tooltip: any; // from './Tooltip'; +/** @deprecated Replaced by `Form.Group`. */ export const ValidationFormGroup: any; // from './ValidationFormGroup'; export const TransitionReplace: any; // from './TransitionReplace'; export const ValidationMessage: any; // from './ValidationMessage'; diff --git a/src/index.js b/src/index.js index 6e8b9294c5..59b0b28cd2 100644 --- a/src/index.js +++ b/src/index.js @@ -1,13 +1,23 @@ -// To keep this file in sync with the .d.ts file, it's in the same order -// and each line number is the same +// Keep this file in sync with the .d.ts file (manually). It's in the same order +// and each line number is the same, to make it easier. // // // // // // // // // // // // // // // // // // // // // // // // // // // // Things that have types // // // // // // // // // // // // // // // // // // // // // // // // // // // export { default as Bubble } from './Bubble'; +export { default as Button, ButtonGroup, ButtonToolbar } from './Button'; export { default as Chip, CHIP_PGN_CLASS } from './Chip'; export { default as ChipCarousel } from './ChipCarousel'; +export { default as Container } from './Container'; +export { default as Hyperlink, HYPER_LINK_EXTERNAL_LINK_ALT_TEXT, HYPER_LINK_EXTERNAL_LINK_TITLE } from './Hyperlink'; export { default as Icon } from './Icon'; +export { default as IconButton, IconButtonWithTooltip } from './IconButton'; +export { default as ModalContext } from './Modal/ModalContext'; +export { default as ModalDialog, MODAL_DIALOG_CLOSE_LABEL } from './Modal/ModalDialog'; +export { default as ModalLayer } from './Modal/ModalLayer'; +export { default as Overlay, OverlayTrigger } from './Overlay'; +export { default as Portal } from './Modal/Portal'; +export { default as Tooltip } from './Tooltip'; // // // // // // // // // // // // // // // // // // // // // // // // // // // // Things that don't have types @@ -20,7 +30,6 @@ export { default as Avatar } from './Avatar'; export { default as AvatarButton } from './AvatarButton'; export { default as Badge } from './Badge'; export { default as Breadcrumb } from './Breadcrumb'; -export { default as Button, ButtonGroup, ButtonToolbar } from './Button'; export { default as Card, CardColumns, @@ -34,10 +43,11 @@ export { export { default as Carousel, CarouselItem, CAROUSEL_NEXT_LABEL_TEXT, CAROUSEL_PREV_LABEL_TEXT, } from './Carousel'; +/** @deprecated Replaced by `Form.Checkbox`. */ export { default as CheckBox } from './CheckBox'; +/** @deprecated Replaced by `Form.Checkbox` and `Form.CheckboxSet`. */ export { default as CheckBoxGroup } from './CheckBoxGroup'; export { default as CloseButton } from './CloseButton'; -export { default as Container } from './Container'; export { default as Layout, Col, Row } from './Layout'; export { default as Collapse } from './Collapse'; export { default as Collapsible } from './Collapsible'; @@ -49,6 +59,7 @@ export { SplitButton, } from './Dropdown'; export { default as Fade } from './Fade'; +/** @deprecated */ export { default as Fieldset } from './Fieldset'; export { default as Form, @@ -72,31 +83,31 @@ export { FormAutosuggestOption, InputGroup, } from './Form'; -export { default as Hyperlink, HYPER_LINK_EXTERNAL_LINK_ALT_TEXT, HYPER_LINK_EXTERNAL_LINK_TITLE } from './Hyperlink'; -export { default as IconButton, IconButtonWithTooltip } from './IconButton'; export { default as IconButtonToggle } from './IconButtonToggle'; +/** @deprecated Replaced by `Form.Control`. */ export { default as Input } from './Input'; +/** @deprecated Replaced by `Form.Control`. */ export { default as InputSelect } from './InputSelect'; +/** @deprecated Replaced by `Form.Control`. */ export { default as InputText } from './InputText'; export { default as Image, Figure } from './Image'; +/** @deprecated */ export { default as ListBox } from './ListBox'; +/** @deprecated */ export { default as ListBoxOption } from './ListBoxOption'; export { default as MailtoLink, MAIL_TO_LINK_EXTERNAL_LINK_ALTERNATIVE_TEXT, MAIL_TO_LINK_EXTERNAL_LINK_TITLE } from './MailtoLink'; export { default as Media } from './Media'; export { default as Menu } from './Menu'; export { default as MenuItem } from './Menu/MenuItem'; export { default as SelectMenu, SELECT_MENU_DEFAULT_MESSAGE } from './Menu/SelectMenu'; +/** @deprecated Use `ModalDialog` instead. */ export { default as Modal } from './Modal'; export { default as ModalCloseButton } from './Modal/ModalCloseButton'; export { default as FullscreenModal, FULLSCREEN_MODAL_CLOSE_LABEL } from './Modal/FullscreenModal'; export { default as MarketingModal } from './Modal/MarketingModal'; export { default as StandardModal, STANDARD_MODAL_CLOSE_LABEL } from './Modal/StandardModal'; export { default as AlertModal } from './Modal/AlertModal'; -export { default as ModalLayer } from './Modal/ModalLayer'; -export { default as ModalDialog, MODAL_DIALOG_CLOSE_LABEL } from './Modal/ModalDialog'; export { default as ModalPopup } from './Modal/ModalPopup'; -export { default as ModalContext } from './Modal/ModalContext'; -export { default as Portal } from './Modal/Portal'; export { default as PopperElement } from './Modal/PopperElement'; export { @@ -106,7 +117,6 @@ export { NavLink, } from './Nav'; export { default as Navbar, NavbarBrand, NAVBAR_LABEL } from './Navbar'; -export { default as Overlay, OverlayTrigger } from './Overlay'; export { default as PageBanner, PAGE_BANNER_DISMISS_ALT_TEXT } from './PageBanner'; export { default as Pagination, @@ -121,6 +131,7 @@ export { export { default as Popover, PopoverTitle, PopoverContent } from './Popover'; export { default as ProgressBar } from './ProgressBar'; export { default as ProductTour } from './ProductTour'; +/** @deprecated Replaced by `Form.Radio` and `Form.RadioSet`. */ export { default as RadioButtonGroup, RadioButton } from './RadioButtonGroup'; export { default as ResponsiveEmbed } from './ResponsiveEmbed'; export { @@ -134,7 +145,9 @@ export { default as Sheet } from './Sheet'; export { default as Spinner } from './Spinner'; export { default as Stepper } from './Stepper'; export { default as StatefulButton } from './StatefulButton'; +/** @deprecated Replaced by `Alert`. */ export { default as StatusAlert } from './StatusAlert'; +/** @deprecated Replaced by `DataTable`. */ export { default as Table } from './Table'; export { default as Tabs, @@ -143,9 +156,10 @@ export { TabContent, TabPane, } from './Tabs'; +/** @deprecated Replaced by `Form.Control`. */ export { default as TextArea } from './TextArea'; export { default as Toast, TOAST_CLOSE_LABEL_TEXT, TOAST_DELAY } from './Toast'; -export { default as Tooltip } from './Tooltip'; +/** @deprecated Replaced by `Form.Group`. */ export { default as ValidationFormGroup } from './ValidationFormGroup'; export { default as TransitionReplace } from './TransitionReplace'; export { default as ValidationMessage } from './ValidationMessage'; diff --git a/src/setupTest.js b/src/setupTest.ts similarity index 66% rename from src/setupTest.js rename to src/setupTest.ts index 525b689e39..2a528b828c 100644 --- a/src/setupTest.js +++ b/src/setupTest.ts @@ -1,3 +1,4 @@ +/* eslint-disable import/no-extraneous-dependencies */ import 'regenerator-runtime/runtime'; import '@testing-library/jest-dom'; @@ -20,6 +21,6 @@ class ResizeObserver { window.ResizeObserver = ResizeObserver; -window.crypto = { - getRandomValues: arr => crypto.randomBytes(arr.length), +(window as any).crypto = { + getRandomValues: (arr: any) => crypto.randomBytes(arr.length), }; diff --git a/src/utils/types/bootstrap.test.tsx b/src/utils/types/bootstrap.test.tsx new file mode 100644 index 0000000000..0346c5d2b4 --- /dev/null +++ b/src/utils/types/bootstrap.test.tsx @@ -0,0 +1,86 @@ +/* eslint-disable @typescript-eslint/no-unused-vars */ +import React from 'react'; +import type { BsPropsWithAs, ComponentWithAsProp } from './bootstrap'; + +// Note: these are type-only tests. They don't actually do much at runtime; the important checks are at transpile time. + +describe('BsPropsWithAs', () => { + interface Props extends BsPropsWithAs { + otherProp?: number; + } + + it('defines optional bsPrefix, className, and as but no other props', () => { + const checkProps = (_props: Props) => {}; + // These are all valid props per the prop definition: + checkProps({ }); + checkProps({ bsPrefix: 'bs' }); + checkProps({ className: 'foo bar' }); + checkProps({ as: 'tr' }); + checkProps({ className: 'foo bar', as: 'button', otherProp: 15 }); + // But these are all invalid: + // @ts-expect-error + checkProps({ newProp: 10 }); + // @ts-expect-error + checkProps({ onClick: () => {} }); + // @ts-expect-error + checkProps({ id: 'id' }); + // @ts-expect-error + checkProps({ children: }); + }); +}); + +describe('ComponentWithAsProp', () => { + interface MyProps extends BsPropsWithAs { + customProp?: string; + } + const MyComponent: ComponentWithAsProp<'div', MyProps> = ( + React.forwardRef( + ({ as: Inner = 'div', ...props }, ref) => , + ) + ); + + // eslint-disable-next-line react/function-component-definition + const CustomComponent: React.FC<{ requiredProp: string }> = () => ; + + it('is defined to wrap a
by default, and accepts related props', () => { + // This is valid - by default it is a DIV so accepts props and ref related to DIV: + const divClick: React.MouseEventHandler = () => {}; + const divRef: React.RefObject = { current: null }; + const valid = ; + }); + + it('is defined to wrap a
by default, and rejects unrelated props', () => { + const btnRef: React.RefObject = { current: null }; + // @ts-expect-error because the ref is to a