@plumeria/core 6.3.0 → 6.3.2
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/README.md +1 -1
- package/dist/css.d.mts +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -51,7 +51,7 @@ Read the [documentation](https://plumeria.dev/) for more details.
|
|
|
51
51
|
- [PostCSS](https://plumeria.dev/docs/integration/postcss)
|
|
52
52
|
- [ESLint](https://plumeria.dev/docs/integration/eslint)
|
|
53
53
|
|
|
54
|
-
##
|
|
54
|
+
## Acknowledgements
|
|
55
55
|
|
|
56
56
|
Plumeria is made possible thanks to the inspirations from the following projects:
|
|
57
57
|
|
package/dist/css.d.mts
CHANGED
|
@@ -72,6 +72,6 @@ declare const createTheme: <const T extends CreateTheme>(_rule: T) => ReturnVari
|
|
|
72
72
|
declare const createStatic: <const T extends CreateStatic>(_rule: T) => T;
|
|
73
73
|
declare const keyframes: (_rule: Keyframes) => string;
|
|
74
74
|
declare const viewTransition: (_rule: ViewTransition) => string;
|
|
75
|
-
declare const variants: <T extends Variant>(_rule: T) => (_props: { [K in keyof T]
|
|
75
|
+
declare const variants: <T extends Variant>(_rule: T) => (_props: { [K in keyof T]: keyof T[K] }) => CSSProperties;
|
|
76
76
|
|
|
77
77
|
export { type CSSProperties, type CreateStyle, create, createStatic, createTheme, keyframes, props, variants, viewTransition };
|