Add yet-another-react-lightbox package and update .gitignore to exclude node_modules
This commit is contained in:
7
frontend/node_modules/@svgr/babel-plugin-replace-jsx-attribute-value/LICENSE
generated
vendored
7
frontend/node_modules/@svgr/babel-plugin-replace-jsx-attribute-value/LICENSE
generated
vendored
@@ -1,7 +0,0 @@
|
||||
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.
|
||||
31
frontend/node_modules/@svgr/babel-plugin-replace-jsx-attribute-value/README.md
generated
vendored
31
frontend/node_modules/@svgr/babel-plugin-replace-jsx-attribute-value/README.md
generated
vendored
@@ -1,31 +0,0 @@
|
||||
# @svgr/babel-plugin-replace-jsx-attribute-value
|
||||
|
||||
## Install
|
||||
|
||||
```
|
||||
npm install --save-dev @svgr/babel-plugin-replace-jsx-attribute-value
|
||||
```
|
||||
|
||||
## Usage
|
||||
|
||||
**.babelrc**
|
||||
|
||||
```json
|
||||
{
|
||||
"plugins": [
|
||||
[
|
||||
"@svgr/babel-plugin-replace-jsx-attribute-value",
|
||||
{
|
||||
"values": [
|
||||
{ "value": "#000", "newValue": "#fff" },
|
||||
{ "value": "blue", "newValue": "props.color", "literal": true }
|
||||
]
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
```
|
||||
|
||||
## License
|
||||
|
||||
MIT
|
||||
17
frontend/node_modules/@svgr/babel-plugin-replace-jsx-attribute-value/dist/index.d.ts
generated
vendored
17
frontend/node_modules/@svgr/babel-plugin-replace-jsx-attribute-value/dist/index.d.ts
generated
vendored
@@ -1,17 +0,0 @@
|
||||
import { ConfigAPI, NodePath, types } from '@babel/core';
|
||||
|
||||
interface Value {
|
||||
value: string;
|
||||
newValue: string | boolean | number;
|
||||
literal?: boolean;
|
||||
}
|
||||
interface Options {
|
||||
values: Value[];
|
||||
}
|
||||
declare const addJSXAttribute: (api: ConfigAPI, opts: Options) => {
|
||||
visitor: {
|
||||
JSXAttribute(path: NodePath<types.JSXAttribute>): void;
|
||||
};
|
||||
};
|
||||
|
||||
export { Options, Value, addJSXAttribute as default };
|
||||
43
frontend/node_modules/@svgr/babel-plugin-replace-jsx-attribute-value/dist/index.js
generated
vendored
43
frontend/node_modules/@svgr/babel-plugin-replace-jsx-attribute-value/dist/index.js
generated
vendored
@@ -1,43 +0,0 @@
|
||||
'use strict';
|
||||
|
||||
var core = require('@babel/core');
|
||||
|
||||
const addJSXAttribute = (api, opts) => {
|
||||
const getAttributeValue = (value, literal) => {
|
||||
if (typeof value === "string" && literal) {
|
||||
return core.types.jsxExpressionContainer(
|
||||
core.template.ast(value).expression
|
||||
);
|
||||
}
|
||||
if (typeof value === "string") {
|
||||
return core.types.stringLiteral(value);
|
||||
}
|
||||
if (typeof value === "boolean") {
|
||||
return core.types.jsxExpressionContainer(core.types.booleanLiteral(value));
|
||||
}
|
||||
if (typeof value === "number") {
|
||||
return core.types.jsxExpressionContainer(core.types.numericLiteral(value));
|
||||
}
|
||||
return null;
|
||||
};
|
||||
return {
|
||||
visitor: {
|
||||
JSXAttribute(path) {
|
||||
const valuePath = path.get("value");
|
||||
if (!valuePath.isStringLiteral())
|
||||
return;
|
||||
opts.values.forEach(({ value, newValue, literal }) => {
|
||||
if (!valuePath.isStringLiteral({ value }))
|
||||
return;
|
||||
const attributeValue = getAttributeValue(newValue, literal);
|
||||
if (attributeValue) {
|
||||
valuePath.replaceWith(attributeValue);
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
};
|
||||
};
|
||||
|
||||
module.exports = addJSXAttribute;
|
||||
//# sourceMappingURL=index.js.map
|
||||
@@ -1 +0,0 @@
|
||||
{"version":3,"file":"index.js","sources":["../src/index.ts"],"sourcesContent":["/* eslint-disable @typescript-eslint/explicit-module-boundary-types */\nimport { ConfigAPI, types as t, NodePath, template } from '@babel/core'\n\nexport interface Value {\n value: string\n newValue: string | boolean | number\n literal?: boolean\n}\n\nexport interface Options {\n values: Value[]\n}\n\nconst addJSXAttribute = (api: ConfigAPI, opts: Options) => {\n const getAttributeValue = (\n value: string | boolean | number,\n literal?: boolean,\n ) => {\n if (typeof value === 'string' && literal) {\n return t.jsxExpressionContainer(\n (template.ast(value) as t.ExpressionStatement).expression,\n )\n }\n\n if (typeof value === 'string') {\n return t.stringLiteral(value)\n }\n\n if (typeof value === 'boolean') {\n return t.jsxExpressionContainer(t.booleanLiteral(value))\n }\n\n if (typeof value === 'number') {\n return t.jsxExpressionContainer(t.numericLiteral(value))\n }\n\n return null\n }\n\n return {\n visitor: {\n JSXAttribute(path: NodePath<t.JSXAttribute>) {\n const valuePath = path.get('value')\n if (!valuePath.isStringLiteral()) return\n\n opts.values.forEach(({ value, newValue, literal }) => {\n if (!valuePath.isStringLiteral({ value })) return\n const attributeValue = getAttributeValue(newValue, literal)\n if (attributeValue) {\n valuePath.replaceWith(attributeValue)\n }\n })\n },\n },\n }\n}\n\nexport default addJSXAttribute\n"],"names":["t","template"],"mappings":";;;;AAaM,MAAA,eAAA,GAAkB,CAAC,GAAA,EAAgB,IAAkB,KAAA;AACzD,EAAM,MAAA,iBAAA,GAAoB,CACxB,KAAA,EACA,OACG,KAAA;AACH,IAAI,IAAA,OAAO,KAAU,KAAA,QAAA,IAAY,OAAS,EAAA;AACxC,MAAA,OAAOA,UAAE,CAAA,sBAAA;AAAA,QACNC,aAAA,CAAS,GAAI,CAAA,KAAK,CAA4B,CAAA,UAAA;AAAA,OACjD,CAAA;AAAA,KACF;AAEA,IAAI,IAAA,OAAO,UAAU,QAAU,EAAA;AAC7B,MAAO,OAAAD,UAAA,CAAE,cAAc,KAAK,CAAA,CAAA;AAAA,KAC9B;AAEA,IAAI,IAAA,OAAO,UAAU,SAAW,EAAA;AAC9B,MAAA,OAAOA,UAAE,CAAA,sBAAA,CAAuBA,UAAE,CAAA,cAAA,CAAe,KAAK,CAAC,CAAA,CAAA;AAAA,KACzD;AAEA,IAAI,IAAA,OAAO,UAAU,QAAU,EAAA;AAC7B,MAAA,OAAOA,UAAE,CAAA,sBAAA,CAAuBA,UAAE,CAAA,cAAA,CAAe,KAAK,CAAC,CAAA,CAAA;AAAA,KACzD;AAEA,IAAO,OAAA,IAAA,CAAA;AAAA,GACT,CAAA;AAEA,EAAO,OAAA;AAAA,IACL,OAAS,EAAA;AAAA,MACP,aAAa,IAAgC,EAAA;AAC3C,QAAM,MAAA,SAAA,GAAY,IAAK,CAAA,GAAA,CAAI,OAAO,CAAA,CAAA;AAClC,QAAI,IAAA,CAAC,UAAU,eAAgB,EAAA;AAAG,UAAA,OAAA;AAElC,QAAA,IAAA,CAAK,OAAO,OAAQ,CAAA,CAAC,EAAE,KAAO,EAAA,QAAA,EAAU,SAAc,KAAA;AACpD,UAAA,IAAI,CAAC,SAAA,CAAU,eAAgB,CAAA,EAAE,OAAO,CAAA;AAAG,YAAA,OAAA;AAC3C,UAAM,MAAA,cAAA,GAAiB,iBAAkB,CAAA,QAAA,EAAU,OAAO,CAAA,CAAA;AAC1D,UAAA,IAAI,cAAgB,EAAA;AAClB,YAAA,SAAA,CAAU,YAAY,cAAc,CAAA,CAAA;AAAA,WACtC;AAAA,SACD,CAAA,CAAA;AAAA,OACH;AAAA,KACF;AAAA,GACF,CAAA;AACF;;;;"}
|
||||
40
frontend/node_modules/@svgr/babel-plugin-replace-jsx-attribute-value/package.json
generated
vendored
40
frontend/node_modules/@svgr/babel-plugin-replace-jsx-attribute-value/package.json
generated
vendored
@@ -1,40 +0,0 @@
|
||||
{
|
||||
"name": "@svgr/babel-plugin-replace-jsx-attribute-value",
|
||||
"description": "Replace JSX attribute value",
|
||||
"version": "8.0.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-replace-jsx-attribute-value",
|
||||
"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": "52a1079681477587ef0d842c0e78531adf2d2520"
|
||||
}
|
||||
Reference in New Issue
Block a user