react-lg2 1.0.4 → 1.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.babelrc +7 -0
- package/.eslintrc +161 -0
- package/.prettierrc +12 -0
- package/build/index.js +1 -0
- package/package.json +45 -35
- package/src/index.js +3 -0
- package/webpack.config.js +49 -23
- package/dist/main.js +0 -2
- package/dist/main.js.LICENSE.txt +0 -9
package/.babelrc
ADDED
package/.eslintrc
ADDED
|
@@ -0,0 +1,161 @@
|
|
|
1
|
+
{
|
|
2
|
+
"extends": "eslint:recommended",
|
|
3
|
+
"parser": "@babel/eslint-parser",
|
|
4
|
+
"env": {
|
|
5
|
+
"browser": true,
|
|
6
|
+
"node": true,
|
|
7
|
+
"mocha": true,
|
|
8
|
+
"es6": true,
|
|
9
|
+
"jest": true
|
|
10
|
+
},
|
|
11
|
+
"plugins": [
|
|
12
|
+
"react",
|
|
13
|
+
"babel"
|
|
14
|
+
],
|
|
15
|
+
"rules": {
|
|
16
|
+
# Posible errors
|
|
17
|
+
"no-extra-parens": 0,
|
|
18
|
+
"valid-jsdoc": [1, { "requireReturn": false }],
|
|
19
|
+
# Best practices
|
|
20
|
+
"accessor-pairs": 1,
|
|
21
|
+
"block-scoped-var": 1,
|
|
22
|
+
"complexity": 1,
|
|
23
|
+
"consistent-return": 1,
|
|
24
|
+
"curly": [1, "multi-line"],
|
|
25
|
+
"dot-location": [1, "property"],
|
|
26
|
+
"dot-notation": 1,
|
|
27
|
+
"eqeqeq": 1,
|
|
28
|
+
"guard-for-in": 1,
|
|
29
|
+
"no-alert": 1,
|
|
30
|
+
"no-caller": 2,
|
|
31
|
+
"no-div-regex": 1,
|
|
32
|
+
"no-else-return": 1,
|
|
33
|
+
"no-eq-null": 1,
|
|
34
|
+
"no-eval": 2,
|
|
35
|
+
"no-extend-native": 2,
|
|
36
|
+
"no-extra-bind": 1,
|
|
37
|
+
"no-floating-decimal": 1,
|
|
38
|
+
"no-implicit-coercion": 1,
|
|
39
|
+
"no-implied-eval": 1,
|
|
40
|
+
"no-invalid-this": 0,
|
|
41
|
+
"babel/no-invalid-this": 1,
|
|
42
|
+
"no-iterator": 2,
|
|
43
|
+
"no-labels": 1,
|
|
44
|
+
"no-lone-blocks": 1,
|
|
45
|
+
"no-loop-func": 1,
|
|
46
|
+
"no-magic-numbers": 0,
|
|
47
|
+
"no-multi-spaces": 1,
|
|
48
|
+
"no-multi-str": 1,
|
|
49
|
+
"no-new-func": 1,
|
|
50
|
+
"no-new-wrappers": 1,
|
|
51
|
+
"no-new": 1,
|
|
52
|
+
"no-octal-escape": 2,
|
|
53
|
+
"no-param-reassign": 1,
|
|
54
|
+
"no-proto": 1,
|
|
55
|
+
"no-return-assign": 0,
|
|
56
|
+
"no-script-url": 1,
|
|
57
|
+
"no-self-compare": 1,
|
|
58
|
+
"no-sequences": 1,
|
|
59
|
+
"no-throw-literal": 1,
|
|
60
|
+
"no-unused-expressions": 1,
|
|
61
|
+
"no-unused-vars": 0,
|
|
62
|
+
"no-useless-call": 1,
|
|
63
|
+
"no-useless-concat": 1,
|
|
64
|
+
"no-void": 1,
|
|
65
|
+
"no-warning-comments": 0,
|
|
66
|
+
"no-with": 1,
|
|
67
|
+
"radix": 0,
|
|
68
|
+
"vars-on-top": 0,
|
|
69
|
+
"wrap-iife": 1,
|
|
70
|
+
"yoda": 1,
|
|
71
|
+
# Variables
|
|
72
|
+
"init-declarations": 1,
|
|
73
|
+
"no-catch-shadow": 1,
|
|
74
|
+
"no-label-var": 1,
|
|
75
|
+
"no-shadow-restricted-names": 1,
|
|
76
|
+
"no-shadow": 1,
|
|
77
|
+
"no-undef-init": 1,
|
|
78
|
+
"no-undefined": 1,
|
|
79
|
+
"no-use-before-define": 1,
|
|
80
|
+
# Stylistic issues
|
|
81
|
+
"array-bracket-spacing": [1, "never"],
|
|
82
|
+
"block-spacing": [1, "always"],
|
|
83
|
+
"brace-style": 1,
|
|
84
|
+
"camelcase": 1,
|
|
85
|
+
"comma-dangle": [1, "always-multiline"],
|
|
86
|
+
"comma-spacing": 1,
|
|
87
|
+
"comma-style": 1,
|
|
88
|
+
"computed-property-spacing": 1,
|
|
89
|
+
"consistent-this": 1,
|
|
90
|
+
"eol-last": 1,
|
|
91
|
+
"func-names": 0,
|
|
92
|
+
"func-style": 0,
|
|
93
|
+
"id-length": 0,
|
|
94
|
+
"id-match": 1,
|
|
95
|
+
"indent": [1, "tab", { "SwitchCase": 1 }],
|
|
96
|
+
"jsx-quotes": 1,
|
|
97
|
+
"key-spacing": 1,
|
|
98
|
+
"line-comment-position": 0,
|
|
99
|
+
"linebreak-style": 1,
|
|
100
|
+
"lines-around-comment": 0,
|
|
101
|
+
"max-depth": 1,
|
|
102
|
+
"max-len": [1, { "ignoreUrls": true }],
|
|
103
|
+
"max-nested-callbacks": 1,
|
|
104
|
+
"max-params": [1, 4],
|
|
105
|
+
"max-statements": 1,
|
|
106
|
+
"multiline-ternary": 0,
|
|
107
|
+
"new-cap": 1,
|
|
108
|
+
"new-parens": 1,
|
|
109
|
+
"newline-after-var": 1,
|
|
110
|
+
"newline-before-return": 1,
|
|
111
|
+
"no-array-constructor": 1,
|
|
112
|
+
"no-bitwise": 1,
|
|
113
|
+
"no-continue": 0,
|
|
114
|
+
"no-inline-comments": 0,
|
|
115
|
+
"no-lonely-if": 1,
|
|
116
|
+
"no-multiple-empty-lines": 1,
|
|
117
|
+
"no-negated-condition": 1,
|
|
118
|
+
"no-nested-ternary": 1,
|
|
119
|
+
"no-new-object": 1,
|
|
120
|
+
"no-plusplus": 0,
|
|
121
|
+
"no-restricted-syntax": 1,
|
|
122
|
+
"no-ternary": 0,
|
|
123
|
+
"no-trailing-spaces": 1,
|
|
124
|
+
"no-underscore-dangle": 1,
|
|
125
|
+
"no-unreachable": 1,
|
|
126
|
+
"no-unneeded-ternary": 1,
|
|
127
|
+
"object-curly-spacing": [1, "always"],
|
|
128
|
+
"object-property-newline": 0,
|
|
129
|
+
"one-var-declaration-per-line": 0,
|
|
130
|
+
"one-var": 0,
|
|
131
|
+
"operator-assignment": 1,
|
|
132
|
+
"operator-linebreak": [1, "after",
|
|
133
|
+
{
|
|
134
|
+
"overrides": {
|
|
135
|
+
"?": "before",
|
|
136
|
+
":": "before"
|
|
137
|
+
}
|
|
138
|
+
}],
|
|
139
|
+
"padded-blocks": [1, "never"],
|
|
140
|
+
"quote-props": [1, "as-needed"],
|
|
141
|
+
"quotes": [1, "single", { "avoidEscape": true }],
|
|
142
|
+
"require-jsdoc": 0,
|
|
143
|
+
"semi-spacing": 1,
|
|
144
|
+
"semi": 1,
|
|
145
|
+
"sort-keys": 0,
|
|
146
|
+
"sort-vars": 0,
|
|
147
|
+
"space-before-blocks": 1,
|
|
148
|
+
"space-before-function-paren": [1, "never"],
|
|
149
|
+
"space-in-parens": 1,
|
|
150
|
+
"space-infix-ops": 1,
|
|
151
|
+
"space-unary-ops": 1,
|
|
152
|
+
"spaced-comment": 1,
|
|
153
|
+
"wrap-regex": 0,
|
|
154
|
+
# Other
|
|
155
|
+
"no-console": 0,
|
|
156
|
+
"strict": 0,
|
|
157
|
+
"react/jsx-no-undef": 1,
|
|
158
|
+
"react/jsx-uses-react": 1,
|
|
159
|
+
"react/jsx-uses-vars": 1
|
|
160
|
+
}
|
|
161
|
+
}
|
package/.prettierrc
ADDED
package/build/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
(()=>{"use strict";var e={n:r=>{var t=r&&r.__esModule?()=>r.default:()=>r;return e.d(t,{a:t}),t},d:(r,t)=>{for(var o in t)e.o(t,o)&&!e.o(r,o)&&Object.defineProperty(r,o,{enumerable:!0,get:t[o]})},o:(e,r)=>Object.prototype.hasOwnProperty.call(e,r),r:e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})}},r={};e.r(r),e.d(r,{TextField:()=>n});const t=require("react");var o=e.n(t);function n(){return o().createElement("div",null,"Here is a text field")}module.exports=r})();
|
package/package.json
CHANGED
|
@@ -1,38 +1,48 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-lg2",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"main": "
|
|
5
|
-
"
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
3
|
+
"version": "1.0.6",
|
|
4
|
+
"main": "build/index.js",
|
|
5
|
+
"peerDependencies": {
|
|
6
|
+
"react": "^15.x.x || ^16.x.x || ^17.x.x || ^18.x.x"
|
|
7
|
+
},
|
|
8
|
+
"dependencies": {
|
|
9
|
+
"lodash.debounce": "^4.0.8",
|
|
10
|
+
"lodash.throttle": "^4.1.1"
|
|
11
|
+
},
|
|
12
|
+
"devDependencies": {
|
|
13
|
+
"@babel/core": "^7.15.0",
|
|
14
|
+
"@babel/eslint-parser": "^7.15.0",
|
|
15
|
+
"@babel/preset-env": "^7.15.0",
|
|
16
|
+
"@babel/preset-react": "^7.14.5",
|
|
17
|
+
"@babel/preset-typescript": "^7.15.0",
|
|
18
|
+
"babel-jest": "^27.0.6",
|
|
19
|
+
"babel-loader": "^8.2.2",
|
|
20
|
+
"css-loader": "^6.2.0",
|
|
21
|
+
"enzyme": "^3.11.0",
|
|
22
|
+
"enzyme-adapter-react-16": "^1.15.6",
|
|
23
|
+
"eslint": "^7.32.0",
|
|
24
|
+
"eslint-plugin-babel": "^5.3.1",
|
|
25
|
+
"eslint-plugin-react": "^7.24.0",
|
|
26
|
+
"eslint-webpack-plugin": "^3.0.1",
|
|
27
|
+
"husky": "^7.0.1",
|
|
28
|
+
"jest": "^27.0.6",
|
|
29
|
+
"path": "^0.12.7",
|
|
30
|
+
"prettier": "^2.3.2",
|
|
31
|
+
"react": "^16.2.0",
|
|
32
|
+
"style-loader": "^3.2.1",
|
|
33
|
+
"webpack": "^5.50.0",
|
|
34
|
+
"webpack-cli": "^4.7.2"
|
|
35
|
+
},
|
|
36
|
+
"scripts": {
|
|
37
|
+
"test": "jest",
|
|
38
|
+
"start": "webpack --watch",
|
|
39
|
+
"build": "webpack",
|
|
40
|
+
"prettier": "prettier --write \"**/*.{js,jsx,json}\"",
|
|
41
|
+
"lint": "eslint src --ext=js,jsx"
|
|
42
|
+
},
|
|
43
|
+
"husky": {
|
|
44
|
+
"hooks": {
|
|
45
|
+
"pre-commit": "npm run prettier && npm run lint"
|
|
46
|
+
}
|
|
47
|
+
}
|
|
38
48
|
}
|
package/src/index.js
ADDED
package/webpack.config.js
CHANGED
|
@@ -1,26 +1,52 @@
|
|
|
1
|
-
const
|
|
2
|
-
const
|
|
3
|
-
// const ExternalTemplateRemotesPlugin = require("external-remotes-plugin");
|
|
4
|
-
const path = require("path");
|
|
1
|
+
const path = require('path');
|
|
2
|
+
const ESLintPlugin = require('eslint-webpack-plugin');
|
|
5
3
|
|
|
6
4
|
module.exports = {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
5
|
+
mode: 'production',
|
|
6
|
+
entry: './src/index.js',
|
|
7
|
+
output: {
|
|
8
|
+
path: path.resolve(__dirname, 'build'),
|
|
9
|
+
filename: 'index.js',
|
|
10
|
+
libraryTarget: 'commonjs2',
|
|
11
|
+
},
|
|
12
|
+
module: {
|
|
13
|
+
rules: [
|
|
14
|
+
{
|
|
15
|
+
test: /\.(j|t)sx?$/,
|
|
16
|
+
include: path.resolve(__dirname, 'src'),
|
|
17
|
+
exclude: /(node_modules|bower_components|build)/,
|
|
18
|
+
use: {
|
|
19
|
+
loader: 'babel-loader',
|
|
20
|
+
options: {
|
|
21
|
+
presets: ['@babel/preset-env'],
|
|
22
|
+
},
|
|
23
|
+
},
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
test: /\.css$/,
|
|
27
|
+
use: [
|
|
28
|
+
{
|
|
29
|
+
loader: 'style-loader',
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
loader: 'css-loader',
|
|
33
|
+
},
|
|
34
|
+
],
|
|
35
|
+
exclude: /node_modules/,
|
|
36
|
+
},
|
|
37
|
+
],
|
|
38
|
+
},
|
|
39
|
+
externals: {
|
|
40
|
+
react: 'commonjs react',
|
|
41
|
+
'react-dom': 'commonjs react-dom',
|
|
42
|
+
},
|
|
43
|
+
plugins: [
|
|
44
|
+
new ESLintPlugin({
|
|
45
|
+
context: path.resolve(__dirname, 'src'),
|
|
46
|
+
extensions: ['js', 'jsx', 'ts', 'tsx'],
|
|
47
|
+
}),
|
|
48
|
+
],
|
|
49
|
+
resolve: {
|
|
50
|
+
extensions: ['.ts', '.tsx', '.js', '.jsx'],
|
|
51
|
+
},
|
|
26
52
|
};
|
package/dist/main.js
DELETED
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
/*! For license information please see main.js.LICENSE.txt */
|
|
2
|
-
(()=>{"use strict";var e={287:(e,t)=>{var r=Symbol.for("react.element"),n=Symbol.for("react.portal"),o=Symbol.for("react.fragment"),u=Symbol.for("react.strict_mode"),a=Symbol.for("react.profiler"),c=Symbol.for("react.provider"),i=Symbol.for("react.context"),f=Symbol.for("react.forward_ref"),l=Symbol.for("react.suspense"),s=Symbol.for("react.memo"),p=Symbol.for("react.lazy"),y=Symbol.iterator,d={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},_=Object.assign,v={};function b(e,t,r){this.props=e,this.context=t,this.refs=v,this.updater=r||d}function m(){}function h(e,t,r){this.props=e,this.context=t,this.refs=v,this.updater=r||d}b.prototype.isReactComponent={},b.prototype.setState=function(e,t){if("object"!=typeof e&&"function"!=typeof e&&null!=e)throw Error("setState(...): takes an object of state variables to update or a function which returns an object of state variables.");this.updater.enqueueSetState(this,e,t,"setState")},b.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,"forceUpdate")},m.prototype=b.prototype;var S=h.prototype=new m;S.constructor=h,_(S,b.prototype),S.isPureReactComponent=!0;var E=Array.isArray,w=Object.prototype.hasOwnProperty,$={current:null},R={key:!0,ref:!0,__self:!0,__source:!0};function g(e,t,n){var o,u={},a=null,c=null;if(null!=t)for(o in void 0!==t.ref&&(c=t.ref),void 0!==t.key&&(a=""+t.key),t)w.call(t,o)&&!R.hasOwnProperty(o)&&(u[o]=t[o]);var i=arguments.length-2;if(1===i)u.children=n;else if(1<i){for(var f=Array(i),l=0;l<i;l++)f[l]=arguments[l+2];u.children=f}if(e&&e.defaultProps)for(o in i=e.defaultProps)void 0===u[o]&&(u[o]=i[o]);return{$$typeof:r,type:e,key:a,ref:c,props:u,_owner:$.current}}function j(e){return"object"==typeof e&&null!==e&&e.$$typeof===r}var k=/\/+/g;function C(e,t){return"object"==typeof e&&null!==e&&null!=e.key?function(e){var t={"=":"=0",":":"=2"};return"$"+e.replace(/[=:]/g,(function(e){return t[e]}))}(""+e.key):t.toString(36)}function O(e,t,o,u,a){var c=typeof e;"undefined"!==c&&"boolean"!==c||(e=null);var i=!1;if(null===e)i=!0;else switch(c){case"string":case"number":i=!0;break;case"object":switch(e.$$typeof){case r:case n:i=!0}}if(i)return a=a(i=e),e=""===u?"."+C(i,0):u,E(a)?(o="",null!=e&&(o=e.replace(k,"$&/")+"/"),O(a,t,o,"",(function(e){return e}))):null!=a&&(j(a)&&(a=function(e,t){return{$$typeof:r,type:e.type,key:t,ref:e.ref,props:e.props,_owner:e._owner}}(a,o+(!a.key||i&&i.key===a.key?"":(""+a.key).replace(k,"$&/")+"/")+e)),t.push(a)),1;if(i=0,u=""===u?".":u+":",E(e))for(var f=0;f<e.length;f++){var l=u+C(c=e[f],f);i+=O(c,t,o,l,a)}else if(l=function(e){return null===e||"object"!=typeof e?null:"function"==typeof(e=y&&e[y]||e["@@iterator"])?e:null}(e),"function"==typeof l)for(e=l.call(e),f=0;!(c=e.next()).done;)i+=O(c=c.value,t,o,l=u+C(c,f++),a);else if("object"===c)throw t=String(e),Error("Objects are not valid as a React child (found: "+("[object Object]"===t?"object with keys {"+Object.keys(e).join(", ")+"}":t)+"). If you meant to render a collection of children, use an array instead.");return i}function x(e,t,r){if(null==e)return e;var n=[],o=0;return O(e,n,"","",(function(e){return t.call(r,e,o++)})),n}function P(e){if(-1===e._status){var t=e._result;(t=t()).then((function(t){0!==e._status&&-1!==e._status||(e._status=1,e._result=t)}),(function(t){0!==e._status&&-1!==e._status||(e._status=2,e._result=t)})),-1===e._status&&(e._status=0,e._result=t)}if(1===e._status)return e._result.default;throw e._result}var I={current:null},T={transition:null},M={ReactCurrentDispatcher:I,ReactCurrentBatchConfig:T,ReactCurrentOwner:$};function A(){throw Error("act(...) is not supported in production builds of React.")}t.Children={map:x,forEach:function(e,t,r){x(e,(function(){t.apply(this,arguments)}),r)},count:function(e){var t=0;return x(e,(function(){t++})),t},toArray:function(e){return x(e,(function(e){return e}))||[]},only:function(e){if(!j(e))throw Error("React.Children.only expected to receive a single React element child.");return e}},t.Component=b,t.Fragment=o,t.Profiler=a,t.PureComponent=h,t.StrictMode=u,t.Suspense=l,t.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=M,t.act=A,t.cloneElement=function(e,t,n){if(null==e)throw Error("React.cloneElement(...): The argument must be a React element, but you passed "+e+".");var o=_({},e.props),u=e.key,a=e.ref,c=e._owner;if(null!=t){if(void 0!==t.ref&&(a=t.ref,c=$.current),void 0!==t.key&&(u=""+t.key),e.type&&e.type.defaultProps)var i=e.type.defaultProps;for(f in t)w.call(t,f)&&!R.hasOwnProperty(f)&&(o[f]=void 0===t[f]&&void 0!==i?i[f]:t[f])}var f=arguments.length-2;if(1===f)o.children=n;else if(1<f){i=Array(f);for(var l=0;l<f;l++)i[l]=arguments[l+2];o.children=i}return{$$typeof:r,type:e.type,key:u,ref:a,props:o,_owner:c}},t.createContext=function(e){return(e={$$typeof:i,_currentValue:e,_currentValue2:e,_threadCount:0,Provider:null,Consumer:null,_defaultValue:null,_globalName:null}).Provider={$$typeof:c,_context:e},e.Consumer=e},t.createElement=g,t.createFactory=function(e){var t=g.bind(null,e);return t.type=e,t},t.createRef=function(){return{current:null}},t.forwardRef=function(e){return{$$typeof:f,render:e}},t.isValidElement=j,t.lazy=function(e){return{$$typeof:p,_payload:{_status:-1,_result:e},_init:P}},t.memo=function(e,t){return{$$typeof:s,type:e,compare:void 0===t?null:t}},t.startTransition=function(e){var t=T.transition;T.transition={};try{e()}finally{T.transition=t}},t.unstable_act=A,t.useCallback=function(e,t){return I.current.useCallback(e,t)},t.useContext=function(e){return I.current.useContext(e)},t.useDebugValue=function(){},t.useDeferredValue=function(e){return I.current.useDeferredValue(e)},t.useEffect=function(e,t){return I.current.useEffect(e,t)},t.useId=function(){return I.current.useId()},t.useImperativeHandle=function(e,t,r){return I.current.useImperativeHandle(e,t,r)},t.useInsertionEffect=function(e,t){return I.current.useInsertionEffect(e,t)},t.useLayoutEffect=function(e,t){return I.current.useLayoutEffect(e,t)},t.useMemo=function(e,t){return I.current.useMemo(e,t)},t.useReducer=function(e,t,r){return I.current.useReducer(e,t,r)},t.useRef=function(e){return I.current.useRef(e)},t.useState=function(e){return I.current.useState(e)},t.useSyncExternalStore=function(e,t,r){return I.current.useSyncExternalStore(e,t,r)},t.useTransition=function(){return I.current.useTransition()},t.version="18.3.1"},540:(e,t,r)=>{e.exports=r(287)}},t={};function r(n){var o=t[n];if(void 0!==o)return o.exports;var u=t[n]={exports:{}};return e[n](u,u.exports,r),u.exports}r.d=(e,t)=>{for(var n in t)r.o(t,n)&&!r.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},r.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),r.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var n={};r.r(n),r.d(n,{default:()=>u});var o=r(540);const u=function(){return o.createElement("div",null,"App main")};var a=exports;for(var c in n)a[c]=n[c];n.__esModule&&Object.defineProperty(a,"__esModule",{value:!0})})();
|
package/dist/main.js.LICENSE.txt
DELETED