evelearn-theme 2.0.3 → 2.0.5
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/dist/index.d.mts +11 -1
- package/dist/index.d.ts +11 -1
- package/dist/index.js +225 -199
- package/dist/index.mjs +192 -170
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -43,6 +43,16 @@ type Props$g = {
|
|
|
43
43
|
};
|
|
44
44
|
declare const NoResults: ({ loading, message }: Props$g) => react_jsx_runtime.JSX.Element;
|
|
45
45
|
|
|
46
|
+
interface ContainerProps {
|
|
47
|
+
backgroundColor?: string;
|
|
48
|
+
backgroundImage?: string;
|
|
49
|
+
style?: React__default.CSSProperties;
|
|
50
|
+
onClick?: () => void;
|
|
51
|
+
isDark?: boolean;
|
|
52
|
+
children?: React__default.ReactNode;
|
|
53
|
+
}
|
|
54
|
+
declare const Container: React__default.FC<ContainerProps>;
|
|
55
|
+
|
|
46
56
|
declare const Pill: ({ text }: {
|
|
47
57
|
text: string;
|
|
48
58
|
}) => react_jsx_runtime.JSX.Element;
|
|
@@ -313,4 +323,4 @@ declare const OverlaySpinner: ({ visible }: Props) => React$1.ReactPortal | null
|
|
|
313
323
|
|
|
314
324
|
declare const AnimateLogo: () => react_jsx_runtime.JSX.Element;
|
|
315
325
|
|
|
316
|
-
export { AnimateLogo, Backdrop, BAWrapper as BottomAlert, Breakpoint, Button, Checkbox, CircleProgress, CourseProgress, ErrorText, Fade, FunButton, FunRoundButton, IconInfo, Modal, NoResults, NoticeBox, Overlay, OverlaySpinner, PRIMARY_COLOR, Pill, ProgressBar, ProgressBarSimple, RadioOption, RatingStars, ScrollProgress, Slider, Spinner, StepsComponent, Tippy, ToggleSwitch, UserContentSwitcher, baseFieldStyle, createExerciseElementStyle, exerciseDeleteButton, exerciseEditButton, headerButtonClass, headerTippyClass, tippyClassname, toolbarExerciseButton, xIconButton };
|
|
326
|
+
export { AnimateLogo, Backdrop, BAWrapper as BottomAlert, Breakpoint, Button, Checkbox, CircleProgress, Container, CourseProgress, ErrorText, Fade, FunButton, FunRoundButton, IconInfo, Modal, NoResults, NoticeBox, Overlay, OverlaySpinner, PRIMARY_COLOR, Pill, ProgressBar, ProgressBarSimple, RadioOption, RatingStars, ScrollProgress, Slider, Spinner, StepsComponent, Tippy, ToggleSwitch, UserContentSwitcher, baseFieldStyle, createExerciseElementStyle, exerciseDeleteButton, exerciseEditButton, headerButtonClass, headerTippyClass, tippyClassname, toolbarExerciseButton, xIconButton };
|
package/dist/index.d.ts
CHANGED
|
@@ -43,6 +43,16 @@ type Props$g = {
|
|
|
43
43
|
};
|
|
44
44
|
declare const NoResults: ({ loading, message }: Props$g) => react_jsx_runtime.JSX.Element;
|
|
45
45
|
|
|
46
|
+
interface ContainerProps {
|
|
47
|
+
backgroundColor?: string;
|
|
48
|
+
backgroundImage?: string;
|
|
49
|
+
style?: React__default.CSSProperties;
|
|
50
|
+
onClick?: () => void;
|
|
51
|
+
isDark?: boolean;
|
|
52
|
+
children?: React__default.ReactNode;
|
|
53
|
+
}
|
|
54
|
+
declare const Container: React__default.FC<ContainerProps>;
|
|
55
|
+
|
|
46
56
|
declare const Pill: ({ text }: {
|
|
47
57
|
text: string;
|
|
48
58
|
}) => react_jsx_runtime.JSX.Element;
|
|
@@ -313,4 +323,4 @@ declare const OverlaySpinner: ({ visible }: Props) => React$1.ReactPortal | null
|
|
|
313
323
|
|
|
314
324
|
declare const AnimateLogo: () => react_jsx_runtime.JSX.Element;
|
|
315
325
|
|
|
316
|
-
export { AnimateLogo, Backdrop, BAWrapper as BottomAlert, Breakpoint, Button, Checkbox, CircleProgress, CourseProgress, ErrorText, Fade, FunButton, FunRoundButton, IconInfo, Modal, NoResults, NoticeBox, Overlay, OverlaySpinner, PRIMARY_COLOR, Pill, ProgressBar, ProgressBarSimple, RadioOption, RatingStars, ScrollProgress, Slider, Spinner, StepsComponent, Tippy, ToggleSwitch, UserContentSwitcher, baseFieldStyle, createExerciseElementStyle, exerciseDeleteButton, exerciseEditButton, headerButtonClass, headerTippyClass, tippyClassname, toolbarExerciseButton, xIconButton };
|
|
326
|
+
export { AnimateLogo, Backdrop, BAWrapper as BottomAlert, Breakpoint, Button, Checkbox, CircleProgress, Container, CourseProgress, ErrorText, Fade, FunButton, FunRoundButton, IconInfo, Modal, NoResults, NoticeBox, Overlay, OverlaySpinner, PRIMARY_COLOR, Pill, ProgressBar, ProgressBarSimple, RadioOption, RatingStars, ScrollProgress, Slider, Spinner, StepsComponent, Tippy, ToggleSwitch, UserContentSwitcher, baseFieldStyle, createExerciseElementStyle, exerciseDeleteButton, exerciseEditButton, headerButtonClass, headerTippyClass, tippyClassname, toolbarExerciseButton, xIconButton };
|