@blockle/blocks 0.8.4 → 0.8.5
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/momotaro.chunk.d.ts +1 -1
- package/package.json +1 -1
package/dist/momotaro.chunk.d.ts
CHANGED
|
@@ -425,7 +425,7 @@ type ComponentTheme<T extends RecordLike> = ComponentThemeToStyles<T> & {
|
|
|
425
425
|
defaultVariants?: ComponentThemeDefaultVariants<T>;
|
|
426
426
|
};
|
|
427
427
|
type ThemeComponentsStyles = {
|
|
428
|
-
[K in keyof ComponentThemes]
|
|
428
|
+
[K in keyof ComponentThemes]?: ComponentTheme<ComponentThemes[K]>;
|
|
429
429
|
};
|
|
430
430
|
declare function makeComponentTheme<T extends keyof ThemeComponentsStyles>(component: T, componentTheme: ThemeComponentsStyles[T]): ThemeComponentsStyles[T];
|
|
431
431
|
|