From bb29113cad53f3a07008999a7eac9b9757202fb7 Mon Sep 17 00:00:00 2001 From: Joseph Hale Date: Fri, 26 Dec 2025 11:52:23 -0700 Subject: [PATCH] feat: export `stores` and `settings` --- src/index.tsx | 7 ++++++- src/stores/index.ts | 8 ++++++++ 2 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 src/stores/index.ts diff --git a/src/index.tsx b/src/index.tsx index fad0811..f1bc11b 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -10,6 +10,11 @@ export { default as Dialog, type DialogProps } from './components/Dialog'; export { default as Divider } from './components/Divider'; export { default as Row, type RowProps } from './components/Row'; export { default as Text, type TextProps } from './components/Text'; -export { default as TextInput, type TextInputProps } from './components/TextInput'; +export { + default as TextInput, + type TextInputProps, +} from './components/TextInput'; export * from './theme'; +export * from './stores'; +export * from './settings'; diff --git a/src/stores/index.ts b/src/stores/index.ts new file mode 100644 index 0000000..95ce78b --- /dev/null +++ b/src/stores/index.ts @@ -0,0 +1,8 @@ +// Copyright (c) 2025 Joseph Hale +// +// This Source Code Form is subject to the terms of the Mozilla Public +// License, v. 2.0. If a copy of the MPL was not distributed with this +// file, You can obtain one at https://mozilla.org/MPL/2.0/. + +import KeyValueStore, { type ExternalKeyValueStore } from './KeyValueStore'; +export { KeyValueStore, type ExternalKeyValueStore }; -- 2.51.2