🚀 Big News:Socket Has Acquired Secure Annex.Learn More
Socket
Book a DemoSign in
Socket

@hugerte/hugerte-react

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@hugerte/hugerte-react - npm Package Compare versions

Comparing version
2.0.1
to
2.0.2
+6
-1
CHANGELOG.md

@@ -9,6 +9,11 @@ # Change log

## 2.0.2 - 2025-08-30
## Fixed
- Removed console log spam left over from debugging.
## 2.0.1 - 2025-06-30
## Fixed
- Building a project using `@hugerte/hugerte-react` failed without manually adding `@hugerte/framework-integratio-shared` as a dependency.
- Building a project using `@hugerte/hugerte-react` failed without manually adding `@hugerte/framework-integration-shared` as a dependency.

@@ -15,0 +20,0 @@ ## 2.0.0 - 2025-06-30

+1
-3

@@ -8,5 +8,3 @@ "use strict";

const isEventProp = (name) => {
const what = name.startsWith('on') /* && name !== 'onEditorChange' */;
console.log('isEventProp', name, what);
return what;
return name.startsWith('on') /* && name !== 'onEditorChange' */;
};

@@ -13,0 +11,0 @@ const eventAttrToEventName = (attrName) => attrName.substring(2);

// TODO: Use what possible from `@hugerte/framework-integration-shared`
export const isFunction = (x) => typeof x === 'function';
const isEventProp = (name) => {
const what = name.startsWith('on') /* && name !== 'onEditorChange' */;
console.log('isEventProp', name, what);
return what;
return name.startsWith('on') /* && name !== 'onEditorChange' */;
};

@@ -8,0 +6,0 @@ const eventAttrToEventName = (attrName) => attrName.substring(2);

@@ -15,10 +15,2 @@ {

"module": "lib/es2015/main/ts/index.js",
"scripts": {
"lint": "eslint 'src/**/*.ts?(x)'",
"clean": "rimraf lib",
"test": "bedrock-auto -b chrome-headless -f src/test/ts/**/*Test.ts",
"test-manual": "bedrock -f src/test/ts/**/*Test.ts",
"build": "yarn run clean && tsc -p ./tsconfig.es2015.json && tsc -p ./tsconfig.cjs.json",
"watch": "tsc -w -p ./tsconfig.es2015.json"
},
"keywords": [

@@ -46,9 +38,9 @@ "hugerte",

"@tinymce/eslint-plugin": "^3.0.0",
"@types/node": "^22.15.34",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@types/node": "^22.17.2",
"@types/react": "^19.1.10",
"@types/react-dom": "^19.1.7",
"hugerte": "^1.0.9",
"hugerte-1": "npm:hugerte@^1.0.9",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"rimraf": "^6.0.1",

@@ -58,6 +50,14 @@ "typescript": "~5.8.3",

},
"version": "2.0.1",
"version": "2.0.2",
"dependencies": {
"@hugerte/framework-integration-shared": "^1.0.1"
"@hugerte/framework-integration-shared": "^1.1.0"
},
"scripts": {
"lint": "eslint 'src/**/*.ts?(x)'",
"clean": "rimraf lib",
"test": "bedrock-auto -b chrome-headless -f src/test/ts/**/*Test.ts",
"test-manual": "bedrock -f src/test/ts/**/*Test.ts",
"build": "yarn run clean && tsc -p ./tsconfig.es2015.json && tsc -p ./tsconfig.cjs.json",
"watch": "tsc -w -p ./tsconfig.es2015.json"
}
}
}