@css-hooks/solid 4.0.0-next.1 → 4.0.0-next.11
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 +5 -5
- package/package.json +2 -2
- package/types/css-property-conflicts.d.ts +5 -1
- package/types/index.d.ts +1 -0
package/README.md
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
<div align="center">
|
|
2
|
-
<a id="logomark" href="https://next.css-hooks.com"><img alt="CSS Hooks" src="https://github.com/css-hooks/css-hooks/raw/v4.0.0-next.
|
|
2
|
+
<a id="logomark" href="https://next.css-hooks.com"><img alt="CSS Hooks" src="https://github.com/css-hooks/css-hooks/raw/v4.0.0-next.11/.github/logomark.svg" height="128" /></a><br/><br/>
|
|
3
3
|
<div id="wordmark">
|
|
4
|
-
<a href="https://next.css-hooks.com"><img alt="CSS Hooks" src="https://github.com/css-hooks/css-hooks/raw/v4.0.0-next.
|
|
4
|
+
<a href="https://next.css-hooks.com"><img alt="CSS Hooks" src="https://github.com/css-hooks/css-hooks/raw/v4.0.0-next.11/.github/wordmark-dark.svg" width="256"></a>
|
|
5
5
|
</div>
|
|
6
6
|
</div>
|
|
7
7
|
|
|
8
8
|
<br/>
|
|
9
9
|
|
|
10
10
|
<div align="center" id="badges">
|
|
11
|
-
<a href="https://github.com/css-hooks/css-hooks/tree/v4.0.0-next.
|
|
12
|
-
<a href="https://www.npmjs.com/package/@css-hooks/solid/v/4.0.0-next.
|
|
13
|
-
<a href="https://github.com/css-hooks/css-hooks/blob/v4.0.0-next.
|
|
11
|
+
<a href="https://github.com/css-hooks/css-hooks/tree/v4.0.0-next.11"><img src="https://img.shields.io/badge/tag-v4.0.0--next.11-ffd700" alt="tag v4.0.0-next.11"></a>
|
|
12
|
+
<a href="https://www.npmjs.com/package/@css-hooks/solid/v/4.0.0-next.11"><img src="https://img.shields.io/badge/npm-v4.0.0--next.11-ffd700" alt="npm version"></a>
|
|
13
|
+
<a href="https://github.com/css-hooks/css-hooks/blob/v4.0.0-next.11/LICENSE"><img src="https://img.shields.io/badge/license-MIT-ffd700" alt="license"></a>
|
|
14
14
|
</div>
|
|
15
15
|
|
|
16
16
|
---
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@css-hooks/solid",
|
|
3
3
|
"description": "CSS Hooks for Solid",
|
|
4
|
-
"version": "4.0.0-next.
|
|
4
|
+
"version": "4.0.0-next.11",
|
|
5
5
|
"author": "Nick Saunders",
|
|
6
6
|
"dependencies": {
|
|
7
|
-
"@css-hooks/core": "4.0.0-next.
|
|
7
|
+
"@css-hooks/core": "4.0.0-next.11"
|
|
8
8
|
},
|
|
9
9
|
"devDependencies": {
|
|
10
10
|
"remeda": "^2.45.0",
|
|
@@ -1,4 +1,8 @@
|
|
|
1
|
-
/**
|
|
1
|
+
/**
|
|
2
|
+
* A map of conflicting CSS property names
|
|
3
|
+
*
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
2
6
|
export type CSSPropertyConflicts = {
|
|
3
7
|
"-webkit-align-content": "align-content" | "all" | "place-content";
|
|
4
8
|
"-webkit-align-items": "align-items" | "all" | "place-items";
|
package/types/index.d.ts
CHANGED
|
@@ -7,6 +7,7 @@ import type { CreateHooksFn } from "@css-hooks/core";
|
|
|
7
7
|
import type { JSX } from "solid-js";
|
|
8
8
|
import type { CSSPropertyConflicts } from "./css-property-conflicts.ts";
|
|
9
9
|
export type * from "@css-hooks/core";
|
|
10
|
+
export type { CSSPropertyConflicts } from "./css-property-conflicts.ts";
|
|
10
11
|
/**
|
|
11
12
|
* A {@link @css-hooks/core#CreateHooksFn} configured to use Solid's
|
|
12
13
|
* `JSX.CSSProperties` type and logic for converting CSS values into strings
|