react-grab 0.0.75 → 0.0.76
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 +1 -1
- package/dist/{chunk-BQIOOKBH.js → chunk-FZG56F6B.js} +2 -2
- package/dist/{chunk-T2UGKGNQ.cjs → chunk-IKBHXHKY.cjs} +2 -2
- package/dist/cli.cjs +273 -0
- package/dist/core.cjs +7 -7
- package/dist/core.js +1 -1
- package/dist/index.cjs +8 -8
- package/dist/index.global.js +2 -2
- package/dist/index.js +2 -2
- package/package.json +6 -3
package/README.md
CHANGED
|
@@ -19,7 +19,7 @@ https://github.com/user-attachments/assets/fdb34329-b471-4b39-b433-0b1a27a94bd8
|
|
|
19
19
|
Run this command to install React Grab into your project. Ensure you are running at project root (e.g. where the `next.config.ts` or `vite.config.ts` file is located).
|
|
20
20
|
|
|
21
21
|
```html
|
|
22
|
-
npx
|
|
22
|
+
npx react-grab@latest init
|
|
23
23
|
```
|
|
24
24
|
|
|
25
25
|
## Manual Installation
|
|
@@ -1078,7 +1078,7 @@ var buildOpenFileUrl = (filePath, lineNumber) => {
|
|
|
1078
1078
|
};
|
|
1079
1079
|
|
|
1080
1080
|
// src/constants.ts
|
|
1081
|
-
var VERSION = "0.0.
|
|
1081
|
+
var VERSION = "0.0.76";
|
|
1082
1082
|
var VIEWPORT_MARGIN_PX = 8;
|
|
1083
1083
|
var OFFSCREEN_POSITION = -1e3;
|
|
1084
1084
|
var SELECTION_LERP_FACTOR = 0.95;
|
|
@@ -6785,7 +6785,7 @@ var init = (rawOptions) => {
|
|
|
6785
6785
|
hasInited = true;
|
|
6786
6786
|
const logIntro = () => {
|
|
6787
6787
|
try {
|
|
6788
|
-
const version = "0.0.
|
|
6788
|
+
const version = "0.0.76";
|
|
6789
6789
|
const logoDataUri = `data:image/svg+xml;base64,${btoa(LOGO_SVG)}`;
|
|
6790
6790
|
console.log(`%cReact Grab${version ? ` v${version}` : ""}%c
|
|
6791
6791
|
https://react-grab.com`, `background: #330039; color: #ffffff; border: 1px solid #d75fcb; padding: 4px 4px 4px 24px; border-radius: 4px; background-image: url("${logoDataUri}"); background-size: 16px 16px; background-repeat: no-repeat; background-position: 4px center; display: inline-block; margin-bottom: 4px;`, "");
|
|
@@ -1080,7 +1080,7 @@ var buildOpenFileUrl = (filePath, lineNumber) => {
|
|
|
1080
1080
|
};
|
|
1081
1081
|
|
|
1082
1082
|
// src/constants.ts
|
|
1083
|
-
var VERSION = "0.0.
|
|
1083
|
+
var VERSION = "0.0.76";
|
|
1084
1084
|
var VIEWPORT_MARGIN_PX = 8;
|
|
1085
1085
|
var OFFSCREEN_POSITION = -1e3;
|
|
1086
1086
|
var SELECTION_LERP_FACTOR = 0.95;
|
|
@@ -6787,7 +6787,7 @@ var init = (rawOptions) => {
|
|
|
6787
6787
|
hasInited = true;
|
|
6788
6788
|
const logIntro = () => {
|
|
6789
6789
|
try {
|
|
6790
|
-
const version = "0.0.
|
|
6790
|
+
const version = "0.0.76";
|
|
6791
6791
|
const logoDataUri = `data:image/svg+xml;base64,${btoa(LOGO_SVG)}`;
|
|
6792
6792
|
console.log(`%cReact Grab${version ? ` v${version}` : ""}%c
|
|
6793
6793
|
https://react-grab.com`, `background: #330039; color: #ffffff; border: 1px solid #d75fcb; padding: 4px 4px 4px 24px; border-radius: 4px; background-image: url("${logoDataUri}"); background-size: 16px 16px; background-repeat: no-repeat; background-position: 4px center; display: inline-block; margin-bottom: 4px;`, "");
|