Socket
Socket
Sign inDemoInstall

@babel/plugin-transform-react-inline-elements

Package Overview
Dependencies
Maintainers
4
Versions
72
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@babel/plugin-transform-react-inline-elements - npm Package Compare versions

Comparing version 7.22.5 to 8.0.0-alpha.0

35

lib/index.js

@@ -1,11 +0,6 @@

"use strict";
import { declare } from '@babel/helper-plugin-utils';
import helper from '@babel/helper-builder-react-jsx';
import { types } from '@babel/core';
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
var _helperPluginUtils = require("@babel/helper-plugin-utils");
var _helperBuilderReactJsx = require("@babel/helper-builder-react-jsx");
var _core = require("@babel/core");
var _default = (0, _helperPluginUtils.declare)(api => {
var index = declare(api => {
api.assertVersion(7);

@@ -15,3 +10,3 @@ function hasRefOrSpread(attrs) {

const attr = attrs[i];
if (_core.types.isJSXSpreadAttribute(attr)) return true;
if (types.isJSXSpreadAttribute(attr)) return true;
if (isJSXAttributeOfName(attr, "ref")) return true;

@@ -22,7 +17,7 @@ }

function isJSXAttributeOfName(attr, name) {
return _core.types.isJSXAttribute(attr) && _core.types.isJSXIdentifier(attr.name, {
return types.isJSXAttribute(attr) && types.isJSXIdentifier(attr.name, {
name: name
});
}
const visitor = (0, _helperBuilderReactJsx.default)({
const visitor = helper({
filter(node) {

@@ -34,4 +29,4 @@ return node.type === "JSXElement" && !hasRefOrSpread(node.openingElement.attributes);

const args = state.args;
if (_core.types.react.isCompatTag(tagName)) {
args.push(_core.types.stringLiteral(tagName));
if (types.react.isCompatTag(tagName)) {
args.push(types.stringLiteral(tagName));
} else {

@@ -45,4 +40,4 @@ args.push(state.tagExpr);

let hasKey = false;
if (_core.types.isObjectExpression(props)) {
const keyIndex = props.properties.findIndex(prop => _core.types.isIdentifier(prop.key, {
if (types.isObjectExpression(props)) {
const keyIndex = props.properties.findIndex(prop => types.isIdentifier(prop.key, {
name: "key"

@@ -55,7 +50,7 @@ }));

}
} else if (_core.types.isNullLiteral(props)) {
state.args.splice(1, 1, _core.types.objectExpression([]));
} else if (types.isNullLiteral(props)) {
state.args.splice(1, 1, types.objectExpression([]));
}
if (!hasKey && state.args.length > 2) {
state.args.splice(2, 0, _core.types.unaryExpression("void", _core.types.numericLiteral(0)));
state.args.splice(2, 0, types.unaryExpression("void", types.numericLiteral(0)));
}

@@ -70,4 +65,4 @@ state.pure = true;

});
exports.default = _default;
export { index as default };
//# sourceMappingURL=index.js.map
{
"name": "@babel/plugin-transform-react-inline-elements",
"version": "7.22.5",
"version": "8.0.0-alpha.0",
"description": "Turn JSX elements into exploded React objects",

@@ -20,17 +20,21 @@ "repository": {

"dependencies": {
"@babel/helper-builder-react-jsx": "^7.22.5",
"@babel/helper-plugin-utils": "^7.22.5"
"@babel/helper-builder-react-jsx": "^8.0.0-alpha.0",
"@babel/helper-plugin-utils": "^8.0.0-alpha.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
"@babel/core": "^8.0.0-alpha.0"
},
"devDependencies": {
"@babel/core": "^7.22.5",
"@babel/helper-plugin-test-runner": "^7.22.5"
"@babel/core": "^8.0.0-alpha.0",
"@babel/helper-plugin-test-runner": "^8.0.0-alpha.0"
},
"engines": {
"node": ">=6.9.0"
"node": "^16.20.0 || ^18.16.0 || >=20.0.0"
},
"author": "The Babel Team (https://babel.dev/team)",
"type": "commonjs"
"exports": {
".": "./lib/index.js",
"./package.json": "./package.json"
},
"type": "module"
}

@@ -5,3 +5,3 @@ # @babel/plugin-transform-react-inline-elements

See our website [@babel/plugin-transform-react-inline-elements](https://babeljs.io/docs/en/babel-plugin-transform-react-inline-elements) for more information.
See our website [@babel/plugin-transform-react-inline-elements](https://babeljs.io/docs/babel-plugin-transform-react-inline-elements) for more information.

@@ -8,0 +8,0 @@ ## Install

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc