@css-hooks/solid 3.2.0-next.9 → 4.0.0-next.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.
package/types/index.d.ts CHANGED
@@ -1,14 +1,16 @@
1
1
  /**
2
- * CSS Hooks for {@link https://www.solidjs.com/ | Solid}
2
+ * CSS Hooks for {@link https://www.solidjs.com/ | Solid}
3
3
  *
4
4
  * @packageDocumentation
5
5
  */
6
+ import type { CreateHooksFn } from "@css-hooks/core";
6
7
  import type { JSX } from "solid-js";
8
+ import type { CSSPropertyConflicts } from "./css-property-conflicts.ts";
7
9
  export type * from "@css-hooks/core";
8
10
  /**
9
11
  * A {@link @css-hooks/core#CreateHooksFn} configured to use Solid's
10
- * `JSX.CSSProperties` type and logic for converting CSS values into strings.
12
+ * `JSX.CSSProperties` type and logic for converting CSS values into strings
11
13
  *
12
14
  * @public
13
15
  */
14
- export declare const createHooks: import("@css-hooks/core").CreateHooksFn<JSX.CSSProperties>;
16
+ export declare const createHooks: CreateHooksFn<JSX.CSSProperties, CSSPropertyConflicts>;