@plumeria/core 0.17.1 → 0.18.0
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/css.js +0 -1
- package/dist/index.d.ts +2 -3
- package/dist/index.js +0 -4
- package/dist/index.mjs +0 -3
- package/package.json +1 -1
package/dist/css.js
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { CSSProperties, CreateKeyframes, CreateStyle, CreateStyleType, CreateTheme, CreateValues, ReturnType, ReturnVariableType, RxVariableSet } from "zss-engine";
|
|
2
2
|
|
|
3
3
|
declare const rx: (className: string, varSet: RxVariableSet) => {
|
|
4
4
|
className: string;
|
|
@@ -15,8 +15,7 @@ declare class StyleSheet {
|
|
|
15
15
|
static defineConsts<const T extends CreateValues>(object: T): T;
|
|
16
16
|
static defineVars<const T extends CreateValues>(object: T): ReturnVariableType<T>;
|
|
17
17
|
static defineTheme<const T extends CreateTheme>(object: T): ReturnVariableType<T>;
|
|
18
|
-
static global(object: CSSHTML): void;
|
|
19
18
|
}
|
|
20
19
|
declare const css: typeof StyleSheet;
|
|
21
20
|
|
|
22
|
-
export {
|
|
21
|
+
export { type CSSProperties, type CreateStyle, css, rx };
|
package/dist/index.js
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
"use strict";
|
|
2
1
|
const require_css = require('./css.js');
|
|
3
2
|
const zss_engine = require_css.__toESM(require("zss-engine"));
|
|
4
3
|
|
|
@@ -212,9 +211,6 @@ var StyleSheet = class {
|
|
|
212
211
|
static defineTheme(object) {
|
|
213
212
|
return defineTheme(object);
|
|
214
213
|
}
|
|
215
|
-
static global(object) {
|
|
216
|
-
return global(object);
|
|
217
|
-
}
|
|
218
214
|
};
|
|
219
215
|
const css = StyleSheet;
|
|
220
216
|
|
package/dist/index.mjs
CHANGED