@elliemae/app-react-dependencies 4.13.0 → 5.0.0-next.10
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/dist/cjs/app.config.json +17 -0
- package/dist/cjs/index.html +25 -0
- package/dist/cjs/index.js +70 -0
- package/dist/cjs/package.json +4 -0
- package/dist/esm/app.config.json +17 -0
- package/dist/esm/index.html +25 -0
- package/dist/esm/index.js +40 -0
- package/dist/esm/package.json +4 -0
- package/dist/public/app.config.json +17 -0
- package/dist/public/index.html +1 -0
- package/dist/public/js/emuiAppReactDependencies.6d72fa605aa98bfb153c.js +238 -0
- package/dist/public/js/emuiAppReactDependencies.6d72fa605aa98bfb153c.js.br +0 -0
- package/dist/public/js/emuiAppReactDependencies.6d72fa605aa98bfb153c.js.gz +0 -0
- package/dist/public/js/emuiAppReactDependencies.6d72fa605aa98bfb153c.js.map +1 -0
- package/dist/types/index.d.ts +18 -0
- package/dist/umd/app.config.json +17 -0
- package/dist/umd/index.html +1 -0
- package/dist/umd/index.js +238 -0
- package/dist/umd/index.js.br +0 -0
- package/dist/umd/index.js.gz +0 -0
- package/dist/umd/index.js.map +1 -0
- package/package.json +52 -32
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8" />
|
|
5
|
+
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
6
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
7
|
+
<title>React Dependencies</title>
|
|
8
|
+
</head>
|
|
9
|
+
<body>
|
|
10
|
+
<h1>React Dependencies</h1>
|
|
11
|
+
<script>
|
|
12
|
+
window.addEventListener('load', () => {
|
|
13
|
+
const attribNode = document.getElementById('libraryAttributes');
|
|
14
|
+
if (attribNode) {
|
|
15
|
+
attribNode.innerHTML = Object.keys(
|
|
16
|
+
window['<%= htmlWebpackPlugin.options.library %>'] || {},
|
|
17
|
+
).reduce(
|
|
18
|
+
(value, attribute) => (value += `<li>${attribute}</li>`),
|
|
19
|
+
'',
|
|
20
|
+
);
|
|
21
|
+
}
|
|
22
|
+
});
|
|
23
|
+
</script>
|
|
24
|
+
</body>
|
|
25
|
+
</html>
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __create = Object.create;
|
|
3
|
+
var __defProp = Object.defineProperty;
|
|
4
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
7
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
8
|
+
var __export = (target, all) => {
|
|
9
|
+
for (var name in all)
|
|
10
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
11
|
+
};
|
|
12
|
+
var __copyProps = (to, from, except, desc) => {
|
|
13
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
14
|
+
for (let key of __getOwnPropNames(from))
|
|
15
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
16
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
17
|
+
}
|
|
18
|
+
return to;
|
|
19
|
+
};
|
|
20
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
21
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
22
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
23
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
24
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
25
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
26
|
+
mod
|
|
27
|
+
));
|
|
28
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
29
|
+
var lib_exports = {};
|
|
30
|
+
__export(lib_exports, {
|
|
31
|
+
axios: () => axios,
|
|
32
|
+
dompurify: () => dompurify,
|
|
33
|
+
history: () => history,
|
|
34
|
+
immer: () => immer,
|
|
35
|
+
invariant: () => invariant,
|
|
36
|
+
pubsubjs: () => pubsubjs,
|
|
37
|
+
react: () => react,
|
|
38
|
+
reactAriaLive: () => reactAriaLive,
|
|
39
|
+
reactDOM: () => reactDOM,
|
|
40
|
+
reactHelmet: () => reactHelmet,
|
|
41
|
+
reactHookForm: () => reactHookForm,
|
|
42
|
+
reactRedux: () => reactRedux,
|
|
43
|
+
reactRouterDOM: () => reactRouterDOM,
|
|
44
|
+
reduxInjectors: () => reduxInjectors,
|
|
45
|
+
reselect: () => reselect,
|
|
46
|
+
rtk: () => rtk,
|
|
47
|
+
styledComponents: () => styledComponents,
|
|
48
|
+
styledSystem: () => styledSystem,
|
|
49
|
+
xstyled: () => xstyled
|
|
50
|
+
});
|
|
51
|
+
module.exports = __toCommonJS(lib_exports);
|
|
52
|
+
var react = __toESM(require("react"));
|
|
53
|
+
var reactDOM = __toESM(require("react-dom"));
|
|
54
|
+
var rtk = __toESM(require("@reduxjs/toolkit"));
|
|
55
|
+
var axios = __toESM(require("axios"));
|
|
56
|
+
var dompurify = __toESM(require("dompurify"));
|
|
57
|
+
var history = __toESM(require("history"));
|
|
58
|
+
var immer = __toESM(require("immer"));
|
|
59
|
+
var invariant = __toESM(require("invariant"));
|
|
60
|
+
var pubsubjs = __toESM(require("pubsub-js"));
|
|
61
|
+
var reactAriaLive = __toESM(require("react-aria-live"));
|
|
62
|
+
var reactHelmet = __toESM(require("react-helmet"));
|
|
63
|
+
var reactHookForm = __toESM(require("react-hook-form"));
|
|
64
|
+
var reactRedux = __toESM(require("react-redux"));
|
|
65
|
+
var reactRouterDOM = __toESM(require("react-router-dom"));
|
|
66
|
+
var reduxInjectors = __toESM(require("redux-injectors"));
|
|
67
|
+
var reselect = __toESM(require("reselect"));
|
|
68
|
+
var styledComponents = __toESM(require("styled-components"));
|
|
69
|
+
var styledSystem = __toESM(require("styled-system"));
|
|
70
|
+
var xstyled = __toESM(require("@xstyled/styled-components"));
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8" />
|
|
5
|
+
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
6
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
7
|
+
<title>React Dependencies</title>
|
|
8
|
+
</head>
|
|
9
|
+
<body>
|
|
10
|
+
<h1>React Dependencies</h1>
|
|
11
|
+
<script>
|
|
12
|
+
window.addEventListener('load', () => {
|
|
13
|
+
const attribNode = document.getElementById('libraryAttributes');
|
|
14
|
+
if (attribNode) {
|
|
15
|
+
attribNode.innerHTML = Object.keys(
|
|
16
|
+
window['<%= htmlWebpackPlugin.options.library %>'] || {},
|
|
17
|
+
).reduce(
|
|
18
|
+
(value, attribute) => (value += `<li>${attribute}</li>`),
|
|
19
|
+
'',
|
|
20
|
+
);
|
|
21
|
+
}
|
|
22
|
+
});
|
|
23
|
+
</script>
|
|
24
|
+
</body>
|
|
25
|
+
</html>
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import * as react from "react";
|
|
2
|
+
import * as reactDOM from "react-dom";
|
|
3
|
+
import * as rtk from "@reduxjs/toolkit";
|
|
4
|
+
import * as axios from "axios";
|
|
5
|
+
import * as dompurify from "dompurify";
|
|
6
|
+
import * as history from "history";
|
|
7
|
+
import * as immer from "immer";
|
|
8
|
+
import * as invariant from "invariant";
|
|
9
|
+
import * as pubsubjs from "pubsub-js";
|
|
10
|
+
import * as reactAriaLive from "react-aria-live";
|
|
11
|
+
import * as reactHelmet from "react-helmet";
|
|
12
|
+
import * as reactHookForm from "react-hook-form";
|
|
13
|
+
import * as reactRedux from "react-redux";
|
|
14
|
+
import * as reactRouterDOM from "react-router-dom";
|
|
15
|
+
import * as reduxInjectors from "redux-injectors";
|
|
16
|
+
import * as reselect from "reselect";
|
|
17
|
+
import * as styledComponents from "styled-components";
|
|
18
|
+
import * as styledSystem from "styled-system";
|
|
19
|
+
import * as xstyled from "@xstyled/styled-components";
|
|
20
|
+
export {
|
|
21
|
+
axios,
|
|
22
|
+
dompurify,
|
|
23
|
+
history,
|
|
24
|
+
immer,
|
|
25
|
+
invariant,
|
|
26
|
+
pubsubjs,
|
|
27
|
+
react,
|
|
28
|
+
reactAriaLive,
|
|
29
|
+
reactDOM,
|
|
30
|
+
reactHelmet,
|
|
31
|
+
reactHookForm,
|
|
32
|
+
reactRedux,
|
|
33
|
+
reactRouterDOM,
|
|
34
|
+
reduxInjectors,
|
|
35
|
+
reselect,
|
|
36
|
+
rtk,
|
|
37
|
+
styledComponents,
|
|
38
|
+
styledSystem,
|
|
39
|
+
xstyled
|
|
40
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<!doctype html><html lang="en"><head><meta charset="UTF-8"/><meta http-equiv="X-UA-Compatible" content="IE=edge"/><meta name="viewport" content="width=device-width,initial-scale=1"/><title>React Dependencies</title><script defer="defer" src="js/emuiAppReactDependencies.6d72fa605aa98bfb153c.js"></script></head><body><h1>React Dependencies</h1><script>window.addEventListener("load",(()=>{const e=document.getElementById("libraryAttributes");e&&(e.innerHTML=Object.keys(window.emuiAppReactDependencies||{}).reduce(((e,n)=>e+`<li>${n}</li>`),""))}))</script></body></html>
|