Revert "Add yet-another-react-lightbox package and update .gitignore to exclude node_modules"
This reverts commit c92f4a5edd.
This commit is contained in:
7
frontend/node_modules/@svgr/babel-plugin-transform-react-native-svg/LICENSE
generated
vendored
Normal file
7
frontend/node_modules/@svgr/babel-plugin-transform-react-native-svg/LICENSE
generated
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
Copyright 2017 Smooth Code
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
21
frontend/node_modules/@svgr/babel-plugin-transform-react-native-svg/README.md
generated
vendored
Normal file
21
frontend/node_modules/@svgr/babel-plugin-transform-react-native-svg/README.md
generated
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
# @svgr/babel-plugin-transform-react-native-svg
|
||||
|
||||
## Install
|
||||
|
||||
```
|
||||
npm install --save-dev @svgr/babel-plugin-transform-react-native-svg
|
||||
```
|
||||
|
||||
## Usage
|
||||
|
||||
**.babelrc**
|
||||
|
||||
```json
|
||||
{
|
||||
"plugins": ["@svgr/babel-plugin-transform-react-native-svg"]
|
||||
}
|
||||
```
|
||||
|
||||
## License
|
||||
|
||||
MIT
|
||||
13
frontend/node_modules/@svgr/babel-plugin-transform-react-native-svg/dist/index.d.ts
generated
vendored
Normal file
13
frontend/node_modules/@svgr/babel-plugin-transform-react-native-svg/dist/index.d.ts
generated
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
import { NodePath, types } from '@babel/core';
|
||||
|
||||
interface State {
|
||||
replacedComponents: Set<string>;
|
||||
unsupportedComponents: Set<string>;
|
||||
}
|
||||
declare const plugin: () => {
|
||||
visitor: {
|
||||
Program(path: NodePath<types.Program>, state: Partial<State>): void;
|
||||
};
|
||||
};
|
||||
|
||||
export { plugin as default };
|
||||
107
frontend/node_modules/@svgr/babel-plugin-transform-react-native-svg/dist/index.js
generated
vendored
Normal file
107
frontend/node_modules/@svgr/babel-plugin-transform-react-native-svg/dist/index.js
generated
vendored
Normal file
@@ -0,0 +1,107 @@
|
||||
'use strict';
|
||||
|
||||
var core = require('@babel/core');
|
||||
|
||||
const elementToComponent = {
|
||||
svg: "Svg",
|
||||
circle: "Circle",
|
||||
clipPath: "ClipPath",
|
||||
ellipse: "Ellipse",
|
||||
g: "G",
|
||||
linearGradient: "LinearGradient",
|
||||
radialGradient: "RadialGradient",
|
||||
line: "Line",
|
||||
path: "Path",
|
||||
pattern: "Pattern",
|
||||
polygon: "Polygon",
|
||||
polyline: "Polyline",
|
||||
rect: "Rect",
|
||||
symbol: "Symbol",
|
||||
text: "Text",
|
||||
textPath: "TextPath",
|
||||
tspan: "TSpan",
|
||||
use: "Use",
|
||||
defs: "Defs",
|
||||
stop: "Stop",
|
||||
mask: "Mask",
|
||||
image: "Image",
|
||||
foreignObject: "ForeignObject"
|
||||
};
|
||||
const plugin = () => {
|
||||
function replaceElement(path, state) {
|
||||
const namePath = path.get("openingElement").get("name");
|
||||
if (!namePath.isJSXIdentifier())
|
||||
return;
|
||||
const { name } = namePath.node;
|
||||
const component = elementToComponent[name];
|
||||
if (component) {
|
||||
namePath.replaceWith(core.types.jsxIdentifier(component));
|
||||
if (path.has("closingElement")) {
|
||||
const closingNamePath = path.get("closingElement").get("name");
|
||||
closingNamePath.replaceWith(core.types.jsxIdentifier(component));
|
||||
}
|
||||
state.replacedComponents.add(component);
|
||||
return;
|
||||
}
|
||||
state.unsupportedComponents.add(name);
|
||||
path.remove();
|
||||
}
|
||||
const svgElementVisitor = {
|
||||
JSXElement(path, state) {
|
||||
if (!path.get("openingElement").get("name").isJSXIdentifier({ name: "svg" })) {
|
||||
return;
|
||||
}
|
||||
replaceElement(path, state);
|
||||
path.traverse(jsxElementVisitor, state);
|
||||
}
|
||||
};
|
||||
const jsxElementVisitor = {
|
||||
JSXElement(path, state) {
|
||||
replaceElement(path, state);
|
||||
}
|
||||
};
|
||||
const importDeclarationVisitor = {
|
||||
ImportDeclaration(path, state) {
|
||||
if (path.get("source").isStringLiteral({ value: "react-native-svg" }) && !path.get("importKind").hasNode()) {
|
||||
state.replacedComponents.forEach((component) => {
|
||||
if (path.get("specifiers").some(
|
||||
(specifier) => specifier.get("local").isIdentifier({ name: component })
|
||||
)) {
|
||||
return;
|
||||
}
|
||||
path.pushContainer(
|
||||
"specifiers",
|
||||
core.types.importSpecifier(core.types.identifier(component), core.types.identifier(component))
|
||||
);
|
||||
});
|
||||
} else if (path.get("source").isStringLiteral({ value: "expo" })) {
|
||||
path.pushContainer(
|
||||
"specifiers",
|
||||
core.types.importSpecifier(core.types.identifier("Svg"), core.types.identifier("Svg"))
|
||||
);
|
||||
} else {
|
||||
return;
|
||||
}
|
||||
if (state.unsupportedComponents.size && !path.has("trailingComments")) {
|
||||
const componentList = [...state.unsupportedComponents].join(", ");
|
||||
path.addComment(
|
||||
"trailing",
|
||||
` SVGR has dropped some elements not supported by react-native-svg: ${componentList} `
|
||||
);
|
||||
}
|
||||
}
|
||||
};
|
||||
return {
|
||||
visitor: {
|
||||
Program(path, state) {
|
||||
state.replacedComponents = /* @__PURE__ */ new Set();
|
||||
state.unsupportedComponents = /* @__PURE__ */ new Set();
|
||||
path.traverse(svgElementVisitor, state);
|
||||
path.traverse(importDeclarationVisitor, state);
|
||||
}
|
||||
}
|
||||
};
|
||||
};
|
||||
|
||||
module.exports = plugin;
|
||||
//# sourceMappingURL=index.js.map
|
||||
1
frontend/node_modules/@svgr/babel-plugin-transform-react-native-svg/dist/index.js.map
generated
vendored
Normal file
1
frontend/node_modules/@svgr/babel-plugin-transform-react-native-svg/dist/index.js.map
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
40
frontend/node_modules/@svgr/babel-plugin-transform-react-native-svg/package.json
generated
vendored
Normal file
40
frontend/node_modules/@svgr/babel-plugin-transform-react-native-svg/package.json
generated
vendored
Normal file
@@ -0,0 +1,40 @@
|
||||
{
|
||||
"name": "@svgr/babel-plugin-transform-react-native-svg",
|
||||
"description": "Transform DOM elements into react-native-svg components",
|
||||
"version": "8.1.0",
|
||||
"main": "./dist/index.js",
|
||||
"types": "./dist/index.d.ts",
|
||||
"exports": {
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"default": "./dist/index.js"
|
||||
},
|
||||
"./package.json": "./package.json"
|
||||
},
|
||||
"repository": "https://github.com/gregberge/svgr/tree/main/packages/babel-plugin-transform-react-native-svg",
|
||||
"author": "Greg Bergé <berge.greg@gmail.com>",
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
"keywords": [
|
||||
"babel-plugin"
|
||||
],
|
||||
"engines": {
|
||||
"node": ">=14"
|
||||
},
|
||||
"homepage": "https://react-svgr.com",
|
||||
"funding": {
|
||||
"type": "github",
|
||||
"url": "https://github.com/sponsors/gregberge"
|
||||
},
|
||||
"license": "MIT",
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
},
|
||||
"scripts": {
|
||||
"reset": "rm -rf dist",
|
||||
"build": "rollup -c ../../build/rollup.config.mjs",
|
||||
"prepublishOnly": "pnpm run reset && pnpm run build"
|
||||
},
|
||||
"gitHead": "772592e042be5063e782bfb8711d024b2fefc6b8"
|
||||
}
|
||||
Reference in New Issue
Block a user