@css-hooks/preact 1.6.0 → 1.7.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/README.md CHANGED
@@ -53,11 +53,16 @@ Please visit [css-hooks.com](https://css-hooks.com) to get started.
53
53
 
54
54
  - [@css-hooks/recommended](packages/recommended): Recommended hook configuration
55
55
  with sensible defaults
56
- - [@css-hooks/react](packages/react): React framework integration
57
- - [@css-hooks/preact](packages/preact): Preact framework integration
58
- - [@css-hooks/solid](packages/solid): Solid framework integration
59
- - [@css-hooks/awik](packages/qwik): Qwik framework integration
60
- - [@css-hooks/core](packages/core): Core package (internal / advanced use cases)
56
+ - [@css-hooks/react](https://github.com/css-hooks/css-hooks/tree/master/packages/react):
57
+ React framework integration
58
+ - [@css-hooks/preact](https://github.com/css-hooks/css-hooks/tree/master/packages/preact):
59
+ Preact framework integration
60
+ - [@css-hooks/solid](https://github.com/css-hooks/css-hooks/tree/master/packages/solid):
61
+ Solid framework integration
62
+ - [@css-hooks/qwik](https://github.com/css-hooks/css-hooks/tree/master/packages/qwik):
63
+ Qwik framework integration
64
+ - [@css-hooks/core](https://github.com/css-hooks/css-hooks/tree/master/packages/core):
65
+ Core package (internal / advanced use cases)
61
66
 
62
67
  ## Contributing
63
68
 
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@css-hooks/preact",
3
3
  "description": "CSS Hooks for Preact",
4
- "version": "1.6.0",
4
+ "version": "1.7.0",
5
5
  "author": "Nick Saunders",
6
6
  "dependencies": {
7
- "@css-hooks/core": "^1.6.0"
7
+ "@css-hooks/core": "^1.7.0"
8
8
  },
9
9
  "devDependencies": {
10
10
  "@tsconfig/strictest": "^2.0.1",
package/types/index.d.ts CHANGED
@@ -47,5 +47,6 @@ export declare const createHooks: <HookProperties extends string>(config: Record
47
47
  */
48
48
  }) & {
49
49
  fallback?: "unset" | "revert-layer";
50
- }) | undefined) => [string, (properties: import("@css-hooks/core").WithHooks<HookProperties, CSSProperties>) => CSSProperties];
50
+ sort?: boolean;
51
+ }) | undefined) => [string, (properties_0: import("@css-hooks/core").WithHooks<HookProperties, CSSProperties>, ...properties_1: (import("@css-hooks/core").WithHooks<HookProperties, CSSProperties> | undefined)[]) => CSSProperties];
51
52
  export { recommended };