next-yak 5.3.1 → 5.5.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/dist/jsx-runtime.d.cts +1 -3
- package/dist/jsx-runtime.d.ts +1 -3
- package/package.json +18 -18
package/dist/jsx-runtime.d.cts
CHANGED
|
@@ -11,9 +11,7 @@ type ComponentStyles<TProps> = (props: TProps) => {
|
|
|
11
11
|
type WithConditionalCSSProp<P> = "className" | "style" extends keyof P ? string extends P["className" & keyof P] ? Record<string, any> extends P["style" & keyof P] ? {
|
|
12
12
|
css?: ComponentStyles<Record<keyof any, never>>;
|
|
13
13
|
} : {} : {} : {};
|
|
14
|
-
declare const Fragment: React$1.ExoticComponent<
|
|
15
|
-
children?: React$1.ReactNode | undefined;
|
|
16
|
-
}>;
|
|
14
|
+
declare const Fragment: React$1.ExoticComponent<React$1.FragmentProps>;
|
|
17
15
|
declare const jsx: typeof ReactJSXRuntime.jsx;
|
|
18
16
|
declare const jsxs: typeof ReactJSXRuntime.jsxs;
|
|
19
17
|
declare namespace YakJSX {
|
package/dist/jsx-runtime.d.ts
CHANGED
|
@@ -11,9 +11,7 @@ type ComponentStyles<TProps> = (props: TProps) => {
|
|
|
11
11
|
type WithConditionalCSSProp<P> = "className" | "style" extends keyof P ? string extends P["className" & keyof P] ? Record<string, any> extends P["style" & keyof P] ? {
|
|
12
12
|
css?: ComponentStyles<Record<keyof any, never>>;
|
|
13
13
|
} : {} : {} : {};
|
|
14
|
-
declare const Fragment: React$1.ExoticComponent<
|
|
15
|
-
children?: React$1.ReactNode | undefined;
|
|
16
|
-
}>;
|
|
14
|
+
declare const Fragment: React$1.ExoticComponent<React$1.FragmentProps>;
|
|
17
15
|
declare const jsx: typeof ReactJSXRuntime.jsx;
|
|
18
16
|
declare const jsxs: typeof ReactJSXRuntime.jsxs;
|
|
19
17
|
declare namespace YakJSX {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "next-yak",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.5.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"types": "./dist/",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -63,28 +63,28 @@
|
|
|
63
63
|
"./loaders/css-loader": "./dist/loaders/css-loader.js"
|
|
64
64
|
},
|
|
65
65
|
"dependencies": {
|
|
66
|
-
"@babel/core": "7.26.
|
|
66
|
+
"@babel/core": "7.26.10",
|
|
67
67
|
"@babel/plugin-syntax-typescript": "7.25.9",
|
|
68
|
-
"yak-swc": "5.
|
|
68
|
+
"yak-swc": "5.5.0"
|
|
69
69
|
},
|
|
70
70
|
"devDependencies": {
|
|
71
|
-
"@types
|
|
72
|
-
"@types/webpack": "5.28.5",
|
|
73
|
-
"@babel/types": "7.26.3",
|
|
71
|
+
"@babel/types": "7.27.0",
|
|
74
72
|
"@testing-library/jest-dom": "6.6.3",
|
|
75
|
-
"@testing-library/react": "16.
|
|
73
|
+
"@testing-library/react": "16.3.0",
|
|
74
|
+
"@types/babel__core": "7.20.5",
|
|
76
75
|
"@types/jest": "29.5.14",
|
|
77
|
-
"@types/node": "22.
|
|
78
|
-
"@types/react": "19.
|
|
79
|
-
"@types/react-dom": "19.
|
|
80
|
-
"
|
|
81
|
-
"
|
|
82
|
-
"
|
|
83
|
-
"
|
|
84
|
-
"
|
|
85
|
-
"
|
|
86
|
-
"
|
|
87
|
-
"
|
|
76
|
+
"@types/node": "22.15.2",
|
|
77
|
+
"@types/react": "19.1.2",
|
|
78
|
+
"@types/react-dom": "19.1.2",
|
|
79
|
+
"@types/webpack": "5.28.5",
|
|
80
|
+
"fast-glob": "3.3.3",
|
|
81
|
+
"jsdom": "26.1.0",
|
|
82
|
+
"next": "15.3.1",
|
|
83
|
+
"react": "19.1.0",
|
|
84
|
+
"tsup": "8.4.0",
|
|
85
|
+
"typescript": "5.8.3",
|
|
86
|
+
"vite": "6.3.3",
|
|
87
|
+
"vitest": "3.1.2"
|
|
88
88
|
},
|
|
89
89
|
"files": [
|
|
90
90
|
"dist",
|