@plumeria/core 7.2.2 → 7.2.4
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/lib/css.d.ts +11 -15
- package/package.json +2 -2
package/README.md
CHANGED
package/lib/css.d.ts
CHANGED
|
@@ -12,22 +12,18 @@
|
|
|
12
12
|
* ```
|
|
13
13
|
* Type definitions only. Configure the bundler plugin for extraction.
|
|
14
14
|
*/
|
|
15
|
-
|
|
16
15
|
declare module '@plumeria/core' {
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
ContainerStyleQuery,
|
|
29
|
-
} from './definition';
|
|
30
|
-
|
|
16
|
+
export type CSSProperties = import('./definition').CSSProperties;
|
|
17
|
+
export type CreateStyle = import('./definition').CreateStyle;
|
|
18
|
+
export type CreateStyleType<T> = import('./definition').CreateStyleType<T>;
|
|
19
|
+
export type CreateStatic = import('./definition').CreateStatic;
|
|
20
|
+
export type CreateTheme = import('./definition').CreateTheme;
|
|
21
|
+
export type Keyframes = import('./definition').Keyframes;
|
|
22
|
+
export type ViewTransition = import('./definition').ViewTransition;
|
|
23
|
+
export type ReturnType<T> = import('./definition').ReturnType<T>;
|
|
24
|
+
export type ReturnVariableType<T> = import('./definition').ReturnVariableType<T>;
|
|
25
|
+
export type Variants = import('./definition').Variants;
|
|
26
|
+
export type ContainerStyleQuery = import('./definition').ContainerStyleQuery;
|
|
31
27
|
export function create<const T extends Record<string, CSSProperties>>(_rule: CreateStyleType<T>): ReturnType<T>;
|
|
32
28
|
export function props(..._rules: (false | CSSProperties | null | undefined)[]): string;
|
|
33
29
|
export function createTheme<const T extends CreateTheme>(_rule: T): ReturnVariableType<T>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@plumeria/core",
|
|
3
|
-
"version": "7.2.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "7.2.4",
|
|
4
|
+
"description": "A type-only atomic CSS framework.",
|
|
5
5
|
"author": "Refirst 11",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"funding": "https://github.com/sponsors/refirst11",
|