purse-styles 0.2.2 → 0.2.3
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/dist/purse.d.ts +1 -1
- package/package.json +6 -5
package/dist/purse.d.ts
CHANGED
|
@@ -38,7 +38,7 @@ export type InMemoryStyleApi = {
|
|
|
38
38
|
export declare function createInMemoryStyleApi(): InMemoryStyleApi;
|
|
39
39
|
export declare function PurseProvider(props: {
|
|
40
40
|
children?: React.ReactNode;
|
|
41
|
-
}):
|
|
41
|
+
}): React.JSX.Element;
|
|
42
42
|
/** Compile a style object against a selector (same nesting rules as `style()`). */
|
|
43
43
|
export declare function compileGlobalStyleRules(selector: string, cssProperties: CSSProperties): StyleRule[];
|
|
44
44
|
export type StyleArgument = CSSProperties | StyleElement | false | null | undefined;
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "purse-styles",
|
|
3
3
|
"type": "module",
|
|
4
4
|
"main": "./dist/index.js",
|
|
5
|
-
"version": "0.2.
|
|
5
|
+
"version": "0.2.3",
|
|
6
6
|
"author": "Tanishq Kancharla <tanishqkancharla3@gmail.com>",
|
|
7
7
|
"description": "A basic styling solution for web apps with an emphasis on simplicity and purity.",
|
|
8
8
|
"keywords": [],
|
|
@@ -28,21 +28,22 @@
|
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"@types/lodash-es": "^4.17.12",
|
|
30
30
|
"@types/node": "^22.20.1",
|
|
31
|
-
"@types/react": "^
|
|
32
|
-
"@types/react-dom": "^
|
|
31
|
+
"@types/react": "^19.2.18",
|
|
32
|
+
"@types/react-dom": "^19.2.5",
|
|
33
33
|
"@vitejs/plugin-react": "^6.0.3",
|
|
34
34
|
"@vitest/browser-playwright": "^4.1.10",
|
|
35
35
|
"ansi-colors": "^4.1.3",
|
|
36
36
|
"esbuild": "^0.28.1",
|
|
37
37
|
"playwright": "^1.61.1",
|
|
38
|
-
"react
|
|
38
|
+
"react": "^19.2.8",
|
|
39
|
+
"react-dom": "^19.2.8",
|
|
39
40
|
"tsx": "^4.23.1",
|
|
40
41
|
"typescript": "^5.4.5",
|
|
41
42
|
"vitest": "^4.1.10",
|
|
42
43
|
"vitest-browser-react": "^2.2.0"
|
|
43
44
|
},
|
|
44
45
|
"peerDependencies": {
|
|
45
|
-
"react": "^18.3.1"
|
|
46
|
+
"react": "^18.3.1 || ^19.0.0"
|
|
46
47
|
},
|
|
47
48
|
"dependencies": {
|
|
48
49
|
"csstype": "^3.1.3",
|