@imperium/layout 10.4.10 → 10.4.12-alpha.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.
- package/dist/esm/datahooks/DataHooks.js +8 -9
- package/dist/esm/datahooks/DataHooks.js.map +1 -1
- package/dist/esm/datahooks/ExecuteDataHook.js +2 -2
- package/dist/esm/datahooks/ExecuteDataHook.js.map +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/layout/components/Layout.js +1 -1
- package/dist/esm/layout/components/Layout.js.map +1 -1
- package/dist/stats.html +1 -1
- package/dist/types/datahooks/ExecuteDataHook.d.ts +2 -1
- package/dist/types/datahooks/types.d.ts +6 -2
- package/dist/types/index.d.ts +1 -0
- package/package.json +5 -3
- package/dist/stats.txt +0 -94
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import React, { Fragment } from 'react';
|
|
2
2
|
import debug from 'debug';
|
|
3
|
-
import compose from 'lodash/fp/compose.js';
|
|
4
3
|
import { useLocation } from 'react-router-dom';
|
|
5
4
|
import { ExecuteDataHook } from './ExecuteDataHook.js';
|
|
6
5
|
|
|
@@ -11,14 +10,12 @@ function DataHooks({ dataHooks }) {
|
|
|
11
10
|
if (typeof hook === "function") {
|
|
12
11
|
return /* @__PURE__ */ React.createElement(ExecuteDataHook, {
|
|
13
12
|
key: index,
|
|
14
|
-
dataHook: hook
|
|
13
|
+
dataHook: hook,
|
|
14
|
+
isMatching: true
|
|
15
15
|
});
|
|
16
16
|
}
|
|
17
|
-
const
|
|
18
|
-
const
|
|
19
|
-
if (routeParams == null) {
|
|
20
|
-
return null;
|
|
21
|
-
}
|
|
17
|
+
const routeParams = hook.routeMatch(pathname);
|
|
18
|
+
const isMatching = !(routeParams === null || routeParams === void 0);
|
|
22
19
|
if (Array.isArray(hook.dataHook)) {
|
|
23
20
|
return /* @__PURE__ */ React.createElement(Fragment, {
|
|
24
21
|
key: index
|
|
@@ -26,14 +23,16 @@ function DataHooks({ dataHooks }) {
|
|
|
26
23
|
return /* @__PURE__ */ React.createElement(ExecuteDataHook, {
|
|
27
24
|
key: index2,
|
|
28
25
|
dataHook: dh,
|
|
29
|
-
routeParams
|
|
26
|
+
routeParams,
|
|
27
|
+
isMatching
|
|
30
28
|
});
|
|
31
29
|
}));
|
|
32
30
|
}
|
|
33
31
|
return /* @__PURE__ */ React.createElement(ExecuteDataHook, {
|
|
34
32
|
dataHook: hook.dataHook,
|
|
35
33
|
key: index,
|
|
36
|
-
routeParams
|
|
34
|
+
routeParams,
|
|
35
|
+
isMatching
|
|
37
36
|
});
|
|
38
37
|
}));
|
|
39
38
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DataHooks.js","sources":["../../../src/datahooks/DataHooks.tsx"],"sourcesContent":["import debug from 'debug';\nimport
|
|
1
|
+
{"version":3,"file":"DataHooks.js","sources":["../../../src/datahooks/DataHooks.tsx"],"sourcesContent":["import debug from 'debug';\nimport {Fragment} from 'react';\nimport {useLocation} from 'react-router-dom';\nimport {ExecuteDataHook} from './ExecuteDataHook';\nimport type {DataHookItem} from './types';\n\nconst d = debug('imperium.layout.datahooks.DataHooks');\n\ninterface DataHooksProps {\n\tdataHooks: DataHookItem[];\n}\n\n/**\n * Renders layout data hooks. These hooks should return nothing. All interaction should be in side effects, usually retrieving data and setting Redux state.\n * @param dataHooks\n * @constructor\n */\nexport function DataHooks({dataHooks}: DataHooksProps) {\n\tconst {pathname} = useLocation();\n\n\treturn (\n\t\t<>\n\t\t\t{dataHooks.map((hook, index) => {\n\t\t\t\tif (typeof hook === 'function') {\n\t\t\t\t\t// eslint-disable-next-line react/no-array-index-key\n\t\t\t\t\treturn <ExecuteDataHook key={index} dataHook={hook} isMatching />;\n\t\t\t\t}\n\t\t\t\tconst routeParams = hook.routeMatch(pathname);\n\t\t\t\tconst isMatching = !(routeParams === null || routeParams === undefined);\n\t\t\t\tif (Array.isArray(hook.dataHook)) {\n\t\t\t\t\treturn (\n\t\t\t\t\t\t// eslint-disable-next-line react/no-array-index-key\n\t\t\t\t\t\t<Fragment key={index}>\n\t\t\t\t\t\t\t{hook.dataHook.map((dh, index2) => {\n\t\t\t\t\t\t\t\t// eslint-disable-next-line react/no-array-index-key\n\t\t\t\t\t\t\t\treturn <ExecuteDataHook key={index2} dataHook={dh} routeParams={routeParams} isMatching={isMatching} />;\n\t\t\t\t\t\t\t})}\n\t\t\t\t\t\t</Fragment>\n\t\t\t\t\t);\n\t\t\t\t}\n\t\t\t\t// eslint-disable-next-line react/no-array-index-key\n\t\t\t\treturn <ExecuteDataHook dataHook={hook.dataHook} key={index} routeParams={routeParams} isMatching={isMatching} />;\n\t\t\t})}\n\t\t</>\n\t);\n}\n"],"names":[],"mappings":";;;;;AAMU,MAAM,qCAAqC,EAAA;AAW9C,SAAA,SAAA,CAAmB,EAAC,SAA4B,EAAA,EAAA;AACtD,EAAM,MAAA,EAAC,aAAY,WAAY,EAAA,CAAA;AAE/B,EAAA,uBAEG,KAAA,CAAA,aAAA,CAAA,KAAA,CAAA,QAAA,EAAA,IAAA,EAAA,SAAA,CAAU,GAAI,CAAA,CAAC,MAAM,KAAU,KAAA;AAC/B,IAAI,IAAA,OAAO,SAAS,UAAY,EAAA;AAE/B,MAAA,uBAAQ,KAAA,CAAA,aAAA,CAAA,eAAA,EAAA;AAAA,QAAgB,GAAK,EAAA,KAAA;AAAA,QAAO,QAAU,EAAA,IAAA;AAAA,QAAM,UAAU,EAAA,IAAA;AAAA,OAAC,CAAA,CAAA;AAAA,KAChE;AACA,IAAM,MAAA,WAAA,GAAc,IAAK,CAAA,UAAA,CAAW,QAAQ,CAAA,CAAA;AAC5C,IAAA,MAAM,UAAa,GAAA,EAAkB,WAAA,KAAA,IAAA,IAAQ,WAAgB,KAAA,KAAA,CAAA,CAAA,CAAA;AAC7D,IAAA,IAAI,KAAM,CAAA,OAAA,CAAQ,IAAK,CAAA,QAAQ,CAAG,EAAA;AACjC,MAAA,uBAEE,KAAA,CAAA,aAAA,CAAA,QAAA,EAAA;AAAA,QAAS,GAAK,EAAA,KAAA;AAAA,OAAA,EACb,IAAK,CAAA,QAAA,CAAS,GAAI,CAAA,CAAC,IAAI,MAAW,KAAA;AAElC,QAAA,uBAAQ,KAAA,CAAA,aAAA,CAAA,eAAA,EAAA;AAAA,UAAgB,GAAK,EAAA,MAAA;AAAA,UAAQ,QAAU,EAAA,EAAA;AAAA,UAAI,WAAA;AAAA,UAA0B,UAAA;AAAA,SAAwB,CAAA,CAAA;AAAA,OACrG,CACF,CAAA,CAAA;AAAA,KAEF;AAEA,IAAA,uBAAQ,KAAA,CAAA,aAAA,CAAA,eAAA,EAAA;AAAA,MAAgB,UAAU,IAAK,CAAA,QAAA;AAAA,MAAU,GAAK,EAAA,KAAA;AAAA,MAAO,WAAA;AAAA,MAA0B,UAAA;AAAA,KAAwB,CAAA,CAAA;AAAA,GAC/G,CACF,CAAA,CAAA;AAEF;;;;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ExecuteDataHook.js","sources":["../../../src/datahooks/ExecuteDataHook.tsx"],"sourcesContent":["import type {DataHook} from './types';\n\ninterface ExecuteDataHookProps {\n\tdataHook: DataHook;\n\trouteParams?: any;\n}\n\nexport function ExecuteDataHook({dataHook, routeParams}: ExecuteDataHookProps) {\n\tdataHook(routeParams);\n\treturn null;\n}\n"],"names":[],"mappings":";;
|
|
1
|
+
{"version":3,"file":"ExecuteDataHook.js","sources":["../../../src/datahooks/ExecuteDataHook.tsx"],"sourcesContent":["import type {DataHook} from './types';\n\ninterface ExecuteDataHookProps {\n\tdataHook: DataHook;\n\trouteParams?: any;\n\tisMatching: boolean;\n}\n\nexport function ExecuteDataHook({dataHook, routeParams, isMatching}: ExecuteDataHookProps) {\n\tdataHook({isMatching, routeParams});\n\treturn null;\n}\n"],"names":[],"mappings":";;AAQgC,SAAA,eAAA,CAAA,EAAC,QAAU,EAAA,WAAA,EAAa,UAAmC,EAAA,EAAA;AAC1F,EAAS,QAAA,CAAA,EAAC,UAAY,EAAA,WAAA,EAAY,CAAA,CAAA;AAClC,EAAO,OAAA,IAAA,CAAA;AACR;;;;"}
|
package/dist/esm/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":["../../src/index.ts"],"sourcesContent":["import type {ImperiumStateClientModule} from '@imperium/state';\nimport {useMobileLayout} from './layout/hooks/useMobileLayout';\nimport {withLayout} from './layout/withLayout';\nimport {state} from './state';\nimport type {ImperiumLayoutClientModule} from './types';\n\nexport function layoutClientModule(): ImperiumStateClientModule & ImperiumLayoutClientModule {\n\treturn {\n\t\tname: '@imperium/layout',\n\t\torder: 30,\n\t\thocs: [withLayout],\n\t\tstate,\n\t\tlayout: {\n\t\t\tdataHooks: [useMobileLayout],\n\t\t},\n\t};\n}\n\nexport type {LayoutData} from './layout/types';\nexport {useLayoutState, actions as layoutActions} from './state';\nexport {createPages} from './content/createPages';\nexport type {ImperiumLayoutClientModule} from './types';\nexport {dividerSidebarItem} from './content/dividerSidebarItem';\n"],"names":[],"mappings":";;;;;;;AAM6F,SAAA,kBAAA,GAAA;AAC5F,EAAO,OAAA;AAAA,IACN,IAAM,EAAA,kBAAA;AAAA,IACN,KAAO,EAAA,EAAA;AAAA,IACP,IAAA,EAAM,CAAC,UAAU,CAAA;AAAA,IACjB,KAAA;AAAA,IACA,MAAQ,EAAA;AAAA,MACP,SAAA,EAAW,CAAC,eAAe,CAAA;AAAA,KAC5B;AAAA,GACD,CAAA;AACD;;;;"}
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../../src/index.ts"],"sourcesContent":["import type {ImperiumStateClientModule} from '@imperium/state';\nimport {useMobileLayout} from './layout/hooks/useMobileLayout';\nimport {withLayout} from './layout/withLayout';\nimport {state} from './state';\nimport type {ImperiumLayoutClientModule} from './types';\n\nexport function layoutClientModule(): ImperiumStateClientModule & ImperiumLayoutClientModule {\n\treturn {\n\t\tname: '@imperium/layout',\n\t\torder: 30,\n\t\thocs: [withLayout],\n\t\tstate,\n\t\tlayout: {\n\t\t\tdataHooks: [useMobileLayout],\n\t\t},\n\t};\n}\n\nexport type {LayoutData} from './layout/types';\nexport {useLayoutState, actions as layoutActions} from './state';\nexport {createPages} from './content/createPages';\nexport type {ImperiumLayoutClientModule} from './types';\nexport type {DataHookParams} from './datahooks/types';\nexport {dividerSidebarItem} from './content/dividerSidebarItem';\n"],"names":[],"mappings":";;;;;;;AAM6F,SAAA,kBAAA,GAAA;AAC5F,EAAO,OAAA;AAAA,IACN,IAAM,EAAA,kBAAA;AAAA,IACN,KAAO,EAAA,EAAA;AAAA,IACP,IAAA,EAAM,CAAC,UAAU,CAAA;AAAA,IACjB,KAAA;AAAA,IACA,MAAQ,EAAA;AAAA,MACP,SAAA,EAAW,CAAC,eAAe,CAAA;AAAA,KAC5B;AAAA,GACD,CAAA;AACD;;;;"}
|
|
@@ -10,7 +10,7 @@ import styles from './styles.module.css.js';
|
|
|
10
10
|
debug("imperium.layout.components.Layout");
|
|
11
11
|
function Layout({ footer, primaryMenu, statusbar, secondaryMenu, children }) {
|
|
12
12
|
const { isMobile } = useLayoutState();
|
|
13
|
-
const [menuOpen, setMenuOpen] = useState(
|
|
13
|
+
const [menuOpen, setMenuOpen] = useState(false);
|
|
14
14
|
const primaryMenuToggle = {
|
|
15
15
|
stickOnMobile: true,
|
|
16
16
|
weight: -19999,
|
|
@@ -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(
|
|
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,8BAAA;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":"85dd-1"}]},{"name":"state.js","children":[{"name":"src/state.ts","uid":"85dd-3"}]},{"name":"content/dividerSidebarItem.js","children":[{"name":"src/content/dividerSidebarItem.ts","uid":"85dd-5"}]},{"name":"layout/withLayout.js","children":[{"name":"src/layout/withLayout.tsx","uid":"85dd-7"}]},{"name":"content/createPages.js","children":[{"name":"src/content/createPages.tsx","uid":"85dd-9"}]},{"name":"layout/hooks/useMobileLayout.js","children":[{"name":"src/layout/hooks/useMobileLayout.ts","uid":"85dd-11"}]},{"name":"types.js","children":[{"name":"src/types.ts","uid":"85dd-13"}]},{"name":"content/types.js","children":[{"name":"src/content/types.ts","uid":"85dd-15"}]},{"name":"datahooks/DataHooks.js","children":[{"name":"src/datahooks/DataHooks.tsx","uid":"85dd-17"}]},{"name":"datahooks/PermissionHooks.js","children":[{"name":"src/datahooks/PermissionHooks.tsx","uid":"85dd-19"}]},{"name":"datahooks/Permissions.js","children":[{"name":"src/datahooks/Permissions.tsx","uid":"85dd-21"}]},{"name":"layout/components/Layout.js","children":[{"name":"src/layout/components/Layout.tsx","uid":"85dd-23"}]},{"name":"content/components/ContentComponent.js","children":[{"name":"src/content/components/ContentComponent.tsx","uid":"85dd-25"}]},{"name":"datahooks/ExecuteDataHook.js","children":[{"name":"src/datahooks/ExecuteDataHook.tsx","uid":"85dd-27"}]},{"name":"datahooks/ExecutePermissionHook.js","children":[{"name":"src/datahooks/ExecutePermissionHook.tsx","uid":"85dd-29"}]},{"name":"utils.js","children":[{"name":"src/utils.ts","uid":"85dd-31"}]},{"name":"layout/moveItems.js","children":[{"name":"src/layout/moveItems.ts","uid":"85dd-33"}]},{"name":"layout/components/styles.module.css.js","children":[{"name":"src/layout/components/styles.module.css","uid":"85dd-35"}]},{"name":"content/components/styles.module.css.js","children":[{"name":"src/content/components/styles.module.css","uid":"85dd-37"}]},{"name":"layout/components/LayoutItemBar.js","children":[{"name":"src/layout/components/LayoutItemBar.tsx","uid":"85dd-39"}]},{"name":"layout/components/SecondaryMenuToggleItem.js","children":[{"name":"src/layout/components/SecondaryMenuToggleItem.tsx","uid":"85dd-41"}]},{"name":"content/hooks/useBuildContentData.js","children":[{"name":"src/content/hooks/useBuildContentData.ts","uid":"85dd-43"}]},{"name":"content/components/Header.js","children":[{"name":"src/content/components/Header.tsx","uid":"85dd-45"}]},{"name":"content/components/SidebarItemWrapper.js","children":[{"name":"src/content/components/SidebarItemWrapper.tsx","uid":"85dd-47"}]},{"name":"layout/types.js","children":[{"name":"src/layout/types.ts","uid":"85dd-49"}]},{"name":"layout/utils.js","children":[{"name":"src/layout/utils.tsx","uid":"85dd-51"}]},{"name":"hooks/useBuildData.js","children":[{"name":"src/hooks/useBuildData.ts","uid":"85dd-53"}]},{"name":"layout/components/LayoutItemWrapper.js","children":[{"name":"src/layout/components/LayoutItemWrapper.tsx","uid":"85dd-55"}]},{"name":"content/components/ActionFormSidebarItemComponent.js","children":[{"name":"src/content/components/ActionFormSidebarItemComponent.tsx","uid":"85dd-57"}]},{"name":"content/components/ActionSidebarItemComponent.js","children":[{"name":"src/content/components/ActionSidebarItemComponent.tsx","uid":"85dd-59"}]},{"name":"content/components/CustomSidebarItemComponent.js","children":[{"name":"src/content/components/CustomSidebarItemComponent.tsx","uid":"85dd-61"}]},{"name":"content/components/PlainSidebarItem.js","children":[{"name":"src/content/components/PlainSidebarItem.tsx","uid":"85dd-63"}]},{"name":"commonItems.js","children":[{"name":"src/commonItems.ts","uid":"85dd-65"}]},{"name":"hooks/useIsActiveRoute.js","children":[{"name":"src/hooks/useIsActiveRoute.ts","uid":"85dd-67"}]},{"name":"hooks/useSelectPermission.js","children":[{"name":"src/hooks/useSelectPermission.ts","uid":"85dd-69"}]},{"name":"hooks/useSelectState.js","children":[{"name":"src/hooks/useSelectState.ts","uid":"85dd-71"}]},{"name":"content/utils.js","children":[{"name":"src/content/utils.tsx","uid":"85dd-73"}]},{"name":"layout/components/CustomLayoutItemComponent.js","children":[{"name":"src/layout/components/CustomLayoutItemComponent.tsx","uid":"85dd-75"}]},{"name":"layout/components/DropdownItem.js","children":[{"name":"src/layout/components/DropdownItem.tsx","uid":"85dd-77"}]},{"name":"layout/components/MenuItem.js","children":[{"name":"src/layout/components/MenuItem.tsx","uid":"85dd-79"}]},{"name":"layout/components/PlainItem.js","children":[{"name":"src/layout/components/PlainItem.tsx","uid":"85dd-81"}]},{"name":"content/components/ActionForm.js","children":[{"name":"src/content/components/ActionForm.tsx","uid":"85dd-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":"85dd-85"}]}],"isRoot":true},"nodeParts":{"85dd-1":{"renderedLength":184,"gzipLength":151,"brotliLength":131,"mainUid":"85dd-0"},"85dd-3":{"renderedLength":489,"gzipLength":251,"brotliLength":217,"mainUid":"85dd-2"},"85dd-5":{"renderedLength":59,"gzipLength":71,"brotliLength":63,"mainUid":"85dd-4"},"85dd-7":{"renderedLength":1955,"gzipLength":564,"brotliLength":488,"mainUid":"85dd-6"},"85dd-9":{"renderedLength":650,"gzipLength":300,"brotliLength":268,"mainUid":"85dd-8"},"85dd-11":{"renderedLength":445,"gzipLength":266,"brotliLength":229,"mainUid":"85dd-10"},"85dd-13":{"renderedLength":121,"gzipLength":110,"brotliLength":90,"mainUid":"85dd-12"},"85dd-15":{"renderedLength":315,"gzipLength":141,"brotliLength":99,"mainUid":"85dd-14"},"85dd-17":{"renderedLength":1053,"gzipLength":384,"brotliLength":336,"mainUid":"85dd-16"},"85dd-19":{"renderedLength":339,"gzipLength":201,"brotliLength":164,"mainUid":"85dd-18"},"85dd-21":{"renderedLength":663,"gzipLength":328,"brotliLength":285,"mainUid":"85dd-20"},"85dd-23":{"renderedLength":2629,"gzipLength":741,"brotliLength":631,"mainUid":"85dd-22"},"85dd-25":{"renderedLength":1970,"gzipLength":651,"brotliLength":565,"mainUid":"85dd-24"},"85dd-27":{"renderedLength":95,"gzipLength":91,"brotliLength":75,"mainUid":"85dd-26"},"85dd-29":{"renderedLength":345,"gzipLength":206,"brotliLength":172,"mainUid":"85dd-28"},"85dd-31":{"renderedLength":145,"gzipLength":117,"brotliLength":116,"mainUid":"85dd-30"},"85dd-33":{"renderedLength":1401,"gzipLength":377,"brotliLength":347,"mainUid":"85dd-32"},"85dd-35":{"renderedLength":3176,"gzipLength":933,"brotliLength":762,"mainUid":"85dd-34"},"85dd-37":{"renderedLength":1469,"gzipLength":528,"brotliLength":431,"mainUid":"85dd-36"},"85dd-39":{"renderedLength":726,"gzipLength":295,"brotliLength":252,"mainUid":"85dd-38"},"85dd-41":{"renderedLength":335,"gzipLength":222,"brotliLength":169,"mainUid":"85dd-40"},"85dd-43":{"renderedLength":257,"gzipLength":158,"brotliLength":122,"mainUid":"85dd-42"},"85dd-45":{"renderedLength":556,"gzipLength":286,"brotliLength":215,"mainUid":"85dd-44"},"85dd-47":{"renderedLength":1189,"gzipLength":399,"brotliLength":314,"mainUid":"85dd-46"},"85dd-49":{"renderedLength":191,"gzipLength":111,"brotliLength":89,"mainUid":"85dd-48"},"85dd-51":{"renderedLength":915,"gzipLength":392,"brotliLength":328,"mainUid":"85dd-50"},"85dd-53":{"renderedLength":785,"gzipLength":362,"brotliLength":321,"mainUid":"85dd-52"},"85dd-55":{"renderedLength":1503,"gzipLength":488,"brotliLength":399,"mainUid":"85dd-54"},"85dd-57":{"renderedLength":663,"gzipLength":344,"brotliLength":277,"mainUid":"85dd-56"},"85dd-59":{"renderedLength":362,"gzipLength":244,"brotliLength":185,"mainUid":"85dd-58"},"85dd-61":{"renderedLength":83,"gzipLength":96,"brotliLength":66,"mainUid":"85dd-60"},"85dd-63":{"renderedLength":344,"gzipLength":235,"brotliLength":186,"mainUid":"85dd-62"},"85dd-65":{"renderedLength":203,"gzipLength":136,"brotliLength":97,"mainUid":"85dd-64"},"85dd-67":{"renderedLength":514,"gzipLength":229,"brotliLength":187,"mainUid":"85dd-66"},"85dd-69":{"renderedLength":294,"gzipLength":154,"brotliLength":114,"mainUid":"85dd-68"},"85dd-71":{"renderedLength":326,"gzipLength":176,"brotliLength":141,"mainUid":"85dd-70"},"85dd-73":{"renderedLength":628,"gzipLength":259,"brotliLength":219,"mainUid":"85dd-72"},"85dd-75":{"renderedLength":82,"gzipLength":95,"brotliLength":66,"mainUid":"85dd-74"},"85dd-77":{"renderedLength":1179,"gzipLength":451,"brotliLength":362,"mainUid":"85dd-76"},"85dd-79":{"renderedLength":252,"gzipLength":159,"brotliLength":116,"mainUid":"85dd-78"},"85dd-81":{"renderedLength":244,"gzipLength":178,"brotliLength":145,"mainUid":"85dd-80"},"85dd-83":{"renderedLength":1667,"gzipLength":625,"brotliLength":519,"mainUid":"85dd-82"},"85dd-85":{"renderedLength":636,"gzipLength":318,"brotliLength":242,"mainUid":"85dd-84"}},"nodeMetas":{"85dd-0":{"id":"/src/index.ts","moduleParts":{"index.js":"85dd-1"},"imported":[{"uid":"85dd-10"},{"uid":"85dd-6"},{"uid":"85dd-2"},{"uid":"85dd-8"},{"uid":"85dd-4"}],"importedBy":[],"isEntry":true},"85dd-2":{"id":"/src/state.ts","moduleParts":{"state.js":"85dd-3"},"imported":[{"uid":"85dd-90"},{"uid":"85dd-91"}],"importedBy":[{"uid":"85dd-0"},{"uid":"85dd-10"},{"uid":"85dd-20"},{"uid":"85dd-22"},{"uid":"85dd-24"},{"uid":"85dd-28"},{"uid":"85dd-52"}]},"85dd-4":{"id":"/src/content/dividerSidebarItem.ts","moduleParts":{"content/dividerSidebarItem.js":"85dd-5"},"imported":[],"importedBy":[{"uid":"85dd-0"}]},"85dd-6":{"id":"/src/layout/withLayout.tsx","moduleParts":{"layout/withLayout.js":"85dd-7"},"imported":[{"uid":"85dd-87"},{"uid":"85dd-86"},{"uid":"85dd-16"},{"uid":"85dd-18"},{"uid":"85dd-20"},{"uid":"85dd-12"},{"uid":"85dd-22"}],"importedBy":[{"uid":"85dd-0"}]},"85dd-8":{"id":"/src/content/createPages.tsx","moduleParts":{"content/createPages.js":"85dd-9"},"imported":[{"uid":"85dd-87"},{"uid":"85dd-86"},{"uid":"85dd-24"},{"uid":"85dd-14"}],"importedBy":[{"uid":"85dd-0"}]},"85dd-10":{"id":"/src/layout/hooks/useMobileLayout.ts","moduleParts":{"layout/hooks/useMobileLayout.js":"85dd-11"},"imported":[{"uid":"85dd-86"},{"uid":"85dd-87"},{"uid":"85dd-88"},{"uid":"85dd-89"},{"uid":"85dd-2"}],"importedBy":[{"uid":"85dd-0"}]},"85dd-12":{"id":"/src/types.ts","moduleParts":{"types.js":"85dd-13"},"imported":[],"importedBy":[{"uid":"85dd-6"}]},"85dd-14":{"id":"/src/content/types.ts","moduleParts":{"content/types.js":"85dd-15"},"imported":[],"importedBy":[{"uid":"85dd-8"},{"uid":"85dd-46"}]},"85dd-16":{"id":"/src/datahooks/DataHooks.tsx","moduleParts":{"datahooks/DataHooks.js":"85dd-17"},"imported":[{"uid":"85dd-87"},{"uid":"85dd-86"},{"uid":"85dd-92"},{"uid":"85dd-93"},{"uid":"85dd-26"}],"importedBy":[{"uid":"85dd-6"},{"uid":"85dd-24"}]},"85dd-18":{"id":"/src/datahooks/PermissionHooks.tsx","moduleParts":{"datahooks/PermissionHooks.js":"85dd-19"},"imported":[{"uid":"85dd-87"},{"uid":"85dd-86"},{"uid":"85dd-28"}],"importedBy":[{"uid":"85dd-6"}]},"85dd-20":{"id":"/src/datahooks/Permissions.tsx","moduleParts":{"datahooks/Permissions.js":"85dd-21"},"imported":[{"uid":"85dd-87"},{"uid":"85dd-94"},{"uid":"85dd-86"},{"uid":"85dd-88"},{"uid":"85dd-2"}],"importedBy":[{"uid":"85dd-6"}]},"85dd-22":{"id":"/src/layout/components/Layout.tsx","moduleParts":{"layout/components/Layout.js":"85dd-23"},"imported":[{"uid":"85dd-87"},{"uid":"85dd-86"},{"uid":"85dd-95"},{"uid":"85dd-2"},{"uid":"85dd-32"},{"uid":"85dd-38"},{"uid":"85dd-40"},{"uid":"85dd-34"}],"importedBy":[{"uid":"85dd-6"}]},"85dd-24":{"id":"/src/content/components/ContentComponent.tsx","moduleParts":{"content/components/ContentComponent.js":"85dd-25"},"imported":[{"uid":"85dd-87"},{"uid":"85dd-86"},{"uid":"85dd-96"},{"uid":"85dd-88"},{"uid":"85dd-16"},{"uid":"85dd-2"},{"uid":"85dd-30"},{"uid":"85dd-42"},{"uid":"85dd-44"},{"uid":"85dd-46"},{"uid":"85dd-36"}],"importedBy":[{"uid":"85dd-8"}]},"85dd-26":{"id":"/src/datahooks/ExecuteDataHook.tsx","moduleParts":{"datahooks/ExecuteDataHook.js":"85dd-27"},"imported":[{"uid":"85dd-87"}],"importedBy":[{"uid":"85dd-16"}]},"85dd-28":{"id":"/src/datahooks/ExecutePermissionHook.tsx","moduleParts":{"datahooks/ExecutePermissionHook.js":"85dd-29"},"imported":[{"uid":"85dd-87"},{"uid":"85dd-88"},{"uid":"85dd-2"}],"importedBy":[{"uid":"85dd-18"}]},"85dd-30":{"id":"/src/utils.ts","moduleParts":{"utils.js":"85dd-31"},"imported":[{"uid":"85dd-96"}],"importedBy":[{"uid":"85dd-24"},{"uid":"85dd-38"},{"uid":"85dd-54"}]},"85dd-32":{"id":"/src/layout/moveItems.ts","moduleParts":{"layout/moveItems.js":"85dd-33"},"imported":[{"uid":"85dd-86"},{"uid":"85dd-96"},{"uid":"85dd-48"}],"importedBy":[{"uid":"85dd-22"}]},"85dd-34":{"id":"/src/layout/components/styles.module.css","moduleParts":{"layout/components/styles.module.css.js":"85dd-35"},"imported":[{"uid":"85dd-84"}],"importedBy":[{"uid":"85dd-22"},{"uid":"85dd-40"},{"uid":"85dd-76"}]},"85dd-36":{"id":"/src/content/components/styles.module.css","moduleParts":{"content/components/styles.module.css.js":"85dd-37"},"imported":[{"uid":"85dd-84"}],"importedBy":[{"uid":"85dd-24"},{"uid":"85dd-44"}]},"85dd-38":{"id":"/src/layout/components/LayoutItemBar.tsx","moduleParts":{"layout/components/LayoutItemBar.js":"85dd-39"},"imported":[{"uid":"85dd-87"},{"uid":"85dd-86"},{"uid":"85dd-95"},{"uid":"85dd-30"},{"uid":"85dd-50"},{"uid":"85dd-54"}],"importedBy":[{"uid":"85dd-22"}]},"85dd-40":{"id":"/src/layout/components/SecondaryMenuToggleItem.tsx","moduleParts":{"layout/components/SecondaryMenuToggleItem.js":"85dd-41"},"imported":[{"uid":"85dd-87"},{"uid":"85dd-95"},{"uid":"85dd-34"}],"importedBy":[{"uid":"85dd-22"}]},"85dd-42":{"id":"/src/content/hooks/useBuildContentData.ts","moduleParts":{"content/hooks/useBuildContentData.js":"85dd-43"},"imported":[{"uid":"85dd-52"}],"importedBy":[{"uid":"85dd-24"},{"uid":"85dd-46"}]},"85dd-44":{"id":"/src/content/components/Header.tsx","moduleParts":{"content/components/Header.js":"85dd-45"},"imported":[{"uid":"85dd-87"},{"uid":"85dd-86"},{"uid":"85dd-36"}],"importedBy":[{"uid":"85dd-24"}]},"85dd-46":{"id":"/src/content/components/SidebarItemWrapper.tsx","moduleParts":{"content/components/SidebarItemWrapper.js":"85dd-47"},"imported":[{"uid":"85dd-87"},{"uid":"85dd-86"},{"uid":"85dd-97"},{"uid":"85dd-95"},{"uid":"85dd-42"},{"uid":"85dd-14"},{"uid":"85dd-56"},{"uid":"85dd-58"},{"uid":"85dd-60"},{"uid":"85dd-62"}],"importedBy":[{"uid":"85dd-24"}]},"85dd-48":{"id":"/src/layout/types.ts","moduleParts":{"layout/types.js":"85dd-49"},"imported":[],"importedBy":[{"uid":"85dd-32"},{"uid":"85dd-54"}]},"85dd-50":{"id":"/src/layout/utils.tsx","moduleParts":{"layout/utils.js":"85dd-51"},"imported":[{"uid":"85dd-87"},{"uid":"85dd-93"},{"uid":"85dd-95"},{"uid":"85dd-64"}],"importedBy":[{"uid":"85dd-38"},{"uid":"85dd-76"},{"uid":"85dd-80"}]},"85dd-52":{"id":"/src/hooks/useBuildData.ts","moduleParts":{"hooks/useBuildData.js":"85dd-53"},"imported":[{"uid":"85dd-94"},{"uid":"85dd-86"},{"uid":"85dd-96"},{"uid":"85dd-93"},{"uid":"85dd-2"},{"uid":"85dd-66"},{"uid":"85dd-68"},{"uid":"85dd-70"}],"importedBy":[{"uid":"85dd-42"},{"uid":"85dd-54"}]},"85dd-54":{"id":"/src/layout/components/LayoutItemWrapper.tsx","moduleParts":{"layout/components/LayoutItemWrapper.js":"85dd-55"},"imported":[{"uid":"85dd-87"},{"uid":"85dd-86"},{"uid":"85dd-97"},{"uid":"85dd-95"},{"uid":"85dd-52"},{"uid":"85dd-30"},{"uid":"85dd-48"},{"uid":"85dd-74"},{"uid":"85dd-76"},{"uid":"85dd-78"},{"uid":"85dd-80"}],"importedBy":[{"uid":"85dd-38"}]},"85dd-56":{"id":"/src/content/components/ActionFormSidebarItemComponent.tsx","moduleParts":{"content/components/ActionFormSidebarItemComponent.js":"85dd-57"},"imported":[{"uid":"85dd-87"},{"uid":"85dd-86"},{"uid":"85dd-95"},{"uid":"85dd-72"},{"uid":"85dd-82"}],"importedBy":[{"uid":"85dd-46"}]},"85dd-58":{"id":"/src/content/components/ActionSidebarItemComponent.tsx","moduleParts":{"content/components/ActionSidebarItemComponent.js":"85dd-59"},"imported":[{"uid":"85dd-87"},{"uid":"85dd-95"},{"uid":"85dd-72"}],"importedBy":[{"uid":"85dd-46"}]},"85dd-60":{"id":"/src/content/components/CustomSidebarItemComponent.tsx","moduleParts":{"content/components/CustomSidebarItemComponent.js":"85dd-61"},"imported":[{"uid":"85dd-87"}],"importedBy":[{"uid":"85dd-46"}]},"85dd-62":{"id":"/src/content/components/PlainSidebarItem.tsx","moduleParts":{"content/components/PlainSidebarItem.js":"85dd-63"},"imported":[{"uid":"85dd-87"},{"uid":"85dd-93"},{"uid":"85dd-95"},{"uid":"85dd-72"}],"importedBy":[{"uid":"85dd-46"}]},"85dd-64":{"id":"/src/commonItems.ts","moduleParts":{"commonItems.js":"85dd-65"},"imported":[],"importedBy":[{"uid":"85dd-50"},{"uid":"85dd-66"}]},"85dd-66":{"id":"/src/hooks/useIsActiveRoute.ts","moduleParts":{"hooks/useIsActiveRoute.js":"85dd-67"},"imported":[{"uid":"85dd-98"},{"uid":"85dd-64"}],"importedBy":[{"uid":"85dd-52"}]},"85dd-68":{"id":"/src/hooks/useSelectPermission.ts","moduleParts":{"hooks/useSelectPermission.js":"85dd-69"},"imported":[{"uid":"85dd-96"}],"importedBy":[{"uid":"85dd-52"}]},"85dd-70":{"id":"/src/hooks/useSelectState.ts","moduleParts":{"hooks/useSelectState.js":"85dd-71"},"imported":[{"uid":"85dd-96"}],"importedBy":[{"uid":"85dd-52"}]},"85dd-72":{"id":"/src/content/utils.tsx","moduleParts":{"content/utils.js":"85dd-73"},"imported":[{"uid":"85dd-87"},{"uid":"85dd-95"}],"importedBy":[{"uid":"85dd-56"},{"uid":"85dd-58"},{"uid":"85dd-62"}]},"85dd-74":{"id":"/src/layout/components/CustomLayoutItemComponent.tsx","moduleParts":{"layout/components/CustomLayoutItemComponent.js":"85dd-75"},"imported":[{"uid":"85dd-87"}],"importedBy":[{"uid":"85dd-54"}]},"85dd-76":{"id":"/src/layout/components/DropdownItem.tsx","moduleParts":{"layout/components/DropdownItem.js":"85dd-77"},"imported":[{"uid":"85dd-87"},{"uid":"85dd-86"},{"uid":"85dd-95"},{"uid":"85dd-50"},{"uid":"85dd-34"}],"importedBy":[{"uid":"85dd-54"}]},"85dd-78":{"id":"/src/layout/components/MenuItem.tsx","moduleParts":{"layout/components/MenuItem.js":"85dd-79"},"imported":[{"uid":"85dd-87"},{"uid":"85dd-95"}],"importedBy":[{"uid":"85dd-54"}]},"85dd-80":{"id":"/src/layout/components/PlainItem.tsx","moduleParts":{"layout/components/PlainItem.js":"85dd-81"},"imported":[{"uid":"85dd-87"},{"uid":"85dd-95"},{"uid":"85dd-50"}],"importedBy":[{"uid":"85dd-54"}]},"85dd-82":{"id":"/src/content/components/ActionForm.tsx","moduleParts":{"content/components/ActionForm.js":"85dd-83"},"imported":[{"uid":"85dd-87"},{"uid":"85dd-99"},{"uid":"85dd-86"},{"uid":"85dd-95"}],"importedBy":[{"uid":"85dd-56"}]},"85dd-84":{"id":"/home/mike/dev/imperium/node_modules/style-inject/dist/style-inject.es.js","moduleParts":{"external/style-inject/dist/style-inject.es.js":"85dd-85"},"imported":[],"importedBy":[{"uid":"85dd-34"},{"uid":"85dd-36"}]},"85dd-86":{"id":"debug","moduleParts":{},"imported":[],"importedBy":[{"uid":"85dd-10"},{"uid":"85dd-6"},{"uid":"85dd-8"},{"uid":"85dd-16"},{"uid":"85dd-18"},{"uid":"85dd-20"},{"uid":"85dd-22"},{"uid":"85dd-24"},{"uid":"85dd-32"},{"uid":"85dd-38"},{"uid":"85dd-44"},{"uid":"85dd-46"},{"uid":"85dd-54"},{"uid":"85dd-52"},{"uid":"85dd-56"},{"uid":"85dd-76"},{"uid":"85dd-82"}],"isExternal":true},"85dd-87":{"id":"react","moduleParts":{},"imported":[],"importedBy":[{"uid":"85dd-10"},{"uid":"85dd-6"},{"uid":"85dd-8"},{"uid":"85dd-16"},{"uid":"85dd-18"},{"uid":"85dd-20"},{"uid":"85dd-22"},{"uid":"85dd-24"},{"uid":"85dd-26"},{"uid":"85dd-28"},{"uid":"85dd-38"},{"uid":"85dd-40"},{"uid":"85dd-44"},{"uid":"85dd-46"},{"uid":"85dd-50"},{"uid":"85dd-54"},{"uid":"85dd-56"},{"uid":"85dd-58"},{"uid":"85dd-60"},{"uid":"85dd-62"},{"uid":"85dd-74"},{"uid":"85dd-76"},{"uid":"85dd-78"},{"uid":"85dd-80"},{"uid":"85dd-72"},{"uid":"85dd-82"}],"isExternal":true},"85dd-88":{"id":"react-redux","moduleParts":{},"imported":[],"importedBy":[{"uid":"85dd-10"},{"uid":"85dd-20"},{"uid":"85dd-24"},{"uid":"85dd-28"}],"isExternal":true},"85dd-89":{"id":"react-responsive","moduleParts":{},"imported":[],"importedBy":[{"uid":"85dd-10"}],"isExternal":true},"85dd-90":{"id":"@imperium/state","moduleParts":{},"imported":[],"importedBy":[{"uid":"85dd-2"}],"isExternal":true},"85dd-91":{"id":"@reduxjs/toolkit","moduleParts":{},"imported":[],"importedBy":[{"uid":"85dd-2"}],"isExternal":true},"85dd-92":{"id":"lodash/fp/compose.js","moduleParts":{},"imported":[],"importedBy":[{"uid":"85dd-16"}],"isExternal":true},"85dd-93":{"id":"react-router-dom","moduleParts":{},"imported":[],"importedBy":[{"uid":"85dd-16"},{"uid":"85dd-50"},{"uid":"85dd-52"},{"uid":"85dd-62"}],"isExternal":true},"85dd-94":{"id":"@imperium/auth-client","moduleParts":{},"imported":[],"importedBy":[{"uid":"85dd-20"},{"uid":"85dd-52"}],"isExternal":true},"85dd-95":{"id":"semantic-ui-react","moduleParts":{},"imported":[],"importedBy":[{"uid":"85dd-22"},{"uid":"85dd-38"},{"uid":"85dd-40"},{"uid":"85dd-46"},{"uid":"85dd-50"},{"uid":"85dd-54"},{"uid":"85dd-56"},{"uid":"85dd-58"},{"uid":"85dd-62"},{"uid":"85dd-76"},{"uid":"85dd-78"},{"uid":"85dd-80"},{"uid":"85dd-72"},{"uid":"85dd-82"}],"isExternal":true},"85dd-96":{"id":"lodash-es","moduleParts":{},"imported":[],"importedBy":[{"uid":"85dd-24"},{"uid":"85dd-32"},{"uid":"85dd-30"},{"uid":"85dd-52"},{"uid":"85dd-68"},{"uid":"85dd-70"}],"isExternal":true},"85dd-97":{"id":"mingo","moduleParts":{},"imported":[],"importedBy":[{"uid":"85dd-46"},{"uid":"85dd-54"}],"isExternal":true},"85dd-98":{"id":"react-router","moduleParts":{},"imported":[],"importedBy":[{"uid":"85dd-66"}],"isExternal":true},"85dd-99":{"id":"@thx/controls","moduleParts":{},"imported":[],"importedBy":[{"uid":"85dd-82"}],"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":"41e5-1"}]},{"name":"state.js","children":[{"name":"src/state.ts","uid":"41e5-3"}]},{"name":"content/dividerSidebarItem.js","children":[{"name":"src/content/dividerSidebarItem.ts","uid":"41e5-5"}]},{"name":"layout/withLayout.js","children":[{"name":"src/layout/withLayout.tsx","uid":"41e5-7"}]},{"name":"content/createPages.js","children":[{"name":"src/content/createPages.tsx","uid":"41e5-9"}]},{"name":"layout/hooks/useMobileLayout.js","children":[{"name":"src/layout/hooks/useMobileLayout.ts","uid":"41e5-11"}]},{"name":"types.js","children":[{"name":"src/types.ts","uid":"41e5-13"}]},{"name":"content/types.js","children":[{"name":"src/content/types.ts","uid":"41e5-15"}]},{"name":"datahooks/DataHooks.js","children":[{"name":"src/datahooks/DataHooks.tsx","uid":"41e5-17"}]},{"name":"datahooks/PermissionHooks.js","children":[{"name":"src/datahooks/PermissionHooks.tsx","uid":"41e5-19"}]},{"name":"datahooks/Permissions.js","children":[{"name":"src/datahooks/Permissions.tsx","uid":"41e5-21"}]},{"name":"layout/components/Layout.js","children":[{"name":"src/layout/components/Layout.tsx","uid":"41e5-23"}]},{"name":"content/components/ContentComponent.js","children":[{"name":"src/content/components/ContentComponent.tsx","uid":"41e5-25"}]},{"name":"utils.js","children":[{"name":"src/utils.ts","uid":"41e5-27"}]},{"name":"datahooks/ExecuteDataHook.js","children":[{"name":"src/datahooks/ExecuteDataHook.tsx","uid":"41e5-29"}]},{"name":"datahooks/ExecutePermissionHook.js","children":[{"name":"src/datahooks/ExecutePermissionHook.tsx","uid":"41e5-31"}]},{"name":"layout/moveItems.js","children":[{"name":"src/layout/moveItems.ts","uid":"41e5-33"}]},{"name":"layout/components/styles.module.css.js","children":[{"name":"src/layout/components/styles.module.css","uid":"41e5-35"}]},{"name":"content/components/styles.module.css.js","children":[{"name":"src/content/components/styles.module.css","uid":"41e5-37"}]},{"name":"layout/components/LayoutItemBar.js","children":[{"name":"src/layout/components/LayoutItemBar.tsx","uid":"41e5-39"}]},{"name":"layout/components/SecondaryMenuToggleItem.js","children":[{"name":"src/layout/components/SecondaryMenuToggleItem.tsx","uid":"41e5-41"}]},{"name":"content/hooks/useBuildContentData.js","children":[{"name":"src/content/hooks/useBuildContentData.ts","uid":"41e5-43"}]},{"name":"content/components/Header.js","children":[{"name":"src/content/components/Header.tsx","uid":"41e5-45"}]},{"name":"content/components/SidebarItemWrapper.js","children":[{"name":"src/content/components/SidebarItemWrapper.tsx","uid":"41e5-47"}]},{"name":"layout/types.js","children":[{"name":"src/layout/types.ts","uid":"41e5-49"}]},{"name":"layout/utils.js","children":[{"name":"src/layout/utils.tsx","uid":"41e5-51"}]},{"name":"hooks/useBuildData.js","children":[{"name":"src/hooks/useBuildData.ts","uid":"41e5-53"}]},{"name":"layout/components/LayoutItemWrapper.js","children":[{"name":"src/layout/components/LayoutItemWrapper.tsx","uid":"41e5-55"}]},{"name":"content/components/ActionFormSidebarItemComponent.js","children":[{"name":"src/content/components/ActionFormSidebarItemComponent.tsx","uid":"41e5-57"}]},{"name":"content/components/ActionSidebarItemComponent.js","children":[{"name":"src/content/components/ActionSidebarItemComponent.tsx","uid":"41e5-59"}]},{"name":"content/components/CustomSidebarItemComponent.js","children":[{"name":"src/content/components/CustomSidebarItemComponent.tsx","uid":"41e5-61"}]},{"name":"content/components/PlainSidebarItem.js","children":[{"name":"src/content/components/PlainSidebarItem.tsx","uid":"41e5-63"}]},{"name":"commonItems.js","children":[{"name":"src/commonItems.ts","uid":"41e5-65"}]},{"name":"hooks/useIsActiveRoute.js","children":[{"name":"src/hooks/useIsActiveRoute.ts","uid":"41e5-67"}]},{"name":"hooks/useSelectPermission.js","children":[{"name":"src/hooks/useSelectPermission.ts","uid":"41e5-69"}]},{"name":"hooks/useSelectState.js","children":[{"name":"src/hooks/useSelectState.ts","uid":"41e5-71"}]},{"name":"content/utils.js","children":[{"name":"src/content/utils.tsx","uid":"41e5-73"}]},{"name":"layout/components/CustomLayoutItemComponent.js","children":[{"name":"src/layout/components/CustomLayoutItemComponent.tsx","uid":"41e5-75"}]},{"name":"layout/components/DropdownItem.js","children":[{"name":"src/layout/components/DropdownItem.tsx","uid":"41e5-77"}]},{"name":"layout/components/MenuItem.js","children":[{"name":"src/layout/components/MenuItem.tsx","uid":"41e5-79"}]},{"name":"layout/components/PlainItem.js","children":[{"name":"src/layout/components/PlainItem.tsx","uid":"41e5-81"}]},{"name":"content/components/ActionForm.js","children":[{"name":"src/content/components/ActionForm.tsx","uid":"41e5-83"}]},{"name":"external/style-inject/dist/style-inject.es.js","children":[{"name":"home/runner/work/imperium/imperium/node_modules/style-inject/dist/style-inject.es.js","uid":"41e5-85"}]}],"isRoot":true},"nodeParts":{"41e5-1":{"renderedLength":184,"gzipLength":151,"brotliLength":131,"mainUid":"41e5-0"},"41e5-3":{"renderedLength":489,"gzipLength":251,"brotliLength":217,"mainUid":"41e5-2"},"41e5-5":{"renderedLength":59,"gzipLength":71,"brotliLength":63,"mainUid":"41e5-4"},"41e5-7":{"renderedLength":1955,"gzipLength":564,"brotliLength":488,"mainUid":"41e5-6"},"41e5-9":{"renderedLength":650,"gzipLength":300,"brotliLength":268,"mainUid":"41e5-8"},"41e5-11":{"renderedLength":445,"gzipLength":266,"brotliLength":229,"mainUid":"41e5-10"},"41e5-13":{"renderedLength":121,"gzipLength":110,"brotliLength":90,"mainUid":"41e5-12"},"41e5-15":{"renderedLength":315,"gzipLength":141,"brotliLength":99,"mainUid":"41e5-14"},"41e5-17":{"renderedLength":1058,"gzipLength":392,"brotliLength":330,"mainUid":"41e5-16"},"41e5-19":{"renderedLength":339,"gzipLength":201,"brotliLength":164,"mainUid":"41e5-18"},"41e5-21":{"renderedLength":663,"gzipLength":328,"brotliLength":285,"mainUid":"41e5-20"},"41e5-23":{"renderedLength":2630,"gzipLength":743,"brotliLength":629,"mainUid":"41e5-22"},"41e5-25":{"renderedLength":1970,"gzipLength":651,"brotliLength":565,"mainUid":"41e5-24"},"41e5-27":{"renderedLength":145,"gzipLength":117,"brotliLength":116,"mainUid":"41e5-26"},"41e5-29":{"renderedLength":123,"gzipLength":107,"brotliLength":93,"mainUid":"41e5-28"},"41e5-31":{"renderedLength":345,"gzipLength":206,"brotliLength":172,"mainUid":"41e5-30"},"41e5-33":{"renderedLength":1401,"gzipLength":377,"brotliLength":347,"mainUid":"41e5-32"},"41e5-35":{"renderedLength":3176,"gzipLength":933,"brotliLength":762,"mainUid":"41e5-34"},"41e5-37":{"renderedLength":1469,"gzipLength":528,"brotliLength":431,"mainUid":"41e5-36"},"41e5-39":{"renderedLength":726,"gzipLength":295,"brotliLength":252,"mainUid":"41e5-38"},"41e5-41":{"renderedLength":335,"gzipLength":222,"brotliLength":169,"mainUid":"41e5-40"},"41e5-43":{"renderedLength":257,"gzipLength":158,"brotliLength":122,"mainUid":"41e5-42"},"41e5-45":{"renderedLength":556,"gzipLength":286,"brotliLength":215,"mainUid":"41e5-44"},"41e5-47":{"renderedLength":1189,"gzipLength":399,"brotliLength":314,"mainUid":"41e5-46"},"41e5-49":{"renderedLength":191,"gzipLength":111,"brotliLength":89,"mainUid":"41e5-48"},"41e5-51":{"renderedLength":915,"gzipLength":392,"brotliLength":328,"mainUid":"41e5-50"},"41e5-53":{"renderedLength":785,"gzipLength":362,"brotliLength":321,"mainUid":"41e5-52"},"41e5-55":{"renderedLength":1503,"gzipLength":488,"brotliLength":399,"mainUid":"41e5-54"},"41e5-57":{"renderedLength":663,"gzipLength":344,"brotliLength":277,"mainUid":"41e5-56"},"41e5-59":{"renderedLength":362,"gzipLength":244,"brotliLength":185,"mainUid":"41e5-58"},"41e5-61":{"renderedLength":83,"gzipLength":96,"brotliLength":66,"mainUid":"41e5-60"},"41e5-63":{"renderedLength":344,"gzipLength":235,"brotliLength":186,"mainUid":"41e5-62"},"41e5-65":{"renderedLength":203,"gzipLength":136,"brotliLength":97,"mainUid":"41e5-64"},"41e5-67":{"renderedLength":514,"gzipLength":229,"brotliLength":187,"mainUid":"41e5-66"},"41e5-69":{"renderedLength":294,"gzipLength":154,"brotliLength":114,"mainUid":"41e5-68"},"41e5-71":{"renderedLength":326,"gzipLength":176,"brotliLength":141,"mainUid":"41e5-70"},"41e5-73":{"renderedLength":628,"gzipLength":259,"brotliLength":219,"mainUid":"41e5-72"},"41e5-75":{"renderedLength":82,"gzipLength":95,"brotliLength":66,"mainUid":"41e5-74"},"41e5-77":{"renderedLength":1179,"gzipLength":451,"brotliLength":362,"mainUid":"41e5-76"},"41e5-79":{"renderedLength":252,"gzipLength":159,"brotliLength":116,"mainUid":"41e5-78"},"41e5-81":{"renderedLength":244,"gzipLength":178,"brotliLength":145,"mainUid":"41e5-80"},"41e5-83":{"renderedLength":1667,"gzipLength":625,"brotliLength":519,"mainUid":"41e5-82"},"41e5-85":{"renderedLength":636,"gzipLength":318,"brotliLength":242,"mainUid":"41e5-84"}},"nodeMetas":{"41e5-0":{"id":"/src/index.ts","moduleParts":{"index.js":"41e5-1"},"imported":[{"uid":"41e5-10"},{"uid":"41e5-6"},{"uid":"41e5-2"},{"uid":"41e5-8"},{"uid":"41e5-4"}],"importedBy":[],"isEntry":true},"41e5-2":{"id":"/src/state.ts","moduleParts":{"state.js":"41e5-3"},"imported":[{"uid":"41e5-90"},{"uid":"41e5-91"}],"importedBy":[{"uid":"41e5-0"},{"uid":"41e5-10"},{"uid":"41e5-20"},{"uid":"41e5-22"},{"uid":"41e5-24"},{"uid":"41e5-30"},{"uid":"41e5-52"}]},"41e5-4":{"id":"/src/content/dividerSidebarItem.ts","moduleParts":{"content/dividerSidebarItem.js":"41e5-5"},"imported":[],"importedBy":[{"uid":"41e5-0"}]},"41e5-6":{"id":"/src/layout/withLayout.tsx","moduleParts":{"layout/withLayout.js":"41e5-7"},"imported":[{"uid":"41e5-87"},{"uid":"41e5-86"},{"uid":"41e5-16"},{"uid":"41e5-18"},{"uid":"41e5-20"},{"uid":"41e5-12"},{"uid":"41e5-22"}],"importedBy":[{"uid":"41e5-0"}]},"41e5-8":{"id":"/src/content/createPages.tsx","moduleParts":{"content/createPages.js":"41e5-9"},"imported":[{"uid":"41e5-87"},{"uid":"41e5-86"},{"uid":"41e5-24"},{"uid":"41e5-14"}],"importedBy":[{"uid":"41e5-0"}]},"41e5-10":{"id":"/src/layout/hooks/useMobileLayout.ts","moduleParts":{"layout/hooks/useMobileLayout.js":"41e5-11"},"imported":[{"uid":"41e5-86"},{"uid":"41e5-87"},{"uid":"41e5-88"},{"uid":"41e5-89"},{"uid":"41e5-2"}],"importedBy":[{"uid":"41e5-0"}]},"41e5-12":{"id":"/src/types.ts","moduleParts":{"types.js":"41e5-13"},"imported":[],"importedBy":[{"uid":"41e5-6"}]},"41e5-14":{"id":"/src/content/types.ts","moduleParts":{"content/types.js":"41e5-15"},"imported":[],"importedBy":[{"uid":"41e5-8"},{"uid":"41e5-46"}]},"41e5-16":{"id":"/src/datahooks/DataHooks.tsx","moduleParts":{"datahooks/DataHooks.js":"41e5-17"},"imported":[{"uid":"41e5-87"},{"uid":"41e5-86"},{"uid":"41e5-92"},{"uid":"41e5-28"}],"importedBy":[{"uid":"41e5-6"},{"uid":"41e5-24"}]},"41e5-18":{"id":"/src/datahooks/PermissionHooks.tsx","moduleParts":{"datahooks/PermissionHooks.js":"41e5-19"},"imported":[{"uid":"41e5-87"},{"uid":"41e5-86"},{"uid":"41e5-30"}],"importedBy":[{"uid":"41e5-6"}]},"41e5-20":{"id":"/src/datahooks/Permissions.tsx","moduleParts":{"datahooks/Permissions.js":"41e5-21"},"imported":[{"uid":"41e5-87"},{"uid":"41e5-93"},{"uid":"41e5-86"},{"uid":"41e5-88"},{"uid":"41e5-2"}],"importedBy":[{"uid":"41e5-6"}]},"41e5-22":{"id":"/src/layout/components/Layout.tsx","moduleParts":{"layout/components/Layout.js":"41e5-23"},"imported":[{"uid":"41e5-87"},{"uid":"41e5-86"},{"uid":"41e5-94"},{"uid":"41e5-2"},{"uid":"41e5-32"},{"uid":"41e5-38"},{"uid":"41e5-40"},{"uid":"41e5-34"}],"importedBy":[{"uid":"41e5-6"}]},"41e5-24":{"id":"/src/content/components/ContentComponent.tsx","moduleParts":{"content/components/ContentComponent.js":"41e5-25"},"imported":[{"uid":"41e5-87"},{"uid":"41e5-86"},{"uid":"41e5-95"},{"uid":"41e5-88"},{"uid":"41e5-16"},{"uid":"41e5-2"},{"uid":"41e5-26"},{"uid":"41e5-42"},{"uid":"41e5-44"},{"uid":"41e5-46"},{"uid":"41e5-36"}],"importedBy":[{"uid":"41e5-8"}]},"41e5-26":{"id":"/src/utils.ts","moduleParts":{"utils.js":"41e5-27"},"imported":[{"uid":"41e5-95"}],"importedBy":[{"uid":"41e5-24"},{"uid":"41e5-38"},{"uid":"41e5-54"}]},"41e5-28":{"id":"/src/datahooks/ExecuteDataHook.tsx","moduleParts":{"datahooks/ExecuteDataHook.js":"41e5-29"},"imported":[{"uid":"41e5-87"}],"importedBy":[{"uid":"41e5-16"}]},"41e5-30":{"id":"/src/datahooks/ExecutePermissionHook.tsx","moduleParts":{"datahooks/ExecutePermissionHook.js":"41e5-31"},"imported":[{"uid":"41e5-87"},{"uid":"41e5-88"},{"uid":"41e5-2"}],"importedBy":[{"uid":"41e5-18"}]},"41e5-32":{"id":"/src/layout/moveItems.ts","moduleParts":{"layout/moveItems.js":"41e5-33"},"imported":[{"uid":"41e5-86"},{"uid":"41e5-95"},{"uid":"41e5-48"}],"importedBy":[{"uid":"41e5-22"}]},"41e5-34":{"id":"/src/layout/components/styles.module.css","moduleParts":{"layout/components/styles.module.css.js":"41e5-35"},"imported":[{"uid":"41e5-84"}],"importedBy":[{"uid":"41e5-22"},{"uid":"41e5-40"},{"uid":"41e5-76"}]},"41e5-36":{"id":"/src/content/components/styles.module.css","moduleParts":{"content/components/styles.module.css.js":"41e5-37"},"imported":[{"uid":"41e5-84"}],"importedBy":[{"uid":"41e5-24"},{"uid":"41e5-44"}]},"41e5-38":{"id":"/src/layout/components/LayoutItemBar.tsx","moduleParts":{"layout/components/LayoutItemBar.js":"41e5-39"},"imported":[{"uid":"41e5-87"},{"uid":"41e5-86"},{"uid":"41e5-94"},{"uid":"41e5-26"},{"uid":"41e5-50"},{"uid":"41e5-54"}],"importedBy":[{"uid":"41e5-22"}]},"41e5-40":{"id":"/src/layout/components/SecondaryMenuToggleItem.tsx","moduleParts":{"layout/components/SecondaryMenuToggleItem.js":"41e5-41"},"imported":[{"uid":"41e5-87"},{"uid":"41e5-94"},{"uid":"41e5-34"}],"importedBy":[{"uid":"41e5-22"}]},"41e5-42":{"id":"/src/content/hooks/useBuildContentData.ts","moduleParts":{"content/hooks/useBuildContentData.js":"41e5-43"},"imported":[{"uid":"41e5-52"}],"importedBy":[{"uid":"41e5-24"},{"uid":"41e5-46"}]},"41e5-44":{"id":"/src/content/components/Header.tsx","moduleParts":{"content/components/Header.js":"41e5-45"},"imported":[{"uid":"41e5-87"},{"uid":"41e5-86"},{"uid":"41e5-36"}],"importedBy":[{"uid":"41e5-24"}]},"41e5-46":{"id":"/src/content/components/SidebarItemWrapper.tsx","moduleParts":{"content/components/SidebarItemWrapper.js":"41e5-47"},"imported":[{"uid":"41e5-87"},{"uid":"41e5-86"},{"uid":"41e5-96"},{"uid":"41e5-94"},{"uid":"41e5-42"},{"uid":"41e5-14"},{"uid":"41e5-56"},{"uid":"41e5-58"},{"uid":"41e5-60"},{"uid":"41e5-62"}],"importedBy":[{"uid":"41e5-24"}]},"41e5-48":{"id":"/src/layout/types.ts","moduleParts":{"layout/types.js":"41e5-49"},"imported":[],"importedBy":[{"uid":"41e5-32"},{"uid":"41e5-54"}]},"41e5-50":{"id":"/src/layout/utils.tsx","moduleParts":{"layout/utils.js":"41e5-51"},"imported":[{"uid":"41e5-87"},{"uid":"41e5-92"},{"uid":"41e5-94"},{"uid":"41e5-64"}],"importedBy":[{"uid":"41e5-38"},{"uid":"41e5-76"},{"uid":"41e5-80"}]},"41e5-52":{"id":"/src/hooks/useBuildData.ts","moduleParts":{"hooks/useBuildData.js":"41e5-53"},"imported":[{"uid":"41e5-93"},{"uid":"41e5-86"},{"uid":"41e5-95"},{"uid":"41e5-92"},{"uid":"41e5-2"},{"uid":"41e5-66"},{"uid":"41e5-68"},{"uid":"41e5-70"}],"importedBy":[{"uid":"41e5-42"},{"uid":"41e5-54"}]},"41e5-54":{"id":"/src/layout/components/LayoutItemWrapper.tsx","moduleParts":{"layout/components/LayoutItemWrapper.js":"41e5-55"},"imported":[{"uid":"41e5-87"},{"uid":"41e5-86"},{"uid":"41e5-96"},{"uid":"41e5-94"},{"uid":"41e5-52"},{"uid":"41e5-26"},{"uid":"41e5-48"},{"uid":"41e5-74"},{"uid":"41e5-76"},{"uid":"41e5-78"},{"uid":"41e5-80"}],"importedBy":[{"uid":"41e5-38"}]},"41e5-56":{"id":"/src/content/components/ActionFormSidebarItemComponent.tsx","moduleParts":{"content/components/ActionFormSidebarItemComponent.js":"41e5-57"},"imported":[{"uid":"41e5-87"},{"uid":"41e5-86"},{"uid":"41e5-94"},{"uid":"41e5-72"},{"uid":"41e5-82"}],"importedBy":[{"uid":"41e5-46"}]},"41e5-58":{"id":"/src/content/components/ActionSidebarItemComponent.tsx","moduleParts":{"content/components/ActionSidebarItemComponent.js":"41e5-59"},"imported":[{"uid":"41e5-87"},{"uid":"41e5-94"},{"uid":"41e5-72"}],"importedBy":[{"uid":"41e5-46"}]},"41e5-60":{"id":"/src/content/components/CustomSidebarItemComponent.tsx","moduleParts":{"content/components/CustomSidebarItemComponent.js":"41e5-61"},"imported":[{"uid":"41e5-87"}],"importedBy":[{"uid":"41e5-46"}]},"41e5-62":{"id":"/src/content/components/PlainSidebarItem.tsx","moduleParts":{"content/components/PlainSidebarItem.js":"41e5-63"},"imported":[{"uid":"41e5-87"},{"uid":"41e5-92"},{"uid":"41e5-94"},{"uid":"41e5-72"}],"importedBy":[{"uid":"41e5-46"}]},"41e5-64":{"id":"/src/commonItems.ts","moduleParts":{"commonItems.js":"41e5-65"},"imported":[],"importedBy":[{"uid":"41e5-50"},{"uid":"41e5-66"}]},"41e5-66":{"id":"/src/hooks/useIsActiveRoute.ts","moduleParts":{"hooks/useIsActiveRoute.js":"41e5-67"},"imported":[{"uid":"41e5-97"},{"uid":"41e5-64"}],"importedBy":[{"uid":"41e5-52"}]},"41e5-68":{"id":"/src/hooks/useSelectPermission.ts","moduleParts":{"hooks/useSelectPermission.js":"41e5-69"},"imported":[{"uid":"41e5-95"}],"importedBy":[{"uid":"41e5-52"}]},"41e5-70":{"id":"/src/hooks/useSelectState.ts","moduleParts":{"hooks/useSelectState.js":"41e5-71"},"imported":[{"uid":"41e5-95"}],"importedBy":[{"uid":"41e5-52"}]},"41e5-72":{"id":"/src/content/utils.tsx","moduleParts":{"content/utils.js":"41e5-73"},"imported":[{"uid":"41e5-87"},{"uid":"41e5-94"}],"importedBy":[{"uid":"41e5-56"},{"uid":"41e5-58"},{"uid":"41e5-62"}]},"41e5-74":{"id":"/src/layout/components/CustomLayoutItemComponent.tsx","moduleParts":{"layout/components/CustomLayoutItemComponent.js":"41e5-75"},"imported":[{"uid":"41e5-87"}],"importedBy":[{"uid":"41e5-54"}]},"41e5-76":{"id":"/src/layout/components/DropdownItem.tsx","moduleParts":{"layout/components/DropdownItem.js":"41e5-77"},"imported":[{"uid":"41e5-87"},{"uid":"41e5-86"},{"uid":"41e5-94"},{"uid":"41e5-50"},{"uid":"41e5-34"}],"importedBy":[{"uid":"41e5-54"}]},"41e5-78":{"id":"/src/layout/components/MenuItem.tsx","moduleParts":{"layout/components/MenuItem.js":"41e5-79"},"imported":[{"uid":"41e5-87"},{"uid":"41e5-94"}],"importedBy":[{"uid":"41e5-54"}]},"41e5-80":{"id":"/src/layout/components/PlainItem.tsx","moduleParts":{"layout/components/PlainItem.js":"41e5-81"},"imported":[{"uid":"41e5-87"},{"uid":"41e5-94"},{"uid":"41e5-50"}],"importedBy":[{"uid":"41e5-54"}]},"41e5-82":{"id":"/src/content/components/ActionForm.tsx","moduleParts":{"content/components/ActionForm.js":"41e5-83"},"imported":[{"uid":"41e5-87"},{"uid":"41e5-98"},{"uid":"41e5-86"},{"uid":"41e5-94"}],"importedBy":[{"uid":"41e5-56"}]},"41e5-84":{"id":"/home/runner/work/imperium/imperium/node_modules/style-inject/dist/style-inject.es.js","moduleParts":{"external/style-inject/dist/style-inject.es.js":"41e5-85"},"imported":[],"importedBy":[{"uid":"41e5-34"},{"uid":"41e5-36"}]},"41e5-86":{"id":"debug","moduleParts":{},"imported":[],"importedBy":[{"uid":"41e5-10"},{"uid":"41e5-6"},{"uid":"41e5-8"},{"uid":"41e5-16"},{"uid":"41e5-18"},{"uid":"41e5-20"},{"uid":"41e5-22"},{"uid":"41e5-24"},{"uid":"41e5-32"},{"uid":"41e5-38"},{"uid":"41e5-44"},{"uid":"41e5-46"},{"uid":"41e5-54"},{"uid":"41e5-52"},{"uid":"41e5-56"},{"uid":"41e5-76"},{"uid":"41e5-82"}],"isExternal":true},"41e5-87":{"id":"react","moduleParts":{},"imported":[],"importedBy":[{"uid":"41e5-10"},{"uid":"41e5-6"},{"uid":"41e5-8"},{"uid":"41e5-16"},{"uid":"41e5-18"},{"uid":"41e5-20"},{"uid":"41e5-22"},{"uid":"41e5-24"},{"uid":"41e5-28"},{"uid":"41e5-30"},{"uid":"41e5-38"},{"uid":"41e5-40"},{"uid":"41e5-44"},{"uid":"41e5-46"},{"uid":"41e5-50"},{"uid":"41e5-54"},{"uid":"41e5-56"},{"uid":"41e5-58"},{"uid":"41e5-60"},{"uid":"41e5-62"},{"uid":"41e5-74"},{"uid":"41e5-76"},{"uid":"41e5-78"},{"uid":"41e5-80"},{"uid":"41e5-72"},{"uid":"41e5-82"}],"isExternal":true},"41e5-88":{"id":"react-redux","moduleParts":{},"imported":[],"importedBy":[{"uid":"41e5-10"},{"uid":"41e5-20"},{"uid":"41e5-24"},{"uid":"41e5-30"}],"isExternal":true},"41e5-89":{"id":"react-responsive","moduleParts":{},"imported":[],"importedBy":[{"uid":"41e5-10"}],"isExternal":true},"41e5-90":{"id":"@imperium/state","moduleParts":{},"imported":[],"importedBy":[{"uid":"41e5-2"}],"isExternal":true},"41e5-91":{"id":"@reduxjs/toolkit","moduleParts":{},"imported":[],"importedBy":[{"uid":"41e5-2"}],"isExternal":true},"41e5-92":{"id":"react-router-dom","moduleParts":{},"imported":[],"importedBy":[{"uid":"41e5-16"},{"uid":"41e5-50"},{"uid":"41e5-52"},{"uid":"41e5-62"}],"isExternal":true},"41e5-93":{"id":"@imperium/auth-client","moduleParts":{},"imported":[],"importedBy":[{"uid":"41e5-20"},{"uid":"41e5-52"}],"isExternal":true},"41e5-94":{"id":"semantic-ui-react","moduleParts":{},"imported":[],"importedBy":[{"uid":"41e5-22"},{"uid":"41e5-38"},{"uid":"41e5-40"},{"uid":"41e5-46"},{"uid":"41e5-50"},{"uid":"41e5-54"},{"uid":"41e5-56"},{"uid":"41e5-58"},{"uid":"41e5-62"},{"uid":"41e5-76"},{"uid":"41e5-78"},{"uid":"41e5-80"},{"uid":"41e5-72"},{"uid":"41e5-82"}],"isExternal":true},"41e5-95":{"id":"lodash-es","moduleParts":{},"imported":[],"importedBy":[{"uid":"41e5-24"},{"uid":"41e5-32"},{"uid":"41e5-26"},{"uid":"41e5-52"},{"uid":"41e5-68"},{"uid":"41e5-70"}],"isExternal":true},"41e5-96":{"id":"mingo","moduleParts":{},"imported":[],"importedBy":[{"uid":"41e5-46"},{"uid":"41e5-54"}],"isExternal":true},"41e5-97":{"id":"react-router","moduleParts":{},"imported":[],"importedBy":[{"uid":"41e5-66"}],"isExternal":true},"41e5-98":{"id":"@thx/controls","moduleParts":{},"imported":[],"importedBy":[{"uid":"41e5-82"}],"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;
|
|
@@ -2,6 +2,7 @@ import type { DataHook } from './types';
|
|
|
2
2
|
interface ExecuteDataHookProps {
|
|
3
3
|
dataHook: DataHook;
|
|
4
4
|
routeParams?: any;
|
|
5
|
+
isMatching: boolean;
|
|
5
6
|
}
|
|
6
|
-
export declare function ExecuteDataHook({ dataHook, routeParams }: ExecuteDataHookProps): null;
|
|
7
|
+
export declare function ExecuteDataHook({ dataHook, routeParams, isMatching }: ExecuteDataHookProps): null;
|
|
7
8
|
export {};
|
|
@@ -1,7 +1,11 @@
|
|
|
1
|
+
export interface DataHookParams {
|
|
2
|
+
routeParams?: any;
|
|
3
|
+
isMatching: boolean;
|
|
4
|
+
}
|
|
1
5
|
/**
|
|
2
6
|
* A simple hook, that doesn't return anything. If used together with a route match function, the returned route parameters are passed in.
|
|
3
7
|
*/
|
|
4
|
-
export declare type DataHook = (
|
|
8
|
+
export declare type DataHook = (params: DataHookParams) => void;
|
|
5
9
|
/**
|
|
6
10
|
* A route match function that can be used by data hooks. Usually is the @imperium/router `routes.match.x()` functions.
|
|
7
11
|
*/
|
|
@@ -10,7 +14,7 @@ export declare type DataHookRouteMatchFn = (route: string) => any;
|
|
|
10
14
|
* An object that can specify one or more data hooks that can receive route parameters from one or more route match functions.
|
|
11
15
|
*/
|
|
12
16
|
export declare type DataHookRoute = {
|
|
13
|
-
routeMatch: DataHookRouteMatchFn
|
|
17
|
+
routeMatch: DataHookRouteMatchFn;
|
|
14
18
|
dataHook: DataHook | DataHook[];
|
|
15
19
|
};
|
|
16
20
|
/**
|
package/dist/types/index.d.ts
CHANGED
|
@@ -5,4 +5,5 @@ export type { LayoutData } from './layout/types';
|
|
|
5
5
|
export { useLayoutState, actions as layoutActions } from './state';
|
|
6
6
|
export { createPages } from './content/createPages';
|
|
7
7
|
export type { ImperiumLayoutClientModule } from './types';
|
|
8
|
+
export type { DataHookParams } from './datahooks/types';
|
|
8
9
|
export { dividerSidebarItem } from './content/dividerSidebarItem';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@imperium/layout",
|
|
3
|
-
"version": "10.4.
|
|
3
|
+
"version": "10.4.12-alpha.0+b687901",
|
|
4
4
|
"description": "Imperium Layout package",
|
|
5
5
|
"bugs": {
|
|
6
6
|
"url": "https://github.com/darkadept/imperium/issues"
|
|
@@ -38,13 +38,15 @@
|
|
|
38
38
|
"@thx/controls": "^16.3.1",
|
|
39
39
|
"debug": "^4.3.3",
|
|
40
40
|
"history": "^5.0.1",
|
|
41
|
-
"lodash": "^4.17.21",
|
|
42
41
|
"lodash-es": "^4.17.21",
|
|
43
42
|
"react-responsive": "^8.2.0",
|
|
44
43
|
"react-router": "^5.2.1",
|
|
45
44
|
"react-router-dom": "^5.3.0",
|
|
46
45
|
"semantic-ui-react": "^2.1.2"
|
|
47
46
|
},
|
|
47
|
+
"devDependencies": {
|
|
48
|
+
"lodash": "^4.17.21"
|
|
49
|
+
},
|
|
48
50
|
"peerDependencies": {
|
|
49
51
|
"@reduxjs/toolkit": "1.x",
|
|
50
52
|
"mingo": "5.x",
|
|
@@ -58,5 +60,5 @@
|
|
|
58
60
|
"publishConfig": {
|
|
59
61
|
"access": "public"
|
|
60
62
|
},
|
|
61
|
-
"gitHead": "
|
|
63
|
+
"gitHead": "b6879013941da7b5d8bab398016d4d6209eb681f"
|
|
62
64
|
}
|
package/dist/stats.txt
DELETED
|
@@ -1,94 +0,0 @@
|
|
|
1
|
-
-----------------------------
|
|
2
|
-
Rollup File Analysis
|
|
3
|
-
-----------------------------
|
|
4
|
-
bundle size: 31.437 KB
|
|
5
|
-
original size: 51.808 KB
|
|
6
|
-
code reduction: 39.32 %
|
|
7
|
-
module count: 43
|
|
8
|
-
|
|
9
|
-
/src/layout/components/styles.module.css
|
|
10
|
-
█████░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 10.1 % (3.176 KB)
|
|
11
|
-
/src/layout/components/Layout.tsx
|
|
12
|
-
████░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 8.36 % (2.629 KB)
|
|
13
|
-
/src/content/components/ContentComponent.tsx
|
|
14
|
-
███░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 6.27 % (1.97 KB)
|
|
15
|
-
/src/layout/withLayout.tsx
|
|
16
|
-
███░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 6.22 % (1.955 KB)
|
|
17
|
-
/src/content/components/ActionForm.tsx
|
|
18
|
-
██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 5.3 % (1.667 KB)
|
|
19
|
-
/src/layout/components/LayoutItemWrapper.tsx
|
|
20
|
-
██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 4.78 % (1.503 KB)
|
|
21
|
-
/src/content/components/styles.module.css
|
|
22
|
-
██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 4.67 % (1.469 KB)
|
|
23
|
-
/src/layout/moveItems.ts
|
|
24
|
-
██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 4.46 % (1.401 KB)
|
|
25
|
-
/src/content/components/SidebarItemWrapper.tsx
|
|
26
|
-
█░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 3.78 % (1.189 KB)
|
|
27
|
-
/src/layout/components/DropdownItem.tsx
|
|
28
|
-
█░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 3.75 % (1.179 KB)
|
|
29
|
-
/src/datahooks/DataHooks.tsx
|
|
30
|
-
█░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 3.35 % (1.053 KB)
|
|
31
|
-
/src/layout/utils.tsx
|
|
32
|
-
█░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 2.91 % (915 Bytes)
|
|
33
|
-
/src/hooks/useBuildData.ts
|
|
34
|
-
█░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 2.5 % (785 Bytes)
|
|
35
|
-
/src/layout/components/LayoutItemBar.tsx
|
|
36
|
-
█░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 2.31 % (726 Bytes)
|
|
37
|
-
/src/datahooks/Permissions.tsx
|
|
38
|
-
█░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 2.11 % (663 Bytes)
|
|
39
|
-
/src/content/components/ActionFormSidebarItemComponent.tsx
|
|
40
|
-
█░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 2.11 % (663 Bytes)
|
|
41
|
-
/src/content/createPages.tsx
|
|
42
|
-
█░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 2.07 % (650 Bytes)
|
|
43
|
-
/home/mike/dev/imperium/node_modules/style-inject/dist/style-inject.es.js
|
|
44
|
-
█░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 2.02 % (636 Bytes)
|
|
45
|
-
/src/content/utils.tsx
|
|
46
|
-
█░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 2 % (628 Bytes)
|
|
47
|
-
/src/content/components/Header.tsx
|
|
48
|
-
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.77 % (556 Bytes)
|
|
49
|
-
/src/hooks/useIsActiveRoute.ts
|
|
50
|
-
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.64 % (514 Bytes)
|
|
51
|
-
/src/state.ts
|
|
52
|
-
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.56 % (489 Bytes)
|
|
53
|
-
/src/layout/hooks/useMobileLayout.ts
|
|
54
|
-
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.42 % (445 Bytes)
|
|
55
|
-
/src/content/components/ActionSidebarItemComponent.tsx
|
|
56
|
-
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.15 % (362 Bytes)
|
|
57
|
-
/src/datahooks/ExecutePermissionHook.tsx
|
|
58
|
-
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.1 % (345 Bytes)
|
|
59
|
-
/src/content/components/PlainSidebarItem.tsx
|
|
60
|
-
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.09 % (344 Bytes)
|
|
61
|
-
/src/datahooks/PermissionHooks.tsx
|
|
62
|
-
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.08 % (339 Bytes)
|
|
63
|
-
/src/layout/components/SecondaryMenuToggleItem.tsx
|
|
64
|
-
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.07 % (335 Bytes)
|
|
65
|
-
/src/hooks/useSelectState.ts
|
|
66
|
-
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.04 % (326 Bytes)
|
|
67
|
-
/src/content/types.ts
|
|
68
|
-
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1 % (315 Bytes)
|
|
69
|
-
/src/hooks/useSelectPermission.ts
|
|
70
|
-
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.94 % (294 Bytes)
|
|
71
|
-
/src/content/hooks/useBuildContentData.ts
|
|
72
|
-
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.82 % (257 Bytes)
|
|
73
|
-
/src/layout/components/MenuItem.tsx
|
|
74
|
-
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.8 % (252 Bytes)
|
|
75
|
-
/src/layout/components/PlainItem.tsx
|
|
76
|
-
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.78 % (244 Bytes)
|
|
77
|
-
/src/commonItems.ts
|
|
78
|
-
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.65 % (203 Bytes)
|
|
79
|
-
/src/layout/types.ts
|
|
80
|
-
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.61 % (191 Bytes)
|
|
81
|
-
/src/index.ts
|
|
82
|
-
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.59 % (184 Bytes)
|
|
83
|
-
/src/utils.ts
|
|
84
|
-
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.46 % (145 Bytes)
|
|
85
|
-
/src/types.ts
|
|
86
|
-
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.38 % (121 Bytes)
|
|
87
|
-
/src/datahooks/ExecuteDataHook.tsx
|
|
88
|
-
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.3 % (95 Bytes)
|
|
89
|
-
/src/content/components/CustomSidebarItemComponent.tsx
|
|
90
|
-
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.26 % (83 Bytes)
|
|
91
|
-
/src/layout/components/CustomLayoutItemComponent.tsx
|
|
92
|
-
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.26 % (82 Bytes)
|
|
93
|
-
/src/content/dividerSidebarItem.ts
|
|
94
|
-
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.19 % (59 Bytes)
|