Skip to content

Commit c0e822b

Browse files
feat: expose theme enum and store to consumer (#578)
# Motivation Some consumers, such as OISY, might want to implement their own theme toggler. Therefore to avoid conflicts with different themes, we expose the enum and store of the library for consumers as well (as we do with other stores). # Changes - Expose enum `Theme` and `theme.store`
1 parent 60b8865 commit c0e822b

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/lib/index.ts

+2
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,13 @@ export * from "./icons";
55
export * from "./stores/busy.store";
66
export * from "./stores/layout.store";
77
export * from "./stores/menu.store";
8+
export * from "./stores/theme.store";
89
export * from "./stores/toasts.store";
910
export * from "./stores/wizard.state";
1011
export type { BusyState } from "./types/busy";
1112
export type { ProgressBarSegment } from "./types/progress-bar";
1213
export type { ProgressStep, ProgressStepState } from "./types/progress-step";
14+
export * from "./types/theme";
1315
export type { ToastLevel, ToastMsg } from "./types/toast";
1416
export type { WizardStep, WizardSteps } from "./types/wizard";
1517
export * from "./utils/wizard.utils";

0 commit comments

Comments
 (0)