@apolitical/component-library 8.3.0 → 8.3.1-RR.1

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.
@@ -5,4 +5,3 @@ export * from './discussion';
5
5
  export * from './error-messages';
6
6
  export * from './stats';
7
7
  export * from './regex';
8
- export * from './storage-keys';
@@ -1,6 +1,6 @@
1
1
  import React from 'react';
2
- import { ICourseProgressionTypes } from './course-progression.types';
3
- declare const CourseProgression: ({ element, data: { timeLeftToFinish, percentageCompleted: { inTime, inLessons }, shouldShowTimes, }, graph, styling, className, }: ICourseProgressionTypes) => React.DetailedReactHTMLElement<{
2
+ import { ICourseProgressionProps } from './course-progression.types';
3
+ declare const CourseProgression: ({ element, data: { timeLeftToFinish, percentageCompleted: { inTime, inLessons }, shouldShowTimes, }, graph, styling, className, }: ICourseProgressionProps) => React.DetailedReactHTMLElement<{
4
4
  className: string;
5
5
  children: import("react/jsx-runtime").JSX.Element;
6
6
  }, HTMLElement>;
@@ -11,7 +11,7 @@ export interface ICourseProgressionData {
11
11
  /** Whether the course shows the time for lessons */
12
12
  shouldShowTimes?: boolean;
13
13
  }
14
- export interface ICourseProgressionTypes {
14
+ export interface ICourseProgressionProps {
15
15
  /** The element to wrap the course progression in */
16
16
  element?: 'p' | 'aside' | 'div';
17
17
  /** The data to display */
@@ -1 +1,2 @@
1
+ export type { ICourseProgressionProps, ICourseProgressionData } from './course-progression.types';
1
2
  export { default as CourseProgression } from './course-progression';
package/helpers/intl.d.ts CHANGED
@@ -478,7 +478,10 @@ export declare const checkIntlPathExists: (path: string, language?: {
478
478
  'header_account_log-out': string;
479
479
  header_buttons_login: string;
480
480
  header_buttons_signup: string;
481
- header_language_unavailable: string;
481
+ header_language_unavailable_en: string;
482
+ header_language_unavailable_es: string;
483
+ header_language_unavailable_fr: string;
484
+ header_language_unavailable_pt: string;
482
485
  pageLayout_browserTooSmall: string;
483
486
  pageLayout_error: string;
484
487
  loadingBlock_loading: string;