2024-11-20 16:42:18 +01:00
|
|
|
import { addDebugTools } from './debug';
|
2024-11-20 18:38:06 +01:00
|
|
|
import * as Onboarding from './onboarding';
|
|
|
|
import * as Common from './common';
|
2025-01-13 17:06:05 +01:00
|
|
|
import * as Styling from './styling';
|
2024-10-22 15:15:55 +02:00
|
|
|
|
2024-11-20 16:45:08 +01:00
|
|
|
Onboarding.initStore();
|
2024-11-20 18:38:06 +01:00
|
|
|
Common.initStore();
|
2025-01-13 17:06:05 +01:00
|
|
|
Styling.initStore();
|
2024-10-22 15:15:55 +02:00
|
|
|
|
2024-11-20 16:45:08 +01:00
|
|
|
export const OnboardingHooks = Onboarding.hooks;
|
2024-11-20 18:38:06 +01:00
|
|
|
export const CommonHooks = Common.hooks;
|
2025-01-13 17:06:05 +01:00
|
|
|
export const StylingHooks = Styling.hooks;
|
2024-11-20 18:38:06 +01:00
|
|
|
|
2024-11-20 16:45:08 +01:00
|
|
|
export const OnboardingStoreName = Onboarding.STORE_NAME;
|
2024-11-20 18:38:06 +01:00
|
|
|
export const CommonStoreName = Common.STORE_NAME;
|
2025-01-13 17:06:05 +01:00
|
|
|
export const StylingStoreName = Styling.STORE_NAME;
|
2024-11-20 16:42:18 +01:00
|
|
|
|
2025-01-16 15:03:46 +01:00
|
|
|
export * from './configuration';
|
2024-11-20 16:55:31 +01:00
|
|
|
|
2025-01-13 17:06:05 +01:00
|
|
|
addDebugTools( window.ppcpSettings, [ Onboarding, Common, Styling ] );
|