@rork-ai/toolkit-dev-sdk 0.2.7 → 0.2.9
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/lib/module/index.53.js +18 -0
- package/lib/module/index.53.js.map +1 -0
- package/lib/module/inspector.53.web.js +11 -0
- package/lib/module/inspector.53.web.js.map +1 -0
- package/lib/typescript/src/index.53.d.ts +4 -0
- package/lib/typescript/src/index.53.d.ts.map +1 -0
- package/lib/typescript/src/inspector.53.web.d.ts +4 -0
- package/lib/typescript/src/inspector.53.web.d.ts.map +1 -0
- package/package.json +12 -2
- package/src/index.53.tsx +13 -0
- package/src/inspector.53.web.tsx +3 -0
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
import { RorkErrorBoundary } from "./error-boundary.js";
|
|
4
|
+
import { BundleInspector } from "./inspector.53";
|
|
5
|
+
import { RorkSafeInsets } from "./safe-insets-content";
|
|
6
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
7
|
+
export function RorkDevWrapper({
|
|
8
|
+
children
|
|
9
|
+
}) {
|
|
10
|
+
return /*#__PURE__*/_jsx(RorkErrorBoundary, {
|
|
11
|
+
children: /*#__PURE__*/_jsx(BundleInspector, {
|
|
12
|
+
children: /*#__PURE__*/_jsx(RorkSafeInsets, {
|
|
13
|
+
children: children
|
|
14
|
+
})
|
|
15
|
+
})
|
|
16
|
+
});
|
|
17
|
+
}
|
|
18
|
+
//# sourceMappingURL=index.53.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["RorkErrorBoundary","BundleInspector","RorkSafeInsets","jsx","_jsx","RorkDevWrapper","children"],"sourceRoot":"../../src","sources":["index.53.tsx"],"mappings":";;AAAA,SAASA,iBAAiB,QAAQ,qBAAkB;AACpD,SAASC,eAAe,QAAQ,gBAAgB;AAChD,SAASC,cAAc,QAAQ,uBAAuB;AAAC,SAAAC,GAAA,IAAAC,IAAA;AAEvD,OAAO,SAASC,cAAcA,CAAC;EAAEC;AAAwC,CAAC,EAAE;EAC1E,oBACEF,IAAA,CAACJ,iBAAiB;IAAAM,QAAA,eAChBF,IAAA,CAACH,eAAe;MAAAK,QAAA,eACdF,IAAA,CAACF,cAAc;QAAAI,QAAA,EAAEA;MAAQ,CAAiB;IAAC,CAC5B;EAAC,CACD,CAAC;AAExB","ignoreList":[]}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
import { Fragment as _Fragment, jsx as _jsx } from "react/jsx-runtime";
|
|
4
|
+
export function BundleInspector({
|
|
5
|
+
children
|
|
6
|
+
}) {
|
|
7
|
+
return /*#__PURE__*/_jsx(_Fragment, {
|
|
8
|
+
children: children
|
|
9
|
+
});
|
|
10
|
+
}
|
|
11
|
+
//# sourceMappingURL=inspector.53.web.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["BundleInspector","children","_jsx","_Fragment"],"sourceRoot":"../../src","sources":["inspector.53.web.tsx"],"mappings":";;;AAAA,OAAO,SAASA,eAAeA,CAAC;EAAEC;AAAwC,CAAC,EAAE;EAC3E,oBAAOC,IAAA,CAAAC,SAAA;IAAAF,QAAA,EAAGA;EAAQ,CAAG,CAAC;AACxB","ignoreList":[]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.53.d.ts","sourceRoot":"","sources":["../../../src/index.53.tsx"],"names":[],"mappings":"AAIA,wBAAgB,cAAc,CAAC,EAAE,QAAQ,EAAE,EAAE;IAAE,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAA;CAAE,2CAQzE"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"inspector.53.web.d.ts","sourceRoot":"","sources":["../../../src/inspector.53.web.tsx"],"names":[],"mappings":"AAAA,wBAAgB,eAAe,CAAC,EAAE,QAAQ,EAAE,EAAE;IAAE,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAA;CAAE,2CAE1E"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rork-ai/toolkit-dev-sdk",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.9",
|
|
4
4
|
"author": "Levan Kvirkvelia <lekvirkvelia@gmail.com> (https://github.com/LevanKvirkvelia)",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -39,7 +39,17 @@
|
|
|
39
39
|
"types": "./lib/typescript/src/index.d.ts",
|
|
40
40
|
"default": "./lib/module/index.js"
|
|
41
41
|
},
|
|
42
|
-
"./package.json": "./package.json"
|
|
42
|
+
"./package.json": "./package.json",
|
|
43
|
+
"v53": {
|
|
44
|
+
"source": "./src/index.53.tsx",
|
|
45
|
+
"types": "./lib/typescript/src/index.53.d.ts",
|
|
46
|
+
"default": "./lib/module/index.53.js"
|
|
47
|
+
},
|
|
48
|
+
"v54": {
|
|
49
|
+
"source": "./src/index.tsx",
|
|
50
|
+
"types": "./lib/typescript/src/index.d.ts",
|
|
51
|
+
"default": "./lib/module/index.js"
|
|
52
|
+
}
|
|
43
53
|
},
|
|
44
54
|
"bugs": {
|
|
45
55
|
"url": "https://github.com/LevanKvirkvelia/rork-ai-toolkit-dev-sdk/issues"
|
package/src/index.53.tsx
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { RorkErrorBoundary } from "./error-boundary";
|
|
2
|
+
import { BundleInspector } from "./inspector.53";
|
|
3
|
+
import { RorkSafeInsets } from "./safe-insets-content";
|
|
4
|
+
|
|
5
|
+
export function RorkDevWrapper({ children }: { children: React.ReactNode }) {
|
|
6
|
+
return (
|
|
7
|
+
<RorkErrorBoundary>
|
|
8
|
+
<BundleInspector>
|
|
9
|
+
<RorkSafeInsets>{children}</RorkSafeInsets>
|
|
10
|
+
</BundleInspector>
|
|
11
|
+
</RorkErrorBoundary>
|
|
12
|
+
);
|
|
13
|
+
}
|