From 950849170e8c4091ff48426f2201a502c92fd148 Mon Sep 17 00:00:00 2001 From: Roman Barlos Date: Mon, 16 Dec 2024 19:05:12 +0300 Subject: [PATCH] fix(unstable): add missed exports (#249) --- src/components/unstable/Stories/types.ts | 2 +- src/components/unstable/index.ts | 9 +++++++++ 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/src/components/unstable/Stories/types.ts b/src/components/unstable/Stories/types.ts index 6fc8598..b9bc99e 100644 --- a/src/components/unstable/Stories/types.ts +++ b/src/components/unstable/Stories/types.ts @@ -24,7 +24,7 @@ export enum StoriesMediaBlockStyle { FullSize = 'full-size', } -interface StoriesItemTextColorStyles { +export interface StoriesItemTextColorStyles { titleColor?: string; descriptionColor?: string; counterColor?: string; diff --git a/src/components/unstable/index.ts b/src/components/unstable/index.ts index b261238..bd36023 100644 --- a/src/components/unstable/index.ts +++ b/src/components/unstable/index.ts @@ -5,4 +5,13 @@ export { type StoriesProps as unstable_StoriesProps, Stories as unstable_Stories, useSyncWithLS as unstable_useSyncWithLS, + StoriesMediaBlockStyle, + StoriesTextBlockStyle, + StoriesItemTextColorStyles, } from './Stories'; + +export { + type StoriesGroupItem, + type StoriesGroupProps, + StoriesGroup as unstable_StoriesGroup, +} from './StoriesGroup';