@spark-ui/theme-utils
Advanced tools
Comparing version 2.3.2 to 2.4.0
@@ -6,2 +6,8 @@ # Change Log | ||
# [2.4.0](https://github.com/adevinta/spark/compare/@spark-ui/theme-utils@2.3.2...@spark-ui/theme-utils@2.4.0) (2023-02-24) | ||
### Features | ||
- **cli-utils:** flattened cli args for theme config ([ccb13de](https://github.com/adevinta/spark/commit/ccb13de785f2d6d2f8893bdff83b032af6416a38)) | ||
## [2.3.2](https://github.com/adevinta/spark/compare/@spark-ui/theme-utils@2.3.1...@spark-ui/theme-utils@2.3.2) (2023-02-24) | ||
@@ -8,0 +14,0 @@ |
export { createTheme } from './createTheme'; | ||
export { defaultTheme } from './defaultTheme'; | ||
export { defaultThemeDark } from './defaultThemeDark'; | ||
export type { Theme } from './types'; | ||
export type { Theme, ThemeConfig } from './types'; |
@@ -0,1 +1,2 @@ | ||
import { RequireAtLeastOne } from 'type-fest'; | ||
export interface Theme { | ||
@@ -184,1 +185,6 @@ screens: { | ||
} | ||
export interface ThemeConfig { | ||
tailwindThemeConfigPath: string; | ||
tailwindCSSPath: string; | ||
themes: RequireAtLeastOne<Record<string, Theme>, 'default'>; | ||
} |
{ | ||
"name": "@spark-ui/theme-utils", | ||
"version": "2.3.2", | ||
"version": "2.4.0", | ||
"description": "package for managing Spark theme configuration", | ||
@@ -23,3 +23,3 @@ "publishConfig": { | ||
}, | ||
"gitHead": "fc8db19776d0ae0c45aebe2f85931a2d19f00ca3" | ||
"gitHead": "f21e13f33295a0f0c73726c2f46732993bdf9d72" | ||
} |
25989
300