@vitus-labs/connector-styler 2.6.2 → 2.7.1

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.
Files changed (2) hide show
  1. package/lib/index.d.ts +1 -7
  2. package/package.json +5 -5
package/lib/index.d.ts CHANGED
@@ -4,13 +4,7 @@ import { CSSResult, createGlobalStyle, css, keyframes, styled, useCSS, useTheme
4
4
  declare module '@vitus-labs/core' {
5
5
  interface CSSEngineResult extends CSSResult {}
6
6
  }
7
- declare const provider: ({
8
- theme,
9
- children
10
- }: {
11
- theme: any;
12
- children: any;
13
- }) => import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
7
+ declare const provider: any;
14
8
  //#endregion
15
9
  export { createGlobalStyle, css, keyframes, provider, styled, useCSS, useTheme };
16
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.6.2",
3
+ "version": "2.7.1",
4
4
  "license": "MIT",
5
5
  "author": "Vit Bokisch <vit@bokisch.cz>",
6
6
  "maintainers": [
@@ -50,14 +50,14 @@
50
50
  "typecheck": "tsc --noEmit"
51
51
  },
52
52
  "peerDependencies": {
53
- "@vitus-labs/core": "^2.6.2",
54
- "@vitus-labs/styler": "^2.6.2",
53
+ "@vitus-labs/core": "^2.7.1",
54
+ "@vitus-labs/styler": "^2.7.1",
55
55
  "react": ">= 19"
56
56
  },
57
57
  "devDependencies": {
58
58
  "@vitus-labs/core": "workspace:*",
59
59
  "@vitus-labs/styler": "workspace:*",
60
- "@vitus-labs/tools-rolldown": "2.3.1",
61
- "@vitus-labs/tools-typescript": "2.3.1"
60
+ "@vitus-labs/tools-rolldown": "2.5.0",
61
+ "@vitus-labs/tools-typescript": "2.5.0"
62
62
  }
63
63
  }