@absolutejs/absolute 0.19.0-beta.652 → 0.19.0-beta.653
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/build.js +7 -2
- package/dist/build.js.map +3 -3
- package/dist/cli/index.js +11 -3
- package/dist/index.js +7 -2
- package/dist/index.js.map +3 -3
- package/dist/src/react/jsxDevRuntimeCompat.d.ts +11 -0
- package/package.json +7 -7
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Fragment, jsx } from 'react/jsx-runtime';
|
|
2
|
+
type JSXType = Parameters<typeof jsx>[0];
|
|
3
|
+
type JSXKey = Parameters<typeof jsx>[2];
|
|
4
|
+
type JSXProps = Record<string, unknown> | null | undefined;
|
|
5
|
+
export { Fragment };
|
|
6
|
+
export declare const jsxDEV: (type: JSXType, props: JSXProps, key?: JSXKey, _isStaticChildren?: boolean, _source?: unknown, _self?: unknown) => import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
7
|
+
declare const _default: {
|
|
8
|
+
Fragment: import("react").ExoticComponent<import("react").FragmentProps>;
|
|
9
|
+
jsxDEV: (type: JSXType, props: JSXProps, key?: JSXKey, _isStaticChildren?: boolean, _source?: unknown, _self?: unknown) => import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
10
|
+
};
|
|
11
|
+
export default _default;
|
package/package.json
CHANGED
|
@@ -216,12 +216,12 @@
|
|
|
216
216
|
"main": "./dist/index.js",
|
|
217
217
|
"name": "@absolutejs/absolute",
|
|
218
218
|
"optionalDependencies": {
|
|
219
|
-
"@absolutejs/native-darwin-arm64": "0.19.0-beta.
|
|
220
|
-
"@absolutejs/native-darwin-x64": "0.19.0-beta.
|
|
221
|
-
"@absolutejs/native-linux-arm64": "0.19.0-beta.
|
|
222
|
-
"@absolutejs/native-linux-x64": "0.19.0-beta.
|
|
223
|
-
"@absolutejs/native-windows-arm64": "0.19.0-beta.
|
|
224
|
-
"@absolutejs/native-windows-x64": "0.19.0-beta.
|
|
219
|
+
"@absolutejs/native-darwin-arm64": "0.19.0-beta.653",
|
|
220
|
+
"@absolutejs/native-darwin-x64": "0.19.0-beta.653",
|
|
221
|
+
"@absolutejs/native-linux-arm64": "0.19.0-beta.653",
|
|
222
|
+
"@absolutejs/native-linux-x64": "0.19.0-beta.653",
|
|
223
|
+
"@absolutejs/native-windows-arm64": "0.19.0-beta.653",
|
|
224
|
+
"@absolutejs/native-windows-x64": "0.19.0-beta.653"
|
|
225
225
|
},
|
|
226
226
|
"overrides": {
|
|
227
227
|
"@typescript-eslint/utils": "8.56.1"
|
|
@@ -302,5 +302,5 @@
|
|
|
302
302
|
"typecheck": "bun run src/cli/index.ts typecheck --config example/absolute.config.ts"
|
|
303
303
|
},
|
|
304
304
|
"types": "./dist/src/index.d.ts",
|
|
305
|
-
"version": "0.19.0-beta.
|
|
305
|
+
"version": "0.19.0-beta.653"
|
|
306
306
|
}
|