diff --git a/README.md b/README.md index 3e9a761dcd..8e44ecf331 100644 --- a/README.md +++ b/README.md @@ -55,6 +55,16 @@ Usage on with `@edx/brand`: Note that including fonts will affect performance. In some applications may choose not to load the custom font to keep it highly performant. +## Paragon CLI + +The Paragon CLI (Command Line Interface) is a tool that provides various utility commands to automate actions within the Open edX environment. + +### Available Commands + +- `paragon install-theme [theme]`: Installs the specific @edx/brand package. + +Use `paragon help` to see more information. + ## Getting Help Please reach out to the Paragon Working Group (PWG): diff --git a/bin/paragon-scripts.js b/bin/paragon-scripts.js index acf1252236..47ef258f0b 100755 --- a/bin/paragon-scripts.js +++ b/bin/paragon-scripts.js @@ -1,10 +1,52 @@ #!/usr/bin/env node const chalk = require('chalk'); const themeCommand = require('../lib/install-theme'); +const helpCommand = require('../lib/help'); + +const HELP_COMMAND = 'help'; -// command: executor function const COMMANDS = { - 'install-theme': themeCommand, + /** + *'command-name': { + * executor: executorFunc, + * + * ********** Block for help command start ********** + * description: 'Command description', + * parameters: [ + * { + * name: 'paramName', + * description: 'paramDescription', + * defaultValue: 'paramDefaultValue', + * required: true/false, + * }, + * ... + * ], + * options: [ + * { + * name: '--optionName', + * description: 'optionDescription', + * }, + * ... + * ], + * ********** Block for help command end ********** + *}, + */ + 'install-theme': { + executor: themeCommand, + description: 'Installs the specific @edx/brand package.', + parameters: [ + { + name: 'theme', + description: 'The @edx/brand package to install.', + defaultValue: '@edx/brand-openedx@latest', + required: false, + }, + ], + }, + help: { + executor: helpCommand, + description: 'Displays help for available commands.', + }, }; (async () => { @@ -13,12 +55,17 @@ const COMMANDS = { if (!executor) { // eslint-disable-next-line no-console - console.log(chalk.red.bold('Unknown command. Usage: paragon ')); + console.log(chalk.red.bold('Unknown command. Usage: paragon .')); + return; + } + + if (command === HELP_COMMAND) { + helpCommand(COMMANDS); return; } try { - await executor(); + await executor.executor(); } catch (error) { // eslint-disable-next-line no-console console.error(chalk.red.bold('An error occurred:', error.message)); diff --git a/dependent-usage.json b/dependent-usage.json index 266cf25340..e91a0999d7 100644 --- a/dependent-usage.json +++ b/dependent-usage.json @@ -1,8 +1,8 @@ { - "lastModified": 1692626909065, + "lastModified": 1695305303661, "projectUsages": [ { - "version": "21.0.1", + "version": "21.2.0", "name": "edx-credentials", "repository": { "type": "git", @@ -679,19 +679,19 @@ "filePath": "src/account-settings/AccountSettingsPage.jsx", "line": 207, "column": 8, - "index": 7443 + "index": 7469 }, { "filePath": "src/account-settings/AccountSettingsPage.jsx", "line": 229, "column": 8, - "index": 8157 + "index": 8183 }, { "filePath": "src/account-settings/AccountSettingsPage.jsx", "line": 322, "column": 4, - "index": 11487 + "index": 11513 }, { "filePath": "src/account-settings/name-change/NameChange.jsx", @@ -729,7 +729,7 @@ "filePath": "src/account-settings/AccountSettingsPage.jsx", "line": 237, "column": 16, - "index": 8636 + "index": 8662 }, { "filePath": "src/account-settings/BetaLanguageBanner.jsx", @@ -753,13 +753,13 @@ "filePath": "src/account-settings/delete-account/BeforeProceedingBanner.jsx", "line": 29, "column": 12, - "index": 1159 + "index": 1179 }, { "filePath": "src/account-settings/delete-account/DeleteAccount.jsx", - "line": 101, + "line": 102, "column": 10, - "index": 3007 + "index": 3093 }, { "filePath": "src/account-settings/delete-account/PrintingInstructions.jsx", @@ -796,6 +796,12 @@ "line": 53, "column": 14, "index": 2073 + }, + { + "filePath": "src/notification-preferences/NotificationPreferences.jsx", + "line": 66, + "column": 8, + "index": 2342 } ], "CheckCircle": [ @@ -803,19 +809,19 @@ "filePath": "src/account-settings/AccountSettingsPage.jsx", "line": 283, "column": 14, - "index": 10009 + "index": 10035 }, { "filePath": "src/account-settings/AccountSettingsPage.jsx", "line": 383, "column": 27, - "index": 13365 + "index": 13391 }, { "filePath": "src/account-settings/AccountSettingsPage.jsx", "line": 513, "column": 20, - "index": 17715 + "index": 17741 } ], "Error": [ @@ -823,7 +829,7 @@ "filePath": "src/account-settings/AccountSettingsPage.jsx", "line": 298, "column": 14, - "index": 10575 + "index": 10601 } ], "Button": [ @@ -831,7 +837,7 @@ "filePath": "src/account-settings/AccountSettingsPage.jsx", "line": 307, "column": 16, - "index": 11004 + "index": 11030 }, { "filePath": "src/account-settings/BetaLanguageBanner.jsx", @@ -859,9 +865,9 @@ }, { "filePath": "src/account-settings/delete-account/DeleteAccount.jsx", - "line": 106, + "line": 107, "column": 10, - "index": 3273 + "index": 3359 }, { "filePath": "src/account-settings/DOBForm.jsx", @@ -949,9 +955,9 @@ }, { "filePath": "src/notification-preferences/NotificationCourses.jsx", - "line": 73, + "line": 74, "column": 8, - "index": 2380 + "index": 2425 } ], "WarningFilled": [ @@ -959,13 +965,13 @@ "filePath": "src/account-settings/AccountSettingsPage.jsx", "line": 324, "column": 12, - "index": 11530 + "index": 11556 }, { "filePath": "src/account-settings/AccountSettingsPage.jsx", "line": 385, "column": 27, - "index": 13509 + "index": 13535 } ], "Alert.Heading": [ @@ -973,7 +979,7 @@ "filePath": "src/account-settings/AccountSettingsPage.jsx", "line": 326, "column": 6, - "index": 11557 + "index": 11583 }, { "filePath": "src/account-settings/OneTimeDismissibleAlert.jsx", @@ -987,37 +993,37 @@ "filePath": "src/account-settings/AccountSettingsPage.jsx", "line": 383, "column": 16, - "index": 13354 + "index": 13380 }, { "filePath": "src/account-settings/AccountSettingsPage.jsx", "line": 385, "column": 16, - "index": 13498 + "index": 13524 }, { "filePath": "src/account-settings/JumpNav.jsx", - "line": 85, + "line": 88, "column": 16, - "index": 3124 + "index": 3207 }, { "filePath": "src/notification-preferences/NotificationCourses.jsx", - "line": 56, + "line": 57, "column": 16, - "index": 1942 + "index": 1987 }, { "filePath": "src/notification-preferences/NotificationPreferenceRow.jsx", "line": 56, "column": 14, - "index": 1936 + "index": 1938 }, { "filePath": "src/notification-preferences/NotificationPreferences.jsx", - "line": 65, + "line": 78, "column": 12, - "index": 2323 + "index": 2836 } ], "Form.Checkbox": [ @@ -1607,9 +1613,9 @@ "OpenInNew": [ { "filePath": "src/account-settings/JumpNav.jsx", - "line": 85, + "line": 88, "column": 72, - "index": 3180 + "index": 3263 } ], "Col": [ @@ -1651,15 +1657,15 @@ }, { "filePath": "src/notification-preferences/NotificationCourses.jsx", - "line": 64, + "line": 65, "column": 10, - "index": 2147 + "index": 2192 }, { "filePath": "src/notification-preferences/NotificationPreferences.jsx", - "line": 74, + "line": 87, "column": 10, - "index": 2636 + "index": 3149 } ], "Collapsible": [ @@ -1705,17 +1711,17 @@ }, { "filePath": "src/notification-preferences/NotificationPreferences.jsx", - "line": 58, + "line": 60, "column": 4, - "index": 2020 + "index": 2034 } ], "ArrowForwardIos": [ { "filePath": "src/notification-preferences/NotificationCourses.jsx", - "line": 56, + "line": 57, "column": 27, - "index": 1953 + "index": 1998 } ], "Collapsible.Advanced": [ @@ -1755,7 +1761,7 @@ "filePath": "src/notification-preferences/NotificationPreferenceRow.jsx", "line": 50, "column": 14, - "index": 1771 + "index": 1773 } ], "InfoOutline": [ @@ -1763,15 +1769,15 @@ "filePath": "src/notification-preferences/NotificationPreferenceRow.jsx", "line": 56, "column": 25, - "index": 1947 + "index": 1949 } ], "ArrowBack": [ { "filePath": "src/notification-preferences/NotificationPreferences.jsx", - "line": 65, + "line": 78, "column": 52, - "index": 2363 + "index": 2876 } ] } @@ -2024,10 +2030,16 @@ "index": 5248 }, { - "filePath": "src/components/learner-credit-management/BudgetCard.jsx", + "filePath": "src/components/learner-credit-management/BudgetCard-V2.jsx", "line": 53, "column": 4, - "index": 1531 + "index": 1490 + }, + { + "filePath": "src/components/learner-credit-management/BudgetCard.jsx", + "line": 54, + "column": 4, + "index": 1586 }, { "filePath": "src/components/NewFeatureAlertBrowseAndRequest/index.jsx", @@ -2077,6 +2089,30 @@ "column": 10, "index": 1284 }, + { + "filePath": "src/components/settings/SettingsApiCredentialsTab/CopyButton.jsx", + "line": 28, + "column": 6, + "index": 790 + }, + { + "filePath": "src/components/settings/SettingsApiCredentialsTab/RegenerateCredentialWarningModal.jsx", + "line": 41, + "column": 6, + "index": 1164 + }, + { + "filePath": "src/components/settings/SettingsApiCredentialsTab/RegenerateCredentialWarningModal.jsx", + "line": 79, + "column": 12, + "index": 2358 + }, + { + "filePath": "src/components/settings/SettingsApiCredentialsTab/ZeroStateCard.jsx", + "line": 71, + "column": 8, + "index": 2552 + }, { "filePath": "src/components/settings/SettingsAppearanceTab/CustomThemeModal.jsx", "line": 145, @@ -2193,15 +2229,15 @@ }, { "filePath": "src/components/settings/SettingsLMSTab/index.jsx", - "line": 161, + "line": 158, "column": 12, - "index": 6175 + "index": 6119 }, { "filePath": "src/components/settings/SettingsLMSTab/index.jsx", - "line": 180, + "line": 177, "column": 14, - "index": 6744 + "index": 6688 }, { "filePath": "src/components/settings/SettingsLMSTab/NoConfigCard.jsx", @@ -2471,9 +2507,9 @@ }, { "filePath": "src/components/settings/SettingsLMSTab/index.jsx", - "line": 200, + "line": 197, "column": 55, - "index": 7369 + "index": 7313 }, { "filePath": "src/components/settings/SettingsSSOTab/index.jsx", @@ -2889,6 +2925,12 @@ "column": 6, "index": 412 }, + { + "filePath": "src/components/settings/SettingsApiCredentialsTab/APICredentialsPage.jsx", + "line": 57, + "column": 8, + "index": 1782 + }, { "filePath": "src/components/settings/SettingsAppearanceTab/CustomThemeModal.jsx", "line": 84, @@ -3163,9 +3205,9 @@ }, { "filePath": "src/components/settings/SettingsLMSTab/index.jsx", - "line": 177, + "line": 174, "column": 16, - "index": 6639 + "index": 6583 }, { "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", @@ -3397,6 +3439,18 @@ "column": 20, "index": 5007 }, + { + "filePath": "src/components/settings/SettingsApiCredentialsTab/RegenerateCredentialWarningModal.jsx", + "line": 60, + "column": 14, + "index": 1627 + }, + { + "filePath": "src/components/settings/SettingsApiCredentialsTab/ZeroStateCard.jsx", + "line": 67, + "column": 10, + "index": 2441 + }, { "filePath": "src/components/settings/SettingsAppearanceTab/CustomThemeModal.jsx", "line": 131, @@ -3825,6 +3879,12 @@ "column": 8, "index": 1733 }, + { + "filePath": "src/components/settings/SettingsApiCredentialsTab/FailedAlert.jsx", + "line": 6, + "column": 2, + "index": 167 + }, { "filePath": "src/components/settings/SettingsAppearanceTab/index.jsx", "line": 97, @@ -3833,9 +3893,9 @@ }, { "filePath": "src/components/settings/SettingsLMSTab/index.jsx", - "line": 174, + "line": 171, "column": 8, - "index": 6538 + "index": 6482 }, { "filePath": "src/components/settings/SettingsSSOTab/index.jsx", @@ -3851,9 +3911,9 @@ }, { "filePath": "src/components/settings/SettingsSSOTab/NewSSOConfigForm.jsx", - "line": 18, + "line": 21, "column": 6, - "index": 676 + "index": 875 }, { "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", @@ -4007,6 +4067,18 @@ "column": 14, "index": 13962 }, + { + "filePath": "src/components/settings/SettingsApiCredentialsTab/FailedAlert.jsx", + "line": 6, + "column": 32, + "index": 197 + }, + { + "filePath": "src/components/settings/SettingsApiCredentialsTab/ZeroStateCard.jsx", + "line": 67, + "column": 44, + "index": 2475 + }, { "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", "line": 99, @@ -4195,6 +4267,12 @@ "column": 10, "index": 1792 }, + { + "filePath": "src/components/settings/SettingsApiCredentialsTab/FailedAlert.jsx", + "line": 7, + "column": 4, + "index": 209 + }, { "filePath": "src/components/settings/SettingsAppearanceTab/index.jsx", "line": 105, @@ -4203,15 +4281,15 @@ }, { "filePath": "src/components/settings/SettingsLMSTab/index.jsx", - "line": 184, + "line": 181, "column": 10, - "index": 6829 + "index": 6773 }, { "filePath": "src/components/settings/SettingsSSOTab/NewSSOConfigForm.jsx", - "line": 32, + "line": 35, "column": 8, - "index": 1004 + "index": 1203 }, { "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", @@ -4417,9 +4495,9 @@ }, { "filePath": "src/components/learner-credit-management/LearnerCreditAllocationTable.jsx", - "line": 26, + "line": 32, "column": 4, - "index": 748 + "index": 899 }, { "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessLinkManagement.jsx", @@ -4485,9 +4563,9 @@ }, { "filePath": "src/components/learner-credit-management/LearnerCreditAllocationTable.jsx", - "line": 87, + "line": 106, "column": 17, - "index": 2629 + "index": 3133 }, { "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessLinkManagement.jsx", @@ -4563,6 +4641,18 @@ "column": 2, "index": 105 }, + { + "filePath": "src/components/settings/SettingsApiCredentialsTab/CopiedToast.jsx", + "line": 6, + "column": 2, + "index": 152 + }, + { + "filePath": "src/components/settings/SettingsApiCredentialsTab/index.jsx", + "line": 55, + "column": 12, + "index": 2010 + }, { "filePath": "src/components/settings/SettingsAppearanceTab/index.jsx", "line": 136, @@ -4583,9 +4673,9 @@ }, { "filePath": "src/components/settings/SettingsLMSTab/index.jsx", - "line": 223, + "line": 220, "column": 8, - "index": 8157 + "index": 8101 }, { "filePath": "src/components/settings/SettingsSSOTab/index.jsx", @@ -4674,28 +4764,40 @@ "index": 1438 }, { - "filePath": "src/components/learner-credit-management/BudgetCard.jsx", + "filePath": "src/components/learner-credit-management/BudgetCard-V2.jsx", "line": 88, "column": 6, - "index": 2269 + "index": 2236 }, { - "filePath": "src/components/learner-credit-management/BudgetCard.jsx", + "filePath": "src/components/learner-credit-management/BudgetCard-V2.jsx", "line": 115, "column": 6, - "index": 3146 + "index": 3113 + }, + { + "filePath": "src/components/learner-credit-management/BudgetCard.jsx", + "line": 89, + "column": 6, + "index": 2324 + }, + { + "filePath": "src/components/learner-credit-management/BudgetCard.jsx", + "line": 116, + "column": 6, + "index": 3201 }, { "filePath": "src/components/learner-credit-management/MultipleBudgetsPage.jsx", - "line": 39, + "line": 40, "column": 12, - "index": 961 + "index": 984 }, { "filePath": "src/components/learner-credit-management/MultipleBudgetsPicker.jsx", - "line": 17, + "line": 18, "column": 4, - "index": 260 + "index": 286 }, { "filePath": "src/components/settings/SettingsAccessTab/index.jsx", @@ -4796,22 +4898,40 @@ "index": 1467 }, { - "filePath": "src/components/learner-credit-management/BudgetCard.jsx", + "filePath": "src/components/learner-credit-management/BudgetCard-V2.jsx", "line": 89, "column": 8, - "index": 2341 + "index": 2308 }, { - "filePath": "src/components/learner-credit-management/BudgetCard.jsx", + "filePath": "src/components/learner-credit-management/BudgetCard-V2.jsx", "line": 93, "column": 8, - "index": 2517 + "index": 2484 }, { - "filePath": "src/components/learner-credit-management/BudgetCard.jsx", + "filePath": "src/components/learner-credit-management/BudgetCard-V2.jsx", "line": 116, "column": 8, - "index": 3176 + "index": 3143 + }, + { + "filePath": "src/components/learner-credit-management/BudgetCard.jsx", + "line": 90, + "column": 8, + "index": 2396 + }, + { + "filePath": "src/components/learner-credit-management/BudgetCard.jsx", + "line": 94, + "column": 8, + "index": 2572 + }, + { + "filePath": "src/components/learner-credit-management/BudgetCard.jsx", + "line": 117, + "column": 8, + "index": 3231 }, { "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", @@ -4863,15 +4983,15 @@ }, { "filePath": "src/components/learner-credit-management/MultipleBudgetsPage.jsx", - "line": 40, + "line": 41, "column": 14, - "index": 981 + "index": 1004 }, { "filePath": "src/components/learner-credit-management/MultipleBudgetsPicker.jsx", - "line": 18, + "line": 19, "column": 6, - "index": 272 + "index": 298 }, { "filePath": "src/components/settings/SettingsAccessTab/index.jsx", @@ -5071,6 +5191,18 @@ "column": 8, "index": 1262 }, + { + "filePath": "src/components/settings/SettingsApiCredentialsTab/index.jsx", + "line": 41, + "column": 10, + "index": 1482 + }, + { + "filePath": "src/components/settings/SettingsApiCredentialsTab/RegenerateCredentialWarningModal.jsx", + "line": 75, + "column": 10, + "index": 2217 + }, { "filePath": "src/components/settings/SettingsAppearanceTab/CustomThemeModal.jsx", "line": 144, @@ -5325,6 +5457,12 @@ "column": 2, "index": 537 }, + { + "filePath": "src/components/settings/SettingsApiCredentialsTab/RegenerateCredentialWarningModal.jsx", + "line": 48, + "column": 6, + "index": 1320 + }, { "filePath": "src/components/settings/SettingsAppearanceTab/CustomThemeModal.jsx", "line": 66, @@ -5393,6 +5531,12 @@ "column": 4, "index": 667 }, + { + "filePath": "src/components/settings/SettingsApiCredentialsTab/RegenerateCredentialWarningModal.jsx", + "line": 57, + "column": 8, + "index": 1525 + }, { "filePath": "src/components/settings/SettingsAppearanceTab/CustomThemeModal.jsx", "line": 74, @@ -5455,6 +5599,12 @@ "column": 6, "index": 694 }, + { + "filePath": "src/components/settings/SettingsApiCredentialsTab/RegenerateCredentialWarningModal.jsx", + "line": 58, + "column": 10, + "index": 1556 + }, { "filePath": "src/components/settings/SettingsAppearanceTab/CustomThemeModal.jsx", "line": 75, @@ -5517,6 +5667,12 @@ "column": 4, "index": 1066 }, + { + "filePath": "src/components/settings/SettingsApiCredentialsTab/RegenerateCredentialWarningModal.jsx", + "line": 65, + "column": 8, + "index": 1838 + }, { "filePath": "src/components/settings/SettingsAppearanceTab/CustomThemeModal.jsx", "line": 81, @@ -5641,6 +5797,12 @@ "column": 4, "index": 1126 }, + { + "filePath": "src/components/settings/SettingsApiCredentialsTab/RegenerateCredentialWarningModal.jsx", + "line": 74, + "column": 8, + "index": 2186 + }, { "filePath": "src/components/settings/SettingsAppearanceTab/CustomThemeModal.jsx", "line": 143, @@ -5797,6 +5959,12 @@ "column": 62, "index": 2048 }, + { + "filePath": "src/components/settings/SettingsApiCredentialsTab/RegenerateCredentialWarningModal.jsx", + "line": 20, + "column": 32, + "index": 518 + }, { "filePath": "src/components/settings/SettingsAppearanceTab/index.jsx", "line": 23, @@ -5823,9 +5991,9 @@ }, { "filePath": "src/components/settings/SettingsLMSTab/index.jsx", - "line": 46, + "line": 47, "column": 62, - "index": 1797 + "index": 1838 }, { "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", @@ -5872,22 +6040,34 @@ "index": 267 }, { - "filePath": "src/components/learner-credit-management/BudgetCard.jsx", + "filePath": "src/components/learner-credit-management/BudgetCard-V2.jsx", "line": 114, "column": 4, - "index": 3132 + "index": 3099 }, { - "filePath": "src/components/learner-credit-management/BudgetCard.jsx", + "filePath": "src/components/learner-credit-management/BudgetCard-V2.jsx", "line": 133, "column": 16, - "index": 3584 + "index": 3541 }, { "filePath": "src/components/learner-credit-management/BudgetCard.jsx", - "line": 143, + "line": 115, + "column": 4, + "index": 3187 + }, + { + "filePath": "src/components/learner-credit-management/BudgetCard.jsx", + "line": 134, "column": 16, - "index": 3950 + "index": 3639 + }, + { + "filePath": "src/components/learner-credit-management/BudgetCard.jsx", + "line": 146, + "column": 18, + "index": 4094 }, { "filePath": "src/components/learner-credit-management/EmailAddressTableCell.jsx", @@ -5909,15 +6089,15 @@ }, { "filePath": "src/components/learner-credit-management/MultipleBudgetsPage.jsx", - "line": 34, + "line": 35, "column": 6, - "index": 803 + "index": 826 }, { "filePath": "src/components/learner-credit-management/MultipleBudgetsPicker.jsx", - "line": 16, + "line": 17, "column": 2, - "index": 248 + "index": 274 }, { "filePath": "src/components/subscriptions/SubscriptionCard.jsx", @@ -6027,9 +6207,9 @@ }, { "filePath": "src/components/settings/SettingsSSOTab/NewSSOConfigForm.jsx", - "line": 21, + "line": 24, "column": 14, - "index": 739 + "index": 938 }, { "filePath": "src/components/system-wide-banner/SystemWideWarningBanner.jsx", @@ -6070,16 +6250,22 @@ "index": 1518 }, { - "filePath": "src/components/learner-credit-management/BudgetCard.jsx", + "filePath": "src/components/learner-credit-management/BudgetCard-V2.jsx", "line": 129, "column": 12, - "index": 3483 + "index": 3440 }, { "filePath": "src/components/learner-credit-management/BudgetCard.jsx", - "line": 139, + "line": 130, "column": 12, - "index": 3849 + "index": 3538 + }, + { + "filePath": "src/components/learner-credit-management/BudgetCard.jsx", + "line": 142, + "column": 14, + "index": 3985 }, { "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", @@ -6125,9 +6311,15 @@ }, { "filePath": "src/components/learner-credit-management/MultipleBudgetsPage.jsx", - "line": 37, + "line": 38, "column": 8, - "index": 893 + "index": 916 + }, + { + "filePath": "src/components/settings/SettingsApiCredentialsTab/ZeroStateCard.jsx", + "line": 34, + "column": 4, + "index": 1133 }, { "filePath": "src/components/settings/SettingsAppearanceTab/ThemeCard.jsx", @@ -6216,10 +6408,16 @@ "index": 173 }, { - "filePath": "src/components/learner-credit-management/BudgetCard.jsx", + "filePath": "src/components/learner-credit-management/BudgetCard-V2.jsx", "line": 84, "column": 4, - "index": 2209 + "index": 2176 + }, + { + "filePath": "src/components/learner-credit-management/BudgetCard.jsx", + "line": 85, + "column": 4, + "index": 2264 }, { "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", @@ -6265,9 +6463,15 @@ }, { "filePath": "src/components/learner-credit-management/MultipleBudgetsPage.jsx", - "line": 38, + "line": 39, "column": 10, - "index": 910 + "index": 933 + }, + { + "filePath": "src/components/settings/SettingsApiCredentialsTab/ZeroStateCard.jsx", + "line": 40, + "column": 6, + "index": 1304 }, { "filePath": "src/components/settings/SettingsAppearanceTab/ThemeCard.jsx", @@ -6685,6 +6889,12 @@ "column": 8, "index": 607 }, + { + "filePath": "src/components/settings/SettingsApiCredentialsTab/ZeroStateCard.jsx", + "line": 78, + "column": 24, + "index": 2736 + }, { "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/DownloadCsvButton.jsx", "line": 75, @@ -6749,27 +6959,33 @@ }, { "filePath": "src/components/settings/SettingsTabs.jsx", - "line": 53, + "line": 59, "column": 8, - "index": 1487 + "index": 1624 }, { "filePath": "src/components/settings/SettingsTabs.jsx", - "line": 68, + "line": 78, "column": 8, - "index": 1950 + "index": 2359 }, { "filePath": "src/components/settings/SettingsTabs.jsx", - "line": 87, + "line": 92, "column": 8, - "index": 2685 + "index": 2757 }, { "filePath": "src/components/settings/SettingsTabs.jsx", - "line": 101, + "line": 109, "column": 8, - "index": 3083 + "index": 3289 + }, + { + "filePath": "src/components/settings/SettingsTabs.jsx", + "line": 124, + "column": 8, + "index": 3793 }, { "filePath": "src/components/subscriptions/SubscriptionTabs.jsx", @@ -6805,9 +7021,9 @@ }, { "filePath": "src/components/settings/SettingsTabs.jsx", - "line": 151, + "line": 173, "column": 6, - "index": 4433 + "index": 5096 }, { "filePath": "src/components/subscriptions/SubscriptionTabs.jsx", @@ -6873,9 +7089,9 @@ }, { "filePath": "src/components/settings/SettingsTabs.jsx", - "line": 150, + "line": 172, "column": 4, - "index": 4392 + "index": 5055 }, { "filePath": "src/components/subscriptions/SubscriptionManagementPage.jsx", @@ -6988,6 +7204,12 @@ "line": 12, "column": 17, "index": 309 + }, + { + "filePath": "src/components/settings/SettingsApiCredentialsTab/RegenerateCredentialWarningModal.jsx", + "line": 60, + "column": 25, + "index": 1638 } ], "Close": [ @@ -7179,11 +7401,35 @@ "column": 6, "index": 1154 }, + { + "filePath": "src/components/learner-credit-management/LearnerCreditAllocationTable.jsx", + "line": 58, + "column": 16, + "index": 1704 + }, { "filePath": "src/components/learner-credit-management/MultipleBudgetsPage.jsx", - "line": 46, + "line": 47, "column": 16, - "index": 1304 + "index": 1327 + }, + { + "filePath": "src/components/settings/HelpCenterButton.jsx", + "line": 13, + "column": 4, + "index": 217 + }, + { + "filePath": "src/components/settings/SettingsApiCredentialsTab/APICredentialsPage.jsx", + "line": 77, + "column": 10, + "index": 2393 + }, + { + "filePath": "src/components/settings/SettingsApiCredentialsTab/ZeroStateCard.jsx", + "line": 47, + "column": 10, + "index": 1669 }, { "filePath": "src/components/settings/SettingsAppearanceTab/CustomThemeModal.jsx", @@ -7215,12 +7461,6 @@ "column": 9, "index": 1774 }, - { - "filePath": "src/components/settings/SettingsLMSTab/index.jsx", - "line": 152, - "column": 8, - "index": 5854 - }, { "filePath": "src/components/settings/SettingsSSOTab/index.jsx", "line": 44, @@ -7229,9 +7469,9 @@ }, { "filePath": "src/components/settings/SettingsSSOTab/NewSSOConfigForm.jsx", - "line": 23, + "line": 26, "column": 10, - "index": 783 + "index": 982 }, { "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", @@ -7309,9 +7549,9 @@ }, { "filePath": "src/components/settings/SettingsLMSTab/index.jsx", - "line": 164, + "line": 161, "column": 26, - "index": 6279 + "index": 6223 }, { "filePath": "src/components/settings/SettingsLMSTab/NoConfigCard.jsx", @@ -7421,6 +7661,12 @@ "column": 4, "index": 238 }, + { + "filePath": "src/components/settings/SettingsApiCredentialsTab/ZeroStateCard.jsx", + "line": 35, + "column": 6, + "index": 1171 + }, { "filePath": "src/components/settings/SettingsLMSTab/NoConfigCard.jsx", "line": 20, @@ -7448,10 +7694,16 @@ "index": 1118 }, { - "filePath": "src/components/learner-credit-management/BudgetCard.jsx", + "filePath": "src/components/learner-credit-management/BudgetCard-V2.jsx", "line": 71, "column": 6, - "index": 1960 + "index": 1919 + }, + { + "filePath": "src/components/learner-credit-management/BudgetCard.jsx", + "line": 72, + "column": 6, + "index": 2015 }, { "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", @@ -7491,6 +7743,12 @@ "column": 2, "index": 168 }, + { + "filePath": "src/components/settings/SettingsApiCredentialsTab/ZeroStateCard.jsx", + "line": 64, + "column": 6, + "index": 2279 + }, { "filePath": "src/components/settings/SettingsAppearanceTab/ThemeCard.jsx", "line": 29, @@ -7602,6 +7860,12 @@ "line": 19, "column": 4, "index": 499 + }, + { + "filePath": "src/components/settings/SettingsApiCredentialsTab/index.jsx", + "line": 43, + "column": 12, + "index": 1543 } ], "FullscreenModal": [ @@ -7695,12 +7959,6 @@ "column": 32, "index": 3854 }, - { - "filePath": "src/components/learner-credit-management/LearnerCreditAllocationTable.jsx", - "line": 22, - "column": 51, - "index": 604 - }, { "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/index.jsx", "line": 60, @@ -8090,10 +8348,16 @@ ], "Breadcrumb": [ { - "filePath": "src/components/learner-credit-management/BudgetCard.jsx", + "filePath": "src/components/learner-credit-management/BudgetCard-V2.jsx", "line": 117, "column": 10, - "index": 3200 + "index": 3167 + }, + { + "filePath": "src/components/learner-credit-management/BudgetCard.jsx", + "line": 118, + "column": 10, + "index": 3255 }, { "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", @@ -8104,16 +8368,22 @@ ], "Card.Body": [ { - "filePath": "src/components/learner-credit-management/BudgetCard.jsx", + "filePath": "src/components/learner-credit-management/BudgetCard-V2.jsx", "line": 132, "column": 14, - "index": 3556 + "index": 3513 }, { "filePath": "src/components/learner-credit-management/BudgetCard.jsx", - "line": 142, + "line": 133, "column": 14, - "index": 3922 + "index": 3611 + }, + { + "filePath": "src/components/learner-credit-management/BudgetCard.jsx", + "line": 145, + "column": 16, + "index": 4064 }, { "filePath": "src/components/subscriptions/SubscriptionCard.jsx", @@ -8130,12 +8400,12 @@ "index": 2707 } ], - "useMediaQuery": [ + "DataTable.FilterStatus": [ { "filePath": "src/components/learner-credit-management/LearnerCreditAllocationTable.jsx", - "line": 22, - "column": 25, - "index": 578 + "line": 19, + "column": 31, + "index": 638 } ], "Search": [ @@ -8540,6 +8810,52 @@ "index": 805 } ], + "ContentCopy": [ + { + "filePath": "src/components/settings/SettingsApiCredentialsTab/CopyButton.jsx", + "line": 30, + "column": 19, + "index": 843 + } + ], + "ModalDialog.CloseButton": [ + { + "filePath": "src/components/settings/SettingsApiCredentialsTab/RegenerateCredentialWarningModal.jsx", + "line": 76, + "column": 12, + "index": 2241 + }, + { + "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", + "line": 176, + "column": 10, + "index": 6290 + }, + { + "filePath": "src/components/subscriptions/expiration/SubscriptionExpiredModal.jsx", + "line": 37, + "column": 10, + "index": 1305 + }, + { + "filePath": "src/components/subscriptions/expiration/SubscriptionExpiringModal.jsx", + "line": 58, + "column": 10, + "index": 1915 + }, + { + "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRemindModal.jsx", + "line": 211, + "column": 10, + "index": 6468 + }, + { + "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRevokeModal.jsx", + "line": 188, + "column": 10, + "index": 5517 + } + ], "Dropzone": [ { "filePath": "src/components/settings/SettingsAppearanceTab/index.jsx", @@ -8704,38 +9020,6 @@ "index": 9063 } ], - "ModalDialog.CloseButton": [ - { - "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", - "line": 176, - "column": 10, - "index": 6290 - }, - { - "filePath": "src/components/subscriptions/expiration/SubscriptionExpiredModal.jsx", - "line": 37, - "column": 10, - "index": 1305 - }, - { - "filePath": "src/components/subscriptions/expiration/SubscriptionExpiringModal.jsx", - "line": 58, - "column": 10, - "index": 1915 - }, - { - "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRemindModal.jsx", - "line": 211, - "column": 10, - "index": 6468 - }, - { - "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRevokeModal.jsx", - "line": 188, - "column": 10, - "index": 5517 - } - ], "Bubble": [ { "filePath": "src/components/Sidebar/IconLink.jsx", @@ -8978,45 +9262,45 @@ }, { "filePath": "src/progressive-profiling/ProgressiveProfiling.jsx", - "line": 243, + "line": 234, "column": 14, - "index": 8983 + "index": 8389 }, { "filePath": "src/recommendations/ProductCard/BaseCard/index.jsx", "line": 21, "column": 4, - "index": 415 + "index": 402 }, { "filePath": "src/recommendations/RecommendationsPage.jsx", - "line": 71, + "line": 81, "column": 10, - "index": 2421 + "index": 2853 }, { - "filePath": "src/register/registrationFields/HonorCode.jsx", + "filePath": "src/register/RegistrationFields/HonorCodeField/HonorCode.jsx", "line": 33, "column": 14, - "index": 1281 + "index": 1284 }, { - "filePath": "src/register/registrationFields/HonorCode.jsx", + "filePath": "src/register/RegistrationFields/HonorCodeField/HonorCode.jsx", "line": 43, "column": 14, - "index": 1649 + "index": 1652 }, { - "filePath": "src/register/registrationFields/HonorCode.jsx", + "filePath": "src/register/RegistrationFields/HonorCodeField/HonorCode.jsx", "line": 75, "column": 14, - "index": 2616 + "index": 2619 }, { - "filePath": "src/register/registrationFields/TermsOfService.jsx", + "filePath": "src/register/RegistrationFields/TermsOfServiceField/TermsOfService.jsx", "line": 34, "column": 14, - "index": 1118 + "index": 1121 } ], "Image": [ @@ -9082,77 +9366,83 @@ }, { "filePath": "src/recommendations/RecommendationsPage.jsx", - "line": 72, + "line": 82, "column": 12, - "index": 2495 + "index": 2927 } ], "breakpoints": [ { "filePath": "src/base-container/index.jsx", - "line": 40, + "line": 36, "column": 30, - "index": 1640 + "index": 1428 }, { "filePath": "src/base-container/index.jsx", - "line": 43, + "line": 39, "column": 30, - "index": 1830 + "index": 1618 }, { "filePath": "src/base-container/index.jsx", - "line": 43, + "line": 39, "column": 68, - "index": 1868 + "index": 1656 }, { "filePath": "src/base-container/index.jsx", - "line": 46, + "line": 42, "column": 30, - "index": 2048 + "index": 1836 }, { "filePath": "src/base-container/index.jsx", - "line": 46, + "line": 42, "column": 69, - "index": 2087 + "index": 1875 }, { "filePath": "src/base-container/index.jsx", - "line": 49, + "line": 45, "column": 30, - "index": 2269 + "index": 2057 }, { "filePath": "src/base-container/index.jsx", - "line": 63, + "line": 59, "column": 30, - "index": 2724 + "index": 2512 }, { "filePath": "src/base-container/index.jsx", - "line": 66, + "line": 62, "column": 30, - "index": 2906 + "index": 2694 }, { "filePath": "src/base-container/index.jsx", - "line": 66, + "line": 62, "column": 69, - "index": 2945 + "index": 2733 }, { "filePath": "src/base-container/index.jsx", - "line": 69, + "line": 65, "column": 30, - "index": 3129 + "index": 2917 }, { "filePath": "src/data/utils/useMobileResponsive.js", "line": 13, "column": 69, "index": 523 + }, + { + "filePath": "src/recommendations/RecommendationsPage.jsx", + "line": 27, + "column": 49, + "index": 1038 } ], "Form": [ @@ -9176,21 +9466,21 @@ }, { "filePath": "src/progressive-profiling/ProgressiveProfiling.jsx", - "line": 239, + "line": 230, "column": 8, - "index": 8815 + "index": 8221 }, { "filePath": "src/register/RegistrationPage.jsx", - "line": 574, + "line": 308, "column": 12, - "index": 20747 + "index": 10474 }, { "filePath": "src/reset-password/ResetPasswordPage.jsx", - "line": 174, + "line": 161, "column": 14, - "index": 5916 + "index": 5557 } ], "Button": [ @@ -9219,10 +9509,10 @@ "index": 1082 }, { - "filePath": "src/register/registrationFields/UsernameField.jsx", - "line": 24, + "filePath": "src/register/RegistrationFields/UsernameField/UsernameField.jsx", + "line": 107, "column": 10, - "index": 928 + "index": 3644 } ], "Icon": [ @@ -9240,51 +9530,51 @@ }, { "filePath": "src/common-components/PasswordField.jsx", - "line": 33, - "column": 102, - "index": 1059 + "line": 79, + "column": 14, + "index": 2567 }, { "filePath": "src/common-components/PasswordField.jsx", - "line": 37, - "column": 99, - "index": 1297 + "line": 93, + "column": 14, + "index": 2867 }, { "filePath": "src/common-components/PasswordField.jsx", - "line": 43, + "line": 105, "column": 42, - "index": 1661 + "index": 3260 }, { "filePath": "src/common-components/PasswordField.jsx", - "line": 43, + "line": 105, "column": 95, - "index": 1714 + "index": 3313 }, { "filePath": "src/common-components/PasswordField.jsx", - "line": 47, + "line": 109, "column": 42, - "index": 1942 + "index": 3541 }, { "filePath": "src/common-components/PasswordField.jsx", - "line": 47, + "line": 109, "column": 95, - "index": 1995 + "index": 3594 }, { "filePath": "src/common-components/PasswordField.jsx", - "line": 51, + "line": 113, "column": 35, - "index": 2220 + "index": 3819 }, { "filePath": "src/common-components/PasswordField.jsx", - "line": 51, + "line": 113, "column": 88, - "index": 2273 + "index": 3872 }, { "filePath": "src/common-components/SocialAuthProviders.jsx", @@ -9312,33 +9602,33 @@ }, { "filePath": "src/logistration/Logistration.jsx", - "line": 77, + "line": 78, "column": 6, - "index": 2654 + "index": 2673 }, { - "filePath": "src/register/registrationFields/EmailField.jsx", - "line": 31, - "column": 26, - "index": 981 + "filePath": "src/register/RegistrationFields/EmailField/EmailField.jsx", + "line": 95, + "column": 12, + "index": 2964 }, { - "filePath": "src/register/registrationFields/UsernameField.jsx", - "line": 42, + "filePath": "src/register/RegistrationFields/UsernameField/UsernameField.jsx", + "line": 126, "column": 49, - "index": 1556 + "index": 4255 }, { - "filePath": "src/register/registrationFields/UsernameField.jsx", - "line": 46, + "filePath": "src/register/RegistrationFields/UsernameField/UsernameField.jsx", + "line": 130, "column": 49, - "index": 1934 + "index": 4627 }, { "filePath": "src/reset-password/ResetPasswordPage.jsx", - "line": 143, + "line": 130, "column": 6, - "index": 4594 + "index": 4235 } ], "Login": [ @@ -9364,9 +9654,9 @@ }, { "filePath": "src/common-components/PasswordField.jsx", - "line": 58, + "line": 120, "column": 4, - "index": 2432 + "index": 4031 }, { "filePath": "src/field-renderer/FieldRenderer.jsx", @@ -9402,9 +9692,9 @@ }, { "filePath": "src/common-components/PasswordField.jsx", - "line": 60, + "line": 122, "column": 8, - "index": 2610 + "index": 4209 }, { "filePath": "src/field-renderer/FieldRenderer.jsx", @@ -9450,9 +9740,9 @@ "useToggle": [ { "filePath": "src/common-components/PasswordField.jsx", - "line": 17, + "line": 23, "column": 60, - "index": 544 + "index": 897 }, { "filePath": "src/login/ChangePasswordPrompt.jsx", @@ -9464,99 +9754,99 @@ "IconButton": [ { "filePath": "src/common-components/PasswordField.jsx", - "line": 33, + "line": 74, "column": 4, - "index": 961 + "index": 2435 }, { "filePath": "src/common-components/PasswordField.jsx", - "line": 37, + "line": 88, "column": 4, - "index": 1202 + "index": 2738 }, { - "filePath": "src/register/registrationFields/UsernameField.jsx", - "line": 42, + "filePath": "src/register/RegistrationFields/UsernameField/UsernameField.jsx", + "line": 126, "column": 17, - "index": 1524 + "index": 4223 }, { - "filePath": "src/register/registrationFields/UsernameField.jsx", - "line": 46, + "filePath": "src/register/RegistrationFields/UsernameField/UsernameField.jsx", + "line": 130, "column": 17, - "index": 1902 + "index": 4595 } ], "VisibilityOff": [ { "filePath": "src/common-components/PasswordField.jsx", - "line": 33, - "column": 79, - "index": 1036 + "line": 78, + "column": 11, + "index": 2538 } ], "Visibility": [ { "filePath": "src/common-components/PasswordField.jsx", - "line": 37, - "column": 79, - "index": 1277 + "line": 92, + "column": 11, + "index": 2841 } ], "Tooltip": [ { "filePath": "src/common-components/PasswordField.jsx", - "line": 41, + "line": 103, "column": 4, - "index": 1499 + "index": 3098 } ], "Check": [ { "filePath": "src/common-components/PasswordField.jsx", - "line": 43, + "line": 105, "column": 83, - "index": 1702 + "index": 3301 }, { "filePath": "src/common-components/PasswordField.jsx", - "line": 47, + "line": 109, "column": 83, - "index": 1983 + "index": 3582 }, { "filePath": "src/common-components/PasswordField.jsx", - "line": 51, + "line": 113, "column": 76, - "index": 2261 + "index": 3860 } ], "Remove": [ { "filePath": "src/common-components/PasswordField.jsx", - "line": 43, + "line": 105, "column": 138, - "index": 1757 + "index": 3356 }, { "filePath": "src/common-components/PasswordField.jsx", - "line": 47, + "line": 109, "column": 138, - "index": 2038 + "index": 3637 }, { "filePath": "src/common-components/PasswordField.jsx", - "line": 51, + "line": 113, "column": 131, - "index": 2316 + "index": 3915 } ], "OverlayTrigger": [ { "filePath": "src/common-components/PasswordField.jsx", - "line": 59, + "line": 121, "column": 6, - "index": 2512 + "index": 4111 } ], "Alert": [ @@ -9586,21 +9876,21 @@ }, { "filePath": "src/progressive-profiling/ProgressiveProfiling.jsx", - "line": 234, + "line": 225, "column": 10, - "index": 8521 + "index": 7927 }, { - "filePath": "src/register/RegistrationFailure.jsx", + "filePath": "src/register/components/RegistrationFailure.jsx", "line": 57, "column": 4, - "index": 1660 + "index": 1665 }, { - "filePath": "src/register/registrationFields/EmailField.jsx", - "line": 22, + "filePath": "src/register/RegistrationFields/EmailField/EmailField.jsx", + "line": 85, "column": 8, - "index": 572 + "index": 2542 }, { "filePath": "src/reset-password/ResetPasswordFailure.jsx", @@ -9642,15 +9932,15 @@ }, { "filePath": "src/progressive-profiling/ProgressiveProfiling.jsx", - "line": 235, + "line": 226, "column": 12, - "index": 8608 + "index": 8014 }, { - "filePath": "src/register/RegistrationFailure.jsx", + "filePath": "src/register/components/RegistrationFailure.jsx", "line": 58, "column": 6, - "index": 1744 + "index": 1749 }, { "filePath": "src/reset-password/ResetPasswordFailure.jsx", @@ -9681,16 +9971,16 @@ "index": 3427 }, { - "filePath": "src/register/registrationFields/HonorCode.jsx", + "filePath": "src/register/RegistrationFields/HonorCodeField/HonorCode.jsx", "line": 60, "column": 6, - "index": 2074 + "index": 2077 }, { - "filePath": "src/register/registrationFields/TermsOfService.jsx", + "filePath": "src/register/RegistrationFields/TermsOfServiceField/TermsOfService.jsx", "line": 18, "column": 6, - "index": 494 + "index": 497 } ], "Alert.Link": [ @@ -9707,16 +9997,16 @@ "index": 1435 }, { - "filePath": "src/register/registrationFields/EmailField.jsx", - "line": 25, + "filePath": "src/register/RegistrationFields/EmailField/EmailField.jsx", + "line": 88, "column": 12, - "index": 790 + "index": 2760 }, { - "filePath": "src/register/registrationFields/EmailField.jsx", - "line": 39, + "filePath": "src/register/RegistrationFields/EmailField/EmailField.jsx", + "line": 103, "column": 8, - "index": 1263 + "index": 3255 } ], "ChevronLeft": [ @@ -9728,15 +10018,15 @@ }, { "filePath": "src/logistration/Logistration.jsx", - "line": 77, + "line": 78, "column": 17, - "index": 2665 + "index": 2684 }, { "filePath": "src/reset-password/ResetPasswordPage.jsx", - "line": 143, + "line": 130, "column": 17, - "index": 4605 + "index": 4246 } ], "Tabs": [ @@ -9748,33 +10038,27 @@ }, { "filePath": "src/logistration/Logistration.jsx", - "line": 98, + "line": 99, "column": 16, - "index": 3229 + "index": 3248 }, { "filePath": "src/logistration/Logistration.jsx", - "line": 114, + "line": 115, "column": 18, - "index": 3899 + "index": 3918 }, { "filePath": "src/logistration/Logistration.jsx", - "line": 119, + "line": 120, "column": 18, - "index": 4197 - }, - { - "filePath": "src/recommendations/RecommendationsPage.jsx", - "line": 80, - "column": 12, - "index": 3011 + "index": 4216 }, { "filePath": "src/reset-password/ResetPasswordPage.jsx", - "line": 166, + "line": 153, "column": 10, - "index": 5375 + "index": 5016 } ], "Tab": [ @@ -9786,45 +10070,33 @@ }, { "filePath": "src/logistration/Logistration.jsx", - "line": 99, + "line": 100, "column": 18, - "index": 3328 + "index": 3347 }, { "filePath": "src/logistration/Logistration.jsx", - "line": 115, + "line": 116, "column": 20, - "index": 4000 + "index": 4019 }, { "filePath": "src/logistration/Logistration.jsx", - "line": 120, + "line": 121, "column": 20, - "index": 4302 + "index": 4321 }, { "filePath": "src/logistration/Logistration.jsx", - "line": 121, + "line": 122, "column": 20, - "index": 4412 - }, - { - "filePath": "src/recommendations/RecommendationsPage.jsx", - "line": 86, - "column": 14, - "index": 3200 - }, - { - "filePath": "src/recommendations/RecommendationsPage.jsx", - "line": 92, - "column": 14, - "index": 3487 + "index": 4431 }, { "filePath": "src/reset-password/ResetPasswordPage.jsx", - "line": 167, + "line": 154, "column": 12, - "index": 5488 + "index": 5129 } ], "StatefulButton": [ @@ -9842,33 +10114,33 @@ }, { "filePath": "src/progressive-profiling/ProgressiveProfiling.jsx", - "line": 256, + "line": 247, "column": 12, - "index": 9509 + "index": 8915 }, { "filePath": "src/progressive-profiling/ProgressiveProfiling.jsx", - "line": 268, + "line": 259, "column": 12, - "index": 10019 + "index": 9425 }, { "filePath": "src/recommendations/RecommendationsPage.jsx", - "line": 101, - "column": 12, - "index": 3858 + "line": 109, + "column": 16, + "index": 3993 }, { "filePath": "src/register/RegistrationPage.jsx", - "line": 634, + "line": 358, "column": 14, - "index": 23601 + "index": 12910 }, { "filePath": "src/reset-password/ResetPasswordPage.jsx", - "line": 193, + "line": 180, "column": 16, - "index": 6848 + "index": 6489 } ], "ModalDialog": [ @@ -9972,21 +10244,21 @@ }, { "filePath": "src/progressive-profiling/ProgressiveProfiling.jsx", - "line": 234, + "line": 225, "column": 77, - "index": 8588 + "index": 7994 }, { - "filePath": "src/register/RegistrationFailure.jsx", + "filePath": "src/register/components/RegistrationFailure.jsx", "line": 57, "column": 74, - "index": 1730 + "index": 1735 }, { - "filePath": "src/register/registrationFields/EmailField.jsx", - "line": 22, + "filePath": "src/register/RegistrationFields/EmailField/EmailField.jsx", + "line": 85, "column": 84, - "index": 648 + "index": 2618 }, { "filePath": "src/reset-password/ResetPasswordFailure.jsx", @@ -10000,7 +10272,7 @@ "filePath": "src/recommendations/ProductCard/BaseCard/index.jsx", "line": 27, "column": 6, - "index": 546 + "index": 533 } ], "Card.ImageCap": [ @@ -10008,7 +10280,7 @@ "filePath": "src/recommendations/ProductCard/BaseCard/index.jsx", "line": 32, "column": 8, - "index": 667 + "index": 654 } ], "Card.Header": [ @@ -10016,7 +10288,7 @@ "filePath": "src/recommendations/ProductCard/BaseCard/index.jsx", "line": 40, "column": 8, - "index": 959 + "index": 946 } ], "Card.Section": [ @@ -10024,7 +10296,7 @@ "filePath": "src/recommendations/ProductCard/BaseCard/index.jsx", "line": 45, "column": 8, - "index": 1100 + "index": 1087 } ], "Badge": [ @@ -10032,79 +10304,137 @@ "filePath": "src/recommendations/ProductCard/BaseCard/index.jsx", "line": 47, "column": 12, - "index": 1188 + "index": 1175 + } + ], + "useMediaQuery": [ + { + "filePath": "src/recommendations/RecommendationsPage.jsx", + "line": 27, + "column": 23, + "index": 1012 + }, + { + "filePath": "src/recommendations/tests/RecommendationsPage.test.jsx", + "line": 104, + "column": 4, + "index": 3223 + }, + { + "filePath": "src/recommendations/tests/RecommendationsPage.test.jsx", + "line": 113, + "column": 4, + "index": 3633 + }, + { + "filePath": "src/recommendations/tests/RecommendationsPage.test.jsx", + "line": 122, + "column": 4, + "index": 4042 + }, + { + "filePath": "src/recommendations/tests/RecommendationsPage.test.jsx", + "line": 134, + "column": 4, + "index": 4483 + }, + { + "filePath": "src/recommendations/tests/RecommendationsPage.test.jsx", + "line": 151, + "column": 4, + "index": 5022 } ], "Container": [ { "filePath": "src/recommendations/RecommendationsPage.jsx", - "line": 76, + "line": 86, "column": 10, - "index": 2728 + "index": 3156 + } + ], + "Skeleton": [ + { + "filePath": "src/recommendations/RecommendationsPage.jsx", + "line": 106, + "column": 16, + "index": 3859 + }, + { + "filePath": "src/recommendations/RecommendationsPageLayouts/LargeLayout.jsx", + "line": 22, + "column": 8, + "index": 553 + }, + { + "filePath": "src/recommendations/RecommendationsPageLayouts/SmallLayout.jsx", + "line": 22, + "column": 8, + "index": 553 } ], "FormAutosuggestOption": [ { - "filePath": "src/register/registrationFields/CountryField.jsx", - "line": 37, + "filePath": "src/register/RegistrationFields/CountryField/CountryField.jsx", + "line": 85, "column": 4, - "index": 1244 + "index": 2913 } ], "FormAutosuggest": [ { - "filePath": "src/register/registrationFields/CountryField.jsx", - "line": 44, + "filePath": "src/register/RegistrationFields/CountryField/CountryField.jsx", + "line": 92, "column": 6, - "index": 1417 + "index": 3086 } ], "FormControlFeedback": [ { - "filePath": "src/register/registrationFields/CountryField.jsx", - "line": 57, + "filePath": "src/register/RegistrationFields/CountryField/CountryField.jsx", + "line": 105, "column": 8, - "index": 1921 + "index": 3587 } ], "Close": [ { - "filePath": "src/register/registrationFields/EmailField.jsx", - "line": 31, - "column": 37, - "index": 992 + "filePath": "src/register/RegistrationFields/EmailField/EmailField.jsx", + "line": 95, + "column": 23, + "index": 2975 }, { - "filePath": "src/register/registrationFields/UsernameField.jsx", - "line": 42, + "filePath": "src/register/RegistrationFields/UsernameField/UsernameField.jsx", + "line": 126, "column": 34, - "index": 1541 + "index": 4240 }, { - "filePath": "src/register/registrationFields/UsernameField.jsx", - "line": 46, + "filePath": "src/register/RegistrationFields/UsernameField/UsernameField.jsx", + "line": 130, "column": 34, - "index": 1919 + "index": 4612 } ], "Spinner": [ { "filePath": "src/register/RegistrationPage.jsx", - "line": 555, + "line": 289, "column": 12, - "index": 20044 + "index": 9779 }, { "filePath": "src/reset-password/ResetPasswordPage.jsx", - "line": 151, + "line": 138, "column": 13, - "index": 4821 + "index": 4462 } ] } }, { - "version": "20.45.0", + "version": "20.46.2", "name": "@edx/frontend-app-communications", "repository": { "type": "git", @@ -10696,21 +11026,45 @@ "Container": [ { "filePath": "src/advanced-settings/AdvancedSettings.jsx", - "line": 128, + "line": 133, + "column": 6, + "index": 4967 + }, + { + "filePath": "src/course-rerun/index.jsx", + "line": 45, + "column": 6, + "index": 1222 + }, + { + "filePath": "src/course-team/CourseTeam.jsx", + "line": 65, + "column": 6, + "index": 1876 + }, + { + "filePath": "src/course-updates/CourseUpdates.jsx", + "line": 66, "column": 6, - "index": 4704 + "index": 2424 }, { "filePath": "src/custom-pages/CustomPages.jsx", - "line": 114, + "line": 118, + "column": 6, + "index": 3872 + }, + { + "filePath": "src/export-page/CourseExportPage.jsx", + "line": 62, "column": 6, - "index": 3655 + "index": 2729 }, { "filePath": "src/grading-settings/GradingSettings.jsx", - "line": 113, + "line": 118, "column": 6, - "index": 3842 + "index": 4105 }, { "filePath": "src/pages-and-resources/discussions/app-config-form/AppConfigForm.jsx", @@ -10726,17 +11080,23 @@ }, { "filePath": "src/schedule-and-details/index.jsx", - "line": 159, + "line": 164, "column": 6, - "index": 4826 + "index": 5075 + }, + { + "filePath": "src/studio-home/StudioHome.jsx", + "line": 80, + "column": 6, + "index": 2119 } ], "Info": [ { "filePath": "src/advanced-settings/AdvancedSettings.jsx", - "line": 132, + "line": 137, "column": 20, - "index": 4890 + "index": 5153 }, { "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", @@ -10746,17 +11106,23 @@ }, { "filePath": "src/pages-and-resources/xpert-unit-summary/settings-modal/SettingsModal.jsx", - "line": 213, + "line": 327, "column": 46, - "index": 6451 + "index": 9511 } ], "TransitionReplace": [ { "filePath": "src/advanced-settings/AdvancedSettings.jsx", - "line": 139, + "line": 144, "column": 10, - "index": 5201 + "index": 5464 + }, + { + "filePath": "src/generic/create-or-rerun-course/CreateOrRerunCourseForm.jsx", + "line": 204, + "column": 6, + "index": 6370 }, { "filePath": "src/generic/FieldFeedback.jsx", @@ -10802,119 +11168,239 @@ }, { "filePath": "src/pages-and-resources/xpert-unit-summary/settings-modal/SettingsModal.jsx", - "line": 40, + "line": 46, "column": 2, - "index": 1418 + "index": 1606 } ], "CheckCircle": [ { "filePath": "src/advanced-settings/AdvancedSettings.jsx", - "line": 145, + "line": 150, "column": 22, - "index": 5457 + "index": 5720 }, { "filePath": "src/grading-settings/assignment-section/index.jsx", - "line": 172, + "line": 173, "column": 22, - "index": 7027 + "index": 7063 }, { "filePath": "src/grading-settings/GradingSettings.jsx", - "line": 118, + "line": 123, "column": 18, - "index": 4019 + "index": 4283 } ], "Layout": [ { "filePath": "src/advanced-settings/AdvancedSettings.jsx", - "line": 161, + "line": 166, "column": 10, - "index": 6198 + "index": 6461 + }, + { + "filePath": "src/course-rerun/index.jsx", + "line": 65, + "column": 10, + "index": 2006 + }, + { + "filePath": "src/course-team/CourseTeam.jsx", + "line": 67, + "column": 10, + "index": 1982 + }, + { + "filePath": "src/course-updates/CourseUpdates.jsx", + "line": 68, + "column": 10, + "index": 2526 }, { "filePath": "src/custom-pages/CustomPages.jsx", - "line": 149, + "line": 153, "column": 8, - "index": 4840 + "index": 5057 + }, + { + "filePath": "src/export-page/CourseExportPage.jsx", + "line": 64, + "column": 10, + "index": 2833 + }, + { + "filePath": "src/export-page/export-footer/ExportFooter.jsx", + "line": 12, + "column": 4, + "index": 246 }, { "filePath": "src/grading-settings/GradingSettings.jsx", - "line": 127, + "line": 132, "column": 12, - "index": 4404 + "index": 4668 }, { "filePath": "src/schedule-and-details/index.jsx", - "line": 184, + "line": 189, "column": 10, - "index": 5721 + "index": 5971 + }, + { + "filePath": "src/studio-home/StudioHome.jsx", + "line": 93, + "column": 12, + "index": 2587 + }, + { + "filePath": "src/studio-home/verify-email-layout/index.jsx", + "line": 14, + "column": 4, + "index": 420 } ], "Layout.Element": [ { "filePath": "src/advanced-settings/AdvancedSettings.jsx", - "line": 168, + "line": 173, "column": 12, - "index": 6450 + "index": 6713 }, { "filePath": "src/advanced-settings/AdvancedSettings.jsx", - "line": 221, + "line": 226, + "column": 12, + "index": 9364 + }, + { + "filePath": "src/course-rerun/index.jsx", + "line": 72, + "column": 12, + "index": 2258 + }, + { + "filePath": "src/course-rerun/index.jsx", + "line": 78, + "column": 12, + "index": 2475 + }, + { + "filePath": "src/course-team/CourseTeam.jsx", + "line": 74, + "column": 12, + "index": 2234 + }, + { + "filePath": "src/course-team/CourseTeam.jsx", + "line": 142, + "column": 12, + "index": 5189 + }, + { + "filePath": "src/course-updates/CourseUpdates.jsx", + "line": 75, "column": 12, - "index": 9101 + "index": 2718 }, { "filePath": "src/custom-pages/CustomPages.jsx", - "line": 156, + "line": 160, "column": 10, - "index": 5188 + "index": 5405 }, { "filePath": "src/custom-pages/CustomPages.jsx", - "line": 202, + "line": 206, "column": 10, - "index": 7088 + "index": 7305 + }, + { + "filePath": "src/export-page/CourseExportPage.jsx", + "line": 71, + "column": 12, + "index": 3085 + }, + { + "filePath": "src/export-page/CourseExportPage.jsx", + "line": 102, + "column": 12, + "index": 4457 + }, + { + "filePath": "src/export-page/export-footer/ExportFooter.jsx", + "line": 19, + "column": 6, + "index": 456 + }, + { + "filePath": "src/export-page/export-footer/ExportFooter.jsx", + "line": 31, + "column": 6, + "index": 1103 }, { "filePath": "src/grading-settings/GradingSettings.jsx", - "line": 134, + "line": 139, "column": 14, - "index": 4670 + "index": 4934 }, { "filePath": "src/grading-settings/GradingSettings.jsx", - "line": 206, + "line": 215, "column": 14, - "index": 8255 + "index": 8732 }, { "filePath": "src/schedule-and-details/index.jsx", - "line": 191, + "line": 196, "column": 12, - "index": 5973 + "index": 6223 }, { "filePath": "src/schedule-and-details/index.jsx", - "line": 290, + "line": 295, "column": 12, - "index": 10440 + "index": 10690 + }, + { + "filePath": "src/studio-home/StudioHome.jsx", + "line": 100, + "column": 14, + "index": 2853 + }, + { + "filePath": "src/studio-home/StudioHome.jsx", + "line": 114, + "column": 14, + "index": 3521 + }, + { + "filePath": "src/studio-home/verify-email-layout/index.jsx", + "line": 21, + "column": 6, + "index": 630 + }, + { + "filePath": "src/studio-home/verify-email-layout/index.jsx", + "line": 34, + "column": 6, + "index": 1079 } ], "Button": [ { "filePath": "src/advanced-settings/AdvancedSettings.jsx", - "line": 180, + "line": 185, "column": 22, - "index": 7086 + "index": 7349 }, { "filePath": "src/advanced-settings/AdvancedSettings.jsx", - "line": 247, + "line": 252, "column": 14, - "index": 10079 + "index": 10342 }, { "filePath": "src/advanced-settings/modal-error/ModalError.jsx", @@ -10928,6 +11414,102 @@ "column": 8, "index": 764 }, + { + "filePath": "src/course-rerun/index.jsx", + "line": 52, + "column": 18, + "index": 1566 + }, + { + "filePath": "src/course-team/add-team-member/AddTeamMember.jsx", + "line": 18, + "column": 6, + "index": 691 + }, + { + "filePath": "src/course-team/add-user-form/AddUserForm.jsx", + "line": 42, + "column": 14, + "index": 1433 + }, + { + "filePath": "src/course-team/add-user-form/AddUserForm.jsx", + "line": 45, + "column": 14, + "index": 1588 + }, + { + "filePath": "src/course-team/course-team-member/CourseTeamMember.jsx", + "line": 48, + "column": 12, + "index": 1494 + }, + { + "filePath": "src/course-team/CourseTeam.jsx", + "line": 81, + "column": 22, + "index": 2549 + }, + { + "filePath": "src/course-team/info-modal/InfoModal.jsx", + "line": 43, + "column": 10, + "index": 904 + }, + { + "filePath": "src/course-team/info-modal/InfoModal.jsx", + "line": 47, + "column": 12, + "index": 1069 + }, + { + "filePath": "src/course-updates/course-handouts/CourseHandouts.jsx", + "line": 15, + "column": 8, + "index": 544 + }, + { + "filePath": "src/course-updates/course-update/CourseUpdate.jsx", + "line": 30, + "column": 10, + "index": 1051 + }, + { + "filePath": "src/course-updates/course-update/CourseUpdate.jsx", + "line": 39, + "column": 10, + "index": 1337 + }, + { + "filePath": "src/course-updates/CourseUpdates.jsx", + "line": 83, + "column": 22, + "index": 3090 + }, + { + "filePath": "src/course-updates/delete-modal/DeleteModal.jsx", + "line": 23, + "column": 10, + "index": 517 + }, + { + "filePath": "src/course-updates/delete-modal/DeleteModal.jsx", + "line": 26, + "column": 10, + "index": 647 + }, + { + "filePath": "src/course-updates/update-form/UpdateForm.jsx", + "line": 112, + "column": 14, + "index": 3931 + }, + { + "filePath": "src/course-updates/update-form/UpdateForm.jsx", + "line": 115, + "column": 14, + "index": 4087 + }, { "filePath": "src/custom-pages/CustomPageCard.jsx", "line": 108, @@ -10936,27 +11518,69 @@ }, { "filePath": "src/custom-pages/CustomPages.jsx", - "line": 129, + "line": 133, "column": 10, - "index": 4224 + "index": 4441 }, { "filePath": "src/custom-pages/CustomPages.jsx", - "line": 143, + "line": 147, "column": 12, - "index": 4679 + "index": 4896 }, { "filePath": "src/custom-pages/CustomPages.jsx", - "line": 223, + "line": 227, "column": 12, - "index": 7951 + "index": 8168 + }, + { + "filePath": "src/export-page/CourseExportPage.jsx", + "line": 86, + "column": 22, + "index": 3827 + }, + { + "filePath": "src/export-page/export-sidebar/ExportSidebar.jsx", + "line": 39, + "column": 6, + "index": 2189 + }, + { + "filePath": "src/export-page/export-stepper/ExportStepper.jsx", + "line": 79, + "column": 65, + "index": 2800 + }, + { + "filePath": "src/files-and-uploads/FilesAndUploads.jsx", + "line": 332, + "column": 14, + "index": 10867 + }, + { + "filePath": "src/files-and-uploads/FilesAndUploads.jsx", + "line": 335, + "column": 14, + "index": 11032 }, { "filePath": "src/files-and-uploads/table-components/TableActions.jsx", - "line": 40, - "column": 4, - "index": 1196 + "line": 32, + "column": 6, + "index": 757 + }, + { + "filePath": "src/files-and-uploads/table-components/TableActions.jsx", + "line": 60, + "column": 6, + "index": 1805 + }, + { + "filePath": "src/files-and-uploads/table-components/TableActions.jsx", + "line": 139, + "column": 12, + "index": 4606 }, { "filePath": "src/generic/ConfirmationPopup.jsx", @@ -10970,11 +11594,29 @@ "column": 8, "index": 719 }, + { + "filePath": "src/generic/create-or-rerun-course/CreateOrRerunCourseForm.jsx", + "line": 255, + "column": 10, + "index": 8146 + }, + { + "filePath": "src/generic/modal-error/ModalError.jsx", + "line": 14, + "column": 8, + "index": 363 + }, + { + "filePath": "src/generic/modal-error/ModalError.jsx", + "line": 15, + "column": 8, + "index": 449 + }, { "filePath": "src/grading-settings/assignment-section/index.jsx", - "line": 177, + "line": 178, "column": 12, - "index": 7229 + "index": 7265 }, { "filePath": "src/grading-settings/grading-scale/components/GradingScaleSegment.jsx", @@ -10984,15 +11626,15 @@ }, { "filePath": "src/grading-settings/GradingSettings.jsx", - "line": 196, + "line": 205, "column": 20, - "index": 7873 + "index": 8358 }, { "filePath": "src/grading-settings/GradingSettings.jsx", - "line": 235, + "line": 244, "column": 14, - "index": 9376 + "index": 9853 }, { "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-restrictions/RestrictionSchedules.jsx", @@ -11050,9 +11692,9 @@ }, { "filePath": "src/pages-and-resources/PagesAndResources.jsx", - "line": 75, + "line": 79, "column": 12, - "index": 2770 + "index": 2991 }, { "filePath": "src/pages-and-resources/teams/GroupEditor.jsx", @@ -11074,21 +11716,21 @@ }, { "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", - "line": 404, + "line": 409, "column": 8, - "index": 16663 + "index": 16910 }, { "filePath": "src/schedule-and-details/basic-section/index.jsx", "line": 119, "column": 10, - "index": 3343 + "index": 3349 }, { "filePath": "src/schedule-and-details/index.jsx", - "line": 320, + "line": 325, "column": 14, - "index": 11468 + "index": 11718 }, { "filePath": "src/schedule-and-details/instructors-section/index.jsx", @@ -11125,14 +11767,44 @@ "line": 37, "column": 8, "index": 1044 + }, + { + "filePath": "src/studio-header/HeaderBody.jsx", + "line": 58, + "column": 12, + "index": 1260 + }, + { + "filePath": "src/studio-home/organization-section/index.jsx", + "line": 66, + "column": 6, + "index": 2430 + }, + { + "filePath": "src/studio-home/processing-courses/course-item/index.jsx", + "line": 72, + "column": 12, + "index": 2434 + }, + { + "filePath": "src/studio-home/StudioHome.jsx", + "line": 60, + "column": 8, + "index": 1662 + }, + { + "filePath": "src/studio-home/tabs-section/courses-tab/contact-administrator/index.jsx", + "line": 31, + "column": 14, + "index": 1070 } ], "StatefulButton": [ { "filePath": "src/advanced-settings/AdvancedSettings.jsx", - "line": 251, + "line": 256, "column": 12, - "index": 10258 + "index": 10521 }, { "filePath": "src/custom-pages/CustomPageCard.jsx", @@ -11142,15 +11814,21 @@ }, { "filePath": "src/custom-pages/CustomPages.jsx", - "line": 195, + "line": 199, "column": 12, - "index": 6864 + "index": 7081 + }, + { + "filePath": "src/generic/create-or-rerun-course/CreateOrRerunCourseForm.jsx", + "line": 261, + "column": 10, + "index": 8332 }, { "filePath": "src/grading-settings/GradingSettings.jsx", - "line": 239, + "line": 248, "column": 12, - "index": 9549 + "index": 10026 }, { "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", @@ -11172,23 +11850,35 @@ }, { "filePath": "src/pages-and-resources/xpert-unit-summary/settings-modal/SettingsModal.jsx", - "line": 201, + "line": 162, + "column": 6, + "index": 4488 + }, + { + "filePath": "src/pages-and-resources/xpert-unit-summary/settings-modal/SettingsModal.jsx", + "line": 314, "column": 16, - "index": 5960 + "index": 8972 }, { "filePath": "src/schedule-and-details/index.jsx", - "line": 328, + "line": 333, "column": 12, - "index": 11722 + "index": 11972 + }, + { + "filePath": "src/studio-home/collapsible-state-with-action/index.jsx", + "line": 140, + "column": 10, + "index": 4920 } ], "Warning": [ { "filePath": "src/advanced-settings/AdvancedSettings.jsx", - "line": 259, + "line": 264, "column": 16, - "index": 10570 + "index": 10833 }, { "filePath": "src/advanced-settings/setting-card/SettingCard.jsx", @@ -11198,21 +11888,21 @@ }, { "filePath": "src/grading-settings/assignment-section/index.jsx", - "line": 137, + "line": 138, "column": 22, - "index": 5397 + "index": 5433 }, { "filePath": "src/grading-settings/assignment-section/index.jsx", - "line": 158, + "line": 159, "column": 22, - "index": 6360 + "index": 6396 }, { "filePath": "src/grading-settings/GradingSettings.jsx", - "line": 247, + "line": 256, "column": 16, - "index": 9886 + "index": 10363 } ], "AlertModal": [ @@ -11222,12 +11912,36 @@ "column": 2, "index": 413 }, + { + "filePath": "src/course-team/info-modal/InfoModal.jsx", + "line": 36, + "column": 4, + "index": 730 + }, + { + "filePath": "src/course-updates/delete-modal/DeleteModal.jsx", + "line": 16, + "column": 4, + "index": 327 + }, { "filePath": "src/custom-pages/CustomPageCard.jsx", "line": 102, "column": 6, "index": 3196 }, + { + "filePath": "src/files-and-uploads/FilesAndUploads.jsx", + "line": 326, + "column": 8, + "index": 10634 + }, + { + "filePath": "src/generic/modal-error/ModalError.jsx", + "line": 8, + "column": 2, + "index": 248 + }, { "filePath": "src/pages-and-resources/discussions/app-list/AppList.jsx", "line": 162, @@ -11248,6 +11962,36 @@ "column": 14, "index": 1601 }, + { + "filePath": "src/course-rerun/index.jsx", + "line": 51, + "column": 16, + "index": 1516 + }, + { + "filePath": "src/course-team/add-user-form/AddUserForm.jsx", + "line": 41, + "column": 12, + "index": 1407 + }, + { + "filePath": "src/course-team/info-modal/InfoModal.jsx", + "line": 42, + "column": 8, + "index": 882 + }, + { + "filePath": "src/course-updates/delete-modal/DeleteModal.jsx", + "line": 22, + "column": 8, + "index": 495 + }, + { + "filePath": "src/course-updates/update-form/UpdateForm.jsx", + "line": 111, + "column": 12, + "index": 3905 + }, { "filePath": "src/custom-pages/CustomPageCard.jsx", "line": 66, @@ -11262,39 +12006,69 @@ }, { "filePath": "src/custom-pages/CustomPages.jsx", - "line": 124, + "line": 128, "column": 8, - "index": 4068 + "index": 4285 }, { "filePath": "src/files-and-uploads/FileInfo.jsx", - "line": 72, + "line": 93, "column": 12, - "index": 1966 + "index": 2588 }, { "filePath": "src/files-and-uploads/FileInfo.jsx", - "line": 87, + "line": 110, "column": 12, - "index": 2532 + "index": 3239 }, { "filePath": "src/files-and-uploads/FileInfo.jsx", - "line": 100, + "line": 124, "column": 12, - "index": 2982 + "index": 3755 }, { - "filePath": "src/files-and-uploads/table-components/GalleryCard.jsx", - "line": 43, + "filePath": "src/files-and-uploads/FilesAndUploads.jsx", + "line": 331, "column": 12, - "index": 939 + "index": 10841 + }, + { + "filePath": "src/files-and-uploads/table-components/GalleryCard.jsx", + "line": 38, + "column": 10, + "index": 782 }, { "filePath": "src/files-and-uploads/table-components/ListCard.jsx", - "line": 65, + "line": 62, + "column": 8, + "index": 1665 + }, + { + "filePath": "src/files-and-uploads/table-components/TableActions.jsx", + "line": 135, "column": 10, - "index": 1791 + "index": 4419 + }, + { + "filePath": "src/generic/create-or-rerun-course/CreateOrRerunCourseForm.jsx", + "line": 254, + "column": 8, + "index": 8090 + }, + { + "filePath": "src/generic/modal-error/ModalError.jsx", + "line": 13, + "column": 6, + "index": 343 + }, + { + "filePath": "src/generic/sub-header/SubHeader.jsx", + "line": 15, + "column": 8, + "index": 424 }, { "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", @@ -11322,15 +12096,39 @@ }, { "filePath": "src/pages-and-resources/xpert-unit-summary/settings-modal/SettingsModal.jsx", - "line": 84, + "line": 90, "column": 6, - "index": 2527 + "index": 2715 }, { "filePath": "src/schedule-and-details/license-section/license-commons-options/index.jsx", "line": 67, "column": 12, "index": 2125 + }, + { + "filePath": "src/studio-header/HeaderBody.jsx", + "line": 50, + "column": 4, + "index": 994 + }, + { + "filePath": "src/studio-home/card-item/index.jsx", + "line": 43, + "column": 10, + "index": 1480 + }, + { + "filePath": "src/studio-home/processing-courses/course-item/index.jsx", + "line": 37, + "column": 14, + "index": 983 + }, + { + "filePath": "src/studio-home/processing-courses/course-item/index.jsx", + "line": 63, + "column": 14, + "index": 1943 } ], "Alert": [ @@ -11408,27 +12206,27 @@ }, { "filePath": "src/pages-and-resources/xpert-unit-summary/settings-modal/SettingsModal.jsx", - "line": 213, + "line": 327, "column": 16, - "index": 6421 + "index": 9481 }, { "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", - "line": 232, + "line": 237, "column": 12, - "index": 8685 + "index": 8932 }, { "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", - "line": 443, + "line": 448, "column": 6, - "index": 17596 + "index": 17843 }, { "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", - "line": 465, + "line": 470, "column": 6, - "index": 18229 + "index": 18476 } ], "Icon": [ @@ -11444,6 +12242,30 @@ "column": 26, "index": 1812 }, + { + "filePath": "src/course-team/course-team-member/CourseTeamMember.jsx", + "line": 59, + "column": 22, + "index": 2051 + }, + { + "filePath": "src/course-updates/course-update/CourseUpdate.jsx", + "line": 25, + "column": 12, + "index": 786 + }, + { + "filePath": "src/course-updates/update-form/UpdateForm.jsx", + "line": 68, + "column": 18, + "index": 2009 + }, + { + "filePath": "src/course-updates/update-form/UpdateForm.jsx", + "line": 94, + "column": 20, + "index": 3172 + }, { "filePath": "src/custom-pages/CustomPageCard.jsx", "line": 59, @@ -11470,57 +12292,63 @@ }, { "filePath": "src/custom-pages/CustomPages.jsx", - "line": 95, + "line": 99, "column": 15, - "index": 3033 + "index": 3250 }, { "filePath": "src/custom-pages/CustomPages.jsx", - "line": 96, + "line": 100, "column": 15, - "index": 3068 + "index": 3285 }, { "filePath": "src/files-and-uploads/FileInfo.jsx", - "line": 79, + "line": 102, "column": 24, - "index": 2194 + "index": 2900 }, { "filePath": "src/files-and-uploads/FileInfo.jsx", - "line": 94, + "line": 119, "column": 24, - "index": 2760 + "index": 3551 }, { "filePath": "src/files-and-uploads/FileInfo.jsx", - "line": 109, + "line": 133, "column": 24, - "index": 3385 + "index": 4192 }, { "filePath": "src/files-and-uploads/FileMenu.jsx", - "line": 28, + "line": 29, "column": 14, - "index": 557 + "index": 581 }, { "filePath": "src/files-and-uploads/FileThumbnail.jsx", - "line": 27, + "line": 35, "column": 10, - "index": 551 + "index": 796 }, { "filePath": "src/files-and-uploads/table-components/GalleryCard.jsx", - "line": 63, - "column": 16, - "index": 1805 + "line": 61, + "column": 14, + "index": 1836 }, { "filePath": "src/files-and-uploads/table-components/ListCard.jsx", - "line": 50, - "column": 14, - "index": 1332 + "line": 45, + "column": 12, + "index": 1161 + }, + { + "filePath": "src/files-and-uploads/UsageMetricsMessage.jsx", + "line": 32, + "column": 8, + "index": 988 }, { "filePath": "src/generic/CollapsableEditor.jsx", @@ -11540,6 +12368,12 @@ "column": 65, "index": 1486 }, + { + "filePath": "src/generic/course-stepper/index.jsx", + "line": 74, + "column": 14, + "index": 2070 + }, { "filePath": "src/generic/course-upload-image/index.jsx", "line": 72, @@ -11552,11 +12386,17 @@ "column": 10, "index": 1351 }, + { + "filePath": "src/generic/processing-notification/index.jsx", + "line": 18, + "column": 4, + "index": 513 + }, { "filePath": "src/grading-settings/grading-scale/GradingScale.jsx", - "line": 195, + "line": 198, "column": 16, - "index": 6181 + "index": 6416 }, { "filePath": "src/pages-and-resources/live/Settings.jsx", @@ -11576,6 +12416,24 @@ "column": 16, "index": 1653 }, + { + "filePath": "src/pages-and-resources/xpert-unit-summary/settings-modal/SettingsModal.jsx", + "line": 170, + "column": 19, + "index": 4748 + }, + { + "filePath": "src/pages-and-resources/xpert-unit-summary/settings-modal/SettingsModal.jsx", + "line": 171, + "column": 19, + "index": 4793 + }, + { + "filePath": "src/pages-and-resources/xpert-unit-summary/settings-modal/SettingsModal.jsx", + "line": 172, + "column": 18, + "index": 4863 + }, { "filePath": "src/schedule-and-details/license-section/license-icons/index.jsx", "line": 29, @@ -11616,7 +12474,31 @@ "filePath": "src/schedule-and-details/schedule-section/certificate-display-row/CertificateDisplayRow.jsx", "line": 101, "column": 10, - "index": 2977 + "index": 2980 + }, + { + "filePath": "src/studio-home/collapsible-state-with-action/index.jsx", + "line": 106, + "column": 12, + "index": 3694 + }, + { + "filePath": "src/studio-home/collapsible-state-with-action/index.jsx", + "line": 115, + "column": 12, + "index": 3953 + }, + { + "filePath": "src/studio-home/processing-courses/course-item/index.jsx", + "line": 38, + "column": 16, + "index": 1011 + }, + { + "filePath": "src/studio-home/processing-courses/course-item/index.jsx", + "line": 64, + "column": 16, + "index": 1971 } ], "Error": [ @@ -11634,6 +12516,30 @@ "column": 32, "index": 793 }, + { + "filePath": "src/course-team/hooks.jsx", + "line": 32, + "column": 59, + "index": 1075 + }, + { + "filePath": "src/course-team/hooks.jsx", + "line": 33, + "column": 46, + "index": 1139 + }, + { + "filePath": "src/course-updates/hooks.jsx", + "line": 23, + "column": 62, + "index": 826 + }, + { + "filePath": "src/course-updates/hooks.jsx", + "line": 24, + "column": 65, + "index": 909 + }, { "filePath": "src/custom-pages/CustomPageCard.jsx", "line": 33, @@ -11642,39 +12548,51 @@ }, { "filePath": "src/custom-pages/CustomPages.jsx", - "line": 52, + "line": 53, "column": 32, - "index": 1547 + "index": 1606 }, { "filePath": "src/custom-pages/CustomPages.jsx", - "line": 53, + "line": 54, "column": 59, - "index": 1624 + "index": 1683 }, { "filePath": "src/files-and-uploads/FilesAndUploads.jsx", - "line": 49, + "line": 60, "column": 56, - "index": 1261 + "index": 1582 }, { "filePath": "src/files-and-uploads/FilesAndUploads.jsx", - "line": 50, + "line": 61, + "column": 59, + "index": 1659 + }, + { + "filePath": "src/files-and-uploads/FilesAndUploads.jsx", + "line": 62, "column": 47, - "index": 1326 + "index": 1724 }, { - "filePath": "src/files-and-uploads/table-components/GalleryCard.jsx", - "line": 25, - "column": 59, - "index": 485 + "filePath": "src/files-and-uploads/FilesAndUploads.jsx", + "line": 64, + "column": 86, + "index": 1884 }, { - "filePath": "src/files-and-uploads/table-components/ListCard.jsx", + "filePath": "src/files-and-uploads/table-components/TableActions.jsx", "line": 25, - "column": 59, - "index": 482 + "column": 44, + "index": 589 + }, + { + "filePath": "src/studio-header/MobileHeader.jsx", + "line": 13, + "column": 36, + "index": 382 } ], "Card": [ @@ -11684,17 +12602,23 @@ "column": 6, "index": 1460 }, + { + "filePath": "src/export-page/CourseExportPage.jsx", + "line": 79, + "column": 16, + "index": 3516 + }, { "filePath": "src/files-and-uploads/table-components/GalleryCard.jsx", - "line": 40, - "column": 6, - "index": 815 + "line": 35, + "column": 4, + "index": 664 }, { "filePath": "src/files-and-uploads/table-components/ListCard.jsx", - "line": 40, - "column": 6, - "index": 812 + "line": 35, + "column": 4, + "index": 661 }, { "filePath": "src/generic/ConfirmationPopup.jsx", @@ -11761,6 +12685,36 @@ "line": 31, "column": 6, "index": 977 + }, + { + "filePath": "src/studio-home/card-item/index.jsx", + "line": 29, + "column": 4, + "index": 1068 + }, + { + "filePath": "src/studio-home/processing-courses/course-item/index.jsx", + "line": 32, + "column": 8, + "index": 793 + }, + { + "filePath": "src/studio-home/processing-courses/course-item/index.jsx", + "line": 58, + "column": 8, + "index": 1753 + }, + { + "filePath": "src/studio-home/tabs-section/courses-tab/contact-administrator/index.jsx", + "line": 17, + "column": 4, + "index": 576 + }, + { + "filePath": "src/studio-home/verify-email-layout/index.jsx", + "line": 24, + "column": 10, + "index": 752 } ], "Card.Body": [ @@ -11772,9 +12726,9 @@ }, { "filePath": "src/files-and-uploads/table-components/ListCard.jsx", - "line": 54, - "column": 8, - "index": 1448 + "line": 49, + "column": 6, + "index": 1269 }, { "filePath": "src/generic/ConfirmationPopup.jsx", @@ -11832,11 +12786,17 @@ "column": 10, "index": 1553 }, + { + "filePath": "src/export-page/CourseExportPage.jsx", + "line": 80, + "column": 18, + "index": 3541 + }, { "filePath": "src/files-and-uploads/table-components/GalleryCard.jsx", - "line": 41, - "column": 8, - "index": 893 + "line": 36, + "column": 6, + "index": 740 }, { "filePath": "src/generic/ConfirmationPopup.jsx", @@ -11867,6 +12827,24 @@ "line": 96, "column": 6, "index": 2642 + }, + { + "filePath": "src/studio-home/card-item/index.jsx", + "line": 30, + "column": 6, + "index": 1103 + }, + { + "filePath": "src/studio-home/processing-courses/course-item/index.jsx", + "line": 33, + "column": 10, + "index": 832 + }, + { + "filePath": "src/studio-home/processing-courses/course-item/index.jsx", + "line": 59, + "column": 10, + "index": 1792 } ], "IconButton": [ @@ -11878,21 +12856,21 @@ }, { "filePath": "src/files-and-uploads/FileInfo.jsx", - "line": 77, + "line": 100, "column": 14, - "index": 2124 + "index": 2830 }, { "filePath": "src/files-and-uploads/FileInfo.jsx", - "line": 92, + "line": 117, "column": 14, - "index": 2690 + "index": 3481 }, { "filePath": "src/files-and-uploads/FileMenu.jsx", - "line": 26, + "line": 27, "column": 10, - "index": 511 + "index": 535 }, { "filePath": "src/generic/CollapsableEditor.jsx", @@ -11918,12 +12896,6 @@ "column": 6, "index": 1831 }, - { - "filePath": "src/grading-settings/grading-scale/GradingScale.jsx", - "line": 190, - "column": 6, - "index": 6007 - }, { "filePath": "src/pages-and-resources/pages/PageCard.jsx", "line": 40, @@ -11946,9 +12918,15 @@ }, { "filePath": "src/files-and-uploads/FileInfo.jsx", - "line": 108, + "line": 132, "column": 21, - "index": 3348 + "index": 4155 + }, + { + "filePath": "src/schedule-and-details/schedule-section/certificate-display-row/CertificateDisplayRow.jsx", + "line": 101, + "column": 38, + "index": 3008 } ], "ModalPopup": [ @@ -11957,6 +12935,12 @@ "line": 75, "column": 16, "index": 1998 + }, + { + "filePath": "src/studio-header/MobileHeader.jsx", + "line": 25, + "column": 6, + "index": 642 } ], "Card.Section": [ @@ -11966,17 +12950,23 @@ "column": 10, "index": 2590 }, + { + "filePath": "src/export-page/CourseExportPage.jsx", + "line": 85, + "column": 20, + "index": 3768 + }, { "filePath": "src/files-and-uploads/table-components/GalleryCard.jsx", - "line": 57, - "column": 8, - "index": 1388 + "line": 55, + "column": 6, + "index": 1431 }, { "filePath": "src/files-and-uploads/table-components/ListCard.jsx", - "line": 55, - "column": 10, - "index": 1470 + "line": 50, + "column": 8, + "index": 1289 }, { "filePath": "src/generic/ConfirmationPopup.jsx", @@ -12013,6 +13003,30 @@ "line": 32, "column": 8, "index": 992 + }, + { + "filePath": "src/studio-home/processing-courses/course-item/index.jsx", + "line": 45, + "column": 10, + "index": 1327 + }, + { + "filePath": "src/studio-home/tabs-section/courses-tab/contact-administrator/index.jsx", + "line": 18, + "column": 6, + "index": 605 + }, + { + "filePath": "src/studio-home/tabs-section/courses-tab/contact-administrator/index.jsx", + "line": 27, + "column": 10, + "index": 917 + }, + { + "filePath": "src/studio-home/verify-email-layout/index.jsx", + "line": 25, + "column": 12, + "index": 787 } ], "Form.Group": [ @@ -12022,12 +13036,36 @@ "column": 12, "index": 2617 }, + { + "filePath": "src/course-team/add-user-form/AddUserForm.jsx", + "line": 27, + "column": 12, + "index": 688 + }, + { + "filePath": "src/course-updates/update-form/UpdateForm.jsx", + "line": 63, + "column": 14, + "index": 1693 + }, + { + "filePath": "src/course-updates/update-form/UpdateForm.jsx", + "line": 100, + "column": 12, + "index": 3462 + }, { "filePath": "src/generic/course-upload-image/index.jsx", "line": 108, "column": 4, "index": 2786 }, + { + "filePath": "src/generic/create-or-rerun-course/CreateOrRerunCourseForm.jsx", + "line": 223, + "column": 10, + "index": 6972 + }, { "filePath": "src/generic/datepicker-control/DatepickerControl.jsx", "line": 37, @@ -12048,9 +13086,9 @@ }, { "filePath": "src/grading-settings/assignment-section/assignments/AssignmentItem.jsx", - "line": 24, + "line": 25, "column": 4, - "index": 415 + "index": 434 }, { "filePath": "src/grading-settings/assignment-section/assignments/AssignmentTypeName.jsx", @@ -12066,9 +13104,9 @@ }, { "filePath": "src/grading-settings/deadline-section/index.jsx", - "line": 31, + "line": 43, "column": 4, - "index": 937 + "index": 1306 }, { "filePath": "src/pages-and-resources/discussions/app-config-form/apps/lti/LtiConfigForm.jsx", @@ -12150,33 +13188,33 @@ }, { "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", - "line": 243, + "line": 248, "column": 8, - "index": 9026 + "index": 9273 }, { "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", - "line": 265, + "line": 270, "column": 12, - "index": 10009 + "index": 10256 }, { "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", - "line": 309, + "line": 314, "column": 10, - "index": 11917 + "index": 12164 }, { "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", - "line": 333, + "line": 338, "column": 10, - "index": 13039 + "index": 13286 }, { "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", - "line": 366, + "line": 371, "column": 12, - "index": 14858 + "index": 15105 }, { "filePath": "src/schedule-and-details/details-section/index.jsx", @@ -12290,13 +13328,19 @@ "filePath": "src/schedule-and-details/requirements-section/index.jsx", "line": 69, "column": 8, - "index": 2319 + "index": 2340 }, { "filePath": "src/schedule-and-details/schedule-section/certificate-display-row/CertificateDisplayRow.jsx", "line": 124, "column": 8, - "index": 3807 + "index": 3813 + }, + { + "filePath": "src/studio-home/organization-section/index.jsx", + "line": 48, + "column": 6, + "index": 1650 } ], "Form.Control": [ @@ -12312,6 +13356,12 @@ "column": 10, "index": 3285 }, + { + "filePath": "src/generic/create-or-rerun-course/CreateOrRerunCourseForm.jsx", + "line": 231, + "column": 14, + "index": 7274 + }, { "filePath": "src/generic/FormikControl.jsx", "line": 25, @@ -12320,9 +13370,9 @@ }, { "filePath": "src/grading-settings/assignment-section/assignments/AssignmentItem.jsx", - "line": 29, + "line": 30, "column": 6, - "index": 607 + "index": 626 }, { "filePath": "src/grading-settings/assignment-section/assignments/AssignmentTypeName.jsx", @@ -12338,9 +13388,9 @@ }, { "filePath": "src/grading-settings/deadline-section/index.jsx", - "line": 35, + "line": 50, "column": 6, - "index": 1104 + "index": 1565 }, { "filePath": "src/pages-and-resources/discussions/app-config-form/apps/lti/LtiConfigForm.jsx", @@ -12392,15 +13442,15 @@ }, { "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", - "line": 317, + "line": 322, "column": 12, - "index": 12280 + "index": 12527 }, { "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", - "line": 341, + "line": 346, "column": 12, - "index": 13405 + "index": 13652 }, { "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", @@ -12460,7 +13510,7 @@ "filePath": "src/schedule-and-details/requirements-section/index.jsx", "line": 73, "column": 10, - "index": 2478 + "index": 2499 } ], "Card.Status": [ @@ -12471,152 +13521,18 @@ "index": 3059 } ], - "SpinnerSimple": [ - { - "filePath": "src/custom-pages/CustomPageCard.jsx", - "line": 59, - "column": 26, - "index": 1585 - }, - { - "filePath": "src/custom-pages/CustomPages.jsx", - "line": 96, - "column": 26, - "index": 3079 - } - ], - "ActionRow.Spacer": [ - { - "filePath": "src/custom-pages/CustomPageCard.jsx", - "line": 70, - "column": 8, - "index": 1853 - }, - { - "filePath": "src/custom-pages/CustomPages.jsx", - "line": 128, - "column": 10, - "index": 4193 - }, - { - "filePath": "src/files-and-uploads/FileInfo.jsx", - "line": 76, - "column": 14, - "index": 2089 - }, - { - "filePath": "src/files-and-uploads/FileInfo.jsx", - "line": 91, - "column": 14, - "index": 2655 - }, - { - "filePath": "src/files-and-uploads/FileInfo.jsx", - "line": 113, - "column": 14, - "index": 3479 - }, - { - "filePath": "src/schedule-and-details/license-section/license-commons-options/index.jsx", - "line": 77, - "column": 14, - "index": 2474 - } - ], - "IconButtonWithTooltip": [ - { - "filePath": "src/custom-pages/CustomPageCard.jsx", - "line": 71, - "column": 8, - "index": 1882 - }, - { - "filePath": "src/custom-pages/CustomPageCard.jsx", - "line": 81, - "column": 8, - "index": 2287 - }, - { - "filePath": "src/custom-pages/CustomPageCard.jsx", - "line": 91, - "column": 8, - "index": 2756 - }, + "Hyperlink": [ { - "filePath": "src/files-and-uploads/FileInfo.jsx", - "line": 104, + "filePath": "src/course-rerun/course-rerun-sidebar/index.jsx", + "line": 49, "column": 14, - "index": 3143 - } - ], - "EditOutline": [ - { - "filePath": "src/custom-pages/CustomPageCard.jsx", - "line": 75, - "column": 15, - "index": 2092 - } - ], - "DeleteOutline": [ - { - "filePath": "src/custom-pages/CustomPageCard.jsx", - "line": 95, - "column": 15, - "index": 2970 - } - ], - "Add": [ - { - "filePath": "src/custom-pages/CustomPages.jsx", - "line": 95, - "column": 26, - "index": 3044 - }, - { - "filePath": "src/custom-pages/CustomPages.jsx", - "line": 130, - "column": 24, - "index": 4256 - }, - { - "filePath": "src/files-and-uploads/table-components/TableActions.jsx", - "line": 40, - "column": 24, - "index": 1216 - }, - { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-restrictions/RestrictionSchedules.jsx", - "line": 70, - "column": 28, - "index": 2300 - }, - { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-topics/DiscussionTopics.jsx", - "line": 81, - "column": 30, - "index": 3061 + "index": 1477 }, - { - "filePath": "src/pages-and-resources/teams/Settings.jsx", - "line": 150, - "column": 34, - "index": 5517 - } - ], - "Breadcrumb": [ { "filePath": "src/custom-pages/CustomPages.jsx", - "line": 116, - "column": 10, - "index": 3749 - } - ], - "Hyperlink": [ - { - "filePath": "src/custom-pages/CustomPages.jsx", - "line": 136, + "line": 140, "column": 10, - "index": 4449 + "index": 4666 }, { "filePath": "src/generic/course-upload-image/index.jsx", @@ -12674,9 +13590,9 @@ }, { "filePath": "src/pages-and-resources/PagesAndResources.jsx", - "line": 69, + "line": 73, "column": 10, - "index": 2590 + "index": 2811 }, { "filePath": "src/pages-and-resources/proctoring/Settings.jsx", @@ -12686,15 +13602,15 @@ }, { "filePath": "src/pages-and-resources/xpert-unit-summary/settings-modal/SettingsModal.jsx", - "line": 163, - "column": 4, - "index": 4918 + "line": 260, + "column": 6, + "index": 7471 }, { - "filePath": "src/pages-and-resources/xpert-unit-summary/XpertUnitSummarySettings.jsx", - "line": 35, - "column": 12, - "index": 1126 + "filePath": "src/pages-and-resources/xpert-unit-summary/settings-modal/SettingsModal.jsx", + "line": 273, + "column": 6, + "index": 7778 }, { "filePath": "src/schedule-and-details/basic-section/index.jsx", @@ -12725,272 +13641,908 @@ "line": 49, "column": 22, "index": 1633 - } - ], - "ModalDialog": [ - { - "filePath": "src/custom-pages/CustomPages.jsx", - "line": 234, - "column": 8, - "index": 8292 }, { - "filePath": "src/files-and-uploads/FileInfo.jsx", - "line": 36, - "column": 4, - "index": 780 - }, - { - "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", - "line": 65, - "column": 2, - "index": 2043 + "filePath": "src/studio-home/card-item/index.jsx", + "line": 32, + "column": 10, + "index": 1159 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/AppConfigForm.jsx", - "line": 119, - "column": 6, - "index": 3525 + "filePath": "src/studio-home/card-item/index.jsx", + "line": 45, + "column": 14, + "index": 1540 }, { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 555, - "column": 4, - "index": 21726 + "filePath": "src/studio-home/card-item/index.jsx", + "line": 49, + "column": 12, + "index": 1708 }, { - "filePath": "src/pages-and-resources/xpert-unit-summary/settings-modal/SettingsModal.jsx", - "line": 66, - "column": 2, - "index": 2111 + "filePath": "src/studio-home/processing-courses/course-item/index.jsx", + "line": 48, + "column": 16, + "index": 1499 } ], - "ModalDialog.Header": [ + "Stack": [ { - "filePath": "src/custom-pages/CustomPages.jsx", - "line": 240, - "column": 10, - "index": 8466 + "filePath": "src/course-rerun/index.jsx", + "line": 58, + "column": 14, + "index": 1815 }, { "filePath": "src/files-and-uploads/FileInfo.jsx", - "line": 43, + "line": 74, + "column": 10, + "index": 1904 + }, + { + "filePath": "src/schedule-and-details/license-section/license-commons-options/index.jsx", + "line": 58, "column": 6, - "index": 920 + "index": 1808 }, { - "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", - "line": 74, + "filePath": "src/schedule-and-details/license-section/license-icons/index.jsx", + "line": 27, "column": 4, - "index": 2206 + "index": 769 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/AppConfigForm.jsx", - "line": 125, - "column": 8, - "index": 3736 + "filePath": "src/schedule-and-details/requirements-section/grade-requirements/index.jsx", + "line": 22, + "column": 4, + "index": 579 }, { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 566, - "column": 8, - "index": 22019 + "filePath": "src/studio-home/processing-courses/index.jsx", + "line": 20, + "column": 6, + "index": 564 + } + ], + "IconAdd": [ + { + "filePath": "src/course-team/add-team-member/AddTeamMember.jsx", + "line": 20, + "column": 20, + "index": 745 }, { - "filePath": "src/pages-and-resources/xpert-unit-summary/settings-modal/SettingsModal.jsx", - "line": 75, - "column": 4, - "index": 2274 + "filePath": "src/course-team/CourseTeam.jsx", + "line": 83, + "column": 36, + "index": 2635 + }, + { + "filePath": "src/grading-settings/grading-scale/GradingScale.jsx", + "line": 197, + "column": 13, + "index": 6391 + }, + { + "filePath": "src/grading-settings/GradingSettings.jsx", + "line": 207, + "column": 34, + "index": 8440 } ], - "ModalDialog.Title": [ + "Form.Label": [ { - "filePath": "src/custom-pages/CustomPages.jsx", - "line": 241, - "column": 12, - "index": 8499 + "filePath": "src/course-team/add-user-form/AddUserForm.jsx", + "line": 29, + "column": 14, + "index": 835 }, { - "filePath": "src/files-and-uploads/FileInfo.jsx", - "line": 44, - "column": 8, - "index": 949 + "filePath": "src/generic/course-upload-image/index.jsx", + "line": 109, + "column": 6, + "index": 2841 }, { - "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", - "line": 75, - "column": 6, - "index": 2233 + "filePath": "src/generic/create-or-rerun-course/CreateOrRerunCourseForm.jsx", + "line": 229, + "column": 12, + "index": 7183 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/AppConfigForm.jsx", - "line": 126, - "column": 10, - "index": 3784 + "filePath": "src/generic/datepicker-control/DatepickerControl.jsx", + "line": 38, + "column": 6, + "index": 969 }, { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 567, + "filePath": "src/generic/FormSwitchGroup.jsx", + "line": 30, "column": 10, - "index": 22050 + "index": 767 }, { - "filePath": "src/pages-and-resources/xpert-unit-summary/settings-modal/SettingsModal.jsx", - "line": 76, + "filePath": "src/grading-settings/assignment-section/assignments/AssignmentItem.jsx", + "line": 29, "column": 6, - "index": 2301 - } - ], - "ModalDialog.Body": [ + "index": 561 + }, { - "filePath": "src/custom-pages/CustomPages.jsx", - "line": 245, - "column": 10, - "index": 8665 + "filePath": "src/grading-settings/assignment-section/assignments/AssignmentTypeName.jsx", + "line": 21, + "column": 8, + "index": 666 }, { - "filePath": "src/files-and-uploads/FileInfo.jsx", - "line": 48, + "filePath": "src/grading-settings/credit-section/index.jsx", + "line": 39, "column": 6, - "index": 1062 + "index": 986 }, { - "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", - "line": 79, - "column": 4, - "index": 2352 + "filePath": "src/grading-settings/deadline-section/index.jsx", + "line": 47, + "column": 6, + "index": 1434 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/AppConfigForm.jsx", - "line": 130, + "filePath": "src/pages-and-resources/live/BBBSettings.jsx", + "line": 55, "column": 8, - "index": 3995 + "index": 1814 }, { "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 571, - "column": 8, - "index": 22175 + "line": 299, + "column": 14, + "index": 11212 }, { - "filePath": "src/pages-and-resources/xpert-unit-summary/settings-modal/SettingsModal.jsx", - "line": 80, - "column": 4, - "index": 2420 - } - ], - "Image": [ - { - "filePath": "src/custom-pages/CustomPages.jsx", - "line": 246, + "filePath": "src/pages-and-resources/proctoring/Settings.jsx", + "line": 325, "column": 12, - "index": 8696 + "index": 12380 }, { - "filePath": "src/files-and-uploads/FileThumbnail.jsx", - "line": 24, - "column": 8, - "index": 412 + "filePath": "src/pages-and-resources/proctoring/Settings.jsx", + "line": 356, + "column": 14, + "index": 13913 }, { - "filePath": "src/files-and-uploads/table-components/GalleryCard.jsx", - "line": 60, + "filePath": "src/pages-and-resources/proctoring/Settings.jsx", + "line": 379, "column": 14, - "index": 1531 + "index": 15010 }, { - "filePath": "src/files-and-uploads/table-components/ListCard.jsx", - "line": 47, - "column": 12, - "index": 1064 + "filePath": "src/pages-and-resources/teams/GroupEditor.jsx", + "line": 99, + "column": 14, + "index": 4224 }, { - "filePath": "src/generic/course-upload-image/index.jsx", - "line": 61, - "column": 6, - "index": 1666 - } - ], - "Toast": [ - { - "filePath": "src/files-and-uploads/ApiStatusToast.jsx", - "line": 22, - "column": 4, - "index": 436 - } - ], - "Stack": [ - { - "filePath": "src/files-and-uploads/FileInfo.jsx", - "line": 59, - "column": 10, - "index": 1461 + "filePath": "src/pages-and-resources/teams/GroupEditor.jsx", + "line": 128, + "column": 21, + "index": 5539 }, { - "filePath": "src/schedule-and-details/license-section/license-commons-options/index.jsx", - "line": 58, - "column": 6, - "index": 1808 + "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", + "line": 271, + "column": 14, + "index": 10317 }, { - "filePath": "src/schedule-and-details/license-section/license-icons/index.jsx", - "line": 27, - "column": 4, - "index": 769 + "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", + "line": 315, + "column": 12, + "index": 12224 }, { - "filePath": "src/schedule-and-details/requirements-section/grade-requirements/index.jsx", - "line": 22, - "column": 4, - "index": 579 - } - ], - "Truncate": [ + "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", + "line": 339, + "column": 12, + "index": 13355 + }, { - "filePath": "src/files-and-uploads/FileInfo.jsx", - "line": 73, + "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", + "line": 372, "column": 14, - "index": 1992 + "index": 15169 }, { - "filePath": "src/files-and-uploads/FileInfo.jsx", - "line": 88, - "column": 14, - "index": 2558 + "filePath": "src/schedule-and-details/details-section/index.jsx", + "line": 25, + "column": 8, + "index": 862 }, { - "filePath": "src/files-and-uploads/table-components/GalleryCard.jsx", - "line": 67, + "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", + "line": 22, + "column": 14, + "index": 626 + }, + { + "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", + "line": 36, + "column": 14, + "index": 1210 + }, + { + "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", + "line": 50, + "column": 14, + "index": 1799 + }, + { + "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", + "line": 65, + "column": 14, + "index": 2465 + }, + { + "filePath": "src/schedule-and-details/introducing-section/extended-course-details/index.jsx", + "line": 56, "column": 10, - "index": 1929 + "index": 1776 }, { - "filePath": "src/files-and-uploads/table-components/ListCard.jsx", + "filePath": "src/schedule-and-details/introducing-section/index.jsx", + "line": 92, + "column": 10, + "index": 2616 + }, + { + "filePath": "src/schedule-and-details/introducing-section/index.jsx", + "line": 113, + "column": 12, + "index": 3358 + }, + { + "filePath": "src/schedule-and-details/introducing-section/index.jsx", + "line": 122, + "column": 14, + "index": 3784 + }, + { + "filePath": "src/schedule-and-details/introducing-section/introduction-video/index.jsx", + "line": 15, + "column": 6, + "index": 440 + }, + { + "filePath": "src/schedule-and-details/learning-outcomes-section/index.jsx", + "line": 35, + "column": 6, + "index": 1028 + }, + { + "filePath": "src/schedule-and-details/pacing-section/index.jsx", + "line": 23, + "column": 10, + "index": 697 + }, + { + "filePath": "src/schedule-and-details/requirements-section/entrance-exam/index.jsx", + "line": 28, + "column": 6, + "index": 859 + }, + { + "filePath": "src/schedule-and-details/requirements-section/grade-requirements/index.jsx", + "line": 19, + "column": 4, + "index": 469 + }, + { + "filePath": "src/schedule-and-details/requirements-section/index.jsx", + "line": 34, + "column": 6, + "index": 1051 + }, + { + "filePath": "src/schedule-and-details/requirements-section/index.jsx", + "line": 70, + "column": 10, + "index": 2393 + }, + { + "filePath": "src/schedule-and-details/schedule-section/certificate-display-row/CertificateDisplayRow.jsx", + "line": 125, + "column": 10, + "index": 3866 + } + ], + "Badge": [ + { + "filePath": "src/course-team/course-team-member/CourseTeamMember.jsx", + "line": 33, + "column": 8, + "index": 791 + }, + { + "filePath": "src/generic/processing-notification/index.jsx", + "line": 11, + "column": 2, + "index": 361 + }, + { + "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", + "line": 232, + "column": 24, + "index": 7436 + }, + { + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-restrictions/CollapseCardHeading.jsx", + "line": 18, + "column": 22, + "index": 386 + }, + { + "filePath": "src/pages-and-resources/pages/PageCard.jsx", + "line": 70, + "column": 10, + "index": 2102 + }, + { + "filePath": "src/pages-and-resources/proctoring/Settings.jsx", + "line": 277, + "column": 18, + "index": 10526 + }, + { + "filePath": "src/pages-and-resources/xpert-unit-summary/settings-modal/SettingsModal.jsx", + "line": 344, + "column": 22, + "index": 10316 + } + ], + "MailtoLink": [ + { + "filePath": "src/course-team/course-team-member/CourseTeamMember.jsx", + "line": 42, + "column": 8, + "index": 1271 + }, + { + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/lti/LtiConfigForm.jsx", + "line": 76, + "column": 16, + "index": 3127 + }, + { + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/lti/LtiConfigForm.jsx", + "line": 89, + "column": 16, + "index": 3532 + }, + { + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/AppExternalLinks.jsx", + "line": 50, + "column": 16, + "index": 1464 + }, + { + "filePath": "src/schedule-and-details/basic-section/index.jsx", + "line": 113, + "column": 8, + "index": 3157 + }, + { + "filePath": "src/studio-home/home-sidebar/index.jsx", + "line": 53, + "column": 16, + "index": 1967 + }, + { + "filePath": "src/studio-home/home-sidebar/index.jsx", + "line": 83, + "column": 16, + "index": 2991 + }, + { + "filePath": "src/studio-home/StudioHome.jsx", + "line": 54, + "column": 8, + "index": 1474 + } + ], + "IconButtonWithTooltip": [ + { + "filePath": "src/course-team/course-team-member/CourseTeamMember.jsx", + "line": 55, + "column": 12, + "index": 1849 + }, + { + "filePath": "src/custom-pages/CustomPageCard.jsx", + "line": 71, + "column": 8, + "index": 1882 + }, + { + "filePath": "src/custom-pages/CustomPageCard.jsx", + "line": 81, + "column": 8, + "index": 2287 + }, + { + "filePath": "src/custom-pages/CustomPageCard.jsx", + "line": 91, + "column": 8, + "index": 2756 + }, + { + "filePath": "src/files-and-uploads/FileInfo.jsx", + "line": 128, + "column": 14, + "index": 3950 + }, + { + "filePath": "src/grading-settings/grading-scale/GradingScale.jsx", + "line": 191, + "column": 6, + "index": 6119 + } + ], + "DeleteOutline": [ + { + "filePath": "src/course-team/course-team-member/CourseTeamMember.jsx", "line": 56, + "column": 19, + "index": 1891 + }, + { + "filePath": "src/custom-pages/CustomPageCard.jsx", + "line": 95, + "column": 15, + "index": 2970 + } + ], + "AddIcon": [ + { + "filePath": "src/course-updates/CourseUpdates.jsx", + "line": 85, + "column": 36, + "index": 3184 + }, + { + "filePath": "src/schedule-and-details/instructors-section/index.jsx", + "line": 72, + "column": 26, + "index": 2006 + }, + { + "filePath": "src/schedule-and-details/learning-outcomes-section/index.jsx", + "line": 61, + "column": 26, + "index": 1907 + } + ], + "CalendarIcon": [ + { + "filePath": "src/course-updates/update-form/UpdateForm.jsx", + "line": 69, + "column": 25, + "index": 2040 + } + ], + "ErrorIcon": [ + { + "filePath": "src/course-updates/update-form/UpdateForm.jsx", + "line": 94, + "column": 31, + "index": 3183 + } + ], + "SpinnerSimple": [ + { + "filePath": "src/custom-pages/CustomPageCard.jsx", + "line": 59, + "column": 26, + "index": 1585 + }, + { + "filePath": "src/custom-pages/CustomPages.jsx", + "line": 100, + "column": 26, + "index": 3296 + }, + { + "filePath": "src/pages-and-resources/xpert-unit-summary/settings-modal/SettingsModal.jsx", + "line": 171, + "column": 30, + "index": 4804 + } + ], + "ActionRow.Spacer": [ + { + "filePath": "src/custom-pages/CustomPageCard.jsx", + "line": 70, + "column": 8, + "index": 1853 + }, + { + "filePath": "src/custom-pages/CustomPages.jsx", + "line": 132, + "column": 10, + "index": 4410 + }, + { + "filePath": "src/files-and-uploads/FileInfo.jsx", + "line": 99, + "column": 14, + "index": 2795 + }, + { + "filePath": "src/files-and-uploads/FileInfo.jsx", + "line": 116, + "column": 14, + "index": 3446 + }, + { + "filePath": "src/files-and-uploads/FileInfo.jsx", + "line": 137, + "column": 14, + "index": 4286 + }, + { + "filePath": "src/schedule-and-details/license-section/license-commons-options/index.jsx", + "line": 77, + "column": 14, + "index": 2474 + }, + { + "filePath": "src/studio-header/HeaderBody.jsx", + "line": 83, + "column": 14, + "index": 1990 + }, + { + "filePath": "src/studio-header/HeaderBody.jsx", + "line": 105, + "column": 10, + "index": 3065 + }, + { + "filePath": "src/studio-home/processing-courses/course-item/index.jsx", + "line": 39, + "column": 16, + "index": 1097 + } + ], + "EditOutline": [ + { + "filePath": "src/custom-pages/CustomPageCard.jsx", + "line": 75, + "column": 15, + "index": 2092 + } + ], + "Add": [ + { + "filePath": "src/custom-pages/CustomPages.jsx", + "line": 99, + "column": 26, + "index": 3261 + }, + { + "filePath": "src/custom-pages/CustomPages.jsx", + "line": 134, + "column": 24, + "index": 4473 + }, + { + "filePath": "src/files-and-uploads/table-components/TableActions.jsx", + "line": 60, + "column": 26, + "index": 1825 + }, + { + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-restrictions/RestrictionSchedules.jsx", + "line": 70, + "column": 28, + "index": 2300 + }, + { + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-topics/DiscussionTopics.jsx", + "line": 81, + "column": 30, + "index": 3061 + }, + { + "filePath": "src/pages-and-resources/teams/Settings.jsx", + "line": 150, + "column": 34, + "index": 5517 + } + ], + "Breadcrumb": [ + { + "filePath": "src/custom-pages/CustomPages.jsx", + "line": 120, + "column": 10, + "index": 3966 + } + ], + "ModalDialog": [ + { + "filePath": "src/custom-pages/CustomPages.jsx", + "line": 238, + "column": 8, + "index": 8509 + }, + { + "filePath": "src/files-and-uploads/FileInfo.jsx", + "line": 46, + "column": 4, + "index": 1011 + }, + { + "filePath": "src/files-and-uploads/table-components/TableActions.jsx", + "line": 63, + "column": 6, + "index": 1949 + }, + { + "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", + "line": 65, + "column": 2, + "index": 2043 + }, + { + "filePath": "src/pages-and-resources/discussions/app-config-form/AppConfigForm.jsx", + "line": 119, + "column": 6, + "index": 3525 + }, + { + "filePath": "src/pages-and-resources/proctoring/Settings.jsx", + "line": 555, + "column": 4, + "index": 21726 + }, + { + "filePath": "src/pages-and-resources/xpert-unit-summary/settings-modal/SettingsModal.jsx", + "line": 72, + "column": 2, + "index": 2299 + } + ], + "ModalDialog.Header": [ + { + "filePath": "src/custom-pages/CustomPages.jsx", + "line": 244, + "column": 10, + "index": 8683 + }, + { + "filePath": "src/files-and-uploads/FileInfo.jsx", + "line": 54, + "column": 6, + "index": 1188 + }, + { + "filePath": "src/files-and-uploads/table-components/TableActions.jsx", + "line": 70, + "column": 8, + "index": 2140 + }, + { + "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", + "line": 74, + "column": 4, + "index": 2206 + }, + { + "filePath": "src/pages-and-resources/discussions/app-config-form/AppConfigForm.jsx", + "line": 125, + "column": 8, + "index": 3736 + }, + { + "filePath": "src/pages-and-resources/proctoring/Settings.jsx", + "line": 566, + "column": 8, + "index": 22019 + }, + { + "filePath": "src/pages-and-resources/xpert-unit-summary/settings-modal/SettingsModal.jsx", + "line": 81, + "column": 4, + "index": 2462 + } + ], + "ModalDialog.Title": [ + { + "filePath": "src/custom-pages/CustomPages.jsx", + "line": 245, "column": 12, - "index": 1497 + "index": 8716 + }, + { + "filePath": "src/files-and-uploads/FileInfo.jsx", + "line": 55, + "column": 8, + "index": 1217 + }, + { + "filePath": "src/files-and-uploads/table-components/TableActions.jsx", + "line": 71, + "column": 10, + "index": 2171 + }, + { + "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", + "line": 75, + "column": 6, + "index": 2233 + }, + { + "filePath": "src/pages-and-resources/discussions/app-config-form/AppConfigForm.jsx", + "line": 126, + "column": 10, + "index": 3784 + }, + { + "filePath": "src/pages-and-resources/proctoring/Settings.jsx", + "line": 567, + "column": 10, + "index": 22050 + }, + { + "filePath": "src/pages-and-resources/xpert-unit-summary/settings-modal/SettingsModal.jsx", + "line": 82, + "column": 6, + "index": 2489 + } + ], + "ModalDialog.Body": [ + { + "filePath": "src/custom-pages/CustomPages.jsx", + "line": 249, + "column": 10, + "index": 8882 + }, + { + "filePath": "src/files-and-uploads/FileInfo.jsx", + "line": 63, + "column": 6, + "index": 1501 + }, + { + "filePath": "src/files-and-uploads/table-components/TableActions.jsx", + "line": 75, + "column": 8, + "index": 2327 + }, + { + "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", + "line": 79, + "column": 4, + "index": 2352 + }, + { + "filePath": "src/pages-and-resources/discussions/app-config-form/AppConfigForm.jsx", + "line": 130, + "column": 8, + "index": 3995 + }, + { + "filePath": "src/pages-and-resources/proctoring/Settings.jsx", + "line": 571, + "column": 8, + "index": 22175 + }, + { + "filePath": "src/pages-and-resources/xpert-unit-summary/settings-modal/SettingsModal.jsx", + "line": 86, + "column": 4, + "index": 2608 + } + ], + "Image": [ + { + "filePath": "src/custom-pages/CustomPages.jsx", + "line": 250, + "column": 12, + "index": 8913 + }, + { + "filePath": "src/files-and-uploads/FileThumbnail.jsx", + "line": 24, + "column": 8, + "index": 431 + }, + { + "filePath": "src/files-and-uploads/table-components/GalleryCard.jsx", + "line": 58, + "column": 12, + "index": 1568 + }, + { + "filePath": "src/files-and-uploads/table-components/ListCard.jsx", + "line": 42, + "column": 10, + "index": 899 + }, + { + "filePath": "src/generic/course-upload-image/index.jsx", + "line": 61, + "column": 6, + "index": 1666 + } + ], + "ArrowCircleDownIcon": [ + { + "filePath": "src/export-page/CourseExportPage.jsx", + "line": 91, + "column": 36, + "index": 4057 + } + ], + "Toast": [ + { + "filePath": "src/files-and-uploads/ApiStatusToast.jsx", + "line": 22, + "column": 4, + "index": 429 + } + ], + "Truncate": [ + { + "filePath": "src/files-and-uploads/FileInfo.jsx", + "line": 57, + "column": 12, + "index": 1301 + }, + { + "filePath": "src/files-and-uploads/FileInfo.jsx", + "line": 95, + "column": 16, + "index": 2672 + }, + { + "filePath": "src/files-and-uploads/FileInfo.jsx", + "line": 112, + "column": 16, + "index": 3323 + }, + { + "filePath": "src/files-and-uploads/table-components/GalleryCard.jsx", + "line": 66, + "column": 10, + "index": 2004 + }, + { + "filePath": "src/files-and-uploads/table-components/ListCard.jsx", + "line": 52, + "column": 12, + "index": 1368 } ], "ContentCopy": [ { "filePath": "src/files-and-uploads/FileInfo.jsx", - "line": 78, + "line": 101, "column": 21, - "index": 2157 + "index": 2863 }, { "filePath": "src/files-and-uploads/FileInfo.jsx", - "line": 93, + "line": 118, "column": 21, - "index": 2723 + "index": 3514 } ], "CheckboxControl": [ { "filePath": "src/files-and-uploads/FileInfo.jsx", - "line": 114, + "line": 138, "column": 14, - "index": 3514 + "index": 4321 }, { "filePath": "src/pages-and-resources/discussions/app-list/AppCard.jsx", @@ -13008,15 +14560,21 @@ "Dropdown": [ { "filePath": "src/files-and-uploads/FileMenu.jsx", - "line": 23, + "line": 24, "column": 2, - "index": 390 + "index": 414 }, { "filePath": "src/files-and-uploads/table-components/TableActions.jsx", - "line": 16, + "line": 35, + "column": 6, + "index": 892 + }, + { + "filePath": "src/generic/create-or-rerun-course/CreateOrRerunCourseForm.jsx", + "line": 176, "column": 4, - "index": 418 + "index": 5544 }, { "filePath": "src/schedule-and-details/details-section/index.jsx", @@ -13034,167 +14592,191 @@ "filePath": "src/schedule-and-details/schedule-section/certificate-display-row/CertificateDisplayRow.jsx", "line": 128, "column": 10, - "index": 3975 + "index": 3981 } ], "Dropdown.Toggle": [ { "filePath": "src/files-and-uploads/FileMenu.jsx", - "line": 24, + "line": 25, "column": 4, - "index": 446 + "index": 470 }, { "filePath": "src/files-and-uploads/table-components/TableActions.jsx", - "line": 17, + "line": 36, + "column": 8, + "index": 928 + }, + { + "filePath": "src/generic/create-or-rerun-course/CreateOrRerunCourseForm.jsx", + "line": 177, "column": 6, - "index": 435 + "index": 5578 }, { "filePath": "src/schedule-and-details/details-section/index.jsx", "line": 27, "column": 10, - "index": 961 + "index": 982 }, { "filePath": "src/schedule-and-details/requirements-section/index.jsx", "line": 36, "column": 8, - "index": 1146 + "index": 1167 }, { "filePath": "src/schedule-and-details/schedule-section/certificate-display-row/CertificateDisplayRow.jsx", "line": 129, "column": 12, - "index": 3998 + "index": 4026 } ], "Dropdown.Menu": [ { "filePath": "src/files-and-uploads/FileMenu.jsx", - "line": 32, + "line": 33, "column": 4, - "index": 628 + "index": 652 }, { "filePath": "src/files-and-uploads/table-components/TableActions.jsx", - "line": 24, + "line": 43, + "column": 8, + "index": 1161 + }, + { + "filePath": "src/generic/create-or-rerun-course/CreateOrRerunCourseForm.jsx", + "line": 180, "column": 6, - "index": 654 + "index": 5756 }, { "filePath": "src/schedule-and-details/details-section/index.jsx", "line": 30, "column": 10, - "index": 1100 + "index": 1121 }, { "filePath": "src/schedule-and-details/requirements-section/index.jsx", "line": 39, "column": 8, - "index": 1285 + "index": 1306 }, { "filePath": "src/schedule-and-details/schedule-section/certificate-display-row/CertificateDisplayRow.jsx", "line": 132, "column": 12, - "index": 4160 + "index": 4188 } ], "Dropdown.Item": [ { "filePath": "src/files-and-uploads/FileMenu.jsx", - "line": 33, + "line": 34, "column": 6, - "index": 650 + "index": 674 }, { "filePath": "src/files-and-uploads/FileMenu.jsx", - "line": 38, + "line": 39, "column": 6, - "index": 827 + "index": 851 }, { "filePath": "src/files-and-uploads/FileMenu.jsx", - "line": 43, + "line": 44, "column": 6, - "index": 1001 + "index": 1025 }, { "filePath": "src/files-and-uploads/FileMenu.jsx", - "line": 46, + "line": 47, "column": 6, - "index": 1143 + "index": 1144 }, { "filePath": "src/files-and-uploads/FileMenu.jsx", - "line": 49, + "line": 50, "column": 6, - "index": 1318 + "index": 1319 }, { "filePath": "src/files-and-uploads/FileMenu.jsx", - "line": 53, + "line": 54, "column": 6, - "index": 1463 + "index": 1464 }, { "filePath": "src/files-and-uploads/table-components/TableActions.jsx", - "line": 25, - "column": 8, - "index": 678 + "line": 44, + "column": 10, + "index": 1187 }, { "filePath": "src/files-and-uploads/table-components/TableActions.jsx", - "line": 32, - "column": 8, - "index": 936 + "line": 51, + "column": 10, + "index": 1459 + }, + { + "filePath": "src/generic/create-or-rerun-course/CreateOrRerunCourseForm.jsx", + "line": 182, + "column": 10, + "index": 5823 }, { "filePath": "src/schedule-and-details/details-section/index.jsx", "line": 32, "column": 14, - "index": 1177 + "index": 1198 }, { "filePath": "src/schedule-and-details/requirements-section/index.jsx", "line": 40, "column": 10, - "index": 1311 + "index": 1332 }, { "filePath": "src/schedule-and-details/requirements-section/index.jsx", "line": 47, "column": 12, - "index": 1624 + "index": 1645 }, { "filePath": "src/schedule-and-details/schedule-section/certificate-display-row/CertificateDisplayRow.jsx", "line": 134, "column": 16, - "index": 4248 + "index": 4276 + }, + { + "filePath": "src/studio-header/NavDropdownMenu.jsx", + "line": 18, + "column": 6, + "index": 276 } ], "Dropdown.Divider": [ { "filePath": "src/files-and-uploads/FileMenu.jsx", - "line": 52, + "line": 53, "column": 6, - "index": 1436 + "index": 1437 }, { "filePath": "src/files-and-uploads/table-components/TableActions.jsx", - "line": 31, - "column": 8, - "index": 907 + "line": 50, + "column": 10, + "index": 1428 } ], "DataTable": [ { "filePath": "src/files-and-uploads/FilesAndUploads.jsx", - "line": 176, + "line": 229, "column": 8, - "index": 4909 + "index": 7042 }, { "filePath": "src/pages-and-resources/discussions/app-list/FeaturesTable.jsx", @@ -13206,9 +14788,9 @@ "Dropzone": [ { "filePath": "src/files-and-uploads/FilesAndUploads.jsx", - "line": 229, + "line": 282, "column": 12, - "index": 6492 + "index": 8623 }, { "filePath": "src/generic/course-upload-image/index.jsx", @@ -13220,117 +14802,293 @@ "DataTable.TableControlBar": [ { "filePath": "src/files-and-uploads/FilesAndUploads.jsx", - "line": 240, + "line": 293, "column": 14, - "index": 6925 + "index": 9078 } ], "CardView": [ { "filePath": "src/files-and-uploads/FilesAndUploads.jsx", - "line": 241, + "line": 294, "column": 42, - "index": 6997 + "index": 9150 }, { "filePath": "src/files-and-uploads/FilesAndUploads.jsx", - "line": 242, + "line": 295, "column": 42, - "index": 7153 + "index": 9306 } ], "DataTable.EmptyTable": [ { "filePath": "src/files-and-uploads/FilesAndUploads.jsx", - "line": 243, + "line": 296, "column": 14, - "index": 7280 + "index": 9433 } ], "DataTable.TableFooter": [ { "filePath": "src/files-and-uploads/FilesAndUploads.jsx", - "line": 244, + "line": 297, "column": 14, - "index": 7380 + "index": 9533 } ], "MoreVert": [ { "filePath": "src/files-and-uploads/table-components/GalleryCard.jsx", - "line": 51, - "column": 25, - "index": 1271 + "line": 45, + "column": 23, + "index": 1079 }, { "filePath": "src/files-and-uploads/table-components/ListCard.jsx", - "line": 73, - "column": 23, - "index": 2107 + "line": 69, + "column": 21, + "index": 1948 } ], "Card.Footer": [ { "filePath": "src/files-and-uploads/table-components/GalleryCard.jsx", "line": 71, + "column": 6, + "index": 2165 + }, + { + "filePath": "src/files-and-uploads/table-components/ListCard.jsx", + "line": 61, + "column": 6, + "index": 1643 + }, + { + "filePath": "src/generic/ConfirmationPopup.jsx", + "line": 25, + "column": 6, + "index": 570 + }, + { + "filePath": "src/generic/course-upload-image/index.jsx", + "line": 122, "column": 8, - "index": 2079 + "index": 3243 + }, + { + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-topics/TopicItem.jsx", + "line": 83, + "column": 8, + "index": 2236 + }, + { + "filePath": "src/schedule-and-details/basic-section/index.jsx", + "line": 112, + "column": 6, + "index": 3097 + }, + { + "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", + "line": 94, + "column": 6, + "index": 3649 + }, + { + "filePath": "src/schedule-and-details/introducing-section/introduction-video/index.jsx", + "line": 32, + "column": 8, + "index": 988 + }, + { + "filePath": "src/studio-home/processing-courses/course-item/index.jsx", + "line": 70, + "column": 10, + "index": 2235 + } + ], + "Chip": [ + { + "filePath": "src/files-and-uploads/table-components/GalleryCard.jsx", + "line": 72, + "column": 8, + "index": 2187 }, { "filePath": "src/files-and-uploads/table-components/ListCard.jsx", - "line": 64, + "line": 56, + "column": 10, + "index": 1517 + } + ], + "SelectableBox.Set": [ + { + "filePath": "src/files-and-uploads/table-components/TableActions.jsx", + "line": 76, + "column": 10, + "index": 2356 + }, + { + "filePath": "src/pages-and-resources/live/Settings.jsx", + "line": 97, + "column": 12, + "index": 3905 + } + ], + "SelectableBox": [ + { + "filePath": "src/files-and-uploads/table-components/TableActions.jsx", + "line": 84, + "column": 12, + "index": 2585 + }, + { + "filePath": "src/files-and-uploads/table-components/TableActions.jsx", + "line": 92, + "column": 12, + "index": 2876 + }, + { + "filePath": "src/files-and-uploads/table-components/TableActions.jsx", + "line": 100, + "column": 12, + "index": 3165 + }, + { + "filePath": "src/files-and-uploads/table-components/TableActions.jsx", + "line": 108, + "column": 12, + "index": 3461 + }, + { + "filePath": "src/files-and-uploads/table-components/TableActions.jsx", + "line": 116, + "column": 12, + "index": 3753 + }, + { + "filePath": "src/files-and-uploads/table-components/TableActions.jsx", + "line": 124, + "column": 12, + "index": 4040 + }, + { + "filePath": "src/pages-and-resources/live/Settings.jsx", + "line": 106, + "column": 16, + "index": 4263 + } + ], + "ModalDialog.Footer": [ + { + "filePath": "src/files-and-uploads/table-components/TableActions.jsx", + "line": 134, + "column": 8, + "index": 4388 + }, + { + "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", + "line": 82, + "column": 4, + "index": 2416 + }, + { + "filePath": "src/pages-and-resources/discussions/app-config-form/AppConfigForm.jsx", + "line": 133, + "column": 8, + "index": 4167 + }, + { + "filePath": "src/pages-and-resources/proctoring/Settings.jsx", + "line": 579, + "column": 8, + "index": 22557 + }, + { + "filePath": "src/pages-and-resources/xpert-unit-summary/settings-modal/SettingsModal.jsx", + "line": 89, + "column": 4, + "index": 2672 + } + ], + "ModalDialog.CloseButton": [ + { + "filePath": "src/files-and-uploads/table-components/TableActions.jsx", + "line": 136, + "column": 12, + "index": 4443 + }, + { + "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", + "line": 84, "column": 8, - "index": 1767 + "index": 2479 }, { - "filePath": "src/generic/ConfirmationPopup.jsx", - "line": 25, - "column": 6, - "index": 570 + "filePath": "src/pages-and-resources/discussions/app-config-form/AppConfigForm.jsx", + "line": 135, + "column": 12, + "index": 4222 }, { - "filePath": "src/generic/course-upload-image/index.jsx", - "line": 122, - "column": 8, - "index": 3243 + "filePath": "src/pages-and-resources/proctoring/Settings.jsx", + "line": 585, + "column": 12, + "index": 22686 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-topics/TopicItem.jsx", - "line": 83, + "filePath": "src/pages-and-resources/xpert-unit-summary/settings-modal/SettingsModal.jsx", + "line": 91, "column": 8, - "index": 2236 - }, + "index": 2735 + } + ], + "Row": [ { - "filePath": "src/schedule-and-details/basic-section/index.jsx", - "line": 112, + "filePath": "src/files-and-uploads/UsageMetricsMessage.jsx", + "line": 31, "column": 6, - "index": 3091 + "index": 953 }, { - "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", - "line": 94, - "column": 6, - "index": 3649 + "filePath": "src/studio-header/HeaderBody.jsx", + "line": 52, + "column": 8, + "index": 1124 }, { - "filePath": "src/schedule-and-details/introducing-section/introduction-video/index.jsx", - "line": 32, - "column": 8, - "index": 988 + "filePath": "src/studio-header/HeaderBody.jsx", + "line": 69, + "column": 12, + "index": 1634 } ], - "Chip": [ + "ErrorOutline": [ { - "filePath": "src/files-and-uploads/table-components/GalleryCard.jsx", - "line": 72, - "column": 10, - "index": 2103 + "filePath": "src/files-and-uploads/UsageMetricsMessage.jsx", + "line": 35, + "column": 15, + "index": 1072 + } + ], + "Spinner": [ + { + "filePath": "src/files-and-uploads/UsageMetricsMessage.jsx", + "line": 43, + "column": 8, + "index": 1243 }, { - "filePath": "src/files-and-uploads/table-components/ListCard.jsx", - "line": 59, - "column": 12, - "index": 1631 + "filePath": "src/generic/Loading.jsx", + "line": 12, + "column": 4, + "index": 291 + }, + { + "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", + "line": 422, + "column": 33, + "index": 17316 } ], "Alert.Heading": [ @@ -13354,9 +15112,9 @@ }, { "filePath": "src/pages-and-resources/xpert-unit-summary/settings-modal/SettingsModal.jsx", - "line": 214, + "line": 328, "column": 18, - "index": 6491 + "index": 9551 } ], "Collapsible.Advanced": [ @@ -13370,7 +15128,13 @@ "filePath": "src/schedule-and-details/schedule-section/certificate-display-row/CertificateDisplayRow.jsx", "line": 99, "column": 6, - "index": 2856 + "index": 2851 + }, + { + "filePath": "src/studio-home/collapsible-state-with-action/index.jsx", + "line": 98, + "column": 4, + "index": 3237 } ], "Collapsible.Trigger": [ @@ -13384,7 +15148,13 @@ "filePath": "src/schedule-and-details/schedule-section/certificate-display-row/CertificateDisplayRow.jsx", "line": 100, "column": 8, - "index": 2887 + "index": 2882 + }, + { + "filePath": "src/studio-home/collapsible-state-with-action/index.jsx", + "line": 102, + "column": 6, + "index": 3440 } ], "Collapsible.Visible": [ @@ -13411,6 +15181,18 @@ "line": 17, "column": 8, "index": 549 + }, + { + "filePath": "src/studio-home/collapsible-state-with-action/index.jsx", + "line": 104, + "column": 8, + "index": 3605 + }, + { + "filePath": "src/studio-home/collapsible-state-with-action/index.jsx", + "line": 113, + "column": 8, + "index": 3866 } ], "ExpandMore": [ @@ -13448,7 +15230,13 @@ "filePath": "src/schedule-and-details/schedule-section/certificate-display-row/CertificateDisplayRow.jsx", "line": 104, "column": 8, - "index": 3136 + "index": 3142 + }, + { + "filePath": "src/studio-home/collapsible-state-with-action/index.jsx", + "line": 124, + "column": 6, + "index": 4155 } ], "Alert.Link": [ @@ -13490,27 +15278,27 @@ }, { "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", - "line": 148, + "line": 153, "column": 35, - "index": 5757 + "index": 6004 }, { "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", - "line": 160, + "line": 165, "column": 35, - "index": 6313 + "index": 6560 }, { "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", - "line": 457, + "line": 462, "column": 40, - "index": 18082 + "index": 18329 }, { "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", - "line": 483, + "line": 488, "column": 14, - "index": 18864 + "index": 19111 } ], "FileUploadIcon": [ @@ -13521,218 +15309,6 @@ "index": 1873 } ], - "Form.Label": [ - { - "filePath": "src/generic/course-upload-image/index.jsx", - "line": 109, - "column": 6, - "index": 2841 - }, - { - "filePath": "src/generic/datepicker-control/DatepickerControl.jsx", - "line": 38, - "column": 6, - "index": 969 - }, - { - "filePath": "src/generic/FormSwitchGroup.jsx", - "line": 30, - "column": 10, - "index": 767 - }, - { - "filePath": "src/grading-settings/assignment-section/assignments/AssignmentItem.jsx", - "line": 28, - "column": 6, - "index": 542 - }, - { - "filePath": "src/grading-settings/assignment-section/assignments/AssignmentTypeName.jsx", - "line": 21, - "column": 8, - "index": 666 - }, - { - "filePath": "src/grading-settings/credit-section/index.jsx", - "line": 39, - "column": 6, - "index": 986 - }, - { - "filePath": "src/grading-settings/deadline-section/index.jsx", - "line": 32, - "column": 6, - "index": 973 - }, - { - "filePath": "src/pages-and-resources/live/BBBSettings.jsx", - "line": 55, - "column": 8, - "index": 1814 - }, - { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 299, - "column": 14, - "index": 11212 - }, - { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 325, - "column": 12, - "index": 12380 - }, - { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 356, - "column": 14, - "index": 13913 - }, - { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 379, - "column": 14, - "index": 15010 - }, - { - "filePath": "src/pages-and-resources/teams/GroupEditor.jsx", - "line": 99, - "column": 14, - "index": 4224 - }, - { - "filePath": "src/pages-and-resources/teams/GroupEditor.jsx", - "line": 128, - "column": 21, - "index": 5539 - }, - { - "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", - "line": 266, - "column": 14, - "index": 10070 - }, - { - "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", - "line": 310, - "column": 12, - "index": 11977 - }, - { - "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", - "line": 334, - "column": 12, - "index": 13108 - }, - { - "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", - "line": 367, - "column": 14, - "index": 14922 - }, - { - "filePath": "src/schedule-and-details/details-section/index.jsx", - "line": 25, - "column": 8, - "index": 862 - }, - { - "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", - "line": 22, - "column": 14, - "index": 626 - }, - { - "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", - "line": 36, - "column": 14, - "index": 1210 - }, - { - "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", - "line": 50, - "column": 14, - "index": 1799 - }, - { - "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", - "line": 65, - "column": 14, - "index": 2465 - }, - { - "filePath": "src/schedule-and-details/introducing-section/extended-course-details/index.jsx", - "line": 56, - "column": 10, - "index": 1776 - }, - { - "filePath": "src/schedule-and-details/introducing-section/index.jsx", - "line": 92, - "column": 10, - "index": 2616 - }, - { - "filePath": "src/schedule-and-details/introducing-section/index.jsx", - "line": 113, - "column": 12, - "index": 3358 - }, - { - "filePath": "src/schedule-and-details/introducing-section/index.jsx", - "line": 122, - "column": 14, - "index": 3784 - }, - { - "filePath": "src/schedule-and-details/introducing-section/introduction-video/index.jsx", - "line": 15, - "column": 6, - "index": 440 - }, - { - "filePath": "src/schedule-and-details/learning-outcomes-section/index.jsx", - "line": 35, - "column": 6, - "index": 1028 - }, - { - "filePath": "src/schedule-and-details/pacing-section/index.jsx", - "line": 23, - "column": 10, - "index": 697 - }, - { - "filePath": "src/schedule-and-details/requirements-section/entrance-exam/index.jsx", - "line": 28, - "column": 6, - "index": 859 - }, - { - "filePath": "src/schedule-and-details/requirements-section/grade-requirements/index.jsx", - "line": 19, - "column": 4, - "index": 469 - }, - { - "filePath": "src/schedule-and-details/requirements-section/index.jsx", - "line": 34, - "column": 6, - "index": 1051 - }, - { - "filePath": "src/schedule-and-details/requirements-section/index.jsx", - "line": 70, - "column": 10, - "index": 2372 - }, - { - "filePath": "src/schedule-and-details/schedule-section/certificate-display-row/CertificateDisplayRow.jsx", - "line": 125, - "column": 10, - "index": 3860 - } - ], "Card.Divider": [ { "filePath": "src/generic/course-upload-image/index.jsx", @@ -13744,7 +15320,7 @@ "filePath": "src/schedule-and-details/basic-section/index.jsx", "line": 111, "column": 6, - "index": 3068 + "index": 3074 }, { "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", @@ -13763,211 +15339,41 @@ "line": 42, "column": 12, "index": 1342 - } - ], - "Calendar": [ - { - "filePath": "src/generic/datepicker-control/DatepickerControl.jsx", - "line": 49, - "column": 17, - "index": 1374 - } - ], - "Form.Text": [ - { - "filePath": "src/generic/FormikControl.jsx", - "line": 35, - "column": 8, - "index": 941 - }, - { - "filePath": "src/generic/FormSwitchGroup.jsx", - "line": 43, - "column": 8, - "index": 1129 - }, - { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/lti/LtiConfigForm.jsx", - "line": 151, - "column": 12, - "index": 5930 - }, - { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 311, - "column": 14, - "index": 11771 - }, - { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 338, - "column": 12, - "index": 13051 - }, - { - "filePath": "src/pages-and-resources/teams/Settings.jsx", - "line": 132, - "column": 14, - "index": 4671 - }, - { - "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", - "line": 253, - "column": 10, - "index": 9462 - }, - { - "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", - "line": 293, - "column": 14, - "index": 11250 - }, - { - "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", - "line": 325, - "column": 12, - "index": 12602 - }, - { - "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", - "line": 351, - "column": 12, - "index": 14066 - }, - { - "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", - "line": 394, - "column": 14, - "index": 16184 - }, - { - "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", - "line": 30, - "column": 14, - "index": 996 }, { - "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", + "filePath": "src/studio-home/processing-courses/course-item/index.jsx", "line": 44, - "column": 14, - "index": 1584 - }, - { - "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", - "line": 58, - "column": 14, - "index": 2201 - }, - { - "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", - "line": 74, - "column": 14, - "index": 2869 - } - ], - "SwitchControl": [ - { - "filePath": "src/generic/FormSwitchGroup.jsx", - "line": 33, "column": 10, - "index": 870 - } - ], - "WarningIcon": [ - { - "filePath": "src/generic/internet-connection-alert/index.jsx", - "line": 50, - "column": 12, - "index": 1362 - }, - { - "filePath": "src/schedule-and-details/index.jsx", - "line": 341, - "column": 16, - "index": 12151 - } - ], - "Spinner": [ - { - "filePath": "src/generic/Loading.jsx", - "line": 12, - "column": 4, - "index": 291 + "index": 1300 }, { - "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", - "line": 417, - "column": 33, - "index": 17069 - } - ], - "IconAdd": [ - { - "filePath": "src/grading-settings/grading-scale/GradingScale.jsx", - "line": 194, - "column": 13, - "index": 6156 + "filePath": "src/studio-home/processing-courses/course-item/index.jsx", + "line": 69, + "column": 10, + "index": 2208 }, { - "filePath": "src/grading-settings/GradingSettings.jsx", - "line": 198, - "column": 34, - "index": 7963 + "filePath": "src/studio-home/tabs-section/courses-tab/contact-administrator/index.jsx", + "line": 26, + "column": 10, + "index": 890 } ], - "ModalDialog.Footer": [ - { - "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", - "line": 82, - "column": 4, - "index": 2416 - }, - { - "filePath": "src/pages-and-resources/discussions/app-config-form/AppConfigForm.jsx", - "line": 133, - "column": 8, - "index": 4167 - }, - { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 579, - "column": 8, - "index": 22557 - }, + "InfoIcon": [ { - "filePath": "src/pages-and-resources/xpert-unit-summary/settings-modal/SettingsModal.jsx", - "line": 83, - "column": 4, - "index": 2484 + "filePath": "src/generic/create-or-rerun-course/CreateOrRerunCourseForm.jsx", + "line": 208, + "column": 18, + "index": 6490 } ], - "ModalDialog.CloseButton": [ - { - "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", - "line": 84, - "column": 8, - "index": 2479 - }, - { - "filePath": "src/pages-and-resources/discussions/app-config-form/AppConfigForm.jsx", - "line": 135, - "column": 12, - "index": 4222 - }, + "Form": [ { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 585, - "column": 12, - "index": 22686 + "filePath": "src/generic/create-or-rerun-course/CreateOrRerunCourseForm.jsx", + "line": 221, + "column": 6, + "index": 6913 }, - { - "filePath": "src/pages-and-resources/xpert-unit-summary/settings-modal/SettingsModal.jsx", - "line": 85, - "column": 8, - "index": 2547 - } - ], - "Form": [ { "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", "line": 192, @@ -13994,15 +15400,15 @@ }, { "filePath": "src/pages-and-resources/xpert-unit-summary/settings-modal/SettingsModal.jsx", - "line": 191, + "line": 304, "column": 10, - "index": 5626 + "index": 8638 }, { "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", - "line": 228, + "line": 233, "column": 6, - "index": 8447 + "index": 8694 }, { "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", @@ -14011,62 +15417,146 @@ "index": 520 } ], - "Badge": [ + "Form.Text": [ { - "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", - "line": 232, - "column": 24, - "index": 7436 + "filePath": "src/generic/create-or-rerun-course/CreateOrRerunCourseForm.jsx", + "line": 242, + "column": 12, + "index": 7679 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-restrictions/CollapseCardHeading.jsx", - "line": 18, - "column": 22, - "index": 386 + "filePath": "src/generic/FormikControl.jsx", + "line": 35, + "column": 8, + "index": 941 }, { - "filePath": "src/pages-and-resources/pages/PageCard.jsx", - "line": 70, - "column": 10, - "index": 2102 + "filePath": "src/generic/FormSwitchGroup.jsx", + "line": 43, + "column": 8, + "index": 1129 + }, + { + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/lti/LtiConfigForm.jsx", + "line": 151, + "column": 12, + "index": 5930 }, { "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 277, - "column": 18, - "index": 10526 + "line": 311, + "column": 14, + "index": 11771 }, { - "filePath": "src/pages-and-resources/xpert-unit-summary/settings-modal/SettingsModal.jsx", - "line": 230, - "column": 22, - "index": 7274 + "filePath": "src/pages-and-resources/proctoring/Settings.jsx", + "line": 338, + "column": 12, + "index": 13051 + }, + { + "filePath": "src/pages-and-resources/teams/Settings.jsx", + "line": 132, + "column": 14, + "index": 4671 + }, + { + "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", + "line": 258, + "column": 10, + "index": 9709 + }, + { + "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", + "line": 298, + "column": 14, + "index": 11497 + }, + { + "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", + "line": 330, + "column": 12, + "index": 12849 + }, + { + "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", + "line": 356, + "column": 12, + "index": 14313 + }, + { + "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", + "line": 399, + "column": 14, + "index": 16431 + }, + { + "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", + "line": 30, + "column": 14, + "index": 996 + }, + { + "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", + "line": 44, + "column": 14, + "index": 1584 + }, + { + "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", + "line": 58, + "column": 14, + "index": 2201 + }, + { + "filePath": "src/schedule-and-details/instructors-section/instructor-container/index.jsx", + "line": 74, + "column": 14, + "index": 2869 } ], - "MailtoLink": [ + "Calendar": [ { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/lti/LtiConfigForm.jsx", - "line": 76, - "column": 16, - "index": 3127 - }, + "filePath": "src/generic/datepicker-control/DatepickerControl.jsx", + "line": 49, + "column": 17, + "index": 1374 + } + ], + "SwitchControl": [ { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/lti/LtiConfigForm.jsx", - "line": 89, - "column": 16, - "index": 3532 + "filePath": "src/generic/FormSwitchGroup.jsx", + "line": 33, + "column": 10, + "index": 870 + } + ], + "WarningIcon": [ + { + "filePath": "src/generic/internet-connection-alert/index.jsx", + "line": 53, + "column": 12, + "index": 1404 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/AppExternalLinks.jsx", - "line": 50, + "filePath": "src/schedule-and-details/index.jsx", + "line": 346, "column": 16, - "index": 1464 + "index": 12401 }, { - "filePath": "src/schedule-and-details/basic-section/index.jsx", - "line": 113, - "column": 8, - "index": 3151 + "filePath": "src/studio-home/processing-courses/course-item/index.jsx", + "line": 64, + "column": 27, + "index": 1982 + } + ], + "IconSettings": [ + { + "filePath": "src/generic/processing-notification/index.jsx", + "line": 18, + "column": 56, + "index": 565 } ], "Form.Check": [ @@ -14084,33 +15574,33 @@ }, { "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", - "line": 244, + "line": 249, "column": 10, - "index": 9085 + "index": 9332 }, { "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", - "line": 273, + "line": 278, "column": 14, - "index": 10415 + "index": 10662 }, { "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", - "line": 283, + "line": 288, "column": 14, - "index": 10833 + "index": 11080 }, { "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", - "line": 374, + "line": 379, "column": 14, - "index": 15285 + "index": 15532 }, { "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", - "line": 384, + "line": 389, "column": 14, - "index": 15735 + "index": 15982 } ], "Form.Row": [ @@ -14247,6 +15737,24 @@ "line": 10, "column": 2, "index": 308 + }, + { + "filePath": "src/studio-header/MobileMenu.jsx", + "line": 23, + "column": 8, + "index": 741 + }, + { + "filePath": "src/studio-header/MobileMenu.jsx", + "line": 37, + "column": 8, + "index": 1199 + }, + { + "filePath": "src/studio-header/MobileMenu.jsx", + "line": 51, + "column": 8, + "index": 1659 } ], "Check": [ @@ -14351,22 +15859,6 @@ "index": 4297 } ], - "SelectableBox.Set": [ - { - "filePath": "src/pages-and-resources/live/Settings.jsx", - "line": 97, - "column": 12, - "index": 3905 - } - ], - "SelectableBox": [ - { - "filePath": "src/pages-and-resources/live/Settings.jsx", - "line": 106, - "column": 16, - "index": 4263 - } - ], "ArrowForward": [ { "filePath": "src/pages-and-resources/pages/PageCard.jsx", @@ -14402,6 +15894,12 @@ "column": 14, "index": 4365 }, + { + "filePath": "src/pages-and-resources/xpert-unit-summary/settings-modal/SettingsModal.jsx", + "line": 359, + "column": 16, + "index": 10867 + }, { "filePath": "src/schedule-and-details/pacing-section/index.jsx", "line": 27, @@ -14440,6 +15938,18 @@ "column": 18, "index": 4632 }, + { + "filePath": "src/pages-and-resources/xpert-unit-summary/settings-modal/SettingsModal.jsx", + "line": 365, + "column": 18, + "index": 11108 + }, + { + "filePath": "src/pages-and-resources/xpert-unit-summary/settings-modal/SettingsModal.jsx", + "line": 378, + "column": 18, + "index": 11633 + }, { "filePath": "src/schedule-and-details/pacing-section/index.jsx", "line": 32, @@ -14453,6 +15963,54 @@ "index": 1283 } ], + "OverlayTrigger": [ + { + "filePath": "src/pages-and-resources/xpert-unit-summary/settings-modal/SettingsModal.jsx", + "line": 151, + "column": 4, + "index": 4233 + }, + { + "filePath": "src/schedule-and-details/license-section/license-selector/index.jsx", + "line": 31, + "column": 6, + "index": 869 + }, + { + "filePath": "src/studio-header/CourseLockUp.jsx", + "line": 18, + "column": 2, + "index": 354 + } + ], + "Tooltip": [ + { + "filePath": "src/pages-and-resources/xpert-unit-summary/settings-modal/SettingsModal.jsx", + "line": 154, + "column": 8, + "index": 4298 + }, + { + "filePath": "src/schedule-and-details/license-section/license-selector/index.jsx", + "line": 34, + "column": 10, + "index": 932 + }, + { + "filePath": "src/studio-header/CourseLockUp.jsx", + "line": 21, + "column": 6, + "index": 414 + } + ], + "CheckCircleOutline": [ + { + "filePath": "src/pages-and-resources/xpert-unit-summary/settings-modal/SettingsModal.jsx", + "line": 172, + "column": 29, + "index": 4874 + } + ], "PageBanner": [ { "filePath": "src/schedule-and-details/basic-section/index.jsx", @@ -14466,29 +16024,15 @@ "filePath": "src/schedule-and-details/basic-section/index.jsx", "line": 119, "column": 56, - "index": 3389 + "index": 3395 } ], "CheckCircleIcon": [ { "filePath": "src/schedule-and-details/index.jsx", - "line": 164, + "line": 169, "column": 18, - "index": 5006 - } - ], - "AddIcon": [ - { - "filePath": "src/schedule-and-details/instructors-section/index.jsx", - "line": 72, - "column": 26, - "index": 2006 - }, - { - "filePath": "src/schedule-and-details/learning-outcomes-section/index.jsx", - "line": 61, - "column": 26, - "index": 1907 + "index": 5256 } ], "Col": [ @@ -14565,40 +16109,100 @@ "index": 1920 } ], - "OverlayTrigger": [ + "Nav": [ { - "filePath": "src/schedule-and-details/license-section/license-selector/index.jsx", - "line": 31, - "column": 6, - "index": 869 + "filePath": "src/studio-header/HeaderBody.jsx", + "line": 87, + "column": 12, + "index": 2086 }, { - "filePath": "src/studio-header/Header.jsx", - "line": 139, + "filePath": "src/studio-header/HeaderBody.jsx", + "line": 106, + "column": 10, + "index": 3096 + } + ], + "DropdownButton": [ + { + "filePath": "src/studio-header/NavDropdownMenu.jsx", + "line": 12, + "column": 2, + "index": 166 + } + ], + "Avatar": [ + { + "filePath": "src/studio-header/UserMenu.jsx", + "line": 27, "column": 4, - "index": 5602 + "index": 584 } ], - "Tooltip": [ + "Bubble": [ { - "filePath": "src/schedule-and-details/license-section/license-selector/index.jsx", - "line": 34, + "filePath": "src/studio-home/collapsible-state-with-action/index.jsx", + "line": 105, "column": 10, - "index": 932 + "index": 3648 }, { - "filePath": "src/studio-header/Header.jsx", - "line": 142, + "filePath": "src/studio-home/collapsible-state-with-action/index.jsx", + "line": 114, + "column": 10, + "index": 3907 + } + ], + "FormLabel": [ + { + "filePath": "src/studio-home/organization-section/index.jsx", + "line": 49, "column": 8, - "index": 5668 + "index": 1737 } ], - "InfoIcon": [ + "RotateRightIcon": [ { - "filePath": "src/schedule-and-details/schedule-section/certificate-display-row/CertificateDisplayRow.jsx", - "line": 101, - "column": 38, - "index": 3005 + "filePath": "src/studio-home/processing-courses/course-item/index.jsx", + "line": 38, + "column": 27, + "index": 1022 + } + ], + "CloseIcon": [ + { + "filePath": "src/studio-home/processing-courses/course-item/index.jsx", + "line": 74, + "column": 26, + "index": 2551 + } + ], + "Tab": [ + { + "filePath": "src/studio-home/tabs-section/index.jsx", + "line": 34, + "column": 6, + "index": 1118 + }, + { + "filePath": "src/studio-home/tabs-section/index.jsx", + "line": 49, + "column": 8, + "index": 1515 + }, + { + "filePath": "src/studio-home/tabs-section/index.jsx", + "line": 61, + "column": 8, + "index": 1818 + } + ], + "Tabs": [ + { + "filePath": "src/studio-home/tabs-section/index.jsx", + "line": 81, + "column": 4, + "index": 2366 } ] } @@ -15319,9 +16923,9 @@ }, { "filePath": "src/components/TinyMCEEditor.jsx", - "line": 143, + "line": 167, "column": 12, - "index": 4889 + "index": 5767 }, { "filePath": "src/discussions/common/ActionsDropdown.jsx", @@ -15505,17 +17109,17 @@ "AlertModal": [ { "filePath": "src/components/TinyMCEEditor.jsx", - "line": 136, + "line": 160, "column": 6, - "index": 4670 + "index": 5548 } ], "ActionRow": [ { "filePath": "src/components/TinyMCEEditor.jsx", - "line": 142, + "line": 166, "column": 10, - "index": 4865 + "index": 5743 }, { "filePath": "src/discussions/common/Confirmation.jsx", @@ -16429,7 +18033,7 @@ } }, { - "version": "20.35.0", + "version": "20.46.2", "name": "@edx/frontend-app-ecommerce", "repository": { "type": "git", @@ -16600,7 +18204,7 @@ } }, { - "version": "20.46.0", + "version": "20.46.2", "name": "@edx/frontend-app-enterprise-public-catalog", "repository": { "type": "git", @@ -16777,9 +18381,9 @@ }, { "filePath": "src/components/catalogSearchResults/CatalogSearchResults.jsx", - "line": 455, + "line": 454, "column": 12, - "index": 13578 + "index": 13541 } ], "Icon": [ @@ -16839,9 +18443,9 @@ }, { "filePath": "src/components/programCard/ProgramCard.jsx", - "line": 63, + "line": 60, "column": 12, - "index": 1965 + "index": 1845 } ], "Launch": [ @@ -16919,9 +18523,9 @@ }, { "filePath": "src/components/catalogSearchResults/CatalogSearchResults.jsx", - "line": 401, + "line": 400, "column": 6, - "index": 11886 + "index": 11849 } ], "Alert.Heading": [ @@ -16949,9 +18553,9 @@ }, { "filePath": "src/components/catalogSearchResults/CatalogSearchResults.jsx", - "line": 487, + "line": 486, "column": 10, - "index": 14781 + "index": 14744 } ], "CardView": [ @@ -16963,9 +18567,9 @@ }, { "filePath": "src/components/catalogSearchResults/CatalogSearchResults.jsx", - "line": 500, + "line": 499, "column": 14, - "index": 15297 + "index": 15260 } ], "Badge": [ @@ -16981,17 +18585,11 @@ "column": 8, "index": 748 }, - { - "filePath": "src/components/catalogSearchResults/associatedComponents/catalogBadges/CatalogBadges.jsx", - "line": 29, - "column": 8, - "index": 1054 - }, { "filePath": "src/components/catalogSearchResults/CatalogSearchResults.jsx", - "line": 445, + "line": 444, "column": 12, - "index": 13306 + "index": 13269 }, { "filePath": "src/components/catalogSelectionDeck/CatalogSelectionDeck.jsx", @@ -17005,12 +18603,6 @@ "column": 10, "index": 2357 }, - { - "filePath": "src/components/catalogSelectionDeck/CatalogSelectionDeck.jsx", - "line": 71, - "column": 10, - "index": 3141 - }, { "filePath": "src/components/courseCard/CourseCard.jsx", "line": 66, @@ -17023,35 +18615,23 @@ "column": 12, "index": 2280 }, - { - "filePath": "src/components/courseCard/CourseCard.jsx", - "line": 83, - "column": 12, - "index": 2633 - }, { "filePath": "src/components/programCard/ProgramCard.jsx", - "line": 59, + "line": 56, "column": 10, - "index": 1830 - }, - { - "filePath": "src/components/programCard/ProgramCard.jsx", - "line": 72, - "column": 12, - "index": 2263 + "index": 1710 }, { "filePath": "src/components/programCard/ProgramCard.jsx", - "line": 77, + "line": 69, "column": 12, - "index": 2486 + "index": 2143 }, { "filePath": "src/components/programCard/ProgramCard.jsx", - "line": 82, + "line": 74, "column": 12, - "index": 2697 + "index": 2366 } ], "useToggle": [ @@ -17078,28 +18658,36 @@ "index": 1304 } ], + "Skeleton": [ + { + "filePath": "src/components/catalogSearchResults/CatalogSearchResults.jsx", + "line": 394, + "column": 8, + "index": 11723 + } + ], "DataTable.TableControlBar": [ { "filePath": "src/components/catalogSearchResults/CatalogSearchResults.jsx", - "line": 498, + "line": 497, "column": 12, - "index": 15226 + "index": 15189 } ], "DataTable.Table": [ { "filePath": "src/components/catalogSearchResults/CatalogSearchResults.jsx", - "line": 511, + "line": 510, "column": 26, - "index": 15611 + "index": 15574 } ], "DataTable.TableFooter": [ { "filePath": "src/components/catalogSearchResults/CatalogSearchResults.jsx", - "line": 514, + "line": 513, "column": 14, - "index": 15674 + "index": 15637 } ], "useMediaQuery": [ @@ -17194,12 +18782,6 @@ "line": 58, "column": 8, "index": 2231 - }, - { - "filePath": "src/components/catalogSelectionDeck/CatalogSelectionDeck.jsx", - "line": 70, - "column": 8, - "index": 3012 } ], "Card": [ @@ -17211,9 +18793,9 @@ }, { "filePath": "src/components/programCard/ProgramCard.jsx", - "line": 37, + "line": 34, "column": 4, - "index": 1171 + "index": 1051 } ], "Card.ImageCap": [ @@ -17225,9 +18807,9 @@ }, { "filePath": "src/components/programCard/ProgramCard.jsx", - "line": 43, + "line": 40, "column": 6, - "index": 1297 + "index": 1177 } ], "Card.Header": [ @@ -17239,9 +18821,9 @@ }, { "filePath": "src/components/programCard/ProgramCard.jsx", - "line": 49, + "line": 46, "column": 6, - "index": 1485 + "index": 1365 } ], "Card.Section": [ @@ -17253,17 +18835,17 @@ }, { "filePath": "src/components/programCard/ProgramCard.jsx", - "line": 57, + "line": 54, "column": 6, - "index": 1699 + "index": 1579 } ], "Program": [ { "filePath": "src/components/programCard/ProgramCard.jsx", - "line": 63, + "line": 60, "column": 23, - "index": 1976 + "index": 1856 } ] } @@ -17756,7 +19338,7 @@ } }, { - "version": "20.32.0", + "version": "20.46.2", "name": "@edx/frontend-app-learner-dashboard", "repository": { "type": "git", @@ -17767,21 +19349,9 @@ "Alert": [ { "filePath": "src/App.jsx", - "line": 85, - "column": 14, - "index": 2650 - }, - { - "filePath": "src/App.test.jsx", - "line": 91, - "column": 12, - "index": 3164 - }, - { - "filePath": "src/App.test.jsx", - "line": 107, - "column": 12, - "index": 3695 + "line": 87, + "column": 16, + "index": 2744 }, { "filePath": "src/components/Banner.jsx", @@ -18155,61 +19725,61 @@ "filePath": "src/containers/LearnerDashboardHeader/CollapsedHeader/CollapseMenuBody.jsx", "line": 29, "column": 8, - "index": 935 + "index": 1086 }, { "filePath": "src/containers/LearnerDashboardHeader/CollapsedHeader/CollapseMenuBody.jsx", "line": 32, "column": 8, - "index": 1055 + "index": 1206 }, { "filePath": "src/containers/LearnerDashboardHeader/CollapsedHeader/CollapseMenuBody.jsx", "line": 35, "column": 8, - "index": 1191 + "index": 1342 }, { "filePath": "src/containers/LearnerDashboardHeader/CollapsedHeader/CollapseMenuBody.jsx", - "line": 43, + "line": 44, "column": 8, - "index": 1426 + "index": 1631 }, { "filePath": "src/containers/LearnerDashboardHeader/CollapsedHeader/CollapseMenuBody.jsx", - "line": 49, + "line": 50, "column": 14, - "index": 1647 + "index": 1852 }, { "filePath": "src/containers/LearnerDashboardHeader/CollapsedHeader/CollapseMenuBody.jsx", - "line": 54, + "line": 55, "column": 14, - "index": 1875 + "index": 2080 }, { "filePath": "src/containers/LearnerDashboardHeader/CollapsedHeader/CollapseMenuBody.jsx", - "line": 61, + "line": 62, "column": 12, - "index": 2166 + "index": 2371 }, { "filePath": "src/containers/LearnerDashboardHeader/CollapsedHeader/CollapseMenuBody.jsx", - "line": 70, + "line": 71, "column": 12, - "index": 2446 + "index": 2651 }, { "filePath": "src/containers/LearnerDashboardHeader/CollapsedHeader/CollapseMenuBody.jsx", - "line": 78, + "line": 79, "column": 14, - "index": 2729 + "index": 2934 }, { "filePath": "src/containers/LearnerDashboardHeader/CollapsedHeader/CollapseMenuBody.jsx", - "line": 86, + "line": 87, "column": 12, - "index": 2987 + "index": 3192 }, { "filePath": "src/containers/LearnerDashboardHeader/ConfirmEmailBanner/index.jsx", @@ -18225,27 +19795,27 @@ }, { "filePath": "src/containers/LearnerDashboardHeader/ExpandedHeader/index.jsx", - "line": 29, + "line": 30, "column": 8, - "index": 955 + "index": 1106 }, { "filePath": "src/containers/LearnerDashboardHeader/ExpandedHeader/index.jsx", - "line": 37, + "line": 38, "column": 8, - "index": 1152 + "index": 1303 }, { "filePath": "src/containers/LearnerDashboardHeader/ExpandedHeader/index.jsx", - "line": 45, + "line": 46, "column": 8, - "index": 1353 + "index": 1504 }, { "filePath": "src/containers/LearnerDashboardHeader/ExpandedHeader/index.jsx", - "line": 55, + "line": 57, "column": 8, - "index": 1655 + "index": 1859 }, { "filePath": "src/containers/SelectSessionModal/index.jsx", @@ -18289,11 +19859,23 @@ "column": 8, "index": 1130 }, + { + "filePath": "src/widgets/RecommendationsPaintedDoorBtn/components/NavbarButton.jsx", + "line": 13, + "column": 4, + "index": 414 + }, + { + "filePath": "src/widgets/RecommendationsPaintedDoorBtn/components/RecommendationsPanelButton.jsx", + "line": 11, + "column": 4, + "index": 314 + }, { "filePath": "src/widgets/RecommendationsPanel/LoadedView.jsx", - "line": 38, - "column": 8, - "index": 1095 + "line": 49, + "column": 10, + "index": 1709 } ], "ActionRow": [ @@ -18344,6 +19926,12 @@ "line": 39, "column": 6, "index": 981 + }, + { + "filePath": "src/widgets/RecommendationsPaintedDoorBtn/components/PaintedDoorModal/index.jsx", + "line": 46, + "column": 10, + "index": 1408 } ], "Locked": [ @@ -18481,9 +20069,9 @@ }, { "filePath": "src/containers/LearnerDashboardHeader/CollapsedHeader/CollapseMenuBody.jsx", - "line": 56, + "line": 57, "column": 16, - "index": 1989 + "index": 2194 }, { "filePath": "src/containers/LearnerDashboardHeader/ExpandedHeader/AuthenticatedUserDropdown.jsx", @@ -18509,7 +20097,7 @@ "filePath": "src/containers/CourseCard/components/CourseCardMenu/index.jsx", "line": 42, "column": 6, - "index": 1278 + "index": 1273 }, { "filePath": "src/containers/LearnerDashboardHeader/ExpandedHeader/AuthenticatedUserDropdown.jsx", @@ -18523,7 +20111,7 @@ "filePath": "src/containers/CourseCard/components/CourseCardMenu/index.jsx", "line": 43, "column": 8, - "index": 1329 + "index": 1324 }, { "filePath": "src/containers/LearnerDashboardHeader/ExpandedHeader/AuthenticatedUserDropdown.jsx", @@ -18537,13 +20125,13 @@ "filePath": "src/containers/CourseCard/components/CourseCardMenu/index.jsx", "line": 45, "column": 14, - "index": 1411 + "index": 1406 }, { "filePath": "src/containers/LearnerDashboardHeader/CollapsedHeader/index.jsx", "line": 23, "column": 10, - "index": 711 + "index": 715 } ], "MoreVert": [ @@ -18551,7 +20139,7 @@ "filePath": "src/containers/CourseCard/components/CourseCardMenu/index.jsx", "line": 46, "column": 15, - "index": 1438 + "index": 1433 } ], "Icon": [ @@ -18559,7 +20147,7 @@ "filePath": "src/containers/CourseCard/components/CourseCardMenu/index.jsx", "line": 47, "column": 18, - "index": 1466 + "index": 1461 }, { "filePath": "src/containers/CourseCard/components/RelatedProgramsBadge/index.jsx", @@ -18577,7 +20165,7 @@ "filePath": "src/containers/LearnerDashboardHeader/CollapsedHeader/index.jsx", "line": 27, "column": 20, - "index": 829 + "index": 837 }, { "filePath": "src/containers/MasqueradeBar/index.jsx", @@ -18615,7 +20203,7 @@ "filePath": "src/containers/CourseCard/components/CourseCardMenu/index.jsx", "line": 51, "column": 8, - "index": 1571 + "index": 1566 }, { "filePath": "src/containers/LearnerDashboardHeader/ExpandedHeader/AuthenticatedUserDropdown.jsx", @@ -18629,13 +20217,13 @@ "filePath": "src/containers/CourseCard/components/CourseCardMenu/index.jsx", "line": 53, "column": 12, - "index": 1638 + "index": 1633 }, { "filePath": "src/containers/CourseCard/components/CourseCardMenu/SocialShareMenu.jsx", - "line": 39, + "line": 36, "column": 8, - "index": 1238 + "index": 1159 }, { "filePath": "src/containers/LearnerDashboardHeader/ExpandedHeader/AuthenticatedUserDropdown.jsx", @@ -19009,9 +20597,9 @@ }, { "filePath": "src/widgets/RecommendationsPanel/LoadedView.jsx", - "line": 40, - "column": 22, - "index": 1154 + "line": 51, + "column": 24, + "index": 1772 } ], "Container": [ @@ -19124,6 +20712,12 @@ "line": 29, "column": 4, "index": 681 + }, + { + "filePath": "src/widgets/RecommendationsPaintedDoorBtn/components/PaintedDoorModal/index.jsx", + "line": 26, + "column": 6, + "index": 754 } ], "Form.Switch": [ @@ -19278,6 +20872,12 @@ "line": 37, "column": 6, "index": 1062 + }, + { + "filePath": "src/widgets/RecommendationsPaintedDoorBtn/components/PaintedDoorModal/index.jsx", + "line": 34, + "column": 8, + "index": 927 } ], "ModalDialog.Body": [ @@ -19286,6 +20886,12 @@ "line": 40, "column": 6, "index": 1178 + }, + { + "filePath": "src/widgets/RecommendationsPaintedDoorBtn/components/PaintedDoorModal/index.jsx", + "line": 39, + "column": 8, + "index": 1130 } ], "Form.Label": [ @@ -19347,11 +20953,41 @@ "column": 21, "index": 2056 } + ], + "ModalDialog.Title": [ + { + "filePath": "src/widgets/RecommendationsPaintedDoorBtn/components/PaintedDoorModal/index.jsx", + "line": 35, + "column": 10, + "index": 958 + } + ], + "ModalDialog.Footer": [ + { + "filePath": "src/widgets/RecommendationsPaintedDoorBtn/components/PaintedDoorModal/index.jsx", + "line": 45, + "column": 8, + "index": 1377 + } + ], + "ModalDialog.CloseButton": [ + { + "filePath": "src/widgets/RecommendationsPaintedDoorBtn/components/PaintedDoorModal/index.jsx", + "line": 47, + "column": 12, + "index": 1432 + }, + { + "filePath": "src/widgets/RecommendationsPaintedDoorBtn/components/PaintedDoorModal/index.jsx", + "line": 50, + "column": 12, + "index": 1613 + } ] } }, { - "version": "20.45.1", + "version": "21.1.6", "name": "frontend-app-learner-portal-enterprise", "repository": { "type": "git", @@ -19404,15 +21040,15 @@ }, { "filePath": "src/components/course/data/utils.jsx", - "line": 655, + "line": 609, "column": 12, - "index": 23054 + "index": 21795 }, { "filePath": "src/components/course/data/utils.jsx", - "line": 671, + "line": 625, "column": 12, - "index": 23432 + "index": 22173 }, { "filePath": "src/components/course/routes/ExternalCourseEnrollment.jsx", @@ -19520,9 +21156,9 @@ }, { "filePath": "src/components/course/CoursePage.jsx", - "line": 250, + "line": 251, "column": 6, - "index": 8155 + "index": 8184 }, { "filePath": "src/components/course/CourseReview.jsx", @@ -19598,9 +21234,9 @@ }, { "filePath": "src/components/enterprise-user-subsidy/UserSubsidy.jsx", - "line": 94, + "line": 104, "column": 6, - "index": 2546 + "index": 2941 }, { "filePath": "src/components/error-page/ErrorPageContent.jsx", @@ -19744,9 +21380,9 @@ }, { "filePath": "src/components/course/data/utils.jsx", - "line": 690, + "line": 644, "column": 12, - "index": 23901 + "index": 22642 }, { "filePath": "src/components/dashboard/sidebar/SupportInformation.jsx", @@ -19800,21 +21436,21 @@ }, { "filePath": "src/components/course/data/utils.jsx", - "line": 654, + "line": 608, "column": 6, - "index": 23034 + "index": 21775 }, { "filePath": "src/components/course/data/utils.jsx", - "line": 670, + "line": 624, "column": 6, - "index": 23412 + "index": 22153 }, { "filePath": "src/components/course/data/utils.jsx", - "line": 689, + "line": 643, "column": 6, - "index": 23881 + "index": 22622 }, { "filePath": "src/components/course/enrollment/components/ToExecutiveEducation2UEnrollment.jsx", @@ -19872,9 +21508,9 @@ }, { "filePath": "src/components/dashboard/sidebar/SubsidiesSummary.jsx", - "line": 67, + "line": 84, "column": 6, - "index": 2545 + "index": 3341 }, { "filePath": "src/components/enterprise-banner/EnterpriseBanner.jsx", @@ -20083,10 +21719,10 @@ "index": 1045 }, { - "filePath": "src/components/dashboard/sidebar/EnterpriseOffersSummaryCard.jsx", - "line": 59, - "column": 8, - "index": 1919 + "filePath": "src/components/dashboard/sidebar/LearnerCreditSummaryCard.jsx", + "line": 44, + "column": 6, + "index": 1247 }, { "filePath": "src/components/executive-education-2u/components/CourseSummaryCard.jsx", @@ -20349,10 +21985,10 @@ "index": 2704 }, { - "filePath": "src/components/dashboard/sidebar/EnterpriseOffersSummaryCard.jsx", - "line": 60, - "column": 10, - "index": 1979 + "filePath": "src/components/dashboard/sidebar/LearnerCreditSummaryCard.jsx", + "line": 45, + "column": 8, + "index": 1305 }, { "filePath": "src/components/error-page/ErrorPage.jsx", @@ -20684,9 +22320,9 @@ "Card": [ { "filePath": "src/components/course/course-header/CourseRunCard.jsx", - "line": 47, + "line": 45, "column": 4, - "index": 1209 + "index": 1249 }, { "filePath": "src/components/course/course-header/deprecated/CourseRunCard.jsx", @@ -20824,9 +22460,9 @@ "Card.Section": [ { "filePath": "src/components/course/course-header/CourseRunCard.jsx", - "line": 48, + "line": 46, "column": 6, - "index": 1222 + "index": 1262 }, { "filePath": "src/components/course/course-header/deprecated/CourseRunCard.jsx", @@ -22101,10 +23737,10 @@ "index": 2792 }, { - "filePath": "src/components/dashboard/sidebar/EnterpriseOffersSummaryCard.jsx", - "line": 27, - "column": 12, - "index": 905 + "filePath": "src/components/dashboard/sidebar/LearnerCreditSummaryCard.jsx", + "line": 21, + "column": 10, + "index": 643 }, { "filePath": "src/components/dashboard/sidebar/SubscriptionSummaryCard.jsx", @@ -23302,15 +24938,15 @@ "filePath": "src/components/skills-quiz/SelectJobCard.jsx", "line": 29, "column": 6, - "index": 989 + "index": 1029 } ], "SelectableBox": [ { "filePath": "src/components/skills-quiz/SelectJobCard.jsx", - "line": 37, + "line": 38, "column": 10, - "index": 1258 + "index": 1358 } ], "Stepper": [ @@ -23604,7 +25240,7 @@ } }, { - "version": "20.45.0", + "version": "20.46.2", "name": "@edx/frontend-app-learner-record", "repository": { "type": "git", @@ -23617,7 +25253,7 @@ "filePath": "src/components/NavigationBar/NavigationBar.jsx", "line": 30, "column": 4, - "index": 753 + "index": 756 } ], "Tab": [ @@ -23625,7 +25261,7 @@ "filePath": "src/components/NavigationBar/NavigationBar.jsx", "line": 36, "column": 8, - "index": 923 + "index": 922 } ], "Hyperlink": [ @@ -25012,12 +26648,6 @@ "column": 10, "index": 1946 }, - { - "filePath": "src/courseware/course/lti-modal/ChatTrigger.jsx", - "line": 86, - "column": 16, - "index": 2449 - }, { "filePath": "src/courseware/course/share/ShareButton.jsx", "line": 39, @@ -25038,9 +26668,9 @@ }, { "filePath": "src/courseware/course/sidebar/sidebars/discussions/DiscussionsTrigger.jsx", - "line": 43, + "line": 47, "column": 6, - "index": 1425 + "index": 1551 }, { "filePath": "src/courseware/course/sidebar/sidebars/notifications/NotificationIcon.jsx", @@ -25167,12 +26797,6 @@ "line": 26, "column": 6, "index": 864 - }, - { - "filePath": "src/courseware/course/lti-modal/ChatTrigger.jsx", - "line": 66, - "column": 10, - "index": 1595 } ], "Tooltip": [ @@ -25407,12 +27031,6 @@ "line": 31, "column": 10, "index": 984 - }, - { - "filePath": "src/courseware/course/lti-modal/ChatTrigger.jsx", - "line": 71, - "column": 14, - "index": 1732 } ], "Popover.Content": [ @@ -25457,12 +27075,6 @@ "line": 32, "column": 12, "index": 1006 - }, - { - "filePath": "src/courseware/course/lti-modal/ChatTrigger.jsx", - "line": 73, - "column": 16, - "index": 1887 } ], "CheckCircle": [ @@ -25526,9 +27138,9 @@ }, { "filePath": "src/courseware/course/Course.jsx", - "line": 154, + "line": 155, "column": 22, - "index": 5488 + "index": 5540 }, { "filePath": "src/courseware/course/sequence/lock-paywall/LockPaywall.jsx", @@ -25632,13 +27244,13 @@ "filePath": "src/courseware/course/Course.jsx", "line": 54, "column": 47, - "index": 2035 + "index": 2016 }, { "filePath": "src/courseware/course/Course.jsx", "line": 58, "column": 64, - "index": 2267 + "index": 2248 }, { "filePath": "src/courseware/course/Course.test.jsx", @@ -26108,12 +27720,6 @@ "column": 32, "index": 967 }, - { - "filePath": "src/courseware/course/lti-modal/ChatTrigger.jsx", - "line": 24, - "column": 32, - "index": 632 - }, { "filePath": "src/tab-page/LoadedTabPage.jsx", "line": 43, @@ -26157,84 +27763,6 @@ "index": 1827 } ], - "Popover.Title": [ - { - "filePath": "src/courseware/course/lti-modal/ChatTrigger.jsx", - "line": 72, - "column": 16, - "index": 1788 - } - ], - "ChatBubbleOutline": [ - { - "filePath": "src/courseware/course/lti-modal/ChatTrigger.jsx", - "line": 86, - "column": 27, - "index": 2460 - } - ], - "ModalDialog": [ - { - "filePath": "src/courseware/course/lti-modal/ChatTrigger.jsx", - "line": 90, - "column": 10, - "index": 2586 - }, - { - "filePath": "src/shared/streak-celebration/StreakCelebrationModal.jsx", - "line": 147, - "column": 4, - "index": 5819 - } - ], - "ModalDialog.Header": [ - { - "filePath": "src/courseware/course/lti-modal/ChatTrigger.jsx", - "line": 97, - "column": 12, - "index": 2788 - }, - { - "filePath": "src/shared/streak-celebration/StreakCelebrationModal.jsx", - "line": 158, - "column": 6, - "index": 6130 - } - ], - "ModalDialog.Title": [ - { - "filePath": "src/courseware/course/lti-modal/ChatTrigger.jsx", - "line": 98, - "column": 14, - "index": 2823 - }, - { - "filePath": "src/product-tours/newUserCourseHomeTour/NewUserCourseHomeTourModal.jsx", - "line": 30, - "column": 10, - "index": 830 - }, - { - "filePath": "src/shared/streak-celebration/StreakCelebrationModal.jsx", - "line": 159, - "column": 8, - "index": 6184 - } - ], - "ModalDialog.Body": [ - { - "filePath": "src/courseware/course/lti-modal/ChatTrigger.jsx", - "line": 102, - "column": 12, - "index": 2982 - }, - { - "filePath": "src/shared/streak-celebration/StreakCelebrationModal.jsx", - "line": 163, - "column": 6, - "index": 6314 - } - ], "ActionRow.Spacer": [ { "filePath": "src/courseware/course/sequence/honor-code/HonorCode.jsx", @@ -26308,7 +27836,7 @@ "filePath": "src/courseware/course/sequence/Unit/ContentIFrame.jsx", "line": 78, "column": 8, - "index": 2020 + "index": 2022 } ], "ArrowBackIos": [ @@ -26330,9 +27858,9 @@ "QuestionAnswer": [ { "filePath": "src/courseware/course/sidebar/sidebars/discussions/DiscussionsTrigger.jsx", - "line": 43, + "line": 47, "column": 17, - "index": 1436 + "index": 1562 } ], "WatchOutline": [ @@ -26375,6 +27903,20 @@ "index": 652 } ], + "ModalDialog.Title": [ + { + "filePath": "src/product-tours/newUserCourseHomeTour/NewUserCourseHomeTourModal.jsx", + "line": 30, + "column": 10, + "index": 830 + }, + { + "filePath": "src/shared/streak-celebration/StreakCelebrationModal.jsx", + "line": 159, + "column": 8, + "index": 6184 + } + ], "ProductTour": [ { "filePath": "src/product-tours/ProductTours.jsx", @@ -26383,6 +27925,30 @@ "index": 4804 } ], + "ModalDialog": [ + { + "filePath": "src/shared/streak-celebration/StreakCelebrationModal.jsx", + "line": 147, + "column": 4, + "index": 5819 + } + ], + "ModalDialog.Header": [ + { + "filePath": "src/shared/streak-celebration/StreakCelebrationModal.jsx", + "line": 158, + "column": 6, + "index": 6130 + } + ], + "ModalDialog.Body": [ + { + "filePath": "src/shared/streak-celebration/StreakCelebrationModal.jsx", + "line": 163, + "column": 6, + "index": 6314 + } + ], "MoneyFilled": [ { "filePath": "src/shared/streak-celebration/StreakCelebrationModal.jsx", @@ -26422,9 +27988,9 @@ "Toast": [ { "filePath": "src/tab-page/TabPage.jsx", - "line": 65, - "column": 8, - "index": 1954 + "line": 52, + "column": 10, + "index": 1571 } ] } @@ -26447,51 +28013,51 @@ }, { "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 444, + "line": 470, "column": 6, - "index": 15039 + "index": 15458 }, { "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 501, + "line": 526, "column": 16, - "index": 17396 + "index": 17773 }, { "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 513, + "line": 538, "column": 12, - "index": 17904 + "index": 18281 }, { "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 527, + "line": 552, "column": 18, - "index": 18531 + "index": 18874 }, { "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 530, + "line": 555, "column": 18, - "index": 18688 + "index": 19031 }, { "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 569, + "line": 628, "column": 6, - "index": 20407 + "index": 22284 }, { "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 572, + "line": 631, "column": 12, - "index": 20517 + "index": 22394 }, { "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 579, + "line": 639, "column": 12, - "index": 21055 + "index": 23007 }, { "filePath": "src/library-authoring/common/ErrorAlert.jsx", @@ -26501,99 +28067,87 @@ }, { "filePath": "src/library-authoring/common/LicenseField.jsx", - "line": 40, - "column": 6, - "index": 891 - }, - { - "filePath": "src/library-authoring/common/LicenseField.jsx", - "line": 45, - "column": 6, - "index": 1125 - }, - { - "filePath": "src/library-authoring/common/LicenseField.jsx", - "line": 62, + "line": 56, "column": 10, - "index": 1836 + "index": 1582 }, { "filePath": "src/library-authoring/common/LicenseField.jsx", - "line": 71, + "line": 65, "column": 10, - "index": 2121 + "index": 1867 }, { "filePath": "src/library-authoring/common/LicenseField.jsx", - "line": 76, + "line": 70, "column": 10, - "index": 2350 + "index": 2096 }, { "filePath": "src/library-authoring/common/LicenseField.jsx", - "line": 81, + "line": 75, "column": 10, - "index": 2571 + "index": 2317 }, { "filePath": "src/library-authoring/common/LicenseField.jsx", - "line": 90, + "line": 84, "column": 10, - "index": 2905 + "index": 2651 }, { "filePath": "src/library-authoring/common/LicenseField.jsx", - "line": 95, + "line": 89, "column": 10, - "index": 3138 + "index": 2884 }, { "filePath": "src/library-authoring/common/LicenseField.jsx", - "line": 100, + "line": 94, "column": 10, - "index": 3361 + "index": 3107 }, { "filePath": "src/library-authoring/common/LicenseField.jsx", - "line": 109, + "line": 103, "column": 10, - "index": 3695 + "index": 3441 }, { "filePath": "src/library-authoring/common/LicenseField.jsx", - "line": 114, + "line": 108, "column": 10, - "index": 3929 + "index": 3675 }, { "filePath": "src/library-authoring/common/LicenseField.jsx", - "line": 119, + "line": 113, "column": 10, - "index": 4153 + "index": 3899 }, { "filePath": "src/library-authoring/common/LicenseField.jsx", - "line": 128, + "line": 122, "column": 10, - "index": 4478 + "index": 4224 }, { "filePath": "src/library-authoring/common/LicenseField.jsx", - "line": 133, + "line": 127, "column": 10, - "index": 4706 + "index": 4452 }, { "filePath": "src/library-authoring/common/LicenseField.jsx", - "line": 140, + "line": 134, "column": 6, - "index": 4922 + "index": 4668 }, { "filePath": "src/library-authoring/common/LicenseField.jsx", - "line": 144, + "line": 138, "column": 6, - "index": 5062 + "index": 4923 }, { "filePath": "src/library-authoring/common/SuccessAlert.jsx", @@ -26603,107 +28157,107 @@ }, { "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", - "line": 194, + "line": 195, "column": 12, - "index": 4762 + "index": 4807 }, { "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", - "line": 329, + "line": 330, "column": 12, - "index": 11333 + "index": 11405 }, { "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", - "line": 385, + "line": 386, "column": 12, - "index": 12977 + "index": 12847 }, { "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", - "line": 422, + "line": 423, "column": 12, - "index": 14542 + "index": 14412 }, { "filePath": "src/library-authoring/edit-block/LibraryBlockPage.jsx", - "line": 219, + "line": 218, "column": 12, - "index": 6504 + "index": 6366 }, { "filePath": "src/library-authoring/edit-block/LibraryBlockPage.jsx", - "line": 305, + "line": 322, "column": 12, - "index": 10795 + "index": 11069 }, { "filePath": "src/library-authoring/library-access/LibraryAccessPage.jsx", "line": 69, "column": 8, - "index": 2397 + "index": 2307 }, { "filePath": "src/library-authoring/library-access/LibraryAccessPage.jsx", "line": 97, "column": 14, - "index": 3324 + "index": 3234 }, { "filePath": "src/library-authoring/library-access/LibraryAccessPage.jsx", "line": 103, "column": 8, - "index": 3557 + "index": 3467 + }, + { + "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", + "line": 36, + "column": 6, + "index": 1295 } ], "Card": [ { "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 85, + "line": 95, "column": 2, - "index": 2569 - }, - { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 145, - "column": 6, - "index": 4654 + "index": 2571 }, { "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 445, + "line": 471, "column": 8, - "index": 15075 + "index": 15494 }, { "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 580, + "line": 640, "column": 14, - "index": 21119 + "index": 23071 }, { "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", - "line": 206, + "line": 207, "column": 16, - "index": 5173 + "index": 5218 }, { "filePath": "src/library-authoring/course-import/CourseImportListItem.jsx", - "line": 47, + "line": 54, "column": 4, - "index": 1862 + "index": 1666 }, { "filePath": "src/library-authoring/course-import/CourseImportTaskListItem.jsx", - "line": 30, + "line": 31, "column": 4, - "index": 568 + "index": 620 }, { "filePath": "src/library-authoring/edit-block/LibraryBlockPage.jsx", - "line": 231, + "line": 230, "column": 16, - "index": 6915 + "index": 6777 }, { "filePath": "src/library-authoring/empty-page/EmptyPage.jsx", @@ -26717,245 +28271,463 @@ "column": 6, "index": 915 }, + { + "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", + "line": 30, + "column": 2, + "index": 889 + }, + { + "filePath": "src/library-authoring/list-libraries/LibraryListPage.jsx", + "line": 137, + "column": 22, + "index": 4023 + } + ], + "Card.Header": [ + { + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 96, + "column": 4, + "index": 2605 + }, + { + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 641, + "column": 16, + "index": 23094 + }, + { + "filePath": "src/library-authoring/course-import/CourseImportListItem.jsx", + "line": 55, + "column": 6, + "index": 1701 + }, + { + "filePath": "src/library-authoring/course-import/CourseImportTaskListItem.jsx", + "line": 32, + "column": 6, + "index": 655 + }, { "filePath": "src/library-authoring/library-access/LibraryAccessForm.jsx", - "line": 68, + "line": 29, + "column": 8, + "index": 930 + }, + { + "filePath": "src/library-authoring/list-libraries/LibraryListPage.jsx", + "line": 143, + "column": 24, + "index": 4278 + } + ], + "ActionRow": [ + { + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 100, + "column": 8, + "index": 2730 + }, + { + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 154, + "column": 8, + "index": 4632 + }, + { + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 411, + "column": 10, + "index": 13664 + }, + { + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 453, "column": 6, - "index": 2512 + "index": 14884 + }, + { + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 473, + "column": 12, + "index": 15535 + }, + { + "filePath": "src/library-authoring/course-import/CourseImportListItem.jsx", + "line": 60, + "column": 10, + "index": 1892 + }, + { + "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", + "line": 50, + "column": 8, + "index": 1489 + }, + { + "filePath": "src/library-authoring/create-library/LibraryCreatePage.jsx", + "line": 362, + "column": 12, + "index": 12425 + }, + { + "filePath": "src/library-authoring/edit-block/LibraryBlockPage.jsx", + "line": 344, + "column": 20, + "index": 12328 + }, + { + "filePath": "src/library-authoring/library-access/LibraryAccessPage.jsx", + "line": 49, + "column": 8, + "index": 1654 }, { "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", - "line": 26, - "column": 2, - "index": 917 + "line": 35, + "column": 4, + "index": 1260 + }, + { + "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", + "line": 96, + "column": 14, + "index": 3800 + }, + { + "filePath": "src/library-authoring/list-libraries/LibraryListPage.jsx", + "line": 115, + "column": 14, + "index": 3150 + } + ], + "IconButtonWithTooltip": [ + { + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 101, + "column": 10, + "index": 2752 + }, + { + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 108, + "column": 10, + "index": 3077 + } + ], + "EditOutline": [ + { + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 104, + "column": 17, + "index": 2928 + }, + { + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 416, + "column": 22, + "index": 13800 + } + ], + "Icon": [ + { + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 105, + "column": 20, + "index": 2961 + }, + { + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 112, + "column": 20, + "index": 3290 + }, + { + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 594, + "column": 26, + "index": 20809 + }, + { + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 605, + "column": 26, + "index": 21354 + }, + { + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 616, + "column": 26, + "index": 21900 + }, + { + "filePath": "src/library-authoring/common/License.jsx", + "line": 27, + "column": 8, + "index": 847 + }, + { + "filePath": "src/library-authoring/common/License.jsx", + "line": 36, + "column": 10, + "index": 1118 + }, + { + "filePath": "src/library-authoring/common/License.jsx", + "line": 46, + "column": 10, + "index": 1421 + }, + { + "filePath": "src/library-authoring/common/License.jsx", + "line": 56, + "column": 10, + "index": 1716 + }, + { + "filePath": "src/library-authoring/common/License.jsx", + "line": 66, + "column": 10, + "index": 2005 + }, + { + "filePath": "src/library-authoring/common/License.jsx", + "line": 93, + "column": 4, + "index": 2637 + }, + { + "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", + "line": 319, + "column": 37, + "index": 11002 + }, + { + "filePath": "src/library-authoring/course-import/CourseImportListItem.jsx", + "line": 44, + "column": 15, + "index": 1407 }, { - "filePath": "src/library-authoring/list-libraries/LibraryListPage.jsx", - "line": 135, - "column": 22, - "index": 3972 - } - ], - "Card.Header": [ - { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 86, - "column": 4, - "index": 2603 + "filePath": "src/library-authoring/course-import/CourseImportListItem.jsx", + "line": 45, + "column": 15, + "index": 1442 }, { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 581, + "filePath": "src/library-authoring/course-import/CourseImportListItem.jsx", + "line": 46, "column": 16, - "index": 21142 + "index": 1510 }, { "filePath": "src/library-authoring/course-import/CourseImportListItem.jsx", - "line": 48, - "column": 6, - "index": 1897 + "line": 47, + "column": 13, + "index": 1545 }, { - "filePath": "src/library-authoring/course-import/CourseImportTaskListItem.jsx", - "line": 31, - "column": 6, - "index": 603 + "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", + "line": 226, + "column": 82, + "index": 7620 + }, + { + "filePath": "src/library-authoring/create-library/LibraryCreatePage.jsx", + "line": 345, + "column": 31, + "index": 11704 }, { "filePath": "src/library-authoring/library-access/LibraryAccessForm.jsx", - "line": 29, - "column": 8, - "index": 930 + "line": 82, + "column": 23, + "index": 3257 }, { - "filePath": "src/library-authoring/list-libraries/LibraryListPage.jsx", - "line": 141, - "column": 24, - "index": 4227 + "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", + "line": 74, + "column": 20, + "index": 2983 } ], - "ActionRow": [ + "DeleteOutline": [ { "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 90, - "column": 8, - "index": 2728 + "line": 111, + "column": 17, + "index": 3255 }, { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 134, - "column": 8, - "index": 4218 - }, + "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", + "line": 73, + "column": 17, + "index": 2948 + } + ], + "ModalDialog": [ { "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 427, - "column": 6, - "index": 14465 + "line": 118, + "column": 4, + "index": 3439 }, { "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 447, - "column": 12, - "index": 15116 + "line": 141, + "column": 4, + "index": 4171 }, { - "filePath": "src/library-authoring/course-import/CourseImportListItem.jsx", - "line": 53, + "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", + "line": 80, "column": 10, - "index": 2088 - }, + "index": 3177 + } + ], + "ModalDialog.Header": [ { - "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", - "line": 49, - "column": 8, - "index": 1549 + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 145, + "column": 6, + "index": 4275 }, { - "filePath": "src/library-authoring/create-library/LibraryCreatePage.jsx", - "line": 356, + "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", + "line": 84, "column": 12, - "index": 12196 - }, - { - "filePath": "src/library-authoring/edit-block/LibraryBlockPage.jsx", - "line": 327, - "column": 20, - "index": 12054 - }, + "index": 3305 + } + ], + "ModalDialog.Title": [ { - "filePath": "src/library-authoring/library-access/LibraryAccessPage.jsx", - "line": 50, + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 146, "column": 8, - "index": 1722 + "index": 4304 }, { "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", - "line": 31, - "column": 4, - "index": 1261 - }, - { - "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", - "line": 92, + "line": 85, "column": 14, - "index": 3737 + "index": 3340 + } + ], + "ModalDialog.Body": [ + { + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 150, + "column": 6, + "index": 4471 }, { - "filePath": "src/library-authoring/list-libraries/LibraryListPage.jsx", - "line": 115, - "column": 14, - "index": 3162 + "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", + "line": 89, + "column": 12, + "index": 3525 } ], - "Button": [ + "ModalDialog.Footer": [ { "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 91, - "column": 10, - "index": 2750 + "line": 153, + "column": 6, + "index": 4603 }, + { + "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": 98, + "line": 155, "column": 10, - "index": 3071 + "index": 4654 }, + { + "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", + "line": 97, + "column": 16, + "index": 3828 + } + ], + "Button": [ { "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 138, + "line": 158, "column": 10, - "index": 4346 + "index": 4840 }, { "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 301, + "line": 318, "column": 4, - "index": 10570 + "index": 10824 }, { "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 515, + "line": 540, "column": 14, - "index": 18052 - }, - { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 553, - "column": 20, - "index": 19735 - }, - { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 556, - "column": 20, - "index": 19914 + "index": 18429 }, { "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 559, - "column": 20, - "index": 20104 - }, - { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 585, + "line": 645, "column": 18, - "index": 21339 + "index": 23319 }, { "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 588, + "line": 648, "column": 18, - "index": 21530 + "index": 23520 }, { "filePath": "src/library-authoring/common/LicenseField.jsx", - "line": 41, + "line": 42, "column": 8, - "index": 905 + "index": 923 }, { "filePath": "src/library-authoring/common/LicenseField.jsx", - "line": 46, + "line": 45, "column": 8, - "index": 1139 + "index": 1127 }, { "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", - "line": 316, + "line": 302, "column": 24, - "index": 10861 + "index": 10078 }, { "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", - "line": 52, + "line": 53, "column": 10, - "index": 1720 - }, - { - "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", - "line": 220, - "column": 16, - "index": 7571 + "index": 1660 }, { "filePath": "src/library-authoring/create-library/LibraryCreatePage.jsx", - "line": 322, + "line": 331, "column": 18, - "index": 10708 + "index": 11074 }, { "filePath": "src/library-authoring/create-library/LibraryCreatePage.jsx", - "line": 357, + "line": 363, "column": 14, - "index": 12222 + "index": 12451 }, { "filePath": "src/library-authoring/create-library/LibraryCreatePage.jsx", - "line": 360, + "line": 366, "column": 14, - "index": 12415 + "index": 12634 }, { "filePath": "src/library-authoring/edit-block/LibraryBlockAssets.jsx", @@ -26973,209 +28745,139 @@ "filePath": "src/library-authoring/edit-block/LibraryBlockOlx.jsx", "line": 57, "column": 10, - "index": 1211 + "index": 1202 }, { "filePath": "src/library-authoring/edit-block/LibraryBlockOlx.jsx", "line": 64, "column": 8, - "index": 1387 + "index": 1378 }, { "filePath": "src/library-authoring/edit-block/LibraryBlockPage.jsx", - "line": 328, + "line": 345, "column": 22, - "index": 12098 + "index": 12372 }, { "filePath": "src/library-authoring/edit-block/LibraryBlockPage.jsx", - "line": 337, + "line": 354, "column": 22, - "index": 12547 + "index": 12821 }, { "filePath": "src/library-authoring/edit-block/LibraryBlockPage.jsx", - "line": 346, + "line": 363, "column": 22, - "index": 12974 + "index": 13248 }, { "filePath": "src/library-authoring/library-access/LibraryAccessForm.jsx", - "line": 86, + "line": 68, "column": 10, - "index": 3269 + "index": 2559 }, { "filePath": "src/library-authoring/library-access/LibraryAccessPage.jsx", - "line": 56, + "line": 55, "column": 12, - "index": 1973 + "index": 1905 }, { "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", - "line": 45, + "line": 51, "column": 8, - "index": 1814 + "index": 1894 }, { "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", - "line": 50, + "line": 56, "column": 8, - "index": 2062 + "index": 2151 }, { "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", - "line": 56, + "line": 62, "column": 10, - "index": 2321 + "index": 2420 }, { "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", - "line": 59, + "line": 65, "column": 10, - "index": 2507 + "index": 2615 }, { "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", - "line": 66, - "column": 10, - "index": 2801 + "line": 102, + "column": 16, + "index": 4067 }, { "filePath": "src/library-authoring/list-libraries/LibraryListPage.jsx", "line": 118, "column": 16, - "index": 3336 + "index": 3324 }, { "filePath": "src/library-authoring/list-libraries/LibraryListPage.jsx", - "line": 154, + "line": 156, "column": 20, - "index": 4798 + "index": 4849 }, { "filePath": "src/library-authoring/studio-header-wrapper/StudioHeaderWrapper.jsx", "line": 56, "column": 6, - "index": 2317 - } - ], - "ModalDialog": [ - { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 108, - "column": 4, - "index": 3371 - }, - { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 121, - "column": 4, - "index": 3757 - }, - { - "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", - "line": 76, - "column": 10, - "index": 3114 - } - ], - "ModalDialog.Header": [ - { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 125, - "column": 6, - "index": 3861 - }, - { - "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", - "line": 80, - "column": 12, - "index": 3242 - } - ], - "ModalDialog.Title": [ - { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 126, - "column": 8, - "index": 3890 - }, - { - "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", - "line": 81, - "column": 14, - "index": 3277 + "index": 2321 } ], - "ModalDialog.Body": [ + "Card.Body": [ { "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 130, + "line": 165, "column": 6, - "index": 4057 + "index": 5148 }, - { - "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", - "line": 85, - "column": 12, - "index": 3462 - } - ], - "ModalDialog.Footer": [ { "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 133, - "column": 6, - "index": 4189 - }, - { - "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", - "line": 91, - "column": 12, - "index": 3702 + "line": 472, + "column": 10, + "index": 15511 } ], - "ModalDialog.CloseButton": [ + "Sync": [ { "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 135, - "column": 10, - "index": 4240 + "line": 322, + "column": 18, + "index": 10950 }, { - "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", - "line": 93, - "column": 16, - "index": 3765 - } - ], - "Card.Body": [ - { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 146, - "column": 8, - "index": 4669 + "filePath": "src/library-authoring/course-import/CourseImportListItem.jsx", + "line": 47, + "column": 24, + "index": 1556 }, { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 446, - "column": 10, - "index": 15092 + "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", + "line": 57, + "column": 24, + "index": 1813 } ], "Form.Control": [ { "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 371, + "line": 397, "column": 10, - "index": 12884 + "index": 13278 }, { "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 458, + "line": 483, "column": 16, - "index": 15611 + "index": 15988 }, { "filePath": "src/library-authoring/common/FormGroup.jsx", @@ -27185,175 +28887,191 @@ }, { "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", - "line": 219, + "line": 220, "column": 28, - "index": 5832 + "index": 5880 }, { "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", - "line": 215, + "line": 222, "column": 16, - "index": 7291 + "index": 7293 }, { "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", - "line": 235, + "line": 236, "column": 14, - "index": 8131 + "index": 7995 }, { "filePath": "src/library-authoring/library-access/LibraryAccessForm.jsx", "line": 45, "column": 20, - "index": 1596 + "index": 1613 } ], "IconButton": [ { "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 387, + "line": 413, "column": 12, - "index": 13313 - } - ], - "Edit": [ + "index": 13716 + }, { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 390, - "column": 22, - "index": 13397 + "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", + "line": 226, + "column": 35, + "index": 7573 + }, + { + "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", + "line": 72, + "column": 10, + "index": 2919 } ], "Container": [ { "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 424, + "line": 450, "column": 2, - "index": 14290 + "index": 14709 }, { "filePath": "src/library-authoring/edit-block/LibraryBlockPage.jsx", - "line": 217, + "line": 216, "column": 8, - "index": 6408 + "index": 6270 } ], "ActionRow.Spacer": [ { "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 431, + "line": 457, "column": 8, - "index": 14560 + "index": 14979 }, { "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 457, + "line": 482, "column": 16, - "index": 15574 + "index": 15951 }, { "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", - "line": 51, + "line": 52, "column": 10, - "index": 1689 + "index": 1629 }, { "filePath": "src/library-authoring/library-access/LibraryAccessPage.jsx", - "line": 54, + "line": 53, "column": 10, - "index": 1916 + "index": 1848 }, { "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", - "line": 38, + "line": 44, "column": 6, - "index": 1506 + "index": 1556 }, { "filePath": "src/library-authoring/list-libraries/LibraryListPage.jsx", "line": 117, "column": 16, - "index": 3299 + "index": 3287 }, { "filePath": "src/library-authoring/studio-header-wrapper/StudioHeaderWrapper.jsx", "line": 55, "column": 6, - "index": 2290 + "index": 2294 } ], "Row": [ { "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 441, + "line": 467, "column": 4, - "index": 14836 + "index": 15255 }, { "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 526, + "line": 551, "column": 16, - "index": 18507 + "index": 18850 }, { "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 571, + "line": 630, "column": 10, - "index": 20499 + "index": 22376 + }, + { + "filePath": "src/library-authoring/common/License.jsx", + "line": 22, + "column": 4, + "index": 660 + }, + { + "filePath": "src/library-authoring/common/License.jsx", + "line": 92, + "column": 2, + "index": 2592 }, { "filePath": "src/library-authoring/common/LicenseField.jsx", - "line": 39, + "line": 40, "column": 4, - "index": 858 + "index": 873 }, { "filePath": "src/library-authoring/common/LicenseField.jsx", - "line": 61, + "line": 55, "column": 8, - "index": 1789 + "index": 1535 }, { "filePath": "src/library-authoring/common/LicenseField.jsx", - "line": 80, + "line": 74, "column": 8, - "index": 2524 + "index": 2270 }, { "filePath": "src/library-authoring/common/LicenseField.jsx", - "line": 99, + "line": 93, "column": 8, - "index": 3314 + "index": 3060 }, { "filePath": "src/library-authoring/common/LicenseField.jsx", - "line": 118, + "line": 112, "column": 8, - "index": 4106 + "index": 3852 }, { "filePath": "src/library-authoring/common/LicenseField.jsx", - "line": 139, + "line": 133, "column": 4, - "index": 4893 + "index": 4639 }, { "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", - "line": 193, + "line": 194, "column": 10, - "index": 4724 + "index": 4769 }, { "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", - "line": 384, + "line": 385, "column": 10, - "index": 12934 + "index": 12804 }, { "filePath": "src/library-authoring/edit-block/LibraryBlockPage.jsx", - "line": 218, + "line": 217, "column": 10, - "index": 6466 + "index": 6328 }, { "filePath": "src/library-authoring/library-access/LibraryAccessForm.jsx", @@ -27365,49 +29083,133 @@ "filePath": "src/library-authoring/library-access/LibraryAccessPage.jsx", "line": 68, "column": 6, - "index": 2363 + "index": 2273 } ], "SearchField": [ { "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 450, + "line": 476, "column": 16, - "index": 15248 + "index": 15667 } ], "Pagination": [ { "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 502, + "line": 527, "column": 18, - "index": 17428 + "index": 17805 }, { "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", - "line": 119, + "line": 125, "column": 12, - "index": 4215 + "index": 4198 }, { "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", - "line": 300, + "line": 301, "column": 12, - "index": 10227 + "index": 10104 }, { "filePath": "src/library-authoring/list-libraries/LibraryListPage.jsx", - "line": 165, + "line": 168, "column": 18, - "index": 5238 + "index": 5319 + } + ], + "Add": [ + { + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 545, + "column": 28, + "index": 18628 + }, + { + "filePath": "src/library-authoring/course-import/CourseImportListItem.jsx", + "line": 44, + "column": 26, + "index": 1418 + }, + { + "filePath": "src/library-authoring/library-access/LibraryAccessPage.jsx", + "line": 58, + "column": 26, + "index": 2018 + }, + { + "filePath": "src/library-authoring/list-libraries/LibraryListPage.jsx", + "line": 121, + "column": 30, + "index": 3461 + }, + { + "filePath": "src/library-authoring/list-libraries/LibraryListPage.jsx", + "line": 159, + "column": 34, + "index": 4998 + } + ], + "SelectableBox.Set": [ + { + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 556, + "column": 20, + "index": 19089 + } + ], + "SelectableBox": [ + { + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 587, + "column": 22, + "index": 20491 + }, + { + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 598, + "column": 22, + "index": 21030 + }, + { + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 609, + "column": 22, + "index": 21579 + } + ], + "TextFields": [ + { + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 594, + "column": 37, + "index": 20820 + } + ], + "HelpOutline": [ + { + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 605, + "column": 37, + "index": 21365 + } + ], + "VideoCamera": [ + { + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 616, + "column": 37, + "index": 21911 } ], "Card.Footer": [ { "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 584, + "line": 644, "column": 16, - "index": 21307 + "index": 23287 }, { "filePath": "src/library-authoring/empty-page/EmptyPage.jsx", @@ -27431,33 +29233,33 @@ }, { "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", - "line": 198, + "line": 199, "column": 16, - "index": 4921 + "index": 4966 }, { "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", - "line": 388, + "line": 389, "column": 18, - "index": 13128 + "index": 12998 }, { "filePath": "src/library-authoring/create-library/LibraryCreatePage.jsx", - "line": 247, + "line": 256, "column": 12, - "index": 6919 + "index": 7266 }, { "filePath": "src/library-authoring/edit-block/LibraryBlockPage.jsx", - "line": 223, + "line": 222, "column": 16, - "index": 6663 + "index": 6525 }, { "filePath": "src/library-authoring/library-access/LibraryAccessPage.jsx", "line": 73, "column": 16, - "index": 2546 + "index": 2456 } ], "Form.Group": [ @@ -27469,87 +29271,143 @@ }, { "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", - "line": 211, + "line": 212, "column": 26, - "index": 5392 + "index": 5437 }, { "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", - "line": 210, + "line": 217, "column": 12, - "index": 7023 + "index": 7025 }, { "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", - "line": 231, + "line": 232, "column": 12, - "index": 7901 + "index": 7765 }, { "filePath": "src/library-authoring/library-access/LibraryAccessForm.jsx", "line": 37, "column": 18, - "index": 1215 + "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/library-authoring/common/License.jsx", + "line": 57, + "column": 17, + "index": 1739 + } + ], + "Sa": [ + { + "filePath": "src/library-authoring/common/License.jsx", + "line": 67, + "column": 17, + "index": 2028 + } + ], + "Copyright": [ + { + "filePath": "src/library-authoring/common/License.jsx", + "line": 93, + "column": 15, + "index": 2648 + } + ], + "ButtonGroup": [ + { + "filePath": "src/library-authoring/common/LicenseField.jsx", + "line": 41, + "column": 6, + "index": 901 } ], "Form.Checkbox": [ { "filePath": "src/library-authoring/common/LicenseField.jsx", - "line": 63, + "line": 57, "column": 12, - "index": 1903 + "index": 1649 }, { "filePath": "src/library-authoring/common/LicenseField.jsx", - "line": 82, + "line": 76, "column": 12, - "index": 2638 + "index": 2384 }, { "filePath": "src/library-authoring/common/LicenseField.jsx", - "line": 101, + "line": 95, "column": 12, - "index": 3428 + "index": 3174 }, { "filePath": "src/library-authoring/common/LicenseField.jsx", - "line": 120, + "line": 114, "column": 12, - "index": 4220 + "index": 3966 } ], "Form": [ { "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", - "line": 207, + "line": 208, "column": 18, - "index": 5198 + "index": 5243 }, { "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", - "line": 208, + "line": 215, "column": 8, - "index": 6929 + "index": 6931 } ], "Card.Section": [ { "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", - "line": 210, + "line": 211, "column": 24, - "index": 5351 + "index": 5396 }, { "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", - "line": 291, + "line": 292, "column": 24, - "index": 9599 + "index": 9647 }, { "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", - "line": 300, + "line": 301, "column": 22, - "index": 9991 + "index": 10039 }, { "filePath": "src/library-authoring/empty-page/EmptyPage.jsx", @@ -27565,177 +29423,173 @@ }, { "filePath": "src/library-authoring/library-access/LibraryAccessForm.jsx", - "line": 69, + "line": 67, "column": 8, - "index": 2544 + "index": 2517 } ], "Form.Label": [ { "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", - "line": 216, + "line": 217, "column": 28, - "index": 5620 + "index": 5665 }, { "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", - "line": 211, + "line": 218, "column": 14, - "index": 7068 + "index": 7070 }, { "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", - "line": 232, + "line": 233, "column": 14, - "index": 7946 + "index": 7810 }, { "filePath": "src/library-authoring/library-access/LibraryAccessForm.jsx", "line": 42, "column": 20, - "index": 1402 + "index": 1416 } ], "Form.Text": [ { "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", - "line": 227, + "line": 228, "column": 28, - "index": 6258 + "index": 6306 }, { "filePath": "src/library-authoring/library-access/LibraryAccessForm.jsx", "line": 53, "column": 20, - "index": 1949 + "index": 1966 } ], "StatefulButton": [ { "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", - "line": 301, + "line": 309, "column": 24, - "index": 10030 + "index": 10407 }, { "filePath": "src/library-authoring/course-import/CourseImportListItem.jsx", - "line": 54, + "line": 61, "column": 12, - "index": 2112 + "index": 1916 }, { "filePath": "src/library-authoring/create-library/LibraryCreatePage.jsx", - "line": 330, + "line": 338, "column": 18, - "index": 11052 + "index": 11388 }, { "filePath": "src/library-authoring/library-access/LibraryAccessForm.jsx", - "line": 70, + "line": 71, "column": 10, - "index": 2569 + "index": 2748 } ], - "Icon": [ + "SpinnerSimple": [ { "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", - "line": 311, - "column": 37, - "index": 10625 - }, - { - "filePath": "src/library-authoring/create-library/LibraryCreatePage.jsx", - "line": 338, - "column": 31, - "index": 11398 + "line": 319, + "column": 48, + "index": 11013 }, { - "filePath": "src/library-authoring/library-access/LibraryAccessForm.jsx", - "line": 81, - "column": 23, - "index": 3078 - }, + "filePath": "src/library-authoring/course-import/CourseImportListItem.jsx", + "line": 45, + "column": 26, + "index": 1453 + } + ], + "Check": [ { - "filePath": "src/library-authoring/list-libraries/LibraryListPage.jsx", - "line": 158, - "column": 22, - "index": 4957 + "filePath": "src/library-authoring/course-import/CourseImportListItem.jsx", + "line": 46, + "column": 27, + "index": 1521 } ], "Form.Row": [ { "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", - "line": 209, + "line": 216, "column": 10, - "index": 7000 + "index": 7002 }, { "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", - "line": 230, + "line": 231, "column": 10, - "index": 7878 + "index": 7742 + } + ], + "Search": [ + { + "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", + "line": 226, + "column": 66, + "index": 7604 } ], "Badge": [ { "filePath": "src/library-authoring/course-import/CourseImportTaskListItem.jsx", - "line": 36, + "line": 37, "column": 12, - "index": 777 + "index": 902 }, { "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", - "line": 27, + "line": 31, "column": 4, - "index": 949 + "index": 921 } ], "Info": [ { "filePath": "src/library-authoring/create-library/LibraryCreatePage.jsx", - "line": 248, + "line": 257, "column": 20, - "index": 6946 + "index": 7293 } ], "Alert.Heading": [ { "filePath": "src/library-authoring/create-library/LibraryCreatePage.jsx", - "line": 252, + "line": 261, "column": 29, - "index": 7070 + "index": 7417 } ], "Breadcrumb": [ { "filePath": "src/library-authoring/create-library/LibraryCreatePage.jsx", - "line": 256, + "line": 265, "column": 10, - "index": 7216 + "index": 7563 } ], "AlertModal": [ { "filePath": "src/library-authoring/create-library/LibraryCreatePage.jsx", - "line": 352, + "line": 358, "column": 8, - "index": 12042 + "index": 12271 } ], "Spinner": [ { "filePath": "src/library-authoring/edit-block/LibraryBlockPage.jsx", - "line": 260, + "line": 259, "column": 24, - "index": 8768 - } - ], - "Add": [ - { - "filePath": "src/library-authoring/list-libraries/LibraryListPage.jsx", - "line": 158, - "column": 33, - "index": 4968 + "index": 8503 } ], "Dropdown": [ @@ -27743,7 +29597,7 @@ "filePath": "src/library-authoring/studio-header-wrapper/StudioHeaderWrapper.jsx", "line": 43, "column": 10, - "index": 1479 + "index": 1483 } ], "Dropdown.Toggle": [ @@ -27751,7 +29605,7 @@ "filePath": "src/library-authoring/studio-header-wrapper/StudioHeaderWrapper.jsx", "line": 44, "column": 12, - "index": 1502 + "index": 1506 } ], "Dropdown.Menu": [ @@ -27759,7 +29613,7 @@ "filePath": "src/library-authoring/studio-header-wrapper/StudioHeaderWrapper.jsx", "line": 47, "column": 12, - "index": 1700 + "index": 1704 } ], "Dropdown.Item": [ @@ -27767,25 +29621,25 @@ "filePath": "src/library-authoring/studio-header-wrapper/StudioHeaderWrapper.jsx", "line": 48, "column": 14, - "index": 1730 + "index": 1734 }, { "filePath": "src/library-authoring/studio-header-wrapper/StudioHeaderWrapper.jsx", "line": 49, "column": 14, - "index": 1892 + "index": 1896 }, { "filePath": "src/library-authoring/studio-header-wrapper/StudioHeaderWrapper.jsx", "line": 50, "column": 14, - "index": 2055 + "index": 2059 } ] } }, { - "version": "20.45.1", + "version": "20.46.2", "name": "@edx/frontend-app-ora-grading", "repository": { "type": "git", @@ -28626,7 +30480,7 @@ } }, { - "version": "20.45.0", + "version": "20.46.2", "name": "@edx/frontend-app-payment", "repository": { "type": "git", @@ -28951,9 +30805,9 @@ }, { "filePath": "src/subscription/secure-3d/secure-3d-modal/Secure3dModal.jsx", - "line": 138, + "line": 132, "column": 4, - "index": 4229 + "index": 4027 } ], "ModalDialog.Header": [ @@ -29038,9 +30892,9 @@ }, { "filePath": "src/profile/ProfilePage.jsx", - "line": 145, + "line": 147, "column": 10, - "index": 4378 + "index": 4394 } ], "Alert.Heading": [ @@ -29094,9 +30948,9 @@ }, { "filePath": "src/profile/ProfilePage.jsx", - "line": 115, + "line": 117, "column": 6, - "index": 3501 + "index": 3523 } ], "Button": [ @@ -29192,7 +31046,7 @@ } }, { - "version": "20.45.0", + "version": "20.46.2", "name": "@edx/frontend-app-program-console", "repository": { "type": "git", @@ -29271,7 +31125,7 @@ } }, { - "version": "20.28.5", + "version": "20.46.2", "name": "edx-frontend-app-publisher", "repository": "https://github.com/openedx/frontend-app-publisher", "folderName": "frontend-app-publisher", @@ -29705,25 +31559,25 @@ "filePath": "src/components/EditCoursePage/EditCourseForm.jsx", "line": 145, "column": 10, - "index": 5058 + "index": 5069 }, { "filePath": "src/components/EditCoursePage/EditCourseForm.jsx", "line": 160, "column": 10, - "index": 5653 + "index": 5664 }, { "filePath": "src/components/EditCoursePage/EditCourseForm.test.jsx", - "line": 343, + "line": 399, "column": 8, - "index": 11445 + "index": 13345 }, { "filePath": "src/components/EditCoursePage/EditCourseForm.test.jsx", - "line": 376, + "line": 432, "column": 8, - "index": 12689 + "index": 14589 }, { "filePath": "src/components/Header/index.jsx", @@ -29773,7 +31627,7 @@ "filePath": "src/components/EditCoursePage/EditCourseForm.jsx", "line": 122, "column": 8, - "index": 4398 + "index": 4409 }, { "filePath": "src/components/SidePanes/UsersPane.jsx", @@ -29957,6 +31811,18 @@ "line": 9, "column": 4, "index": 208 + }, + { + "filePath": "src/Configuration/Provisioning/SubsidyDetailView/SubsidyDetailViewContainer.jsx", + "line": 11, + "column": 4, + "index": 385 + }, + { + "filePath": "src/Configuration/Provisioning/SubsidyEditView/SubsidyEditViewContainer.jsx", + "line": 18, + "column": 6, + "index": 540 } ], "Stack": [ @@ -29980,9 +31846,21 @@ }, { "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormTerm.jsx", - "line": 46, + "line": 59, "column": 6, - "index": 1620 + "index": 1787 + }, + { + "filePath": "src/Configuration/Provisioning/SubsidyDetailView/PolicyDetailView/PolicyContainer.jsx", + "line": 22, + "column": 8, + "index": 827 + }, + { + "filePath": "src/Configuration/Provisioning/SubsidyDetailView/TermDetail.jsx", + "line": 16, + "column": 8, + "index": 435 } ], "Hyperlink": [ @@ -29994,15 +31872,15 @@ }, { "filePath": "src/Configuration/Provisioning/DashboardDataTable/DashboardTableLinks.jsx", - "line": 12, + "line": 11, "column": 6, - "index": 455 + "index": 465 }, { "filePath": "src/Configuration/Provisioning/DashboardDataTable/DashboardTableLinks.jsx", - "line": 35, + "line": 34, "column": 4, - "index": 1120 + "index": 1130 }, { "filePath": "src/Configuration/Provisioning/ProvisioningForm/CustomCatalog/ProvisioningFormDefineCustomCatalogHeader.jsx", @@ -30104,25 +31982,25 @@ "IconButton": [ { "filePath": "src/Configuration/Provisioning/DashboardDataTable/DashboardTableLinks.jsx", - "line": 42, + "line": 41, "column": 6, - "index": 1350 + "index": 1360 } ], "DjangoShort": [ { "filePath": "src/Configuration/Provisioning/DashboardDataTable/DashboardTableLinks.jsx", - "line": 44, + "line": 43, "column": 13, - "index": 1393 + "index": 1403 } ], "Icon": [ { "filePath": "src/Configuration/Provisioning/DashboardDataTable/DashboardTableLinks.jsx", - "line": 45, + "line": 44, "column": 16, - "index": 1422 + "index": 1432 }, { "filePath": "src/Configuration/Provisioning/ProvisioningForm/CustomCatalog/ProvisioningFormCustomCatalogExecEdBoolean.jsx", @@ -30144,9 +32022,21 @@ }, { "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormTerm.jsx", - "line": 53, + "line": 66, "column": 18, - "index": 1905 + "index": 2072 + }, + { + "filePath": "src/Configuration/Provisioning/SubsidyDetailView/InternalOnlyDetail.jsx", + "line": 16, + "column": 10, + "index": 489 + }, + { + "filePath": "src/Configuration/Provisioning/SubsidyDetailView/TermDetail.jsx", + "line": 23, + "column": 20, + "index": 734 } ], "ActionRow": [ @@ -30172,7 +32062,25 @@ "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormSubmissionButton.jsx", "line": 208, "column": 4, - "index": 6797 + "index": 6799 + }, + { + "filePath": "src/Configuration/Provisioning/SubsidyDetailView/SubsidyDetailViewContainer.jsx", + "line": 12, + "column": 6, + "index": 430 + }, + { + "filePath": "src/Configuration/Provisioning/SubsidyEditView/CancelButton.jsx", + "line": 54, + "column": 10, + "index": 1402 + }, + { + "filePath": "src/Configuration/Provisioning/SubsidyEditView/SubsidyEditViewContainer.jsx", + "line": 19, + "column": 8, + "index": 587 }, { "filePath": "src/users/account-actions/CancelRetirement.jsx", @@ -30277,6 +32185,18 @@ "line": 94, "column": 14, "index": 3345 + }, + { + "filePath": "src/Configuration/Provisioning/SubsidyDetailView/SubsidyDetailViewContainer.jsx", + "line": 14, + "column": 8, + "index": 490 + }, + { + "filePath": "src/Configuration/Provisioning/SubsidyEditView/SubsidyEditViewContainer.jsx", + "line": 21, + "column": 10, + "index": 651 } ], "Button": [ @@ -30294,15 +32214,33 @@ }, { "filePath": "src/Configuration/Provisioning/ProvisioningForm/CustomCatalog/ProvisioningFormCustomCatalogDropdown.jsx", - "line": 75, + "line": 89, "column": 8, - "index": 3035 + "index": 3692 }, { "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormSubmissionButton.jsx", "line": 215, "column": 6, - "index": 7051 + "index": 7053 + }, + { + "filePath": "src/Configuration/Provisioning/SubsidyDetailView/EditButton.jsx", + "line": 17, + "column": 4, + "index": 458 + }, + { + "filePath": "src/Configuration/Provisioning/SubsidyEditView/CancelButton.jsx", + "line": 30, + "column": 6, + "index": 804 + }, + { + "filePath": "src/Configuration/Provisioning/SubsidyEditView/CancelButton.jsx", + "line": 55, + "column": 12, + "index": 1426 }, { "filePath": "src/FeatureBasedEnrollments/FeatureBasedEnrollmentIndexPage.jsx", @@ -30500,15 +32438,15 @@ "Form.AutosuggestOption": [ { "filePath": "src/Configuration/Provisioning/ProvisioningForm/CustomCatalog/ProvisioningFormCustomCatalogDropdown.jsx", - "line": 17, + "line": 31, "column": 6, - "index": 956 + "index": 1613 }, { "filePath": "src/Configuration/Provisioning/ProvisioningForm/CustomCatalog/ProvisioningFormCustomCatalogDropdown.jsx", - "line": 25, + "line": 39, "column": 10, - "index": 1250 + "index": 1907 }, { "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormCustomerDropdown.jsx", @@ -30520,9 +32458,9 @@ "Form.Group": [ { "filePath": "src/Configuration/Provisioning/ProvisioningForm/CustomCatalog/ProvisioningFormCustomCatalogDropdown.jsx", - "line": 51, + "line": 65, "column": 8, - "index": 2070 + "index": 2727 }, { "filePath": "src/Configuration/Provisioning/ProvisioningForm/CustomCatalog/ProvisioningFormCustomCatalogTitle.jsx", @@ -30532,39 +32470,39 @@ }, { "filePath": "src/Configuration/Provisioning/ProvisioningForm/PolicyForm/ProvisioningFormAccountDetails.jsx", - "line": 60, + "line": 66, "column": 6, - "index": 2482 + "index": 2810 }, { "filePath": "src/Configuration/Provisioning/ProvisioningForm/PolicyForm/ProvisioningFormAccountDetails.jsx", - "line": 80, - "column": 6, - "index": 3052 + "line": 94, + "column": 8, + "index": 3647 }, { "filePath": "src/Configuration/Provisioning/ProvisioningForm/PolicyForm/ProvisioningFormCatalog.jsx", - "line": 56, + "line": 93, "column": 6, - "index": 2104 + "index": 2968 }, { "filePath": "src/Configuration/Provisioning/ProvisioningForm/PolicyForm/ProvisioningFormDescription.jsx", - "line": 31, + "line": 44, "column": 6, - "index": 1028 + "index": 1478 }, { "filePath": "src/Configuration/Provisioning/ProvisioningForm/PolicyForm/ProvisioningFormPerLearnerCap.jsx", - "line": 37, + "line": 45, "column": 6, - "index": 1296 + "index": 1615 }, { "filePath": "src/Configuration/Provisioning/ProvisioningForm/PolicyForm/ProvisioningFormPerLearnerCapAmount.jsx", - "line": 36, + "line": 44, "column": 6, - "index": 1483 + "index": 1819 }, { "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormAccountType.jsx", @@ -30592,35 +32530,35 @@ }, { "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormInternalOnly.jsx", - "line": 30, + "line": 40, "column": 6, - "index": 759 + "index": 1147 }, { "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormSubsidy.jsx", - "line": 30, + "line": 38, "column": 6, - "index": 1047 + "index": 1320 }, { "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormTerm.jsx", - "line": 59, + "line": 72, "column": 6, - "index": 2025 + "index": 2192 }, { "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormTitle.jsx", - "line": 31, + "line": 44, "column": 6, - "index": 1072 + "index": 1499 } ], "Form.Autosuggest": [ { "filePath": "src/Configuration/Provisioning/ProvisioningForm/CustomCatalog/ProvisioningFormCustomCatalogDropdown.jsx", - "line": 54, + "line": 68, "column": 10, - "index": 2131 + "index": 2788 }, { "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormCustomerDropdown.jsx", @@ -30660,27 +32598,27 @@ }, { "filePath": "src/Configuration/Provisioning/ProvisioningForm/PolicyForm/ProvisioningFormAccountDetails.jsx", - "line": 65, + "line": 71, "column": 8, - "index": 2608 + "index": 2936 }, { "filePath": "src/Configuration/Provisioning/ProvisioningForm/PolicyForm/ProvisioningFormAccountDetails.jsx", - "line": 83, - "column": 8, - "index": 3107 + "line": 97, + "column": 10, + "index": 3708 }, { "filePath": "src/Configuration/Provisioning/ProvisioningForm/PolicyForm/ProvisioningFormDescription.jsx", - "line": 33, + "line": 46, "column": 8, - "index": 1133 + "index": 1583 }, { "filePath": "src/Configuration/Provisioning/ProvisioningForm/PolicyForm/ProvisioningFormPerLearnerCapAmount.jsx", - "line": 39, + "line": 47, "column": 8, - "index": 1538 + "index": 1874 }, { "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormCustomer.jsx", @@ -30690,21 +32628,21 @@ }, { "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormTerm.jsx", - "line": 63, + "line": 76, "column": 8, - "index": 2150 + "index": 2317 }, { "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormTerm.jsx", - "line": 71, + "line": 84, "column": 8, - "index": 2411 + "index": 2578 }, { "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormTitle.jsx", - "line": 35, + "line": 48, "column": 8, - "index": 1177 + "index": 1604 } ], "Warning": [ @@ -30798,21 +32736,21 @@ "Form.Label": [ { "filePath": "src/Configuration/Provisioning/ProvisioningForm/PolicyForm/ProvisioningFormCatalog.jsx", - "line": 57, + "line": 94, "column": 8, - "index": 2144 + "index": 3008 }, { "filePath": "src/Configuration/Provisioning/ProvisioningForm/PolicyForm/ProvisioningFormDescription.jsx", - "line": 32, + "line": 45, "column": 8, - "index": 1049 + "index": 1499 }, { "filePath": "src/Configuration/Provisioning/ProvisioningForm/PolicyForm/ProvisioningFormPerLearnerCap.jsx", - "line": 40, + "line": 48, "column": 8, - "index": 1351 + "index": 1670 }, { "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormAccountType.jsx", @@ -30822,23 +32760,23 @@ }, { "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormSubsidy.jsx", - "line": 31, + "line": 39, "column": 8, - "index": 1087 + "index": 1360 } ], "Form.RadioSet": [ { "filePath": "src/Configuration/Provisioning/ProvisioningForm/PolicyForm/ProvisioningFormCatalog.jsx", - "line": 65, + "line": 102, "column": 12, - "index": 2402 + "index": 3266 }, { "filePath": "src/Configuration/Provisioning/ProvisioningForm/PolicyForm/ProvisioningFormPerLearnerCap.jsx", - "line": 41, + "line": 49, "column": 8, - "index": 1427 + "index": 1746 }, { "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormAccountType.jsx", @@ -30848,23 +32786,23 @@ }, { "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormSubsidy.jsx", - "line": 32, + "line": 40, "column": 8, - "index": 1164 + "index": 1437 } ], "Form.Radio": [ { "filePath": "src/Configuration/Provisioning/ProvisioningForm/PolicyForm/ProvisioningFormCatalog.jsx", - "line": 72, + "line": 109, "column": 14, - "index": 2672 + "index": 3536 }, { "filePath": "src/Configuration/Provisioning/ProvisioningForm/PolicyForm/ProvisioningFormPerLearnerCap.jsx", - "line": 48, + "line": 56, "column": 12, - "index": 1687 + "index": 2006 }, { "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormAccountType.jsx", @@ -30874,9 +32812,9 @@ }, { "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormSubsidy.jsx", - "line": 39, + "line": 47, "column": 12, - "index": 1389 + "index": 1662 } ], "Spinner": [ @@ -30998,9 +32936,9 @@ "Form.Checkbox": [ { "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormInternalOnly.jsx", - "line": 33, + "line": 43, "column": 8, - "index": 814 + "index": 1202 } ], "StatefulButton": [ @@ -31008,502 +32946,66 @@ "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormSubmissionButton.jsx", "line": 209, "column": 6, - "index": 6854 - } - ], - "IconButtonWithTooltip": [ - { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormTerm.jsx", - "line": 48, - "column": 8, - "index": 1741 - } - ], - "InfoOutline": [ - { - "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormTerm.jsx", - "line": 49, - "column": 15, - "index": 1779 - } - ], - "Row": [ - { - "filePath": "src/FeatureBasedEnrollments/FeatureBasedEnrollment.jsx", - "line": 45, - "column": 16, - "index": 1575 - }, - { - "filePath": "src/ProgramEnrollments/ProgramInspector/ProgramInspector.jsx", - "line": 166, - "column": 14, - "index": 5444 - }, - { - "filePath": "src/ProgramEnrollments/ProgramInspector/ProgramInspector.jsx", - "line": 176, - "column": 14, - "index": 5789 - }, - { - "filePath": "src/users/licenses/LicenseCard.jsx", - "line": 65, - "column": 10, - "index": 1713 - }, - { - "filePath": "src/users/licenses/Licenses.jsx", - "line": 34, - "column": 10, - "index": 966 - }, - { - "filePath": "src/users/SingleSignOnRecordCard.jsx", - "line": 104, - "column": 10, - "index": 3074 - }, - { - "filePath": "src/users/SingleSignOnRecordCard.jsx", - "line": 113, - "column": 10, - "index": 3438 + "index": 6856 }, { - "filePath": "src/users/SingleSignOnRecords.jsx", - "line": 43, - "column": 10, - "index": 1593 - } - ], - "Card": [ - { - "filePath": "src/FeatureBasedEnrollments/FeatureBasedEnrollmentCard.jsx", - "line": 10, + "filePath": "src/Configuration/Provisioning/SubsidyEditView/SaveEditsButton.jsx", + "line": 190, "column": 4, - "index": 238 - }, - { - "filePath": "src/users/licenses/LicenseCard.jsx", - "line": 56, - "column": 6, - "index": 1459 - }, - { - "filePath": "src/users/SingleSignOnRecordCard.jsx", - "line": 95, - "column": 6, - "index": 2782 - } - ], - "Card.Header": [ - { - "filePath": "src/FeatureBasedEnrollments/FeatureBasedEnrollmentCard.jsx", - "line": 11, - "column": 6, - "index": 251 - }, - { - "filePath": "src/users/licenses/LicenseCard.jsx", - "line": 57, - "column": 8, - "index": 1507 - }, - { - "filePath": "src/users/licenses/LicenseCard.jsx", - "line": 75, - "column": 8, - "index": 2117 - }, - { - "filePath": "src/users/SingleSignOnRecordCard.jsx", - "line": 96, - "column": 8, - "index": 2830 - }, - { - "filePath": "src/users/SingleSignOnRecordCard.jsx", - "line": 126, - "column": 8, - "index": 3764 - } - ], - "Card.Section": [ - { - "filePath": "src/FeatureBasedEnrollments/FeatureBasedEnrollmentCard.jsx", - "line": 21, - "column": 6, - "index": 530 - }, - { - "filePath": "src/users/licenses/LicenseCard.jsx", - "line": 64, - "column": 8, - "index": 1688 - }, - { - "filePath": "src/users/licenses/LicenseCard.jsx", - "line": 83, - "column": 8, - "index": 2275 - }, - { - "filePath": "src/users/SingleSignOnRecordCard.jsx", - "line": 103, - "column": 8, - "index": 3049 - }, - { - "filePath": "src/users/SingleSignOnRecordCard.jsx", - "line": 134, - "column": 8, - "index": 3921 - } - ], - "Card.Footer": [ - { - "filePath": "src/FeatureBasedEnrollments/FeatureBasedEnrollmentCard.jsx", - "line": 39, - "column": 6, - "index": 957 - } - ], - "Input": [ - { - "filePath": "src/FeatureBasedEnrollments/FeatureBasedEnrollmentIndexPage.jsx", - "line": 99, - "column": 10, - "index": 3184 - }, - { - "filePath": "src/ProgramEnrollments/LinkProgramEnrollments.jsx", - "line": 51, - "column": 12, - "index": 1563 - }, - { - "filePath": "src/ProgramEnrollments/LinkProgramEnrollments.jsx", - "line": 66, - "column": 12, - "index": 2045 - }, - { - "filePath": "src/ProgramEnrollments/ProgramInspector/ProgramInspector.jsx", - "line": 120, - "column": 14, - "index": 3748 - }, - { - "filePath": "src/ProgramEnrollments/ProgramInspector/ProgramInspector.jsx", - "line": 133, - "column": 14, - "index": 4247 - }, - { - "filePath": "src/ProgramEnrollments/ProgramInspector/ProgramInspector.jsx", - "line": 144, - "column": 14, - "index": 4670 - }, - { - "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 - }, - { - "filePath": "src/users/enrollments/CreateEnrollmentForm.jsx", - "line": 58, - "column": 8, - "index": 1722 - }, - { - "filePath": "src/users/enrollments/CreateEnrollmentForm.jsx", - "line": 84, - "column": 8, - "index": 2406 - }, - { - "filePath": "src/users/entitlements/CreateEntitlementForm.jsx", - "line": 63, - "column": 6, - "index": 1839 - }, - { - "filePath": "src/users/entitlements/CreateEntitlementForm.jsx", - "line": 73, - "column": 6, - "index": 2108 - }, - { - "filePath": "src/users/entitlements/CreateEntitlementForm.jsx", - "line": 87, - "column": 6, - "index": 2567 - }, - { - "filePath": "src/users/entitlements/ExpireEntitlementForm.jsx", - "line": 80, - "column": 6, - "index": 2289 - }, - { - "filePath": "src/users/entitlements/ReissueEntitlementForm.jsx", - "line": 78, - "column": 6, - "index": 2231 - }, - { - "filePath": "src/users/EntitlementsAndEnrollmentsContainer.jsx", - "line": 15, - "column": 8, - "index": 480 - }, - { - "filePath": "src/users/UserSearch.jsx", - "line": 21, - "column": 8, - "index": 547 + "index": 6425 } ], - "Tabs": [ - { - "filePath": "src/ProgramEnrollments/ProgramEnrollmentsIndexPage.jsx", - "line": 19, - "column": 4, - "index": 584 - }, + "IconButtonWithTooltip": [ { - "filePath": "src/SupportToolsTab/SupportToolsTab.jsx", - "line": 45, + "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormTerm.jsx", + "line": 61, "column": 8, - "index": 1536 + "index": 1908 }, { - "filePath": "src/users/LearnerInformation.jsx", + "filePath": "src/Configuration/Provisioning/SubsidyDetailView/TermDetail.jsx", "line": 18, - "column": 6, - "index": 600 - } - ], - "Tab": [ - { - "filePath": "src/ProgramEnrollments/ProgramEnrollmentsIndexPage.jsx", - "line": 20, - "column": 6, - "index": 660 - }, - { - "filePath": "src/ProgramEnrollments/ProgramEnrollmentsIndexPage.jsx", - "line": 24, - "column": 6, - "index": 804 - }, - { - "filePath": "src/SupportToolsTab/SupportToolsTab.jsx", - "line": 55, - "column": 10, - "index": 1818 - }, - { - "filePath": "src/SupportToolsTab/SupportToolsTab.jsx", - "line": 60, - "column": 10, - "index": 1972 - }, - { - "filePath": "src/SupportToolsTab/SupportToolsTab.jsx", - "line": 67, "column": 10, - "index": 2200 - }, - { - "filePath": "src/users/LearnerInformation.jsx", - "line": 22, - "column": 8, - "index": 695 - }, - { - "filePath": "src/users/LearnerInformation.jsx", - "line": 30, - "column": 8, - "index": 895 - }, - { - "filePath": "src/users/LearnerInformation.jsx", - "line": 35, - "column": 8, - "index": 1082 - }, - { - "filePath": "src/users/LearnerInformation.jsx", - "line": 40, - "column": 8, - "index": 1236 - }, - { - "filePath": "src/users/LearnerInformation.jsx", - "line": 51, - "column": 8, - "index": 1489 - }, - { - "filePath": "src/users/LearnerInformation.jsx", - "line": 56, - "column": 8, - "index": 1645 - } - ], - "Dropdown": [ - { - "filePath": "src/supportHeader/DesktopHeader.jsx", - "line": 54, - "column": 6, - "index": 1367 - }, - { - "filePath": "src/supportHeader/MobileHeader.jsx", - "line": 56, - "column": 6, - "index": 1326 - }, - { - "filePath": "src/users/enrollments/Enrollments.jsx", - "line": 89, - "column": 8, - "index": 3492 - }, - { - "filePath": "src/users/entitlements/Entitlements.jsx", - "line": 104, - "column": 8, - "index": 3729 + "index": 560 } ], - "Dropdown.Toggle": [ - { - "filePath": "src/supportHeader/DesktopHeader.jsx", - "line": 55, - "column": 8, - "index": 1386 - }, - { - "filePath": "src/supportHeader/MobileHeader.jsx", - "line": 57, - "column": 8, - "index": 1345 - }, + "InfoOutline": [ { - "filePath": "src/users/enrollments/Enrollments.jsx", - "line": 90, - "column": 10, - "index": 3513 + "filePath": "src/Configuration/Provisioning/ProvisioningForm/ProvisioningFormTerm.jsx", + "line": 62, + "column": 15, + "index": 1946 }, { - "filePath": "src/users/entitlements/Entitlements.jsx", - "line": 105, - "column": 10, - "index": 3750 + "filePath": "src/Configuration/Provisioning/SubsidyDetailView/TermDetail.jsx", + "line": 19, + "column": 17, + "index": 600 } ], - "AvatarButton": [ - { - "filePath": "src/supportHeader/DesktopHeader.jsx", - "line": 55, - "column": 65, - "index": 1443 - }, + "Check": [ { - "filePath": "src/supportHeader/MobileHeader.jsx", - "line": 57, - "column": 57, - "index": 1394 + "filePath": "src/Configuration/Provisioning/SubsidyDetailView/InternalOnlyDetail.jsx", + "line": 16, + "column": 21, + "index": 500 } ], - "Dropdown.Menu": [ - { - "filePath": "src/supportHeader/DesktopHeader.jsx", - "line": 59, - "column": 8, - "index": 1528 - }, - { - "filePath": "src/supportHeader/MobileHeader.jsx", - "line": 61, - "column": 8, - "index": 1479 - }, - { - "filePath": "src/users/enrollments/Enrollments.jsx", - "line": 93, - "column": 10, - "index": 3603 - }, + "useToggle": [ { - "filePath": "src/users/entitlements/Entitlements.jsx", - "line": 108, - "column": 10, - "index": 3840 + "filePath": "src/Configuration/Provisioning/SubsidyEditView/CancelButton.jsx", + "line": 14, + "column": 32, + "index": 404 } ], - "Dropdown.Item": [ - { - "filePath": "src/supportHeader/DesktopHeader.jsx", - "line": 70, - "column": 6, - "index": 1815 - }, - { - "filePath": "src/supportHeader/DesktopHeader.jsx", - "line": 78, - "column": 6, - "index": 2077 - }, - { - "filePath": "src/supportHeader/MobileHeader.jsx", - "line": 72, - "column": 6, - "index": 1766 - }, + "ModalDialog": [ { - "filePath": "src/supportHeader/MobileHeader.jsx", - "line": 80, + "filePath": "src/Configuration/Provisioning/SubsidyEditView/CancelButton.jsx", + "line": 33, "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": 916 }, - { - "filePath": "src/users/entitlements/Entitlements.jsx", - "line": 121, - "column": 12, - "index": 4307 - } - ], - "ModalDialog": [ { "filePath": "src/users/account-actions/CancelRetirement.jsx", "line": 55, @@ -31590,6 +33092,12 @@ } ], "ModalDialog.Header": [ + { + "filePath": "src/Configuration/Provisioning/SubsidyEditView/CancelButton.jsx", + "line": 41, + "column": 8, + "index": 1100 + }, { "filePath": "src/users/account-actions/CancelRetirement.jsx", "line": 62, @@ -31676,6 +33184,12 @@ } ], "ModalDialog.Title": [ + { + "filePath": "src/Configuration/Provisioning/SubsidyEditView/CancelButton.jsx", + "line": 42, + "column": 10, + "index": 1131 + }, { "filePath": "src/users/account-actions/CancelRetirement.jsx", "line": 63, @@ -31762,6 +33276,12 @@ } ], "ModalDialog.Body": [ + { + "filePath": "src/Configuration/Provisioning/SubsidyEditView/CancelButton.jsx", + "line": 47, + "column": 8, + "index": 1254 + }, { "filePath": "src/users/account-actions/CancelRetirement.jsx", "line": 67, @@ -31848,6 +33368,12 @@ } ], "ModalDialog.Footer": [ + { + "filePath": "src/Configuration/Provisioning/SubsidyEditView/CancelButton.jsx", + "line": 53, + "column": 8, + "index": 1371 + }, { "filePath": "src/users/account-actions/CancelRetirement.jsx", "line": 70, @@ -31934,6 +33460,12 @@ } ], "ModalDialog.CloseButton": [ + { + "filePath": "src/Configuration/Provisioning/SubsidyEditView/CancelButton.jsx", + "line": 56, + "column": 12, + "index": 1550 + }, { "filePath": "src/users/account-actions/CancelRetirement.jsx", "line": 72, @@ -32019,6 +33551,482 @@ "index": 5354 } ], + "Row": [ + { + "filePath": "src/FeatureBasedEnrollments/FeatureBasedEnrollment.jsx", + "line": 45, + "column": 16, + "index": 1575 + }, + { + "filePath": "src/ProgramEnrollments/ProgramInspector/ProgramInspector.jsx", + "line": 166, + "column": 14, + "index": 5444 + }, + { + "filePath": "src/ProgramEnrollments/ProgramInspector/ProgramInspector.jsx", + "line": 176, + "column": 14, + "index": 5789 + }, + { + "filePath": "src/users/licenses/LicenseCard.jsx", + "line": 65, + "column": 10, + "index": 1713 + }, + { + "filePath": "src/users/licenses/Licenses.jsx", + "line": 34, + "column": 10, + "index": 966 + }, + { + "filePath": "src/users/SingleSignOnRecordCard.jsx", + "line": 104, + "column": 10, + "index": 3074 + }, + { + "filePath": "src/users/SingleSignOnRecordCard.jsx", + "line": 113, + "column": 10, + "index": 3438 + }, + { + "filePath": "src/users/SingleSignOnRecords.jsx", + "line": 43, + "column": 10, + "index": 1593 + } + ], + "Card": [ + { + "filePath": "src/FeatureBasedEnrollments/FeatureBasedEnrollmentCard.jsx", + "line": 10, + "column": 4, + "index": 238 + }, + { + "filePath": "src/users/licenses/LicenseCard.jsx", + "line": 56, + "column": 6, + "index": 1459 + }, + { + "filePath": "src/users/SingleSignOnRecordCard.jsx", + "line": 95, + "column": 6, + "index": 2782 + } + ], + "Card.Header": [ + { + "filePath": "src/FeatureBasedEnrollments/FeatureBasedEnrollmentCard.jsx", + "line": 11, + "column": 6, + "index": 251 + }, + { + "filePath": "src/users/licenses/LicenseCard.jsx", + "line": 57, + "column": 8, + "index": 1507 + }, + { + "filePath": "src/users/licenses/LicenseCard.jsx", + "line": 75, + "column": 8, + "index": 2117 + }, + { + "filePath": "src/users/SingleSignOnRecordCard.jsx", + "line": 96, + "column": 8, + "index": 2830 + }, + { + "filePath": "src/users/SingleSignOnRecordCard.jsx", + "line": 126, + "column": 8, + "index": 3764 + } + ], + "Card.Section": [ + { + "filePath": "src/FeatureBasedEnrollments/FeatureBasedEnrollmentCard.jsx", + "line": 21, + "column": 6, + "index": 530 + }, + { + "filePath": "src/users/licenses/LicenseCard.jsx", + "line": 64, + "column": 8, + "index": 1688 + }, + { + "filePath": "src/users/licenses/LicenseCard.jsx", + "line": 83, + "column": 8, + "index": 2275 + }, + { + "filePath": "src/users/SingleSignOnRecordCard.jsx", + "line": 103, + "column": 8, + "index": 3049 + }, + { + "filePath": "src/users/SingleSignOnRecordCard.jsx", + "line": 134, + "column": 8, + "index": 3921 + } + ], + "Card.Footer": [ + { + "filePath": "src/FeatureBasedEnrollments/FeatureBasedEnrollmentCard.jsx", + "line": 39, + "column": 6, + "index": 957 + } + ], + "Input": [ + { + "filePath": "src/FeatureBasedEnrollments/FeatureBasedEnrollmentIndexPage.jsx", + "line": 99, + "column": 10, + "index": 3184 + }, + { + "filePath": "src/ProgramEnrollments/LinkProgramEnrollments.jsx", + "line": 51, + "column": 12, + "index": 1563 + }, + { + "filePath": "src/ProgramEnrollments/LinkProgramEnrollments.jsx", + "line": 66, + "column": 12, + "index": 2045 + }, + { + "filePath": "src/ProgramEnrollments/ProgramInspector/ProgramInspector.jsx", + "line": 120, + "column": 14, + "index": 3748 + }, + { + "filePath": "src/ProgramEnrollments/ProgramInspector/ProgramInspector.jsx", + "line": 133, + "column": 14, + "index": 4247 + }, + { + "filePath": "src/ProgramEnrollments/ProgramInspector/ProgramInspector.jsx", + "line": 144, + "column": 14, + "index": 4670 + }, + { + "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 + }, + { + "filePath": "src/users/enrollments/CreateEnrollmentForm.jsx", + "line": 58, + "column": 8, + "index": 1722 + }, + { + "filePath": "src/users/enrollments/CreateEnrollmentForm.jsx", + "line": 84, + "column": 8, + "index": 2406 + }, + { + "filePath": "src/users/entitlements/CreateEntitlementForm.jsx", + "line": 63, + "column": 6, + "index": 1839 + }, + { + "filePath": "src/users/entitlements/CreateEntitlementForm.jsx", + "line": 73, + "column": 6, + "index": 2108 + }, + { + "filePath": "src/users/entitlements/CreateEntitlementForm.jsx", + "line": 87, + "column": 6, + "index": 2567 + }, + { + "filePath": "src/users/entitlements/ExpireEntitlementForm.jsx", + "line": 80, + "column": 6, + "index": 2289 + }, + { + "filePath": "src/users/entitlements/ReissueEntitlementForm.jsx", + "line": 78, + "column": 6, + "index": 2231 + }, + { + "filePath": "src/users/EntitlementsAndEnrollmentsContainer.jsx", + "line": 15, + "column": 8, + "index": 480 + }, + { + "filePath": "src/users/UserSearch.jsx", + "line": 21, + "column": 8, + "index": 547 + } + ], + "Tabs": [ + { + "filePath": "src/ProgramEnrollments/ProgramEnrollmentsIndexPage.jsx", + "line": 19, + "column": 4, + "index": 584 + }, + { + "filePath": "src/SupportToolsTab/SupportToolsTab.jsx", + "line": 45, + "column": 8, + "index": 1536 + }, + { + "filePath": "src/users/LearnerInformation.jsx", + "line": 18, + "column": 6, + "index": 600 + } + ], + "Tab": [ + { + "filePath": "src/ProgramEnrollments/ProgramEnrollmentsIndexPage.jsx", + "line": 20, + "column": 6, + "index": 660 + }, + { + "filePath": "src/ProgramEnrollments/ProgramEnrollmentsIndexPage.jsx", + "line": 24, + "column": 6, + "index": 804 + }, + { + "filePath": "src/SupportToolsTab/SupportToolsTab.jsx", + "line": 55, + "column": 10, + "index": 1818 + }, + { + "filePath": "src/SupportToolsTab/SupportToolsTab.jsx", + "line": 60, + "column": 10, + "index": 1972 + }, + { + "filePath": "src/SupportToolsTab/SupportToolsTab.jsx", + "line": 67, + "column": 10, + "index": 2200 + }, + { + "filePath": "src/users/LearnerInformation.jsx", + "line": 22, + "column": 8, + "index": 695 + }, + { + "filePath": "src/users/LearnerInformation.jsx", + "line": 30, + "column": 8, + "index": 895 + }, + { + "filePath": "src/users/LearnerInformation.jsx", + "line": 35, + "column": 8, + "index": 1082 + }, + { + "filePath": "src/users/LearnerInformation.jsx", + "line": 40, + "column": 8, + "index": 1236 + }, + { + "filePath": "src/users/LearnerInformation.jsx", + "line": 51, + "column": 8, + "index": 1489 + }, + { + "filePath": "src/users/LearnerInformation.jsx", + "line": 56, + "column": 8, + "index": 1645 + } + ], + "Dropdown": [ + { + "filePath": "src/supportHeader/DesktopHeader.jsx", + "line": 54, + "column": 6, + "index": 1367 + }, + { + "filePath": "src/supportHeader/MobileHeader.jsx", + "line": 56, + "column": 6, + "index": 1326 + }, + { + "filePath": "src/users/enrollments/Enrollments.jsx", + "line": 89, + "column": 8, + "index": 3492 + }, + { + "filePath": "src/users/entitlements/Entitlements.jsx", + "line": 104, + "column": 8, + "index": 3729 + } + ], + "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 + }, + { + "filePath": "src/users/entitlements/Entitlements.jsx", + "line": 105, + "column": 10, + "index": 3750 + } + ], + "AvatarButton": [ + { + "filePath": "src/supportHeader/DesktopHeader.jsx", + "line": 55, + "column": 65, + "index": 1443 + }, + { + "filePath": "src/supportHeader/MobileHeader.jsx", + "line": 57, + "column": 57, + "index": 1394 + } + ], + "Dropdown.Menu": [ + { + "filePath": "src/supportHeader/DesktopHeader.jsx", + "line": 59, + "column": 8, + "index": 1528 + }, + { + "filePath": "src/supportHeader/MobileHeader.jsx", + "line": 61, + "column": 8, + "index": 1479 + }, + { + "filePath": "src/users/enrollments/Enrollments.jsx", + "line": 93, + "column": 10, + "index": 3603 + }, + { + "filePath": "src/users/entitlements/Entitlements.jsx", + "line": 108, + "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 + }, + { + "filePath": "src/supportHeader/MobileHeader.jsx", + "line": 72, + "column": 6, + "index": 1766 + }, + { + "filePath": "src/supportHeader/MobileHeader.jsx", + "line": 80, + "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 + }, + { + "filePath": "src/users/entitlements/Entitlements.jsx", + "line": 121, + "column": 12, + "index": 4307 + } + ], "InputSelect": [ { "filePath": "src/users/enrollments/ChangeEnrollmentForm.jsx", @@ -32131,7 +34139,7 @@ } }, { - "version": "20.45.5", + "version": "20.46.2", "name": "@edx/frontend-component-header-edx", "repository": { "type": "git", @@ -32260,9 +34268,9 @@ }, { "filePath": "src/Notifications/index.jsx", - "line": 145, + "line": 288, "column": 10, - "index": 5467 + "index": 10613 } ], "Button": [ @@ -32278,17 +34286,23 @@ "column": 4, "index": 615 }, + { + "filePath": "src/Notifications/index.jsx", + "line": 261, + "column": 16, + "index": 9722 + }, { "filePath": "src/Notifications/NotificationSections.jsx", - "line": 46, + "line": 50, "column": 12, - "index": 2120 + "index": 2356 }, { "filePath": "src/Notifications/NotificationSections.jsx", - "line": 81, + "line": 85, "column": 8, - "index": 3559 + "index": 3833 } ], "useWindowSize": [ @@ -32328,59 +34342,59 @@ "OverlayTrigger": [ { "filePath": "src/Notifications/index.jsx", - "line": 70, + "line": 219, "column": 6, - "index": 2577 - }, - { - "filePath": "src/Notifications/index.jsx", - "line": 95, - "column": 18, - "index": 3607 + "index": 7997 } ], "Popover": [ { "filePath": "src/Notifications/index.jsx", - "line": 77, + "line": 226, "column": 10, - "index": 2762 + "index": 8182 } ], "Popover.Title": [ { "filePath": "src/Notifications/index.jsx", - "line": 88, + "line": 237, "column": 14, - "index": 3217 + "index": 8652 } ], - "Tooltip": [ + "Hyperlink": [ { "filePath": "src/Notifications/index.jsx", - "line": 97, - "column": 22, - "index": 3676 + "line": 243, + "column": 16, + "index": 8963 + }, + { + "filePath": "src/Notifications/tours/constants.js", + "line": 16, + "column": 14, + "index": 487 + }, + { + "filePath": "src/Notifications/tours/constants.js", + "line": 33, + "column": 14, + "index": 1151 } ], "Icon": [ { "filePath": "src/Notifications/index.jsx", - "line": 102, - "column": 20, - "index": 3865 - }, - { - "filePath": "src/Notifications/index.jsx", - "line": 116, + "line": 249, "column": 18, - "index": 4454 + "index": 9213 }, { "filePath": "src/Notifications/index.jsx", - "line": 137, + "line": 280, "column": 20, - "index": 5188 + "index": 10334 }, { "filePath": "src/Notifications/NotificationRowItem.jsx", @@ -32389,94 +34403,100 @@ "index": 1117 }, { - "filePath": "src/Notifications/tours/constants.js", - "line": 22, - "column": 14, - "index": 731 - } - ], - "Feedback": [ - { - "filePath": "src/Notifications/index.jsx", - "line": 104, - "column": 27, - "index": 3953 - } - ], - "Hyperlink": [ + "filePath": "src/Notifications/NotificationSections.jsx", + "line": 101, + "column": 12, + "index": 4344 + }, { - "filePath": "src/Notifications/index.jsx", - "line": 110, - "column": 16, - "index": 4204 + "filePath": "src/Notifications/NotificationSections.jsx", + "line": 106, + "column": 14, + "index": 4663 }, { "filePath": "src/Notifications/tours/constants.js", - "line": 15, - "column": 12, - "index": 457 + "line": 23, + "column": 16, + "index": 775 } ], "Settings": [ { "filePath": "src/Notifications/index.jsx", - "line": 117, + "line": 250, "column": 25, - "index": 4485 + "index": 9244 }, { "filePath": "src/Notifications/tours/constants.js", - "line": 23, - "column": 21, - "index": 758 + "line": 24, + "column": 23, + "index": 804 } ], "Popover.Content": [ { "filePath": "src/Notifications/index.jsx", - "line": 124, + "line": 257, "column": 14, - "index": 4764 + "index": 9523 } ], "IconButton": [ { "filePath": "src/Notifications/index.jsx", - "line": 132, + "line": 275, "column": 10, - "index": 4988 + "index": 10134 } ], "NotificationsNone": [ { "filePath": "src/Notifications/index.jsx", - "line": 136, + "line": 279, "column": 17, - "index": 5149 + "index": 10295 } ], "Spinner": [ { "filePath": "src/Notifications/NotificationSections.jsx", - "line": 78, + "line": 82, "column": 10, - "index": 3346 + "index": 3620 + } + ], + "CheckCircleOutline": [ + { + "filePath": "src/Notifications/NotificationSections.jsx", + "line": 101, + "column": 56, + "index": 4388 + } + ], + "AutoAwesome": [ + { + "filePath": "src/Notifications/NotificationSections.jsx", + "line": 106, + "column": 25, + "index": 4674 } ], "Tabs": [ { "filePath": "src/Notifications/NotificationTabs.jsx", - "line": 34, - "column": 4, - "index": 1362 + "line": 36, + "column": 8, + "index": 1408 } ], "Tab": [ { "filePath": "src/Notifications/NotificationTabs.jsx", - "line": 41, - "column": 8, - "index": 1602 + "line": 43, + "column": 12, + "index": 1676 } ], "ProductTour": [ @@ -33127,9 +35147,9 @@ }, { "filePath": "src/editors/sharedComponents/BaseModal/index.jsx", - "line": 42, + "line": 43, "column": 4, - "index": 878 + "index": 896 } ], "ActionRow": [ @@ -33261,21 +35281,21 @@ }, { "filePath": "src/editors/sharedComponents/BaseModal/index.jsx", - "line": 43, + "line": 44, "column": 6, - "index": 905 + "index": 923 }, { "filePath": "src/editors/sharedComponents/SelectionModal/SearchSort.jsx", - "line": 34, - "column": 2, - "index": 604 + "line": 31, + "column": 4, + "index": 704 }, { "filePath": "src/editors/sharedComponents/TypeaheadDropdown/index.jsx", "line": 185, "column": 6, - "index": 4666 + "index": 4673 }, { "filePath": "src/footer/Footer.jsx", @@ -33305,21 +35325,21 @@ }, { "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/ResetCard.jsx", - "line": 32, - "column": 8, - "index": 1235 + "line": 34, + "column": 10, + "index": 1320 }, { "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/ScoringCard.jsx", - "line": 79, - "column": 6, - "index": 2631 + "line": 81, + "column": 8, + "index": 2669 }, { "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/ShowAnswerCard.jsx", - "line": 36, - "column": 8, - "index": 1035 + "line": 38, + "column": 10, + "index": 1075 }, { "filePath": "src/editors/containers/ProblemEditor/components/SelectTypeModal/content/AdvanceTypeSelect.jsx", @@ -33347,9 +35367,9 @@ }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoPreviewWidget/index.jsx", - "line": 48, + "line": 50, "column": 14, - "index": 1516 + "index": 1658 }, { "filePath": "src/footer/Footer.jsx", @@ -33505,27 +35525,27 @@ }, { "filePath": "src/editors/sharedComponents/BaseModal/index.jsx", - "line": 45, + "line": 46, "column": 8, - "index": 948 + "index": 966 }, { "filePath": "src/editors/sharedComponents/SelectionModal/SearchSort.jsx", - "line": 58, - "column": 21, - "index": 1250 + "line": 56, + "column": 23, + "index": 1435 }, { "filePath": "src/editors/sharedComponents/SelectionModal/SearchSort.jsx", - "line": 89, - "column": 8, - "index": 2301 + "line": 69, + "column": 10, + "index": 1893 }, { "filePath": "src/editors/sharedComponents/TypeaheadDropdown/index.jsx", "line": 187, "column": 8, - "index": 4774 + "index": 4781 }, { "filePath": "src/footer/Footer.jsx", @@ -33591,15 +35611,15 @@ }, { "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/ResetCard.jsx", - "line": 37, + "line": 40, "column": 8, - "index": 1478 + "index": 1578 }, { "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/ResetCard.jsx", - "line": 40, + "line": 43, "column": 8, - "index": 1669 + "index": 1769 }, { "filePath": "src/editors/containers/ProblemEditor/components/SelectTypeModal/content/ProblemTypeSelect.jsx", @@ -33681,9 +35701,9 @@ }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/index.jsx", - "line": 26, - "column": 4, - "index": 942 + "line": 29, + "column": 6, + "index": 992 }, { "filePath": "src/editors/sharedComponents/Button/index.jsx", @@ -33729,15 +35749,15 @@ }, { "filePath": "src/editors/sharedComponents/SelectionModal/index.jsx", - "line": 64, + "line": 61, "column": 8, - "index": 1360 + "index": 1325 }, { "filePath": "src/editors/sharedComponents/SelectionModal/index.jsx", - "line": 72, + "line": 69, "column": 8, - "index": 1597 + "index": 1562 }, { "filePath": "src/editors/sharedComponents/SourceCodeModal/index.jsx", @@ -33749,7 +35769,7 @@ "filePath": "src/editors/sharedComponents/TypeaheadDropdown/index.jsx", "line": 189, "column": 10, - "index": 4845 + "index": 4852 }, { "filePath": "src/footer/Footer.jsx", @@ -33845,21 +35865,21 @@ }, { "filePath": "src/editors/containers/VideoEditor/index.jsx", - "line": 50, + "line": 51, "column": 12, - "index": 1283 + "index": 1315 }, { "filePath": "src/editors/containers/VideoUploadEditor/index.jsx", - "line": 127, + "line": 25, "column": 10, - "index": 4241 + "index": 665 }, { "filePath": "src/editors/sharedComponents/SelectionModal/Gallery.jsx", - "line": 43, + "line": 37, "column": 8, - "index": 746 + "index": 690 }, { "filePath": "src/example.jsx", @@ -33895,27 +35915,27 @@ }, { "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/ScoringCard.jsx", - "line": 47, + "line": 48, "column": 6, - "index": 1491 + "index": 1504 }, { "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/ScoringCard.jsx", - "line": 58, + "line": 59, "column": 6, - "index": 1860 + "index": 1873 }, { "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/ShowAnswerCard.jsx", - "line": 40, + "line": 43, "column": 6, - "index": 1260 + "index": 1315 }, { "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/ShowAnswerCard.jsx", - "line": 64, + "line": 67, "column": 8, - "index": 2065 + "index": 2120 }, { "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/TimerCard.jsx", @@ -34003,9 +36023,9 @@ }, { "filePath": "src/editors/sharedComponents/SelectionModal/SearchSort.jsx", - "line": 35, - "column": 4, - "index": 620 + "line": 32, + "column": 6, + "index": 722 }, { "filePath": "src/editors/sharedComponents/TypeaheadDropdown/FormGroup.jsx", @@ -34065,27 +36085,27 @@ }, { "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/ScoringCard.jsx", - "line": 48, + "line": 49, "column": 8, - "index": 1512 + "index": 1525 }, { "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/ScoringCard.jsx", - "line": 59, + "line": 60, "column": 8, - "index": 1881 + "index": 1894 }, { "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/ShowAnswerCard.jsx", - "line": 41, + "line": 44, "column": 8, - "index": 1303 + "index": 1358 }, { "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/ShowAnswerCard.jsx", - "line": 65, + "line": 68, "column": 10, - "index": 2115 + "index": 2170 }, { "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/TimerCard.jsx", @@ -34161,9 +36181,9 @@ }, { "filePath": "src/editors/sharedComponents/SelectionModal/SearchSort.jsx", - "line": 36, - "column": 6, - "index": 661 + "line": 33, + "column": 8, + "index": 765 }, { "filePath": "src/editors/sharedComponents/TypeaheadDropdown/FormGroup.jsx", @@ -34190,6 +36210,12 @@ "line": 13, "column": 18, "index": 260 + }, + { + "filePath": "src/editors/sharedComponents/SelectionModal/MultiSelectFilterDropdown.jsx", + "line": 22, + "column": 16, + "index": 709 } ], "ButtonGroup": [ @@ -34201,9 +36227,9 @@ }, { "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/ResetCard.jsx", - "line": 36, + "line": 39, "column": 6, - "index": 1408 + "index": 1508 } ], "IconButtonWithTooltip": [ @@ -34507,27 +36533,27 @@ }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/index.jsx", - "line": 36, - "column": 6, - "index": 1142 + "line": 39, + "column": 8, + "index": 1212 }, { - "filePath": "src/editors/containers/VideoUploadEditor/index.jsx", - "line": 50, - "column": 12, - "index": 1828 + "filePath": "src/editors/containers/VideoUploadEditor/VideoUploader.jsx", + "line": 21, + "column": 8, + "index": 842 }, { - "filePath": "src/editors/containers/VideoUploadEditor/index.jsx", - "line": 73, - "column": 12, - "index": 2992 + "filePath": "src/editors/containers/VideoUploadEditor/VideoUploader.jsx", + "line": 43, + "column": 22, + "index": 2108 }, { - "filePath": "src/editors/containers/VideoUploadEditor/index.jsx", - "line": 119, - "column": 22, - "index": 3997 + "filePath": "src/editors/containers/VideoUploadEditor/VideoUploader.jsx", + "line": 79, + "column": 18, + "index": 3137 }, { "filePath": "src/editors/sharedComponents/DraggableList/SortableItem.jsx", @@ -34543,27 +36569,27 @@ }, { "filePath": "src/editors/sharedComponents/SelectionModal/SearchSort.jsx", - "line": 44, + "line": 42, "column": 26, - "index": 919 + "index": 1096 }, { "filePath": "src/editors/sharedComponents/SelectionModal/SearchSort.jsx", - "line": 52, + "line": 50, "column": 16, - "index": 1138 + "index": 1315 }, { "filePath": "src/editors/sharedComponents/TypeaheadDropdown/index.jsx", "line": 159, "column": 16, - "index": 4140 + "index": 4147 }, { "filePath": "src/editors/sharedComponents/TypeaheadDropdown/index.jsx", "line": 174, "column": 16, - "index": 4462 + "index": 4469 } ], "Close": [ @@ -34592,16 +36618,16 @@ "index": 707 }, { - "filePath": "src/editors/containers/VideoUploadEditor/index.jsx", - "line": 118, - "column": 19, - "index": 3968 + "filePath": "src/editors/containers/VideoUploadEditor/VideoUploader.jsx", + "line": 78, + "column": 15, + "index": 3112 }, { "filePath": "src/editors/sharedComponents/SelectionModal/SearchSort.jsx", - "line": 49, + "line": 47, "column": 23, - "index": 1080 + "index": 1257 } ], "Truncate": [ @@ -34692,10 +36718,16 @@ "index": 1305 }, { - "filePath": "src/editors/containers/VideoUploadEditor/index.jsx", - "line": 117, + "filePath": "src/editors/containers/VideoUploadEditor/VideoUploader.jsx", + "line": 39, "column": 12, - "index": 3937 + "index": 1935 + }, + { + "filePath": "src/editors/containers/VideoUploadEditor/VideoUploader.jsx", + "line": 75, + "column": 8, + "index": 2971 }, { "filePath": "src/editors/sharedComponents/ImageUploadModal/ImageSettingsModal/DimensionControls.jsx", @@ -34705,21 +36737,21 @@ }, { "filePath": "src/editors/sharedComponents/SelectionModal/SearchSort.jsx", - "line": 43, + "line": 40, "column": 16, - "index": 881 + "index": 993 }, { "filePath": "src/editors/sharedComponents/TypeaheadDropdown/index.jsx", "line": 155, "column": 6, - "index": 4014 + "index": 4021 }, { "filePath": "src/editors/sharedComponents/TypeaheadDropdown/index.jsx", "line": 170, "column": 6, - "index": 4336 + "index": 4343 } ], "EditOutline": [ @@ -34751,9 +36783,9 @@ }, { "filePath": "src/editors/sharedComponents/BaseModal/index.jsx", - "line": 33, + "line": 34, "column": 4, - "index": 585 + "index": 603 } ], "ModalDialog.Body": [ @@ -34777,9 +36809,9 @@ }, { "filePath": "src/editors/sharedComponents/BaseModal/index.jsx", - "line": 39, + "line": 40, "column": 4, - "index": 796 + "index": 814 } ], "Collapsible.Advanced": [ @@ -34827,9 +36859,9 @@ }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoPreviewWidget/index.jsx", - "line": 24, + "line": 26, "column": 4, - "index": 681 + "index": 814 } ], "Collapsible.Body": [ @@ -34871,9 +36903,9 @@ }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoPreviewWidget/index.jsx", - "line": 29, + "line": 31, "column": 6, - "index": 802 + "index": 935 } ], "Collapsible.Trigger": [ @@ -34974,16 +37006,10 @@ "index": 1190 }, { - "filePath": "src/editors/sharedComponents/SelectionModal/SearchSort.jsx", - "line": 59, + "filePath": "src/editors/sharedComponents/SelectionModal/MultiSelectFilterDropdown.jsx", + "line": 14, "column": 4, - "index": 1277 - }, - { - "filePath": "src/editors/sharedComponents/SelectionModal/SearchSort.jsx", - "line": 73, - "column": 6, - "index": 1772 + "index": 383 } ], "Dropdown.Toggle": [ @@ -35010,18 +37036,6 @@ "line": 38, "column": 6, "index": 1207 - }, - { - "filePath": "src/editors/sharedComponents/SelectionModal/SearchSort.jsx", - "line": 60, - "column": 6, - "index": 1294 - }, - { - "filePath": "src/editors/sharedComponents/SelectionModal/SearchSort.jsx", - "line": 74, - "column": 8, - "index": 1791 } ], "Add": [ @@ -35051,15 +37065,15 @@ }, { "filePath": "src/editors/sharedComponents/SelectionModal/index.jsx", - "line": 74, + "line": 71, "column": 22, - "index": 1666 + "index": 1631 }, { "filePath": "src/editors/sharedComponents/TypeaheadDropdown/index.jsx", "line": 191, "column": 24, - "index": 4921 + "index": 4928 } ], "Dropdown.Menu": [ @@ -35088,16 +37102,10 @@ "index": 1435 }, { - "filePath": "src/editors/sharedComponents/SelectionModal/SearchSort.jsx", - "line": 63, + "filePath": "src/editors/sharedComponents/SelectionModal/MultiSelectFilterDropdown.jsx", + "line": 18, "column": 6, - "index": 1468 - }, - { - "filePath": "src/editors/sharedComponents/SelectionModal/SearchSort.jsx", - "line": 77, - "column": 8, - "index": 1977 + "index": 554 } ], "Dropdown.Item": [ @@ -35168,16 +37176,10 @@ "index": 1885 }, { - "filePath": "src/editors/sharedComponents/SelectionModal/SearchSort.jsx", - "line": 65, + "filePath": "src/editors/sharedComponents/SelectionModal/MultiSelectFilterDropdown.jsx", + "line": 20, "column": 10, - "index": 1538 - }, - { - "filePath": "src/editors/sharedComponents/SelectionModal/SearchSort.jsx", - "line": 79, - "column": 12, - "index": 2053 + "index": 656 } ], "Form.Label": [ @@ -35351,9 +37353,9 @@ }, { "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/ScoringCard.jsx", - "line": 69, + "line": 70, "column": 8, - "index": 2282 + "index": 2295 }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/SocialShareWidget/index.jsx", @@ -35621,9 +37623,9 @@ }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoPreviewWidget/index.jsx", - "line": 31, + "line": 33, "column": 10, - "index": 920 + "index": 1053 }, { "filePath": "src/editors/sharedComponents/ImageUploadModal/ImageSettingsModal/index.jsx", @@ -35633,9 +37635,9 @@ }, { "filePath": "src/editors/sharedComponents/SelectionModal/GalleryCard.jsx", - "line": 37, + "line": 32, "column": 8, - "index": 924 + "index": 866 }, { "filePath": "src/footer/Footer.jsx", @@ -35653,9 +37655,9 @@ }, { "filePath": "src/editors/sharedComponents/SelectionModal/Gallery.jsx", - "line": 68, + "line": 62, "column": 8, - "index": 1461 + "index": 1405 } ], "SelectableBox": [ @@ -35735,15 +37737,15 @@ }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoPreviewWidget/index.jsx", - "line": 44, + "line": 46, "column": 10, - "index": 1297 + "index": 1439 }, { "filePath": "src/editors/sharedComponents/SelectionModal/index.jsx", - "line": 111, + "line": 108, "column": 6, - "index": 2749 + "index": 2714 } ], "ModalDialog.Title": [ @@ -35761,9 +37763,9 @@ }, { "filePath": "src/editors/sharedComponents/BaseModal/index.jsx", - "line": 34, + "line": 35, "column": 6, - "index": 679 + "index": 697 } ], "ModalDialog": [ @@ -35789,9 +37791,9 @@ }, { "filePath": "src/editors/sharedComponents/BaseModal/index.jsx", - "line": 46, + "line": 47, "column": 8, - "index": 977 + "index": 995 } ], "InfoOutline": [ @@ -35831,7 +37833,7 @@ "filePath": "src/editors/sharedComponents/TypeaheadDropdown/index.jsx", "line": 158, "column": 13, - "index": 4112 + "index": 4119 } ], "ExpandLess": [ @@ -35845,7 +37847,7 @@ "filePath": "src/editors/sharedComponents/TypeaheadDropdown/index.jsx", "line": 173, "column": 13, - "index": 4434 + "index": 4441 } ], "Form.Row": [ @@ -35890,10 +37892,10 @@ "index": 3555 }, { - "filePath": "src/editors/containers/VideoUploadEditor/index.jsx", - "line": 50, - "column": 23, - "index": 1839 + "filePath": "src/editors/containers/VideoUploadEditor/VideoUploader.jsx", + "line": 21, + "column": 19, + "index": 853 } ], "Copyright": [ @@ -36043,9 +38045,9 @@ "ArrowBackIos": [ { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/index.jsx", - "line": 36, - "column": 17, - "index": 1153 + "line": 39, + "column": 19, + "index": 1223 }, { "filePath": "src/editors/sharedComponents/ImageUploadModal/ImageSettingsModal/index.jsx", @@ -36054,12 +38056,36 @@ "index": 1970 } ], + "InputGroup": [ + { + "filePath": "src/editors/containers/VideoUploadEditor/VideoUploader.jsx", + "line": 29, + "column": 8, + "index": 1408 + } + ], + "FormControl": [ + { + "filePath": "src/editors/containers/VideoUploadEditor/VideoUploader.jsx", + "line": 30, + "column": 10, + "index": 1431 + } + ], "ArrowForward": [ { - "filePath": "src/editors/containers/VideoUploadEditor/index.jsx", - "line": 73, - "column": 23, - "index": 3003 + "filePath": "src/editors/containers/VideoUploadEditor/VideoUploader.jsx", + "line": 42, + "column": 19, + "index": 2072 + } + ], + "Dropzone": [ + { + "filePath": "src/editors/containers/VideoUploadEditor/VideoUploader.jsx", + "line": 83, + "column": 6, + "index": 3206 } ], "DragIndicator": [ @@ -36169,47 +38195,71 @@ "Scrollable": [ { "filePath": "src/editors/sharedComponents/SelectionModal/Gallery.jsx", - "line": 66, + "line": 60, "column": 4, - "index": 1339 + "index": 1283 } ], "Badge": [ { "filePath": "src/editors/sharedComponents/SelectionModal/GalleryCard.jsx", - "line": 42, + "line": 37, "column": 10, - "index": 1112 + "index": 1054 }, { "filePath": "src/editors/sharedComponents/SelectionModal/GalleryCard.jsx", - "line": 47, + "line": 42, "column": 10, - "index": 1315 + "index": 1257 + } + ], + "DropdownToggle": [ + { + "filePath": "src/editors/sharedComponents/SelectionModal/MultiSelectFilterDropdown.jsx", + "line": 15, + "column": 6, + "index": 418 } ], "Search": [ { "filePath": "src/editors/sharedComponents/SelectionModal/SearchSort.jsx", - "line": 52, + "line": 50, "column": 27, - "index": 1149 + "index": 1326 + } + ], + "SelectMenu": [ + { + "filePath": "src/editors/sharedComponents/SelectionModal/SearchSort.jsx", + "line": 57, + "column": 6, + "index": 1464 + } + ], + "MenuItem": [ + { + "filePath": "src/editors/sharedComponents/SelectionModal/SearchSort.jsx", + "line": 59, + "column": 10, + "index": 1546 } ], "Form.SwitchSet": [ { "filePath": "src/editors/sharedComponents/SelectionModal/SearchSort.jsx", - "line": 90, - "column": 8, - "index": 2330 + "line": 70, + "column": 10, + "index": 1924 } ], "Form.Switch": [ { "filePath": "src/editors/sharedComponents/SelectionModal/SearchSort.jsx", - "line": 95, - "column": 10, - "index": 2444 + "line": 75, + "column": 12, + "index": 2048 } ], "Help": [ @@ -36431,7 +38481,7 @@ "filePath": "src/instructions/proctored_exam/download-instructions/index.jsx", "line": 104, "column": 6, - "index": 3566 + "index": 3567 }, { "filePath": "src/instructions/proctored_exam/OnboardingErrorExamInstructions.jsx", @@ -36639,7 +38689,7 @@ "filePath": "src/instructions/proctored_exam/SubmitProctoredExamInstructions.jsx", "line": 61, "column": 6, - "index": 2208 + "index": 2209 }, { "filePath": "src/instructions/proctored_exam/WarningModal.jsx", @@ -36934,9 +38984,9 @@ }, { "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", - "line": 871, + "line": 862, "column": 35, - "index": 41310 + "index": 40835 } ], "Container": [ @@ -36956,13 +39006,7 @@ "filePath": "src/packages/become-page/components/BecomeHero.jsx", "line": 9, "column": 6, - "index": 319 - }, - { - "filePath": "src/packages/become-page/components/steps.jsx", - "line": 21, - "column": 6, - "index": 775 + "index": 332 }, { "filePath": "src/packages/careers-page/components/Hero/index.jsx", @@ -36996,9 +39040,9 @@ }, { "filePath": "src/packages/common/ui/Hero/variants/BootcampVariant.jsx", - "line": 74, + "line": 73, "column": 6, - "index": 2353 + "index": 2382 }, { "filePath": "src/packages/common/ui/SitewideBanner/index.jsx", @@ -37026,9 +39070,9 @@ }, { "filePath": "src/packages/exec-ed-page/components/CourseHeader2U/index.jsx", - "line": 247, + "line": 234, "column": 6, - "index": 7936 + "index": 7590 }, { "filePath": "src/packages/exec-ed-page/components/Factoid/index.jsx", @@ -37050,9 +39094,9 @@ }, { "filePath": "src/packages/exec-ed-page/template/ExecEdDetailPage/index.jsx", - "line": 514, + "line": 504, "column": 18, - "index": 20467 + "index": 19943 }, { "filePath": "src/packages/home-page/components/Audiences/index.jsx", @@ -37074,9 +39118,9 @@ }, { "filePath": "src/packages/home-page/components/MarketingTakeover/index.jsx", - "line": 19, + "line": 22, "column": 6, - "index": 578 + "index": 668 }, { "filePath": "src/packages/home-page/components/NewOnEdxCarousel/index.jsx", @@ -37134,9 +39178,9 @@ }, { "filePath": "src/packages/learn-page/components/DynamicProductList/index.jsx", - "line": 233, + "line": 289, "column": 6, - "index": 8281 + "index": 10351 }, { "filePath": "src/packages/learn-page/components/Hero/index.jsx", @@ -37154,25 +39198,25 @@ "filePath": "src/packages/learn-page/template/LearnPage/index.jsx", "line": 200, "column": 10, - "index": 7268 + "index": 7195 }, { "filePath": "src/packages/learn-page/template/LearnPage/index.jsx", "line": 222, "column": 12, - "index": 8186 + "index": 8113 }, { "filePath": "src/packages/learn-page/template/LearnPage/index.jsx", - "line": 262, + "line": 268, "column": 10, - "index": 9412 + "index": 9532 }, { "filePath": "src/packages/learn-page/template/LearnPage/index.jsx", - "line": 311, + "line": 317, "column": 10, - "index": 11114 + "index": 11230 }, { "filePath": "src/packages/modular-page/components/Section/index.jsx", @@ -37242,9 +39286,9 @@ }, { "filePath": "src/packages/open-course-page/components/BusinessBlock/variants/DesktopVariant.jsx", - "line": 18, + "line": 17, "column": 4, - "index": 601 + "index": 600 }, { "filePath": "src/packages/open-course-page/components/BusinessBlock/variants/MobileVariant.jsx", @@ -37254,15 +39298,15 @@ }, { "filePath": "src/packages/open-course-page/components/CourseHeader/index.jsx", - "line": 34, + "line": 51, "column": 6, - "index": 955 + "index": 1418 }, { "filePath": "src/packages/open-course-page/components/CourseMain/variants/DesktopVariant.jsx", - "line": 95, + "line": 106, "column": 4, - "index": 3340 + "index": 3904 }, { "filePath": "src/packages/open-course-page/components/CourseMain/variants/MobileVariant.jsx", @@ -37272,21 +39316,27 @@ }, { "filePath": "src/packages/open-course-page/components/CourseModes/index.jsx", - "line": 232, + "line": 257, + "column": 4, + "index": 10251 + }, + { + "filePath": "src/packages/open-course-page/components/CourseModes/TerminologyUpdateVariant/index.jsx", + "line": 200, "column": 4, - "index": 9323 + "index": 8248 }, { "filePath": "src/packages/open-course-page/components/CourseModes/Variant/index.jsx", - "line": 240, + "line": 246, "column": 6, - "index": 10674 + "index": 10893 }, { "filePath": "src/packages/open-course-page/components/CourseModes/Variant/index.jsx", - "line": 288, + "line": 302, "column": 6, - "index": 13205 + "index": 14053 }, { "filePath": "src/packages/open-course-page/components/CoursePageMobile.jsx", @@ -37320,9 +39370,9 @@ }, { "filePath": "src/packages/open-course-page/components/CourseSnapshot/index.jsx", - "line": 186, + "line": 210, "column": 12, - "index": 5855 + "index": 6695 }, { "filePath": "src/packages/open-course-page/components/FAQ/index.jsx", @@ -37380,51 +39430,51 @@ }, { "filePath": "src/packages/program-page/components/ProgramMain/index.jsx", - "line": 476, + "line": 478, "column": 8, - "index": 18345 + "index": 18504 }, { "filePath": "src/packages/program-page/components/ProgramMain/index.jsx", - "line": 477, + "line": 479, "column": 10, - "index": 18419 + "index": 18578 }, { "filePath": "src/packages/program-page/components/ProgramMain/index.jsx", - "line": 478, + "line": 480, "column": 12, - "index": 18453 + "index": 18612 }, { "filePath": "src/packages/program-page/components/ProgramMain/index.jsx", - "line": 663, + "line": 665, "column": 12, - "index": 27821 + "index": 27980 }, { "filePath": "src/packages/program-page/components/ProgramMain/index.jsx", - "line": 671, + "line": 673, "column": 12, - "index": 28292 + "index": 28451 }, { "filePath": "src/packages/program-page/components/ProgramMain/index.jsx", - "line": 690, + "line": 692, "column": 8, - "index": 29054 + "index": 29213 }, { "filePath": "src/packages/program-page/components/ProgramMain/index.jsx", - "line": 813, + "line": 815, "column": 12, - "index": 34738 + "index": 34913 }, { "filePath": "src/packages/program-page/components/ProgramMain/index.jsx", - "line": 814, + "line": 816, "column": 14, - "index": 34791 + "index": 34966 }, { "filePath": "src/packages/program-page/components/SubjectTopics/index.jsx", @@ -37438,17 +39488,23 @@ "column": 10, "index": 2251 }, + { + "filePath": "src/packages/recommendations-page/RecommendationsPage/index.jsx", + "line": 31, + "column": 4, + "index": 854 + }, { "filePath": "src/packages/resource-page/template/ResourcePage/index.jsx", - "line": 67, + "line": 70, "column": 6, - "index": 2496 + "index": 2654 }, { "filePath": "src/packages/search-page/components/BaseHeader/components/SearchInput.jsx", - "line": 19, + "line": 18, "column": 4, - "index": 666 + "index": 665 }, { "filePath": "src/packages/search-page/components/BaseHeader/components/TitleSection.jsx", @@ -37486,6 +39542,12 @@ "column": 6, "index": 1542 }, + { + "filePath": "src/packages/search-page/components/HeaderSection.jsx", + "line": 139, + "column": 4, + "index": 4889 + }, { "filePath": "src/packages/search-page/components/PreQueryPage/components/PopularSearchLinks/index.jsx", "line": 36, @@ -37500,33 +39562,39 @@ }, { "filePath": "src/packages/search-page/components/QuizMatchRecommendations/index.jsx", - "line": 73, + "line": 78, "column": 4, - "index": 2375 + "index": 2496 }, { "filePath": "src/packages/search-page/components/RefinementFilters/index.jsx", - "line": 113, + "line": 112, "column": 8, - "index": 4016 + "index": 4186 }, { "filePath": "src/packages/search-page/components/Results/FirstLevelResult.jsx", - "line": 48, + "line": 55, "column": 4, - "index": 1224 + "index": 1585 }, { "filePath": "src/packages/search-page/components/Results/SecondLevelResult.jsx", - "line": 40, + "line": 46, "column": 4, - "index": 1203 + "index": 1506 }, { "filePath": "src/packages/search-page/components/SearchBreadcrumb/index.jsx", "line": 87, "column": 4, "index": 2949 + }, + { + "filePath": "src/packages/search-page/components/SkillsBuilderCTA/index.jsx", + "line": 48, + "column": 6, + "index": 1944 } ], "Icon": [ @@ -37574,27 +39642,27 @@ }, { "filePath": "src/packages/common/ui/Footer/utils.jsx", - "line": 383, + "line": 598, "column": 12, - "index": 17156 + "index": 28183 }, { "filePath": "src/packages/common/ui/Footer/utils.jsx", - "line": 389, + "line": 604, "column": 12, - "index": 17400 + "index": 28427 }, { "filePath": "src/packages/common/ui/Footer/utils.jsx", - "line": 395, + "line": 610, "column": 12, - "index": 17652 + "index": 28679 }, { "filePath": "src/packages/common/ui/Footer/utils.jsx", - "line": 401, + "line": 616, "column": 12, - "index": 17906 + "index": 28933 }, { "filePath": "src/packages/common/ui/Header/components/mobile-navigation/MenuAccordion/index.jsx", @@ -37616,9 +39684,9 @@ }, { "filePath": "src/packages/common/ui/PreviewExpand/index.jsx", - "line": 66, + "line": 65, "column": 10, - "index": 1791 + "index": 1790 }, { "filePath": "src/packages/common/ui/xpert/Chatbot/components/XpertConversationsHeaderActions.jsx", @@ -37628,9 +39696,9 @@ }, { "filePath": "src/packages/common/ui/xpert/Chatbot/components/XpertConversationsInput.jsx", - "line": 47, + "line": 48, "column": 8, - "index": 1243 + "index": 1332 }, { "filePath": "src/packages/common/ui/xpert/Chatbot/components/XpertConversationsMessages.jsx", @@ -37646,15 +39714,15 @@ }, { "filePath": "src/packages/common/ui/xpert/Chatbot/components/XpertDisclaimer.jsx", - "line": 35, + "line": 29, "column": 14, - "index": 1179 + "index": 1032 }, { "filePath": "src/packages/common/ui/xpert/Chatbot/components/XpertDisclaimer.jsx", - "line": 48, + "line": 42, "column": 12, - "index": 1665 + "index": 1518 }, { "filePath": "src/packages/common/ui/xpert/Chatbot/components/XpertDisclaimerHeader.jsx", @@ -37736,9 +39804,9 @@ }, { "filePath": "src/packages/degree-page/template/DegreeDetailPage/index.jsx", - "line": 184, + "line": 193, "column": 14, - "index": 6625 + "index": 6941 }, { "filePath": "src/packages/exec-ed-page/components/CourseCurriculum/index.jsx", @@ -37748,21 +39816,21 @@ }, { "filePath": "src/packages/exec-ed-page/components/CourseHeader2U/index.jsx", - "line": 200, + "line": 197, "column": 14, - "index": 6554 + "index": 6479 }, { "filePath": "src/packages/exec-ed-page/components/CourseHeader2U/index.jsx", - "line": 226, + "line": 223, "column": 12, - "index": 7420 + "index": 7345 }, { "filePath": "src/packages/exec-ed-page/components/CourseHeader2U/index.jsx", - "line": 254, + "line": 241, "column": 14, - "index": 8312 + "index": 7966 }, { "filePath": "src/packages/exec-ed-page/components/MobileCollapsibleSection.jsx", @@ -37850,21 +39918,21 @@ }, { "filePath": "src/packages/learn-page/template/LearnPage/index.jsx", - "line": 40, + "line": 38, "column": 9, - "index": 2390 + "index": 2270 }, { "filePath": "src/packages/masters-program-page/template/MastersProgramDetailPage/index.jsx", - "line": 360, + "line": 362, "column": 20, - "index": 13102 + "index": 13259 }, { "filePath": "src/packages/masters-program-page/template/MastersProgramDetailPage/index.jsx", - "line": 525, + "line": 527, "column": 22, - "index": 21478 + "index": 21635 }, { "filePath": "src/packages/modular-page/components/StaticCallouts/index.jsx", @@ -37974,35 +40042,53 @@ "column": 16, "index": 3004 }, - { - "filePath": "src/packages/open-course-page/components/CourseHeader/components/CourseBreadcrumbs.jsx", - "line": 72, - "column": 8, - "index": 2378 - }, { "filePath": "src/packages/open-course-page/components/CourseModes/index.jsx", - "line": 343, + "line": 368, "column": 36, - "index": 14847 + "index": 15775 }, { "filePath": "src/packages/open-course-page/components/CourseModes/index.jsx", - "line": 368, + "line": 393, "column": 36, - "index": 16114 + "index": 17042 }, { "filePath": "src/packages/open-course-page/components/CourseModes/index.jsx", - "line": 424, + "line": 449, "column": 20, - "index": 18907 + "index": 19835 }, { "filePath": "src/packages/open-course-page/components/CourseModes/index.jsx", - "line": 437, + "line": 462, + "column": 20, + "index": 20513 + }, + { + "filePath": "src/packages/open-course-page/components/CourseModes/TerminologyUpdateVariant/index.jsx", + "line": 284, + "column": 20, + "index": 12377 + }, + { + "filePath": "src/packages/open-course-page/components/CourseModes/TerminologyUpdateVariant/index.jsx", + "line": 309, + "column": 36, + "index": 13719 + }, + { + "filePath": "src/packages/open-course-page/components/CourseModes/TerminologyUpdateVariant/index.jsx", + "line": 334, + "column": 36, + "index": 14986 + }, + { + "filePath": "src/packages/open-course-page/components/CourseModes/TerminologyUpdateVariant/index.jsx", + "line": 364, "column": 20, - "index": 19585 + "index": 16359 }, { "filePath": "src/packages/open-course-page/components/CourseSnapshot/components/WeeksToComplete.jsx", @@ -38012,21 +40098,21 @@ }, { "filePath": "src/packages/open-course-page/components/CourseSnapshot/index.jsx", - "line": 219, + "line": 243, "column": 24, - "index": 7204 + "index": 8084 }, { "filePath": "src/packages/open-course-page/components/CourseSnapshot/index.jsx", - "line": 233, + "line": 257, "column": 22, - "index": 7714 + "index": 8594 }, { "filePath": "src/packages/open-course-page/components/CourseSnapshot/index.jsx", - "line": 276, + "line": 300, "column": 24, - "index": 10085 + "index": 10965 }, { "filePath": "src/packages/open-course-page/components/Instructors/components/InstructorCard.jsx", @@ -38114,69 +40200,69 @@ }, { "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", - "line": 175, + "line": 176, "column": 6, - "index": 5843 + "index": 5799 }, { "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", - "line": 234, + "line": 235, "column": 10, - "index": 7806 + "index": 7767 }, { "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", - "line": 248, + "line": 249, "column": 6, - "index": 8174 + "index": 8135 }, { "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", - "line": 256, + "line": 257, "column": 8, - "index": 8497 + "index": 8458 }, { "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", - "line": 266, + "line": 267, "column": 8, - "index": 8795 - }, - { - "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", - "line": 448, - "column": 16, - "index": 18425 + "index": 8756 }, { "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", "line": 459, "column": 16, - "index": 18956 + "index": 18980 }, { "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", "line": 470, "column": 16, - "index": 19480 + "index": 19511 }, { "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", - "line": 590, - "column": 20, - "index": 26554 + "line": 481, + "column": 16, + "index": 20035 }, { "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", - "line": 871, + "line": 862, "column": 24, - "index": 41299 + "index": 40824 }, { "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", - "line": 874, + "line": 865, "column": 24, - "index": 41447 + "index": 40972 + }, + { + "filePath": "src/packages/recommendations-page/RecommendationsPage/Checkmark.jsx", + "line": 13, + "column": 6, + "index": 301 }, { "filePath": "src/packages/search-page/components/AutoComplete/components/PopularSearchItem/index.jsx", @@ -38186,15 +40272,15 @@ }, { "filePath": "src/packages/search-page/components/RefinementFilters/components/FacetList/index.jsx", - "line": 238, + "line": 250, "column": 22, - "index": 6317 + "index": 7090 }, { "filePath": "src/packages/search-page/components/RefinementFilters/components/FacetList/index.jsx", - "line": 239, + "line": 251, "column": 23, - "index": 6430 + "index": 7203 }, { "filePath": "src/packages/search-page/components/RefinementFilters/components/LearningTypeRadioSelect/index.jsx", @@ -38310,15 +40396,15 @@ }, { "filePath": "src/packages/common/ui/PageTitleBreadcrumbs/index.jsx", - "line": 28, + "line": 31, "column": 18, - "index": 1034 + "index": 1225 }, { "filePath": "src/packages/common/ui/PageTitleBreadcrumbs/index.jsx", - "line": 39, + "line": 42, "column": 20, - "index": 1530 + "index": 1745 }, { "filePath": "src/packages/common/ui/SkillsBreadcrumbs/index.jsx", @@ -38378,9 +40464,9 @@ }, { "filePath": "src/packages/common/ui/xpert/Chatbot/components/XpertConversationsInput.jsx", - "line": 39, + "line": 40, "column": 6, - "index": 981 + "index": 1070 }, { "filePath": "src/packages/common/ui/xpert/Chatbot/components/XpertConversationsMessages.jsx", @@ -38480,21 +40566,21 @@ }, { "filePath": "src/packages/exec-ed-page/components/CourseHeader2U/index.jsx", - "line": 194, + "line": 191, "column": 12, - "index": 6274 + "index": 6199 }, { "filePath": "src/packages/exec-ed-page/components/CourseHeader2U/index.jsx", - "line": 268, - "column": 27, - "index": 8999 + "line": 255, + "column": 20, + "index": 8669 }, { "filePath": "src/packages/exec-ed-page/components/CourseHeader2U/index.jsx", - "line": 292, + "line": 282, "column": 16, - "index": 10031 + "index": 9764 }, { "filePath": "src/packages/exec-ed-page/components/RequestMoreInfoButton.jsx", @@ -38504,9 +40590,9 @@ }, { "filePath": "src/packages/exec-ed-page/template/ExecEdDetailPage/index.jsx", - "line": 364, + "line": 357, "column": 6, - "index": 14402 + "index": 13998 }, { "filePath": "src/packages/learn-index-page/components/Hero.jsx", @@ -38518,7 +40604,7 @@ "filePath": "src/packages/learn-page/template/LearnPage/index.jsx", "line": 188, "column": 12, - "index": 6869 + "index": 6796 }, { "filePath": "src/packages/modular-page/modules/DynamicProductModule/index.jsx", @@ -38546,15 +40632,21 @@ }, { "filePath": "src/packages/open-course-page/components/CourseHeader/components/CourseVideo.jsx", - "line": 36, + "line": 46, "column": 8, - "index": 1041 + "index": 1701 }, { "filePath": "src/packages/open-course-page/components/CourseModes/index.jsx", - "line": 249, + "line": 274, + "column": 14, + "index": 10943 + }, + { + "filePath": "src/packages/open-course-page/components/CourseModes/TerminologyUpdateVariant/index.jsx", + "line": 217, "column": 14, - "index": 10015 + "index": 8940 }, { "filePath": "src/packages/open-course-page/components/CourseRunModal/components/EnrollButton.jsx", @@ -38596,7 +40688,7 @@ "filePath": "src/packages/program-page/components/ProgramHeader.jsx", "line": 171, "column": 16, - "index": 5051 + "index": 5068 }, { "filePath": "src/packages/program-page/components/ProgramHeader/index.jsx", @@ -38612,33 +40704,27 @@ }, { "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", - "line": 381, + "line": 392, "column": 14, - "index": 15293 - }, - { - "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", - "line": 589, - "column": 18, - "index": 26461 + "index": 15830 }, { "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", - "line": 892, + "line": 883, "column": 12, - "index": 42348 + "index": 41873 }, { "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", - "line": 936, + "line": 927, "column": 14, - "index": 44334 + "index": 43882 }, { "filePath": "src/packages/resource-page/template/ResourcePage/index.jsx", - "line": 117, + "line": 125, "column": 14, - "index": 4264 + "index": 4579 }, { "filePath": "src/packages/search-page/components/AutoComplete/components/ManagedAutoComplete/index.jsx", @@ -38646,6 +40732,12 @@ "column": 14, "index": 12566 }, + { + "filePath": "src/packages/search-page/components/HeaderSection.jsx", + "line": 147, + "column": 6, + "index": 5221 + }, { "filePath": "src/packages/search-page/components/PreQueryPage/components/PopularSearchLinks/index.jsx", "line": 42, @@ -38654,9 +40746,9 @@ }, { "filePath": "src/packages/search-page/components/RefinementFilters/components/ClearRefinements/index.jsx", - "line": 36, + "line": 42, "column": 4, - "index": 1041 + "index": 1296 }, { "filePath": "src/packages/search-page/components/RefinementFilters/components/MobileFilterMenu/index.jsx", @@ -38666,9 +40758,9 @@ }, { "filePath": "src/packages/search-page/components/SkillsBuilderCTA/index.jsx", - "line": 54, + "line": 66, "column": 14, - "index": 2128 + "index": 2752 }, { "filePath": "src/pages/secure-preview/DynamicProductList.jsx", @@ -38698,9 +40790,9 @@ }, { "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", - "line": 874, + "line": 865, "column": 35, - "index": 41458 + "index": 40983 } ], "Close": [ @@ -38824,9 +40916,9 @@ }, { "filePath": "src/packages/degree-page/template/DegreeDetailPage/index.jsx", - "line": 184, + "line": 193, "column": 25, - "index": 6636 + "index": 6952 }, { "filePath": "src/packages/home-page/components/Audiences/index.jsx", @@ -38893,6 +40985,12 @@ "line": 130, "column": 38, "index": 4608 + }, + { + "filePath": "src/packages/search-page/components/HeaderSection.jsx", + "line": 147, + "column": 84, + "index": 5299 } ], "Form.Checkbox": [ @@ -38906,9 +41004,9 @@ "Input": [ { "filePath": "src/packages/common/ui/Footer/index.jsx", - "line": 249, + "line": 333, "column": 18, - "index": 8776 + "index": 11646 }, { "filePath": "src/packages/common/ui/xpert/experiments/ChatFloatingActionButton/Survey/index.jsx", @@ -38926,9 +41024,9 @@ "Facebook": [ { "filePath": "src/packages/common/ui/Footer/utils.jsx", - "line": 383, + "line": 598, "column": 23, - "index": 17167 + "index": 28194 }, { "filePath": "src/packages/instructor-page/components/InstructorBioDynamic/components/Overview/index.jsx", @@ -38946,9 +41044,9 @@ "BsTwitter": [ { "filePath": "src/packages/common/ui/Footer/utils.jsx", - "line": 389, + "line": 604, "column": 23, - "index": 17411 + "index": 28438 }, { "filePath": "src/packages/instructor-page/components/InstructorBioDynamic/components/Overview/index.jsx", @@ -38966,9 +41064,9 @@ "BsLinkedin": [ { "filePath": "src/packages/common/ui/Footer/utils.jsx", - "line": 395, + "line": 610, "column": 23, - "index": 17663 + "index": 28690 }, { "filePath": "src/packages/open-course-page/components/SocialShare/index.jsx", @@ -38980,9 +41078,9 @@ "Reddit": [ { "filePath": "src/packages/common/ui/Footer/utils.jsx", - "line": 401, + "line": 616, "column": 23, - "index": 17917 + "index": 28944 } ], "Collapsible": [ @@ -39074,15 +41172,15 @@ }, { "filePath": "src/packages/program-page/components/ProgramMain/index.jsx", - "line": 714, + "line": 716, "column": 20, - "index": 30304 + "index": 30463 }, { "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", - "line": 862, + "line": 852, "column": 18, - "index": 40714 + "index": 40168 } ], "Collapsible.Visible": [ @@ -39112,27 +41210,27 @@ }, { "filePath": "src/packages/program-page/components/ProgramMain/index.jsx", - "line": 722, + "line": 724, "column": 24, - "index": 30900 + "index": 31059 }, { "filePath": "src/packages/program-page/components/ProgramMain/index.jsx", - "line": 723, + "line": 725, "column": 24, - "index": 30992 + "index": 31151 }, { "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", - "line": 870, + "line": 861, "column": 22, - "index": 41242 + "index": 40767 }, { "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", - "line": 873, + "line": 864, "column": 22, - "index": 41392 + "index": 40917 } ], "Collapsible.Body": [ @@ -39150,29 +41248,29 @@ }, { "filePath": "src/packages/program-page/components/ProgramMain/index.jsx", - "line": 725, + "line": 727, "column": 22, - "index": 31128 + "index": 31287 }, { "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", - "line": 877, + "line": 868, "column": 20, - "index": 41581 + "index": 41106 } ], "SearchField.Advanced": [ { "filePath": "src/packages/common/ui/Header/components/SearchBox.jsx", - "line": 92, + "line": 100, "column": 6, - "index": 2953 + "index": 3285 }, { "filePath": "src/packages/home-page/components/Hero/components/HomeSearchBar/components/HomeSearchInput/index.jsx", - "line": 64, + "line": 58, "column": 6, - "index": 2189 + "index": 1891 }, { "filePath": "src/packages/search-page/components/PreQueryPage/components/SearchBox/index.jsx", @@ -39182,23 +41280,23 @@ }, { "filePath": "src/packages/search-page/components/SearchBox/index.jsx", - "line": 113, + "line": 115, "column": 10, - "index": 3694 + "index": 3815 } ], "SearchField.Input": [ { "filePath": "src/packages/common/ui/Header/components/SearchBox.jsx", - "line": 108, + "line": 117, "column": 10, - "index": 3737 + "index": 4101 }, { "filePath": "src/packages/home-page/components/Hero/components/HomeSearchBar/components/HomeSearchInput/index.jsx", - "line": 81, + "line": 75, "column": 12, - "index": 2961 + "index": 2663 }, { "filePath": "src/packages/search-page/components/PreQueryPage/components/SearchBox/index.jsx", @@ -39208,23 +41306,23 @@ }, { "filePath": "src/packages/search-page/components/SearchBox/index.jsx", - "line": 126, + "line": 136, "column": 14, - "index": 4230 + "index": 4524 } ], "SearchField.ClearButton": [ { "filePath": "src/packages/common/ui/Header/components/SearchBox.jsx", - "line": 119, - "column": 10, - "index": 4152 + "line": 128, + "column": 35, + "index": 4541 }, { "filePath": "src/packages/home-page/components/Hero/components/HomeSearchBar/components/HomeSearchInput/index.jsx", - "line": 91, + "line": 86, "column": 12, - "index": 3364 + "index": 3078 }, { "filePath": "src/packages/search-page/components/PreQueryPage/components/SearchBox/index.jsx", @@ -39234,29 +41332,29 @@ }, { "filePath": "src/packages/search-page/components/SearchBox/index.jsx", - "line": 137, - "column": 14, - "index": 4736 + "line": 147, + "column": 39, + "index": 5055 } ], "SearchField.SubmitButton": [ { "filePath": "src/packages/common/ui/Header/components/SearchBox.jsx", - "line": 121, + "line": 130, "column": 12, - "index": 4224 + "index": 4614 }, { "filePath": "src/packages/common/ui/Header/components/SearchBox.jsx", - "line": 129, + "line": 138, "column": 10, - "index": 4435 + "index": 4825 }, { "filePath": "src/packages/home-page/components/Hero/components/HomeSearchBar/components/HomeSearchInput/index.jsx", - "line": 93, + "line": 88, "column": 10, - "index": 3419 + "index": 3133 }, { "filePath": "src/packages/search-page/components/PreQueryPage/components/SearchBox/index.jsx", @@ -39266,9 +41364,9 @@ }, { "filePath": "src/packages/search-page/components/SearchBox/index.jsx", - "line": 139, + "line": 149, "column": 12, - "index": 4795 + "index": 5115 } ], "IconButton": [ @@ -39292,15 +41390,27 @@ }, { "filePath": "src/packages/open-course-page/components/CourseModes/index.jsx", - "line": 341, + "line": 366, "column": 26, - "index": 14753 + "index": 15681 }, { "filePath": "src/packages/open-course-page/components/CourseModes/index.jsx", - "line": 366, + "line": 391, + "column": 26, + "index": 16948 + }, + { + "filePath": "src/packages/open-course-page/components/CourseModes/TerminologyUpdateVariant/index.jsx", + "line": 307, + "column": 26, + "index": 13625 + }, + { + "filePath": "src/packages/open-course-page/components/CourseModes/TerminologyUpdateVariant/index.jsx", + "line": 332, "column": 26, - "index": 16020 + "index": 14892 } ], "Dropdown": [ @@ -39382,7 +41492,7 @@ "filePath": "src/packages/program-page/components/ProgramHeader.jsx", "line": 156, "column": 16, - "index": 4540 + "index": 4557 }, { "filePath": "src/packages/program-page/components/ProgramHeader/index.jsx", @@ -39404,17 +41514,17 @@ }, { "filePath": "src/packages/search-page/components/RefinementFilters/components/FacetList/index.jsx", - "line": 267, - "column": 33, - "index": 7588 + "line": 283, + "column": 35, + "index": 8661 } ], "ChevronLeft": [ { "filePath": "src/packages/common/ui/PageTitleBreadcrumbs/index.jsx", - "line": 38, + "line": 41, "column": 20, - "index": 1403 + "index": 1607 }, { "filePath": "src/packages/common/ui/SkillsBreadcrumbs/index.jsx", @@ -39424,15 +41534,49 @@ }, { "filePath": "src/packages/exec-ed-page/components/CourseHeader2U/index.jsx", - "line": 254, + "line": 241, "column": 25, - "index": 8323 + "index": 7977 + } + ], + "useMediaQuery": [ + { + "filePath": "src/packages/common/ui/RecommendationsLoader/index.jsx", + "line": 16, + "column": 23, + "index": 503 }, { - "filePath": "src/packages/open-course-page/components/CourseHeader/components/CourseBreadcrumbs.jsx", - "line": 72, - "column": 19, - "index": 2389 + "filePath": "src/packages/recommendations-page/RecommendationsPage/index.jsx", + "line": 21, + "column": 23, + "index": 624 + }, + { + "filePath": "src/packages/search-page/components/SkillsBuilderCTA/index.jsx", + "line": 27, + "column": 23, + "index": 1023 + } + ], + "breakpoints": [ + { + "filePath": "src/packages/common/ui/RecommendationsLoader/index.jsx", + "line": 16, + "column": 49, + "index": 529 + }, + { + "filePath": "src/packages/recommendations-page/RecommendationsPage/index.jsx", + "line": 21, + "column": 49, + "index": 650 + }, + { + "filePath": "src/packages/search-page/components/SkillsBuilderCTA/index.jsx", + "line": 27, + "column": 49, + "index": 1049 } ], "PlayCircleFilled": [ @@ -39442,39 +41586,39 @@ "column": 18, "index": 3438 }, + { + "filePath": "src/packages/common/ui/Video/newBasePlayer.jsx", + "line": 96, + "column": 16, + "index": 3062 + }, { "filePath": "src/packages/exec-ed-page/components/CourseHeader2U/index.jsx", - "line": 295, - "column": 30, - "index": 10168 + "line": 282, + "column": 99, + "index": 9847 }, { "filePath": "src/packages/open-course-page/components/CourseHeader/components/CourseVideo.jsx", - "line": 46, + "line": 54, "column": 10, - "index": 1300 - }, - { - "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", - "line": 590, - "column": 31, - "index": 26565 + "index": 1886 } ], "Send": [ { "filePath": "src/packages/common/ui/xpert/Chatbot/components/XpertConversationsInput.jsx", - "line": 47, + "line": 48, "column": 19, - "index": 1254 + "index": 1343 } ], "Compass": [ { "filePath": "src/packages/common/ui/xpert/Chatbot/components/XpertDisclaimer.jsx", - "line": 35, + "line": 29, "column": 35, - "index": 1200 + "index": 1053 }, { "filePath": "src/packages/program-page/components/ProgramPathway/index.jsx", @@ -39486,9 +41630,9 @@ "Groups": [ { "filePath": "src/packages/common/ui/xpert/Chatbot/components/XpertDisclaimer.jsx", - "line": 48, + "line": 42, "column": 33, - "index": 1686 + "index": 1539 } ], "Thunderstorm": [ @@ -39522,9 +41666,9 @@ }, { "filePath": "src/packages/search-page/components/RefinementFilters/components/FacetList/index.jsx", - "line": 260, + "line": 272, "column": 22, - "index": 7188 + "index": 7992 }, { "filePath": "src/packages/search-page/components/RefinementFilters/components/LearningTypeRadioSelect/index.jsx", @@ -39586,7 +41730,7 @@ "filePath": "src/packages/common/ui/xpert/shared/FloatingActionPopup/index.jsx", "line": 21, "column": 20, - "index": 528 + "index": 543 } ], "FormGroup": [ @@ -39878,9 +42022,9 @@ }, { "filePath": "src/packages/exec-ed-page/components/CourseHeader2U/index.jsx", - "line": 186, + "line": 183, "column": 10, - "index": 5992 + "index": 5925 }, { "filePath": "src/packages/exec-ed-page/components/StickyNav2U.jsx", @@ -39890,15 +42034,27 @@ }, { "filePath": "src/packages/open-course-page/components/CourseModes/index.jsx", - "line": 333, + "line": 358, "column": 24, - "index": 14365 + "index": 15293 }, { "filePath": "src/packages/open-course-page/components/CourseModes/index.jsx", - "line": 358, + "line": 383, "column": 24, - "index": 15636 + "index": 16564 + }, + { + "filePath": "src/packages/open-course-page/components/CourseModes/TerminologyUpdateVariant/index.jsx", + "line": 299, + "column": 24, + "index": 13237 + }, + { + "filePath": "src/packages/open-course-page/components/CourseModes/TerminologyUpdateVariant/index.jsx", + "line": 324, + "column": 24, + "index": 14508 }, { "filePath": "src/packages/program-page/components/ProgramPathway/components/ProgramPathwayCourse.jsx", @@ -39916,9 +42072,9 @@ }, { "filePath": "src/packages/exec-ed-page/components/CourseHeader2U/index.jsx", - "line": 189, + "line": 186, "column": 14, - "index": 6073 + "index": 6006 }, { "filePath": "src/packages/exec-ed-page/components/StickyNav2U.jsx", @@ -39928,15 +42084,27 @@ }, { "filePath": "src/packages/open-course-page/components/CourseModes/index.jsx", - "line": 336, + "line": 361, "column": 28, - "index": 14488 + "index": 15416 }, { "filePath": "src/packages/open-course-page/components/CourseModes/index.jsx", - "line": 361, + "line": 386, + "column": 28, + "index": 16687 + }, + { + "filePath": "src/packages/open-course-page/components/CourseModes/TerminologyUpdateVariant/index.jsx", + "line": 302, "column": 28, - "index": 15759 + "index": 13360 + }, + { + "filePath": "src/packages/open-course-page/components/CourseModes/TerminologyUpdateVariant/index.jsx", + "line": 327, + "column": 28, + "index": 14631 }, { "filePath": "src/packages/program-page/components/ProgramPathway/components/ProgramPathwayCourse.jsx", @@ -39954,9 +42122,9 @@ }, { "filePath": "src/packages/exec-ed-page/components/CourseHeader2U/index.jsx", - "line": 202, + "line": 199, "column": 21, - "index": 6614 + "index": 6539 }, { "filePath": "src/packages/exec-ed-page/components/StickyNav2U.jsx", @@ -39978,15 +42146,21 @@ }, { "filePath": "src/packages/open-course-page/components/CourseModes/index.jsx", - "line": 467, + "line": 492, "column": 20, - "index": 20920 + "index": 21848 + }, + { + "filePath": "src/packages/open-course-page/components/CourseModes/TerminologyUpdateVariant/index.jsx", + "line": 434, + "column": 20, + "index": 19836 }, { "filePath": "src/packages/open-course-page/components/CourseModes/Variant/index.jsx", - "line": 212, + "line": 218, "column": 6, - "index": 9938 + "index": 10157 }, { "filePath": "src/packages/open-course-page/components/CourseRunModal/index.jsx", @@ -40002,69 +42176,51 @@ }, { "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", - "line": 176, + "line": 177, "column": 13, - "index": 5862 + "index": 5818 }, { "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", - "line": 235, + "line": 236, "column": 17, - "index": 7829 + "index": 7790 } ], "useToggle": [ { "filePath": "src/packages/exec-ed-page/components/CourseHeader2U/index.jsx", - "line": 99, - "column": 32, - "index": 3617 - }, - { - "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", - "line": 37, + "line": 97, "column": 32, - "index": 1309 + "index": 3569 }, { "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", - "line": 40, + "line": 41, "column": 62, - "index": 1476 + "index": 1432 } ], "CallMade": [ { "filePath": "src/packages/exec-ed-page/components/CourseHeader2U/index.jsx", - "line": 226, + "line": 223, "column": 23, - "index": 7431 + "index": 7356 } ], "Breadcrumb": [ { "filePath": "src/packages/exec-ed-page/components/CourseHeader2U/index.jsx", - "line": 251, + "line": 238, "column": 14, - "index": 8167 + "index": 7821 }, { "filePath": "src/packages/exec-ed-page/components/CourseHeader2U/index.jsx", - "line": 255, + "line": 242, "column": 14, - "index": 8353 - }, - { - "filePath": "src/packages/open-course-page/components/CourseHeader/components/CourseBreadcrumbs.jsx", - "line": 69, - "column": 8, - "index": 2251 - }, - { - "filePath": "src/packages/open-course-page/components/CourseHeader/components/CourseBreadcrumbs.jsx", - "line": 73, - "column": 8, - "index": 2413 + "index": 8007 }, { "filePath": "src/packages/search-page/components/SearchBreadcrumb/index.jsx", @@ -40097,12 +42253,6 @@ "line": 116, "column": 4, "index": 3953 - }, - { - "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", - "line": 592, - "column": 18, - "index": 26696 } ], "ModalDialog.Body": [ @@ -40129,12 +42279,6 @@ "line": 133, "column": 6, "index": 4545 - }, - { - "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", - "line": 596, - "column": 20, - "index": 26960 } ], "DropdownButton": [ @@ -40196,15 +42340,15 @@ "Skeleton": [ { "filePath": "src/packages/home-page/template/HomePage/index.jsx", - "line": 103, + "line": 107, "column": 15, - "index": 3971 + "index": 4204 }, { "filePath": "src/packages/home-page/template/HomePage/index.jsx", - "line": 118, + "line": 122, "column": 15, - "index": 4345 + "index": 4578 }, { "filePath": "src/packages/modular-page/modules/ImageCarouselModule/index.jsx", @@ -40220,9 +42364,9 @@ }, { "filePath": "src/packages/topic-page/template/TopicPage/index.jsx", - "line": 42, + "line": 45, "column": 11, - "index": 1707 + "index": 1865 } ], "Person": [ @@ -40234,9 +42378,9 @@ }, { "filePath": "src/packages/open-course-page/components/CourseSnapshot/index.jsx", - "line": 233, + "line": 257, "column": 33, - "index": 7725 + "index": 8605 }, { "filePath": "src/packages/open-course-page/components/Instructors/components/InstructorCard.jsx", @@ -40264,21 +42408,21 @@ }, { "filePath": "src/packages/program-page/components/ProgramMain/index.jsx", - "line": 568, + "line": 570, "column": 28, - "index": 22725 + "index": 22884 }, { "filePath": "src/packages/program-page/components/ProgramMain/index.jsx", - "line": 592, + "line": 594, "column": 28, - "index": 24003 + "index": 24162 }, { "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", - "line": 460, + "line": 471, "column": 23, - "index": 18985 + "index": 19540 } ], "Search": [ @@ -40290,9 +42434,9 @@ }, { "filePath": "src/packages/learn-page/template/LearnPage/index.jsx", - "line": 40, + "line": 38, "column": 20, - "index": 2401 + "index": 2281 } ], "Card": [ @@ -40310,9 +42454,9 @@ }, { "filePath": "src/packages/open-course-page/components/CourseModes/Variant/index.jsx", - "line": 252, + "line": 258, "column": 14, - "index": 11263 + "index": 11482 }, { "filePath": "src/packages/open-course-page/components/CourseRunModal/index.jsx", @@ -40334,9 +42478,9 @@ }, { "filePath": "src/packages/search-page/components/SkillsBuilderCTA/index.jsx", - "line": 38, + "line": 49, "column": 8, - "index": 1381 + "index": 2002 } ], "Card.Body": [ @@ -40478,45 +42622,81 @@ }, { "filePath": "src/packages/open-course-page/components/CourseModes/index.jsx", - "line": 395, + "line": 420, "column": 20, - "index": 17312 + "index": 18240 }, { "filePath": "src/packages/open-course-page/components/CourseModes/index.jsx", - "line": 398, + "line": 423, "column": 20, - "index": 17494 + "index": 18422 }, { "filePath": "src/packages/open-course-page/components/CourseModes/index.jsx", - "line": 408, + "line": 433, "column": 20, - "index": 18018 + "index": 18946 }, { "filePath": "src/packages/open-course-page/components/CourseModes/index.jsx", - "line": 411, + "line": 436, "column": 20, - "index": 18200 + "index": 19128 }, { "filePath": "src/packages/open-course-page/components/CourseModes/index.jsx", - "line": 421, + "line": 446, "column": 20, - "index": 18725 + "index": 19653 }, { "filePath": "src/packages/open-course-page/components/CourseModes/index.jsx", - "line": 434, + "line": 459, + "column": 20, + "index": 20331 + }, + { + "filePath": "src/packages/open-course-page/components/CourseModes/TerminologyUpdateVariant/index.jsx", + "line": 281, + "column": 20, + "index": 12195 + }, + { + "filePath": "src/packages/open-course-page/components/CourseModes/TerminologyUpdateVariant/index.jsx", + "line": 361, + "column": 20, + "index": 16177 + }, + { + "filePath": "src/packages/open-course-page/components/CourseModes/TerminologyUpdateVariant/index.jsx", + "line": 374, + "column": 20, + "index": 16862 + }, + { + "filePath": "src/packages/open-course-page/components/CourseModes/TerminologyUpdateVariant/index.jsx", + "line": 377, + "column": 20, + "index": 17044 + }, + { + "filePath": "src/packages/open-course-page/components/CourseModes/TerminologyUpdateVariant/index.jsx", + "line": 387, + "column": 20, + "index": 17568 + }, + { + "filePath": "src/packages/open-course-page/components/CourseModes/TerminologyUpdateVariant/index.jsx", + "line": 390, "column": 20, - "index": 19403 + "index": 17750 }, { "filePath": "src/packages/open-course-page/components/CourseModes/Variant/index.jsx", - "line": 269, + "line": 275, "column": 102, - "index": 12326 + "index": 12545 }, { "filePath": "src/packages/product-page/components/ProductDetailHero/index.jsx", @@ -40562,9 +42742,9 @@ }, { "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", - "line": 248, + "line": 249, "column": 17, - "index": 8185 + "index": 8146 }, { "filePath": "src/packages/search-page/components/FilterProgramCard.jsx", @@ -40602,15 +42782,15 @@ }, { "filePath": "src/packages/open-course-page/components/CourseModes/Variant/index.jsx", - "line": 258, + "line": 264, "column": 16, - "index": 11673 + "index": 11892 }, { "filePath": "src/packages/open-course-page/components/CourseModes/Variant/index.jsx", - "line": 268, + "line": 274, "column": 18, - "index": 12192 + "index": 12411 }, { "filePath": "src/packages/open-course-page/components/CourseRunModal/components/SectionTile.jsx", @@ -40620,9 +42800,9 @@ }, { "filePath": "src/packages/search-page/components/SkillsBuilderCTA/index.jsx", - "line": 39, + "line": 50, "column": 10, - "index": 1421 + "index": 2042 } ], "ArrowUpward": [ @@ -40636,45 +42816,69 @@ "InfoOutline": [ { "filePath": "src/packages/open-course-page/components/CourseModes/index.jsx", - "line": 342, + "line": 367, "column": 33, - "index": 14798 + "index": 15726 }, { "filePath": "src/packages/open-course-page/components/CourseModes/index.jsx", - "line": 367, + "line": 392, + "column": 33, + "index": 16993 + }, + { + "filePath": "src/packages/open-course-page/components/CourseModes/TerminologyUpdateVariant/index.jsx", + "line": 308, + "column": 33, + "index": 13670 + }, + { + "filePath": "src/packages/open-course-page/components/CourseModes/TerminologyUpdateVariant/index.jsx", + "line": 333, "column": 33, - "index": 16065 + "index": 14937 } ], "Remove": [ { "filePath": "src/packages/open-course-page/components/CourseModes/index.jsx", - "line": 424, + "line": 449, "column": 50, - "index": 18937 + "index": 19865 }, { "filePath": "src/packages/open-course-page/components/CourseModes/index.jsx", - "line": 437, + "line": 462, "column": 50, - "index": 19615 + "index": 20543 + }, + { + "filePath": "src/packages/open-course-page/components/CourseModes/TerminologyUpdateVariant/index.jsx", + "line": 284, + "column": 50, + "index": 12407 + }, + { + "filePath": "src/packages/open-course-page/components/CourseModes/TerminologyUpdateVariant/index.jsx", + "line": 364, + "column": 50, + "index": 16389 } ], "Card.Header": [ { "filePath": "src/packages/open-course-page/components/CourseModes/Variant/index.jsx", - "line": 253, + "line": 259, "column": 16, - "index": 11318 + "index": 11537 } ], "Card.Divider": [ { "filePath": "src/packages/open-course-page/components/CourseModes/Variant/index.jsx", - "line": 266, + "line": 272, "column": 16, - "index": 12098 + "index": 12317 }, { "filePath": "src/packages/open-course-page/components/CourseRunModal/components/SectionTile.jsx", @@ -40686,9 +42890,9 @@ "Lock": [ { "filePath": "src/packages/open-course-page/components/CourseModes/Variant/index.jsx", - "line": 269, + "line": 275, "column": 66, - "index": 12290 + "index": 12509 } ], "Verified": [ @@ -40717,12 +42921,6 @@ "line": 122, "column": 6, "index": 4115 - }, - { - "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", - "line": 593, - "column": 20, - "index": 26801 } ], "ModalDialog.Title": [ @@ -40743,12 +42941,6 @@ "line": 123, "column": 8, "index": 4144 - }, - { - "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", - "line": 594, - "column": 22, - "index": 26844 } ], "Timelapse": [ @@ -40766,17 +42958,17 @@ }, { "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", - "line": 449, + "line": 460, "column": 23, - "index": 18454 + "index": 19009 } ], "MoneyOutline": [ { "filePath": "src/packages/open-course-page/components/CourseSnapshot/index.jsx", - "line": 276, + "line": 300, "column": 35, - "index": 10096 + "index": 10976 } ], "ModalDialog.Footer": [ @@ -40846,15 +43038,15 @@ }, { "filePath": "src/packages/program-page/components/ProgramMain/index.jsx", - "line": 483, + "line": 485, "column": 22, - "index": 18667 + "index": 18826 }, { "filePath": "src/packages/search-page/components/QuizMatchRecommendations/index.jsx", - "line": 75, + "line": 80, "column": 8, - "index": 2481 + "index": 2602 } ], "Warning": [ @@ -40866,9 +43058,9 @@ }, { "filePath": "src/packages/program-page/components/ProgramMain/index.jsx", - "line": 484, + "line": 486, "column": 24, - "index": 18741 + "index": 18900 }, { "filePath": "src/packages/program-page/components/ProgramPathway/components/ProgramPathwayCourse.jsx", @@ -40930,25 +43122,25 @@ "LocalOffer": [ { "filePath": "src/packages/program-page/components/ProgramMain/index.jsx", - "line": 379, + "line": 381, "column": 14, - "index": 14022 + "index": 14181 } ], "CreditCard": [ { "filePath": "src/packages/program-page/components/ProgramMain/index.jsx", - "line": 416, + "line": 418, "column": 14, - "index": 15542 + "index": 15701 } ], "LibraryBooks": [ { "filePath": "src/packages/program-page/components/ProgramMain/index.jsx", - "line": 549, + "line": 551, "column": 24, - "index": 21803 + "index": 21962 }, { "filePath": "src/packages/program-page/components/ProgramPathway/components/ProgramPathwayCourse.jsx", @@ -40960,9 +43152,9 @@ "AccessTime": [ { "filePath": "src/packages/program-page/components/ProgramMain/index.jsx", - "line": 616, + "line": 618, "column": 28, - "index": 25327 + "index": 25486 }, { "filePath": "src/packages/program-page/components/ProgramPathway/components/ProgramPathwayCourse.jsx", @@ -40974,9 +43166,9 @@ "School": [ { "filePath": "src/packages/program-page/components/ProgramMain/index.jsx", - "line": 637, + "line": 639, "column": 28, - "index": 26413 + "index": 26572 }, { "filePath": "src/packages/program-page/components/ProgramPathway/index.jsx", @@ -40988,39 +43180,39 @@ "Collapsible.Trigger": [ { "filePath": "src/packages/program-page/components/ProgramMain/index.jsx", - "line": 718, + "line": 720, "column": 22, - "index": 30581 + "index": 30740 }, { "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", - "line": 868, + "line": 858, "column": 20, - "index": 41054 + "index": 40508 } ], "AddCircle": [ { "filePath": "src/packages/program-page/components/ProgramMain/index.jsx", - "line": 722, + "line": 724, "column": 56, - "index": 30932 + "index": 31091 } ], "RemoveCircle": [ { "filePath": "src/packages/program-page/components/ProgramMain/index.jsx", - "line": 723, + "line": 725, "column": 54, - "index": 31022 + "index": 31181 } ], "FormatQuote": [ { "filePath": "src/packages/program-page/components/ProgramMain/index.jsx", - "line": 771, + "line": 773, "column": 18, - "index": 33306 + "index": 33465 } ], "Info": [ @@ -41090,57 +43282,63 @@ "MoneyFilled": [ { "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", - "line": 257, + "line": 258, "column": 15, - "index": 8518 + "index": 8479 } ], "CheckCircle": [ { "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", - "line": 267, + "line": 268, "column": 15, - "index": 8816 + "index": 8777 + }, + { + "filePath": "src/packages/recommendations-page/RecommendationsPage/Checkmark.jsx", + "line": 13, + "column": 17, + "index": 312 }, { "filePath": "src/packages/search-page/components/QuizMatchRecommendations/index.jsx", - "line": 75, + "line": 80, "column": 39, - "index": 2512 + "index": 2633 } ], "Calendar": [ { "filePath": "src/packages/queryless-pages/templates/CS50PaidLandingPage/index.jsx", - "line": 471, + "line": 482, "column": 23, - "index": 19509 + "index": 20064 } ], "StarFilled": [ { "filePath": "src/packages/queryless-pages/templates/PrivacyPolicyPrevious.jsx", - "line": 44, + "line": 47, "column": 14, - "index": 1654 + "index": 1864 }, { "filePath": "src/packages/queryless-pages/templates/PrivacyPolicyPrevious.jsx", - "line": 56, + "line": 59, "column": 14, - "index": 2242 + "index": 2452 }, { "filePath": "src/packages/queryless-pages/templates/PrivacyPolicyPreviousES.jsx", - "line": 25, + "line": 27, "column": 14, - "index": 1257 + "index": 1311 }, { "filePath": "src/packages/queryless-pages/templates/PrivacyPolicyPreviousES.jsx", - "line": 34, + "line": 36, "column": 14, - "index": 1865 + "index": 1919 } ], "Done": [ @@ -41178,37 +43376,37 @@ "Alert.Heading": [ { "filePath": "src/packages/search-page/components/QuizMatchRecommendations/index.jsx", - "line": 76, + "line": 81, "column": 10, - "index": 2553 + "index": 2674 } ], "CloseSmall": [ { "filePath": "src/packages/search-page/components/RefinementFilters/components/CurrentRefinements/index.jsx", - "line": 122, + "line": 128, "column": 16, - "index": 4293 + "index": 4580 }, { "filePath": "src/packages/search-page/components/RefinementFilters/components/CurrentRefinements/index.jsx", - "line": 162, + "line": 168, "column": 16, - "index": 5941 + "index": 6228 }, { "filePath": "src/packages/search-page/components/RefinementFilters/components/CurrentRefinements/index.jsx", - "line": 193, + "line": 199, "column": 18, - "index": 7156 + "index": 7443 } ], "Menu": [ { "filePath": "src/packages/search-page/components/RefinementFilters/components/FacetList/index.jsx", - "line": 254, + "line": 266, "column": 10, - "index": 6955 + "index": 7728 }, { "filePath": "src/packages/search-page/components/RefinementFilters/components/LearningTypeRadioSelect/index.jsx", @@ -41220,9 +43418,9 @@ "MenuItem": [ { "filePath": "src/packages/search-page/components/RefinementFilters/components/FacetList/index.jsx", - "line": 256, + "line": 268, "column": 16, - "index": 7041 + "index": 7827 }, { "filePath": "src/packages/search-page/components/RefinementFilters/components/LearningTypeRadioSelect/index.jsx", @@ -41231,22 +43429,6 @@ "index": 3925 } ], - "useMediaQuery": [ - { - "filePath": "src/packages/search-page/components/SkillsBuilderCTA/index.jsx", - "line": 19, - "column": 23, - "index": 517 - } - ], - "breakpoints": [ - { - "filePath": "src/packages/search-page/components/SkillsBuilderCTA/index.jsx", - "line": 19, - "column": 49, - "index": 543 - } - ], "Tabs": [ { "filePath": "src/pages/secure-preview/DynamicProductList.jsx", diff --git a/lib/help.js b/lib/help.js new file mode 100644 index 0000000000..9491995a18 --- /dev/null +++ b/lib/help.js @@ -0,0 +1,57 @@ +/* eslint-disable no-console */ +const chalk = require('chalk'); + +const DESCRIPTION_PAD = 20; + +/** + * Pads a description string to align with a specified offset string. + * + * @param {string} description - The description to pad. + * @param {string} offsetString - The offset string that the description should align with. + * @returns {string} - The padded description. + */ +function padLeft(description, offsetString) { + // Calculate the necessary padding based on the offsetString length + const padding = ' '.repeat(Math.max(0, DESCRIPTION_PAD - offsetString.length)); + return `${padding}${description}`; +} + +/** + * Displays a help message for available commands, including descriptions, parameters, and options. + * + * @param {Object} commands - An object containing information about available commands. + */ +function helpCommand(commands) { + console.log(chalk.yellow.bold('Paragon Help')); + console.log(); + console.log('Available commands:'); + console.log(); + + Object.entries(commands).forEach(([command, { parameters, description, options }]) => { + console.log(` ${chalk.green.bold(command)}`); + if (description) { + console.log(` ${description}`); + } + + if (parameters && parameters.length > 0) { + console.log(` ${chalk.cyan('Parameters: ')}`); + parameters.forEach(parameter => { + const requiredStatus = parameter.required ? 'Required' : 'Optional'; + const formattedDescription = padLeft(parameter.description, parameter.name); + console.log(` ${parameter.name}${formattedDescription} (${requiredStatus}, Default: ${parameter.defaultValue || 'None'})`); + }); + } + + if (options && options.length > 0) { + console.log(` ${chalk.cyan('Options: ')}`); + options.forEach(option => { + const formattedDescription = padLeft(option.description, option.name); + console.log(` ${option.name}${formattedDescription}`); + }); + } + + console.log(); + }); +} + +module.exports = helpCommand; diff --git a/lib/install-theme.js b/lib/install-theme.js index edc3c09e00..a7b408c24b 100644 --- a/lib/install-theme.js +++ b/lib/install-theme.js @@ -1,6 +1,11 @@ const inquirer = require('inquirer'); const childProcess = require('child_process'); +/** + * Prompts the user to enter the @edx/brand package they want to install. + * + * @returns {Promise} - A Promise that resolves to an object containing the user's input. + */ function promptUserForTheme() { return inquirer.prompt([ { @@ -12,6 +17,11 @@ function promptUserForTheme() { ]); } +/** + * Installs a specified @edx/brand package. + * + * @param {string} theme - The @edx/brand package to install. + */ function installTheme(theme) { const version = theme ? `npm:${theme}` : ''; @@ -20,9 +30,19 @@ function installTheme(theme) { childProcess.execSync(installCommand, { stdio: 'inherit' }); } +/** + * Command handler for installing an @edx/brand package. + */ async function themeCommand() { - const answers = await promptUserForTheme(); - installTheme(answers.theme); + // Check if the user passed a theme parameter as a command-line argument + const userPassedThemeParameter = process.argv.length === 4; + if (userPassedThemeParameter) { + const providedTheme = process.argv[3]; + installTheme(providedTheme); + } else { + const answers = await promptUserForTheme(); + installTheme(answers.theme); + } } module.exports = themeCommand; diff --git a/package-lock.json b/package-lock.json index 633392e64b..e526212e26 100644 --- a/package-lock.json +++ b/package-lock.json @@ -12661,9 +12661,9 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001520", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001520.tgz", - "integrity": "sha512-tahF5O9EiiTzwTUqAeFjIZbn4Dnqxzz7ktrgGlMYNLH43Ul26IgTMH/zvL3DG0lZxBYnlT04axvInszUsZULdA==", + "version": "1.0.30001524", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001524.tgz", + "integrity": "sha512-Jj917pJtYg9HSJBF95HVX3Cdr89JUyLT4IZ8SvM5aDRni95swKgYi3TgYLH5hnGfPE/U1dg6IfZ50UsIlLkwSA==", "funding": [ { "type": "opencollective", diff --git a/src/Button/button-group.mdx b/src/Button/button-group.mdx index 07c1d88d89..9ea7218d81 100644 --- a/src/Button/button-group.mdx +++ b/src/Button/button-group.mdx @@ -1,5 +1,5 @@ --- -title: 'Button Group' +title: 'ButtonGroup' type: 'component' components: - ButtonGroup diff --git a/src/DataTable/README.md b/src/DataTable/README.md index 0028b2ad47..e9ccadf6d8 100644 --- a/src/DataTable/README.md +++ b/src/DataTable/README.md @@ -53,97 +53,98 @@ or a filter component can be defined on the column. See - - + Header: 'Coat Color', + accessor: 'color', + Filter: CheckboxFilter, + filter: 'includesValue', + filterChoices: Object.values(reducedChoices), + }, + ]} + > + + + + + + ); +} ``` ## Backend filtering and sorting @@ -360,6 +361,7 @@ See ``dataViewToggleOptions`` props documentation for all supported props. famous_for: 'modeling', }, ], []) + return ( @@ -473,18 +470,13 @@ See ``dataViewToggleOptions`` props documentation for all supported props. Filter: CheckboxFilter, filter: 'includesValue', filterChoices: [{ - name: 'russian white', - number: 1, - value: 'russian white', - }, - { name: 'orange tabby', - number: 2, + number: 1, value: 'orange tabby', }, { name: 'brown tabby', - number: 3, + number: 1, value: 'brown tabby', }, { @@ -1070,7 +1062,7 @@ a responsive grid of cards. ### Customizing number of Cards shown per row Use `columnSizes` prop of `CardView` component to define how many `Cards` are shown per row at each breakpoint. -`columnSizes` is an object containing the desired column size at each breakpoint. The example below shows 1 `Card` per row at `xs` breakpoint, 2 `Cards` at `sm` and `md`, and 4 `Cards` at `lg` and higher. You can read more about the API at https://react-bootstrap.netlify.app/layout/grid/. +`columnSizes` is an object containing the desired column size at each breakpoint. The example below shows 1 `Card` per row at `xs` breakpoint, 2 `Cards` at `sm` and `md`, and 4 `Cards` at `lg` and higher. You can read more about the API at [React-Bootstrap's grid documentation](https://react-bootstrap-v4.netlify.app/layout/grid/). ```jsx live () => { @@ -1280,18 +1272,13 @@ For a more desktop friendly view, you can move filters into a sidebar by providi Filter: CheckboxFilter, filter: 'includesValue', filterChoices: [{ - name: 'russian white', - number: 1, - value: 'russian white', - }, - { name: 'orange tabby', number: 2, value: 'orange tabby', }, { name: 'brown tabby', - number: 3, + number: 2, value: 'brown tabby', }, { @@ -1668,3 +1655,4 @@ After selecting the maximum possible number of rows, you can display an error me ); } +``` diff --git a/src/DataTable/dataviews.mdx b/src/DataTable/dataviews.mdx index ab72712afe..a1cbe98ab7 100644 --- a/src/DataTable/dataviews.mdx +++ b/src/DataTable/dataviews.mdx @@ -2,6 +2,10 @@ title: 'Data views' type: 'component' components: +- DataTable +- DataTableTable +- TableControlBar +- TableFooter - Table - TableCell - TableHeaderCell diff --git a/src/DataTable/filters/CheckboxFilter.jsx b/src/DataTable/filters/CheckboxFilter.jsx index 83780665b2..379666d26a 100644 --- a/src/DataTable/filters/CheckboxFilter.jsx +++ b/src/DataTable/filters/CheckboxFilter.jsx @@ -2,8 +2,8 @@ import React, { useRef, useMemo } from 'react'; import PropTypes from 'prop-types'; import Form, { FormLabel } from '../../Form'; import Badge from '../../Badge'; +import Stack from '../../Stack'; import { newId } from '../../utils'; -import LabelledCheckbox from './LabelledCheckbox'; function CheckboxFilter({ column: { @@ -27,15 +27,21 @@ function CheckboxFilter({ return ( {Header} - {filterChoices.map(({ name, number, value }) => ( - { changeCheckbox(value); }} - label={<>{name} {number !== undefined && {number}}} - /> - ))} + + {filterChoices.map(({ name, number, value }) => ( + changeCheckbox(value)} + aria-label={name} + > + + {name} {number !== undefined && {number}} + + + ))} + ); } diff --git a/src/DataTable/filters/LabelledCheckbox.jsx b/src/DataTable/filters/LabelledCheckbox.jsx deleted file mode 100644 index 64e217d261..0000000000 --- a/src/DataTable/filters/LabelledCheckbox.jsx +++ /dev/null @@ -1,29 +0,0 @@ -import React, { useRef } from 'react'; -import PropTypes from 'prop-types'; -import Form from '../../Form'; -import { newId } from '../../utils'; - -function LabelledCheckbox({ - onChange, checked, label, id, -}) { - const idRef = useRef(newId(id)); - return ( -
- -
- ); -} - -LabelledCheckbox.propTypes = { - checked: PropTypes.bool.isRequired, - onChange: PropTypes.func.isRequired, - label: PropTypes.oneOfType([PropTypes.node, PropTypes.func]).isRequired, - id: PropTypes.string.isRequired, -}; - -export default LabelledCheckbox; diff --git a/src/DataTable/filters/MultiSelectDropdownFilter.jsx b/src/DataTable/filters/MultiSelectDropdownFilter.jsx index 39458c5014..3ffd98d62c 100644 --- a/src/DataTable/filters/MultiSelectDropdownFilter.jsx +++ b/src/DataTable/filters/MultiSelectDropdownFilter.jsx @@ -1,9 +1,10 @@ -import React, { useRef, useMemo } from 'react'; +import React, { useRef } from 'react'; import PropTypes from 'prop-types'; import Badge from '../../Badge'; +import Stack from '../../Stack'; import { DropdownButton } from '../../Dropdown'; import { newId } from '../../utils'; -import LabelledCheckbox from './LabelledCheckbox'; +import Form from '../../Form'; function MultiSelectDropdownFilter({ column: { @@ -21,20 +22,28 @@ function MultiSelectDropdownFilter({ checkedBoxes.push(value); return setFilter(checkedBoxes); }; - const headerBasedId = useMemo(() => `checkbox-filter-check-${getHeaderProps().key}-`, [getHeaderProps]); + return ( -
+ {filterChoices.map(({ name, number, value }) => ( - { changeCheckbox(value); }} - label={<>{name} {number && {number}}} - /> + onChange={() => changeCheckbox(value)} + aria-label={name} + > + + {name} {number && {number}} + + ))} -
+
); } diff --git a/src/DataTable/filters/tests/CheckboxFilter.test.jsx b/src/DataTable/filters/tests/CheckboxFilter.test.jsx index 9281bbe7ed..50b3d01c70 100644 --- a/src/DataTable/filters/tests/CheckboxFilter.test.jsx +++ b/src/DataTable/filters/tests/CheckboxFilter.test.jsx @@ -54,19 +54,19 @@ describe('', () => { }); it('renders checkbox label with filter name', () => { const wrapper = mount(); - const label = wrapper.find('.form-check-label').at(0); + const label = wrapper.find('.pgn__form-checkbox').at(0); expect(label.text()).toContain(roan.name); }); it('renders checkbox label with number', () => { const wrapper = mount(); - const label = wrapper.find('.pgn__checkbox-filter').at(0); + const label = wrapper.find('.pgn__form-checkbox').at(0); const badge = label.find(Badge); expect(badge).toHaveLength(1); expect(badge.text()).toEqual(String(roan.number)); }); it('renders checkbox label with number', () => { const wrapper = mount(); - const label = wrapper.find('.pgn__checkbox-filter').at(1); + const label = wrapper.find('.pgn__form-checkbox').at(1); const badge = label.find(Badge); expect(badge).toHaveLength(0); }); diff --git a/src/DataTable/filters/tests/MultiSelectDropdownFilter.test.jsx b/src/DataTable/filters/tests/MultiSelectDropdownFilter.test.jsx index 1ced27ddfd..c8aa7e7b9c 100644 --- a/src/DataTable/filters/tests/MultiSelectDropdownFilter.test.jsx +++ b/src/DataTable/filters/tests/MultiSelectDropdownFilter.test.jsx @@ -69,7 +69,7 @@ describe('', () => { const wrapper = mount(); wrapper.find('button').simulate('click'); await act(async () => { - const label = wrapper.find('.form-check-label').at(0); + const label = wrapper.find('.pgn__form-label').at(0); expect(label.text()).toContain(roan.name); }); }); @@ -78,7 +78,7 @@ describe('', () => { wrapper.find('button').simulate('click'); await act(async () => { - const label = wrapper.find('.pgn__checkbox-filter').at(0); + const label = wrapper.find('.pgn__form-checkbox').at(0); const badge = label.find(Badge); expect(badge).toHaveLength(1); expect(badge.text()).toEqual(String(roan.number)); @@ -89,8 +89,8 @@ describe('', () => { wrapper.find('button').simulate('click'); await act(async () => { - const label = wrapper.find('.pgn__checkbox-filter').at(1); - const badge = label.find(Badge); + const label = wrapper.find('.pgn__form-checkbox').at(1); + const badge = label.find('.badge'); expect(badge).toHaveLength(0); }); }); diff --git a/src/DataTable/index.scss b/src/DataTable/index.scss index e118ca7dc1..7736da8af8 100644 --- a/src/DataTable/index.scss +++ b/src/DataTable/index.scss @@ -110,6 +110,12 @@ display: flex; justify-content: flex-end; } + + .pgn__data-table-side-filters-item { + .pgn__form-checkbox { + align-items: center; + } + } } .pgn__data-table-layout-main { @@ -173,6 +179,10 @@ .pgn__data-table-filters-dropdown-item { padding: var(--pgn-spacing-data-table-padding-small) 14px; min-width: 15em; + + .pgn__form-checkbox { + align-items: center; + } } .pgn__data-table-status { @@ -270,6 +280,7 @@ left: 50%; transform: translate(-50%, -50%); z-index: 2; + overflow: hidden; } .pgn__data-table__overflow-actions-menu { diff --git a/src/DataTable/tablefilters.mdx b/src/DataTable/tablefilters.mdx index 8e17ea966f..a339c58aa9 100644 --- a/src/DataTable/tablefilters.mdx +++ b/src/DataTable/tablefilters.mdx @@ -1,5 +1,5 @@ --- -title: 'Table Filters' +title: 'TableFilters' type: 'component' components: - TextFilter diff --git a/src/Form/FormAutosuggest.jsx b/src/Form/FormAutosuggest.jsx index 489b84e758..5fb689b2e8 100644 --- a/src/Form/FormAutosuggest.jsx +++ b/src/Form/FormAutosuggest.jsx @@ -32,6 +32,7 @@ function FormAutosuggest({ ignoredKeys: ignoredArrowKeysNames, }); const [isMenuClosed, setIsMenuClosed] = useState(true); + const [isActive, setIsActive] = useState(false); const [state, setState] = useState({ displayValue: value || '', errorMessage: '', @@ -39,7 +40,7 @@ function FormAutosuggest({ }); const handleItemClick = (e, onClick) => { - const clickedValue = e.currentTarget.value; + const clickedValue = e.currentTarget.getAttribute('data-value'); if (onSelected && clickedValue !== value) { onSelected(clickedValue); @@ -66,7 +67,7 @@ function FormAutosuggest({ return React.cloneElement(child, { ...rest, children, - value: children, + 'data-value': children, onClick: (e) => handleItemClick(e, onClick), }); }); @@ -87,6 +88,7 @@ function FormAutosuggest({ }; if (isMenuClosed) { + setIsActive(true); newState.dropDownItems = getItems(state.displayValue); newState.errorMessage = ''; } @@ -100,6 +102,7 @@ function FormAutosuggest({ const iconToggle = ( ); - const handleClickOutside = (e) => { - if (parentRef.current && !parentRef.current.contains(e.target) && state.dropDownItems.length > 0) { + const handleDocumentClick = (e) => { + if (parentRef.current && !parentRef.current.contains(e.target) && isActive) { + setIsActive(false); + setState(prevState => ({ ...prevState, dropDownItems: [], @@ -124,13 +129,12 @@ function FormAutosuggest({ }; const keyDownHandler = e => { - if (e.key === 'Escape') { + if (e.key === 'Escape' && isActive) { e.preventDefault(); setState(prevState => ({ ...prevState, dropDownItems: [], - errorMessage: !state.displayValue ? errorMessageText : '', })); setIsMenuClosed(true); @@ -139,10 +143,10 @@ function FormAutosuggest({ useEffect(() => { document.addEventListener('keydown', keyDownHandler); - document.addEventListener('click', handleClickOutside, true); + document.addEventListener('click', handleDocumentClick, true); return () => { - document.removeEventListener('click', handleClickOutside, true); + document.removeEventListener('click', handleDocumentClick, true); document.removeEventListener('keydown', keyDownHandler); }; }); @@ -173,6 +177,7 @@ function FormAutosuggest({ }; const handleClick = (e) => { + setIsActive(true); const dropDownItems = getItems(e.target.value); if (dropDownItems.length > 1) { @@ -204,7 +209,6 @@ function FormAutosuggest({ setState(prevState => ({ ...prevState, dropDownItems: [], - errorMessageText, })); setIsMenuClosed(true); @@ -219,11 +223,15 @@ function FormAutosuggest({ 0).toString()} aria-owns="pgn__form-autosuggest__dropdown-box" + role="combobox" + aria-autocomplete="list" + autoComplete="off" value={state.displayValue} aria-invalid={state.errorMessage} onChange={handleOnChange} onClick={handleClick} trailingElement={iconToggle} + data-testid="autosuggest-textbox-input" {...props} /> @@ -240,25 +248,30 @@ function FormAutosuggest({ )} -
{isLoading ? (
- +
) : state.dropDownItems.length > 0 && state.dropDownItems} -
+ ); } FormAutosuggest.defaultProps = { - arrowKeyNavigationSelector: 'a:not(:disabled),button:not(:disabled, .btn-icon),input:not(:disabled)', + arrowKeyNavigationSelector: 'a:not(:disabled),li:not(:disabled, .btn-icon),input:not(:disabled)', ignoredArrowKeysNames: ['ArrowRight', 'ArrowLeft'], isLoading: false, - role: 'list', className: null, floatingLabel: null, onChange: null, @@ -283,8 +296,6 @@ FormAutosuggest.propTypes = { ignoredArrowKeysNames: PropTypes.arrayOf(PropTypes.string), /** Specifies loading state. */ isLoading: PropTypes.bool, - /** An ARIA role describing the form autosuggest. */ - role: PropTypes.string, /** Specifies class name to append to the base element. */ className: PropTypes.string, /** Specifies floating label to display for the input component. */ diff --git a/src/Form/FormAutosuggestOption.jsx b/src/Form/FormAutosuggestOption.jsx index a313d2381e..b965696eef 100644 --- a/src/Form/FormAutosuggestOption.jsx +++ b/src/Form/FormAutosuggestOption.jsx @@ -11,6 +11,10 @@ function FormAutosuggestOption({ }) { return ( JavaScript Python Rube - alert(e.currentTarget.value)}> + alert(e.currentTarget.getAttribute('data-value'))}> Option with custom onClick diff --git a/src/Form/input-group.mdx b/src/Form/input-group.mdx index d4bcf1e9a8..b19fd28b25 100644 --- a/src/Form/input-group.mdx +++ b/src/Form/input-group.mdx @@ -1,5 +1,5 @@ --- -title: 'Input Group' +title: 'InputGroup' type: 'component' categories: - Forms diff --git a/src/Form/tests/FormAutosuggest.test.jsx b/src/Form/tests/FormAutosuggest.test.jsx index 9a00480cd8..8eaafb0e8d 100644 --- a/src/Form/tests/FormAutosuggest.test.jsx +++ b/src/Form/tests/FormAutosuggest.test.jsx @@ -1,22 +1,12 @@ import React from 'react'; -import { mount } from 'enzyme'; -import { act } from 'react-dom/test-utils'; +import PropTypes from 'prop-types'; +import { render, screen } from '@testing-library/react'; +import '@testing-library/jest-dom'; +import userEvent from '@testing-library/user-event'; import { IntlProvider } from 'react-intl'; import FormAutosuggest from '../FormAutosuggest'; import FormAutosuggestOption from '../FormAutosuggestOption'; -const createDocumentListenersMock = () => { - const listeners = {}; - const handler = (domEl, e) => listeners?.[e]?.({ target: domEl }); - - document.addEventListener = jest.fn((e, fn) => { listeners[e] = fn; }); - document.removeEventListener = jest.fn(e => { delete listeners[e]; }); - - return { - click: domEl => handler(domEl, 'click'), - }; -}; - function FormAutosuggestWrapper(props) { return ( @@ -25,141 +15,176 @@ function FormAutosuggestWrapper(props) { ); } -describe('FormAutosuggest', () => { - afterEach(() => { - jest.clearAllMocks(); - }); - - const onSelected = jest.fn(); - const onClick = jest.fn(); - - const container = mount( +function FormAutosuggestTestComponent(props) { + return ( Option 1 - Option 2 + Option 2 Learn from more than 160 member universities - , + ); +} + +FormAutosuggestTestComponent.defaultProps = { + onSelected: jest.fn(), + onClick: jest.fn(), +}; + +FormAutosuggestTestComponent.propTypes = { + /** Specifies onSelected event handler. */ + onSelected: PropTypes.func, + /** Specifies onClick event handler. */ + onClick: PropTypes.func, +}; + +describe('render behavior', () => { + it('renders component without error', () => { + render(); + }); - describe('render behavior', () => { - it('renders component without error', () => { - mount(); - }); + it('renders without loading state', () => { + const { queryByTestId } = render(); + const spinner = queryByTestId('autosuggest-loading-spinner'); + expect(spinner).not.toBeInTheDocument(); + }); + + it('render with loading state', () => { + const { queryByTestId } = render(); + const spinner = queryByTestId('autosuggest-loading-spinner'); + expect(spinner).toBeInTheDocument(); + }); - it('render without loading state', () => { - expect(container.exists('.pgn__form-autosuggest__dropdown-loading')).toBe(false); - expect(container.props().isLoading).toBeUndefined(); - }); + it('renders the auto-populated value if it exists', () => { + render(); + expect(screen.getByDisplayValue('Test Value')).toBeInTheDocument(); + }); - it('render with loading state', () => { - const wrapper = mount(); + it('renders component with options', () => { + const { getByTestId, queryAllByTestId } = render(); + const input = getByTestId('autosuggest-textbox-input'); + userEvent.click(input); + const list = queryAllByTestId('autosuggest-optionitem'); + expect(list.length).toBe(3); + }); - expect(wrapper.exists('.pgn__form-autosuggest__dropdown-loading')).toBe(true); - expect(wrapper.props().isLoading).toBe(true); - }); + it('renders with error msg', () => { + const { getByText, getByTestId } = render(); + const input = getByTestId('autosuggest-textbox-input'); - it('renders the auto-populated value if it exists', () => { - const wrapper = mount(); + // if you click into the input and click outside, you should see the error message + userEvent.click(input); + userEvent.click(document.body); - expect(wrapper.find('input').instance().value).toEqual('Test Value'); - expect(wrapper.props().value).toEqual('Test Value'); - }); + const formControlFeedback = getByText('Example error message'); - it('renders component with options', () => { - container.find('input').simulate('click'); - const optionsList = container.find('.pgn__form-autosuggest__dropdown').find('button'); + expect(formControlFeedback).toBeInTheDocument(); + }); +}); - expect(optionsList.length).toEqual(3); - }); +describe('controlled behavior', () => { + it('sets input value based on clicked option', () => { + const { getByText, getByTestId } = render(); + const input = getByTestId('autosuggest-textbox-input'); - it('renders with error msg', () => { - container.find('input').simulate('click'); - act(() => { - const event = new Event('click', { bubbles: true }); - document.dispatchEvent(event); - }); - container.update(); - const formControlFeedback = container.find('FormControlFeedback'); + userEvent.click(input); + const menuItem = getByText('Option 1'); + userEvent.click(menuItem); - expect(formControlFeedback.text()).toEqual('Example error message'); - }); + expect(input.value).toEqual('Option 1'); }); - describe('controlled behavior', () => { - it('selects option', () => { - container.find('input').simulate('click'); - container.find('.pgn__form-autosuggest__dropdown').find('button') - .at(0).simulate('click'); + it('calls onSelected based on clicked option', () => { + const onSelected = jest.fn(); + const { getByText, getByTestId } = render(); + const input = getByTestId('autosuggest-textbox-input'); - expect(container.find('input').instance().value).toEqual('Option 1'); - expect(onSelected).toHaveBeenCalledWith('Option 1'); - expect(onSelected).toHaveBeenCalledTimes(1); - }); + userEvent.click(input); + const menuItem = getByText('Option 1'); + userEvent.click(menuItem); - it('when a function is passed to onClick, it is called', () => { - container.find('input').simulate('change', { target: { value: 'Option 2' } }); - container.find('.pgn__form-autosuggest__dropdown').find('button') - .at(0).simulate('click'); + expect(onSelected).toHaveBeenCalledWith('Option 1'); + expect(onSelected).toHaveBeenCalledTimes(1); + }); - expect(onClick).toHaveBeenCalledTimes(1); - }); + it('calls the function passed to onClick when an option with it is selected', () => { + const onClick = jest.fn(); + const { getByText, getByTestId } = render(); + const input = getByTestId('autosuggest-textbox-input'); - it('when a function is not passed to onClick, it is not called', () => { - container.find('input').simulate('change', { target: { value: 'Option 1' } }); - container.find('.pgn__form-autosuggest__dropdown').find('button') - .at(0).simulate('click'); + userEvent.click(input); + const menuItem = getByText('Option 2'); + userEvent.click(menuItem); - expect(onClick).toHaveBeenCalledTimes(0); - }); + expect(onClick).toHaveBeenCalledTimes(1); + }); - it('options list depends on empty field value', () => { - container.find('input').simulate('change', { target: { value: '' } }); + it('does not call onClick when an option without it is selected', () => { + const onClick = jest.fn(); + const { getByText, getByTestId } = render(); + const input = getByTestId('autosuggest-textbox-input'); - expect(container.find('input').instance().value).toEqual(''); - }); + userEvent.click(input); + const menuItem = getByText('Option 1'); + userEvent.click(menuItem); - it('options list depends on filled field value', () => { - container.find('input').simulate('change', { target: { value: 'option 1' } }); + expect(onClick).toHaveBeenCalledTimes(0); + }); - expect(container.find('.pgn__form-autosuggest__dropdown').find('button').length).toEqual(1); - expect(onSelected).toHaveBeenCalledTimes(0); - }); + it('filters dropdown based on typed field value with one match', () => { + const { getByTestId, queryAllByTestId } = render(); + const input = getByTestId('autosuggest-textbox-input'); - it('toggles options list', () => { - const dropdownContainer = '.pgn__form-autosuggest__dropdown'; + userEvent.click(input); + userEvent.type(input, 'Option 1'); - expect(container.find(dropdownContainer).find('button').length).toEqual(1); + const list = queryAllByTestId('autosuggest-optionitem'); + expect(list.length).toBe(1); + }); - container.find('button.pgn__form-autosuggest__icon-button').simulate('click'); - expect(container.find(dropdownContainer).find('button').length).toEqual(0); + it('toggles options list', () => { + const { getByTestId, queryAllByTestId } = render(); + const dropdownBtn = getByTestId('autosuggest-iconbutton'); - container.find('button.pgn__form-autosuggest__icon-button').simulate('click'); - expect(container.find(dropdownContainer).find('button').length).toEqual(1); - }); + userEvent.click(dropdownBtn); + const list = queryAllByTestId('autosuggest-optionitem'); + expect(list.length).toBe(3); - it('shows options list depends on field value', () => { - container.find('input').simulate('change', { target: { value: '1' } }); + userEvent.click(dropdownBtn); + const updatedList = queryAllByTestId('autosuggest-optionitem'); + expect(updatedList.length).toBe(0); - expect(container.find('.pgn__form-autosuggest__dropdown').find('button').length).toEqual(2); - }); + userEvent.click(dropdownBtn); + const reopenedList = queryAllByTestId('autosuggest-optionitem'); + expect(reopenedList.length).toBe(3); + }); - it('closes options list on click outside', () => { - const fireEvent = createDocumentListenersMock(); - const dropdownContainer = '.pgn__form-autosuggest__dropdown'; + it('filters dropdown based on typed field value with multiple matches', () => { + const { getByTestId, queryAllByTestId } = render(); + const input = getByTestId('autosuggest-textbox-input'); + + userEvent.click(input); + userEvent.type(input, '1'); + + const list = queryAllByTestId('autosuggest-optionitem'); + expect(list.length).toBe(2); + }); - container.find('input').simulate('click'); - expect(container.find(dropdownContainer).find('button').length).toEqual(2); + it('closes options list on click outside', () => { + const { getByTestId, queryAllByTestId } = render(); + const input = getByTestId('autosuggest-textbox-input'); - act(() => { fireEvent.click(document.body); }); - container.update(); + userEvent.click(input); + const list = queryAllByTestId('autosuggest-optionitem'); + expect(list.length).toBe(3); - expect(container.find(dropdownContainer).find('button').length).toEqual(0); - }); + userEvent.click(document.body); + const updatedList = queryAllByTestId('autosuggest-optionitem'); + expect(updatedList.length).toBe(0); }); }); diff --git a/src/Overlay/README.md b/src/Overlay/README.md index 82d2ed8b4d..da86dc330c 100644 --- a/src/Overlay/README.md +++ b/src/Overlay/README.md @@ -1,5 +1,5 @@ --- -title: 'Overlays' +title: 'Overlay' type: 'component' components: - Overlay diff --git a/src/PageBanner/README.md b/src/PageBanner/README.md index a28ca9f185..b73325108e 100644 --- a/src/PageBanner/README.md +++ b/src/PageBanner/README.md @@ -1,5 +1,5 @@ --- -title: 'Page Banner' +title: 'PageBanner' type: 'component' components: - PageBanner diff --git a/src/ProgressBar/README.md b/src/ProgressBar/README.md index 2a0ec266f8..d2697a4c18 100644 --- a/src/ProgressBar/README.md +++ b/src/ProgressBar/README.md @@ -1,5 +1,5 @@ --- -title: 'Progress Bar' +title: 'ProgressBar' type: 'component' components: - ProgressBar diff --git a/src/SearchField/SearchFieldAdvanced.jsx b/src/SearchField/SearchFieldAdvanced.jsx index 004a392889..ba0f81df69 100644 --- a/src/SearchField/SearchFieldAdvanced.jsx +++ b/src/SearchField/SearchFieldAdvanced.jsx @@ -100,7 +100,7 @@ function SearchFieldAdvanced(props) { role="search" onSubmit={handleSubmit} onReset={handleClear} - className="d-flex align-items-center w-100" + className="pgn__searchfield-form" aria-label={formAriaLabel} > with basic usage should match the snapshot 1`] = `"
"`; +exports[` with basic usage should match the snapshot 1`] = `"
"`; diff --git a/src/SearchField/index.scss b/src/SearchField/index.scss index 8da0e4203e..3263540abd 100644 --- a/src/SearchField/index.scss +++ b/src/SearchField/index.scss @@ -2,6 +2,13 @@ transition: var(--pgn-transition-form-input); border: var(--pgn-size-search-field-border-width-base) solid var(--pgn-color-search-field-border-base); + .pgn__searchfield-form { + display: flex; + align-items: center; + width: 100%; + background-color: $search-form-background-color; + } + .btn:focus-visible { outline: none; position: relative; diff --git a/src/Truncate/utils.js b/src/Truncate/utils.js index bb26f44539..380805c24a 100644 --- a/src/Truncate/utils.js +++ b/src/Truncate/utils.js @@ -11,7 +11,7 @@ const createCopyElement = (element) => { const newElement = document.createElement(element.tagName); newElement.setAttribute( 'style', - `line-height: ${LINE_HEIGHT_VALUE}px; display: inline-block;`, + `line-height: ${LINE_HEIGHT_VALUE}px; display: inline-block; word-break: break-word;`, ); return newElement; }; diff --git a/src/hooks/useArrowKeyNavigation.mdx b/src/hooks/useArrowKeyNavigation.mdx index 6b0e6936d5..d6629f7bde 100644 --- a/src/hooks/useArrowKeyNavigation.mdx +++ b/src/hooks/useArrowKeyNavigation.mdx @@ -64,7 +64,7 @@ the `arrowUp` and `arrowLeft` keys can be ignored for convenient editing of the - + Confirm the entered data + ); +} + +PageEditBtn.propTypes = { + githubEditPath: PropTypes.string.isRequired, + isNavLink: PropTypes.bool, +}; + +PageEditBtn.defaultProps = { + isNavLink: false, +}; + +export default PageEditBtn; diff --git a/www/src/components/PageLayout.tsx b/www/src/components/PageLayout.tsx index a5e1375819..673f64b6d2 100644 --- a/www/src/components/PageLayout.tsx +++ b/www/src/components/PageLayout.tsx @@ -17,6 +17,7 @@ import { Sticky, useMediaQuery, breakpoints, + Stack, } from '~paragon-react'; import ComponentsList from './ComponentsList'; import Header from './header'; @@ -26,6 +27,7 @@ import Toc from './Toc'; import { SettingsContext } from '../context/SettingsContext'; import LeaveFeedback from './LeaveFeedback'; import AutoToc from './AutoToc'; +import PageEditBtn from './PageEditBtn'; export interface ILayout { children: React.ReactNode, @@ -35,6 +37,7 @@ export interface ILayout { tocData: Array, tab?: string, isAutoToc?: boolean, + githubEditPath?: string, } function Layout({ @@ -45,6 +48,7 @@ function Layout({ tocData, isAutoToc, tab, + githubEditPath, }: ILayout) { const isMobile = useMediaQuery({ maxWidth: breakpoints.extraLarge.minWidth }); const { settings } = useContext(SettingsContext); @@ -83,7 +87,12 @@ function Layout({ {children}
- + + {isMdx && ( + + )} + +
+ {isMdx && ( + + + + )}
{/* eslint-disable-next-line react/jsx-pascal-case */} @@ -135,10 +140,24 @@ export default function PageTemplate({

{mdx.frontmatter.notes}

)} -
-

{mdx.frontmatter.title}

- -
+ +

+ {mdx.frontmatter.title} +

+ + + + +
{mdx.body}