33 lines
987 B
TypeScript
33 lines
987 B
TypeScript
// Export all building blocks functions for easy import
|
|
export {
|
|
buildDefaultHeader,
|
|
buildDefaultTitle,
|
|
buildDefaultSubtitle,
|
|
buildDefaultBottomActionButton,
|
|
buildDefaultNavigation,
|
|
buildDefaultDescription,
|
|
buildDefaultIcon,
|
|
buildDefaultDateInput,
|
|
buildDefaultInfoMessage,
|
|
buildDefaultCoupon,
|
|
buildDefaultFormFields,
|
|
buildDefaultFormValidation,
|
|
buildDefaultProgressbars,
|
|
buildDefaultCopiedMessage,
|
|
buildDefaultImage,
|
|
buildDefaultEmailInput,
|
|
} from "./blocks";
|
|
|
|
// Export base screen interface
|
|
export { type BaseScreenCommon } from "./baseScreen";
|
|
|
|
// Export specific screen builders
|
|
export { buildInfoDefaults } from "./info";
|
|
export { buildDateDefaults } from "./date";
|
|
export { buildFormDefaults } from "./form";
|
|
export { buildListDefaults } from "./list";
|
|
export { buildCouponDefaults } from "./coupon";
|
|
export { buildEmailDefaults } from "./email";
|
|
export { buildLoadersDefaults } from "./loaders";
|
|
export { buildSoulmateDefaults } from "./soulmate";
|