@vitus-labs/connector-styler 2.0.0 → 2.2.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/lib/index.d.ts +5 -9
- package/package.json +7 -6
package/lib/index.d.ts
CHANGED
|
@@ -1,14 +1,10 @@
|
|
|
1
|
-
import
|
|
2
|
-
import { createGlobalStyle, css, keyframes, styled, useCSS, useTheme } from "@vitus-labs/styler";
|
|
1
|
+
import { CSSResult, createGlobalStyle, css, keyframes, styled, useCSS, useTheme } from "@vitus-labs/styler";
|
|
3
2
|
|
|
4
3
|
//#region src/index.d.ts
|
|
5
|
-
declare
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
theme: any;
|
|
10
|
-
children: any;
|
|
11
|
-
}) => _$react.ReactElement<unknown, string | _$react.JSXElementConstructor<any>>;
|
|
4
|
+
declare module '@vitus-labs/core' {
|
|
5
|
+
interface CSSEngineResult extends CSSResult {}
|
|
6
|
+
}
|
|
7
|
+
declare const provider: any;
|
|
12
8
|
//#endregion
|
|
13
9
|
export { createGlobalStyle, css, keyframes, provider, styled, useCSS, useTheme };
|
|
14
10
|
//# sourceMappingURL=index2.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vitus-labs/connector-styler",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.2.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"author": "Vit Bokisch <vit@bokisch.cz>",
|
|
6
6
|
"maintainers": [
|
|
@@ -47,16 +47,17 @@
|
|
|
47
47
|
"build": "bun run vl_rolldown_build",
|
|
48
48
|
"build:watch": "bun run vl_rolldown_build-watch",
|
|
49
49
|
"lint": "biome check src/",
|
|
50
|
-
"typecheck": "tsc --noEmit"
|
|
51
|
-
"version": "node ../../scripts/sync-peer-deps.mjs"
|
|
50
|
+
"typecheck": "tsc --noEmit"
|
|
52
51
|
},
|
|
53
52
|
"peerDependencies": {
|
|
54
|
-
"@vitus-labs/
|
|
53
|
+
"@vitus-labs/core": "workspace:^",
|
|
54
|
+
"@vitus-labs/styler": "workspace:^",
|
|
55
55
|
"react": ">= 19"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
58
|
+
"@vitus-labs/core": "workspace:*",
|
|
58
59
|
"@vitus-labs/styler": "workspace:*",
|
|
59
|
-
"@vitus-labs/tools-rolldown": "2.
|
|
60
|
-
"@vitus-labs/tools-typescript": "2.
|
|
60
|
+
"@vitus-labs/tools-rolldown": "2.3.0",
|
|
61
|
+
"@vitus-labs/tools-typescript": "2.3.0"
|
|
61
62
|
}
|
|
62
63
|
}
|