@css-hooks/qwik 3.2.0-next.9 → 4.0.0-next.2

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,22 +1,24 @@
1
1
  /**
2
- * CSS Hooks for {@link https://qwik.dev | Qwik}
2
+ * CSS Hooks for {@link https://qwik.dev | Qwik}
3
3
  *
4
4
  * @packageDocumentation
5
5
  */
6
6
  import type { CSSProperties } from "@builder.io/qwik";
7
+ import type { CreateHooksFn } from "@css-hooks/core";
8
+ import type { CSSPropertyConflicts } from "./css-property-conflicts.ts";
7
9
  export type * from "@css-hooks/core";
8
10
  /** @internal */
9
11
  export declare function _stringifyValue(value: unknown, propertyName: string): string | null;
10
12
  /**
11
13
  * A {@link @css-hooks/core#CreateHooksFn} configured to use Qwik's
12
- * `CSSProperties` type and logic for converting CSS values into strings.
14
+ * `CSSProperties` type and logic for converting CSS values into strings
13
15
  *
14
16
  * @public
15
17
  */
16
- export declare const createHooks: import("@css-hooks/core").CreateHooksFn<CSSProperties>;
18
+ export declare const createHooks: CreateHooksFn<CSSProperties, CSSPropertyConflicts>;
17
19
  /**
18
- * Following code (c) Builder.io.
19
- * Source modified to account for custom properties.
20
+ * Following code (c) Builder.io. Source modified to account for custom
21
+ * properties.
20
22
  */
21
23
  /**
22
24
  * CSS properties which accept numbers but are not in units of "px".