@opencode-ai/theme 0.0.0-next-16619 → 0.0.0-next-16621
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/tui/index.d.ts +1 -0
- package/dist/tui/index.js +1 -0
- package/package.json +1 -1
package/dist/tui/index.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export { ActionState, type ActionStateKey, ActionVariant, BaseHue, CategoricalDefinition, FeedbackKind, FormfieldState, type FormfieldStateKey, HueAlias, HueName, HueStep, MarkdownDefinition, MarkdownToken, ModeDefinition, SyntaxDefinition, SyntaxToken, ThemeDefinition, ThemeDocument, type BackgroundDefinition, type DiffDefinition, type FileThemeDefinition, type FormfieldColorDefinition, type HueDefinition, type HueOverrideDefinition, type MergeModeDefinition, type Mode, type StatefulColorDefinition, type ContextKey, type TextDefinition, type ThemeTokensDefinition, } from "./schema.js";
|
|
2
2
|
export type { Categorical, ContextName, FormfieldColor, Hue, HueSource, HueScale, ResolvedActionState, ResolvedFormfieldState, ResolvedTheme, ResolvedThemeTokens, StatefulColor, } from "./types.js";
|
|
3
3
|
export { DEFAULT_CATEGORICAL, DEFAULT_THEME } from "./defaults.js";
|
|
4
|
+
export { expandTheme } from "./expand.js";
|
|
4
5
|
export { migrateV1 } from "./v1-migrate.js";
|
|
5
6
|
export { resolveTheme, resolveThemeDocument, themeDecodeError } from "./resolve.js";
|
|
6
7
|
export { selectTheme, selectThemeMode, supportsThemeMode, themeModes } from "./select.js";
|
package/dist/tui/index.js
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export { ActionState, ActionVariant, BaseHue, CategoricalDefinition, FeedbackKind, FormfieldState, HueAlias, HueName, HueStep, MarkdownDefinition, MarkdownToken, ModeDefinition, SyntaxDefinition, SyntaxToken, ThemeDefinition, ThemeDocument, } from "./schema.js";
|
|
2
2
|
export { DEFAULT_CATEGORICAL, DEFAULT_THEME } from "./defaults.js";
|
|
3
|
+
export { expandTheme } from "./expand.js";
|
|
3
4
|
export { migrateV1 } from "./v1-migrate.js";
|
|
4
5
|
export { resolveTheme, resolveThemeDocument, themeDecodeError } from "./resolve.js";
|
|
5
6
|
export { selectTheme, selectThemeMode, supportsThemeMode, themeModes } from "./select.js";
|