@imperium/layout 14.3.4 → 14.5.0

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.
Files changed (33) hide show
  1. package/dist/esm/_virtual/index.js +4 -0
  2. package/dist/esm/_virtual/index.js.map +1 -0
  3. package/dist/esm/_virtual/react-is.development.js +4 -0
  4. package/dist/esm/_virtual/react-is.development.js.map +1 -0
  5. package/dist/esm/_virtual/react-is.production.min.js +4 -0
  6. package/dist/esm/_virtual/react-is.production.min.js.map +1 -0
  7. package/dist/esm/content/createPages.js +48 -15
  8. package/dist/esm/content/createPages.js.map +1 -1
  9. package/dist/esm/content/types.js.map +1 -1
  10. package/dist/esm/external/@babel/runtime/helpers/esm/assertThisInitialized.js +9 -0
  11. package/dist/esm/external/@babel/runtime/helpers/esm/assertThisInitialized.js.map +1 -0
  12. package/dist/esm/external/@babel/runtime/helpers/esm/extends.js +17 -0
  13. package/dist/esm/external/@babel/runtime/helpers/esm/extends.js.map +1 -0
  14. package/dist/esm/external/@babel/runtime/helpers/esm/inheritsLoose.js +10 -0
  15. package/dist/esm/external/@babel/runtime/helpers/esm/inheritsLoose.js.map +1 -0
  16. package/dist/esm/external/@babel/runtime/helpers/esm/objectWithoutPropertiesLoose.js +15 -0
  17. package/dist/esm/external/@babel/runtime/helpers/esm/objectWithoutPropertiesLoose.js.map +1 -0
  18. package/dist/esm/external/@babel/runtime/helpers/esm/setPrototypeOf.js +10 -0
  19. package/dist/esm/external/@babel/runtime/helpers/esm/setPrototypeOf.js.map +1 -0
  20. package/dist/esm/external/@loadable/component/dist/loadable.esm.js +470 -0
  21. package/dist/esm/external/@loadable/component/dist/loadable.esm.js.map +1 -0
  22. package/dist/esm/external/hoist-non-react-statics/dist/hoist-non-react-statics.cjs.js +107 -0
  23. package/dist/esm/external/hoist-non-react-statics/dist/hoist-non-react-statics.cjs.js.map +1 -0
  24. package/dist/esm/external/react-is/cjs/react-is.development.js +182 -0
  25. package/dist/esm/external/react-is/cjs/react-is.development.js.map +1 -0
  26. package/dist/esm/external/react-is/cjs/react-is.production.min.js +18 -0
  27. package/dist/esm/external/react-is/cjs/react-is.production.min.js.map +1 -0
  28. package/dist/esm/external/react-is/index.js +12 -0
  29. package/dist/esm/external/react-is/index.js.map +1 -0
  30. package/dist/stats.html +1 -1
  31. package/dist/stats.txt +118 -0
  32. package/dist/types/content/types.d.ts +3 -1
  33. package/package.json +5 -5
@@ -0,0 +1,182 @@
1
+ import { __exports as reactIs_development } from '../../../_virtual/react-is.development.js';
2
+ export { __exports as default } from '../../../_virtual/react-is.development.js';
3
+
4
+ /** @license React v16.13.1
5
+ * react-is.development.js
6
+ *
7
+ * Copyright (c) Facebook, Inc. and its affiliates.
8
+ *
9
+ * This source code is licensed under the MIT license found in the
10
+ * LICENSE file in the root directory of this source tree.
11
+ */
12
+
13
+
14
+
15
+ if (process.env.NODE_ENV !== "production") {
16
+ (function() {
17
+
18
+ // The Symbol used to tag the ReactElement-like types. If there is no native Symbol
19
+ // nor polyfill, then a plain number is used for performance.
20
+ var hasSymbol = typeof Symbol === 'function' && Symbol.for;
21
+ var REACT_ELEMENT_TYPE = hasSymbol ? Symbol.for('react.element') : 0xeac7;
22
+ var REACT_PORTAL_TYPE = hasSymbol ? Symbol.for('react.portal') : 0xeaca;
23
+ var REACT_FRAGMENT_TYPE = hasSymbol ? Symbol.for('react.fragment') : 0xeacb;
24
+ var REACT_STRICT_MODE_TYPE = hasSymbol ? Symbol.for('react.strict_mode') : 0xeacc;
25
+ var REACT_PROFILER_TYPE = hasSymbol ? Symbol.for('react.profiler') : 0xead2;
26
+ var REACT_PROVIDER_TYPE = hasSymbol ? Symbol.for('react.provider') : 0xeacd;
27
+ var REACT_CONTEXT_TYPE = hasSymbol ? Symbol.for('react.context') : 0xeace; // TODO: We don't use AsyncMode or ConcurrentMode anymore. They were temporary
28
+ // (unstable) APIs that have been removed. Can we remove the symbols?
29
+
30
+ var REACT_ASYNC_MODE_TYPE = hasSymbol ? Symbol.for('react.async_mode') : 0xeacf;
31
+ var REACT_CONCURRENT_MODE_TYPE = hasSymbol ? Symbol.for('react.concurrent_mode') : 0xeacf;
32
+ var REACT_FORWARD_REF_TYPE = hasSymbol ? Symbol.for('react.forward_ref') : 0xead0;
33
+ var REACT_SUSPENSE_TYPE = hasSymbol ? Symbol.for('react.suspense') : 0xead1;
34
+ var REACT_SUSPENSE_LIST_TYPE = hasSymbol ? Symbol.for('react.suspense_list') : 0xead8;
35
+ var REACT_MEMO_TYPE = hasSymbol ? Symbol.for('react.memo') : 0xead3;
36
+ var REACT_LAZY_TYPE = hasSymbol ? Symbol.for('react.lazy') : 0xead4;
37
+ var REACT_BLOCK_TYPE = hasSymbol ? Symbol.for('react.block') : 0xead9;
38
+ var REACT_FUNDAMENTAL_TYPE = hasSymbol ? Symbol.for('react.fundamental') : 0xead5;
39
+ var REACT_RESPONDER_TYPE = hasSymbol ? Symbol.for('react.responder') : 0xead6;
40
+ var REACT_SCOPE_TYPE = hasSymbol ? Symbol.for('react.scope') : 0xead7;
41
+
42
+ function isValidElementType(type) {
43
+ return typeof type === 'string' || typeof type === 'function' || // Note: its typeof might be other than 'symbol' or 'number' if it's a polyfill.
44
+ type === REACT_FRAGMENT_TYPE || type === REACT_CONCURRENT_MODE_TYPE || type === REACT_PROFILER_TYPE || type === REACT_STRICT_MODE_TYPE || type === REACT_SUSPENSE_TYPE || type === REACT_SUSPENSE_LIST_TYPE || typeof type === 'object' && type !== null && (type.$$typeof === REACT_LAZY_TYPE || type.$$typeof === REACT_MEMO_TYPE || type.$$typeof === REACT_PROVIDER_TYPE || type.$$typeof === REACT_CONTEXT_TYPE || type.$$typeof === REACT_FORWARD_REF_TYPE || type.$$typeof === REACT_FUNDAMENTAL_TYPE || type.$$typeof === REACT_RESPONDER_TYPE || type.$$typeof === REACT_SCOPE_TYPE || type.$$typeof === REACT_BLOCK_TYPE);
45
+ }
46
+
47
+ function typeOf(object) {
48
+ if (typeof object === 'object' && object !== null) {
49
+ var $$typeof = object.$$typeof;
50
+
51
+ switch ($$typeof) {
52
+ case REACT_ELEMENT_TYPE:
53
+ var type = object.type;
54
+
55
+ switch (type) {
56
+ case REACT_ASYNC_MODE_TYPE:
57
+ case REACT_CONCURRENT_MODE_TYPE:
58
+ case REACT_FRAGMENT_TYPE:
59
+ case REACT_PROFILER_TYPE:
60
+ case REACT_STRICT_MODE_TYPE:
61
+ case REACT_SUSPENSE_TYPE:
62
+ return type;
63
+
64
+ default:
65
+ var $$typeofType = type && type.$$typeof;
66
+
67
+ switch ($$typeofType) {
68
+ case REACT_CONTEXT_TYPE:
69
+ case REACT_FORWARD_REF_TYPE:
70
+ case REACT_LAZY_TYPE:
71
+ case REACT_MEMO_TYPE:
72
+ case REACT_PROVIDER_TYPE:
73
+ return $$typeofType;
74
+
75
+ default:
76
+ return $$typeof;
77
+ }
78
+
79
+ }
80
+
81
+ case REACT_PORTAL_TYPE:
82
+ return $$typeof;
83
+ }
84
+ }
85
+
86
+ return undefined;
87
+ } // AsyncMode is deprecated along with isAsyncMode
88
+
89
+ var AsyncMode = REACT_ASYNC_MODE_TYPE;
90
+ var ConcurrentMode = REACT_CONCURRENT_MODE_TYPE;
91
+ var ContextConsumer = REACT_CONTEXT_TYPE;
92
+ var ContextProvider = REACT_PROVIDER_TYPE;
93
+ var Element = REACT_ELEMENT_TYPE;
94
+ var ForwardRef = REACT_FORWARD_REF_TYPE;
95
+ var Fragment = REACT_FRAGMENT_TYPE;
96
+ var Lazy = REACT_LAZY_TYPE;
97
+ var Memo = REACT_MEMO_TYPE;
98
+ var Portal = REACT_PORTAL_TYPE;
99
+ var Profiler = REACT_PROFILER_TYPE;
100
+ var StrictMode = REACT_STRICT_MODE_TYPE;
101
+ var Suspense = REACT_SUSPENSE_TYPE;
102
+ var hasWarnedAboutDeprecatedIsAsyncMode = false; // AsyncMode should be deprecated
103
+
104
+ function isAsyncMode(object) {
105
+ {
106
+ if (!hasWarnedAboutDeprecatedIsAsyncMode) {
107
+ hasWarnedAboutDeprecatedIsAsyncMode = true; // Using console['warn'] to evade Babel and ESLint
108
+
109
+ console['warn']('The ReactIs.isAsyncMode() alias has been deprecated, ' + 'and will be removed in React 17+. Update your code to use ' + 'ReactIs.isConcurrentMode() instead. It has the exact same API.');
110
+ }
111
+ }
112
+
113
+ return isConcurrentMode(object) || typeOf(object) === REACT_ASYNC_MODE_TYPE;
114
+ }
115
+ function isConcurrentMode(object) {
116
+ return typeOf(object) === REACT_CONCURRENT_MODE_TYPE;
117
+ }
118
+ function isContextConsumer(object) {
119
+ return typeOf(object) === REACT_CONTEXT_TYPE;
120
+ }
121
+ function isContextProvider(object) {
122
+ return typeOf(object) === REACT_PROVIDER_TYPE;
123
+ }
124
+ function isElement(object) {
125
+ return typeof object === 'object' && object !== null && object.$$typeof === REACT_ELEMENT_TYPE;
126
+ }
127
+ function isForwardRef(object) {
128
+ return typeOf(object) === REACT_FORWARD_REF_TYPE;
129
+ }
130
+ function isFragment(object) {
131
+ return typeOf(object) === REACT_FRAGMENT_TYPE;
132
+ }
133
+ function isLazy(object) {
134
+ return typeOf(object) === REACT_LAZY_TYPE;
135
+ }
136
+ function isMemo(object) {
137
+ return typeOf(object) === REACT_MEMO_TYPE;
138
+ }
139
+ function isPortal(object) {
140
+ return typeOf(object) === REACT_PORTAL_TYPE;
141
+ }
142
+ function isProfiler(object) {
143
+ return typeOf(object) === REACT_PROFILER_TYPE;
144
+ }
145
+ function isStrictMode(object) {
146
+ return typeOf(object) === REACT_STRICT_MODE_TYPE;
147
+ }
148
+ function isSuspense(object) {
149
+ return typeOf(object) === REACT_SUSPENSE_TYPE;
150
+ }
151
+
152
+ reactIs_development.AsyncMode = AsyncMode;
153
+ reactIs_development.ConcurrentMode = ConcurrentMode;
154
+ reactIs_development.ContextConsumer = ContextConsumer;
155
+ reactIs_development.ContextProvider = ContextProvider;
156
+ reactIs_development.Element = Element;
157
+ reactIs_development.ForwardRef = ForwardRef;
158
+ reactIs_development.Fragment = Fragment;
159
+ reactIs_development.Lazy = Lazy;
160
+ reactIs_development.Memo = Memo;
161
+ reactIs_development.Portal = Portal;
162
+ reactIs_development.Profiler = Profiler;
163
+ reactIs_development.StrictMode = StrictMode;
164
+ reactIs_development.Suspense = Suspense;
165
+ reactIs_development.isAsyncMode = isAsyncMode;
166
+ reactIs_development.isConcurrentMode = isConcurrentMode;
167
+ reactIs_development.isContextConsumer = isContextConsumer;
168
+ reactIs_development.isContextProvider = isContextProvider;
169
+ reactIs_development.isElement = isElement;
170
+ reactIs_development.isForwardRef = isForwardRef;
171
+ reactIs_development.isFragment = isFragment;
172
+ reactIs_development.isLazy = isLazy;
173
+ reactIs_development.isMemo = isMemo;
174
+ reactIs_development.isPortal = isPortal;
175
+ reactIs_development.isProfiler = isProfiler;
176
+ reactIs_development.isStrictMode = isStrictMode;
177
+ reactIs_development.isSuspense = isSuspense;
178
+ reactIs_development.isValidElementType = isValidElementType;
179
+ reactIs_development.typeOf = typeOf;
180
+ })();
181
+ }
182
+ //# sourceMappingURL=react-is.development.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"react-is.development.js","sources":["../../../../../../../node_modules/react-is/cjs/react-is.development.js"],"sourcesContent":["/** @license React v16.13.1\n * react-is.development.js\n *\n * Copyright (c) Facebook, Inc. and its affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n'use strict';\n\n\n\nif (process.env.NODE_ENV !== \"production\") {\n (function() {\n'use strict';\n\n// The Symbol used to tag the ReactElement-like types. If there is no native Symbol\n// nor polyfill, then a plain number is used for performance.\nvar hasSymbol = typeof Symbol === 'function' && Symbol.for;\nvar REACT_ELEMENT_TYPE = hasSymbol ? Symbol.for('react.element') : 0xeac7;\nvar REACT_PORTAL_TYPE = hasSymbol ? Symbol.for('react.portal') : 0xeaca;\nvar REACT_FRAGMENT_TYPE = hasSymbol ? Symbol.for('react.fragment') : 0xeacb;\nvar REACT_STRICT_MODE_TYPE = hasSymbol ? Symbol.for('react.strict_mode') : 0xeacc;\nvar REACT_PROFILER_TYPE = hasSymbol ? Symbol.for('react.profiler') : 0xead2;\nvar REACT_PROVIDER_TYPE = hasSymbol ? Symbol.for('react.provider') : 0xeacd;\nvar REACT_CONTEXT_TYPE = hasSymbol ? Symbol.for('react.context') : 0xeace; // TODO: We don't use AsyncMode or ConcurrentMode anymore. They were temporary\n// (unstable) APIs that have been removed. Can we remove the symbols?\n\nvar REACT_ASYNC_MODE_TYPE = hasSymbol ? Symbol.for('react.async_mode') : 0xeacf;\nvar REACT_CONCURRENT_MODE_TYPE = hasSymbol ? Symbol.for('react.concurrent_mode') : 0xeacf;\nvar REACT_FORWARD_REF_TYPE = hasSymbol ? Symbol.for('react.forward_ref') : 0xead0;\nvar REACT_SUSPENSE_TYPE = hasSymbol ? Symbol.for('react.suspense') : 0xead1;\nvar REACT_SUSPENSE_LIST_TYPE = hasSymbol ? Symbol.for('react.suspense_list') : 0xead8;\nvar REACT_MEMO_TYPE = hasSymbol ? Symbol.for('react.memo') : 0xead3;\nvar REACT_LAZY_TYPE = hasSymbol ? Symbol.for('react.lazy') : 0xead4;\nvar REACT_BLOCK_TYPE = hasSymbol ? Symbol.for('react.block') : 0xead9;\nvar REACT_FUNDAMENTAL_TYPE = hasSymbol ? Symbol.for('react.fundamental') : 0xead5;\nvar REACT_RESPONDER_TYPE = hasSymbol ? Symbol.for('react.responder') : 0xead6;\nvar REACT_SCOPE_TYPE = hasSymbol ? Symbol.for('react.scope') : 0xead7;\n\nfunction isValidElementType(type) {\n return typeof type === 'string' || typeof type === 'function' || // Note: its typeof might be other than 'symbol' or 'number' if it's a polyfill.\n type === REACT_FRAGMENT_TYPE || type === REACT_CONCURRENT_MODE_TYPE || type === REACT_PROFILER_TYPE || type === REACT_STRICT_MODE_TYPE || type === REACT_SUSPENSE_TYPE || type === REACT_SUSPENSE_LIST_TYPE || typeof type === 'object' && type !== null && (type.$$typeof === REACT_LAZY_TYPE || type.$$typeof === REACT_MEMO_TYPE || type.$$typeof === REACT_PROVIDER_TYPE || type.$$typeof === REACT_CONTEXT_TYPE || type.$$typeof === REACT_FORWARD_REF_TYPE || type.$$typeof === REACT_FUNDAMENTAL_TYPE || type.$$typeof === REACT_RESPONDER_TYPE || type.$$typeof === REACT_SCOPE_TYPE || type.$$typeof === REACT_BLOCK_TYPE);\n}\n\nfunction typeOf(object) {\n if (typeof object === 'object' && object !== null) {\n var $$typeof = object.$$typeof;\n\n switch ($$typeof) {\n case REACT_ELEMENT_TYPE:\n var type = object.type;\n\n switch (type) {\n case REACT_ASYNC_MODE_TYPE:\n case REACT_CONCURRENT_MODE_TYPE:\n case REACT_FRAGMENT_TYPE:\n case REACT_PROFILER_TYPE:\n case REACT_STRICT_MODE_TYPE:\n case REACT_SUSPENSE_TYPE:\n return type;\n\n default:\n var $$typeofType = type && type.$$typeof;\n\n switch ($$typeofType) {\n case REACT_CONTEXT_TYPE:\n case REACT_FORWARD_REF_TYPE:\n case REACT_LAZY_TYPE:\n case REACT_MEMO_TYPE:\n case REACT_PROVIDER_TYPE:\n return $$typeofType;\n\n default:\n return $$typeof;\n }\n\n }\n\n case REACT_PORTAL_TYPE:\n return $$typeof;\n }\n }\n\n return undefined;\n} // AsyncMode is deprecated along with isAsyncMode\n\nvar AsyncMode = REACT_ASYNC_MODE_TYPE;\nvar ConcurrentMode = REACT_CONCURRENT_MODE_TYPE;\nvar ContextConsumer = REACT_CONTEXT_TYPE;\nvar ContextProvider = REACT_PROVIDER_TYPE;\nvar Element = REACT_ELEMENT_TYPE;\nvar ForwardRef = REACT_FORWARD_REF_TYPE;\nvar Fragment = REACT_FRAGMENT_TYPE;\nvar Lazy = REACT_LAZY_TYPE;\nvar Memo = REACT_MEMO_TYPE;\nvar Portal = REACT_PORTAL_TYPE;\nvar Profiler = REACT_PROFILER_TYPE;\nvar StrictMode = REACT_STRICT_MODE_TYPE;\nvar Suspense = REACT_SUSPENSE_TYPE;\nvar hasWarnedAboutDeprecatedIsAsyncMode = false; // AsyncMode should be deprecated\n\nfunction isAsyncMode(object) {\n {\n if (!hasWarnedAboutDeprecatedIsAsyncMode) {\n hasWarnedAboutDeprecatedIsAsyncMode = true; // Using console['warn'] to evade Babel and ESLint\n\n console['warn']('The ReactIs.isAsyncMode() alias has been deprecated, ' + 'and will be removed in React 17+. Update your code to use ' + 'ReactIs.isConcurrentMode() instead. It has the exact same API.');\n }\n }\n\n return isConcurrentMode(object) || typeOf(object) === REACT_ASYNC_MODE_TYPE;\n}\nfunction isConcurrentMode(object) {\n return typeOf(object) === REACT_CONCURRENT_MODE_TYPE;\n}\nfunction isContextConsumer(object) {\n return typeOf(object) === REACT_CONTEXT_TYPE;\n}\nfunction isContextProvider(object) {\n return typeOf(object) === REACT_PROVIDER_TYPE;\n}\nfunction isElement(object) {\n return typeof object === 'object' && object !== null && object.$$typeof === REACT_ELEMENT_TYPE;\n}\nfunction isForwardRef(object) {\n return typeOf(object) === REACT_FORWARD_REF_TYPE;\n}\nfunction isFragment(object) {\n return typeOf(object) === REACT_FRAGMENT_TYPE;\n}\nfunction isLazy(object) {\n return typeOf(object) === REACT_LAZY_TYPE;\n}\nfunction isMemo(object) {\n return typeOf(object) === REACT_MEMO_TYPE;\n}\nfunction isPortal(object) {\n return typeOf(object) === REACT_PORTAL_TYPE;\n}\nfunction isProfiler(object) {\n return typeOf(object) === REACT_PROFILER_TYPE;\n}\nfunction isStrictMode(object) {\n return typeOf(object) === REACT_STRICT_MODE_TYPE;\n}\nfunction isSuspense(object) {\n return typeOf(object) === REACT_SUSPENSE_TYPE;\n}\n\nexports.AsyncMode = AsyncMode;\nexports.ConcurrentMode = ConcurrentMode;\nexports.ContextConsumer = ContextConsumer;\nexports.ContextProvider = ContextProvider;\nexports.Element = Element;\nexports.ForwardRef = ForwardRef;\nexports.Fragment = Fragment;\nexports.Lazy = Lazy;\nexports.Memo = Memo;\nexports.Portal = Portal;\nexports.Profiler = Profiler;\nexports.StrictMode = StrictMode;\nexports.Suspense = Suspense;\nexports.isAsyncMode = isAsyncMode;\nexports.isConcurrentMode = isConcurrentMode;\nexports.isContextConsumer = isContextConsumer;\nexports.isContextProvider = isContextProvider;\nexports.isElement = isElement;\nexports.isForwardRef = isForwardRef;\nexports.isFragment = isFragment;\nexports.isLazy = isLazy;\nexports.isMemo = isMemo;\nexports.isPortal = isPortal;\nexports.isProfiler = isProfiler;\nexports.isStrictMode = isStrictMode;\nexports.isSuspense = isSuspense;\nexports.isValidElementType = isValidElementType;\nexports.typeOf = typeOf;\n })();\n}\n"],"names":[],"mappings":"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"}
@@ -0,0 +1,18 @@
1
+ import { __exports as reactIs_production_min } from '../../../_virtual/react-is.production.min.js';
2
+ export { __exports as default } from '../../../_virtual/react-is.production.min.js';
3
+
4
+ /** @license React v16.13.1
5
+ * react-is.production.min.js
6
+ *
7
+ * Copyright (c) Facebook, Inc. and its affiliates.
8
+ *
9
+ * This source code is licensed under the MIT license found in the
10
+ * LICENSE file in the root directory of this source tree.
11
+ */
12
+ var b="function"===typeof Symbol&&Symbol.for,c=b?Symbol.for("react.element"):60103,d=b?Symbol.for("react.portal"):60106,e=b?Symbol.for("react.fragment"):60107,f=b?Symbol.for("react.strict_mode"):60108,g=b?Symbol.for("react.profiler"):60114,h=b?Symbol.for("react.provider"):60109,k=b?Symbol.for("react.context"):60110,l=b?Symbol.for("react.async_mode"):60111,m=b?Symbol.for("react.concurrent_mode"):60111,n=b?Symbol.for("react.forward_ref"):60112,p=b?Symbol.for("react.suspense"):60113,q=b?
13
+ Symbol.for("react.suspense_list"):60120,r=b?Symbol.for("react.memo"):60115,t=b?Symbol.for("react.lazy"):60116,v=b?Symbol.for("react.block"):60121,w=b?Symbol.for("react.fundamental"):60117,x=b?Symbol.for("react.responder"):60118,y=b?Symbol.for("react.scope"):60119;
14
+ function z(a){if("object"===typeof a&&null!==a){var u=a.$$typeof;switch(u){case c:switch(a=a.type,a){case l:case m:case e:case g:case f:case p:return a;default:switch(a=a&&a.$$typeof,a){case k:case n:case t:case r:case h:return a;default:return u}}case d:return u}}}function A(a){return z(a)===m}reactIs_production_min.AsyncMode=l;reactIs_production_min.ConcurrentMode=m;reactIs_production_min.ContextConsumer=k;reactIs_production_min.ContextProvider=h;reactIs_production_min.Element=c;reactIs_production_min.ForwardRef=n;reactIs_production_min.Fragment=e;reactIs_production_min.Lazy=t;reactIs_production_min.Memo=r;reactIs_production_min.Portal=d;
15
+ reactIs_production_min.Profiler=g;reactIs_production_min.StrictMode=f;reactIs_production_min.Suspense=p;reactIs_production_min.isAsyncMode=function(a){return A(a)||z(a)===l};reactIs_production_min.isConcurrentMode=A;reactIs_production_min.isContextConsumer=function(a){return z(a)===k};reactIs_production_min.isContextProvider=function(a){return z(a)===h};reactIs_production_min.isElement=function(a){return "object"===typeof a&&null!==a&&a.$$typeof===c};reactIs_production_min.isForwardRef=function(a){return z(a)===n};reactIs_production_min.isFragment=function(a){return z(a)===e};reactIs_production_min.isLazy=function(a){return z(a)===t};
16
+ reactIs_production_min.isMemo=function(a){return z(a)===r};reactIs_production_min.isPortal=function(a){return z(a)===d};reactIs_production_min.isProfiler=function(a){return z(a)===g};reactIs_production_min.isStrictMode=function(a){return z(a)===f};reactIs_production_min.isSuspense=function(a){return z(a)===p};
17
+ reactIs_production_min.isValidElementType=function(a){return "string"===typeof a||"function"===typeof a||a===e||a===m||a===g||a===f||a===p||a===q||"object"===typeof a&&null!==a&&(a.$$typeof===t||a.$$typeof===r||a.$$typeof===h||a.$$typeof===k||a.$$typeof===n||a.$$typeof===w||a.$$typeof===x||a.$$typeof===y||a.$$typeof===v)};reactIs_production_min.typeOf=z;
18
+ //# sourceMappingURL=react-is.production.min.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"react-is.production.min.js","sources":["../../../../../../../node_modules/react-is/cjs/react-is.production.min.js"],"sourcesContent":["/** @license React v16.13.1\n * react-is.production.min.js\n *\n * Copyright (c) Facebook, Inc. and its affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n'use strict';var b=\"function\"===typeof Symbol&&Symbol.for,c=b?Symbol.for(\"react.element\"):60103,d=b?Symbol.for(\"react.portal\"):60106,e=b?Symbol.for(\"react.fragment\"):60107,f=b?Symbol.for(\"react.strict_mode\"):60108,g=b?Symbol.for(\"react.profiler\"):60114,h=b?Symbol.for(\"react.provider\"):60109,k=b?Symbol.for(\"react.context\"):60110,l=b?Symbol.for(\"react.async_mode\"):60111,m=b?Symbol.for(\"react.concurrent_mode\"):60111,n=b?Symbol.for(\"react.forward_ref\"):60112,p=b?Symbol.for(\"react.suspense\"):60113,q=b?\nSymbol.for(\"react.suspense_list\"):60120,r=b?Symbol.for(\"react.memo\"):60115,t=b?Symbol.for(\"react.lazy\"):60116,v=b?Symbol.for(\"react.block\"):60121,w=b?Symbol.for(\"react.fundamental\"):60117,x=b?Symbol.for(\"react.responder\"):60118,y=b?Symbol.for(\"react.scope\"):60119;\nfunction z(a){if(\"object\"===typeof a&&null!==a){var u=a.$$typeof;switch(u){case c:switch(a=a.type,a){case l:case m:case e:case g:case f:case p:return a;default:switch(a=a&&a.$$typeof,a){case k:case n:case t:case r:case h:return a;default:return u}}case d:return u}}}function A(a){return z(a)===m}exports.AsyncMode=l;exports.ConcurrentMode=m;exports.ContextConsumer=k;exports.ContextProvider=h;exports.Element=c;exports.ForwardRef=n;exports.Fragment=e;exports.Lazy=t;exports.Memo=r;exports.Portal=d;\nexports.Profiler=g;exports.StrictMode=f;exports.Suspense=p;exports.isAsyncMode=function(a){return A(a)||z(a)===l};exports.isConcurrentMode=A;exports.isContextConsumer=function(a){return z(a)===k};exports.isContextProvider=function(a){return z(a)===h};exports.isElement=function(a){return\"object\"===typeof a&&null!==a&&a.$$typeof===c};exports.isForwardRef=function(a){return z(a)===n};exports.isFragment=function(a){return z(a)===e};exports.isLazy=function(a){return z(a)===t};\nexports.isMemo=function(a){return z(a)===r};exports.isPortal=function(a){return z(a)===d};exports.isProfiler=function(a){return z(a)===g};exports.isStrictMode=function(a){return z(a)===f};exports.isSuspense=function(a){return z(a)===p};\nexports.isValidElementType=function(a){return\"string\"===typeof a||\"function\"===typeof a||a===e||a===m||a===g||a===f||a===p||a===q||\"object\"===typeof a&&null!==a&&(a.$$typeof===t||a.$$typeof===r||a.$$typeof===h||a.$$typeof===k||a.$$typeof===n||a.$$typeof===w||a.$$typeof===x||a.$$typeof===y||a.$$typeof===v)};exports.typeOf=z;\n"],"names":[],"mappings":";;;;;;;;;;;AASa,IAAI,CAAC,CAAC,UAAU,GAAG,OAAO,MAAM,EAAE,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,GAAG,CAAC,eAAe,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,GAAG,CAAC,cAAc,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,GAAG,CAAC,gBAAgB,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,GAAG,CAAC,mBAAmB,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,GAAG,CAAC,gBAAgB,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,GAAG,CAAC,gBAAgB,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,GAAG,CAAC,eAAe,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,GAAG,CAAC,kBAAkB,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,GAAG,CAAC,uBAAuB,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,GAAG,CAAC,mBAAmB,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,GAAG,CAAC,gBAAgB,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;AACrf,MAAM,CAAC,GAAG,CAAC,qBAAqB,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,GAAG,CAAC,YAAY,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,GAAG,CAAC,YAAY,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,GAAG,CAAC,aAAa,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,GAAG,CAAC,mBAAmB,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,GAAG,CAAC,iBAAiB,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,GAAG,CAAC,aAAa,CAAC,CAAC,KAAK,CAAC;AACxQ,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,QAAQ,GAAG,OAAO,CAAC,EAAE,IAAI,GAAG,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,OAAO,CAAC,EAAE,KAAK,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,KAAK,CAAC,CAAC,KAAK,CAAC,CAAC,KAAK,CAAC,CAAC,KAAK,CAAC,CAAC,KAAK,CAAC,CAAC,KAAK,CAAC,CAAC,OAAO,CAAC,CAAC,QAAQ,OAAO,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,EAAE,KAAK,CAAC,CAAC,KAAK,CAAC,CAAC,KAAK,CAAC,CAAC,KAAK,CAAC,CAAC,KAAK,CAAC,CAAC,OAAO,CAAC,CAAC,QAAQ,OAAO,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,sBAAA,CAAA,SAAiB,CAAC,EAAwB,sBAAA,CAAA,cAAA,CAAC,wCAAyB,CAAC,EAAE,sBAAA,CAAA,eAAuB,CAAC,EAAiB,sBAAA,CAAA,OAAA,CAAC,EAAE,sBAAA,CAAA,UAAkB,CAAC,EAAkB,sBAAA,CAAA,QAAA,CAAC,6BAAc,CAAC,EAAE,sBAAA,CAAA,IAAY,CAAC,EAAgB,sBAAA,CAAA,MAAA,CAAC,EAAE;AAClf,sBAAA,CAAA,QAAgB,CAAC,EAAE,sBAAA,CAAA,UAAkB,CAAC,EAAE,sBAAA,CAAA,QAAgB,CAAC,EAAE,sBAAA,CAAA,WAAmB,CAAC,SAAS,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,sBAAA,CAAA,gBAAwB,CAAC,EAAE,sBAAA,CAAA,iBAAyB,CAAC,SAAS,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,sBAAA,CAAA,iBAAyB,CAAC,SAAS,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,sBAAA,CAAA,SAAiB,CAAC,SAAS,CAAC,CAAC,CAAC,OAAM,QAAQ,GAAG,OAAO,CAAC,EAAE,IAAI,GAAG,CAAC,EAAE,CAAC,CAAC,QAAQ,GAAG,CAAC,EAAE,sBAAA,CAAA,YAAoB,CAAC,SAAS,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,sBAAA,CAAA,UAAkB,CAAC,SAAS,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,sBAAA,CAAA,MAAc,CAAC,SAAS,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE;AAC5d,sBAAA,CAAA,MAAc,CAAC,SAAS,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,iCAAkB,CAAC,SAAS,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,EAAoB,sBAAA,CAAA,UAAA,CAAC,SAAS,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,sBAAA,CAAA,YAAoB,CAAC,SAAS,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,sBAAA,CAAA,UAAkB,CAAC,SAAS,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE;AAClN,sBAAA,CAAA,kBAAA,CAAC,SAAS,CAAC,CAAC,CAAC,OAAM,QAAQ,GAAG,OAAO,CAAC,EAAE,UAAU,GAAG,OAAO,CAAC,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,EAAE,QAAQ,GAAG,OAAO,CAAC,EAAE,IAAI,GAAG,CAAC,GAAG,CAAC,CAAC,QAAQ,GAAG,CAAC,EAAE,CAAC,CAAC,QAAQ,GAAG,CAAC,EAAE,CAAC,CAAC,QAAQ,GAAG,CAAC,EAAE,CAAC,CAAC,QAAQ,GAAG,CAAC,EAAE,CAAC,CAAC,QAAQ,GAAG,CAAC,EAAE,CAAC,CAAC,QAAQ,GAAG,CAAC,EAAE,CAAC,CAAC,QAAQ,GAAG,CAAC,EAAE,CAAC,CAAC,QAAQ,GAAG,CAAC,EAAE,CAAC,CAAC,QAAQ,GAAG,CAAC,CAAC,EAAgB,sBAAA,CAAA,MAAA,CAAC"}
@@ -0,0 +1,12 @@
1
+ import { r as reactIs } from '../../_virtual/index.js';
2
+ import './cjs/react-is.production.min.js';
3
+ import './cjs/react-is.development.js';
4
+ import { __exports as reactIs_production_min } from '../../_virtual/react-is.production.min.js';
5
+ import { __exports as reactIs_development } from '../../_virtual/react-is.development.js';
6
+
7
+ if (process.env.NODE_ENV === 'production') {
8
+ reactIs.exports = reactIs_production_min;
9
+ } else {
10
+ reactIs.exports = reactIs_development;
11
+ }
12
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":null,"sources":[null],"sourcesContent":[null],"names":[],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;"}
package/dist/stats.html CHANGED
@@ -2669,7 +2669,7 @@ var drawChart = (function (exports) {
2669
2669
  </script>
2670
2670
  <script>
2671
2671
  /*<!--*/
2672
- const data = {"version":2,"tree":{"name":"root","children":[{"name":"index.js","children":[{"name":"src/index.ts","uid":"4af4-1"}]},{"name":"state.js","children":[{"name":"src/state.ts","uid":"4af4-3"}]},{"name":"content/dividerSidebarItem.js","children":[{"name":"src/content/dividerSidebarItem.ts","uid":"4af4-5"}]},{"name":"layout/withLayout.js","children":[{"name":"src/layout/withLayout.tsx","uid":"4af4-7"}]},{"name":"content/createPages.js","children":[{"name":"src/content/createPages.tsx","uid":"4af4-9"}]},{"name":"types.js","children":[{"name":"src/types.ts","uid":"4af4-11"}]},{"name":"content/types.js","children":[{"name":"src/content/types.ts","uid":"4af4-13"}]},{"name":"datahooks/DataHooks.js","children":[{"name":"src/datahooks/DataHooks.tsx","uid":"4af4-15"}]},{"name":"datahooks/Permissions.js","children":[{"name":"src/datahooks/Permissions.tsx","uid":"4af4-17"}]},{"name":"datahooks/PermissionHooks.js","children":[{"name":"src/datahooks/PermissionHooks.tsx","uid":"4af4-19"}]},{"name":"content/components/ContentComponent.js","children":[{"name":"src/content/components/ContentComponent.tsx","uid":"4af4-21"}]},{"name":"layout/components/Layout.js","children":[{"name":"src/layout/components/Layout.tsx","uid":"4af4-23"}]},{"name":"datahooks/ExecuteDataHook.js","children":[{"name":"src/datahooks/ExecuteDataHook.tsx","uid":"4af4-25"}]},{"name":"datahooks/ExecutePermissionHook.js","children":[{"name":"src/datahooks/ExecutePermissionHook.tsx","uid":"4af4-27"}]},{"name":"utils.js","children":[{"name":"src/utils.ts","uid":"4af4-29"}]},{"name":"layout/moveItems.js","children":[{"name":"src/layout/moveItems.ts","uid":"4af4-31"}]},{"name":"content/components/styles.module.css.js","children":[{"name":"src/content/components/styles.module.css","uid":"4af4-33"}]},{"name":"layout/components/styles.module.css.js","children":[{"name":"src/layout/components/styles.module.css","uid":"4af4-35"}]},{"name":"content/components/Header.js","children":[{"name":"src/content/components/Header.tsx","uid":"4af4-37"}]},{"name":"content/components/SidebarItemWrapper.js","children":[{"name":"src/content/components/SidebarItemWrapper.tsx","uid":"4af4-39"}]},{"name":"layout/components/LayoutItemBar.js","children":[{"name":"src/layout/components/LayoutItemBar.tsx","uid":"4af4-41"}]},{"name":"content/hooks/useBuildContentData.js","children":[{"name":"src/content/hooks/useBuildContentData.ts","uid":"4af4-43"}]},{"name":"layout/components/SecondaryMenuToggleItem.js","children":[{"name":"src/layout/components/SecondaryMenuToggleItem.tsx","uid":"4af4-45"}]},{"name":"layout/types.js","children":[{"name":"src/layout/types.ts","uid":"4af4-47"}]},{"name":"layout/utils.js","children":[{"name":"src/layout/utils.tsx","uid":"4af4-49"}]},{"name":"hooks/useBuildData.js","children":[{"name":"src/hooks/useBuildData.ts","uid":"4af4-51"}]},{"name":"layout/components/LayoutItemWrapper.js","children":[{"name":"src/layout/components/LayoutItemWrapper.tsx","uid":"4af4-53"}]},{"name":"content/components/ActionFormSidebarItemComponent.js","children":[{"name":"src/content/components/ActionFormSidebarItemComponent.tsx","uid":"4af4-55"}]},{"name":"content/components/ActionSidebarItemComponent.js","children":[{"name":"src/content/components/ActionSidebarItemComponent.tsx","uid":"4af4-57"}]},{"name":"content/components/PlainSidebarItem.js","children":[{"name":"src/content/components/PlainSidebarItem.tsx","uid":"4af4-59"}]},{"name":"content/components/CustomSidebarItemComponent.js","children":[{"name":"src/content/components/CustomSidebarItemComponent.tsx","uid":"4af4-61"}]},{"name":"commonItems.js","children":[{"name":"src/commonItems.ts","uid":"4af4-63"}]},{"name":"hooks/useIsActiveRoute.js","children":[{"name":"src/hooks/useIsActiveRoute.ts","uid":"4af4-65"}]},{"name":"hooks/useSelectState.js","children":[{"name":"src/hooks/useSelectState.ts","uid":"4af4-67"}]},{"name":"hooks/useSelectPermission.js","children":[{"name":"src/hooks/useSelectPermission.ts","uid":"4af4-69"}]},{"name":"content/utils.js","children":[{"name":"src/content/utils.tsx","uid":"4af4-71"}]},{"name":"layout/components/CustomLayoutItemComponent.js","children":[{"name":"src/layout/components/CustomLayoutItemComponent.tsx","uid":"4af4-73"}]},{"name":"layout/components/DropdownItem.js","children":[{"name":"src/layout/components/DropdownItem.tsx","uid":"4af4-75"}]},{"name":"layout/components/MenuItem.js","children":[{"name":"src/layout/components/MenuItem.tsx","uid":"4af4-77"}]},{"name":"layout/components/PlainItem.js","children":[{"name":"src/layout/components/PlainItem.tsx","uid":"4af4-79"}]},{"name":"content/components/ActionForm.js","children":[{"name":"src/content/components/ActionForm.tsx","uid":"4af4-81"}]},{"name":"external/style-inject/dist/style-inject.es.js","children":[{"name":"home/artemis/Github/imperium/node_modules/style-inject/dist/style-inject.es.js","uid":"4af4-83"}]}],"isRoot":true},"nodeParts":{"4af4-1":{"renderedLength":144,"gzipLength":131,"brotliLength":106,"mainUid":"4af4-0"},"4af4-3":{"renderedLength":591,"gzipLength":268,"brotliLength":243,"mainUid":"4af4-2"},"4af4-5":{"renderedLength":59,"gzipLength":73,"brotliLength":63,"mainUid":"4af4-4"},"4af4-7":{"renderedLength":1955,"gzipLength":562,"brotliLength":488,"mainUid":"4af4-6"},"4af4-9":{"renderedLength":650,"gzipLength":301,"brotliLength":268,"mainUid":"4af4-8"},"4af4-11":{"renderedLength":121,"gzipLength":111,"brotliLength":90,"mainUid":"4af4-10"},"4af4-13":{"renderedLength":388,"gzipLength":167,"brotliLength":111,"mainUid":"4af4-12"},"4af4-15":{"renderedLength":1058,"gzipLength":390,"brotliLength":330,"mainUid":"4af4-14"},"4af4-17":{"renderedLength":864,"gzipLength":366,"brotliLength":318,"mainUid":"4af4-16"},"4af4-19":{"renderedLength":339,"gzipLength":202,"brotliLength":164,"mainUid":"4af4-18"},"4af4-21":{"renderedLength":3584,"gzipLength":934,"brotliLength":811,"mainUid":"4af4-20"},"4af4-23":{"renderedLength":2512,"gzipLength":751,"brotliLength":636,"mainUid":"4af4-22"},"4af4-25":{"renderedLength":123,"gzipLength":111,"brotliLength":93,"mainUid":"4af4-24"},"4af4-27":{"renderedLength":345,"gzipLength":207,"brotliLength":172,"mainUid":"4af4-26"},"4af4-29":{"renderedLength":145,"gzipLength":117,"brotliLength":116,"mainUid":"4af4-28"},"4af4-31":{"renderedLength":1401,"gzipLength":376,"brotliLength":347,"mainUid":"4af4-30"},"4af4-33":{"renderedLength":2119,"gzipLength":680,"brotliLength":565,"mainUid":"4af4-32"},"4af4-35":{"renderedLength":3176,"gzipLength":928,"brotliLength":762,"mainUid":"4af4-34"},"4af4-37":{"renderedLength":1042,"gzipLength":377,"brotliLength":323,"mainUid":"4af4-36"},"4af4-39":{"renderedLength":1189,"gzipLength":399,"brotliLength":314,"mainUid":"4af4-38"},"4af4-41":{"renderedLength":726,"gzipLength":294,"brotliLength":252,"mainUid":"4af4-40"},"4af4-43":{"renderedLength":257,"gzipLength":158,"brotliLength":122,"mainUid":"4af4-42"},"4af4-45":{"renderedLength":356,"gzipLength":233,"brotliLength":176,"mainUid":"4af4-44"},"4af4-47":{"renderedLength":191,"gzipLength":113,"brotliLength":89,"mainUid":"4af4-46"},"4af4-49":{"renderedLength":915,"gzipLength":393,"brotliLength":328,"mainUid":"4af4-48"},"4af4-51":{"renderedLength":799,"gzipLength":370,"brotliLength":330,"mainUid":"4af4-50"},"4af4-53":{"renderedLength":1503,"gzipLength":487,"brotliLength":399,"mainUid":"4af4-52"},"4af4-55":{"renderedLength":644,"gzipLength":341,"brotliLength":295,"mainUid":"4af4-54"},"4af4-57":{"renderedLength":343,"gzipLength":239,"brotliLength":181,"mainUid":"4af4-56"},"4af4-59":{"renderedLength":325,"gzipLength":230,"brotliLength":183,"mainUid":"4af4-58"},"4af4-61":{"renderedLength":83,"gzipLength":97,"brotliLength":66,"mainUid":"4af4-60"},"4af4-63":{"renderedLength":203,"gzipLength":136,"brotliLength":97,"mainUid":"4af4-62"},"4af4-65":{"renderedLength":514,"gzipLength":227,"brotliLength":187,"mainUid":"4af4-64"},"4af4-67":{"renderedLength":326,"gzipLength":176,"brotliLength":141,"mainUid":"4af4-66"},"4af4-69":{"renderedLength":294,"gzipLength":155,"brotliLength":114,"mainUid":"4af4-68"},"4af4-71":{"renderedLength":628,"gzipLength":259,"brotliLength":219,"mainUid":"4af4-70"},"4af4-73":{"renderedLength":82,"gzipLength":96,"brotliLength":66,"mainUid":"4af4-72"},"4af4-75":{"renderedLength":1179,"gzipLength":450,"brotliLength":362,"mainUid":"4af4-74"},"4af4-77":{"renderedLength":252,"gzipLength":157,"brotliLength":116,"mainUid":"4af4-76"},"4af4-79":{"renderedLength":379,"gzipLength":264,"brotliLength":224,"mainUid":"4af4-78"},"4af4-81":{"renderedLength":1667,"gzipLength":624,"brotliLength":519,"mainUid":"4af4-80"},"4af4-83":{"renderedLength":636,"gzipLength":318,"brotliLength":242,"mainUid":"4af4-82"}},"nodeMetas":{"4af4-0":{"id":"/src/index.ts","moduleParts":{"index.js":"4af4-1"},"imported":[{"uid":"4af4-6"},{"uid":"4af4-2"},{"uid":"4af4-8"},{"uid":"4af4-4"}],"importedBy":[],"isEntry":true},"4af4-2":{"id":"/src/state.ts","moduleParts":{"state.js":"4af4-3"},"imported":[{"uid":"4af4-86"},{"uid":"4af4-87"}],"importedBy":[{"uid":"4af4-0"},{"uid":"4af4-16"},{"uid":"4af4-20"},{"uid":"4af4-26"},{"uid":"4af4-50"}]},"4af4-4":{"id":"/src/content/dividerSidebarItem.ts","moduleParts":{"content/dividerSidebarItem.js":"4af4-5"},"imported":[],"importedBy":[{"uid":"4af4-0"}]},"4af4-6":{"id":"/src/layout/withLayout.tsx","moduleParts":{"layout/withLayout.js":"4af4-7"},"imported":[{"uid":"4af4-84"},{"uid":"4af4-85"},{"uid":"4af4-14"},{"uid":"4af4-18"},{"uid":"4af4-16"},{"uid":"4af4-10"},{"uid":"4af4-22"}],"importedBy":[{"uid":"4af4-0"}]},"4af4-8":{"id":"/src/content/createPages.tsx","moduleParts":{"content/createPages.js":"4af4-9"},"imported":[{"uid":"4af4-84"},{"uid":"4af4-85"},{"uid":"4af4-20"},{"uid":"4af4-12"}],"importedBy":[{"uid":"4af4-0"}]},"4af4-10":{"id":"/src/types.ts","moduleParts":{"types.js":"4af4-11"},"imported":[],"importedBy":[{"uid":"4af4-6"}]},"4af4-12":{"id":"/src/content/types.ts","moduleParts":{"content/types.js":"4af4-13"},"imported":[],"importedBy":[{"uid":"4af4-8"},{"uid":"4af4-36"},{"uid":"4af4-38"}]},"4af4-14":{"id":"/src/datahooks/DataHooks.tsx","moduleParts":{"datahooks/DataHooks.js":"4af4-15"},"imported":[{"uid":"4af4-84"},{"uid":"4af4-85"},{"uid":"4af4-88"},{"uid":"4af4-24"}],"importedBy":[{"uid":"4af4-6"},{"uid":"4af4-20"}]},"4af4-16":{"id":"/src/datahooks/Permissions.tsx","moduleParts":{"datahooks/Permissions.js":"4af4-17"},"imported":[{"uid":"4af4-84"},{"uid":"4af4-89"},{"uid":"4af4-85"},{"uid":"4af4-90"},{"uid":"4af4-2"}],"importedBy":[{"uid":"4af4-6"}]},"4af4-18":{"id":"/src/datahooks/PermissionHooks.tsx","moduleParts":{"datahooks/PermissionHooks.js":"4af4-19"},"imported":[{"uid":"4af4-84"},{"uid":"4af4-85"},{"uid":"4af4-26"}],"importedBy":[{"uid":"4af4-6"}]},"4af4-20":{"id":"/src/content/components/ContentComponent.tsx","moduleParts":{"content/components/ContentComponent.js":"4af4-21"},"imported":[{"uid":"4af4-84"},{"uid":"4af4-85"},{"uid":"4af4-93"},{"uid":"4af4-90"},{"uid":"4af4-92"},{"uid":"4af4-91"},{"uid":"4af4-14"},{"uid":"4af4-2"},{"uid":"4af4-28"},{"uid":"4af4-42"},{"uid":"4af4-36"},{"uid":"4af4-38"},{"uid":"4af4-32"}],"importedBy":[{"uid":"4af4-8"}]},"4af4-22":{"id":"/src/layout/components/Layout.tsx","moduleParts":{"layout/components/Layout.js":"4af4-23"},"imported":[{"uid":"4af4-84"},{"uid":"4af4-85"},{"uid":"4af4-91"},{"uid":"4af4-92"},{"uid":"4af4-30"},{"uid":"4af4-40"},{"uid":"4af4-44"},{"uid":"4af4-34"}],"importedBy":[{"uid":"4af4-6"}]},"4af4-24":{"id":"/src/datahooks/ExecuteDataHook.tsx","moduleParts":{"datahooks/ExecuteDataHook.js":"4af4-25"},"imported":[{"uid":"4af4-84"}],"importedBy":[{"uid":"4af4-14"}]},"4af4-26":{"id":"/src/datahooks/ExecutePermissionHook.tsx","moduleParts":{"datahooks/ExecutePermissionHook.js":"4af4-27"},"imported":[{"uid":"4af4-84"},{"uid":"4af4-90"},{"uid":"4af4-2"}],"importedBy":[{"uid":"4af4-18"}]},"4af4-28":{"id":"/src/utils.ts","moduleParts":{"utils.js":"4af4-29"},"imported":[{"uid":"4af4-93"}],"importedBy":[{"uid":"4af4-20"},{"uid":"4af4-40"},{"uid":"4af4-52"}]},"4af4-30":{"id":"/src/layout/moveItems.ts","moduleParts":{"layout/moveItems.js":"4af4-31"},"imported":[{"uid":"4af4-85"},{"uid":"4af4-93"},{"uid":"4af4-46"}],"importedBy":[{"uid":"4af4-22"}]},"4af4-32":{"id":"/src/content/components/styles.module.css","moduleParts":{"content/components/styles.module.css.js":"4af4-33"},"imported":[{"uid":"4af4-82"}],"importedBy":[{"uid":"4af4-20"},{"uid":"4af4-36"}]},"4af4-34":{"id":"/src/layout/components/styles.module.css","moduleParts":{"layout/components/styles.module.css.js":"4af4-35"},"imported":[{"uid":"4af4-82"}],"importedBy":[{"uid":"4af4-22"},{"uid":"4af4-44"},{"uid":"4af4-74"}]},"4af4-36":{"id":"/src/content/components/Header.tsx","moduleParts":{"content/components/Header.js":"4af4-37"},"imported":[{"uid":"4af4-84"},{"uid":"4af4-85"},{"uid":"4af4-92"},{"uid":"4af4-12"},{"uid":"4af4-32"}],"importedBy":[{"uid":"4af4-20"}]},"4af4-38":{"id":"/src/content/components/SidebarItemWrapper.tsx","moduleParts":{"content/components/SidebarItemWrapper.js":"4af4-39"},"imported":[{"uid":"4af4-84"},{"uid":"4af4-85"},{"uid":"4af4-94"},{"uid":"4af4-92"},{"uid":"4af4-42"},{"uid":"4af4-12"},{"uid":"4af4-54"},{"uid":"4af4-56"},{"uid":"4af4-60"},{"uid":"4af4-58"}],"importedBy":[{"uid":"4af4-20"}]},"4af4-40":{"id":"/src/layout/components/LayoutItemBar.tsx","moduleParts":{"layout/components/LayoutItemBar.js":"4af4-41"},"imported":[{"uid":"4af4-84"},{"uid":"4af4-85"},{"uid":"4af4-92"},{"uid":"4af4-28"},{"uid":"4af4-48"},{"uid":"4af4-52"}],"importedBy":[{"uid":"4af4-22"}]},"4af4-42":{"id":"/src/content/hooks/useBuildContentData.ts","moduleParts":{"content/hooks/useBuildContentData.js":"4af4-43"},"imported":[{"uid":"4af4-50"}],"importedBy":[{"uid":"4af4-20"},{"uid":"4af4-38"}]},"4af4-44":{"id":"/src/layout/components/SecondaryMenuToggleItem.tsx","moduleParts":{"layout/components/SecondaryMenuToggleItem.js":"4af4-45"},"imported":[{"uid":"4af4-84"},{"uid":"4af4-92"},{"uid":"4af4-34"}],"importedBy":[{"uid":"4af4-22"}]},"4af4-46":{"id":"/src/layout/types.ts","moduleParts":{"layout/types.js":"4af4-47"},"imported":[],"importedBy":[{"uid":"4af4-30"},{"uid":"4af4-52"}]},"4af4-48":{"id":"/src/layout/utils.tsx","moduleParts":{"layout/utils.js":"4af4-49"},"imported":[{"uid":"4af4-84"},{"uid":"4af4-88"},{"uid":"4af4-92"},{"uid":"4af4-62"}],"importedBy":[{"uid":"4af4-40"},{"uid":"4af4-74"},{"uid":"4af4-78"}]},"4af4-50":{"id":"/src/hooks/useBuildData.ts","moduleParts":{"hooks/useBuildData.js":"4af4-51"},"imported":[{"uid":"4af4-89"},{"uid":"4af4-85"},{"uid":"4af4-93"},{"uid":"4af4-88"},{"uid":"4af4-2"},{"uid":"4af4-64"},{"uid":"4af4-68"},{"uid":"4af4-66"}],"importedBy":[{"uid":"4af4-42"},{"uid":"4af4-52"}]},"4af4-52":{"id":"/src/layout/components/LayoutItemWrapper.tsx","moduleParts":{"layout/components/LayoutItemWrapper.js":"4af4-53"},"imported":[{"uid":"4af4-84"},{"uid":"4af4-85"},{"uid":"4af4-94"},{"uid":"4af4-92"},{"uid":"4af4-50"},{"uid":"4af4-28"},{"uid":"4af4-46"},{"uid":"4af4-72"},{"uid":"4af4-74"},{"uid":"4af4-76"},{"uid":"4af4-78"}],"importedBy":[{"uid":"4af4-40"}]},"4af4-54":{"id":"/src/content/components/ActionFormSidebarItemComponent.tsx","moduleParts":{"content/components/ActionFormSidebarItemComponent.js":"4af4-55"},"imported":[{"uid":"4af4-84"},{"uid":"4af4-85"},{"uid":"4af4-92"},{"uid":"4af4-70"},{"uid":"4af4-80"}],"importedBy":[{"uid":"4af4-38"}]},"4af4-56":{"id":"/src/content/components/ActionSidebarItemComponent.tsx","moduleParts":{"content/components/ActionSidebarItemComponent.js":"4af4-57"},"imported":[{"uid":"4af4-84"},{"uid":"4af4-92"},{"uid":"4af4-70"}],"importedBy":[{"uid":"4af4-38"}]},"4af4-58":{"id":"/src/content/components/PlainSidebarItem.tsx","moduleParts":{"content/components/PlainSidebarItem.js":"4af4-59"},"imported":[{"uid":"4af4-84"},{"uid":"4af4-88"},{"uid":"4af4-92"},{"uid":"4af4-70"}],"importedBy":[{"uid":"4af4-38"}]},"4af4-60":{"id":"/src/content/components/CustomSidebarItemComponent.tsx","moduleParts":{"content/components/CustomSidebarItemComponent.js":"4af4-61"},"imported":[{"uid":"4af4-84"}],"importedBy":[{"uid":"4af4-38"}]},"4af4-62":{"id":"/src/commonItems.ts","moduleParts":{"commonItems.js":"4af4-63"},"imported":[],"importedBy":[{"uid":"4af4-48"},{"uid":"4af4-64"}]},"4af4-64":{"id":"/src/hooks/useIsActiveRoute.ts","moduleParts":{"hooks/useIsActiveRoute.js":"4af4-65"},"imported":[{"uid":"4af4-95"},{"uid":"4af4-62"}],"importedBy":[{"uid":"4af4-50"}]},"4af4-66":{"id":"/src/hooks/useSelectState.ts","moduleParts":{"hooks/useSelectState.js":"4af4-67"},"imported":[{"uid":"4af4-93"}],"importedBy":[{"uid":"4af4-50"}]},"4af4-68":{"id":"/src/hooks/useSelectPermission.ts","moduleParts":{"hooks/useSelectPermission.js":"4af4-69"},"imported":[{"uid":"4af4-93"}],"importedBy":[{"uid":"4af4-50"}]},"4af4-70":{"id":"/src/content/utils.tsx","moduleParts":{"content/utils.js":"4af4-71"},"imported":[{"uid":"4af4-84"},{"uid":"4af4-92"}],"importedBy":[{"uid":"4af4-54"},{"uid":"4af4-56"},{"uid":"4af4-58"}]},"4af4-72":{"id":"/src/layout/components/CustomLayoutItemComponent.tsx","moduleParts":{"layout/components/CustomLayoutItemComponent.js":"4af4-73"},"imported":[{"uid":"4af4-84"}],"importedBy":[{"uid":"4af4-52"}]},"4af4-74":{"id":"/src/layout/components/DropdownItem.tsx","moduleParts":{"layout/components/DropdownItem.js":"4af4-75"},"imported":[{"uid":"4af4-84"},{"uid":"4af4-85"},{"uid":"4af4-92"},{"uid":"4af4-48"},{"uid":"4af4-34"}],"importedBy":[{"uid":"4af4-52"}]},"4af4-76":{"id":"/src/layout/components/MenuItem.tsx","moduleParts":{"layout/components/MenuItem.js":"4af4-77"},"imported":[{"uid":"4af4-84"},{"uid":"4af4-92"}],"importedBy":[{"uid":"4af4-52"}]},"4af4-78":{"id":"/src/layout/components/PlainItem.tsx","moduleParts":{"layout/components/PlainItem.js":"4af4-79"},"imported":[{"uid":"4af4-84"},{"uid":"4af4-91"},{"uid":"4af4-92"},{"uid":"4af4-48"}],"importedBy":[{"uid":"4af4-52"}]},"4af4-80":{"id":"/src/content/components/ActionForm.tsx","moduleParts":{"content/components/ActionForm.js":"4af4-81"},"imported":[{"uid":"4af4-84"},{"uid":"4af4-96"},{"uid":"4af4-85"},{"uid":"4af4-92"}],"importedBy":[{"uid":"4af4-54"}]},"4af4-82":{"id":"/home/artemis/Github/imperium/node_modules/style-inject/dist/style-inject.es.js","moduleParts":{"external/style-inject/dist/style-inject.es.js":"4af4-83"},"imported":[],"importedBy":[{"uid":"4af4-34"},{"uid":"4af4-32"}]},"4af4-84":{"id":"react","moduleParts":{},"imported":[],"importedBy":[{"uid":"4af4-6"},{"uid":"4af4-8"},{"uid":"4af4-14"},{"uid":"4af4-18"},{"uid":"4af4-16"},{"uid":"4af4-22"},{"uid":"4af4-20"},{"uid":"4af4-24"},{"uid":"4af4-26"},{"uid":"4af4-40"},{"uid":"4af4-44"},{"uid":"4af4-36"},{"uid":"4af4-38"},{"uid":"4af4-48"},{"uid":"4af4-52"},{"uid":"4af4-54"},{"uid":"4af4-56"},{"uid":"4af4-60"},{"uid":"4af4-58"},{"uid":"4af4-72"},{"uid":"4af4-74"},{"uid":"4af4-76"},{"uid":"4af4-78"},{"uid":"4af4-70"},{"uid":"4af4-80"}],"isExternal":true},"4af4-85":{"id":"debug","moduleParts":{},"imported":[],"importedBy":[{"uid":"4af4-6"},{"uid":"4af4-8"},{"uid":"4af4-14"},{"uid":"4af4-18"},{"uid":"4af4-16"},{"uid":"4af4-22"},{"uid":"4af4-20"},{"uid":"4af4-30"},{"uid":"4af4-40"},{"uid":"4af4-36"},{"uid":"4af4-38"},{"uid":"4af4-52"},{"uid":"4af4-50"},{"uid":"4af4-54"},{"uid":"4af4-74"},{"uid":"4af4-80"}],"isExternal":true},"4af4-86":{"id":"@imperium/state","moduleParts":{},"imported":[],"importedBy":[{"uid":"4af4-2"}],"isExternal":true},"4af4-87":{"id":"@reduxjs/toolkit","moduleParts":{},"imported":[],"importedBy":[{"uid":"4af4-2"}],"isExternal":true},"4af4-88":{"id":"react-router-dom","moduleParts":{},"imported":[],"importedBy":[{"uid":"4af4-14"},{"uid":"4af4-48"},{"uid":"4af4-50"},{"uid":"4af4-58"}],"isExternal":true},"4af4-89":{"id":"@imperium/auth-client","moduleParts":{},"imported":[],"importedBy":[{"uid":"4af4-16"},{"uid":"4af4-50"}],"isExternal":true},"4af4-90":{"id":"react-redux","moduleParts":{},"imported":[],"importedBy":[{"uid":"4af4-16"},{"uid":"4af4-20"},{"uid":"4af4-26"}],"isExternal":true},"4af4-91":{"id":"react-responsive","moduleParts":{},"imported":[],"importedBy":[{"uid":"4af4-22"},{"uid":"4af4-20"},{"uid":"4af4-78"}],"isExternal":true},"4af4-92":{"id":"semantic-ui-react","moduleParts":{},"imported":[],"importedBy":[{"uid":"4af4-22"},{"uid":"4af4-20"},{"uid":"4af4-40"},{"uid":"4af4-44"},{"uid":"4af4-36"},{"uid":"4af4-38"},{"uid":"4af4-48"},{"uid":"4af4-52"},{"uid":"4af4-54"},{"uid":"4af4-56"},{"uid":"4af4-58"},{"uid":"4af4-74"},{"uid":"4af4-76"},{"uid":"4af4-78"},{"uid":"4af4-70"},{"uid":"4af4-80"}],"isExternal":true},"4af4-93":{"id":"lodash-es","moduleParts":{},"imported":[],"importedBy":[{"uid":"4af4-20"},{"uid":"4af4-30"},{"uid":"4af4-28"},{"uid":"4af4-50"},{"uid":"4af4-68"},{"uid":"4af4-66"}],"isExternal":true},"4af4-94":{"id":"mingo","moduleParts":{},"imported":[],"importedBy":[{"uid":"4af4-38"},{"uid":"4af4-52"}],"isExternal":true},"4af4-95":{"id":"react-router","moduleParts":{},"imported":[],"importedBy":[{"uid":"4af4-64"}],"isExternal":true},"4af4-96":{"id":"@thx/controls","moduleParts":{},"imported":[],"importedBy":[{"uid":"4af4-80"}],"isExternal":true}},"env":{"rollup":"2.79.1"},"options":{"gzip":true,"brotli":true,"sourcemap":false}};
2672
+ const data = {"version":2,"tree":{"name":"root","children":[{"name":"index.js","children":[{"name":"src/index.ts","uid":"82cf-1"}]},{"name":"state.js","children":[{"name":"src/state.ts","uid":"82cf-3"}]},{"name":"content/dividerSidebarItem.js","children":[{"name":"src/content/dividerSidebarItem.ts","uid":"82cf-5"}]},{"name":"layout/withLayout.js","children":[{"name":"src/layout/withLayout.tsx","uid":"82cf-7"}]},{"name":"content/createPages.js","children":[{"name":"src/content/createPages.tsx","uid":"82cf-9"}]},{"name":"types.js","children":[{"name":"src/types.ts","uid":"82cf-11"}]},{"name":"content/types.js","children":[{"name":"src/content/types.ts","uid":"82cf-13"}]},{"name":"datahooks/DataHooks.js","children":[{"name":"src/datahooks/DataHooks.tsx","uid":"82cf-15"}]},{"name":"datahooks/Permissions.js","children":[{"name":"src/datahooks/Permissions.tsx","uid":"82cf-17"}]},{"name":"datahooks/PermissionHooks.js","children":[{"name":"src/datahooks/PermissionHooks.tsx","uid":"82cf-19"}]},{"name":"layout/components/Layout.js","children":[{"name":"src/layout/components/Layout.tsx","uid":"82cf-21"}]},{"name":"content/components/ContentComponent.js","children":[{"name":"src/content/components/ContentComponent.tsx","uid":"82cf-23"}]},{"name":"datahooks/ExecutePermissionHook.js","children":[{"name":"src/datahooks/ExecutePermissionHook.tsx","uid":"82cf-25"}]},{"name":"datahooks/ExecuteDataHook.js","children":[{"name":"src/datahooks/ExecuteDataHook.tsx","uid":"82cf-27"}]},{"name":"utils.js","children":[{"name":"src/utils.ts","uid":"82cf-29"}]},{"name":"layout/moveItems.js","children":[{"name":"src/layout/moveItems.ts","uid":"82cf-31"}]},{"name":"layout/components/styles.module.css.js","children":[{"name":"src/layout/components/styles.module.css","uid":"82cf-33"}]},{"name":"content/components/styles.module.css.js","children":[{"name":"src/content/components/styles.module.css","uid":"82cf-35"}]},{"name":"content/hooks/useBuildContentData.js","children":[{"name":"src/content/hooks/useBuildContentData.ts","uid":"82cf-37"}]},{"name":"content/components/Header.js","children":[{"name":"src/content/components/Header.tsx","uid":"82cf-39"}]},{"name":"content/components/SidebarItemWrapper.js","children":[{"name":"src/content/components/SidebarItemWrapper.tsx","uid":"82cf-41"}]},{"name":"layout/components/LayoutItemBar.js","children":[{"name":"src/layout/components/LayoutItemBar.tsx","uid":"82cf-43"}]},{"name":"layout/components/SecondaryMenuToggleItem.js","children":[{"name":"src/layout/components/SecondaryMenuToggleItem.tsx","uid":"82cf-45"}]},{"name":"_virtual/index.js","children":[{"name":"\u0000/home/artemis/Github/imperium/node_modules/react-is/index.js?commonjs-module","uid":"82cf-47"}]},{"name":"layout/types.js","children":[{"name":"src/layout/types.ts","uid":"82cf-49"}]},{"name":"hooks/useBuildData.js","children":[{"name":"src/hooks/useBuildData.ts","uid":"82cf-51"}]},{"name":"layout/utils.js","children":[{"name":"src/layout/utils.tsx","uid":"82cf-53"}]},{"name":"content/components/ActionSidebarItemComponent.js","children":[{"name":"src/content/components/ActionSidebarItemComponent.tsx","uid":"82cf-55"}]},{"name":"content/components/CustomSidebarItemComponent.js","children":[{"name":"src/content/components/CustomSidebarItemComponent.tsx","uid":"82cf-57"}]},{"name":"content/components/ActionFormSidebarItemComponent.js","children":[{"name":"src/content/components/ActionFormSidebarItemComponent.tsx","uid":"82cf-59"}]},{"name":"content/components/PlainSidebarItem.js","children":[{"name":"src/content/components/PlainSidebarItem.tsx","uid":"82cf-61"}]},{"name":"layout/components/LayoutItemWrapper.js","children":[{"name":"src/layout/components/LayoutItemWrapper.tsx","uid":"82cf-63"}]},{"name":"_virtual/react-is.production.min.js","children":[{"name":"\u0000/home/artemis/Github/imperium/node_modules/react-is/cjs/react-is.production.min.js?commonjs-exports","uid":"82cf-65"}]},{"name":"_virtual/react-is.development.js","children":[{"name":"\u0000/home/artemis/Github/imperium/node_modules/react-is/cjs/react-is.development.js?commonjs-exports","uid":"82cf-67"}]},{"name":"commonItems.js","children":[{"name":"src/commonItems.ts","uid":"82cf-69"}]},{"name":"hooks/useIsActiveRoute.js","children":[{"name":"src/hooks/useIsActiveRoute.ts","uid":"82cf-71"}]},{"name":"hooks/useSelectPermission.js","children":[{"name":"src/hooks/useSelectPermission.ts","uid":"82cf-73"}]},{"name":"hooks/useSelectState.js","children":[{"name":"src/hooks/useSelectState.ts","uid":"82cf-75"}]},{"name":"content/utils.js","children":[{"name":"src/content/utils.tsx","uid":"82cf-77"}]},{"name":"content/components/ActionForm.js","children":[{"name":"src/content/components/ActionForm.tsx","uid":"82cf-79"}]},{"name":"layout/components/CustomLayoutItemComponent.js","children":[{"name":"src/layout/components/CustomLayoutItemComponent.tsx","uid":"82cf-81"}]},{"name":"layout/components/DropdownItem.js","children":[{"name":"src/layout/components/DropdownItem.tsx","uid":"82cf-83"}]},{"name":"layout/components/MenuItem.js","children":[{"name":"src/layout/components/MenuItem.tsx","uid":"82cf-85"}]},{"name":"layout/components/PlainItem.js","children":[{"name":"src/layout/components/PlainItem.tsx","uid":"82cf-87"}]},{"name":"external/@loadable/component/dist/loadable.esm.js","children":[{"name":"home/artemis/Github/imperium/node_modules/@loadable/component/dist/loadable.esm.js","uid":"82cf-89"}]},{"name":"external/@babel/runtime/helpers/esm/objectWithoutPropertiesLoose.js","children":[{"name":"home/artemis/Github/imperium/node_modules/@babel/runtime/helpers/esm/objectWithoutPropertiesLoose.js","uid":"82cf-91"}]},{"name":"external/@babel/runtime/helpers/esm/assertThisInitialized.js","children":[{"name":"home/artemis/Github/imperium/node_modules/@babel/runtime/helpers/esm/assertThisInitialized.js","uid":"82cf-93"}]},{"name":"external/@babel/runtime/helpers/esm/extends.js","children":[{"name":"home/artemis/Github/imperium/node_modules/@babel/runtime/helpers/esm/extends.js","uid":"82cf-95"}]},{"name":"external/@babel/runtime/helpers/esm/inheritsLoose.js","children":[{"name":"home/artemis/Github/imperium/node_modules/@babel/runtime/helpers/esm/inheritsLoose.js","uid":"82cf-97"}]},{"name":"external/react-is/index.js","children":[{"name":"home/artemis/Github/imperium/node_modules/react-is/index.js","uid":"82cf-99"}]},{"name":"external/hoist-non-react-statics/dist/hoist-non-react-statics.cjs.js","children":[{"name":"home/artemis/Github/imperium/node_modules/hoist-non-react-statics/dist/hoist-non-react-statics.cjs.js","uid":"82cf-101"}]},{"name":"external/@babel/runtime/helpers/esm/setPrototypeOf.js","children":[{"name":"home/artemis/Github/imperium/node_modules/@babel/runtime/helpers/esm/setPrototypeOf.js","uid":"82cf-103"}]},{"name":"external/react-is/cjs/react-is.production.min.js","children":[{"name":"home/artemis/Github/imperium/node_modules/react-is/cjs/react-is.production.min.js","uid":"82cf-105"}]},{"name":"external/react-is/cjs/react-is.development.js","children":[{"name":"home/artemis/Github/imperium/node_modules/react-is/cjs/react-is.development.js","uid":"82cf-107"}]},{"name":"external/style-inject/dist/style-inject.es.js","children":[{"name":"home/artemis/Github/imperium/node_modules/style-inject/dist/style-inject.es.js","uid":"82cf-109"}]}],"isRoot":true},"nodeParts":{"82cf-1":{"renderedLength":144,"gzipLength":131,"brotliLength":106,"mainUid":"82cf-0"},"82cf-3":{"renderedLength":591,"gzipLength":268,"brotliLength":243,"mainUid":"82cf-2"},"82cf-5":{"renderedLength":59,"gzipLength":73,"brotliLength":63,"mainUid":"82cf-4"},"82cf-7":{"renderedLength":1955,"gzipLength":562,"brotliLength":488,"mainUid":"82cf-6"},"82cf-9":{"renderedLength":1660,"gzipLength":586,"brotliLength":508,"mainUid":"82cf-8"},"82cf-11":{"renderedLength":121,"gzipLength":111,"brotliLength":90,"mainUid":"82cf-10"},"82cf-13":{"renderedLength":388,"gzipLength":167,"brotliLength":111,"mainUid":"82cf-12"},"82cf-15":{"renderedLength":1058,"gzipLength":390,"brotliLength":330,"mainUid":"82cf-14"},"82cf-17":{"renderedLength":864,"gzipLength":366,"brotliLength":318,"mainUid":"82cf-16"},"82cf-19":{"renderedLength":339,"gzipLength":202,"brotliLength":164,"mainUid":"82cf-18"},"82cf-21":{"renderedLength":2512,"gzipLength":751,"brotliLength":636,"mainUid":"82cf-20"},"82cf-23":{"renderedLength":3584,"gzipLength":934,"brotliLength":811,"mainUid":"82cf-22"},"82cf-25":{"renderedLength":345,"gzipLength":207,"brotliLength":172,"mainUid":"82cf-24"},"82cf-27":{"renderedLength":123,"gzipLength":111,"brotliLength":93,"mainUid":"82cf-26"},"82cf-29":{"renderedLength":145,"gzipLength":117,"brotliLength":116,"mainUid":"82cf-28"},"82cf-31":{"renderedLength":1401,"gzipLength":376,"brotliLength":347,"mainUid":"82cf-30"},"82cf-33":{"renderedLength":3176,"gzipLength":928,"brotliLength":762,"mainUid":"82cf-32"},"82cf-35":{"renderedLength":2119,"gzipLength":680,"brotliLength":565,"mainUid":"82cf-34"},"82cf-37":{"renderedLength":257,"gzipLength":158,"brotliLength":122,"mainUid":"82cf-36"},"82cf-39":{"renderedLength":1042,"gzipLength":377,"brotliLength":323,"mainUid":"82cf-38"},"82cf-41":{"renderedLength":1189,"gzipLength":399,"brotliLength":314,"mainUid":"82cf-40"},"82cf-43":{"renderedLength":726,"gzipLength":294,"brotliLength":252,"mainUid":"82cf-42"},"82cf-45":{"renderedLength":356,"gzipLength":233,"brotliLength":176,"mainUid":"82cf-44"},"82cf-47":{"renderedLength":28,"gzipLength":48,"brotliLength":32,"mainUid":"82cf-46"},"82cf-49":{"renderedLength":191,"gzipLength":113,"brotliLength":89,"mainUid":"82cf-48"},"82cf-51":{"renderedLength":799,"gzipLength":370,"brotliLength":330,"mainUid":"82cf-50"},"82cf-53":{"renderedLength":915,"gzipLength":393,"brotliLength":328,"mainUid":"82cf-52"},"82cf-55":{"renderedLength":343,"gzipLength":239,"brotliLength":181,"mainUid":"82cf-54"},"82cf-57":{"renderedLength":83,"gzipLength":97,"brotliLength":66,"mainUid":"82cf-56"},"82cf-59":{"renderedLength":644,"gzipLength":341,"brotliLength":295,"mainUid":"82cf-58"},"82cf-61":{"renderedLength":325,"gzipLength":230,"brotliLength":183,"mainUid":"82cf-60"},"82cf-63":{"renderedLength":1503,"gzipLength":487,"brotliLength":399,"mainUid":"82cf-62"},"82cf-65":{"renderedLength":32,"gzipLength":52,"brotliLength":32,"mainUid":"82cf-64"},"82cf-67":{"renderedLength":29,"gzipLength":49,"brotliLength":33,"mainUid":"82cf-66"},"82cf-69":{"renderedLength":203,"gzipLength":136,"brotliLength":97,"mainUid":"82cf-68"},"82cf-71":{"renderedLength":514,"gzipLength":227,"brotliLength":187,"mainUid":"82cf-70"},"82cf-73":{"renderedLength":294,"gzipLength":155,"brotliLength":114,"mainUid":"82cf-72"},"82cf-75":{"renderedLength":326,"gzipLength":176,"brotliLength":141,"mainUid":"82cf-74"},"82cf-77":{"renderedLength":628,"gzipLength":259,"brotliLength":219,"mainUid":"82cf-76"},"82cf-79":{"renderedLength":1667,"gzipLength":624,"brotliLength":519,"mainUid":"82cf-78"},"82cf-81":{"renderedLength":82,"gzipLength":96,"brotliLength":66,"mainUid":"82cf-80"},"82cf-83":{"renderedLength":1179,"gzipLength":450,"brotliLength":362,"mainUid":"82cf-82"},"82cf-85":{"renderedLength":252,"gzipLength":157,"brotliLength":116,"mainUid":"82cf-84"},"82cf-87":{"renderedLength":379,"gzipLength":264,"brotliLength":224,"mainUid":"82cf-86"},"82cf-89":{"renderedLength":13044,"gzipLength":3512,"brotliLength":3054,"mainUid":"82cf-88"},"82cf-91":{"renderedLength":333,"gzipLength":220,"brotliLength":167,"mainUid":"82cf-90"},"82cf-93":{"renderedLength":176,"gzipLength":151,"brotliLength":124,"mainUid":"82cf-92"},"82cf-95":{"renderedLength":401,"gzipLength":235,"brotliLength":184,"mainUid":"82cf-94"},"82cf-97":{"renderedLength":195,"gzipLength":135,"brotliLength":104,"mainUid":"82cf-96"},"82cf-99":{"renderedLength":140,"gzipLength":117,"brotliLength":93,"mainUid":"82cf-98"},"82cf-101":{"renderedLength":2739,"gzipLength":918,"brotliLength":760,"mainUid":"82cf-100"},"82cf-103":{"renderedLength":214,"gzipLength":122,"brotliLength":108,"mainUid":"82cf-102"},"82cf-105":{"renderedLength":2961,"gzipLength":875,"brotliLength":711,"mainUid":"82cf-104"},"82cf-107":{"renderedLength":7286,"gzipLength":1831,"brotliLength":1528,"mainUid":"82cf-106"},"82cf-109":{"renderedLength":636,"gzipLength":318,"brotliLength":242,"mainUid":"82cf-108"}},"nodeMetas":{"82cf-0":{"id":"/src/index.ts","moduleParts":{"index.js":"82cf-1"},"imported":[{"uid":"82cf-6"},{"uid":"82cf-2"},{"uid":"82cf-8"},{"uid":"82cf-4"}],"importedBy":[],"isEntry":true},"82cf-2":{"id":"/src/state.ts","moduleParts":{"state.js":"82cf-3"},"imported":[{"uid":"82cf-112"},{"uid":"82cf-113"}],"importedBy":[{"uid":"82cf-0"},{"uid":"82cf-16"},{"uid":"82cf-22"},{"uid":"82cf-24"},{"uid":"82cf-50"}]},"82cf-4":{"id":"/src/content/dividerSidebarItem.ts","moduleParts":{"content/dividerSidebarItem.js":"82cf-5"},"imported":[],"importedBy":[{"uid":"82cf-0"}]},"82cf-6":{"id":"/src/layout/withLayout.tsx","moduleParts":{"layout/withLayout.js":"82cf-7"},"imported":[{"uid":"82cf-110"},{"uid":"82cf-111"},{"uid":"82cf-14"},{"uid":"82cf-18"},{"uid":"82cf-16"},{"uid":"82cf-10"},{"uid":"82cf-20"}],"importedBy":[{"uid":"82cf-0"}]},"82cf-8":{"id":"/src/content/createPages.tsx","moduleParts":{"content/createPages.js":"82cf-9"},"imported":[{"uid":"82cf-110"},{"uid":"82cf-88"},{"uid":"82cf-22"},{"uid":"82cf-12"}],"importedBy":[{"uid":"82cf-0"}]},"82cf-10":{"id":"/src/types.ts","moduleParts":{"types.js":"82cf-11"},"imported":[],"importedBy":[{"uid":"82cf-6"}]},"82cf-12":{"id":"/src/content/types.ts","moduleParts":{"content/types.js":"82cf-13"},"imported":[],"importedBy":[{"uid":"82cf-8"},{"uid":"82cf-38"},{"uid":"82cf-40"}]},"82cf-14":{"id":"/src/datahooks/DataHooks.tsx","moduleParts":{"datahooks/DataHooks.js":"82cf-15"},"imported":[{"uid":"82cf-110"},{"uid":"82cf-111"},{"uid":"82cf-114"},{"uid":"82cf-26"}],"importedBy":[{"uid":"82cf-6"},{"uid":"82cf-22"}]},"82cf-16":{"id":"/src/datahooks/Permissions.tsx","moduleParts":{"datahooks/Permissions.js":"82cf-17"},"imported":[{"uid":"82cf-110"},{"uid":"82cf-115"},{"uid":"82cf-111"},{"uid":"82cf-116"},{"uid":"82cf-2"}],"importedBy":[{"uid":"82cf-6"}]},"82cf-18":{"id":"/src/datahooks/PermissionHooks.tsx","moduleParts":{"datahooks/PermissionHooks.js":"82cf-19"},"imported":[{"uid":"82cf-110"},{"uid":"82cf-111"},{"uid":"82cf-24"}],"importedBy":[{"uid":"82cf-6"}]},"82cf-20":{"id":"/src/layout/components/Layout.tsx","moduleParts":{"layout/components/Layout.js":"82cf-21"},"imported":[{"uid":"82cf-110"},{"uid":"82cf-111"},{"uid":"82cf-117"},{"uid":"82cf-118"},{"uid":"82cf-30"},{"uid":"82cf-42"},{"uid":"82cf-44"},{"uid":"82cf-32"}],"importedBy":[{"uid":"82cf-6"}]},"82cf-22":{"id":"/src/content/components/ContentComponent.tsx","moduleParts":{"content/components/ContentComponent.js":"82cf-23"},"imported":[{"uid":"82cf-110"},{"uid":"82cf-111"},{"uid":"82cf-119"},{"uid":"82cf-116"},{"uid":"82cf-118"},{"uid":"82cf-117"},{"uid":"82cf-14"},{"uid":"82cf-2"},{"uid":"82cf-28"},{"uid":"82cf-36"},{"uid":"82cf-38"},{"uid":"82cf-40"},{"uid":"82cf-34"}],"importedBy":[{"uid":"82cf-8"}]},"82cf-24":{"id":"/src/datahooks/ExecutePermissionHook.tsx","moduleParts":{"datahooks/ExecutePermissionHook.js":"82cf-25"},"imported":[{"uid":"82cf-110"},{"uid":"82cf-116"},{"uid":"82cf-2"}],"importedBy":[{"uid":"82cf-18"}]},"82cf-26":{"id":"/src/datahooks/ExecuteDataHook.tsx","moduleParts":{"datahooks/ExecuteDataHook.js":"82cf-27"},"imported":[{"uid":"82cf-110"}],"importedBy":[{"uid":"82cf-14"}]},"82cf-28":{"id":"/src/utils.ts","moduleParts":{"utils.js":"82cf-29"},"imported":[{"uid":"82cf-119"}],"importedBy":[{"uid":"82cf-22"},{"uid":"82cf-42"},{"uid":"82cf-62"}]},"82cf-30":{"id":"/src/layout/moveItems.ts","moduleParts":{"layout/moveItems.js":"82cf-31"},"imported":[{"uid":"82cf-111"},{"uid":"82cf-119"},{"uid":"82cf-48"}],"importedBy":[{"uid":"82cf-20"}]},"82cf-32":{"id":"/src/layout/components/styles.module.css","moduleParts":{"layout/components/styles.module.css.js":"82cf-33"},"imported":[{"uid":"82cf-108"}],"importedBy":[{"uid":"82cf-20"},{"uid":"82cf-44"},{"uid":"82cf-82"}]},"82cf-34":{"id":"/src/content/components/styles.module.css","moduleParts":{"content/components/styles.module.css.js":"82cf-35"},"imported":[{"uid":"82cf-108"}],"importedBy":[{"uid":"82cf-22"},{"uid":"82cf-38"}]},"82cf-36":{"id":"/src/content/hooks/useBuildContentData.ts","moduleParts":{"content/hooks/useBuildContentData.js":"82cf-37"},"imported":[{"uid":"82cf-50"}],"importedBy":[{"uid":"82cf-22"},{"uid":"82cf-40"}]},"82cf-38":{"id":"/src/content/components/Header.tsx","moduleParts":{"content/components/Header.js":"82cf-39"},"imported":[{"uid":"82cf-110"},{"uid":"82cf-111"},{"uid":"82cf-118"},{"uid":"82cf-12"},{"uid":"82cf-34"}],"importedBy":[{"uid":"82cf-22"}]},"82cf-40":{"id":"/src/content/components/SidebarItemWrapper.tsx","moduleParts":{"content/components/SidebarItemWrapper.js":"82cf-41"},"imported":[{"uid":"82cf-110"},{"uid":"82cf-111"},{"uid":"82cf-124"},{"uid":"82cf-118"},{"uid":"82cf-36"},{"uid":"82cf-12"},{"uid":"82cf-58"},{"uid":"82cf-54"},{"uid":"82cf-56"},{"uid":"82cf-60"}],"importedBy":[{"uid":"82cf-22"}]},"82cf-42":{"id":"/src/layout/components/LayoutItemBar.tsx","moduleParts":{"layout/components/LayoutItemBar.js":"82cf-43"},"imported":[{"uid":"82cf-110"},{"uid":"82cf-111"},{"uid":"82cf-118"},{"uid":"82cf-28"},{"uid":"82cf-52"},{"uid":"82cf-62"}],"importedBy":[{"uid":"82cf-20"}]},"82cf-44":{"id":"/src/layout/components/SecondaryMenuToggleItem.tsx","moduleParts":{"layout/components/SecondaryMenuToggleItem.js":"82cf-45"},"imported":[{"uid":"82cf-110"},{"uid":"82cf-118"},{"uid":"82cf-32"}],"importedBy":[{"uid":"82cf-20"}]},"82cf-46":{"id":"\u0000/home/artemis/Github/imperium/node_modules/react-is/index.js?commonjs-module","moduleParts":{"_virtual/index.js":"82cf-47"},"imported":[],"importedBy":[{"uid":"82cf-98"}]},"82cf-48":{"id":"/src/layout/types.ts","moduleParts":{"layout/types.js":"82cf-49"},"imported":[],"importedBy":[{"uid":"82cf-30"},{"uid":"82cf-62"}]},"82cf-50":{"id":"/src/hooks/useBuildData.ts","moduleParts":{"hooks/useBuildData.js":"82cf-51"},"imported":[{"uid":"82cf-115"},{"uid":"82cf-111"},{"uid":"82cf-119"},{"uid":"82cf-114"},{"uid":"82cf-2"},{"uid":"82cf-70"},{"uid":"82cf-72"},{"uid":"82cf-74"}],"importedBy":[{"uid":"82cf-36"},{"uid":"82cf-62"}]},"82cf-52":{"id":"/src/layout/utils.tsx","moduleParts":{"layout/utils.js":"82cf-53"},"imported":[{"uid":"82cf-110"},{"uid":"82cf-114"},{"uid":"82cf-118"},{"uid":"82cf-68"}],"importedBy":[{"uid":"82cf-42"},{"uid":"82cf-82"},{"uid":"82cf-86"}]},"82cf-54":{"id":"/src/content/components/ActionSidebarItemComponent.tsx","moduleParts":{"content/components/ActionSidebarItemComponent.js":"82cf-55"},"imported":[{"uid":"82cf-110"},{"uid":"82cf-118"},{"uid":"82cf-76"}],"importedBy":[{"uid":"82cf-40"}]},"82cf-56":{"id":"/src/content/components/CustomSidebarItemComponent.tsx","moduleParts":{"content/components/CustomSidebarItemComponent.js":"82cf-57"},"imported":[{"uid":"82cf-110"}],"importedBy":[{"uid":"82cf-40"}]},"82cf-58":{"id":"/src/content/components/ActionFormSidebarItemComponent.tsx","moduleParts":{"content/components/ActionFormSidebarItemComponent.js":"82cf-59"},"imported":[{"uid":"82cf-110"},{"uid":"82cf-111"},{"uid":"82cf-118"},{"uid":"82cf-76"},{"uid":"82cf-78"}],"importedBy":[{"uid":"82cf-40"}]},"82cf-60":{"id":"/src/content/components/PlainSidebarItem.tsx","moduleParts":{"content/components/PlainSidebarItem.js":"82cf-61"},"imported":[{"uid":"82cf-110"},{"uid":"82cf-114"},{"uid":"82cf-118"},{"uid":"82cf-76"}],"importedBy":[{"uid":"82cf-40"}]},"82cf-62":{"id":"/src/layout/components/LayoutItemWrapper.tsx","moduleParts":{"layout/components/LayoutItemWrapper.js":"82cf-63"},"imported":[{"uid":"82cf-110"},{"uid":"82cf-111"},{"uid":"82cf-124"},{"uid":"82cf-118"},{"uid":"82cf-50"},{"uid":"82cf-28"},{"uid":"82cf-48"},{"uid":"82cf-80"},{"uid":"82cf-82"},{"uid":"82cf-84"},{"uid":"82cf-86"}],"importedBy":[{"uid":"82cf-42"}]},"82cf-64":{"id":"\u0000/home/artemis/Github/imperium/node_modules/react-is/cjs/react-is.production.min.js?commonjs-exports","moduleParts":{"_virtual/react-is.production.min.js":"82cf-65"},"imported":[],"importedBy":[{"uid":"82cf-104"}]},"82cf-66":{"id":"\u0000/home/artemis/Github/imperium/node_modules/react-is/cjs/react-is.development.js?commonjs-exports","moduleParts":{"_virtual/react-is.development.js":"82cf-67"},"imported":[],"importedBy":[{"uid":"82cf-106"}]},"82cf-68":{"id":"/src/commonItems.ts","moduleParts":{"commonItems.js":"82cf-69"},"imported":[],"importedBy":[{"uid":"82cf-52"},{"uid":"82cf-70"}]},"82cf-70":{"id":"/src/hooks/useIsActiveRoute.ts","moduleParts":{"hooks/useIsActiveRoute.js":"82cf-71"},"imported":[{"uid":"82cf-125"},{"uid":"82cf-68"}],"importedBy":[{"uid":"82cf-50"}]},"82cf-72":{"id":"/src/hooks/useSelectPermission.ts","moduleParts":{"hooks/useSelectPermission.js":"82cf-73"},"imported":[{"uid":"82cf-119"}],"importedBy":[{"uid":"82cf-50"}]},"82cf-74":{"id":"/src/hooks/useSelectState.ts","moduleParts":{"hooks/useSelectState.js":"82cf-75"},"imported":[{"uid":"82cf-119"}],"importedBy":[{"uid":"82cf-50"}]},"82cf-76":{"id":"/src/content/utils.tsx","moduleParts":{"content/utils.js":"82cf-77"},"imported":[{"uid":"82cf-110"},{"uid":"82cf-118"}],"importedBy":[{"uid":"82cf-58"},{"uid":"82cf-54"},{"uid":"82cf-60"}]},"82cf-78":{"id":"/src/content/components/ActionForm.tsx","moduleParts":{"content/components/ActionForm.js":"82cf-79"},"imported":[{"uid":"82cf-110"},{"uid":"82cf-126"},{"uid":"82cf-111"},{"uid":"82cf-118"}],"importedBy":[{"uid":"82cf-58"}]},"82cf-80":{"id":"/src/layout/components/CustomLayoutItemComponent.tsx","moduleParts":{"layout/components/CustomLayoutItemComponent.js":"82cf-81"},"imported":[{"uid":"82cf-110"}],"importedBy":[{"uid":"82cf-62"}]},"82cf-82":{"id":"/src/layout/components/DropdownItem.tsx","moduleParts":{"layout/components/DropdownItem.js":"82cf-83"},"imported":[{"uid":"82cf-110"},{"uid":"82cf-111"},{"uid":"82cf-118"},{"uid":"82cf-52"},{"uid":"82cf-32"}],"importedBy":[{"uid":"82cf-62"}]},"82cf-84":{"id":"/src/layout/components/MenuItem.tsx","moduleParts":{"layout/components/MenuItem.js":"82cf-85"},"imported":[{"uid":"82cf-110"},{"uid":"82cf-118"}],"importedBy":[{"uid":"82cf-62"}]},"82cf-86":{"id":"/src/layout/components/PlainItem.tsx","moduleParts":{"layout/components/PlainItem.js":"82cf-87"},"imported":[{"uid":"82cf-110"},{"uid":"82cf-117"},{"uid":"82cf-118"},{"uid":"82cf-52"}],"importedBy":[{"uid":"82cf-62"}]},"82cf-88":{"id":"/home/artemis/Github/imperium/node_modules/@loadable/component/dist/loadable.esm.js","moduleParts":{"external/@loadable/component/dist/loadable.esm.js":"82cf-89"},"imported":[{"uid":"82cf-110"},{"uid":"82cf-90"},{"uid":"82cf-94"},{"uid":"82cf-92"},{"uid":"82cf-96"},{"uid":"82cf-98"},{"uid":"82cf-100"}],"importedBy":[{"uid":"82cf-8"}]},"82cf-90":{"id":"/home/artemis/Github/imperium/node_modules/@babel/runtime/helpers/esm/objectWithoutPropertiesLoose.js","moduleParts":{"external/@babel/runtime/helpers/esm/objectWithoutPropertiesLoose.js":"82cf-91"},"imported":[],"importedBy":[{"uid":"82cf-88"}]},"82cf-92":{"id":"/home/artemis/Github/imperium/node_modules/@babel/runtime/helpers/esm/assertThisInitialized.js","moduleParts":{"external/@babel/runtime/helpers/esm/assertThisInitialized.js":"82cf-93"},"imported":[],"importedBy":[{"uid":"82cf-88"}]},"82cf-94":{"id":"/home/artemis/Github/imperium/node_modules/@babel/runtime/helpers/esm/extends.js","moduleParts":{"external/@babel/runtime/helpers/esm/extends.js":"82cf-95"},"imported":[],"importedBy":[{"uid":"82cf-88"}]},"82cf-96":{"id":"/home/artemis/Github/imperium/node_modules/@babel/runtime/helpers/esm/inheritsLoose.js","moduleParts":{"external/@babel/runtime/helpers/esm/inheritsLoose.js":"82cf-97"},"imported":[{"uid":"82cf-102"}],"importedBy":[{"uid":"82cf-88"}]},"82cf-98":{"id":"/home/artemis/Github/imperium/node_modules/react-is/index.js","moduleParts":{"external/react-is/index.js":"82cf-99"},"imported":[{"uid":"82cf-120"},{"uid":"82cf-46"},{"uid":"82cf-104"},{"uid":"82cf-121"},{"uid":"82cf-106"},{"uid":"82cf-122"}],"importedBy":[{"uid":"82cf-88"},{"uid":"82cf-100"},{"uid":"82cf-123"}]},"82cf-100":{"id":"/home/artemis/Github/imperium/node_modules/hoist-non-react-statics/dist/hoist-non-react-statics.cjs.js","moduleParts":{"external/hoist-non-react-statics/dist/hoist-non-react-statics.cjs.js":"82cf-101"},"imported":[{"uid":"82cf-120"},{"uid":"82cf-98"},{"uid":"82cf-123"}],"importedBy":[{"uid":"82cf-88"}]},"82cf-102":{"id":"/home/artemis/Github/imperium/node_modules/@babel/runtime/helpers/esm/setPrototypeOf.js","moduleParts":{"external/@babel/runtime/helpers/esm/setPrototypeOf.js":"82cf-103"},"imported":[],"importedBy":[{"uid":"82cf-96"}]},"82cf-104":{"id":"/home/artemis/Github/imperium/node_modules/react-is/cjs/react-is.production.min.js","moduleParts":{"external/react-is/cjs/react-is.production.min.js":"82cf-105"},"imported":[{"uid":"82cf-120"},{"uid":"82cf-64"}],"importedBy":[{"uid":"82cf-98"},{"uid":"82cf-121"}]},"82cf-106":{"id":"/home/artemis/Github/imperium/node_modules/react-is/cjs/react-is.development.js","moduleParts":{"external/react-is/cjs/react-is.development.js":"82cf-107"},"imported":[{"uid":"82cf-120"},{"uid":"82cf-66"}],"importedBy":[{"uid":"82cf-98"},{"uid":"82cf-122"}]},"82cf-108":{"id":"/home/artemis/Github/imperium/node_modules/style-inject/dist/style-inject.es.js","moduleParts":{"external/style-inject/dist/style-inject.es.js":"82cf-109"},"imported":[],"importedBy":[{"uid":"82cf-32"},{"uid":"82cf-34"}]},"82cf-110":{"id":"react","moduleParts":{},"imported":[],"importedBy":[{"uid":"82cf-6"},{"uid":"82cf-8"},{"uid":"82cf-14"},{"uid":"82cf-18"},{"uid":"82cf-16"},{"uid":"82cf-20"},{"uid":"82cf-88"},{"uid":"82cf-22"},{"uid":"82cf-26"},{"uid":"82cf-24"},{"uid":"82cf-42"},{"uid":"82cf-44"},{"uid":"82cf-38"},{"uid":"82cf-40"},{"uid":"82cf-52"},{"uid":"82cf-62"},{"uid":"82cf-58"},{"uid":"82cf-54"},{"uid":"82cf-56"},{"uid":"82cf-60"},{"uid":"82cf-80"},{"uid":"82cf-82"},{"uid":"82cf-84"},{"uid":"82cf-86"},{"uid":"82cf-76"},{"uid":"82cf-78"}],"isExternal":true},"82cf-111":{"id":"debug","moduleParts":{},"imported":[],"importedBy":[{"uid":"82cf-6"},{"uid":"82cf-14"},{"uid":"82cf-18"},{"uid":"82cf-16"},{"uid":"82cf-20"},{"uid":"82cf-22"},{"uid":"82cf-30"},{"uid":"82cf-42"},{"uid":"82cf-38"},{"uid":"82cf-40"},{"uid":"82cf-62"},{"uid":"82cf-50"},{"uid":"82cf-58"},{"uid":"82cf-82"},{"uid":"82cf-78"}],"isExternal":true},"82cf-112":{"id":"@imperium/state","moduleParts":{},"imported":[],"importedBy":[{"uid":"82cf-2"}],"isExternal":true},"82cf-113":{"id":"@reduxjs/toolkit","moduleParts":{},"imported":[],"importedBy":[{"uid":"82cf-2"}],"isExternal":true},"82cf-114":{"id":"react-router-dom","moduleParts":{},"imported":[],"importedBy":[{"uid":"82cf-14"},{"uid":"82cf-52"},{"uid":"82cf-50"},{"uid":"82cf-60"}],"isExternal":true},"82cf-115":{"id":"@imperium/auth-client","moduleParts":{},"imported":[],"importedBy":[{"uid":"82cf-16"},{"uid":"82cf-50"}],"isExternal":true},"82cf-116":{"id":"react-redux","moduleParts":{},"imported":[],"importedBy":[{"uid":"82cf-16"},{"uid":"82cf-22"},{"uid":"82cf-24"}],"isExternal":true},"82cf-117":{"id":"react-responsive","moduleParts":{},"imported":[],"importedBy":[{"uid":"82cf-20"},{"uid":"82cf-22"},{"uid":"82cf-86"}],"isExternal":true},"82cf-118":{"id":"semantic-ui-react","moduleParts":{},"imported":[],"importedBy":[{"uid":"82cf-20"},{"uid":"82cf-22"},{"uid":"82cf-42"},{"uid":"82cf-44"},{"uid":"82cf-38"},{"uid":"82cf-40"},{"uid":"82cf-52"},{"uid":"82cf-62"},{"uid":"82cf-58"},{"uid":"82cf-54"},{"uid":"82cf-60"},{"uid":"82cf-82"},{"uid":"82cf-84"},{"uid":"82cf-86"},{"uid":"82cf-76"},{"uid":"82cf-78"}],"isExternal":true},"82cf-119":{"id":"lodash-es","moduleParts":{},"imported":[],"importedBy":[{"uid":"82cf-22"},{"uid":"82cf-30"},{"uid":"82cf-28"},{"uid":"82cf-50"},{"uid":"82cf-72"},{"uid":"82cf-74"}],"isExternal":true},"82cf-120":{"id":"\u0000commonjsHelpers.js","moduleParts":{},"imported":[],"importedBy":[{"uid":"82cf-98"},{"uid":"82cf-100"},{"uid":"82cf-104"},{"uid":"82cf-106"}]},"82cf-121":{"id":"\u0000/home/artemis/Github/imperium/node_modules/react-is/cjs/react-is.production.min.js?commonjs-proxy","moduleParts":{},"imported":[{"uid":"82cf-104"}],"importedBy":[{"uid":"82cf-98"}]},"82cf-122":{"id":"\u0000/home/artemis/Github/imperium/node_modules/react-is/cjs/react-is.development.js?commonjs-proxy","moduleParts":{},"imported":[{"uid":"82cf-106"}],"importedBy":[{"uid":"82cf-98"}]},"82cf-123":{"id":"\u0000/home/artemis/Github/imperium/node_modules/react-is/index.js?commonjs-proxy","moduleParts":{},"imported":[{"uid":"82cf-98"}],"importedBy":[{"uid":"82cf-100"}]},"82cf-124":{"id":"mingo","moduleParts":{},"imported":[],"importedBy":[{"uid":"82cf-40"},{"uid":"82cf-62"}],"isExternal":true},"82cf-125":{"id":"react-router","moduleParts":{},"imported":[],"importedBy":[{"uid":"82cf-70"}],"isExternal":true},"82cf-126":{"id":"@thx/controls","moduleParts":{},"imported":[],"importedBy":[{"uid":"82cf-78"}],"isExternal":true}},"env":{"rollup":"2.79.1"},"options":{"gzip":true,"brotli":true,"sourcemap":false}};
2673
2673
 
2674
2674
  const run = () => {
2675
2675
  const width = window.innerWidth;
package/dist/stats.txt ADDED
@@ -0,0 +1,118 @@
1
+ -----------------------------
2
+ Rollup File Analysis
3
+ -----------------------------
4
+ bundle size: 62.695 KB
5
+ original size: 85.641 KB
6
+ code reduction: 26.79 %
7
+ module count: 55
8
+
9
+ /home/artemis/Github/imperium/node_modules/@loadable/component/dist/loadable.esm.js
10
+ ██████████░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 20.81 % (13.044 KB)
11
+ /home/artemis/Github/imperium/node_modules/react-is/cjs/react-is.development.js
12
+ █████░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 11.62 % (7.286 KB)
13
+ /src/content/components/ContentComponent.tsx
14
+ ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 5.72 % (3.584 KB)
15
+ /src/layout/components/styles.module.css
16
+ ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 5.07 % (3.176 KB)
17
+ /home/artemis/Github/imperium/node_modules/react-is/cjs/react-is.production.min.js
18
+ ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 4.72 % (2.961 KB)
19
+ /home/artemis/Github/imperium/node_modules/hoist-non-react-statics/dist/hoist-non-react-statics.cjs.js
20
+ ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 4.37 % (2.739 KB)
21
+ /src/layout/components/Layout.tsx
22
+ ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 4.01 % (2.512 KB)
23
+ /src/content/components/styles.module.css
24
+ █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 3.38 % (2.119 KB)
25
+ /src/layout/withLayout.tsx
26
+ █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 3.12 % (1.955 KB)
27
+ /src/content/components/ActionForm.tsx
28
+ █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 2.66 % (1.667 KB)
29
+ /src/content/createPages.tsx
30
+ █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 2.65 % (1.66 KB)
31
+ /src/layout/components/LayoutItemWrapper.tsx
32
+ █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 2.4 % (1.503 KB)
33
+ /src/layout/moveItems.ts
34
+ █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 2.23 % (1.401 KB)
35
+ /src/content/components/SidebarItemWrapper.tsx
36
+ ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.9 % (1.189 KB)
37
+ /src/layout/components/DropdownItem.tsx
38
+ ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.88 % (1.179 KB)
39
+ /src/datahooks/DataHooks.tsx
40
+ ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.69 % (1.058 KB)
41
+ /src/content/components/Header.tsx
42
+ ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.66 % (1.042 KB)
43
+ /src/layout/utils.tsx
44
+ ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.46 % (915 Bytes)
45
+ /src/datahooks/Permissions.tsx
46
+ ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.38 % (864 Bytes)
47
+ /src/hooks/useBuildData.ts
48
+ ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.27 % (799 Bytes)
49
+ /src/layout/components/LayoutItemBar.tsx
50
+ ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.16 % (726 Bytes)
51
+ /src/content/components/ActionFormSidebarItemComponent.tsx
52
+ ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.03 % (644 Bytes)
53
+ /home/artemis/Github/imperium/node_modules/style-inject/dist/style-inject.es.js
54
+ ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.01 % (636 Bytes)
55
+ /src/content/utils.tsx
56
+ ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1 % (628 Bytes)
57
+ /src/state.ts
58
+ ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.94 % (591 Bytes)
59
+ /src/hooks/useIsActiveRoute.ts
60
+ ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.82 % (514 Bytes)
61
+ /home/artemis/Github/imperium/node_modules/@babel/runtime/helpers/esm/extends.js
62
+ ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.64 % (401 Bytes)
63
+ /src/content/types.ts
64
+ ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.62 % (388 Bytes)
65
+ /src/layout/components/PlainItem.tsx
66
+ ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.6 % (379 Bytes)
67
+ /src/layout/components/SecondaryMenuToggleItem.tsx
68
+ ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.57 % (356 Bytes)
69
+ /src/datahooks/ExecutePermissionHook.tsx
70
+ ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.55 % (345 Bytes)
71
+ /src/content/components/ActionSidebarItemComponent.tsx
72
+ ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.55 % (343 Bytes)
73
+ /src/datahooks/PermissionHooks.tsx
74
+ ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.54 % (339 Bytes)
75
+ /home/artemis/Github/imperium/node_modules/@babel/runtime/helpers/esm/objectWithoutPropertiesLoose.js
76
+ ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.53 % (333 Bytes)
77
+ /src/hooks/useSelectState.ts
78
+ ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.52 % (326 Bytes)
79
+ /src/content/components/PlainSidebarItem.tsx
80
+ ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.52 % (325 Bytes)
81
+ /src/hooks/useSelectPermission.ts
82
+ ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.47 % (294 Bytes)
83
+ /src/content/hooks/useBuildContentData.ts
84
+ ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.41 % (257 Bytes)
85
+ /src/layout/components/MenuItem.tsx
86
+ ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.4 % (252 Bytes)
87
+ /home/artemis/Github/imperium/node_modules/@babel/runtime/helpers/esm/setPrototypeOf.js
88
+ ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.34 % (214 Bytes)
89
+ /src/commonItems.ts
90
+ ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.32 % (203 Bytes)
91
+ /home/artemis/Github/imperium/node_modules/@babel/runtime/helpers/esm/inheritsLoose.js
92
+ ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.31 % (195 Bytes)
93
+ /src/layout/types.ts
94
+ ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.3 % (191 Bytes)
95
+ /home/artemis/Github/imperium/node_modules/@babel/runtime/helpers/esm/assertThisInitialized.js
96
+ ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.28 % (176 Bytes)
97
+ /src/utils.ts
98
+ ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.23 % (145 Bytes)
99
+ /src/index.ts
100
+ ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.23 % (144 Bytes)
101
+ /home/artemis/Github/imperium/node_modules/react-is/index.js
102
+ ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.22 % (140 Bytes)
103
+ /src/datahooks/ExecuteDataHook.tsx
104
+ ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.2 % (123 Bytes)
105
+ /src/types.ts
106
+ ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.19 % (121 Bytes)
107
+ /src/content/components/CustomSidebarItemComponent.tsx
108
+ ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.13 % (83 Bytes)
109
+ /src/layout/components/CustomLayoutItemComponent.tsx
110
+ ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.13 % (82 Bytes)
111
+ /src/content/dividerSidebarItem.ts
112
+ ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.09 % (59 Bytes)
113
+ /home/artemis/Github/imperium/node_modules/react-is/cjs/react-is.production.min.js?commonjs-exports
114
+ ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.05 % (32 Bytes)
115
+ /home/artemis/Github/imperium/node_modules/react-is/cjs/react-is.development.js?commonjs-exports
116
+ ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.05 % (29 Bytes)
117
+ /home/artemis/Github/imperium/node_modules/react-is/index.js?commonjs-module
118
+ ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.04 % (28 Bytes)