@plumeria/core 7.2.2 → 7.2.3
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/lib/css.d.ts +14 -14
- package/package.json +1 -1
package/lib/css.d.ts
CHANGED
|
@@ -13,21 +13,21 @@
|
|
|
13
13
|
* Type definitions only. Configure the bundler plugin for extraction.
|
|
14
14
|
*/
|
|
15
15
|
|
|
16
|
-
declare module '@plumeria/core' {
|
|
17
|
-
import type {
|
|
18
|
-
CSSProperties,
|
|
19
|
-
CreateStyle,
|
|
20
|
-
CreateStyleType,
|
|
21
|
-
CreateStatic,
|
|
22
|
-
CreateTheme,
|
|
23
|
-
Keyframes,
|
|
24
|
-
ViewTransition,
|
|
25
|
-
ReturnType,
|
|
26
|
-
ReturnVariableType,
|
|
27
|
-
Variants,
|
|
28
|
-
ContainerStyleQuery,
|
|
29
|
-
} from './definition';
|
|
30
16
|
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
declare module '@plumeria/core' {
|
|
20
|
+
export type CSSProperties = import('./definition').CSSProperties;
|
|
21
|
+
export type CreateStyle = import('./definition').CreateStyle;
|
|
22
|
+
export type CreateStyleType<T> = import('./definition').CreateStyleType<T>;
|
|
23
|
+
export type CreateStatic = import('./definition').CreateStatic;
|
|
24
|
+
export type CreateTheme = import('./definition').CreateTheme;
|
|
25
|
+
export type Keyframes = import('./definition').Keyframes;
|
|
26
|
+
export type ViewTransition = import('./definition').ViewTransition;
|
|
27
|
+
export type ReturnType<T> = import('./definition').ReturnType<T>;
|
|
28
|
+
export type ReturnVariableType<T> = import('./definition').ReturnVariableType<T>;
|
|
29
|
+
export type Variants = import('./definition').Variants;
|
|
30
|
+
export type ContainerStyleQuery = import('./definition').ContainerStyleQuery;
|
|
31
31
|
export function create<const T extends Record<string, CSSProperties>>(_rule: CreateStyleType<T>): ReturnType<T>;
|
|
32
32
|
export function props(..._rules: (false | CSSProperties | null | undefined)[]): string;
|
|
33
33
|
export function createTheme<const T extends CreateTheme>(_rule: T): ReturnVariableType<T>;
|