@openedx/frontend-base 1.0.0-alpha.3 → 1.0.0-alpha.31
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +27 -0
- package/{index.ts → dist/index.d.ts} +0 -3
- package/dist/index.js +4 -0
- package/dist/index.js.map +1 -0
- package/dist/runtime/analytics/MockAnalyticsService.d.ts +50 -0
- package/dist/runtime/analytics/MockAnalyticsService.js +64 -0
- package/dist/runtime/analytics/MockAnalyticsService.js.map +1 -0
- package/dist/runtime/analytics/SegmentAnalyticsService.d.ts +64 -0
- package/dist/runtime/analytics/SegmentAnalyticsService.js +218 -0
- package/dist/runtime/analytics/SegmentAnalyticsService.js.map +1 -0
- package/dist/runtime/analytics/index.d.ts +3 -0
- package/dist/runtime/analytics/index.js +4 -0
- package/dist/runtime/analytics/index.js.map +1 -0
- package/dist/runtime/analytics/interface.d.ts +53 -0
- package/{runtime → dist/runtime}/analytics/interface.js +26 -38
- package/dist/runtime/analytics/interface.js.map +1 -0
- package/dist/runtime/auth/AxiosCsrfTokenService.d.ts +10 -0
- package/dist/runtime/auth/AxiosCsrfTokenService.js +64 -0
- package/dist/runtime/auth/AxiosCsrfTokenService.js.map +1 -0
- package/dist/runtime/auth/AxiosJwtAuthService.d.ts +182 -0
- package/dist/runtime/auth/AxiosJwtAuthService.js +339 -0
- package/dist/runtime/auth/AxiosJwtAuthService.js.map +1 -0
- package/dist/runtime/auth/AxiosJwtTokenService.d.ts +16 -0
- package/dist/runtime/auth/AxiosJwtTokenService.js +130 -0
- package/dist/runtime/auth/AxiosJwtTokenService.js.map +1 -0
- package/dist/runtime/auth/LocalForageCache.d.ts +7 -0
- package/dist/runtime/auth/LocalForageCache.js +78 -0
- package/dist/runtime/auth/LocalForageCache.js.map +1 -0
- package/dist/runtime/auth/MockAuthService.d.ts +209 -0
- package/dist/runtime/auth/MockAuthService.js +256 -0
- package/dist/runtime/auth/MockAuthService.js.map +1 -0
- package/dist/runtime/auth/index.d.ts +3 -0
- package/dist/runtime/auth/index.js +4 -0
- package/dist/runtime/auth/index.js.map +1 -0
- package/dist/runtime/auth/interceptors/createCsrfTokenProviderInterceptor.d.ts +2 -0
- package/dist/runtime/auth/interceptors/createCsrfTokenProviderInterceptor.js +42 -0
- package/dist/runtime/auth/interceptors/createCsrfTokenProviderInterceptor.js.map +1 -0
- package/dist/runtime/auth/interceptors/createJwtTokenProviderInterceptor.d.ts +2 -0
- package/dist/runtime/auth/interceptors/createJwtTokenProviderInterceptor.js +40 -0
- package/dist/runtime/auth/interceptors/createJwtTokenProviderInterceptor.js.map +1 -0
- package/dist/runtime/auth/interceptors/createProcessAxiosRequestErrorInterceptor.d.ts +2 -0
- package/dist/runtime/auth/interceptors/createProcessAxiosRequestErrorInterceptor.js +26 -0
- package/dist/runtime/auth/interceptors/createProcessAxiosRequestErrorInterceptor.js.map +1 -0
- package/dist/runtime/auth/interceptors/createRetryInterceptor.d.ts +3 -0
- package/dist/runtime/auth/interceptors/createRetryInterceptor.js +67 -0
- package/dist/runtime/auth/interceptors/createRetryInterceptor.js.map +1 -0
- package/dist/runtime/auth/interface.d.ts +133 -0
- package/{runtime → dist/runtime}/auth/interface.js +65 -72
- package/dist/runtime/auth/interface.js.map +1 -0
- package/dist/runtime/auth/utils.d.ts +13 -0
- package/dist/runtime/auth/utils.js +66 -0
- package/dist/runtime/auth/utils.js.map +1 -0
- package/dist/runtime/babel.config.d.ts +2 -0
- package/{runtime → dist/runtime}/babel.config.js +2 -1
- package/dist/runtime/babel.config.js.map +1 -0
- package/{runtime/config/index.ts → dist/runtime/config/index.d.ts} +45 -124
- package/dist/runtime/config/index.js +359 -0
- package/dist/runtime/config/index.js.map +1 -0
- package/dist/runtime/constants.d.ts +57 -0
- package/{runtime/constants.ts → dist/runtime/constants.js} +1 -11
- package/dist/runtime/constants.js.map +1 -0
- package/dist/runtime/i18n/index.d.ts +3 -0
- package/{runtime → dist/runtime}/i18n/index.js +4 -44
- package/dist/runtime/i18n/index.js.map +1 -0
- package/dist/runtime/i18n/injectIntlWithShim.d.ts +11 -0
- package/dist/runtime/i18n/injectIntlWithShim.js +45 -0
- package/dist/runtime/i18n/injectIntlWithShim.js.map +1 -0
- package/dist/runtime/i18n/lib.d.ts +113 -0
- package/dist/runtime/i18n/lib.js +223 -0
- package/dist/runtime/i18n/lib.js.map +1 -0
- package/dist/runtime/index.d.ts +14 -0
- package/dist/runtime/index.js +15 -0
- package/dist/runtime/index.js.map +1 -0
- package/dist/runtime/initialize.d.ts +87 -0
- package/dist/runtime/initialize.js +305 -0
- package/dist/runtime/initialize.js.map +1 -0
- package/dist/runtime/jest.config.d.ts +16 -0
- package/dist/runtime/jest.config.js +34 -0
- package/dist/runtime/jest.config.js.map +1 -0
- package/dist/runtime/logging/MockLoggingService.d.ts +28 -0
- package/dist/runtime/logging/MockLoggingService.js +31 -0
- package/dist/runtime/logging/MockLoggingService.js.map +1 -0
- package/dist/runtime/logging/NewRelicLoggingService.d.ts +67 -0
- package/dist/runtime/logging/NewRelicLoggingService.js +175 -0
- package/dist/runtime/logging/NewRelicLoggingService.js.map +1 -0
- package/{runtime/logging/index.ts → dist/runtime/logging/index.d.ts} +1 -7
- package/dist/runtime/logging/index.js +4 -0
- package/dist/runtime/logging/index.js.map +1 -0
- package/dist/runtime/logging/interface.d.ts +38 -0
- package/{runtime → dist/runtime}/logging/interface.js +16 -26
- package/dist/runtime/logging/interface.js.map +1 -0
- package/dist/runtime/logging/types.d.ts +4 -0
- package/dist/runtime/logging/types.js +2 -0
- package/dist/runtime/logging/types.js.map +1 -0
- package/dist/runtime/react/AuthenticatedPageRoute.d.ts +30 -0
- package/{runtime/react/AuthenticatedPageRoute.jsx → dist/runtime/react/AuthenticatedPageRoute.js} +13 -18
- package/dist/runtime/react/AuthenticatedPageRoute.js.map +1 -0
- package/dist/runtime/react/CombinedAppProvider.d.ts +6 -0
- package/dist/runtime/react/CombinedAppProvider.js +24 -0
- package/dist/runtime/react/CombinedAppProvider.js.map +1 -0
- package/dist/runtime/react/CurrentAppContext.d.ts +20 -0
- package/{runtime/react/CurrentAppContext.tsx → dist/runtime/react/CurrentAppContext.js} +3 -7
- package/dist/runtime/react/CurrentAppContext.js.map +1 -0
- package/dist/runtime/react/CurrentAppProvider.d.ts +23 -0
- package/dist/runtime/react/CurrentAppProvider.js +33 -0
- package/dist/runtime/react/CurrentAppProvider.js.map +1 -0
- package/dist/runtime/react/Divider.d.ts +1 -0
- package/dist/runtime/react/Divider.js +5 -0
- package/dist/runtime/react/Divider.js.map +1 -0
- package/dist/runtime/react/ErrorBoundary.d.ts +32 -0
- package/dist/runtime/react/ErrorBoundary.js +40 -0
- package/dist/runtime/react/ErrorBoundary.js.map +1 -0
- package/dist/runtime/react/ErrorPage.d.ts +17 -0
- package/dist/runtime/react/ErrorPage.js +29 -0
- package/dist/runtime/react/ErrorPage.js.map +1 -0
- package/dist/runtime/react/LoginRedirect.d.ts +8 -0
- package/{runtime/react/LoginRedirect.jsx → dist/runtime/react/LoginRedirect.js} +5 -5
- package/dist/runtime/react/LoginRedirect.js.map +1 -0
- package/dist/runtime/react/NotFoundPage.d.ts +2 -0
- package/dist/runtime/react/NotFoundPage.js +14 -0
- package/dist/runtime/react/NotFoundPage.js.map +1 -0
- package/dist/runtime/react/PageWrap.d.ts +8 -0
- package/{runtime/react/PageWrap.jsx → dist/runtime/react/PageWrap.js} +7 -10
- package/dist/runtime/react/PageWrap.js.map +1 -0
- package/dist/runtime/react/SiteContext.d.ts +24 -0
- package/{runtime/react/SiteContext.tsx → dist/runtime/react/SiteContext.js} +5 -11
- package/dist/runtime/react/SiteContext.js.map +1 -0
- package/dist/runtime/react/SiteProvider.d.ts +29 -0
- package/dist/runtime/react/SiteProvider.js +69 -0
- package/dist/runtime/react/SiteProvider.js.map +1 -0
- package/dist/runtime/react/constants.d.ts +3 -0
- package/dist/runtime/react/constants.js +4 -0
- package/dist/runtime/react/constants.js.map +1 -0
- package/dist/runtime/react/hooks/index.d.ts +7 -0
- package/dist/runtime/react/hooks/index.js +8 -0
- package/dist/runtime/react/hooks/index.js.map +1 -0
- package/dist/runtime/react/hooks/theme/index.d.ts +2 -0
- package/dist/runtime/react/hooks/theme/index.js +3 -0
- package/dist/runtime/react/hooks/theme/index.js.map +1 -0
- package/dist/runtime/react/hooks/theme/useTheme.d.ts +35 -0
- package/dist/runtime/react/hooks/theme/useTheme.js +153 -0
- package/dist/runtime/react/hooks/theme/useTheme.js.map +1 -0
- package/dist/runtime/react/hooks/theme/useThemeConfig.d.ts +16 -0
- package/dist/runtime/react/hooks/theme/useThemeConfig.js +29 -0
- package/dist/runtime/react/hooks/theme/useThemeConfig.js.map +1 -0
- package/dist/runtime/react/hooks/theme/useThemeCore.d.ts +10 -0
- package/dist/runtime/react/hooks/theme/useThemeCore.js +40 -0
- package/dist/runtime/react/hooks/theme/useThemeCore.js.map +1 -0
- package/dist/runtime/react/hooks/theme/useThemeVariants.d.ts +17 -0
- package/dist/runtime/react/hooks/theme/useThemeVariants.js +90 -0
- package/dist/runtime/react/hooks/theme/useThemeVariants.js.map +1 -0
- package/dist/runtime/react/hooks/theme/useTrackColorSchemeChoice.d.ts +8 -0
- package/dist/runtime/react/hooks/theme/useTrackColorSchemeChoice.js +30 -0
- package/dist/runtime/react/hooks/theme/useTrackColorSchemeChoice.js.map +1 -0
- package/dist/runtime/react/hooks/theme/utils.d.ts +6 -0
- package/dist/runtime/react/hooks/theme/utils.js +11 -0
- package/dist/runtime/react/hooks/theme/utils.js.map +1 -0
- package/dist/runtime/react/hooks/useActiveRoles.d.ts +2 -0
- package/dist/runtime/react/hooks/useActiveRoles.js +13 -0
- package/dist/runtime/react/hooks/useActiveRoles.js.map +1 -0
- package/dist/runtime/react/hooks/useActiveRouteRoleWatcher.d.ts +2 -0
- package/dist/runtime/react/hooks/useActiveRouteRoleWatcher.js +28 -0
- package/dist/runtime/react/hooks/useActiveRouteRoleWatcher.js.map +1 -0
- package/dist/runtime/react/hooks/useAppConfig.d.ts +2 -0
- package/dist/runtime/react/hooks/useAppConfig.js +8 -0
- package/dist/runtime/react/hooks/useAppConfig.js.map +1 -0
- package/dist/runtime/react/hooks/useAuthenticatedUser.d.ts +2 -0
- package/dist/runtime/react/hooks/useAuthenticatedUser.js +8 -0
- package/dist/runtime/react/hooks/useAuthenticatedUser.js.map +1 -0
- package/dist/runtime/react/hooks/useSiteConfig.d.ts +2 -0
- package/dist/runtime/react/hooks/useSiteConfig.js +8 -0
- package/dist/runtime/react/hooks/useSiteConfig.js.map +1 -0
- package/dist/runtime/react/hooks/useSiteEvent.d.ts +12 -0
- package/dist/runtime/react/hooks/useSiteEvent.js +22 -0
- package/dist/runtime/react/hooks/useSiteEvent.js.map +1 -0
- package/{runtime/react/index.ts → dist/runtime/react/index.d.ts} +1 -1
- package/dist/runtime/react/index.js +20 -0
- package/dist/runtime/react/index.js.map +1 -0
- package/dist/runtime/react/reducers.d.ts +11 -0
- package/dist/runtime/react/reducers.js +28 -0
- package/dist/runtime/react/reducers.js.map +1 -0
- package/dist/runtime/routing/authenticatedLoader.d.ts +2 -0
- package/dist/runtime/routing/authenticatedLoader.js +27 -0
- package/dist/runtime/routing/authenticatedLoader.js.map +1 -0
- package/dist/runtime/routing/index.d.ts +2 -0
- package/dist/runtime/routing/index.js +3 -0
- package/dist/runtime/routing/index.js.map +1 -0
- package/dist/runtime/routing/utils.d.ts +4 -0
- package/dist/runtime/routing/utils.js +43 -0
- package/dist/runtime/routing/utils.js.map +1 -0
- package/dist/runtime/scripts/index.d.ts +1 -0
- package/dist/runtime/scripts/index.js +14 -0
- package/dist/runtime/scripts/index.js.map +1 -0
- package/dist/runtime/setupTest.d.ts +1 -0
- package/dist/runtime/setupTest.js +12 -0
- package/dist/runtime/setupTest.js.map +1 -0
- package/dist/runtime/slots/Slot.d.ts +10 -0
- package/dist/runtime/slots/Slot.js +35 -0
- package/dist/runtime/slots/Slot.js.map +1 -0
- package/dist/runtime/slots/SlotContext.d.ts +8 -0
- package/dist/runtime/slots/SlotContext.js +7 -0
- package/dist/runtime/slots/SlotContext.js.map +1 -0
- package/dist/runtime/slots/hooks.d.ts +13 -0
- package/dist/runtime/slots/hooks.js +29 -0
- package/dist/runtime/slots/hooks.js.map +1 -0
- package/dist/runtime/slots/index.js +7 -0
- package/dist/runtime/slots/index.js.map +1 -0
- package/dist/runtime/slots/layout/DefaultSlotLayout.d.ts +1 -0
- package/dist/runtime/slots/layout/DefaultSlotLayout.js +7 -0
- package/dist/runtime/slots/layout/DefaultSlotLayout.js.map +1 -0
- package/dist/runtime/slots/layout/hooks.d.ts +10 -0
- package/dist/runtime/slots/layout/hooks.js +57 -0
- package/dist/runtime/slots/layout/hooks.js.map +1 -0
- package/dist/runtime/slots/layout/index.js +5 -0
- package/dist/runtime/slots/layout/index.js.map +1 -0
- package/{runtime/slots/layout/types.ts → dist/runtime/slots/layout/types.d.ts} +10 -25
- package/dist/runtime/slots/layout/types.js +12 -0
- package/dist/runtime/slots/layout/types.js.map +1 -0
- package/dist/runtime/slots/layout/utils.d.ts +5 -0
- package/dist/runtime/slots/layout/utils.js +11 -0
- package/dist/runtime/slots/layout/utils.js.map +1 -0
- package/{runtime/slots/types.ts → dist/runtime/slots/types.d.ts} +6 -12
- package/dist/runtime/slots/types.js +7 -0
- package/dist/runtime/slots/types.js.map +1 -0
- package/dist/runtime/slots/utils.d.ts +3 -0
- package/dist/runtime/slots/utils.js +66 -0
- package/dist/runtime/slots/utils.js.map +1 -0
- package/dist/runtime/slots/widget/WidgetContext.d.ts +6 -0
- package/dist/runtime/slots/widget/WidgetContext.js +8 -0
- package/dist/runtime/slots/widget/WidgetContext.js.map +1 -0
- package/dist/runtime/slots/widget/WidgetProvider.d.ts +9 -0
- package/dist/runtime/slots/widget/WidgetProvider.js +18 -0
- package/dist/runtime/slots/widget/WidgetProvider.js.map +1 -0
- package/dist/runtime/slots/widget/hooks.d.ts +13 -0
- package/dist/runtime/slots/widget/hooks.js +104 -0
- package/dist/runtime/slots/widget/hooks.js.map +1 -0
- package/dist/runtime/slots/widget/iframe/IFrameContentWrapper.d.ts +10 -0
- package/dist/runtime/slots/widget/iframe/IFrameContentWrapper.js +42 -0
- package/dist/runtime/slots/widget/iframe/IFrameContentWrapper.js.map +1 -0
- package/dist/runtime/slots/widget/iframe/IFrameContentWrapper.messages.d.ts +13 -0
- package/dist/runtime/slots/widget/iframe/IFrameContentWrapper.messages.js +15 -0
- package/dist/runtime/slots/widget/iframe/IFrameContentWrapper.messages.js.map +1 -0
- package/dist/runtime/slots/widget/iframe/IFrameWidget.d.ts +6 -0
- package/dist/runtime/slots/widget/iframe/IFrameWidget.js +32 -0
- package/dist/runtime/slots/widget/iframe/IFrameWidget.js.map +1 -0
- package/dist/runtime/slots/widget/iframe/constants.d.ts +15 -0
- package/{runtime/slots/widget/iframe/constants.ts → dist/runtime/slots/widget/iframe/constants.js} +2 -4
- package/dist/runtime/slots/widget/iframe/constants.js.map +1 -0
- package/dist/runtime/slots/widget/iframe/hooks.d.ts +64 -0
- package/dist/runtime/slots/widget/iframe/hooks.js +144 -0
- package/dist/runtime/slots/widget/iframe/hooks.js.map +1 -0
- package/{runtime/slots/widget/iframe/index.ts → dist/runtime/slots/widget/iframe/index.d.ts} +1 -4
- package/dist/runtime/slots/widget/iframe/index.js +3 -0
- package/dist/runtime/slots/widget/iframe/index.js.map +1 -0
- package/{runtime/slots/widget/iframe/types.ts → dist/runtime/slots/widget/iframe/types.d.ts} +2 -4
- package/dist/runtime/slots/widget/iframe/types.js +3 -0
- package/dist/runtime/slots/widget/iframe/types.js.map +1 -0
- package/dist/runtime/slots/widget/index.js +6 -0
- package/dist/runtime/slots/widget/index.js.map +1 -0
- package/{runtime/slots/widget/types.ts → dist/runtime/slots/widget/types.d.ts} +58 -84
- package/dist/runtime/slots/widget/types.js +41 -0
- package/dist/runtime/slots/widget/types.js.map +1 -0
- package/dist/runtime/slots/widget/utils.d.ts +22 -0
- package/dist/runtime/slots/widget/utils.js +184 -0
- package/dist/runtime/slots/widget/utils.js.map +1 -0
- package/{runtime/subscriptions.ts → dist/runtime/subscriptions.d.ts} +5 -41
- package/dist/runtime/subscriptions.js +48 -0
- package/dist/runtime/subscriptions.js.map +1 -0
- package/{runtime/testing/index.ts → dist/runtime/testing/index.d.ts} +0 -1
- package/dist/runtime/testing/index.js +9 -0
- package/dist/runtime/testing/index.js.map +1 -0
- package/dist/runtime/testing/initializeMockApp.d.ts +46 -0
- package/{runtime/testing/initializeMockApp.ts → dist/runtime/testing/initializeMockApp.js} +26 -36
- package/dist/runtime/testing/initializeMockApp.js.map +1 -0
- package/dist/runtime/testing/mockMessages.d.ts +22 -0
- package/dist/runtime/testing/mockMessages.js +23 -0
- package/dist/runtime/testing/mockMessages.js.map +1 -0
- package/dist/runtime/utils.d.ts +95 -0
- package/{runtime → dist/runtime}/utils.js +55 -70
- package/dist/runtime/utils.js.map +1 -0
- package/dist/shell/DefaultLayout.d.ts +1 -0
- package/dist/shell/DefaultLayout.js +7 -0
- package/dist/shell/DefaultLayout.js.map +1 -0
- package/dist/shell/DefaultMain.d.ts +1 -0
- package/dist/shell/DefaultMain.js +6 -0
- package/dist/shell/DefaultMain.js.map +1 -0
- package/dist/shell/Logo.d.ts +6 -0
- package/dist/shell/Logo.js +16 -0
- package/dist/shell/Logo.js.map +1 -0
- package/dist/shell/Shell.d.ts +1 -0
- package/dist/shell/Shell.js +10 -0
- package/dist/shell/Shell.js.map +1 -0
- package/dist/shell/Shell.messages.d.ts +58 -0
- package/dist/shell/Shell.messages.js +60 -0
- package/dist/shell/Shell.messages.js.map +1 -0
- package/dist/shell/app.d.ts +3 -0
- package/dist/shell/app.js +43 -0
- package/dist/shell/app.js.map +1 -0
- package/{shell → dist/shell}/app.scss +2 -1
- package/dist/shell/babel.config.d.ts +2 -0
- package/{shell → dist/shell}/babel.config.js +2 -1
- package/dist/shell/babel.config.js.map +1 -0
- package/dist/shell/constants.d.ts +2 -0
- package/dist/shell/constants.js +3 -0
- package/dist/shell/constants.js.map +1 -0
- package/dist/shell/dev/devFooter/app.d.ts +3 -0
- package/dist/shell/dev/devFooter/app.js +36 -0
- package/dist/shell/dev/devFooter/app.js.map +1 -0
- package/dist/shell/dev/devFooter/index.js +2 -0
- package/dist/shell/dev/devFooter/index.js.map +1 -0
- package/dist/shell/dev/devHeader/BarContext.d.ts +7 -0
- package/dist/shell/dev/devHeader/BarContext.js +8 -0
- package/dist/shell/dev/devHeader/BarContext.js.map +1 -0
- package/dist/shell/dev/devHeader/BarLink.d.ts +1 -0
- package/dist/shell/dev/devHeader/BarLink.js +10 -0
- package/dist/shell/dev/devHeader/BarLink.js.map +1 -0
- package/dist/shell/dev/devHeader/BarProvider.d.ts +6 -0
- package/dist/shell/dev/devHeader/BarProvider.js +16 -0
- package/dist/shell/dev/devHeader/BarProvider.js.map +1 -0
- package/dist/shell/dev/devHeader/CoursesLink.d.ts +1 -0
- package/dist/shell/dev/devHeader/CoursesLink.js +10 -0
- package/dist/shell/dev/devHeader/CoursesLink.js.map +1 -0
- package/dist/shell/dev/devHeader/FooContext.d.ts +7 -0
- package/dist/shell/dev/devHeader/FooContext.js +8 -0
- package/dist/shell/dev/devHeader/FooContext.js.map +1 -0
- package/dist/shell/dev/devHeader/FooLink.d.ts +1 -0
- package/dist/shell/dev/devHeader/FooLink.js +10 -0
- package/dist/shell/dev/devHeader/FooLink.js.map +1 -0
- package/dist/shell/dev/devHeader/FooProvider.d.ts +6 -0
- package/dist/shell/dev/devHeader/FooProvider.js +16 -0
- package/dist/shell/dev/devHeader/FooProvider.js.map +1 -0
- package/dist/shell/dev/devHeader/app.d.ts +3 -0
- package/dist/shell/dev/devHeader/app.js +34 -0
- package/dist/shell/dev/devHeader/app.js.map +1 -0
- package/dist/shell/dev/devHeader/index.js +2 -0
- package/dist/shell/dev/devHeader/index.js.map +1 -0
- package/dist/shell/dev/devHeader/providers.d.ts +3 -0
- package/dist/shell/dev/devHeader/providers.js +8 -0
- package/dist/shell/dev/devHeader/providers.js.map +1 -0
- package/dist/shell/dev/devHome/HomePage.d.ts +1 -0
- package/dist/shell/dev/devHome/HomePage.js +14 -0
- package/dist/shell/dev/devHome/HomePage.js.map +1 -0
- package/dist/shell/dev/devHome/app.d.ts +3 -0
- package/dist/shell/dev/devHome/app.js +15 -0
- package/dist/shell/dev/devHome/app.js.map +1 -0
- package/dist/shell/dev/devHome/index.js +2 -0
- package/dist/shell/dev/devHome/index.js.map +1 -0
- package/dist/shell/dev/devHome/messages.d.ts +8 -0
- package/dist/shell/dev/devHome/messages.js +10 -0
- package/dist/shell/dev/devHome/messages.js.map +1 -0
- package/dist/shell/dev/devUser/app.d.ts +3 -0
- package/dist/shell/dev/devUser/app.js +22 -0
- package/dist/shell/dev/devUser/app.js.map +1 -0
- package/dist/shell/dev/devUser/index.js +2 -0
- package/dist/shell/dev/devUser/index.js.map +1 -0
- package/dist/shell/dev/index.js +6 -0
- package/dist/shell/dev/index.js.map +1 -0
- package/dist/shell/dev/slotShowcase/HorizontalSlotLayout.d.ts +1 -0
- package/dist/shell/dev/slotShowcase/HorizontalSlotLayout.js +8 -0
- package/dist/shell/dev/slotShowcase/HorizontalSlotLayout.js.map +1 -0
- package/dist/shell/dev/slotShowcase/LayoutWithOptions.d.ts +1 -0
- package/dist/shell/dev/slotShowcase/LayoutWithOptions.js +9 -0
- package/dist/shell/dev/slotShowcase/LayoutWithOptions.js.map +1 -0
- package/dist/shell/dev/slotShowcase/SlotShowcase.scss +50 -0
- package/dist/shell/dev/slotShowcase/SlotShowcasePage.d.ts +2 -0
- package/dist/shell/dev/slotShowcase/SlotShowcasePage.js +17 -0
- package/dist/shell/dev/slotShowcase/SlotShowcasePage.js.map +1 -0
- package/dist/shell/dev/slotShowcase/ToggleByRoleLayout.d.ts +1 -0
- package/dist/shell/dev/slotShowcase/ToggleByRoleLayout.js +11 -0
- package/dist/shell/dev/slotShowcase/ToggleByRoleLayout.js.map +1 -0
- package/dist/shell/dev/slotShowcase/WidgetWithOptions.d.ts +1 -0
- package/dist/shell/dev/slotShowcase/WidgetWithOptions.js +8 -0
- package/dist/shell/dev/slotShowcase/WidgetWithOptions.js.map +1 -0
- package/dist/shell/dev/slotShowcase/app.d.ts +3 -0
- package/dist/shell/dev/slotShowcase/app.js +372 -0
- package/dist/shell/dev/slotShowcase/app.js.map +1 -0
- package/dist/shell/dev/slotShowcase/index.js +2 -0
- package/dist/shell/dev/slotShowcase/index.js.map +1 -0
- package/dist/shell/footer/CenterLinks.d.ts +1 -0
- package/dist/shell/footer/CenterLinks.js +7 -0
- package/dist/shell/footer/CenterLinks.js.map +1 -0
- package/dist/shell/footer/CopyrightNotice.d.ts +10 -0
- package/dist/shell/footer/CopyrightNotice.js +10 -0
- package/dist/shell/footer/CopyrightNotice.js.map +1 -0
- package/dist/shell/footer/Footer.d.ts +1 -0
- package/dist/shell/footer/Footer.js +12 -0
- package/dist/shell/footer/Footer.js.map +1 -0
- package/dist/shell/footer/LabeledLinkColumn.d.ts +1 -0
- package/dist/shell/footer/LabeledLinkColumn.js +11 -0
- package/dist/shell/footer/LabeledLinkColumn.js.map +1 -0
- package/dist/shell/footer/LanguageMenu.d.ts +1 -0
- package/dist/shell/footer/LanguageMenu.js +16 -0
- package/dist/shell/footer/LanguageMenu.js.map +1 -0
- package/dist/shell/footer/LanguageMenuItem.d.ts +8 -0
- package/dist/shell/footer/LanguageMenuItem.js +11 -0
- package/dist/shell/footer/LanguageMenuItem.js.map +1 -0
- package/dist/shell/footer/LeftLinks.d.ts +1 -0
- package/dist/shell/footer/LeftLinks.js +7 -0
- package/dist/shell/footer/LeftLinks.js.map +1 -0
- package/dist/shell/footer/LegalNotices.d.ts +1 -0
- package/dist/shell/footer/LegalNotices.js +10 -0
- package/dist/shell/footer/LegalNotices.js.map +1 -0
- package/dist/shell/footer/PoweredBy.d.ts +1 -0
- package/dist/shell/footer/PoweredBy.js +9 -0
- package/dist/shell/footer/PoweredBy.js.map +1 -0
- package/dist/shell/footer/RevealLinks.d.ts +1 -0
- package/dist/shell/footer/RevealLinks.js +16 -0
- package/dist/shell/footer/RevealLinks.js.map +1 -0
- package/dist/shell/footer/RightLinks.d.ts +1 -0
- package/dist/shell/footer/RightLinks.js +7 -0
- package/dist/shell/footer/RightLinks.js.map +1 -0
- package/dist/shell/footer/app.d.ts +3 -0
- package/dist/shell/footer/app.js +59 -0
- package/dist/shell/footer/app.js.map +1 -0
- package/dist/shell/footer/data/api.d.ts +1 -0
- package/dist/shell/footer/data/api.js +45 -0
- package/dist/shell/footer/data/api.js.map +1 -0
- package/dist/shell/footer/index.js +3 -0
- package/dist/shell/footer/index.js.map +1 -0
- package/dist/shell/header/AuthenticatedMenu.d.ts +5 -0
- package/dist/shell/header/AuthenticatedMenu.js +9 -0
- package/dist/shell/header/AuthenticatedMenu.js.map +1 -0
- package/dist/shell/header/Header.d.ts +1 -0
- package/dist/shell/header/Header.js +8 -0
- package/dist/shell/header/Header.js.map +1 -0
- package/dist/shell/header/anonymous-menu/AnonymousMenu.d.ts +5 -0
- package/dist/shell/header/anonymous-menu/AnonymousMenu.js +7 -0
- package/dist/shell/header/anonymous-menu/AnonymousMenu.js.map +1 -0
- package/dist/shell/header/anonymous-menu/LoginButton.d.ts +3 -0
- package/dist/shell/header/anonymous-menu/LoginButton.js +22 -0
- package/dist/shell/header/anonymous-menu/LoginButton.js.map +1 -0
- package/dist/shell/header/anonymous-menu/RegisterButton.d.ts +3 -0
- package/dist/shell/header/anonymous-menu/RegisterButton.js +22 -0
- package/dist/shell/header/anonymous-menu/RegisterButton.js.map +1 -0
- package/dist/shell/header/app.d.ts +4 -0
- package/dist/shell/header/app.js +132 -0
- package/dist/shell/header/app.js.map +1 -0
- package/dist/shell/header/app.scss +14 -0
- package/dist/shell/header/constants.d.ts +2 -0
- package/dist/shell/header/constants.js +3 -0
- package/dist/shell/header/constants.js.map +1 -0
- package/dist/shell/header/course-navigation-bar/CourseTabsNavigation.d.ts +3 -0
- package/dist/shell/header/course-navigation-bar/CourseTabsNavigation.js +62 -0
- package/dist/shell/header/course-navigation-bar/CourseTabsNavigation.js.map +1 -0
- package/dist/shell/header/course-navigation-bar/course-tabs-navigation.scss +7 -0
- package/dist/shell/header/course-navigation-bar/data/service.d.ts +9 -0
- package/dist/shell/header/course-navigation-bar/data/service.js +27 -0
- package/dist/shell/header/course-navigation-bar/data/service.js.map +1 -0
- package/dist/shell/header/course-navigation-bar/messages.d.ts +8 -0
- package/dist/shell/header/course-navigation-bar/messages.js +10 -0
- package/dist/shell/header/course-navigation-bar/messages.js.map +1 -0
- package/dist/shell/header/course-navigation-bar/utils.d.ts +2 -0
- package/dist/shell/header/course-navigation-bar/utils.js +27 -0
- package/dist/shell/header/course-navigation-bar/utils.js.map +1 -0
- package/dist/shell/header/desktop/DesktopLayout.d.ts +1 -0
- package/dist/shell/header/desktop/DesktopLayout.js +10 -0
- package/dist/shell/header/desktop/DesktopLayout.js.map +1 -0
- package/dist/shell/header/desktop/PrimaryNavLinks.d.ts +1 -0
- package/dist/shell/header/desktop/PrimaryNavLinks.js +7 -0
- package/dist/shell/header/desktop/PrimaryNavLinks.js.map +1 -0
- package/dist/shell/header/desktop/SecondaryNavLinks.d.ts +1 -0
- package/dist/shell/header/desktop/SecondaryNavLinks.js +7 -0
- package/dist/shell/header/desktop/SecondaryNavLinks.js.map +1 -0
- package/{shell/header/index.ts → dist/shell/header/index.d.ts} +1 -0
- package/dist/shell/header/index.js +4 -0
- package/dist/shell/header/index.js.map +1 -0
- package/dist/shell/header/mobile/MobileLayout.d.ts +1 -0
- package/dist/shell/header/mobile/MobileLayout.js +17 -0
- package/dist/shell/header/mobile/MobileLayout.js.map +1 -0
- package/dist/shell/header/mobile/MobileNavLinks.d.ts +1 -0
- package/dist/shell/header/mobile/MobileNavLinks.js +7 -0
- package/dist/shell/header/mobile/MobileNavLinks.js.map +1 -0
- package/{shell/index.ts → dist/shell/index.d.ts} +2 -1
- package/dist/shell/index.js +9 -0
- package/dist/shell/index.js.map +1 -0
- package/dist/shell/jest.config.d.ts +15 -0
- package/{tools/dist/jest → dist/shell}/jest.config.js +12 -10
- package/dist/shell/jest.config.js.map +1 -0
- package/dist/shell/menus/LinkMenuItem.d.ts +9 -0
- package/dist/shell/menus/LinkMenuItem.js +38 -0
- package/dist/shell/menus/LinkMenuItem.js.map +1 -0
- package/dist/shell/menus/NavDropdownMenuSlot.d.ts +7 -0
- package/dist/shell/menus/NavDropdownMenuSlot.js +14 -0
- package/dist/shell/menus/NavDropdownMenuSlot.js.map +1 -0
- package/dist/shell/menus/ProfileLinkMenuItem.d.ts +8 -0
- package/dist/shell/menus/ProfileLinkMenuItem.js +16 -0
- package/dist/shell/menus/ProfileLinkMenuItem.js.map +1 -0
- package/dist/shell/menus/data/utils.d.ts +4 -0
- package/dist/shell/menus/data/utils.js +13 -0
- package/dist/shell/menus/data/utils.js.map +1 -0
- package/dist/shell/router/createRouter.d.ts +1 -0
- package/dist/shell/router/createRouter.js +26 -0
- package/dist/shell/router/createRouter.js.map +1 -0
- package/dist/shell/router/getAppRoutes.d.ts +2 -0
- package/dist/shell/router/getAppRoutes.js +27 -0
- package/dist/shell/router/getAppRoutes.js.map +1 -0
- package/dist/shell/setupTest.d.ts +1 -0
- package/dist/shell/setupTest.js +12 -0
- package/dist/shell/setupTest.js.map +1 -0
- package/dist/shell/site.config.dev.d.ts +4 -0
- package/dist/shell/site.config.dev.js +43 -0
- package/dist/shell/site.config.dev.js.map +1 -0
- package/dist/shell/site.d.ts +1 -0
- package/dist/shell/site.js +45 -0
- package/dist/shell/site.js.map +1 -0
- package/dist/tools/babel/babel.config.d.ts +12 -0
- package/dist/tools/babel.config.d.ts +2 -0
- package/dist/tools/babel.config.js +3 -0
- package/dist/tools/cli/commands/serve.d.ts +1 -0
- package/dist/tools/cli/commands/translations.d.ts +2 -0
- package/dist/tools/cli/commands/translations.js +20 -0
- package/dist/tools/cli/openedx.d.ts +2 -0
- package/{tools/dist → dist/tools}/cli/openedx.js +33 -8
- package/dist/tools/cli/utils/ensureConfigFilenameOption.d.ts +2 -0
- package/dist/tools/cli/utils/formatter.d.ts +1 -0
- package/dist/tools/cli/utils/formatter.js +3 -0
- package/dist/tools/cli/utils/getResolvedConfigPath.d.ts +2 -0
- package/dist/tools/cli/utils/prettyPrintTitle.d.ts +1 -0
- package/dist/tools/cli/utils/printUsage.d.ts +1 -0
- package/{tools/dist → dist/tools}/cli/utils/printUsage.js +8 -0
- package/dist/tools/cli/utils/translations/index.d.ts +2 -0
- package/dist/tools/cli/utils/translations/index.js +7 -0
- package/dist/tools/cli/utils/translations/messagesObject.d.ts +26 -0
- package/dist/tools/cli/utils/translations/messagesObject.js +66 -0
- package/dist/tools/cli/utils/translations/prepare.d.ts +5 -0
- package/dist/tools/cli/utils/translations/prepare.js +98 -0
- package/dist/tools/cli/utils/translations/pull.d.ts +6 -0
- package/dist/tools/cli/utils/translations/pull.js +102 -0
- package/dist/tools/config-helpers/createConfig.d.ts +2 -0
- package/dist/tools/config-helpers/createLintConfig.d.ts +2 -0
- package/dist/tools/config-helpers/getBaseConfig.d.ts +2 -0
- package/dist/tools/defaultConfigPaths.d.ts +8 -0
- package/dist/tools/eslint/base.eslint.config.d.ts +3 -0
- package/{config → dist/tools}/eslint/base.eslint.config.js +5 -4
- package/dist/tools/eslint.config.d.ts +3 -0
- package/dist/tools/index.d.ts +3 -0
- package/dist/tools/jest/jest.config.d.ts +14 -0
- package/dist/tools/jest.config.d.ts +8 -0
- package/dist/tools/types.d.ts +20 -0
- package/{tools/dist → dist/tools}/types.js +2 -0
- package/{tools/dist → dist/tools}/typescript/tsconfig.json +2 -1
- package/dist/tools/webpack/common-config/all/getCodeRules.d.ts +2 -0
- package/dist/tools/webpack/common-config/all/getFileLoaderRules.d.ts +11 -0
- package/dist/tools/webpack/common-config/all/getImageMinimizer.d.ts +5 -0
- package/dist/tools/webpack/common-config/all/getStylesheetRule.d.ts +8 -0
- package/{config → dist/tools}/webpack/common-config/all/getStylesheetRule.js +1 -1
- package/dist/tools/webpack/common-config/dev/getDevServer.d.ts +2 -0
- package/{tools/dist → dist/tools}/webpack/common-config/dev/getDevServer.js +3 -5
- package/dist/tools/webpack/common-config/index.d.ts +7 -0
- package/{config → dist/tools}/webpack/common-config/index.js +3 -1
- package/dist/tools/webpack/common-config/site/getHtmlWebpackPlugin.d.ts +2 -0
- package/dist/tools/webpack/common-config/site/getI18nMessagesFallbackPlugin/emptyI18n.d.ts +2 -0
- package/{config/webpack/types.js → dist/tools/webpack/common-config/site/getI18nMessagesFallbackPlugin/emptyI18n.js} +1 -0
- package/dist/tools/webpack/common-config/site/getI18nMessagesFallbackPlugin/index.d.ts +2 -0
- package/dist/tools/webpack/common-config/site/getI18nMessagesFallbackPlugin/index.js +26 -0
- package/dist/tools/webpack/plugins/html-webpack-new-relic-plugin/HtmlWebpackNewRelicPlugin.d.ts +16 -0
- package/dist/tools/webpack/plugins/html-webpack-new-relic-plugin/index.d.ts +2 -0
- package/dist/tools/webpack/plugins/html-webpack-new-relic-plugin/test/fixtures/entry.d.ts +1 -0
- package/dist/tools/webpack/utils/getPublicPath.d.ts +1 -0
- package/{tools/dist → dist/tools}/webpack/utils/getPublicPath.js +1 -1
- package/dist/tools/webpack/utils/getResolvedSiteConfigPath.d.ts +1 -0
- package/dist/tools/webpack/utils/getResolvedSiteI18nPath.d.ts +1 -0
- package/dist/tools/webpack/utils/getResolvedSiteI18nPath.js +25 -0
- package/dist/tools/webpack/webpack.config.build.d.ts +3 -0
- package/{config → dist/tools}/webpack/webpack.config.build.js +12 -15
- package/dist/tools/webpack/webpack.config.dev.d.ts +3 -0
- package/{config → dist/tools}/webpack/webpack.config.dev.js +16 -15
- package/dist/tools/webpack/webpack.config.dev.shell.d.ts +3 -0
- package/{config → dist/tools}/webpack/webpack.config.dev.shell.js +7 -14
- package/dist/types.d.ts +92 -0
- package/dist/types.js +7 -0
- package/dist/types.js.map +1 -0
- package/package.json +37 -19
- package/config/tsconfig.json +0 -32
- package/config/types.js +0 -23
- package/config/webpack/common-config/all/getIgnoreWarnings.js +0 -14
- package/config/webpack/common-config/dev/getDevServer.js +0 -38
- package/config/webpack/plugins/html-webpack-new-relic-plugin/test/HtmlWebpackNewRelicPlugin.test.js +0 -66
- package/config/webpack/plugins/paragon-webpack-plugin/ParagonWebpackPlugin.js +0 -108
- package/config/webpack/plugins/paragon-webpack-plugin/index.js +0 -7
- package/config/webpack/plugins/paragon-webpack-plugin/utils/assetUtils.js +0 -64
- package/config/webpack/plugins/paragon-webpack-plugin/utils/htmlUtils.js +0 -53
- package/config/webpack/plugins/paragon-webpack-plugin/utils/index.js +0 -9
- package/config/webpack/plugins/paragon-webpack-plugin/utils/paragonStylesheetUtils.js +0 -114
- package/config/webpack/plugins/paragon-webpack-plugin/utils/scriptUtils.js +0 -146
- package/config/webpack/plugins/paragon-webpack-plugin/utils/stylesheetUtils.js +0 -126
- package/config/webpack/plugins/paragon-webpack-plugin/utils/tagUtils.js +0 -57
- package/config/webpack/utils/getLocalAliases.js +0 -65
- package/config/webpack/utils/getPublicPath.js +0 -6
- package/config/webpack/utils/paragonUtils.js +0 -138
- package/runtime/__mocks__/file.js +0 -1
- package/runtime/__mocks__/svg.js +0 -1
- package/runtime/__mocks__/universal-cookie.js +0 -6
- package/runtime/analytics/MockAnalyticsService.js +0 -71
- package/runtime/analytics/SegmentAnalyticsService.js +0 -243
- package/runtime/analytics/index.ts +0 -12
- package/runtime/analytics/interface.test.js +0 -242
- package/runtime/auth/AxiosCsrfTokenService.js +0 -60
- package/runtime/auth/AxiosJwtAuthService.js +0 -363
- package/runtime/auth/AxiosJwtAuthService.test.jsx +0 -1076
- package/runtime/auth/AxiosJwtTokenService.js +0 -134
- package/runtime/auth/LocalForageCache.js +0 -76
- package/runtime/auth/MockAuthService.js +0 -278
- package/runtime/auth/index.ts +0 -19
- package/runtime/auth/interceptors/createCsrfTokenProviderInterceptor.js +0 -36
- package/runtime/auth/interceptors/createJwtTokenProviderInterceptor.js +0 -37
- package/runtime/auth/interceptors/createProcessAxiosRequestErrorInterceptor.js +0 -20
- package/runtime/auth/interceptors/createRetryInterceptor.js +0 -74
- package/runtime/auth/interceptors/createRetryInterceptor.test.js +0 -23
- package/runtime/auth/utils.js +0 -105
- package/runtime/config/getExternalLinkUrl.test.js +0 -76
- package/runtime/i18n/injectIntlWithShim.jsx +0 -48
- package/runtime/i18n/lib.test.js +0 -230
- package/runtime/i18n/lib.ts +0 -272
- package/runtime/index.ts +0 -134
- package/runtime/initialize.async.function.config.test.js +0 -43
- package/runtime/initialize.const.config.test.js +0 -41
- package/runtime/initialize.function.config.test.js +0 -41
- package/runtime/initialize.js +0 -352
- package/runtime/initialize.test.js +0 -356
- package/runtime/jest.config.js +0 -32
- package/runtime/logging/MockLoggingService.js +0 -31
- package/runtime/logging/NewRelicLoggingService.js +0 -184
- package/runtime/logging/NewRelicLoggingService.test.js +0 -214
- package/runtime/logging/types.ts +0 -4
- package/runtime/react/AuthenticatedPageRoute.test.jsx +0 -135
- package/runtime/react/CombinedAppProvider.tsx +0 -46
- package/runtime/react/CurrentAppProvider.tsx +0 -46
- package/runtime/react/Divider.tsx +0 -5
- package/runtime/react/ErrorBoundary.jsx +0 -47
- package/runtime/react/ErrorBoundary.test.jsx +0 -83
- package/runtime/react/ErrorPage.jsx +0 -72
- package/runtime/react/SiteProvider.test.jsx +0 -66
- package/runtime/react/SiteProvider.tsx +0 -78
- package/runtime/react/hooks.test.jsx +0 -104
- package/runtime/react/hooks.ts +0 -106
- package/runtime/routing/index.ts +0 -1
- package/runtime/routing/utils.test.ts +0 -7
- package/runtime/routing/utils.ts +0 -34
- package/runtime/scripts/GoogleAnalyticsLoader.test.ts +0 -77
- package/runtime/scripts/GoogleAnalyticsLoader.ts +0 -59
- package/runtime/scripts/index.ts +0 -1
- package/runtime/setupTest.js +0 -49
- package/runtime/site.config.test.tsx +0 -33
- package/runtime/slots/Slot.test.tsx +0 -40
- package/runtime/slots/Slot.tsx +0 -32
- package/runtime/slots/SlotContext.tsx +0 -8
- package/runtime/slots/hooks.ts +0 -35
- package/runtime/slots/layout/DefaultSlotLayout.test.tsx +0 -31
- package/runtime/slots/layout/DefaultSlotLayout.tsx +0 -9
- package/runtime/slots/layout/hooks.test.tsx +0 -178
- package/runtime/slots/layout/hooks.ts +0 -65
- package/runtime/slots/layout/utils.test.ts +0 -67
- package/runtime/slots/layout/utils.ts +0 -14
- package/runtime/slots/utils.test.ts +0 -64
- package/runtime/slots/utils.ts +0 -78
- package/runtime/slots/widget/WidgetContext.tsx +0 -9
- package/runtime/slots/widget/WidgetProvider.tsx +0 -30
- package/runtime/slots/widget/hooks.ts +0 -105
- package/runtime/slots/widget/iframe/IFrameContentWrapper.messages.tsx +0 -16
- package/runtime/slots/widget/iframe/IFrameContentWrapper.tsx +0 -84
- package/runtime/slots/widget/iframe/IFrameWidget.tsx +0 -59
- package/runtime/slots/widget/iframe/hooks.ts +0 -179
- package/runtime/slots/widget/utils.tsx +0 -201
- package/runtime/testing/initializeMockApp.test.ts +0 -66
- package/runtime/testing/mockMessages.ts +0 -23
- package/runtime/utils.test.js +0 -116
- package/shell/DefaultLayout.tsx +0 -18
- package/shell/DefaultMain.tsx +0 -7
- package/shell/Logo.test.tsx +0 -32
- package/shell/Logo.tsx +0 -28
- package/shell/Shell.messages.ts +0 -61
- package/shell/Shell.tsx +0 -18
- package/shell/__mocks__/file.js +0 -1
- package/shell/__mocks__/svg.js +0 -1
- package/shell/__mocks__/universal-cookie.js +0 -6
- package/shell/app.ts +0 -38
- package/shell/dev/devFooter/app.tsx +0 -43
- package/shell/dev/devHeader/BarContext.tsx +0 -13
- package/shell/dev/devHeader/BarLink.tsx +0 -16
- package/shell/dev/devHeader/BarProvider.tsx +0 -25
- package/shell/dev/devHeader/CoursesLink.tsx +0 -16
- package/shell/dev/devHeader/FooContext.tsx +0 -13
- package/shell/dev/devHeader/FooLink.tsx +0 -16
- package/shell/dev/devHeader/FooProvider.tsx +0 -25
- package/shell/dev/devHeader/app.tsx +0 -53
- package/shell/dev/devHeader/providers.tsx +0 -11
- package/shell/dev/devHome/HomePage.tsx +0 -28
- package/shell/dev/devHome/app.ts +0 -18
- package/shell/dev/devHome/i18n/index.ts +0 -27
- package/shell/dev/devHome/messages.ts +0 -11
- package/shell/dev/devUser/app.tsx +0 -24
- package/shell/dev/slotShowcase/HorizontalSlotLayout.tsx +0 -11
- package/shell/dev/slotShowcase/LayoutWithOptions.tsx +0 -17
- package/shell/dev/slotShowcase/SlotShowcasePage.tsx +0 -66
- package/shell/dev/slotShowcase/WidgetWithOptions.tsx +0 -11
- package/shell/dev/slotShowcase/app.tsx +0 -373
- package/shell/footer/CenterLinks.tsx +0 -11
- package/shell/footer/CopyrightNotice.tsx +0 -36
- package/shell/footer/Footer.tsx +0 -34
- package/shell/footer/LabeledLinkColumn.tsx +0 -19
- package/shell/footer/LanguageMenu.tsx +0 -35
- package/shell/footer/LanguageMenuItem.tsx +0 -23
- package/shell/footer/LeftLinks.tsx +0 -11
- package/shell/footer/LegalNotices.tsx +0 -17
- package/shell/footer/PoweredBy.tsx +0 -17
- package/shell/footer/RevealLinks.tsx +0 -43
- package/shell/footer/RightLinks.tsx +0 -11
- package/shell/footer/app.tsx +0 -73
- package/shell/footer/data/api.ts +0 -48
- package/shell/header/AuthenticatedMenu.tsx +0 -32
- package/shell/header/Header.tsx +0 -17
- package/shell/header/anonymous-menu/AnonymousMenu.tsx +0 -14
- package/shell/header/anonymous-menu/LoginButton.tsx +0 -14
- package/shell/header/anonymous-menu/RegisterButton.tsx +0 -15
- package/shell/header/app.tsx +0 -142
- package/shell/header/desktop/DesktopLayout.tsx +0 -22
- package/shell/header/desktop/PrimaryNavLinks.tsx +0 -10
- package/shell/header/desktop/SecondaryNavLinks.tsx +0 -10
- package/shell/header/mobile/MobileLayout.tsx +0 -47
- package/shell/header/mobile/MobileNavLinks.tsx +0 -10
- package/shell/i18n/index.ts +0 -25
- package/shell/jest.config.js +0 -30
- package/shell/menus/LinkMenuItem.tsx +0 -64
- package/shell/menus/NavDropdownMenuSlot.tsx +0 -29
- package/shell/menus/ProfileLinkMenuItem.tsx +0 -33
- package/shell/menus/data/utils.ts +0 -19
- package/shell/public/index.html +0 -10
- package/shell/router/createRouter.test.tsx +0 -50
- package/shell/router/createRouter.ts +0 -17
- package/shell/router/getAppRoutes.test.tsx +0 -59
- package/shell/router/getAppRoutes.ts +0 -21
- package/shell/setupTest.js +0 -48
- package/shell/site.config.dev.tsx +0 -49
- package/shell/site.config.test.tsx +0 -16
- package/shell/site.tsx +0 -41
- package/tools/dist/babel/babel.config.js +0 -28
- package/tools/dist/cli/intl-imports.js +0 -233
- package/tools/dist/cli/intl-imports.test.js +0 -146
- package/tools/dist/cli/transifex-utils.js +0 -68
- package/tools/dist/cli/utils/formatter.js +0 -10
- package/tools/dist/config-helpers/createConfig.js +0 -13
- package/tools/dist/config-helpers/createLintConfig.js +0 -16
- package/tools/dist/config-helpers/getBaseConfig.js +0 -12
- package/tools/dist/defaultConfigPaths.js +0 -35
- package/tools/dist/eslint/base.eslint.config.js +0 -113
- package/tools/dist/index.js +0 -12
- package/tools/dist/webpack/common-config/all/getCodeRules.js +0 -52
- package/tools/dist/webpack/common-config/all/getFileLoaderRules.js +0 -26
- package/tools/dist/webpack/common-config/all/getIgnoreWarnings.js +0 -14
- package/tools/dist/webpack/common-config/all/getImageMinimizer.js +0 -25
- package/tools/dist/webpack/common-config/all/getStylesheetRule.js +0 -112
- package/tools/dist/webpack/common-config/index.js +0 -18
- package/tools/dist/webpack/common-config/site/getHtmlWebpackPlugin.js +0 -16
- package/tools/dist/webpack/plugins/html-webpack-new-relic-plugin/HtmlWebpackNewRelicPlugin.js +0 -91
- package/tools/dist/webpack/plugins/html-webpack-new-relic-plugin/index.js +0 -7
- package/tools/dist/webpack/plugins/html-webpack-new-relic-plugin/test/HtmlWebpackNewRelicPlugin.test.js +0 -66
- package/tools/dist/webpack/plugins/html-webpack-new-relic-plugin/test/fixtures/entry.js +0 -3
- package/tools/dist/webpack/plugins/paragon-webpack-plugin/ParagonWebpackPlugin.js +0 -108
- package/tools/dist/webpack/plugins/paragon-webpack-plugin/index.js +0 -7
- package/tools/dist/webpack/plugins/paragon-webpack-plugin/utils/assetUtils.js +0 -64
- package/tools/dist/webpack/plugins/paragon-webpack-plugin/utils/htmlUtils.js +0 -53
- package/tools/dist/webpack/plugins/paragon-webpack-plugin/utils/index.js +0 -9
- package/tools/dist/webpack/plugins/paragon-webpack-plugin/utils/paragonStylesheetUtils.js +0 -114
- package/tools/dist/webpack/plugins/paragon-webpack-plugin/utils/scriptUtils.js +0 -146
- package/tools/dist/webpack/plugins/paragon-webpack-plugin/utils/stylesheetUtils.js +0 -126
- package/tools/dist/webpack/plugins/paragon-webpack-plugin/utils/tagUtils.js +0 -57
- package/tools/dist/webpack/types.js +0 -2
- package/tools/dist/webpack/utils/getLocalAliases.js +0 -65
- package/tools/dist/webpack/utils/getResolvedSiteConfigPath.js +0 -32
- package/tools/dist/webpack/utils/paragonUtils.js +0 -138
- package/tools/dist/webpack/webpack.config.build.js +0 -80
- package/tools/dist/webpack/webpack.config.dev.js +0 -76
- package/tools/dist/webpack/webpack.config.dev.shell.js +0 -110
- package/types.ts +0 -99
- /package/{runtime/slots/index.ts → dist/runtime/slots/index.d.ts} +0 -0
- /package/{runtime/slots/layout/index.ts → dist/runtime/slots/layout/index.d.ts} +0 -0
- /package/{runtime/slots/widget/index.ts → dist/runtime/slots/widget/index.d.ts} +0 -0
- /package/{shell/dev/devFooter/index.ts → dist/shell/dev/devFooter/index.d.ts} +0 -0
- /package/{shell/dev/devHeader/index.ts → dist/shell/dev/devHeader/index.d.ts} +0 -0
- /package/{shell/dev/devHome/index.ts → dist/shell/dev/devHome/index.d.ts} +0 -0
- /package/{shell/dev/devUser/index.ts → dist/shell/dev/devUser/index.d.ts} +0 -0
- /package/{shell/dev/index.ts → dist/shell/dev/index.d.ts} +0 -0
- /package/{shell/dev/slotShowcase/index.ts → dist/shell/dev/slotShowcase/index.d.ts} +0 -0
- /package/{shell/footer/index.ts → dist/shell/footer/index.d.ts} +0 -0
- /package/{config → dist/tools}/babel/babel.config.js +0 -0
- /package/{tools/dist → dist/tools}/cli/commands/serve.js +0 -0
- /package/{tools/dist → dist/tools}/cli/utils/ensureConfigFilenameOption.js +0 -0
- /package/{tools/dist → dist/tools}/cli/utils/getResolvedConfigPath.js +0 -0
- /package/{tools/dist → dist/tools}/cli/utils/prettyPrintTitle.js +0 -0
- /package/{config → dist/tools}/config-helpers/createConfig.js +0 -0
- /package/{config → dist/tools}/config-helpers/createLintConfig.js +0 -0
- /package/{config → dist/tools}/config-helpers/getBaseConfig.js +0 -0
- /package/{config → dist/tools}/defaultConfigPaths.js +0 -0
- /package/{tools/dist → dist/tools}/eslint.config.js +0 -0
- /package/{config → dist/tools}/index.js +0 -0
- /package/{config → dist/tools}/jest/jest.config.js +0 -0
- /package/{tools/dist → dist/tools}/jest.config.js +0 -0
- /package/{config → dist/tools}/webpack/common-config/all/getCodeRules.js +0 -0
- /package/{config → dist/tools}/webpack/common-config/all/getFileLoaderRules.js +0 -0
- /package/{config → dist/tools}/webpack/common-config/all/getImageMinimizer.js +0 -0
- /package/{config → dist/tools}/webpack/common-config/site/getHtmlWebpackPlugin.js +0 -0
- /package/{config → dist/tools}/webpack/plugins/html-webpack-new-relic-plugin/HtmlWebpackNewRelicPlugin.js +0 -0
- /package/{config → dist/tools}/webpack/plugins/html-webpack-new-relic-plugin/index.js +0 -0
- /package/{config → dist/tools}/webpack/plugins/html-webpack-new-relic-plugin/test/fixtures/entry.js +0 -0
- /package/{config → dist/tools}/webpack/utils/getResolvedSiteConfigPath.js +0 -0
package/dist/types.js
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export var EnvironmentTypes;
|
|
2
|
+
(function (EnvironmentTypes) {
|
|
3
|
+
EnvironmentTypes["PRODUCTION"] = "production";
|
|
4
|
+
EnvironmentTypes["DEVELOPMENT"] = "development";
|
|
5
|
+
EnvironmentTypes["TEST"] = "test";
|
|
6
|
+
})(EnvironmentTypes || (EnvironmentTypes = {}));
|
|
7
|
+
//# sourceMappingURL=types.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.js","sourceRoot":"","sources":["../types.ts"],"names":[],"mappings":"AA0HA,MAAM,CAAN,IAAY,gBAIX;AAJD,WAAY,gBAAgB;IAC1B,6CAAyB,CAAA;IACzB,+CAA2B,CAAA;IAC3B,iCAAa,CAAA;AACf,CAAC,EAJW,gBAAgB,KAAhB,gBAAgB,QAI3B","sourcesContent":["import { FC, ReactElement, ReactNode } from 'react';\nimport { MessageDescriptor } from 'react-intl';\nimport { RouteObject } from 'react-router';\nimport { SlotOperation } from './runtime/slots/types';\n\n// Apps\n\nexport interface ExternalRoute {\n role: string,\n url: string,\n}\n\nexport type RoleRouteObject = RouteObject & {\n handle?: {\n /**\n * Route roles identify the purpose(s) a route fulfills in the site.\n */\n roles?: string[],\n },\n};\n\nexport type AppConfig = Record<string, unknown>;\n\nexport type AppProvider = FC<{ children?: ReactNode }>;\n\nexport interface App {\n appId: string,\n routes?: RoleRouteObject[],\n providers?: AppProvider[],\n slots?: SlotOperation[],\n externalScripts?: ExternalScriptLoaderClass[],\n config?: AppConfig,\n provides?: Record<string, unknown>,\n}\n\n// External Scripts\n\nexport interface ExternalScriptLoader {\n loadScript(): void,\n}\n\nexport type ExternalScriptLoaderClass = new (data: { config: AppConfig }) => ExternalScriptLoader;\n\n// Site Config\n\nexport interface RequiredSiteConfig {\n siteId: string,\n siteName: string,\n baseUrl: string,\n\n // Backends\n lmsBaseUrl: string,\n\n // Frontends\n loginUrl: string,\n logoutUrl: string,\n}\n\nexport type LocalizedMessages = Record<string, Record<string, string>>;\nexport type SiteMessages = LocalizedMessages[];\n\nexport interface OptionalSiteConfig {\n // Site environment\n environment: EnvironmentTypes,\n\n // Apps, routes, and URLs\n apps: App[],\n basename: string,\n externalRoutes: ExternalRoute[],\n externalLinkUrlOverrides: string[],\n runtimeConfigJsonUrl: string | null,\n commonAppConfig: AppConfig,\n headerLogoImageUrl: string,\n\n // Theme\n theme: Theme,\n\n // Cookies\n accessTokenCookieName: string,\n languagePreferenceCookieName: string,\n userInfoCookieName: string,\n\n // Paths\n csrfTokenApiPath: string,\n refreshAccessTokenApiPath: string,\n\n // Logging\n ignoredErrorRegex: RegExp | null,\n\n // Analytics\n segmentKey: string | null,\n}\n\nexport type SiteConfig = RequiredSiteConfig & Partial<OptionalSiteConfig>;\n\nexport interface ThemeVariant {\n url: string,\n}\n\nexport interface ThemeDefaults {\n light?: string,\n dark?: string,\n}\n\nexport type ThemeVariants = Record<string, ThemeVariant>;\n\nexport interface Theme {\n core?: ThemeVariant,\n defaults?: ThemeDefaults,\n variants?: ThemeVariants,\n}\n\nexport interface User {\n administrator: boolean,\n email: string,\n name: string,\n roles: string[],\n userId: number,\n username: string,\n avatar: string,\n}\n\nexport enum EnvironmentTypes {\n PRODUCTION = 'production',\n DEVELOPMENT = 'development',\n TEST = 'test',\n}\n\n// Menu Items\n\nexport type MenuItemName = string | MessageDescriptor | ReactElement;\n"]}
|
package/package.json
CHANGED
|
@@ -1,32 +1,45 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openedx/frontend-base",
|
|
3
|
-
"version": "1.0.0-alpha.
|
|
3
|
+
"version": "1.0.0-alpha.31",
|
|
4
4
|
"description": "Build tools, setup and config for frontend apps",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
8
|
-
"
|
|
8
|
+
"exports": {
|
|
9
|
+
".": "./dist/index.js",
|
|
10
|
+
"./tools": "./dist/tools/index.js",
|
|
11
|
+
"./tools/tsconfig.json": "./dist/tools/typescript/tsconfig.json",
|
|
12
|
+
"./shell/app.scss": "./dist/shell/app.scss",
|
|
13
|
+
"./shell/site": "./dist/shell/site.js"
|
|
14
|
+
},
|
|
9
15
|
"files": [
|
|
10
|
-
"/
|
|
11
|
-
"/runtime",
|
|
12
|
-
"/tools/dist",
|
|
13
|
-
"/shell",
|
|
14
|
-
"/types.ts"
|
|
16
|
+
"/dist"
|
|
15
17
|
],
|
|
16
18
|
"bin": {
|
|
17
|
-
"
|
|
18
|
-
|
|
19
|
-
|
|
19
|
+
"openedx": "./dist/tools/cli/openedx.js"
|
|
20
|
+
},
|
|
21
|
+
"atlasTranslations": {
|
|
22
|
+
"path": "translations/frontend-base/src/i18n/messages",
|
|
23
|
+
"dependencies": [
|
|
24
|
+
"@openedx/paragon"
|
|
25
|
+
]
|
|
20
26
|
},
|
|
21
27
|
"scripts": {
|
|
22
28
|
"build": "make build",
|
|
23
|
-
"clean": "
|
|
24
|
-
"dev": "npm run build && node ./tools/
|
|
29
|
+
"clean": "make clean",
|
|
30
|
+
"dev": "npm run build && node ./dist/tools/cli/openedx.js dev:shell",
|
|
25
31
|
"docs": "jsdoc -c jsdoc.json",
|
|
26
|
-
"docs:watch": "nodemon -w runtime -w docs/template -w README.md -e js,jsx,ts,tsx --exec npm run docs",
|
|
27
32
|
"lint": "eslint .; npm run lint:tools; npm --prefix ./test-site run lint",
|
|
33
|
+
"lint:fix": "eslint . --fix; npm run lint:fix:tools",
|
|
28
34
|
"lint:tools": "cd ./tools && eslint . && cd ..",
|
|
29
|
-
"
|
|
35
|
+
"lint:fix:tools": "cd ./tools && eslint . --fix && cd ..",
|
|
36
|
+
"pack": "mkdir -p pack && npm pack --silent --pack-destination pack >/dev/null && mv \"$(ls -t pack/*.tgz | head -n 1)\" pack/openedx-frontend-base.tgz",
|
|
37
|
+
"prepack": "npm run build",
|
|
38
|
+
"test": "jest",
|
|
39
|
+
"watch:build": "nodemon --exec 'npm run build'",
|
|
40
|
+
"watch:docs": "nodemon --watch docs/template --watch README.md --exec npm run docs",
|
|
41
|
+
"watch:pack": "nodemon --exec 'npm run pack'",
|
|
42
|
+
"i18n_extract": "npm run build && node ./dist/tools/cli/openedx.js formatjs extract --include=shell"
|
|
30
43
|
},
|
|
31
44
|
"repository": {
|
|
32
45
|
"type": "git",
|
|
@@ -55,8 +68,10 @@
|
|
|
55
68
|
"@formatjs/ts-transformer": "^3.13.14",
|
|
56
69
|
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.15",
|
|
57
70
|
"@stylistic/eslint-plugin": "^2.9.0",
|
|
71
|
+
"@tanstack/react-query-devtools": "^5.99.0",
|
|
58
72
|
"@types/eslint__js": "^8.42.3",
|
|
59
73
|
"@types/gradient-string": "^1.1.6",
|
|
74
|
+
"@types/lodash.keyby": "^4.6.9",
|
|
60
75
|
"autoprefixer": "^10.4.20",
|
|
61
76
|
"axios": "^1.7.9",
|
|
62
77
|
"axios-cache-interceptor": "^1.6.0",
|
|
@@ -86,10 +101,12 @@
|
|
|
86
101
|
"image-minimizer-webpack-plugin": "3.8.3",
|
|
87
102
|
"jest": "^29.7.0",
|
|
88
103
|
"jest-environment-jsdom": "^29.7.0",
|
|
104
|
+
"jest-localstorage-mock": "^2.4.26",
|
|
89
105
|
"jwt-decode": "^3.1.2",
|
|
90
106
|
"localforage": "^1.10.0",
|
|
91
107
|
"localforage-memoryStorageDriver": "^0.9.2",
|
|
92
108
|
"lodash.camelcase": "^4.3.0",
|
|
109
|
+
"lodash.keyby": "^4.6.0",
|
|
93
110
|
"lodash.memoize": "^4.1.2",
|
|
94
111
|
"lodash.merge": "^4.6.2",
|
|
95
112
|
"lodash.snakecase": "^4.1.1",
|
|
@@ -101,7 +118,7 @@
|
|
|
101
118
|
"postcss-rtlcss": "^5.5.0",
|
|
102
119
|
"prop-types": "^15.8.1",
|
|
103
120
|
"react-dev-utils": "12.0.1",
|
|
104
|
-
"react-focus-on": "^3.
|
|
121
|
+
"react-focus-on": "^3.10.2",
|
|
105
122
|
"react-intl": "^6.6.6",
|
|
106
123
|
"react-refresh": "0.16.0",
|
|
107
124
|
"react-refresh-typescript": "^2.0.9",
|
|
@@ -113,7 +130,8 @@
|
|
|
113
130
|
"sharp": "^0.33.5",
|
|
114
131
|
"source-map-loader": "4.0.2",
|
|
115
132
|
"style-loader": "^4.0.0",
|
|
116
|
-
"ts-loader": "^9.5.
|
|
133
|
+
"ts-loader": "^9.5.7",
|
|
134
|
+
"tsconfig-paths-webpack-plugin": "^4.2.0",
|
|
117
135
|
"typescript": "^5.6.3",
|
|
118
136
|
"typescript-eslint": "^8.11.0",
|
|
119
137
|
"universal-cookie": "^8.0.1",
|
|
@@ -132,12 +150,12 @@
|
|
|
132
150
|
"@testing-library/jest-dom": "^6.6.3",
|
|
133
151
|
"@testing-library/react": "^16.3.0",
|
|
134
152
|
"@testing-library/user-event": "^14.6.1",
|
|
135
|
-
"@tsconfig/
|
|
153
|
+
"@tsconfig/node24": "^24.0.4",
|
|
136
154
|
"@types/compression": "^1.7.5",
|
|
137
155
|
"@types/jest": "^29.5.14",
|
|
138
156
|
"@types/lodash.camelcase": "^4.3.9",
|
|
139
157
|
"@types/lodash.merge": "^4.6.9",
|
|
140
|
-
"@types/node": "^
|
|
158
|
+
"@types/node": "^24.12.0",
|
|
141
159
|
"@types/react": "^18.3.20",
|
|
142
160
|
"@types/react-dom": "^18.3.6",
|
|
143
161
|
"axios-mock-adapter": "^1.22.0",
|
|
@@ -146,7 +164,7 @@
|
|
|
146
164
|
"nodemon": "^3.1.4"
|
|
147
165
|
},
|
|
148
166
|
"peerDependencies": {
|
|
149
|
-
"@openedx/paragon": "^
|
|
167
|
+
"@openedx/paragon": "^23.20.0",
|
|
150
168
|
"@tanstack/react-query": "^5.81.2",
|
|
151
169
|
"react": "^18.3.1",
|
|
152
170
|
"react-dom": "^18.3.1",
|
package/config/tsconfig.json
DELETED
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"compilerOptions": {
|
|
3
|
-
"allowJs": true,
|
|
4
|
-
"allowSyntheticDefaultImports": true,
|
|
5
|
-
"declaration": true,
|
|
6
|
-
"esModuleInterop": true,
|
|
7
|
-
"forceConsistentCasingInFileNames": true,
|
|
8
|
-
"jsx": "react-jsx",
|
|
9
|
-
"lib": [
|
|
10
|
-
"DOM",
|
|
11
|
-
"DOM.Iterable",
|
|
12
|
-
"ESNext",
|
|
13
|
-
"esnext.intl",
|
|
14
|
-
"es2017.intl",
|
|
15
|
-
"es2018.intl"
|
|
16
|
-
],
|
|
17
|
-
"isolatedModules": true,
|
|
18
|
-
"module": "ESNext",
|
|
19
|
-
"moduleResolution": "node",
|
|
20
|
-
"noEmit": true,
|
|
21
|
-
"noFallthroughCasesInSwitch": true,
|
|
22
|
-
"noImplicitAny": false,
|
|
23
|
-
"noImplicitThis": true,
|
|
24
|
-
"noUnusedParameters": true,
|
|
25
|
-
"resolveJsonModule": true,
|
|
26
|
-
"skipLibCheck": true,
|
|
27
|
-
"sourceMap": true,
|
|
28
|
-
"strict": true,
|
|
29
|
-
"strictFunctionTypes": false,
|
|
30
|
-
"target": "ES6"
|
|
31
|
-
}
|
|
32
|
-
}
|
package/config/types.js
DELETED
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CommandTypes = exports.ConfigTypes = void 0;
|
|
4
|
-
var ConfigTypes;
|
|
5
|
-
(function (ConfigTypes) {
|
|
6
|
-
ConfigTypes["BABEL"] = "babel";
|
|
7
|
-
ConfigTypes["WEBPACK_BUILD"] = "webpack-build";
|
|
8
|
-
ConfigTypes["WEBPACK_DEV"] = "webpack-dev";
|
|
9
|
-
ConfigTypes["WEBPACK_DEV_SHELL"] = "webpack-dev-shell";
|
|
10
|
-
ConfigTypes["LINT"] = "lint";
|
|
11
|
-
ConfigTypes["TEST"] = "test";
|
|
12
|
-
})(ConfigTypes || (exports.ConfigTypes = ConfigTypes = {}));
|
|
13
|
-
var CommandTypes;
|
|
14
|
-
(function (CommandTypes) {
|
|
15
|
-
CommandTypes["LINT"] = "lint";
|
|
16
|
-
CommandTypes["TEST"] = "test";
|
|
17
|
-
CommandTypes["BUILD"] = "build";
|
|
18
|
-
CommandTypes["DEV_SHELL"] = "dev:shell";
|
|
19
|
-
CommandTypes["DEV"] = "dev";
|
|
20
|
-
CommandTypes["FORMAT_JS"] = "formatjs";
|
|
21
|
-
CommandTypes["SERVE"] = "serve";
|
|
22
|
-
CommandTypes["HELP"] = "help";
|
|
23
|
-
})(CommandTypes || (exports.CommandTypes = CommandTypes = {}));
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.default = getIgnoreWarnings;
|
|
4
|
-
function getIgnoreWarnings() {
|
|
5
|
-
return [
|
|
6
|
-
// Ignore warnings raised by source-map-loader.
|
|
7
|
-
// some third party packages may ship miss-configured sourcemaps, that interrupts the build
|
|
8
|
-
// See: https://github.com/facebook/create-react-app/discussions/11278#discussioncomment-1780169
|
|
9
|
-
(warning) => !!(
|
|
10
|
-
// @ts-expect-error 'resource' is something TypeScript can't find for whatever reason.
|
|
11
|
-
warning.module?.resource.includes('node_modules')
|
|
12
|
-
&& warning.details?.includes('source-map-loader')),
|
|
13
|
-
];
|
|
14
|
-
}
|
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
-
};
|
|
5
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.default = getDevServer;
|
|
7
|
-
const path_1 = __importDefault(require("path"));
|
|
8
|
-
const getPublicPath_1 = __importDefault(require("../../utils/getPublicPath"));
|
|
9
|
-
function getDevServer() {
|
|
10
|
-
return {
|
|
11
|
-
allowedHosts: 'all',
|
|
12
|
-
headers: {
|
|
13
|
-
'Access-Control-Allow-Origin': '*',
|
|
14
|
-
},
|
|
15
|
-
// For obvious reasons, 'auto' won't work for publicPath here, so we
|
|
16
|
-
// force '/' unless PUBLIC_PATH is set.
|
|
17
|
-
historyApiFallback: {
|
|
18
|
-
index: path_1.default.join((0, getPublicPath_1.default)('/'), 'index.html'),
|
|
19
|
-
disableDotRule: true,
|
|
20
|
-
},
|
|
21
|
-
host: 'apps.local.openedx.io',
|
|
22
|
-
hot: true,
|
|
23
|
-
port: process.env.PORT ?? 8080,
|
|
24
|
-
proxy: [
|
|
25
|
-
{
|
|
26
|
-
context: ['/api/mfe_config/v1'],
|
|
27
|
-
target: 'http://local.openedx.io:8000',
|
|
28
|
-
changeOrigin: true,
|
|
29
|
-
}
|
|
30
|
-
],
|
|
31
|
-
// Enable hot reloading server. It will provide WDS_SOCKET_PATH endpoint
|
|
32
|
-
// for the WebpackDevServer client so it can learn when the files were
|
|
33
|
-
// updated. The WebpackDevServer client is included as an entry point
|
|
34
|
-
// in the webpack development configuration. Note that only changes
|
|
35
|
-
// to CSS are currently hot reloaded. JS changes will refresh the browser.
|
|
36
|
-
webSocketServer: 'ws',
|
|
37
|
-
};
|
|
38
|
-
}
|
package/config/webpack/plugins/html-webpack-new-relic-plugin/test/HtmlWebpackNewRelicPlugin.test.js
DELETED
|
@@ -1,66 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
-
};
|
|
5
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
const fs_1 = __importDefault(require("fs"));
|
|
7
|
-
const html_webpack_plugin_1 = __importDefault(require("html-webpack-plugin"));
|
|
8
|
-
const path_1 = __importDefault(require("path"));
|
|
9
|
-
const webpack_1 = __importDefault(require("webpack"));
|
|
10
|
-
const HtmlWebpackNewRelicPlugin_1 = __importDefault(require("../HtmlWebpackNewRelicPlugin"));
|
|
11
|
-
const OUTPUT_DIR = path_1.default.join(__dirname, './dist');
|
|
12
|
-
describe('HtmlWebpackNewRelicPlugin', () => {
|
|
13
|
-
const testPluginOptions = {
|
|
14
|
-
accountID: '121212',
|
|
15
|
-
agentID: '343434',
|
|
16
|
-
trustKey: '565656',
|
|
17
|
-
licenseKey: '123456',
|
|
18
|
-
applicationID: '654321',
|
|
19
|
-
};
|
|
20
|
-
afterEach(() => {
|
|
21
|
-
if (fs_1.default.existsSync(OUTPUT_DIR)) {
|
|
22
|
-
fs_1.default.rmSync(OUTPUT_DIR, { recursive: true, force: true });
|
|
23
|
-
}
|
|
24
|
-
});
|
|
25
|
-
it('should append new relic script to body', done => {
|
|
26
|
-
(0, webpack_1.default)({
|
|
27
|
-
entry: path_1.default.resolve(__dirname, 'fixtures', 'entry.js'),
|
|
28
|
-
output: {
|
|
29
|
-
path: path_1.default.resolve(__dirname, './dist'),
|
|
30
|
-
},
|
|
31
|
-
plugins: [
|
|
32
|
-
new html_webpack_plugin_1.default(),
|
|
33
|
-
new HtmlWebpackNewRelicPlugin_1.default(testPluginOptions),
|
|
34
|
-
],
|
|
35
|
-
}, (err) => {
|
|
36
|
-
const htmlFile = path_1.default.resolve(OUTPUT_DIR, 'index.html');
|
|
37
|
-
expect(err).toBeNull();
|
|
38
|
-
expect(fs_1.default.existsSync(htmlFile)).toBe(true);
|
|
39
|
-
const file = fs_1.default.readFileSync(path_1.default.resolve(OUTPUT_DIR, htmlFile), { encoding: 'utf-8' }, (error, data) => data.toString());
|
|
40
|
-
Object.entries(testPluginOptions).forEach(([optionName, optionValue]) => {
|
|
41
|
-
expect(file.indexOf(`${optionName}:"${optionValue}"`)).toBeGreaterThan(-1);
|
|
42
|
-
});
|
|
43
|
-
done();
|
|
44
|
-
});
|
|
45
|
-
});
|
|
46
|
-
describe('when its missing configuration variables', () => {
|
|
47
|
-
function testMissingOption(missingOptionName) {
|
|
48
|
-
it(`should throw error if ${missingOptionName} is missing`, done => {
|
|
49
|
-
const compiler = (0, webpack_1.default)({
|
|
50
|
-
entry: path_1.default.resolve(__dirname, 'fixtures', 'entry.js'),
|
|
51
|
-
output: {
|
|
52
|
-
path: path_1.default.resolve(__dirname, '../dist'),
|
|
53
|
-
},
|
|
54
|
-
plugins: [new html_webpack_plugin_1.default()],
|
|
55
|
-
});
|
|
56
|
-
const optionsMissingOne = { ...testPluginOptions };
|
|
57
|
-
delete optionsMissingOne[missingOptionName];
|
|
58
|
-
expect(() => compiler.options.plugins.push(new HtmlWebpackNewRelicPlugin_1.default(optionsMissingOne))).toThrow(`${missingOptionName} argument is required`);
|
|
59
|
-
done();
|
|
60
|
-
});
|
|
61
|
-
}
|
|
62
|
-
Object.keys(testPluginOptions).forEach((key) => {
|
|
63
|
-
testMissingOption(key);
|
|
64
|
-
});
|
|
65
|
-
});
|
|
66
|
-
});
|
|
@@ -1,108 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
const webpack_1 = require("webpack");
|
|
4
|
-
const paragonUtils_1 = require("../../utils/paragonUtils");
|
|
5
|
-
const utils_1 = require("./utils");
|
|
6
|
-
// Get Paragon and brand versions / CSS files from disk.
|
|
7
|
-
const paragonVersion = (0, paragonUtils_1.getParagonVersion)(process.cwd());
|
|
8
|
-
const paragonThemeCss = (0, paragonUtils_1.getParagonThemeCss)(process.cwd());
|
|
9
|
-
const brandVersion = (0, paragonUtils_1.getParagonVersion)(process.cwd(), { isBrandOverride: true });
|
|
10
|
-
const brandThemeCss = (0, paragonUtils_1.getParagonThemeCss)(process.cwd(), { isBrandOverride: true });
|
|
11
|
-
/**
|
|
12
|
-
* 1. Injects `PARAGON_THEME` global variable into the HTML document during the Webpack compilation process.
|
|
13
|
-
* 2. Injects `<link rel="preload" as="style">` element(s) for the Paragon and brand CSS into the HTML document.
|
|
14
|
-
*/
|
|
15
|
-
class ParagonWebpackPlugin {
|
|
16
|
-
pluginName;
|
|
17
|
-
paragonThemeUrlsConfig;
|
|
18
|
-
processAssetsHandlers;
|
|
19
|
-
paragonMetadata;
|
|
20
|
-
constructor({ processAssetsHandlers = [] } = {}) {
|
|
21
|
-
this.pluginName = 'ParagonWebpackPlugin';
|
|
22
|
-
this.paragonThemeUrlsConfig = {};
|
|
23
|
-
this.paragonMetadata = {};
|
|
24
|
-
// List of handlers to be executed after processing assets during the Webpack compilation.
|
|
25
|
-
this.processAssetsHandlers = [
|
|
26
|
-
this.resolveParagonThemeUrlsFromConfig,
|
|
27
|
-
this.injectParagonMetadataIntoDocument,
|
|
28
|
-
this.injectParagonStylesheetsIntoDocument,
|
|
29
|
-
...processAssetsHandlers,
|
|
30
|
-
].map(handler => handler.bind(this));
|
|
31
|
-
}
|
|
32
|
-
/**
|
|
33
|
-
* Resolves the MFE configuration from ``PARAGON_THEME_URLS`` in the environment variables. `
|
|
34
|
-
*
|
|
35
|
-
* @returns {Object} Metadata about the Paragon and brand theme URLs from configuration.
|
|
36
|
-
*/
|
|
37
|
-
async resolveParagonThemeUrlsFromConfig() {
|
|
38
|
-
try {
|
|
39
|
-
this.paragonThemeUrlsConfig = JSON.parse(process.env.PARAGON_THEME_URLS ?? '{}');
|
|
40
|
-
}
|
|
41
|
-
catch (error) {
|
|
42
|
-
console.info('Paragon Plugin cannot load PARAGON_THEME_URLS env variable, skipping.');
|
|
43
|
-
}
|
|
44
|
-
}
|
|
45
|
-
/**
|
|
46
|
-
* Generates `PARAGON_THEME` global variable in HTML document.
|
|
47
|
-
* @param {Object} compilation Webpack compilation object.
|
|
48
|
-
*/
|
|
49
|
-
injectParagonMetadataIntoDocument(compilation) {
|
|
50
|
-
const paragonMetadata = (0, utils_1.injectMetadataIntoDocument)(compilation, {
|
|
51
|
-
paragonThemeCss,
|
|
52
|
-
paragonVersion,
|
|
53
|
-
brandThemeCss,
|
|
54
|
-
brandVersion,
|
|
55
|
-
});
|
|
56
|
-
if (paragonMetadata) {
|
|
57
|
-
this.paragonMetadata = paragonMetadata;
|
|
58
|
-
}
|
|
59
|
-
}
|
|
60
|
-
injectParagonStylesheetsIntoDocument(compilation) {
|
|
61
|
-
const file = compilation.getAsset('index.html');
|
|
62
|
-
// If the `index.html` hasn't loaded yet, or there are no Paragon theme URLs, then there is nothing to do yet.
|
|
63
|
-
if (!file || Object.keys(this.paragonThemeUrlsConfig || {}).length === 0) {
|
|
64
|
-
return;
|
|
65
|
-
}
|
|
66
|
-
// Generates `<link rel="preload" as="style">` element(s) for the Paragon and brand CSS files.
|
|
67
|
-
const paragonStylesheetUrls = (0, utils_1.getParagonStylesheetUrls)({
|
|
68
|
-
paragonThemeUrls: this.paragonThemeUrlsConfig,
|
|
69
|
-
paragonVersion,
|
|
70
|
-
brandVersion,
|
|
71
|
-
});
|
|
72
|
-
const { core: paragonCoreCss, variants: paragonThemeVariantCss, } = paragonStylesheetUrls;
|
|
73
|
-
// We do not expect to have a Buffer here, ever.
|
|
74
|
-
const originalSource = file.source.source();
|
|
75
|
-
// Inject core CSS
|
|
76
|
-
let newSource = (0, utils_1.injectParagonCoreStylesheets)({
|
|
77
|
-
source: originalSource,
|
|
78
|
-
paragonCoreCss,
|
|
79
|
-
paragonThemeCss,
|
|
80
|
-
brandThemeCss,
|
|
81
|
-
});
|
|
82
|
-
// Inject theme variant CSS
|
|
83
|
-
newSource = (0, utils_1.injectParagonThemeVariantStylesheets)({
|
|
84
|
-
// @ts-expect-error newSource is possibly undefined here.
|
|
85
|
-
source: newSource.source(),
|
|
86
|
-
paragonThemeVariantCss,
|
|
87
|
-
paragonThemeCss,
|
|
88
|
-
brandThemeCss,
|
|
89
|
-
});
|
|
90
|
-
// @ts-expect-error newSource is possibly undefined here.
|
|
91
|
-
compilation.updateAsset('index.html', new webpack_1.sources.RawSource(newSource.source()));
|
|
92
|
-
}
|
|
93
|
-
apply(compiler) {
|
|
94
|
-
compiler.hooks.thisCompilation.tap(this.pluginName, (compilation) => {
|
|
95
|
-
compilation.hooks.processAssets.tap({
|
|
96
|
-
name: this.pluginName,
|
|
97
|
-
stage: webpack_1.Compilation.PROCESS_ASSETS_STAGE_ADDITIONS,
|
|
98
|
-
additionalAssets: true,
|
|
99
|
-
}, () => {
|
|
100
|
-
// Iterate through each configured handler, passing the compilation to each.
|
|
101
|
-
this.processAssetsHandlers.forEach(async (handler) => {
|
|
102
|
-
await handler(compilation);
|
|
103
|
-
});
|
|
104
|
-
});
|
|
105
|
-
});
|
|
106
|
-
}
|
|
107
|
-
}
|
|
108
|
-
exports.default = ParagonWebpackPlugin;
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
-
};
|
|
5
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
const ParagonWebpackPlugin_1 = __importDefault(require("./ParagonWebpackPlugin"));
|
|
7
|
-
exports.default = ParagonWebpackPlugin_1.default;
|
|
@@ -1,64 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.findCoreCssAsset = findCoreCssAsset;
|
|
4
|
-
exports.findThemeVariantCssAssets = findThemeVariantCssAssets;
|
|
5
|
-
exports.getCssAssetsFromCompilation = getCssAssetsFromCompilation;
|
|
6
|
-
/**
|
|
7
|
-
* Finds the core CSS asset from the given array of Paragon assets.
|
|
8
|
-
*
|
|
9
|
-
* @param {Array} paragonAssets - An array of Paragon assets.
|
|
10
|
-
* @return {Object|undefined} The core CSS asset, or undefined if not found.
|
|
11
|
-
*/
|
|
12
|
-
function findCoreCssAsset(paragonAssets) {
|
|
13
|
-
return paragonAssets?.find((asset) => asset.name.includes('core') && asset.name.endsWith('.css'));
|
|
14
|
-
}
|
|
15
|
-
/**
|
|
16
|
-
* Finds the theme variant CSS assets from the given Paragon assets based on the provided options.
|
|
17
|
-
*
|
|
18
|
-
* @param {Array} paragonAssets - An array of Paragon assets.
|
|
19
|
-
* @param {Object} options - The options for finding the theme variant CSS assets.
|
|
20
|
-
* @param {boolean} [options.isBrandOverride=false] - Indicates if the theme variant is a brand override.
|
|
21
|
-
* @param {Object} [options.brandThemeCss] - The brand theme CSS object.
|
|
22
|
-
* @param {Object} [options.paragonThemeCss] - The Paragon theme CSS object.
|
|
23
|
-
* @return {Object} - The theme variant CSS assets.
|
|
24
|
-
*/
|
|
25
|
-
function findThemeVariantCssAssets(paragonAssets, { isBrandOverride = false, brandThemeCss, paragonThemeCss, }) {
|
|
26
|
-
const themeVariantsSource = isBrandOverride ? brandThemeCss?.variants : paragonThemeCss?.variants;
|
|
27
|
-
const themeVariantCssAssets = {};
|
|
28
|
-
Object.entries(themeVariantsSource || {}).forEach(([themeVariant, value]) => {
|
|
29
|
-
const foundThemeVariantAsset = paragonAssets.find((asset) => asset.name.includes(value.outputChunkName));
|
|
30
|
-
if (!foundThemeVariantAsset) {
|
|
31
|
-
return;
|
|
32
|
-
}
|
|
33
|
-
themeVariantCssAssets[themeVariant] = {
|
|
34
|
-
fileName: foundThemeVariantAsset.name,
|
|
35
|
-
};
|
|
36
|
-
});
|
|
37
|
-
return themeVariantCssAssets;
|
|
38
|
-
}
|
|
39
|
-
/**
|
|
40
|
-
* Retrieves the CSS assets from the compilation based on the provided options.
|
|
41
|
-
*
|
|
42
|
-
* @param {Object} compilation - The compilation object.
|
|
43
|
-
* @param {Object} options - The options for retrieving the CSS assets.
|
|
44
|
-
* @param {boolean} [options.isBrandOverride=false] - Indicates if the assets are for a brand override.
|
|
45
|
-
* @param {Object} [options.brandThemeCss] - The brand theme CSS object.
|
|
46
|
-
* @param {Object} [options.paragonThemeCss] - The Paragon theme CSS object.
|
|
47
|
-
* @return {Object} - The CSS assets, including the core CSS asset and theme variant CSS assets.
|
|
48
|
-
*/
|
|
49
|
-
function getCssAssetsFromCompilation(compilation, { isBrandOverride = false, brandThemeCss, paragonThemeCss, }) {
|
|
50
|
-
const assetSubstring = isBrandOverride ? 'brand' : 'paragon';
|
|
51
|
-
const paragonAssets = compilation.getAssets().filter(asset => asset.name.includes(assetSubstring) && asset.name.endsWith('.css'));
|
|
52
|
-
const coreCssAsset = findCoreCssAsset(paragonAssets);
|
|
53
|
-
const themeVariantCssAssets = findThemeVariantCssAssets(paragonAssets, {
|
|
54
|
-
isBrandOverride,
|
|
55
|
-
paragonThemeCss,
|
|
56
|
-
brandThemeCss,
|
|
57
|
-
});
|
|
58
|
-
return {
|
|
59
|
-
coreCssAsset: {
|
|
60
|
-
fileName: coreCssAsset?.name,
|
|
61
|
-
},
|
|
62
|
-
themeVariantCssAssets,
|
|
63
|
-
};
|
|
64
|
-
}
|
|
@@ -1,53 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.injectMetadataIntoDocument = injectMetadataIntoDocument;
|
|
4
|
-
const webpack_1 = require("webpack");
|
|
5
|
-
const assetUtils_1 = require("./assetUtils");
|
|
6
|
-
const scriptUtils_1 = require("./scriptUtils");
|
|
7
|
-
/**
|
|
8
|
-
* Injects metadata into the HTML document by modifying the 'index.html' asset in the compilation.
|
|
9
|
-
*
|
|
10
|
-
* @param {Object} compilation - The Webpack compilation object.
|
|
11
|
-
* @param {Object} options - The options object.
|
|
12
|
-
* @param {Object} options.paragonThemeCss - The Paragon theme CSS object.
|
|
13
|
-
* @param {string} options.paragonVersion - The version of the Paragon theme.
|
|
14
|
-
* @param {Object} options.brandThemeCss - The brand theme CSS object.
|
|
15
|
-
* @param {string} options.brandVersion - The version of the brand theme.
|
|
16
|
-
* @return {Object|undefined} The script contents object if the 'index.html' asset exists, otherwise undefined.
|
|
17
|
-
*/
|
|
18
|
-
function injectMetadataIntoDocument(compilation, { paragonThemeCss, paragonVersion, brandThemeCss, brandVersion, }) {
|
|
19
|
-
const file = compilation.getAsset('index.html');
|
|
20
|
-
if (!file) {
|
|
21
|
-
return undefined;
|
|
22
|
-
}
|
|
23
|
-
const { coreCssAsset: paragonCoreCssAsset, themeVariantCssAssets: paragonThemeVariantCssAssets, } = (0, assetUtils_1.getCssAssetsFromCompilation)(compilation, {
|
|
24
|
-
brandThemeCss,
|
|
25
|
-
paragonThemeCss,
|
|
26
|
-
});
|
|
27
|
-
const { coreCssAsset: brandCoreCssAsset, themeVariantCssAssets: brandThemeVariantCssAssets, } = (0, assetUtils_1.getCssAssetsFromCompilation)(compilation, {
|
|
28
|
-
isBrandOverride: true,
|
|
29
|
-
brandThemeCss,
|
|
30
|
-
paragonThemeCss,
|
|
31
|
-
});
|
|
32
|
-
const scriptContents = (0, scriptUtils_1.generateScriptContents)({
|
|
33
|
-
paragonCoreCssAsset,
|
|
34
|
-
paragonThemeVariantCssAssets,
|
|
35
|
-
brandCoreCssAsset,
|
|
36
|
-
brandThemeVariantCssAssets,
|
|
37
|
-
paragonThemeCss,
|
|
38
|
-
paragonVersion,
|
|
39
|
-
brandThemeCss,
|
|
40
|
-
brandVersion,
|
|
41
|
-
});
|
|
42
|
-
// We expect this to be a string at all times.
|
|
43
|
-
const originalSource = file.source.source();
|
|
44
|
-
const newSource = (0, scriptUtils_1.insertScriptContentsIntoDocument)({
|
|
45
|
-
originalSource,
|
|
46
|
-
// @ts-expect-error This parameter doesn't exist in the function.
|
|
47
|
-
coreCssAsset: paragonCoreCssAsset,
|
|
48
|
-
themeVariantCssAssets: paragonThemeVariantCssAssets,
|
|
49
|
-
scriptContents,
|
|
50
|
-
});
|
|
51
|
-
compilation.updateAsset('index.html', new webpack_1.sources.RawSource(newSource.source()));
|
|
52
|
-
return scriptContents;
|
|
53
|
-
}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.injectParagonThemeVariantStylesheets = exports.injectParagonCoreStylesheets = exports.getParagonStylesheetUrls = exports.injectMetadataIntoDocument = void 0;
|
|
4
|
-
var htmlUtils_1 = require("./htmlUtils");
|
|
5
|
-
Object.defineProperty(exports, "injectMetadataIntoDocument", { enumerable: true, get: function () { return htmlUtils_1.injectMetadataIntoDocument; } });
|
|
6
|
-
var paragonStylesheetUtils_1 = require("./paragonStylesheetUtils");
|
|
7
|
-
Object.defineProperty(exports, "getParagonStylesheetUrls", { enumerable: true, get: function () { return paragonStylesheetUtils_1.getParagonStylesheetUrls; } });
|
|
8
|
-
Object.defineProperty(exports, "injectParagonCoreStylesheets", { enumerable: true, get: function () { return paragonStylesheetUtils_1.injectParagonCoreStylesheets; } });
|
|
9
|
-
Object.defineProperty(exports, "injectParagonThemeVariantStylesheets", { enumerable: true, get: function () { return paragonStylesheetUtils_1.injectParagonThemeVariantStylesheets; } });
|