@imperium/layout 11.1.0 → 11.1.1
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.
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import styleInject from './../../external/style-inject/dist/style-inject.es.js';
|
|
2
2
|
|
|
3
|
-
var css_248z = ".styles-module_parent__OuBHK {\n\tflex: 1;\n\tdisplay: flex;\n\tflex-direction: row;\n\theight: 100%;\n}\n\n.styles-module_wrapper__2DEM0 {\n\tflex: 1;\n\tflex-basis: calc(65%);\n}\n\n.styles-module_content__PWtmR {\n\tmargin: 0 0.8rem 0.8rem 0.8rem;\n}\n\n.styles-module_contentFull__q2jrq {\n\theight: 100%;\n\tmargin: 0 0;\n}\n\n.styles-module_header__4mpgB {\n\tpadding: 0.8rem 0.8rem 0 0.8rem;\n\tmargin-bottom: 0.8rem;\n}\n\n.styles-module_sidebar__H9Cuy {\n\tmin-width: 250px;\n\tpadding: 10px;\n\toverflow-y: auto;\n\toverflow-x: hidden;\n}\n\n.styles-module_sidebarItem__-JRCt {\n\tmargin-bottom: 5px;\n}\n\n.styles-module_actionsHeader__Ke2ht {\n\tdisplay: none;\n}\n\n@media only screen and (max-width: 768px) {\n\t.styles-module_parent__OuBHK {\n\t\tflex-direction: column;\n\t\theight: auto;\n\t}\n\t.styles-module_wrapper__2DEM0 {\n\t\tborder-right: none;\n\t\tpadding-bottom: 20px;\n\t}\n\t.styles-module_sidebar__H9Cuy {\n\t\tmin-width: auto;\n\t}\n\t.styles-module_actionsHeader__Ke2ht {\n\t\tdisplay: block;\n\t\tmargin-bottom: 5px;\n\t}\n}\n";
|
|
4
|
-
var styles = {"parent":"styles-module_parent__OuBHK","wrapper":"styles-module_wrapper__2DEM0","content":"styles-module_content__PWtmR","contentFull":"styles-module_contentFull__q2jrq","header":"styles-module_header__4mpgB","sidebar":"styles-module_sidebar__H9Cuy","sidebarItem":"styles-module_sidebarItem__-JRCt","actionsHeader":"styles-module_actionsHeader__Ke2ht"};
|
|
3
|
+
var css_248z = ".styles-module_parent__OuBHK {\n\tflex: 1;\n\tdisplay: flex;\n\tflex-direction: row;\n\theight: 100%;\n}\n\n.styles-module_wrapper__2DEM0 {\n\tflex: 1;\n\tflex-basis: calc(65%);\n}\n\n.styles-module_content__PWtmR {\n\tmargin: 0 0.8rem 0.8rem 0.8rem;\n}\n\n.styles-module_contentFull__q2jrq {\n\theight: 100%;\n\tmargin: 0 0;\n}\n\n.styles-module_header__4mpgB {\n\tpadding: 0.8rem 0.8rem 0 0.8rem;\n\tmargin-bottom: 0.8rem;\n}\n\n.styles-module_sidebar__H9Cuy {\n\tmin-width: 250px;\n\tpadding: 10px;\n\toverflow-y: auto;\n\toverflow-x: hidden;\n}\n\n.styles-module_sidebarItem__-JRCt {\n\tmargin-bottom: 5px;\n}\n\n.styles-module_actionsHeader__Ke2ht {\n\tdisplay: none;\n}\n\n@media print\n{\n\t.styles-module_noPrint__V49Dv, .styles-module_noPrint__V49Dv *\n\t{\n\t\tdisplay: none !important;\n\t}\n}\n\n@media only screen and (max-width: 768px) {\n\t.styles-module_parent__OuBHK {\n\t\tflex-direction: column;\n\t\theight: auto;\n\t}\n\t.styles-module_wrapper__2DEM0 {\n\t\tborder-right: none;\n\t\tpadding-bottom: 20px;\n\t}\n\t.styles-module_sidebar__H9Cuy {\n\t\tmin-width: auto;\n\t}\n\t.styles-module_actionsHeader__Ke2ht {\n\t\tdisplay: block;\n\t\tmargin-bottom: 5px;\n\t}\n}\n";
|
|
4
|
+
var styles = {"parent":"styles-module_parent__OuBHK","wrapper":"styles-module_wrapper__2DEM0","content":"styles-module_content__PWtmR","contentFull":"styles-module_contentFull__q2jrq","header":"styles-module_header__4mpgB","sidebar":"styles-module_sidebar__H9Cuy","sidebarItem":"styles-module_sidebarItem__-JRCt","actionsHeader":"styles-module_actionsHeader__Ke2ht","noPrint":"styles-module_noPrint__V49Dv"};
|
|
5
5
|
styleInject(css_248z);
|
|
6
6
|
|
|
7
7
|
export { styles as default };
|
|
@@ -32,7 +32,7 @@ function Layout({ footer, primaryMenu, statusbar, secondaryMenu, children }) {
|
|
|
32
32
|
}
|
|
33
33
|
] : secondaryMenu);
|
|
34
34
|
const secondaryMenuComp = secondaryMenuItems.length > 0 ? /* @__PURE__ */ React.createElement("div", {
|
|
35
|
-
className: "imperiumSecondaryMenuWrapper"
|
|
35
|
+
className: "imperiumSecondaryMenuWrapper noPrint"
|
|
36
36
|
}, /* @__PURE__ */ React.createElement(LayoutItemBar, {
|
|
37
37
|
items: secondaryMenuItems,
|
|
38
38
|
inverted: true,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Layout.js","sources":["../../../../src/layout/components/Layout.tsx"],"sourcesContent":["import debug from 'debug';\nimport {ReactNode, useState} from 'react';\nimport {Segment} from 'semantic-ui-react';\nimport {useLayoutState} from '../../state';\nimport {moveItems} from '../moveItems';\nimport type {LayoutData} from '../types';\nimport {LayoutItemBar} from './LayoutItemBar';\nimport {SecondaryMenuToggleItem} from './SecondaryMenuToggleItem';\nimport styles from './styles.module.css';\n\nconst d = debug('imperium.layout.components.Layout');\n\ninterface LayoutProps extends Required<LayoutData> {\n\tchildren?: ReactNode;\n}\n\n/**\n * Renders the main layout.\n * Hides/shows/collapses things as need for mobile layout.\n * Tracks state to whether the side menu is open or not.\n * @param footer\n * @param menubar\n * @param statusbar\n * @param children\n * @constructor\n */\nexport function Layout({footer, primaryMenu, statusbar, secondaryMenu, children}: LayoutProps) {\n\tconst {isMobile} = useLayoutState();\n\tconst [menuOpen, setMenuOpen] = useState(false);\n\n\tconst primaryMenuToggle = {\n\t\tstickOnMobile: true,\n\t\tweight: -19999,\n\t\trender: () => {\n\t\t\tif (!isMobile) return null;\n\t\t\treturn <SecondaryMenuToggleItem menuOpen={menuOpen} setMenuOpen={setMenuOpen} />;\n\t\t},\n\t};\n\n\t// Determine menubar items\n\tconst primaryMenuItems = moveItems(\n\t\tisMobile ? [primaryMenuToggle, ...primaryMenu].filter(v => v.stickOnMobile === true) : [primaryMenuToggle, ...primaryMenu],\n\t);\n\n\t// const pmi = mergeItems(primaryMenuItems);\n\n\t// Determine sidebar items\n\tconst secondaryMenuItems = moveItems(\n\t\tisMobile\n\t\t\t? [\n\t\t\t\t\t...secondaryMenu,\n\t\t\t\t\t{\n\t\t\t\t\t\ttext: '',\n\t\t\t\t\t\tmenu: [primaryMenuToggle, ...primaryMenu].filter(v => v.stickOnMobile !== true),\n\t\t\t\t\t},\n\t\t\t ]\n\t\t\t: secondaryMenu,\n\t);\n\n\tconst secondaryMenuComp =\n\t\tsecondaryMenuItems.length > 0 ? (\n\t\t\t<div className=\"imperiumSecondaryMenuWrapper\">\n\t\t\t\t<LayoutItemBar\n\t\t\t\t\titems={secondaryMenuItems}\n\t\t\t\t\tinverted\n\t\t\t\t\tvertical\n\t\t\t\t\tclassName={\n\t\t\t\t\t\tisMobile && !menuOpen\n\t\t\t\t\t\t\t? `${styles.secondaryMenu} ${styles.secondaryMenuHidden} imperiumSecondaryMenu`\n\t\t\t\t\t\t\t: `${styles.secondaryMenu} imperiumSecondaryMenu`\n\t\t\t\t\t}\n\t\t\t\t/>\n\t\t\t</div>\n\t\t) : null;\n\n\t// Determine footer items\n\tconst footerItems = moveItems(footer);\n\tconst footerComp =\n\t\tfooterItems.length > 0 ? (\n\t\t\t<LayoutItemBar name=\"footer\" items={footerItems} className={`${styles.footer} imperiumFooter`} inverted borderless />\n\t\t) : null;\n\n\t// Determine status bar items\n\tconst statusbarItems = moveItems(statusbar);\n\tconst statusbarComp =\n\t\tstatusbarItems.length > 0 ? <LayoutItemBar items={statusbarItems} inverted className={`${styles.statusbar} imperiumStatusbar`} /> : null;\n\n\treturn (\n\t\t<div className={`${styles.parent} imperiumLayout ${isMobile ? 'imperiumMobile' : 'imperiumNotMobile'}`}>\n\t\t\t<div className=\"imperiumPrimaryMenuWrapper\">\n\t\t\t\t<LayoutItemBar items={primaryMenuItems} inverted borderless className={`${styles.menubar} imperiumPrimaryMenu`} />\n\t\t\t\t{statusbarComp}\n\t\t\t</div>\n\t\t\t<Segment attached className={`${styles.contentWrapper} imperiumLayoutContentWrapper`}>\n\t\t\t\t{secondaryMenuComp}\n\t\t\t\t<div className={`${styles.content} imperiumLayoutContent`}>{children}</div>\n\t\t\t</Segment>\n\t\t\t{footerComp}\n\t\t</div>\n\t);\n}\n"],"names":[],"mappings":";;;;;;;;;AAUU,MAAM,mCAAmC,EAAA;AAgB5C,SAAA,MAAA,CAAgB,EAAC,MAAA,EAAQ,WAAa,EAAA,SAAA,EAAW,eAAe,QAAwB,EAAA,EAAA;AAC9F,EAAM,MAAA,EAAC,aAAY,cAAe,EAAA,CAAA;AAClC,EAAA,MAAM,CAAC,QAAA,EAAU,WAAe,CAAA,GAAA,QAAA,CAAS,KAAK,CAAA,CAAA;AAE9C,EAAA,MAAM,iBAAoB,GAAA;AAAA,IACzB,aAAe,EAAA,IAAA;AAAA,IACf,MAAQ,EAAA,CAAA,KAAA;AAAA,IACR,QAAQ,MAAM;AACb,MAAA,IAAI,CAAC,QAAA;AAAU,QAAO,OAAA,IAAA,CAAA;AACtB,MAAA,uBAAQ,KAAA,CAAA,aAAA,CAAA,uBAAA,EAAA;AAAA,QAAwB,QAAA;AAAA,QAAoB,WAAA;AAAA,OAA0B,CAAA,CAAA;AAAA,KAC/E;AAAA,GACD,CAAA;AAGA,EAAA,MAAM,mBAAmB,SACxB,CAAA,QAAA,GAAW,CAAC,iBAAmB,EAAA,GAAG,WAAW,CAAE,CAAA,MAAA,CAAO,CAAK,CAAA,KAAA,CAAA,CAAE,kBAAkB,IAAI,CAAA,GAAI,CAAC,iBAAmB,EAAA,GAAG,WAAW,CAC1H,CAAA,CAAA;AAKA,EAAM,MAAA,kBAAA,GAAqB,UAC1B,QACG,GAAA;AAAA,IACA,GAAG,aAAA;AAAA,IACH;AAAA,MACC,IAAM,EAAA,EAAA;AAAA,MACN,IAAA,EAAM,CAAC,iBAAA,EAAmB,GAAG,WAAW,EAAE,MAAO,CAAA,CAAA,CAAA,KAAK,CAAE,CAAA,aAAA,KAAkB,IAAI,CAAA;AAAA,KAC/E;AAAA,MAEA,aACJ,CAAA,CAAA;AAEA,EAAA,MAAM,iBACL,GAAA,kBAAA,CAAmB,MAAS,GAAA,CAAA,mBAC1B,KAAA,CAAA,aAAA,CAAA,KAAA,EAAA;AAAA,IAAI,SAAU,EAAA,
|
|
1
|
+
{"version":3,"file":"Layout.js","sources":["../../../../src/layout/components/Layout.tsx"],"sourcesContent":["import debug from 'debug';\nimport {ReactNode, useState} from 'react';\nimport {Segment} from 'semantic-ui-react';\nimport {useLayoutState} from '../../state';\nimport {moveItems} from '../moveItems';\nimport type {LayoutData} from '../types';\nimport {LayoutItemBar} from './LayoutItemBar';\nimport {SecondaryMenuToggleItem} from './SecondaryMenuToggleItem';\nimport styles from './styles.module.css';\n\nconst d = debug('imperium.layout.components.Layout');\n\ninterface LayoutProps extends Required<LayoutData> {\n\tchildren?: ReactNode;\n}\n\n/**\n * Renders the main layout.\n * Hides/shows/collapses things as need for mobile layout.\n * Tracks state to whether the side menu is open or not.\n * @param footer\n * @param menubar\n * @param statusbar\n * @param children\n * @constructor\n */\nexport function Layout({footer, primaryMenu, statusbar, secondaryMenu, children}: LayoutProps) {\n\tconst {isMobile} = useLayoutState();\n\tconst [menuOpen, setMenuOpen] = useState(false);\n\n\tconst primaryMenuToggle = {\n\t\tstickOnMobile: true,\n\t\tweight: -19999,\n\t\trender: () => {\n\t\t\tif (!isMobile) return null;\n\t\t\treturn <SecondaryMenuToggleItem menuOpen={menuOpen} setMenuOpen={setMenuOpen} />;\n\t\t},\n\t};\n\n\t// Determine menubar items\n\tconst primaryMenuItems = moveItems(\n\t\tisMobile ? [primaryMenuToggle, ...primaryMenu].filter(v => v.stickOnMobile === true) : [primaryMenuToggle, ...primaryMenu],\n\t);\n\n\t// const pmi = mergeItems(primaryMenuItems);\n\n\t// Determine sidebar items\n\tconst secondaryMenuItems = moveItems(\n\t\tisMobile\n\t\t\t? [\n\t\t\t\t\t...secondaryMenu,\n\t\t\t\t\t{\n\t\t\t\t\t\ttext: '',\n\t\t\t\t\t\tmenu: [primaryMenuToggle, ...primaryMenu].filter(v => v.stickOnMobile !== true),\n\t\t\t\t\t},\n\t\t\t ]\n\t\t\t: secondaryMenu,\n\t);\n\n\tconst secondaryMenuComp =\n\t\tsecondaryMenuItems.length > 0 ? (\n\t\t\t<div className=\"imperiumSecondaryMenuWrapper noPrint\">\n\t\t\t\t<LayoutItemBar\n\t\t\t\t\titems={secondaryMenuItems}\n\t\t\t\t\tinverted\n\t\t\t\t\tvertical\n\t\t\t\t\tclassName={\n\t\t\t\t\t\tisMobile && !menuOpen\n\t\t\t\t\t\t\t? `${styles.secondaryMenu} ${styles.secondaryMenuHidden} imperiumSecondaryMenu`\n\t\t\t\t\t\t\t: `${styles.secondaryMenu} imperiumSecondaryMenu`\n\t\t\t\t\t}\n\t\t\t\t/>\n\t\t\t</div>\n\t\t) : null;\n\n\t// Determine footer items\n\tconst footerItems = moveItems(footer);\n\tconst footerComp =\n\t\tfooterItems.length > 0 ? (\n\t\t\t<LayoutItemBar name=\"footer\" items={footerItems} className={`${styles.footer} imperiumFooter`} inverted borderless />\n\t\t) : null;\n\n\t// Determine status bar items\n\tconst statusbarItems = moveItems(statusbar);\n\tconst statusbarComp =\n\t\tstatusbarItems.length > 0 ? <LayoutItemBar items={statusbarItems} inverted className={`${styles.statusbar} imperiumStatusbar`} /> : null;\n\n\treturn (\n\t\t<div className={`${styles.parent} imperiumLayout ${isMobile ? 'imperiumMobile' : 'imperiumNotMobile'}`}>\n\t\t\t<div className=\"imperiumPrimaryMenuWrapper\">\n\t\t\t\t<LayoutItemBar items={primaryMenuItems} inverted borderless className={`${styles.menubar} imperiumPrimaryMenu`} />\n\t\t\t\t{statusbarComp}\n\t\t\t</div>\n\t\t\t<Segment attached className={`${styles.contentWrapper} imperiumLayoutContentWrapper`}>\n\t\t\t\t{secondaryMenuComp}\n\t\t\t\t<div className={`${styles.content} imperiumLayoutContent`}>{children}</div>\n\t\t\t</Segment>\n\t\t\t{footerComp}\n\t\t</div>\n\t);\n}\n"],"names":[],"mappings":";;;;;;;;;AAUU,MAAM,mCAAmC,EAAA;AAgB5C,SAAA,MAAA,CAAgB,EAAC,MAAA,EAAQ,WAAa,EAAA,SAAA,EAAW,eAAe,QAAwB,EAAA,EAAA;AAC9F,EAAM,MAAA,EAAC,aAAY,cAAe,EAAA,CAAA;AAClC,EAAA,MAAM,CAAC,QAAA,EAAU,WAAe,CAAA,GAAA,QAAA,CAAS,KAAK,CAAA,CAAA;AAE9C,EAAA,MAAM,iBAAoB,GAAA;AAAA,IACzB,aAAe,EAAA,IAAA;AAAA,IACf,MAAQ,EAAA,CAAA,KAAA;AAAA,IACR,QAAQ,MAAM;AACb,MAAA,IAAI,CAAC,QAAA;AAAU,QAAO,OAAA,IAAA,CAAA;AACtB,MAAA,uBAAQ,KAAA,CAAA,aAAA,CAAA,uBAAA,EAAA;AAAA,QAAwB,QAAA;AAAA,QAAoB,WAAA;AAAA,OAA0B,CAAA,CAAA;AAAA,KAC/E;AAAA,GACD,CAAA;AAGA,EAAA,MAAM,mBAAmB,SACxB,CAAA,QAAA,GAAW,CAAC,iBAAmB,EAAA,GAAG,WAAW,CAAE,CAAA,MAAA,CAAO,CAAK,CAAA,KAAA,CAAA,CAAE,kBAAkB,IAAI,CAAA,GAAI,CAAC,iBAAmB,EAAA,GAAG,WAAW,CAC1H,CAAA,CAAA;AAKA,EAAM,MAAA,kBAAA,GAAqB,UAC1B,QACG,GAAA;AAAA,IACA,GAAG,aAAA;AAAA,IACH;AAAA,MACC,IAAM,EAAA,EAAA;AAAA,MACN,IAAA,EAAM,CAAC,iBAAA,EAAmB,GAAG,WAAW,EAAE,MAAO,CAAA,CAAA,CAAA,KAAK,CAAE,CAAA,aAAA,KAAkB,IAAI,CAAA;AAAA,KAC/E;AAAA,MAEA,aACJ,CAAA,CAAA;AAEA,EAAA,MAAM,iBACL,GAAA,kBAAA,CAAmB,MAAS,GAAA,CAAA,mBAC1B,KAAA,CAAA,aAAA,CAAA,KAAA,EAAA;AAAA,IAAI,SAAU,EAAA,sCAAA;AAAA,GAAA,kBACb,KAAA,CAAA,aAAA,CAAA,aAAA,EAAA;AAAA,IACA,KAAO,EAAA,kBAAA;AAAA,IACP,QAAQ,EAAA,IAAA;AAAA,IACR,QAAQ,EAAA,IAAA;AAAA,IACR,SAAA,EACC,QAAY,IAAA,CAAC,QACV,GAAA,CAAA,EAAG,OAAO,aAAiB,CAAA,CAAA,EAAA,MAAA,CAAO,mBAClC,CAAA,sBAAA,CAAA,GAAA,CAAA,EAAG,MAAO,CAAA,aAAA,CAAA,sBAAA,CAAA;AAAA,GAEf,CACD,CACG,GAAA,IAAA,CAAA;AAGL,EAAM,MAAA,WAAA,GAAc,UAAU,MAAM,CAAA,CAAA;AACpC,EAAA,MAAM,UACL,GAAA,WAAA,CAAY,MAAS,GAAA,CAAA,mBACnB,KAAA,CAAA,aAAA,CAAA,aAAA,EAAA;AAAA,IAAc,IAAK,EAAA,QAAA;AAAA,IAAS,KAAO,EAAA,WAAA;AAAA,IAAa,SAAA,EAAW,GAAG,MAAO,CAAA,MAAA,CAAA,eAAA,CAAA;AAAA,IAAyB,QAAQ,EAAA,IAAA;AAAA,IAAC,UAAU,EAAA,IAAA;AAAA,GAAC,CAChH,GAAA,IAAA,CAAA;AAGL,EAAM,MAAA,cAAA,GAAiB,UAAU,SAAS,CAAA,CAAA;AAC1C,EAAA,MAAM,aACL,GAAA,cAAA,CAAe,MAAS,GAAA,CAAA,mBAAK,KAAA,CAAA,aAAA,CAAA,aAAA,EAAA;AAAA,IAAc,KAAO,EAAA,cAAA;AAAA,IAAgB,QAAQ,EAAA,IAAA;AAAA,IAAC,SAAA,EAAW,GAAG,MAAO,CAAA,SAAA,CAAA,kBAAA,CAAA;AAAA,GAA+B,CAAK,GAAA,IAAA,CAAA;AAErI,EAAA,uBACE,KAAA,CAAA,aAAA,CAAA,KAAA,EAAA;AAAA,IAAI,SAAW,EAAA,CAAA,EAAG,MAAO,CAAA,MAAA,CAAA,gBAAA,EAAyB,WAAW,gBAAmB,GAAA,mBAAA,CAAA,CAAA;AAAA,GAAA,kBAC/E,KAAA,CAAA,aAAA,CAAA,KAAA,EAAA;AAAA,IAAI,SAAU,EAAA,4BAAA;AAAA,GAAA,kBACb,KAAA,CAAA,aAAA,CAAA,aAAA,EAAA;AAAA,IAAc,KAAO,EAAA,gBAAA;AAAA,IAAkB,QAAQ,EAAA,IAAA;AAAA,IAAC,UAAU,EAAA,IAAA;AAAA,IAAC,SAAA,EAAW,GAAG,MAAO,CAAA,OAAA,CAAA,oBAAA,CAAA;AAAA,GAA+B,CAAA,EAC/G,aACF,CAAA,kBACC,KAAA,CAAA,aAAA,CAAA,OAAA,EAAA;AAAA,IAAQ,QAAQ,EAAA,IAAA;AAAA,IAAC,SAAA,EAAW,GAAG,MAAO,CAAA,cAAA,CAAA,6BAAA,CAAA;AAAA,GAAA,EACrC,mCACA,KAAA,CAAA,aAAA,CAAA,KAAA,EAAA;AAAA,IAAI,SAAA,EAAW,GAAG,MAAO,CAAA,OAAA,CAAA,sBAAA,CAAA;AAAA,GAAkC,EAAA,QAAS,CACtE,CAAA,EACC,UACF,CAAA,CAAA;AAEF;;;;"}
|
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":"a983-1"}]},{"name":"state.js","children":[{"name":"src/state.ts","uid":"a983-3"}]},{"name":"content/dividerSidebarItem.js","children":[{"name":"src/content/dividerSidebarItem.ts","uid":"a983-5"}]},{"name":"layout/withLayout.js","children":[{"name":"src/layout/withLayout.tsx","uid":"a983-7"}]},{"name":"content/createPages.js","children":[{"name":"src/content/createPages.tsx","uid":"a983-9"}]},{"name":"layout/hooks/useMobileLayout.js","children":[{"name":"src/layout/hooks/useMobileLayout.ts","uid":"a983-11"}]},{"name":"types.js","children":[{"name":"src/types.ts","uid":"a983-13"}]},{"name":"content/types.js","children":[{"name":"src/content/types.ts","uid":"a983-15"}]},{"name":"datahooks/DataHooks.js","children":[{"name":"src/datahooks/DataHooks.tsx","uid":"a983-17"}]},{"name":"datahooks/PermissionHooks.js","children":[{"name":"src/datahooks/PermissionHooks.tsx","uid":"a983-19"}]},{"name":"datahooks/Permissions.js","children":[{"name":"src/datahooks/Permissions.tsx","uid":"a983-21"}]},{"name":"layout/components/Layout.js","children":[{"name":"src/layout/components/Layout.tsx","uid":"a983-23"}]},{"name":"content/components/ContentComponent.js","children":[{"name":"src/content/components/ContentComponent.tsx","uid":"a983-25"}]},{"name":"datahooks/ExecuteDataHook.js","children":[{"name":"src/datahooks/ExecuteDataHook.tsx","uid":"a983-27"}]},{"name":"datahooks/ExecutePermissionHook.js","children":[{"name":"src/datahooks/ExecutePermissionHook.tsx","uid":"a983-29"}]},{"name":"utils.js","children":[{"name":"src/utils.ts","uid":"a983-31"}]},{"name":"layout/moveItems.js","children":[{"name":"src/layout/moveItems.ts","uid":"a983-33"}]},{"name":"content/components/styles.module.css.js","children":[{"name":"src/content/components/styles.module.css","uid":"a983-35"}]},{"name":"layout/components/styles.module.css.js","children":[{"name":"src/layout/components/styles.module.css","uid":"a983-37"}]},{"name":"content/hooks/useBuildContentData.js","children":[{"name":"src/content/hooks/useBuildContentData.ts","uid":"a983-39"}]},{"name":"content/components/Header.js","children":[{"name":"src/content/components/Header.tsx","uid":"a983-41"}]},{"name":"content/components/SidebarItemWrapper.js","children":[{"name":"src/content/components/SidebarItemWrapper.tsx","uid":"a983-43"}]},{"name":"layout/components/LayoutItemBar.js","children":[{"name":"src/layout/components/LayoutItemBar.tsx","uid":"a983-45"}]},{"name":"layout/components/SecondaryMenuToggleItem.js","children":[{"name":"src/layout/components/SecondaryMenuToggleItem.tsx","uid":"a983-47"}]},{"name":"layout/types.js","children":[{"name":"src/layout/types.ts","uid":"a983-49"}]},{"name":"hooks/useBuildData.js","children":[{"name":"src/hooks/useBuildData.ts","uid":"a983-51"}]},{"name":"layout/utils.js","children":[{"name":"src/layout/utils.tsx","uid":"a983-53"}]},{"name":"content/components/ActionFormSidebarItemComponent.js","children":[{"name":"src/content/components/ActionFormSidebarItemComponent.tsx","uid":"a983-55"}]},{"name":"content/components/ActionSidebarItemComponent.js","children":[{"name":"src/content/components/ActionSidebarItemComponent.tsx","uid":"a983-57"}]},{"name":"content/components/CustomSidebarItemComponent.js","children":[{"name":"src/content/components/CustomSidebarItemComponent.tsx","uid":"a983-59"}]},{"name":"content/components/PlainSidebarItem.js","children":[{"name":"src/content/components/PlainSidebarItem.tsx","uid":"a983-61"}]},{"name":"layout/components/LayoutItemWrapper.js","children":[{"name":"src/layout/components/LayoutItemWrapper.tsx","uid":"a983-63"}]},{"name":"commonItems.js","children":[{"name":"src/commonItems.ts","uid":"a983-65"}]},{"name":"hooks/useIsActiveRoute.js","children":[{"name":"src/hooks/useIsActiveRoute.ts","uid":"a983-67"}]},{"name":"hooks/useSelectPermission.js","children":[{"name":"src/hooks/useSelectPermission.ts","uid":"a983-69"}]},{"name":"hooks/useSelectState.js","children":[{"name":"src/hooks/useSelectState.ts","uid":"a983-71"}]},{"name":"content/utils.js","children":[{"name":"src/content/utils.tsx","uid":"a983-73"}]},{"name":"content/components/ActionForm.js","children":[{"name":"src/content/components/ActionForm.tsx","uid":"a983-75"}]},{"name":"layout/components/CustomLayoutItemComponent.js","children":[{"name":"src/layout/components/CustomLayoutItemComponent.tsx","uid":"a983-77"}]},{"name":"layout/components/DropdownItem.js","children":[{"name":"src/layout/components/DropdownItem.tsx","uid":"a983-79"}]},{"name":"layout/components/MenuItem.js","children":[{"name":"src/layout/components/MenuItem.tsx","uid":"a983-81"}]},{"name":"layout/components/PlainItem.js","children":[{"name":"src/layout/components/PlainItem.tsx","uid":"a983-83"}]},{"name":"external/style-inject/dist/style-inject.es.js","children":[{"name":"home/mike/dev/imperium/node_modules/style-inject/dist/style-inject.es.js","uid":"a983-85"}]}],"isRoot":true},"nodeParts":{"a983-1":{"renderedLength":184,"gzipLength":151,"brotliLength":131,"mainUid":"a983-0"},"a983-3":{"renderedLength":489,"gzipLength":251,"brotliLength":217,"mainUid":"a983-2"},"a983-5":{"renderedLength":59,"gzipLength":71,"brotliLength":63,"mainUid":"a983-4"},"a983-7":{"renderedLength":1955,"gzipLength":564,"brotliLength":488,"mainUid":"a983-6"},"a983-9":{"renderedLength":650,"gzipLength":300,"brotliLength":268,"mainUid":"a983-8"},"a983-11":{"renderedLength":445,"gzipLength":266,"brotliLength":229,"mainUid":"a983-10"},"a983-13":{"renderedLength":121,"gzipLength":110,"brotliLength":90,"mainUid":"a983-12"},"a983-15":{"renderedLength":388,"gzipLength":167,"brotliLength":111,"mainUid":"a983-14"},"a983-17":{"renderedLength":1058,"gzipLength":392,"brotliLength":330,"mainUid":"a983-16"},"a983-19":{"renderedLength":339,"gzipLength":201,"brotliLength":164,"mainUid":"a983-18"},"a983-21":{"renderedLength":663,"gzipLength":328,"brotliLength":285,"mainUid":"a983-20"},"a983-23":{"renderedLength":2630,"gzipLength":743,"brotliLength":629,"mainUid":"a983-22"},"a983-25":{"renderedLength":1970,"gzipLength":651,"brotliLength":565,"mainUid":"a983-24"},"a983-27":{"renderedLength":123,"gzipLength":107,"brotliLength":93,"mainUid":"a983-26"},"a983-29":{"renderedLength":345,"gzipLength":206,"brotliLength":172,"mainUid":"a983-28"},"a983-31":{"renderedLength":145,"gzipLength":117,"brotliLength":116,"mainUid":"a983-30"},"a983-33":{"renderedLength":1401,"gzipLength":377,"brotliLength":347,"mainUid":"a983-32"},"a983-35":{"renderedLength":1469,"gzipLength":528,"brotliLength":431,"mainUid":"a983-34"},"a983-37":{"renderedLength":3176,"gzipLength":933,"brotliLength":762,"mainUid":"a983-36"},"a983-39":{"renderedLength":257,"gzipLength":158,"brotliLength":122,"mainUid":"a983-38"},"a983-41":{"renderedLength":1042,"gzipLength":377,"brotliLength":323,"mainUid":"a983-40"},"a983-43":{"renderedLength":1189,"gzipLength":399,"brotliLength":314,"mainUid":"a983-42"},"a983-45":{"renderedLength":726,"gzipLength":295,"brotliLength":252,"mainUid":"a983-44"},"a983-47":{"renderedLength":335,"gzipLength":222,"brotliLength":169,"mainUid":"a983-46"},"a983-49":{"renderedLength":191,"gzipLength":111,"brotliLength":89,"mainUid":"a983-48"},"a983-51":{"renderedLength":785,"gzipLength":362,"brotliLength":321,"mainUid":"a983-50"},"a983-53":{"renderedLength":915,"gzipLength":392,"brotliLength":328,"mainUid":"a983-52"},"a983-55":{"renderedLength":663,"gzipLength":344,"brotliLength":277,"mainUid":"a983-54"},"a983-57":{"renderedLength":362,"gzipLength":244,"brotliLength":185,"mainUid":"a983-56"},"a983-59":{"renderedLength":83,"gzipLength":96,"brotliLength":66,"mainUid":"a983-58"},"a983-61":{"renderedLength":344,"gzipLength":235,"brotliLength":186,"mainUid":"a983-60"},"a983-63":{"renderedLength":1503,"gzipLength":488,"brotliLength":399,"mainUid":"a983-62"},"a983-65":{"renderedLength":203,"gzipLength":136,"brotliLength":97,"mainUid":"a983-64"},"a983-67":{"renderedLength":514,"gzipLength":229,"brotliLength":187,"mainUid":"a983-66"},"a983-69":{"renderedLength":294,"gzipLength":154,"brotliLength":114,"mainUid":"a983-68"},"a983-71":{"renderedLength":326,"gzipLength":176,"brotliLength":141,"mainUid":"a983-70"},"a983-73":{"renderedLength":628,"gzipLength":259,"brotliLength":219,"mainUid":"a983-72"},"a983-75":{"renderedLength":1667,"gzipLength":625,"brotliLength":519,"mainUid":"a983-74"},"a983-77":{"renderedLength":82,"gzipLength":95,"brotliLength":66,"mainUid":"a983-76"},"a983-79":{"renderedLength":1179,"gzipLength":451,"brotliLength":362,"mainUid":"a983-78"},"a983-81":{"renderedLength":252,"gzipLength":159,"brotliLength":116,"mainUid":"a983-80"},"a983-83":{"renderedLength":244,"gzipLength":178,"brotliLength":145,"mainUid":"a983-82"},"a983-85":{"renderedLength":636,"gzipLength":318,"brotliLength":242,"mainUid":"a983-84"}},"nodeMetas":{"a983-0":{"id":"/src/index.ts","moduleParts":{"index.js":"a983-1"},"imported":[{"uid":"a983-10"},{"uid":"a983-6"},{"uid":"a983-2"},{"uid":"a983-8"},{"uid":"a983-4"}],"importedBy":[],"isEntry":true},"a983-2":{"id":"/src/state.ts","moduleParts":{"state.js":"a983-3"},"imported":[{"uid":"a983-90"},{"uid":"a983-91"}],"importedBy":[{"uid":"a983-0"},{"uid":"a983-10"},{"uid":"a983-20"},{"uid":"a983-22"},{"uid":"a983-24"},{"uid":"a983-28"},{"uid":"a983-50"}]},"a983-4":{"id":"/src/content/dividerSidebarItem.ts","moduleParts":{"content/dividerSidebarItem.js":"a983-5"},"imported":[],"importedBy":[{"uid":"a983-0"}]},"a983-6":{"id":"/src/layout/withLayout.tsx","moduleParts":{"layout/withLayout.js":"a983-7"},"imported":[{"uid":"a983-87"},{"uid":"a983-86"},{"uid":"a983-16"},{"uid":"a983-18"},{"uid":"a983-20"},{"uid":"a983-12"},{"uid":"a983-22"}],"importedBy":[{"uid":"a983-0"}]},"a983-8":{"id":"/src/content/createPages.tsx","moduleParts":{"content/createPages.js":"a983-9"},"imported":[{"uid":"a983-87"},{"uid":"a983-86"},{"uid":"a983-24"},{"uid":"a983-14"}],"importedBy":[{"uid":"a983-0"}]},"a983-10":{"id":"/src/layout/hooks/useMobileLayout.ts","moduleParts":{"layout/hooks/useMobileLayout.js":"a983-11"},"imported":[{"uid":"a983-86"},{"uid":"a983-87"},{"uid":"a983-88"},{"uid":"a983-89"},{"uid":"a983-2"}],"importedBy":[{"uid":"a983-0"}]},"a983-12":{"id":"/src/types.ts","moduleParts":{"types.js":"a983-13"},"imported":[],"importedBy":[{"uid":"a983-6"}]},"a983-14":{"id":"/src/content/types.ts","moduleParts":{"content/types.js":"a983-15"},"imported":[],"importedBy":[{"uid":"a983-8"},{"uid":"a983-40"},{"uid":"a983-42"}]},"a983-16":{"id":"/src/datahooks/DataHooks.tsx","moduleParts":{"datahooks/DataHooks.js":"a983-17"},"imported":[{"uid":"a983-87"},{"uid":"a983-86"},{"uid":"a983-92"},{"uid":"a983-26"}],"importedBy":[{"uid":"a983-6"},{"uid":"a983-24"}]},"a983-18":{"id":"/src/datahooks/PermissionHooks.tsx","moduleParts":{"datahooks/PermissionHooks.js":"a983-19"},"imported":[{"uid":"a983-87"},{"uid":"a983-86"},{"uid":"a983-28"}],"importedBy":[{"uid":"a983-6"}]},"a983-20":{"id":"/src/datahooks/Permissions.tsx","moduleParts":{"datahooks/Permissions.js":"a983-21"},"imported":[{"uid":"a983-87"},{"uid":"a983-93"},{"uid":"a983-86"},{"uid":"a983-88"},{"uid":"a983-2"}],"importedBy":[{"uid":"a983-6"}]},"a983-22":{"id":"/src/layout/components/Layout.tsx","moduleParts":{"layout/components/Layout.js":"a983-23"},"imported":[{"uid":"a983-87"},{"uid":"a983-86"},{"uid":"a983-94"},{"uid":"a983-2"},{"uid":"a983-32"},{"uid":"a983-44"},{"uid":"a983-46"},{"uid":"a983-36"}],"importedBy":[{"uid":"a983-6"}]},"a983-24":{"id":"/src/content/components/ContentComponent.tsx","moduleParts":{"content/components/ContentComponent.js":"a983-25"},"imported":[{"uid":"a983-87"},{"uid":"a983-86"},{"uid":"a983-95"},{"uid":"a983-88"},{"uid":"a983-16"},{"uid":"a983-2"},{"uid":"a983-30"},{"uid":"a983-38"},{"uid":"a983-40"},{"uid":"a983-42"},{"uid":"a983-34"}],"importedBy":[{"uid":"a983-8"}]},"a983-26":{"id":"/src/datahooks/ExecuteDataHook.tsx","moduleParts":{"datahooks/ExecuteDataHook.js":"a983-27"},"imported":[{"uid":"a983-87"}],"importedBy":[{"uid":"a983-16"}]},"a983-28":{"id":"/src/datahooks/ExecutePermissionHook.tsx","moduleParts":{"datahooks/ExecutePermissionHook.js":"a983-29"},"imported":[{"uid":"a983-87"},{"uid":"a983-88"},{"uid":"a983-2"}],"importedBy":[{"uid":"a983-18"}]},"a983-30":{"id":"/src/utils.ts","moduleParts":{"utils.js":"a983-31"},"imported":[{"uid":"a983-95"}],"importedBy":[{"uid":"a983-24"},{"uid":"a983-44"},{"uid":"a983-62"}]},"a983-32":{"id":"/src/layout/moveItems.ts","moduleParts":{"layout/moveItems.js":"a983-33"},"imported":[{"uid":"a983-86"},{"uid":"a983-95"},{"uid":"a983-48"}],"importedBy":[{"uid":"a983-22"}]},"a983-34":{"id":"/src/content/components/styles.module.css","moduleParts":{"content/components/styles.module.css.js":"a983-35"},"imported":[{"uid":"a983-84"}],"importedBy":[{"uid":"a983-24"},{"uid":"a983-40"}]},"a983-36":{"id":"/src/layout/components/styles.module.css","moduleParts":{"layout/components/styles.module.css.js":"a983-37"},"imported":[{"uid":"a983-84"}],"importedBy":[{"uid":"a983-22"},{"uid":"a983-46"},{"uid":"a983-78"}]},"a983-38":{"id":"/src/content/hooks/useBuildContentData.ts","moduleParts":{"content/hooks/useBuildContentData.js":"a983-39"},"imported":[{"uid":"a983-50"}],"importedBy":[{"uid":"a983-24"},{"uid":"a983-42"}]},"a983-40":{"id":"/src/content/components/Header.tsx","moduleParts":{"content/components/Header.js":"a983-41"},"imported":[{"uid":"a983-87"},{"uid":"a983-86"},{"uid":"a983-94"},{"uid":"a983-14"},{"uid":"a983-34"}],"importedBy":[{"uid":"a983-24"}]},"a983-42":{"id":"/src/content/components/SidebarItemWrapper.tsx","moduleParts":{"content/components/SidebarItemWrapper.js":"a983-43"},"imported":[{"uid":"a983-87"},{"uid":"a983-86"},{"uid":"a983-96"},{"uid":"a983-94"},{"uid":"a983-38"},{"uid":"a983-14"},{"uid":"a983-54"},{"uid":"a983-56"},{"uid":"a983-58"},{"uid":"a983-60"}],"importedBy":[{"uid":"a983-24"}]},"a983-44":{"id":"/src/layout/components/LayoutItemBar.tsx","moduleParts":{"layout/components/LayoutItemBar.js":"a983-45"},"imported":[{"uid":"a983-87"},{"uid":"a983-86"},{"uid":"a983-94"},{"uid":"a983-30"},{"uid":"a983-52"},{"uid":"a983-62"}],"importedBy":[{"uid":"a983-22"}]},"a983-46":{"id":"/src/layout/components/SecondaryMenuToggleItem.tsx","moduleParts":{"layout/components/SecondaryMenuToggleItem.js":"a983-47"},"imported":[{"uid":"a983-87"},{"uid":"a983-94"},{"uid":"a983-36"}],"importedBy":[{"uid":"a983-22"}]},"a983-48":{"id":"/src/layout/types.ts","moduleParts":{"layout/types.js":"a983-49"},"imported":[],"importedBy":[{"uid":"a983-32"},{"uid":"a983-62"}]},"a983-50":{"id":"/src/hooks/useBuildData.ts","moduleParts":{"hooks/useBuildData.js":"a983-51"},"imported":[{"uid":"a983-93"},{"uid":"a983-86"},{"uid":"a983-95"},{"uid":"a983-92"},{"uid":"a983-2"},{"uid":"a983-66"},{"uid":"a983-68"},{"uid":"a983-70"}],"importedBy":[{"uid":"a983-38"},{"uid":"a983-62"}]},"a983-52":{"id":"/src/layout/utils.tsx","moduleParts":{"layout/utils.js":"a983-53"},"imported":[{"uid":"a983-87"},{"uid":"a983-92"},{"uid":"a983-94"},{"uid":"a983-64"}],"importedBy":[{"uid":"a983-44"},{"uid":"a983-78"},{"uid":"a983-82"}]},"a983-54":{"id":"/src/content/components/ActionFormSidebarItemComponent.tsx","moduleParts":{"content/components/ActionFormSidebarItemComponent.js":"a983-55"},"imported":[{"uid":"a983-87"},{"uid":"a983-86"},{"uid":"a983-94"},{"uid":"a983-72"},{"uid":"a983-74"}],"importedBy":[{"uid":"a983-42"}]},"a983-56":{"id":"/src/content/components/ActionSidebarItemComponent.tsx","moduleParts":{"content/components/ActionSidebarItemComponent.js":"a983-57"},"imported":[{"uid":"a983-87"},{"uid":"a983-94"},{"uid":"a983-72"}],"importedBy":[{"uid":"a983-42"}]},"a983-58":{"id":"/src/content/components/CustomSidebarItemComponent.tsx","moduleParts":{"content/components/CustomSidebarItemComponent.js":"a983-59"},"imported":[{"uid":"a983-87"}],"importedBy":[{"uid":"a983-42"}]},"a983-60":{"id":"/src/content/components/PlainSidebarItem.tsx","moduleParts":{"content/components/PlainSidebarItem.js":"a983-61"},"imported":[{"uid":"a983-87"},{"uid":"a983-92"},{"uid":"a983-94"},{"uid":"a983-72"}],"importedBy":[{"uid":"a983-42"}]},"a983-62":{"id":"/src/layout/components/LayoutItemWrapper.tsx","moduleParts":{"layout/components/LayoutItemWrapper.js":"a983-63"},"imported":[{"uid":"a983-87"},{"uid":"a983-86"},{"uid":"a983-96"},{"uid":"a983-94"},{"uid":"a983-50"},{"uid":"a983-30"},{"uid":"a983-48"},{"uid":"a983-76"},{"uid":"a983-78"},{"uid":"a983-80"},{"uid":"a983-82"}],"importedBy":[{"uid":"a983-44"}]},"a983-64":{"id":"/src/commonItems.ts","moduleParts":{"commonItems.js":"a983-65"},"imported":[],"importedBy":[{"uid":"a983-52"},{"uid":"a983-66"}]},"a983-66":{"id":"/src/hooks/useIsActiveRoute.ts","moduleParts":{"hooks/useIsActiveRoute.js":"a983-67"},"imported":[{"uid":"a983-97"},{"uid":"a983-64"}],"importedBy":[{"uid":"a983-50"}]},"a983-68":{"id":"/src/hooks/useSelectPermission.ts","moduleParts":{"hooks/useSelectPermission.js":"a983-69"},"imported":[{"uid":"a983-95"}],"importedBy":[{"uid":"a983-50"}]},"a983-70":{"id":"/src/hooks/useSelectState.ts","moduleParts":{"hooks/useSelectState.js":"a983-71"},"imported":[{"uid":"a983-95"}],"importedBy":[{"uid":"a983-50"}]},"a983-72":{"id":"/src/content/utils.tsx","moduleParts":{"content/utils.js":"a983-73"},"imported":[{"uid":"a983-87"},{"uid":"a983-94"}],"importedBy":[{"uid":"a983-54"},{"uid":"a983-56"},{"uid":"a983-60"}]},"a983-74":{"id":"/src/content/components/ActionForm.tsx","moduleParts":{"content/components/ActionForm.js":"a983-75"},"imported":[{"uid":"a983-87"},{"uid":"a983-98"},{"uid":"a983-86"},{"uid":"a983-94"}],"importedBy":[{"uid":"a983-54"}]},"a983-76":{"id":"/src/layout/components/CustomLayoutItemComponent.tsx","moduleParts":{"layout/components/CustomLayoutItemComponent.js":"a983-77"},"imported":[{"uid":"a983-87"}],"importedBy":[{"uid":"a983-62"}]},"a983-78":{"id":"/src/layout/components/DropdownItem.tsx","moduleParts":{"layout/components/DropdownItem.js":"a983-79"},"imported":[{"uid":"a983-87"},{"uid":"a983-86"},{"uid":"a983-94"},{"uid":"a983-52"},{"uid":"a983-36"}],"importedBy":[{"uid":"a983-62"}]},"a983-80":{"id":"/src/layout/components/MenuItem.tsx","moduleParts":{"layout/components/MenuItem.js":"a983-81"},"imported":[{"uid":"a983-87"},{"uid":"a983-94"}],"importedBy":[{"uid":"a983-62"}]},"a983-82":{"id":"/src/layout/components/PlainItem.tsx","moduleParts":{"layout/components/PlainItem.js":"a983-83"},"imported":[{"uid":"a983-87"},{"uid":"a983-94"},{"uid":"a983-52"}],"importedBy":[{"uid":"a983-62"}]},"a983-84":{"id":"/home/mike/dev/imperium/node_modules/style-inject/dist/style-inject.es.js","moduleParts":{"external/style-inject/dist/style-inject.es.js":"a983-85"},"imported":[],"importedBy":[{"uid":"a983-36"},{"uid":"a983-34"}]},"a983-86":{"id":"debug","moduleParts":{},"imported":[],"importedBy":[{"uid":"a983-10"},{"uid":"a983-6"},{"uid":"a983-8"},{"uid":"a983-16"},{"uid":"a983-18"},{"uid":"a983-20"},{"uid":"a983-22"},{"uid":"a983-24"},{"uid":"a983-32"},{"uid":"a983-44"},{"uid":"a983-40"},{"uid":"a983-42"},{"uid":"a983-62"},{"uid":"a983-50"},{"uid":"a983-54"},{"uid":"a983-78"},{"uid":"a983-74"}],"isExternal":true},"a983-87":{"id":"react","moduleParts":{},"imported":[],"importedBy":[{"uid":"a983-10"},{"uid":"a983-6"},{"uid":"a983-8"},{"uid":"a983-16"},{"uid":"a983-18"},{"uid":"a983-20"},{"uid":"a983-22"},{"uid":"a983-24"},{"uid":"a983-26"},{"uid":"a983-28"},{"uid":"a983-44"},{"uid":"a983-46"},{"uid":"a983-40"},{"uid":"a983-42"},{"uid":"a983-52"},{"uid":"a983-62"},{"uid":"a983-54"},{"uid":"a983-56"},{"uid":"a983-58"},{"uid":"a983-60"},{"uid":"a983-76"},{"uid":"a983-78"},{"uid":"a983-80"},{"uid":"a983-82"},{"uid":"a983-72"},{"uid":"a983-74"}],"isExternal":true},"a983-88":{"id":"react-redux","moduleParts":{},"imported":[],"importedBy":[{"uid":"a983-10"},{"uid":"a983-20"},{"uid":"a983-24"},{"uid":"a983-28"}],"isExternal":true},"a983-89":{"id":"react-responsive","moduleParts":{},"imported":[],"importedBy":[{"uid":"a983-10"}],"isExternal":true},"a983-90":{"id":"@imperium/state","moduleParts":{},"imported":[],"importedBy":[{"uid":"a983-2"}],"isExternal":true},"a983-91":{"id":"@reduxjs/toolkit","moduleParts":{},"imported":[],"importedBy":[{"uid":"a983-2"}],"isExternal":true},"a983-92":{"id":"react-router-dom","moduleParts":{},"imported":[],"importedBy":[{"uid":"a983-16"},{"uid":"a983-52"},{"uid":"a983-50"},{"uid":"a983-60"}],"isExternal":true},"a983-93":{"id":"@imperium/auth-client","moduleParts":{},"imported":[],"importedBy":[{"uid":"a983-20"},{"uid":"a983-50"}],"isExternal":true},"a983-94":{"id":"semantic-ui-react","moduleParts":{},"imported":[],"importedBy":[{"uid":"a983-22"},{"uid":"a983-44"},{"uid":"a983-46"},{"uid":"a983-40"},{"uid":"a983-42"},{"uid":"a983-52"},{"uid":"a983-62"},{"uid":"a983-54"},{"uid":"a983-56"},{"uid":"a983-60"},{"uid":"a983-78"},{"uid":"a983-80"},{"uid":"a983-82"},{"uid":"a983-72"},{"uid":"a983-74"}],"isExternal":true},"a983-95":{"id":"lodash-es","moduleParts":{},"imported":[],"importedBy":[{"uid":"a983-24"},{"uid":"a983-32"},{"uid":"a983-30"},{"uid":"a983-50"},{"uid":"a983-68"},{"uid":"a983-70"}],"isExternal":true},"a983-96":{"id":"mingo","moduleParts":{},"imported":[],"importedBy":[{"uid":"a983-42"},{"uid":"a983-62"}],"isExternal":true},"a983-97":{"id":"react-router","moduleParts":{},"imported":[],"importedBy":[{"uid":"a983-66"}],"isExternal":true},"a983-98":{"id":"@thx/controls","moduleParts":{},"imported":[],"importedBy":[{"uid":"a983-74"}],"isExternal":true}},"env":{"rollup":"2.70.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":"be09-1"}]},{"name":"state.js","children":[{"name":"src/state.ts","uid":"be09-3"}]},{"name":"content/dividerSidebarItem.js","children":[{"name":"src/content/dividerSidebarItem.ts","uid":"be09-5"}]},{"name":"layout/withLayout.js","children":[{"name":"src/layout/withLayout.tsx","uid":"be09-7"}]},{"name":"content/createPages.js","children":[{"name":"src/content/createPages.tsx","uid":"be09-9"}]},{"name":"layout/hooks/useMobileLayout.js","children":[{"name":"src/layout/hooks/useMobileLayout.ts","uid":"be09-11"}]},{"name":"types.js","children":[{"name":"src/types.ts","uid":"be09-13"}]},{"name":"content/types.js","children":[{"name":"src/content/types.ts","uid":"be09-15"}]},{"name":"datahooks/PermissionHooks.js","children":[{"name":"src/datahooks/PermissionHooks.tsx","uid":"be09-17"}]},{"name":"datahooks/DataHooks.js","children":[{"name":"src/datahooks/DataHooks.tsx","uid":"be09-19"}]},{"name":"datahooks/Permissions.js","children":[{"name":"src/datahooks/Permissions.tsx","uid":"be09-21"}]},{"name":"content/components/ContentComponent.js","children":[{"name":"src/content/components/ContentComponent.tsx","uid":"be09-23"}]},{"name":"layout/components/Layout.js","children":[{"name":"src/layout/components/Layout.tsx","uid":"be09-25"}]},{"name":"datahooks/ExecutePermissionHook.js","children":[{"name":"src/datahooks/ExecutePermissionHook.tsx","uid":"be09-27"}]},{"name":"datahooks/ExecuteDataHook.js","children":[{"name":"src/datahooks/ExecuteDataHook.tsx","uid":"be09-29"}]},{"name":"utils.js","children":[{"name":"src/utils.ts","uid":"be09-31"}]},{"name":"content/components/styles.module.css.js","children":[{"name":"src/content/components/styles.module.css","uid":"be09-33"}]},{"name":"layout/moveItems.js","children":[{"name":"src/layout/moveItems.ts","uid":"be09-35"}]},{"name":"layout/components/styles.module.css.js","children":[{"name":"src/layout/components/styles.module.css","uid":"be09-37"}]},{"name":"content/hooks/useBuildContentData.js","children":[{"name":"src/content/hooks/useBuildContentData.ts","uid":"be09-39"}]},{"name":"content/components/Header.js","children":[{"name":"src/content/components/Header.tsx","uid":"be09-41"}]},{"name":"content/components/SidebarItemWrapper.js","children":[{"name":"src/content/components/SidebarItemWrapper.tsx","uid":"be09-43"}]},{"name":"layout/components/LayoutItemBar.js","children":[{"name":"src/layout/components/LayoutItemBar.tsx","uid":"be09-45"}]},{"name":"layout/components/SecondaryMenuToggleItem.js","children":[{"name":"src/layout/components/SecondaryMenuToggleItem.tsx","uid":"be09-47"}]},{"name":"layout/types.js","children":[{"name":"src/layout/types.ts","uid":"be09-49"}]},{"name":"hooks/useBuildData.js","children":[{"name":"src/hooks/useBuildData.ts","uid":"be09-51"}]},{"name":"layout/utils.js","children":[{"name":"src/layout/utils.tsx","uid":"be09-53"}]},{"name":"content/components/PlainSidebarItem.js","children":[{"name":"src/content/components/PlainSidebarItem.tsx","uid":"be09-55"}]},{"name":"content/components/ActionFormSidebarItemComponent.js","children":[{"name":"src/content/components/ActionFormSidebarItemComponent.tsx","uid":"be09-57"}]},{"name":"content/components/ActionSidebarItemComponent.js","children":[{"name":"src/content/components/ActionSidebarItemComponent.tsx","uid":"be09-59"}]},{"name":"content/components/CustomSidebarItemComponent.js","children":[{"name":"src/content/components/CustomSidebarItemComponent.tsx","uid":"be09-61"}]},{"name":"layout/components/LayoutItemWrapper.js","children":[{"name":"src/layout/components/LayoutItemWrapper.tsx","uid":"be09-63"}]},{"name":"hooks/useIsActiveRoute.js","children":[{"name":"src/hooks/useIsActiveRoute.ts","uid":"be09-65"}]},{"name":"hooks/useSelectPermission.js","children":[{"name":"src/hooks/useSelectPermission.ts","uid":"be09-67"}]},{"name":"hooks/useSelectState.js","children":[{"name":"src/hooks/useSelectState.ts","uid":"be09-69"}]},{"name":"commonItems.js","children":[{"name":"src/commonItems.ts","uid":"be09-71"}]},{"name":"content/utils.js","children":[{"name":"src/content/utils.tsx","uid":"be09-73"}]},{"name":"content/components/ActionForm.js","children":[{"name":"src/content/components/ActionForm.tsx","uid":"be09-75"}]},{"name":"layout/components/CustomLayoutItemComponent.js","children":[{"name":"src/layout/components/CustomLayoutItemComponent.tsx","uid":"be09-77"}]},{"name":"layout/components/DropdownItem.js","children":[{"name":"src/layout/components/DropdownItem.tsx","uid":"be09-79"}]},{"name":"layout/components/MenuItem.js","children":[{"name":"src/layout/components/MenuItem.tsx","uid":"be09-81"}]},{"name":"layout/components/PlainItem.js","children":[{"name":"src/layout/components/PlainItem.tsx","uid":"be09-83"}]},{"name":"external/style-inject/dist/style-inject.es.js","children":[{"name":"home/darkadept/dev/imperium/node_modules/style-inject/dist/style-inject.es.js","uid":"be09-85"}]}],"isRoot":true},"nodeParts":{"be09-1":{"renderedLength":184,"gzipLength":151,"brotliLength":131,"mainUid":"be09-0"},"be09-3":{"renderedLength":489,"gzipLength":251,"brotliLength":217,"mainUid":"be09-2"},"be09-5":{"renderedLength":59,"gzipLength":71,"brotliLength":63,"mainUid":"be09-4"},"be09-7":{"renderedLength":1955,"gzipLength":564,"brotliLength":488,"mainUid":"be09-6"},"be09-9":{"renderedLength":650,"gzipLength":300,"brotliLength":268,"mainUid":"be09-8"},"be09-11":{"renderedLength":445,"gzipLength":266,"brotliLength":229,"mainUid":"be09-10"},"be09-13":{"renderedLength":121,"gzipLength":110,"brotliLength":90,"mainUid":"be09-12"},"be09-15":{"renderedLength":388,"gzipLength":167,"brotliLength":111,"mainUid":"be09-14"},"be09-17":{"renderedLength":339,"gzipLength":201,"brotliLength":164,"mainUid":"be09-16"},"be09-19":{"renderedLength":1058,"gzipLength":392,"brotliLength":330,"mainUid":"be09-18"},"be09-21":{"renderedLength":663,"gzipLength":328,"brotliLength":285,"mainUid":"be09-20"},"be09-23":{"renderedLength":1970,"gzipLength":651,"brotliLength":565,"mainUid":"be09-22"},"be09-25":{"renderedLength":2638,"gzipLength":751,"brotliLength":635,"mainUid":"be09-24"},"be09-27":{"renderedLength":345,"gzipLength":206,"brotliLength":172,"mainUid":"be09-26"},"be09-29":{"renderedLength":123,"gzipLength":107,"brotliLength":93,"mainUid":"be09-28"},"be09-31":{"renderedLength":145,"gzipLength":117,"brotliLength":116,"mainUid":"be09-30"},"be09-33":{"renderedLength":1639,"gzipLength":579,"brotliLength":473,"mainUid":"be09-32"},"be09-35":{"renderedLength":1401,"gzipLength":377,"brotliLength":347,"mainUid":"be09-34"},"be09-37":{"renderedLength":3176,"gzipLength":933,"brotliLength":762,"mainUid":"be09-36"},"be09-39":{"renderedLength":257,"gzipLength":158,"brotliLength":122,"mainUid":"be09-38"},"be09-41":{"renderedLength":1042,"gzipLength":377,"brotliLength":323,"mainUid":"be09-40"},"be09-43":{"renderedLength":1189,"gzipLength":399,"brotliLength":314,"mainUid":"be09-42"},"be09-45":{"renderedLength":726,"gzipLength":295,"brotliLength":252,"mainUid":"be09-44"},"be09-47":{"renderedLength":335,"gzipLength":222,"brotliLength":169,"mainUid":"be09-46"},"be09-49":{"renderedLength":191,"gzipLength":111,"brotliLength":89,"mainUid":"be09-48"},"be09-51":{"renderedLength":785,"gzipLength":362,"brotliLength":321,"mainUid":"be09-50"},"be09-53":{"renderedLength":915,"gzipLength":392,"brotliLength":328,"mainUid":"be09-52"},"be09-55":{"renderedLength":344,"gzipLength":235,"brotliLength":186,"mainUid":"be09-54"},"be09-57":{"renderedLength":663,"gzipLength":344,"brotliLength":277,"mainUid":"be09-56"},"be09-59":{"renderedLength":362,"gzipLength":244,"brotliLength":185,"mainUid":"be09-58"},"be09-61":{"renderedLength":83,"gzipLength":96,"brotliLength":66,"mainUid":"be09-60"},"be09-63":{"renderedLength":1503,"gzipLength":488,"brotliLength":399,"mainUid":"be09-62"},"be09-65":{"renderedLength":514,"gzipLength":229,"brotliLength":187,"mainUid":"be09-64"},"be09-67":{"renderedLength":294,"gzipLength":154,"brotliLength":114,"mainUid":"be09-66"},"be09-69":{"renderedLength":326,"gzipLength":176,"brotliLength":141,"mainUid":"be09-68"},"be09-71":{"renderedLength":203,"gzipLength":136,"brotliLength":97,"mainUid":"be09-70"},"be09-73":{"renderedLength":628,"gzipLength":259,"brotliLength":219,"mainUid":"be09-72"},"be09-75":{"renderedLength":1667,"gzipLength":625,"brotliLength":519,"mainUid":"be09-74"},"be09-77":{"renderedLength":82,"gzipLength":95,"brotliLength":66,"mainUid":"be09-76"},"be09-79":{"renderedLength":1179,"gzipLength":451,"brotliLength":362,"mainUid":"be09-78"},"be09-81":{"renderedLength":252,"gzipLength":159,"brotliLength":116,"mainUid":"be09-80"},"be09-83":{"renderedLength":244,"gzipLength":178,"brotliLength":145,"mainUid":"be09-82"},"be09-85":{"renderedLength":636,"gzipLength":318,"brotliLength":242,"mainUid":"be09-84"}},"nodeMetas":{"be09-0":{"id":"/src/index.ts","moduleParts":{"index.js":"be09-1"},"imported":[{"uid":"be09-10"},{"uid":"be09-6"},{"uid":"be09-2"},{"uid":"be09-8"},{"uid":"be09-4"}],"importedBy":[],"isEntry":true},"be09-2":{"id":"/src/state.ts","moduleParts":{"state.js":"be09-3"},"imported":[{"uid":"be09-90"},{"uid":"be09-91"}],"importedBy":[{"uid":"be09-0"},{"uid":"be09-10"},{"uid":"be09-20"},{"uid":"be09-24"},{"uid":"be09-22"},{"uid":"be09-26"},{"uid":"be09-50"}]},"be09-4":{"id":"/src/content/dividerSidebarItem.ts","moduleParts":{"content/dividerSidebarItem.js":"be09-5"},"imported":[],"importedBy":[{"uid":"be09-0"}]},"be09-6":{"id":"/src/layout/withLayout.tsx","moduleParts":{"layout/withLayout.js":"be09-7"},"imported":[{"uid":"be09-87"},{"uid":"be09-86"},{"uid":"be09-18"},{"uid":"be09-16"},{"uid":"be09-20"},{"uid":"be09-12"},{"uid":"be09-24"}],"importedBy":[{"uid":"be09-0"}]},"be09-8":{"id":"/src/content/createPages.tsx","moduleParts":{"content/createPages.js":"be09-9"},"imported":[{"uid":"be09-87"},{"uid":"be09-86"},{"uid":"be09-22"},{"uid":"be09-14"}],"importedBy":[{"uid":"be09-0"}]},"be09-10":{"id":"/src/layout/hooks/useMobileLayout.ts","moduleParts":{"layout/hooks/useMobileLayout.js":"be09-11"},"imported":[{"uid":"be09-86"},{"uid":"be09-87"},{"uid":"be09-88"},{"uid":"be09-89"},{"uid":"be09-2"}],"importedBy":[{"uid":"be09-0"}]},"be09-12":{"id":"/src/types.ts","moduleParts":{"types.js":"be09-13"},"imported":[],"importedBy":[{"uid":"be09-6"}]},"be09-14":{"id":"/src/content/types.ts","moduleParts":{"content/types.js":"be09-15"},"imported":[],"importedBy":[{"uid":"be09-8"},{"uid":"be09-40"},{"uid":"be09-42"}]},"be09-16":{"id":"/src/datahooks/PermissionHooks.tsx","moduleParts":{"datahooks/PermissionHooks.js":"be09-17"},"imported":[{"uid":"be09-87"},{"uid":"be09-86"},{"uid":"be09-26"}],"importedBy":[{"uid":"be09-6"}]},"be09-18":{"id":"/src/datahooks/DataHooks.tsx","moduleParts":{"datahooks/DataHooks.js":"be09-19"},"imported":[{"uid":"be09-87"},{"uid":"be09-86"},{"uid":"be09-92"},{"uid":"be09-28"}],"importedBy":[{"uid":"be09-6"},{"uid":"be09-22"}]},"be09-20":{"id":"/src/datahooks/Permissions.tsx","moduleParts":{"datahooks/Permissions.js":"be09-21"},"imported":[{"uid":"be09-87"},{"uid":"be09-93"},{"uid":"be09-86"},{"uid":"be09-88"},{"uid":"be09-2"}],"importedBy":[{"uid":"be09-6"}]},"be09-22":{"id":"/src/content/components/ContentComponent.tsx","moduleParts":{"content/components/ContentComponent.js":"be09-23"},"imported":[{"uid":"be09-87"},{"uid":"be09-86"},{"uid":"be09-95"},{"uid":"be09-88"},{"uid":"be09-18"},{"uid":"be09-2"},{"uid":"be09-30"},{"uid":"be09-38"},{"uid":"be09-40"},{"uid":"be09-42"},{"uid":"be09-32"}],"importedBy":[{"uid":"be09-8"}]},"be09-24":{"id":"/src/layout/components/Layout.tsx","moduleParts":{"layout/components/Layout.js":"be09-25"},"imported":[{"uid":"be09-87"},{"uid":"be09-86"},{"uid":"be09-94"},{"uid":"be09-2"},{"uid":"be09-34"},{"uid":"be09-44"},{"uid":"be09-46"},{"uid":"be09-36"}],"importedBy":[{"uid":"be09-6"}]},"be09-26":{"id":"/src/datahooks/ExecutePermissionHook.tsx","moduleParts":{"datahooks/ExecutePermissionHook.js":"be09-27"},"imported":[{"uid":"be09-87"},{"uid":"be09-88"},{"uid":"be09-2"}],"importedBy":[{"uid":"be09-16"}]},"be09-28":{"id":"/src/datahooks/ExecuteDataHook.tsx","moduleParts":{"datahooks/ExecuteDataHook.js":"be09-29"},"imported":[{"uid":"be09-87"}],"importedBy":[{"uid":"be09-18"}]},"be09-30":{"id":"/src/utils.ts","moduleParts":{"utils.js":"be09-31"},"imported":[{"uid":"be09-95"}],"importedBy":[{"uid":"be09-22"},{"uid":"be09-44"},{"uid":"be09-62"}]},"be09-32":{"id":"/src/content/components/styles.module.css","moduleParts":{"content/components/styles.module.css.js":"be09-33"},"imported":[{"uid":"be09-84"}],"importedBy":[{"uid":"be09-22"},{"uid":"be09-40"}]},"be09-34":{"id":"/src/layout/moveItems.ts","moduleParts":{"layout/moveItems.js":"be09-35"},"imported":[{"uid":"be09-86"},{"uid":"be09-95"},{"uid":"be09-48"}],"importedBy":[{"uid":"be09-24"}]},"be09-36":{"id":"/src/layout/components/styles.module.css","moduleParts":{"layout/components/styles.module.css.js":"be09-37"},"imported":[{"uid":"be09-84"}],"importedBy":[{"uid":"be09-24"},{"uid":"be09-46"},{"uid":"be09-78"}]},"be09-38":{"id":"/src/content/hooks/useBuildContentData.ts","moduleParts":{"content/hooks/useBuildContentData.js":"be09-39"},"imported":[{"uid":"be09-50"}],"importedBy":[{"uid":"be09-22"},{"uid":"be09-42"}]},"be09-40":{"id":"/src/content/components/Header.tsx","moduleParts":{"content/components/Header.js":"be09-41"},"imported":[{"uid":"be09-87"},{"uid":"be09-86"},{"uid":"be09-94"},{"uid":"be09-14"},{"uid":"be09-32"}],"importedBy":[{"uid":"be09-22"}]},"be09-42":{"id":"/src/content/components/SidebarItemWrapper.tsx","moduleParts":{"content/components/SidebarItemWrapper.js":"be09-43"},"imported":[{"uid":"be09-87"},{"uid":"be09-86"},{"uid":"be09-96"},{"uid":"be09-94"},{"uid":"be09-38"},{"uid":"be09-14"},{"uid":"be09-56"},{"uid":"be09-58"},{"uid":"be09-60"},{"uid":"be09-54"}],"importedBy":[{"uid":"be09-22"}]},"be09-44":{"id":"/src/layout/components/LayoutItemBar.tsx","moduleParts":{"layout/components/LayoutItemBar.js":"be09-45"},"imported":[{"uid":"be09-87"},{"uid":"be09-86"},{"uid":"be09-94"},{"uid":"be09-30"},{"uid":"be09-52"},{"uid":"be09-62"}],"importedBy":[{"uid":"be09-24"}]},"be09-46":{"id":"/src/layout/components/SecondaryMenuToggleItem.tsx","moduleParts":{"layout/components/SecondaryMenuToggleItem.js":"be09-47"},"imported":[{"uid":"be09-87"},{"uid":"be09-94"},{"uid":"be09-36"}],"importedBy":[{"uid":"be09-24"}]},"be09-48":{"id":"/src/layout/types.ts","moduleParts":{"layout/types.js":"be09-49"},"imported":[],"importedBy":[{"uid":"be09-34"},{"uid":"be09-62"}]},"be09-50":{"id":"/src/hooks/useBuildData.ts","moduleParts":{"hooks/useBuildData.js":"be09-51"},"imported":[{"uid":"be09-93"},{"uid":"be09-86"},{"uid":"be09-95"},{"uid":"be09-92"},{"uid":"be09-2"},{"uid":"be09-64"},{"uid":"be09-66"},{"uid":"be09-68"}],"importedBy":[{"uid":"be09-38"},{"uid":"be09-62"}]},"be09-52":{"id":"/src/layout/utils.tsx","moduleParts":{"layout/utils.js":"be09-53"},"imported":[{"uid":"be09-87"},{"uid":"be09-92"},{"uid":"be09-94"},{"uid":"be09-70"}],"importedBy":[{"uid":"be09-44"},{"uid":"be09-78"},{"uid":"be09-82"}]},"be09-54":{"id":"/src/content/components/PlainSidebarItem.tsx","moduleParts":{"content/components/PlainSidebarItem.js":"be09-55"},"imported":[{"uid":"be09-87"},{"uid":"be09-92"},{"uid":"be09-94"},{"uid":"be09-72"}],"importedBy":[{"uid":"be09-42"}]},"be09-56":{"id":"/src/content/components/ActionFormSidebarItemComponent.tsx","moduleParts":{"content/components/ActionFormSidebarItemComponent.js":"be09-57"},"imported":[{"uid":"be09-87"},{"uid":"be09-86"},{"uid":"be09-94"},{"uid":"be09-72"},{"uid":"be09-74"}],"importedBy":[{"uid":"be09-42"}]},"be09-58":{"id":"/src/content/components/ActionSidebarItemComponent.tsx","moduleParts":{"content/components/ActionSidebarItemComponent.js":"be09-59"},"imported":[{"uid":"be09-87"},{"uid":"be09-94"},{"uid":"be09-72"}],"importedBy":[{"uid":"be09-42"}]},"be09-60":{"id":"/src/content/components/CustomSidebarItemComponent.tsx","moduleParts":{"content/components/CustomSidebarItemComponent.js":"be09-61"},"imported":[{"uid":"be09-87"}],"importedBy":[{"uid":"be09-42"}]},"be09-62":{"id":"/src/layout/components/LayoutItemWrapper.tsx","moduleParts":{"layout/components/LayoutItemWrapper.js":"be09-63"},"imported":[{"uid":"be09-87"},{"uid":"be09-86"},{"uid":"be09-96"},{"uid":"be09-94"},{"uid":"be09-50"},{"uid":"be09-30"},{"uid":"be09-48"},{"uid":"be09-76"},{"uid":"be09-78"},{"uid":"be09-80"},{"uid":"be09-82"}],"importedBy":[{"uid":"be09-44"}]},"be09-64":{"id":"/src/hooks/useIsActiveRoute.ts","moduleParts":{"hooks/useIsActiveRoute.js":"be09-65"},"imported":[{"uid":"be09-97"},{"uid":"be09-70"}],"importedBy":[{"uid":"be09-50"}]},"be09-66":{"id":"/src/hooks/useSelectPermission.ts","moduleParts":{"hooks/useSelectPermission.js":"be09-67"},"imported":[{"uid":"be09-95"}],"importedBy":[{"uid":"be09-50"}]},"be09-68":{"id":"/src/hooks/useSelectState.ts","moduleParts":{"hooks/useSelectState.js":"be09-69"},"imported":[{"uid":"be09-95"}],"importedBy":[{"uid":"be09-50"}]},"be09-70":{"id":"/src/commonItems.ts","moduleParts":{"commonItems.js":"be09-71"},"imported":[],"importedBy":[{"uid":"be09-52"},{"uid":"be09-64"}]},"be09-72":{"id":"/src/content/utils.tsx","moduleParts":{"content/utils.js":"be09-73"},"imported":[{"uid":"be09-87"},{"uid":"be09-94"}],"importedBy":[{"uid":"be09-56"},{"uid":"be09-58"},{"uid":"be09-54"}]},"be09-74":{"id":"/src/content/components/ActionForm.tsx","moduleParts":{"content/components/ActionForm.js":"be09-75"},"imported":[{"uid":"be09-87"},{"uid":"be09-98"},{"uid":"be09-86"},{"uid":"be09-94"}],"importedBy":[{"uid":"be09-56"}]},"be09-76":{"id":"/src/layout/components/CustomLayoutItemComponent.tsx","moduleParts":{"layout/components/CustomLayoutItemComponent.js":"be09-77"},"imported":[{"uid":"be09-87"}],"importedBy":[{"uid":"be09-62"}]},"be09-78":{"id":"/src/layout/components/DropdownItem.tsx","moduleParts":{"layout/components/DropdownItem.js":"be09-79"},"imported":[{"uid":"be09-87"},{"uid":"be09-86"},{"uid":"be09-94"},{"uid":"be09-52"},{"uid":"be09-36"}],"importedBy":[{"uid":"be09-62"}]},"be09-80":{"id":"/src/layout/components/MenuItem.tsx","moduleParts":{"layout/components/MenuItem.js":"be09-81"},"imported":[{"uid":"be09-87"},{"uid":"be09-94"}],"importedBy":[{"uid":"be09-62"}]},"be09-82":{"id":"/src/layout/components/PlainItem.tsx","moduleParts":{"layout/components/PlainItem.js":"be09-83"},"imported":[{"uid":"be09-87"},{"uid":"be09-94"},{"uid":"be09-52"}],"importedBy":[{"uid":"be09-62"}]},"be09-84":{"id":"/home/darkadept/dev/imperium/node_modules/style-inject/dist/style-inject.es.js","moduleParts":{"external/style-inject/dist/style-inject.es.js":"be09-85"},"imported":[],"importedBy":[{"uid":"be09-36"},{"uid":"be09-32"}]},"be09-86":{"id":"debug","moduleParts":{},"imported":[],"importedBy":[{"uid":"be09-10"},{"uid":"be09-6"},{"uid":"be09-8"},{"uid":"be09-18"},{"uid":"be09-16"},{"uid":"be09-20"},{"uid":"be09-24"},{"uid":"be09-22"},{"uid":"be09-34"},{"uid":"be09-44"},{"uid":"be09-40"},{"uid":"be09-42"},{"uid":"be09-62"},{"uid":"be09-50"},{"uid":"be09-56"},{"uid":"be09-78"},{"uid":"be09-74"}],"isExternal":true},"be09-87":{"id":"react","moduleParts":{},"imported":[],"importedBy":[{"uid":"be09-10"},{"uid":"be09-6"},{"uid":"be09-8"},{"uid":"be09-18"},{"uid":"be09-16"},{"uid":"be09-20"},{"uid":"be09-24"},{"uid":"be09-22"},{"uid":"be09-28"},{"uid":"be09-26"},{"uid":"be09-44"},{"uid":"be09-46"},{"uid":"be09-40"},{"uid":"be09-42"},{"uid":"be09-52"},{"uid":"be09-62"},{"uid":"be09-56"},{"uid":"be09-58"},{"uid":"be09-60"},{"uid":"be09-54"},{"uid":"be09-76"},{"uid":"be09-78"},{"uid":"be09-80"},{"uid":"be09-82"},{"uid":"be09-72"},{"uid":"be09-74"}],"isExternal":true},"be09-88":{"id":"react-redux","moduleParts":{},"imported":[],"importedBy":[{"uid":"be09-10"},{"uid":"be09-20"},{"uid":"be09-22"},{"uid":"be09-26"}],"isExternal":true},"be09-89":{"id":"react-responsive","moduleParts":{},"imported":[],"importedBy":[{"uid":"be09-10"}],"isExternal":true},"be09-90":{"id":"@imperium/state","moduleParts":{},"imported":[],"importedBy":[{"uid":"be09-2"}],"isExternal":true},"be09-91":{"id":"@reduxjs/toolkit","moduleParts":{},"imported":[],"importedBy":[{"uid":"be09-2"}],"isExternal":true},"be09-92":{"id":"react-router-dom","moduleParts":{},"imported":[],"importedBy":[{"uid":"be09-18"},{"uid":"be09-52"},{"uid":"be09-50"},{"uid":"be09-54"}],"isExternal":true},"be09-93":{"id":"@imperium/auth-client","moduleParts":{},"imported":[],"importedBy":[{"uid":"be09-20"},{"uid":"be09-50"}],"isExternal":true},"be09-94":{"id":"semantic-ui-react","moduleParts":{},"imported":[],"importedBy":[{"uid":"be09-24"},{"uid":"be09-44"},{"uid":"be09-46"},{"uid":"be09-40"},{"uid":"be09-42"},{"uid":"be09-52"},{"uid":"be09-62"},{"uid":"be09-56"},{"uid":"be09-58"},{"uid":"be09-54"},{"uid":"be09-78"},{"uid":"be09-80"},{"uid":"be09-82"},{"uid":"be09-72"},{"uid":"be09-74"}],"isExternal":true},"be09-95":{"id":"lodash-es","moduleParts":{},"imported":[],"importedBy":[{"uid":"be09-22"},{"uid":"be09-34"},{"uid":"be09-30"},{"uid":"be09-50"},{"uid":"be09-66"},{"uid":"be09-68"}],"isExternal":true},"be09-96":{"id":"mingo","moduleParts":{},"imported":[],"importedBy":[{"uid":"be09-42"},{"uid":"be09-62"}],"isExternal":true},"be09-97":{"id":"react-router","moduleParts":{},"imported":[],"importedBy":[{"uid":"be09-64"}],"isExternal":true},"be09-98":{"id":"@thx/controls","moduleParts":{},"imported":[],"importedBy":[{"uid":"be09-74"}],"isExternal":true}},"env":{"rollup":"2.70.1"},"options":{"gzip":true,"brotli":true,"sourcemap":false}};
|
|
2673
2673
|
|
|
2674
2674
|
const run = () => {
|
|
2675
2675
|
const width = window.innerWidth;
|
package/dist/stats.txt
CHANGED
|
@@ -1,83 +1,83 @@
|
|
|
1
1
|
-----------------------------
|
|
2
2
|
Rollup File Analysis
|
|
3
3
|
-----------------------------
|
|
4
|
-
bundle size: 32.
|
|
5
|
-
original size: 52.
|
|
6
|
-
code reduction:
|
|
4
|
+
bundle size: 32.208 KB
|
|
5
|
+
original size: 52.6 KB
|
|
6
|
+
code reduction: 38.77 %
|
|
7
7
|
module count: 43
|
|
8
8
|
|
|
9
9
|
/src/layout/components/styles.module.css
|
|
10
|
-
████░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 9.
|
|
10
|
+
████░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 9.86 % (3.176 KB)
|
|
11
11
|
/src/layout/components/Layout.tsx
|
|
12
|
-
████░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 8.
|
|
12
|
+
████░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 8.19 % (2.638 KB)
|
|
13
13
|
/src/content/components/ContentComponent.tsx
|
|
14
|
-
███░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 6.
|
|
14
|
+
███░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 6.12 % (1.97 KB)
|
|
15
15
|
/src/layout/withLayout.tsx
|
|
16
|
-
███░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 6.
|
|
16
|
+
███░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 6.07 % (1.955 KB)
|
|
17
17
|
/src/content/components/ActionForm.tsx
|
|
18
|
-
██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 5.
|
|
19
|
-
/src/layout/components/LayoutItemWrapper.tsx
|
|
20
|
-
██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 4.69 % (1.503 KB)
|
|
18
|
+
██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 5.18 % (1.667 KB)
|
|
21
19
|
/src/content/components/styles.module.css
|
|
22
|
-
██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
|
|
20
|
+
██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 5.09 % (1.639 KB)
|
|
21
|
+
/src/layout/components/LayoutItemWrapper.tsx
|
|
22
|
+
██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 4.67 % (1.503 KB)
|
|
23
23
|
/src/layout/moveItems.ts
|
|
24
|
-
██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 4.
|
|
24
|
+
██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 4.35 % (1.401 KB)
|
|
25
25
|
/src/content/components/SidebarItemWrapper.tsx
|
|
26
|
-
█░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 3.
|
|
26
|
+
█░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 3.69 % (1.189 KB)
|
|
27
27
|
/src/layout/components/DropdownItem.tsx
|
|
28
|
-
█░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 3.
|
|
28
|
+
█░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 3.66 % (1.179 KB)
|
|
29
29
|
/src/datahooks/DataHooks.tsx
|
|
30
|
-
█░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 3.
|
|
30
|
+
█░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 3.28 % (1.058 KB)
|
|
31
31
|
/src/content/components/Header.tsx
|
|
32
|
-
█░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 3.
|
|
32
|
+
█░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 3.24 % (1.042 KB)
|
|
33
33
|
/src/layout/utils.tsx
|
|
34
|
-
█░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 2.
|
|
34
|
+
█░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 2.84 % (915 Bytes)
|
|
35
35
|
/src/hooks/useBuildData.ts
|
|
36
|
-
█░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 2.
|
|
36
|
+
█░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 2.44 % (785 Bytes)
|
|
37
37
|
/src/layout/components/LayoutItemBar.tsx
|
|
38
|
-
█░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 2.
|
|
38
|
+
█░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 2.25 % (726 Bytes)
|
|
39
39
|
/src/datahooks/Permissions.tsx
|
|
40
|
-
█░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 2.
|
|
40
|
+
█░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 2.06 % (663 Bytes)
|
|
41
41
|
/src/content/components/ActionFormSidebarItemComponent.tsx
|
|
42
|
-
█░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 2.
|
|
42
|
+
█░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 2.06 % (663 Bytes)
|
|
43
43
|
/src/content/createPages.tsx
|
|
44
|
-
█░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 2.
|
|
45
|
-
/home/
|
|
46
|
-
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.
|
|
44
|
+
█░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 2.02 % (650 Bytes)
|
|
45
|
+
/home/darkadept/dev/imperium/node_modules/style-inject/dist/style-inject.es.js
|
|
46
|
+
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.97 % (636 Bytes)
|
|
47
47
|
/src/content/utils.tsx
|
|
48
|
-
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.
|
|
48
|
+
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.95 % (628 Bytes)
|
|
49
49
|
/src/hooks/useIsActiveRoute.ts
|
|
50
50
|
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.6 % (514 Bytes)
|
|
51
51
|
/src/state.ts
|
|
52
|
-
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.
|
|
52
|
+
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.52 % (489 Bytes)
|
|
53
53
|
/src/layout/hooks/useMobileLayout.ts
|
|
54
|
-
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.
|
|
54
|
+
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.38 % (445 Bytes)
|
|
55
55
|
/src/content/types.ts
|
|
56
|
-
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.
|
|
56
|
+
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.2 % (388 Bytes)
|
|
57
57
|
/src/content/components/ActionSidebarItemComponent.tsx
|
|
58
|
-
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.
|
|
58
|
+
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.12 % (362 Bytes)
|
|
59
59
|
/src/datahooks/ExecutePermissionHook.tsx
|
|
60
|
-
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.
|
|
60
|
+
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.07 % (345 Bytes)
|
|
61
61
|
/src/content/components/PlainSidebarItem.tsx
|
|
62
62
|
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.07 % (344 Bytes)
|
|
63
63
|
/src/datahooks/PermissionHooks.tsx
|
|
64
|
-
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.
|
|
64
|
+
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.05 % (339 Bytes)
|
|
65
65
|
/src/layout/components/SecondaryMenuToggleItem.tsx
|
|
66
|
-
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.
|
|
66
|
+
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.04 % (335 Bytes)
|
|
67
67
|
/src/hooks/useSelectState.ts
|
|
68
|
-
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.
|
|
68
|
+
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.01 % (326 Bytes)
|
|
69
69
|
/src/hooks/useSelectPermission.ts
|
|
70
|
-
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.
|
|
70
|
+
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.91 % (294 Bytes)
|
|
71
71
|
/src/content/hooks/useBuildContentData.ts
|
|
72
72
|
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.8 % (257 Bytes)
|
|
73
73
|
/src/layout/components/MenuItem.tsx
|
|
74
|
-
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.
|
|
74
|
+
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.78 % (252 Bytes)
|
|
75
75
|
/src/layout/components/PlainItem.tsx
|
|
76
76
|
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.76 % (244 Bytes)
|
|
77
77
|
/src/commonItems.ts
|
|
78
78
|
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.63 % (203 Bytes)
|
|
79
79
|
/src/layout/types.ts
|
|
80
|
-
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.
|
|
80
|
+
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.59 % (191 Bytes)
|
|
81
81
|
/src/index.ts
|
|
82
82
|
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.57 % (184 Bytes)
|
|
83
83
|
/src/utils.ts
|
|
@@ -89,6 +89,6 @@ module count: 43
|
|
|
89
89
|
/src/content/components/CustomSidebarItemComponent.tsx
|
|
90
90
|
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.26 % (83 Bytes)
|
|
91
91
|
/src/layout/components/CustomLayoutItemComponent.tsx
|
|
92
|
-
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.
|
|
92
|
+
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.25 % (82 Bytes)
|
|
93
93
|
/src/content/dividerSidebarItem.ts
|
|
94
94
|
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.18 % (59 Bytes)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@imperium/layout",
|
|
3
|
-
"version": "11.1.
|
|
3
|
+
"version": "11.1.1",
|
|
4
4
|
"description": "Imperium Layout package",
|
|
5
5
|
"bugs": {
|
|
6
6
|
"url": "https://github.com/darkadept/imperium/issues"
|
|
@@ -60,5 +60,5 @@
|
|
|
60
60
|
"publishConfig": {
|
|
61
61
|
"access": "public"
|
|
62
62
|
},
|
|
63
|
-
"gitHead": "
|
|
63
|
+
"gitHead": "b0fd9e1da0924fbc914fbe0994f6fa1ea7470ab8"
|
|
64
64
|
}
|