Files
formipay/node_modules/clone-deep/package.json
dwindown e8fbfb14c1 fix: prevent asset conflicts between React and Grid.js versions
Add coexistence checks to all enqueue methods to prevent loading
both React and Grid.js assets simultaneously.

Changes:
- ReactAdmin.php: Only enqueue React assets when ?react=1
- Init.php: Skip Grid.js when React active on admin pages
- Form.php, Coupon.php, Access.php: Restore classic assets when ?react=0
- Customer.php, Product.php, License.php: Add coexistence checks

Now the toggle between Classic and React versions works correctly.

Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com>
2026-04-18 17:02:14 +07:00

68 lines
1.3 KiB
JSON

{
"name": "clone-deep",
"description": "Recursively (deep) clone JavaScript native types, like Object, Array, RegExp, Date as well as primitives.",
"version": "0.2.4",
"homepage": "https://github.com/jonschlinkert/clone-deep",
"author": "Jon Schlinkert (https://github.com/jonschlinkert)",
"repository": "jonschlinkert/clone-deep",
"bugs": {
"url": "https://github.com/jonschlinkert/clone-deep/issues"
},
"license": "MIT",
"files": [
"index.js",
"utils.js"
],
"main": "index.js",
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "mocha"
},
"dependencies": {
"for-own": "^0.1.3",
"is-plain-object": "^2.0.1",
"kind-of": "^3.0.2",
"lazy-cache": "^1.0.3",
"shallow-clone": "^0.1.2"
},
"devDependencies": {
"mocha": "*",
"should": "*"
},
"keywords": [
"array",
"clone",
"clone-array",
"clone-array-deep",
"clone-date",
"clone-deep",
"clone-object",
"clone-object-deep",
"clone-reg-exp",
"date",
"deep",
"exp",
"for",
"for-in",
"for-own",
"javascript",
"mixin",
"mixin-object",
"object",
"own",
"reg",
"util",
"utility"
],
"verb": {
"related": {
"list": []
},
"plugins": [
"gulp-format-md"
]
}
}