@imperium/layout 12.0.0 → 12.0.2-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.
@@ -1,24 +1,30 @@
1
- import { useContext, useEffect } from 'react';
2
- import { AuthContext } from '@imperium/auth-client';
1
+ import { useEffect } from 'react';
2
+ import { useAuthorization } from '@imperium/auth-client';
3
3
  import debug from 'debug';
4
4
  import { useDispatch } from 'react-redux';
5
5
  import { useLayoutState, actions } from '../state.js';
6
6
 
7
7
  debug("imperium.layout.datahooks.Permissions");
8
8
  function Permissions({ permissions }) {
9
- const ctx = useContext(AuthContext);
9
+ const authorization = useAuthorization();
10
10
  const layoutState = useLayoutState();
11
11
  const dispatch = useDispatch();
12
12
  useEffect(() => {
13
13
  (async function iife() {
14
- permissions.forEach((permission) => {
14
+ const permissionsWithData = permissions.map((permission) => {
15
15
  const data = layoutState.params && Object.keys(layoutState.params).length > 0 ? layoutState.params : void 0;
16
- ctx.authorization.can(permission, data).then((result) => {
17
- dispatch(actions.setPermission({ permission, result }));
16
+ return {
17
+ permission,
18
+ data
19
+ };
20
+ });
21
+ permissionsWithData.forEach((permission) => {
22
+ authorization.can(permission).then((result) => {
23
+ dispatch(actions.setPermission({ ...permission, result }));
18
24
  });
19
25
  });
20
26
  })();
21
- }, [dispatch, permissions, ctx.authorization, layoutState.params]);
27
+ }, [dispatch, permissions, authorization, layoutState.params]);
22
28
  return null;
23
29
  }
24
30
 
@@ -1 +1 @@
1
- {"version":3,"file":"Permissions.js","sources":["../../../src/datahooks/Permissions.tsx"],"sourcesContent":["import {AuthContext} from '@imperium/auth-client';\nimport type {IAuthContext} from '@imperium/auth-client';\nimport debug from 'debug';\nimport {useContext, useEffect} from 'react';\nimport {useDispatch} from 'react-redux';\nimport {actions, useLayoutState} from '../state';\nimport type {PermissionSelector} from '../types';\n\nconst d = debug('imperium.layout.datahooks.Permissions');\n\ninterface PermissionsProps {\n\tpermissions: PermissionSelector;\n}\n\nexport function Permissions({permissions}: PermissionsProps) {\n\tconst ctx = useContext<IAuthContext>(AuthContext);\n\tconst layoutState = useLayoutState();\n\tconst dispatch = useDispatch();\n\n\tuseEffect(() => {\n\t\t(async function iife() {\n\t\t\tpermissions.forEach(permission => {\n\t\t\t\tconst data = layoutState.params && Object.keys(layoutState.params).length > 0 ? layoutState.params : undefined;\n\t\t\t\tctx.authorization.can(permission, data).then(result => {\n\t\t\t\t\tdispatch(actions.setPermission({permission, result}));\n\t\t\t\t});\n\t\t\t});\n\t\t})();\n\t}, [dispatch, permissions, ctx.authorization, layoutState.params]);\n\n\treturn null;\n}\n"],"names":[],"mappings":";;;;;;AAQU,MAAM,uCAAuC,EAAA;AAMhD,SAAA,WAAA,CAAqB,EAAC,WAAgC,EAAA,EAAA;AAC5D,EAAM,MAAA,GAAA,GAAM,WAAyB,WAAW,CAAA,CAAA;AAChD,EAAA,MAAM,cAAc,cAAe,EAAA,CAAA;AACnC,EAAA,MAAM,WAAW,WAAY,EAAA,CAAA;AAE7B,EAAA,SAAA,CAAU,MAAM;AACf,IAAC,CAAsB,eAAA,IAAA,GAAA;AACtB,MAAA,WAAA,CAAY,QAAQ,CAAc,UAAA,KAAA;AACjC,QAAM,MAAA,IAAA,GAAO,WAAY,CAAA,MAAA,IAAU,MAAO,CAAA,IAAA,CAAK,WAAY,CAAA,MAAM,CAAE,CAAA,MAAA,GAAS,CAAI,GAAA,WAAA,CAAY,MAAS,GAAA,KAAA,CAAA,CAAA;AACrG,QAAA,GAAA,CAAI,cAAc,GAAI,CAAA,UAAA,EAAY,IAAI,CAAA,CAAE,KAAK,CAAU,MAAA,KAAA;AACtD,UAAA,QAAA,CAAS,QAAQ,aAAc,CAAA,EAAC,UAAY,EAAA,MAAA,EAAO,CAAC,CAAA,CAAA;AAAA,SACpD,CAAA,CAAA;AAAA,OACD,CAAA,CAAA;AAAA,KACC,GAAA,CAAA;AAAA,GACJ,EAAG,CAAC,QAAU,EAAA,WAAA,EAAa,IAAI,aAAe,EAAA,WAAA,CAAY,MAAM,CAAC,CAAA,CAAA;AAEjE,EAAO,OAAA,IAAA,CAAA;AACR;;;;"}
1
+ {"version":3,"file":"Permissions.js","sources":["../../../src/datahooks/Permissions.tsx"],"sourcesContent":["import {useAuthorization} from '@imperium/auth-client';\nimport debug from 'debug';\nimport {useEffect} from 'react';\nimport {useDispatch} from 'react-redux';\nimport {actions, useLayoutState} from '../state';\nimport type {PermissionSelector} from '../types';\n\nconst d = debug('imperium.layout.datahooks.Permissions');\n\ninterface PermissionsProps {\n\tpermissions: PermissionSelector;\n}\n\nexport function Permissions({permissions}: PermissionsProps) {\n\tconst authorization = useAuthorization();\n\tconst layoutState = useLayoutState();\n\tconst dispatch = useDispatch();\n\n\tuseEffect(() => {\n\t\t(async function iife() {\n\t\t\tconst permissionsWithData = permissions.map(permission => {\n\t\t\t\tconst data = layoutState.params && Object.keys(layoutState.params).length > 0 ? layoutState.params : undefined;\n\t\t\t\treturn {\n\t\t\t\t\tpermission,\n\t\t\t\t\tdata,\n\t\t\t\t};\n\t\t\t});\n\t\t\tpermissionsWithData.forEach(permission => {\n\t\t\t\tauthorization.can(permission).then(result => {\n\t\t\t\t\tdispatch(actions.setPermission({...permission, result}));\n\t\t\t\t});\n\t\t\t});\n\t\t})();\n\t}, [dispatch, permissions, authorization, layoutState.params]);\n\n\treturn null;\n}\n"],"names":[],"mappings":";;;;;;AAOU,MAAM,uCAAuC,EAAA;AAMhD,SAAA,WAAA,CAAqB,EAAC,WAAgC,EAAA,EAAA;AAC5D,EAAA,MAAM,gBAAgB,gBAAiB,EAAA,CAAA;AACvC,EAAA,MAAM,cAAc,cAAe,EAAA,CAAA;AACnC,EAAA,MAAM,WAAW,WAAY,EAAA,CAAA;AAE7B,EAAA,SAAA,CAAU,MAAM;AACf,IAAC,CAAsB,eAAA,IAAA,GAAA;AACtB,MAAM,MAAA,mBAAA,GAAsB,WAAY,CAAA,GAAA,CAAI,CAAc,UAAA,KAAA;AACzD,QAAM,MAAA,IAAA,GAAO,WAAY,CAAA,MAAA,IAAU,MAAO,CAAA,IAAA,CAAK,WAAY,CAAA,MAAM,CAAE,CAAA,MAAA,GAAS,CAAI,GAAA,WAAA,CAAY,MAAS,GAAA,KAAA,CAAA,CAAA;AACrG,QAAO,OAAA;AAAA,UACN,UAAA;AAAA,UACA,IAAA;AAAA,SACD,CAAA;AAAA,OACA,CAAA,CAAA;AACD,MAAA,mBAAA,CAAoB,QAAQ,CAAc,UAAA,KAAA;AACzC,QAAA,aAAA,CAAc,GAAI,CAAA,UAAU,CAAE,CAAA,IAAA,CAAK,CAAU,MAAA,KAAA;AAC5C,UAAA,QAAA,CAAS,QAAQ,aAAc,CAAA,EAAA,GAAI,UAAY,EAAA,MAAA,EAAO,CAAC,CAAA,CAAA;AAAA,SACvD,CAAA,CAAA;AAAA,OACD,CAAA,CAAA;AAAA,KACC,GAAA,CAAA;AAAA,KACD,CAAC,QAAA,EAAU,aAAa,aAAe,EAAA,WAAA,CAAY,MAAM,CAAC,CAAA,CAAA;AAE7D,EAAO,OAAA,IAAA,CAAA;AACR;;;;"}
@@ -1,4 +1,4 @@
1
- import { useAuth } from '@imperium/auth-client';
1
+ import { useAuthenticatedState } from '@imperium/auth-client';
2
2
  import debug from 'debug';
3
3
  import { compact, merge } from 'lodash-es';
4
4
  import { useLocation } from 'react-router-dom';
@@ -9,7 +9,7 @@ import { useSelectState } from './useSelectState.js';
9
9
 
10
10
  debug("imperium.layout.hooks.useBuildData");
11
11
  function useBuildData({ stateSelectorHook, permissionSelectorHook, data, routeItem }) {
12
- const { id } = useAuth();
12
+ const { id } = useAuthenticatedState();
13
13
  const { permissions } = useLayoutState();
14
14
  const state = useSelectState(stateSelectorHook);
15
15
  const loc = useLocation();
@@ -1 +1 @@
1
- {"version":3,"file":"useBuildData.js","sources":["../../../src/hooks/useBuildData.ts"],"sourcesContent":["import {useAuth} from '@imperium/auth-client';\nimport debug from 'debug';\nimport type {Location} from 'history';\nimport {compact, merge} from 'lodash-es';\nimport {useLocation} from 'react-router-dom';\nimport {useLayoutState} from '../state';\nimport type {Data, PermissionSelectorHook, StateSelectorHook} from '../types';\nimport {useIsActiveRoute} from './useIsActiveRoute';\nimport {useSelectPermission} from './useSelectPermission';\nimport {useSelectState} from './useSelectState';\n\nconst d = debug('imperium.layout.hooks.useBuildData');\n\nexport interface UseBuildDataParams {\n\tdata?: Data;\n\trouteItem?: any;\n\tstateSelectorHook?: StateSelectorHook | StateSelectorHook[];\n\tpermissionSelectorHook?: PermissionSelectorHook | PermissionSelectorHook[];\n}\n\nexport function useBuildData({stateSelectorHook, permissionSelectorHook, data, routeItem}: UseBuildDataParams) {\n\tconst {id} = useAuth();\n\tconst {permissions} = useLayoutState();\n\tconst state = useSelectState(stateSelectorHook);\n\tconst loc = useLocation() as Location;\n\tconst route = {\n\t\tpath: compact(loc.pathname.split('/')),\n\t\thash: loc.hash,\n\t\tsearch: new URLSearchParams(loc.search),\n\t};\n\tconst active = useIsActiveRoute({loc, route, state, active: false, id, permissions}, routeItem);\n\tconst permissionsX = useSelectPermission({state, loc, active, route, id, permissions}, permissionSelectorHook);\n\tconst newData: Data = {state, loc, active, route, permissions: {...permissions, ...permissionsX}, id};\n\treturn data ? merge(data, newData) : newData;\n}\n"],"names":[],"mappings":";;;;;;;;;AAWU,MAAM,oCAAoC,EAAA;AAS7C,SAAA,YAAA,CAAsB,EAAC,iBAAA,EAAmB,sBAAwB,EAAA,IAAA,EAAM,SAAgC,EAAA,EAAA;AAC9G,EAAM,MAAA,EAAC,OAAM,OAAQ,EAAA,CAAA;AACrB,EAAM,MAAA,EAAC,gBAAe,cAAe,EAAA,CAAA;AACrC,EAAM,MAAA,KAAA,GAAQ,eAAe,iBAAiB,CAAA,CAAA;AAC9C,EAAA,MAAM,MAAM,WAAY,EAAA,CAAA;AACxB,EAAA,MAAM,KAAQ,GAAA;AAAA,IACb,MAAM,OAAQ,CAAA,GAAA,CAAI,QAAS,CAAA,KAAA,CAAM,GAAG,CAAC,CAAA;AAAA,IACrC,MAAM,GAAI,CAAA,IAAA;AAAA,IACV,MAAQ,EAAA,IAAI,eAAgB,CAAA,GAAA,CAAI,MAAM,CAAA;AAAA,GACvC,CAAA;AACA,EAAM,MAAA,MAAA,GAAS,gBAAiB,CAAA,EAAC,GAAK,EAAA,KAAA,EAAO,KAAO,EAAA,MAAA,EAAQ,KAAO,EAAA,EAAA,EAAI,WAAW,EAAA,EAAG,SAAS,CAAA,CAAA;AAC9F,EAAM,MAAA,YAAA,GAAe,mBAAoB,CAAA,EAAC,KAAO,EAAA,GAAA,EAAK,QAAQ,KAAO,EAAA,EAAA,EAAI,WAAW,EAAA,EAAG,sBAAsB,CAAA,CAAA;AAC7G,EAAM,MAAA,OAAA,GAAgB,EAAC,KAAA,EAAO,GAAK,EAAA,MAAA,EAAQ,KAAO,EAAA,WAAA,EAAa,EAAI,GAAA,WAAA,EAAA,GAAgB,YAAY,EAAA,EAAG,EAAE,EAAA,CAAA;AACpG,EAAA,OAAO,IAAO,GAAA,KAAA,CAAM,IAAM,EAAA,OAAO,CAAI,GAAA,OAAA,CAAA;AACtC;;;;"}
1
+ {"version":3,"file":"useBuildData.js","sources":["../../../src/hooks/useBuildData.ts"],"sourcesContent":["import {useAuthenticatedState} from '@imperium/auth-client';\nimport debug from 'debug';\nimport type {Location} from 'history';\nimport {compact, merge} from 'lodash-es';\nimport {useLocation} from 'react-router-dom';\nimport {useLayoutState} from '../state';\nimport type {Data, PermissionSelectorHook, StateSelectorHook} from '../types';\nimport {useIsActiveRoute} from './useIsActiveRoute';\nimport {useSelectPermission} from './useSelectPermission';\nimport {useSelectState} from './useSelectState';\n\nconst d = debug('imperium.layout.hooks.useBuildData');\n\nexport interface UseBuildDataParams {\n\tdata?: Data;\n\trouteItem?: any;\n\tstateSelectorHook?: StateSelectorHook | StateSelectorHook[];\n\tpermissionSelectorHook?: PermissionSelectorHook | PermissionSelectorHook[];\n}\n\nexport function useBuildData({stateSelectorHook, permissionSelectorHook, data, routeItem}: UseBuildDataParams) {\n\tconst {id} = useAuthenticatedState();\n\tconst {permissions} = useLayoutState();\n\tconst state = useSelectState(stateSelectorHook);\n\tconst loc = useLocation() as Location;\n\tconst route = {\n\t\tpath: compact(loc.pathname.split('/')),\n\t\thash: loc.hash,\n\t\tsearch: new URLSearchParams(loc.search),\n\t};\n\tconst active = useIsActiveRoute({loc, route, state, active: false, id, permissions}, routeItem);\n\tconst permissionsX = useSelectPermission({state, loc, active, route, id, permissions}, permissionSelectorHook);\n\tconst newData: Data = {state, loc, active, route, permissions: {...permissions, ...permissionsX}, id};\n\treturn data ? merge(data, newData) : newData;\n}\n"],"names":[],"mappings":";;;;;;;;;AAWU,MAAM,oCAAoC,EAAA;AAS7C,SAAA,YAAA,CAAsB,EAAC,iBAAA,EAAmB,sBAAwB,EAAA,IAAA,EAAM,SAAgC,EAAA,EAAA;AAC9G,EAAM,MAAA,EAAC,OAAM,qBAAsB,EAAA,CAAA;AACnC,EAAM,MAAA,EAAC,gBAAe,cAAe,EAAA,CAAA;AACrC,EAAM,MAAA,KAAA,GAAQ,eAAe,iBAAiB,CAAA,CAAA;AAC9C,EAAA,MAAM,MAAM,WAAY,EAAA,CAAA;AACxB,EAAA,MAAM,KAAQ,GAAA;AAAA,IACb,MAAM,OAAQ,CAAA,GAAA,CAAI,QAAS,CAAA,KAAA,CAAM,GAAG,CAAC,CAAA;AAAA,IACrC,MAAM,GAAI,CAAA,IAAA;AAAA,IACV,MAAQ,EAAA,IAAI,eAAgB,CAAA,GAAA,CAAI,MAAM,CAAA;AAAA,GACvC,CAAA;AACA,EAAM,MAAA,MAAA,GAAS,gBAAiB,CAAA,EAAC,GAAK,EAAA,KAAA,EAAO,KAAO,EAAA,MAAA,EAAQ,KAAO,EAAA,EAAA,EAAI,WAAW,EAAA,EAAG,SAAS,CAAA,CAAA;AAC9F,EAAM,MAAA,YAAA,GAAe,mBAAoB,CAAA,EAAC,KAAO,EAAA,GAAA,EAAK,QAAQ,KAAO,EAAA,EAAA,EAAI,WAAW,EAAA,EAAG,sBAAsB,CAAA,CAAA;AAC7G,EAAM,MAAA,OAAA,GAAgB,EAAC,KAAA,EAAO,GAAK,EAAA,MAAA,EAAQ,KAAO,EAAA,WAAA,EAAa,EAAI,GAAA,WAAA,EAAA,GAAgB,YAAY,EAAA,EAAG,EAAE,EAAA,CAAA;AACpG,EAAA,OAAO,IAAO,GAAA,KAAA,CAAM,IAAM,EAAA,OAAO,CAAI,GAAA,OAAA,CAAA;AACtC;;;;"}
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":"a306-1"}]},{"name":"state.js","children":[{"name":"src/state.ts","uid":"a306-3"}]},{"name":"content/dividerSidebarItem.js","children":[{"name":"src/content/dividerSidebarItem.ts","uid":"a306-5"}]},{"name":"layout/withLayout.js","children":[{"name":"src/layout/withLayout.tsx","uid":"a306-7"}]},{"name":"content/createPages.js","children":[{"name":"src/content/createPages.tsx","uid":"a306-9"}]},{"name":"layout/hooks/useMobileLayout.js","children":[{"name":"src/layout/hooks/useMobileLayout.ts","uid":"a306-11"}]},{"name":"types.js","children":[{"name":"src/types.ts","uid":"a306-13"}]},{"name":"content/types.js","children":[{"name":"src/content/types.ts","uid":"a306-15"}]},{"name":"datahooks/DataHooks.js","children":[{"name":"src/datahooks/DataHooks.tsx","uid":"a306-17"}]},{"name":"datahooks/PermissionHooks.js","children":[{"name":"src/datahooks/PermissionHooks.tsx","uid":"a306-19"}]},{"name":"datahooks/Permissions.js","children":[{"name":"src/datahooks/Permissions.tsx","uid":"a306-21"}]},{"name":"layout/components/Layout.js","children":[{"name":"src/layout/components/Layout.tsx","uid":"a306-23"}]},{"name":"content/components/ContentComponent.js","children":[{"name":"src/content/components/ContentComponent.tsx","uid":"a306-25"}]},{"name":"datahooks/ExecutePermissionHook.js","children":[{"name":"src/datahooks/ExecutePermissionHook.tsx","uid":"a306-27"}]},{"name":"datahooks/ExecuteDataHook.js","children":[{"name":"src/datahooks/ExecuteDataHook.tsx","uid":"a306-29"}]},{"name":"utils.js","children":[{"name":"src/utils.ts","uid":"a306-31"}]},{"name":"layout/moveItems.js","children":[{"name":"src/layout/moveItems.ts","uid":"a306-33"}]},{"name":"layout/components/styles.module.css.js","children":[{"name":"src/layout/components/styles.module.css","uid":"a306-35"}]},{"name":"content/components/styles.module.css.js","children":[{"name":"src/content/components/styles.module.css","uid":"a306-37"}]},{"name":"layout/components/LayoutItemBar.js","children":[{"name":"src/layout/components/LayoutItemBar.tsx","uid":"a306-39"}]},{"name":"layout/components/SecondaryMenuToggleItem.js","children":[{"name":"src/layout/components/SecondaryMenuToggleItem.tsx","uid":"a306-41"}]},{"name":"content/components/Header.js","children":[{"name":"src/content/components/Header.tsx","uid":"a306-43"}]},{"name":"content/components/SidebarItemWrapper.js","children":[{"name":"src/content/components/SidebarItemWrapper.tsx","uid":"a306-45"}]},{"name":"content/hooks/useBuildContentData.js","children":[{"name":"src/content/hooks/useBuildContentData.ts","uid":"a306-47"}]},{"name":"layout/types.js","children":[{"name":"src/layout/types.ts","uid":"a306-49"}]},{"name":"layout/utils.js","children":[{"name":"src/layout/utils.tsx","uid":"a306-51"}]},{"name":"hooks/useBuildData.js","children":[{"name":"src/hooks/useBuildData.ts","uid":"a306-53"}]},{"name":"layout/components/LayoutItemWrapper.js","children":[{"name":"src/layout/components/LayoutItemWrapper.tsx","uid":"a306-55"}]},{"name":"content/components/ActionFormSidebarItemComponent.js","children":[{"name":"src/content/components/ActionFormSidebarItemComponent.tsx","uid":"a306-57"}]},{"name":"content/components/ActionSidebarItemComponent.js","children":[{"name":"src/content/components/ActionSidebarItemComponent.tsx","uid":"a306-59"}]},{"name":"content/components/CustomSidebarItemComponent.js","children":[{"name":"src/content/components/CustomSidebarItemComponent.tsx","uid":"a306-61"}]},{"name":"content/components/PlainSidebarItem.js","children":[{"name":"src/content/components/PlainSidebarItem.tsx","uid":"a306-63"}]},{"name":"commonItems.js","children":[{"name":"src/commonItems.ts","uid":"a306-65"}]},{"name":"hooks/useSelectPermission.js","children":[{"name":"src/hooks/useSelectPermission.ts","uid":"a306-67"}]},{"name":"hooks/useIsActiveRoute.js","children":[{"name":"src/hooks/useIsActiveRoute.ts","uid":"a306-69"}]},{"name":"hooks/useSelectState.js","children":[{"name":"src/hooks/useSelectState.ts","uid":"a306-71"}]},{"name":"content/utils.js","children":[{"name":"src/content/utils.tsx","uid":"a306-73"}]},{"name":"content/components/ActionForm.js","children":[{"name":"src/content/components/ActionForm.tsx","uid":"a306-75"}]},{"name":"layout/components/DropdownItem.js","children":[{"name":"src/layout/components/DropdownItem.tsx","uid":"a306-77"}]},{"name":"layout/components/CustomLayoutItemComponent.js","children":[{"name":"src/layout/components/CustomLayoutItemComponent.tsx","uid":"a306-79"}]},{"name":"layout/components/MenuItem.js","children":[{"name":"src/layout/components/MenuItem.tsx","uid":"a306-81"}]},{"name":"layout/components/PlainItem.js","children":[{"name":"src/layout/components/PlainItem.tsx","uid":"a306-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":"a306-85"}]}],"isRoot":true},"nodeParts":{"a306-1":{"renderedLength":184,"gzipLength":150,"brotliLength":131,"mainUid":"a306-0"},"a306-3":{"renderedLength":489,"gzipLength":250,"brotliLength":217,"mainUid":"a306-2"},"a306-5":{"renderedLength":59,"gzipLength":73,"brotliLength":63,"mainUid":"a306-4"},"a306-7":{"renderedLength":1955,"gzipLength":562,"brotliLength":488,"mainUid":"a306-6"},"a306-9":{"renderedLength":650,"gzipLength":301,"brotliLength":268,"mainUid":"a306-8"},"a306-11":{"renderedLength":445,"gzipLength":265,"brotliLength":229,"mainUid":"a306-10"},"a306-13":{"renderedLength":121,"gzipLength":111,"brotliLength":90,"mainUid":"a306-12"},"a306-15":{"renderedLength":388,"gzipLength":167,"brotliLength":111,"mainUid":"a306-14"},"a306-17":{"renderedLength":1058,"gzipLength":390,"brotliLength":330,"mainUid":"a306-16"},"a306-19":{"renderedLength":339,"gzipLength":202,"brotliLength":164,"mainUid":"a306-18"},"a306-21":{"renderedLength":663,"gzipLength":327,"brotliLength":285,"mainUid":"a306-20"},"a306-23":{"renderedLength":2638,"gzipLength":748,"brotliLength":635,"mainUid":"a306-22"},"a306-25":{"renderedLength":1970,"gzipLength":653,"brotliLength":565,"mainUid":"a306-24"},"a306-27":{"renderedLength":345,"gzipLength":207,"brotliLength":172,"mainUid":"a306-26"},"a306-29":{"renderedLength":123,"gzipLength":111,"brotliLength":93,"mainUid":"a306-28"},"a306-31":{"renderedLength":145,"gzipLength":117,"brotliLength":116,"mainUid":"a306-30"},"a306-33":{"renderedLength":1401,"gzipLength":376,"brotliLength":347,"mainUid":"a306-32"},"a306-35":{"renderedLength":3176,"gzipLength":928,"brotliLength":762,"mainUid":"a306-34"},"a306-37":{"renderedLength":1639,"gzipLength":581,"brotliLength":473,"mainUid":"a306-36"},"a306-39":{"renderedLength":726,"gzipLength":294,"brotliLength":252,"mainUid":"a306-38"},"a306-41":{"renderedLength":335,"gzipLength":222,"brotliLength":169,"mainUid":"a306-40"},"a306-43":{"renderedLength":1042,"gzipLength":377,"brotliLength":323,"mainUid":"a306-42"},"a306-45":{"renderedLength":1189,"gzipLength":399,"brotliLength":314,"mainUid":"a306-44"},"a306-47":{"renderedLength":257,"gzipLength":158,"brotliLength":122,"mainUid":"a306-46"},"a306-49":{"renderedLength":191,"gzipLength":113,"brotliLength":89,"mainUid":"a306-48"},"a306-51":{"renderedLength":915,"gzipLength":393,"brotliLength":328,"mainUid":"a306-50"},"a306-53":{"renderedLength":785,"gzipLength":364,"brotliLength":321,"mainUid":"a306-52"},"a306-55":{"renderedLength":1503,"gzipLength":487,"brotliLength":399,"mainUid":"a306-54"},"a306-57":{"renderedLength":663,"gzipLength":346,"brotliLength":277,"mainUid":"a306-56"},"a306-59":{"renderedLength":362,"gzipLength":246,"brotliLength":185,"mainUid":"a306-58"},"a306-61":{"renderedLength":83,"gzipLength":97,"brotliLength":66,"mainUid":"a306-60"},"a306-63":{"renderedLength":344,"gzipLength":236,"brotliLength":186,"mainUid":"a306-62"},"a306-65":{"renderedLength":203,"gzipLength":136,"brotliLength":97,"mainUid":"a306-64"},"a306-67":{"renderedLength":294,"gzipLength":155,"brotliLength":114,"mainUid":"a306-66"},"a306-69":{"renderedLength":514,"gzipLength":227,"brotliLength":187,"mainUid":"a306-68"},"a306-71":{"renderedLength":326,"gzipLength":176,"brotliLength":141,"mainUid":"a306-70"},"a306-73":{"renderedLength":628,"gzipLength":259,"brotliLength":219,"mainUid":"a306-72"},"a306-75":{"renderedLength":1667,"gzipLength":624,"brotliLength":519,"mainUid":"a306-74"},"a306-77":{"renderedLength":1179,"gzipLength":450,"brotliLength":362,"mainUid":"a306-76"},"a306-79":{"renderedLength":82,"gzipLength":96,"brotliLength":66,"mainUid":"a306-78"},"a306-81":{"renderedLength":252,"gzipLength":157,"brotliLength":116,"mainUid":"a306-80"},"a306-83":{"renderedLength":244,"gzipLength":177,"brotliLength":145,"mainUid":"a306-82"},"a306-85":{"renderedLength":636,"gzipLength":318,"brotliLength":242,"mainUid":"a306-84"}},"nodeMetas":{"a306-0":{"id":"/src/index.ts","moduleParts":{"index.js":"a306-1"},"imported":[{"uid":"a306-10"},{"uid":"a306-6"},{"uid":"a306-2"},{"uid":"a306-8"},{"uid":"a306-4"}],"importedBy":[],"isEntry":true},"a306-2":{"id":"/src/state.ts","moduleParts":{"state.js":"a306-3"},"imported":[{"uid":"a306-90"},{"uid":"a306-91"}],"importedBy":[{"uid":"a306-0"},{"uid":"a306-10"},{"uid":"a306-20"},{"uid":"a306-22"},{"uid":"a306-24"},{"uid":"a306-26"},{"uid":"a306-52"}]},"a306-4":{"id":"/src/content/dividerSidebarItem.ts","moduleParts":{"content/dividerSidebarItem.js":"a306-5"},"imported":[],"importedBy":[{"uid":"a306-0"}]},"a306-6":{"id":"/src/layout/withLayout.tsx","moduleParts":{"layout/withLayout.js":"a306-7"},"imported":[{"uid":"a306-87"},{"uid":"a306-86"},{"uid":"a306-16"},{"uid":"a306-18"},{"uid":"a306-20"},{"uid":"a306-12"},{"uid":"a306-22"}],"importedBy":[{"uid":"a306-0"}]},"a306-8":{"id":"/src/content/createPages.tsx","moduleParts":{"content/createPages.js":"a306-9"},"imported":[{"uid":"a306-87"},{"uid":"a306-86"},{"uid":"a306-24"},{"uid":"a306-14"}],"importedBy":[{"uid":"a306-0"}]},"a306-10":{"id":"/src/layout/hooks/useMobileLayout.ts","moduleParts":{"layout/hooks/useMobileLayout.js":"a306-11"},"imported":[{"uid":"a306-86"},{"uid":"a306-87"},{"uid":"a306-88"},{"uid":"a306-89"},{"uid":"a306-2"}],"importedBy":[{"uid":"a306-0"}]},"a306-12":{"id":"/src/types.ts","moduleParts":{"types.js":"a306-13"},"imported":[],"importedBy":[{"uid":"a306-6"}]},"a306-14":{"id":"/src/content/types.ts","moduleParts":{"content/types.js":"a306-15"},"imported":[],"importedBy":[{"uid":"a306-8"},{"uid":"a306-42"},{"uid":"a306-44"}]},"a306-16":{"id":"/src/datahooks/DataHooks.tsx","moduleParts":{"datahooks/DataHooks.js":"a306-17"},"imported":[{"uid":"a306-87"},{"uid":"a306-86"},{"uid":"a306-92"},{"uid":"a306-28"}],"importedBy":[{"uid":"a306-6"},{"uid":"a306-24"}]},"a306-18":{"id":"/src/datahooks/PermissionHooks.tsx","moduleParts":{"datahooks/PermissionHooks.js":"a306-19"},"imported":[{"uid":"a306-87"},{"uid":"a306-86"},{"uid":"a306-26"}],"importedBy":[{"uid":"a306-6"}]},"a306-20":{"id":"/src/datahooks/Permissions.tsx","moduleParts":{"datahooks/Permissions.js":"a306-21"},"imported":[{"uid":"a306-87"},{"uid":"a306-93"},{"uid":"a306-86"},{"uid":"a306-88"},{"uid":"a306-2"}],"importedBy":[{"uid":"a306-6"}]},"a306-22":{"id":"/src/layout/components/Layout.tsx","moduleParts":{"layout/components/Layout.js":"a306-23"},"imported":[{"uid":"a306-87"},{"uid":"a306-86"},{"uid":"a306-94"},{"uid":"a306-2"},{"uid":"a306-32"},{"uid":"a306-38"},{"uid":"a306-40"},{"uid":"a306-34"}],"importedBy":[{"uid":"a306-6"}]},"a306-24":{"id":"/src/content/components/ContentComponent.tsx","moduleParts":{"content/components/ContentComponent.js":"a306-25"},"imported":[{"uid":"a306-87"},{"uid":"a306-86"},{"uid":"a306-95"},{"uid":"a306-88"},{"uid":"a306-16"},{"uid":"a306-2"},{"uid":"a306-30"},{"uid":"a306-46"},{"uid":"a306-42"},{"uid":"a306-44"},{"uid":"a306-36"}],"importedBy":[{"uid":"a306-8"}]},"a306-26":{"id":"/src/datahooks/ExecutePermissionHook.tsx","moduleParts":{"datahooks/ExecutePermissionHook.js":"a306-27"},"imported":[{"uid":"a306-87"},{"uid":"a306-88"},{"uid":"a306-2"}],"importedBy":[{"uid":"a306-18"}]},"a306-28":{"id":"/src/datahooks/ExecuteDataHook.tsx","moduleParts":{"datahooks/ExecuteDataHook.js":"a306-29"},"imported":[{"uid":"a306-87"}],"importedBy":[{"uid":"a306-16"}]},"a306-30":{"id":"/src/utils.ts","moduleParts":{"utils.js":"a306-31"},"imported":[{"uid":"a306-95"}],"importedBy":[{"uid":"a306-24"},{"uid":"a306-38"},{"uid":"a306-54"}]},"a306-32":{"id":"/src/layout/moveItems.ts","moduleParts":{"layout/moveItems.js":"a306-33"},"imported":[{"uid":"a306-86"},{"uid":"a306-95"},{"uid":"a306-48"}],"importedBy":[{"uid":"a306-22"}]},"a306-34":{"id":"/src/layout/components/styles.module.css","moduleParts":{"layout/components/styles.module.css.js":"a306-35"},"imported":[{"uid":"a306-84"}],"importedBy":[{"uid":"a306-22"},{"uid":"a306-40"},{"uid":"a306-76"}]},"a306-36":{"id":"/src/content/components/styles.module.css","moduleParts":{"content/components/styles.module.css.js":"a306-37"},"imported":[{"uid":"a306-84"}],"importedBy":[{"uid":"a306-24"},{"uid":"a306-42"}]},"a306-38":{"id":"/src/layout/components/LayoutItemBar.tsx","moduleParts":{"layout/components/LayoutItemBar.js":"a306-39"},"imported":[{"uid":"a306-87"},{"uid":"a306-86"},{"uid":"a306-94"},{"uid":"a306-30"},{"uid":"a306-50"},{"uid":"a306-54"}],"importedBy":[{"uid":"a306-22"}]},"a306-40":{"id":"/src/layout/components/SecondaryMenuToggleItem.tsx","moduleParts":{"layout/components/SecondaryMenuToggleItem.js":"a306-41"},"imported":[{"uid":"a306-87"},{"uid":"a306-94"},{"uid":"a306-34"}],"importedBy":[{"uid":"a306-22"}]},"a306-42":{"id":"/src/content/components/Header.tsx","moduleParts":{"content/components/Header.js":"a306-43"},"imported":[{"uid":"a306-87"},{"uid":"a306-86"},{"uid":"a306-94"},{"uid":"a306-14"},{"uid":"a306-36"}],"importedBy":[{"uid":"a306-24"}]},"a306-44":{"id":"/src/content/components/SidebarItemWrapper.tsx","moduleParts":{"content/components/SidebarItemWrapper.js":"a306-45"},"imported":[{"uid":"a306-87"},{"uid":"a306-86"},{"uid":"a306-96"},{"uid":"a306-94"},{"uid":"a306-46"},{"uid":"a306-14"},{"uid":"a306-56"},{"uid":"a306-58"},{"uid":"a306-60"},{"uid":"a306-62"}],"importedBy":[{"uid":"a306-24"}]},"a306-46":{"id":"/src/content/hooks/useBuildContentData.ts","moduleParts":{"content/hooks/useBuildContentData.js":"a306-47"},"imported":[{"uid":"a306-52"}],"importedBy":[{"uid":"a306-24"},{"uid":"a306-44"}]},"a306-48":{"id":"/src/layout/types.ts","moduleParts":{"layout/types.js":"a306-49"},"imported":[],"importedBy":[{"uid":"a306-32"},{"uid":"a306-54"}]},"a306-50":{"id":"/src/layout/utils.tsx","moduleParts":{"layout/utils.js":"a306-51"},"imported":[{"uid":"a306-87"},{"uid":"a306-92"},{"uid":"a306-94"},{"uid":"a306-64"}],"importedBy":[{"uid":"a306-38"},{"uid":"a306-76"},{"uid":"a306-82"}]},"a306-52":{"id":"/src/hooks/useBuildData.ts","moduleParts":{"hooks/useBuildData.js":"a306-53"},"imported":[{"uid":"a306-93"},{"uid":"a306-86"},{"uid":"a306-95"},{"uid":"a306-92"},{"uid":"a306-2"},{"uid":"a306-68"},{"uid":"a306-66"},{"uid":"a306-70"}],"importedBy":[{"uid":"a306-46"},{"uid":"a306-54"}]},"a306-54":{"id":"/src/layout/components/LayoutItemWrapper.tsx","moduleParts":{"layout/components/LayoutItemWrapper.js":"a306-55"},"imported":[{"uid":"a306-87"},{"uid":"a306-86"},{"uid":"a306-96"},{"uid":"a306-94"},{"uid":"a306-52"},{"uid":"a306-30"},{"uid":"a306-48"},{"uid":"a306-78"},{"uid":"a306-76"},{"uid":"a306-80"},{"uid":"a306-82"}],"importedBy":[{"uid":"a306-38"}]},"a306-56":{"id":"/src/content/components/ActionFormSidebarItemComponent.tsx","moduleParts":{"content/components/ActionFormSidebarItemComponent.js":"a306-57"},"imported":[{"uid":"a306-87"},{"uid":"a306-86"},{"uid":"a306-94"},{"uid":"a306-72"},{"uid":"a306-74"}],"importedBy":[{"uid":"a306-44"}]},"a306-58":{"id":"/src/content/components/ActionSidebarItemComponent.tsx","moduleParts":{"content/components/ActionSidebarItemComponent.js":"a306-59"},"imported":[{"uid":"a306-87"},{"uid":"a306-94"},{"uid":"a306-72"}],"importedBy":[{"uid":"a306-44"}]},"a306-60":{"id":"/src/content/components/CustomSidebarItemComponent.tsx","moduleParts":{"content/components/CustomSidebarItemComponent.js":"a306-61"},"imported":[{"uid":"a306-87"}],"importedBy":[{"uid":"a306-44"}]},"a306-62":{"id":"/src/content/components/PlainSidebarItem.tsx","moduleParts":{"content/components/PlainSidebarItem.js":"a306-63"},"imported":[{"uid":"a306-87"},{"uid":"a306-92"},{"uid":"a306-94"},{"uid":"a306-72"}],"importedBy":[{"uid":"a306-44"}]},"a306-64":{"id":"/src/commonItems.ts","moduleParts":{"commonItems.js":"a306-65"},"imported":[],"importedBy":[{"uid":"a306-50"},{"uid":"a306-68"}]},"a306-66":{"id":"/src/hooks/useSelectPermission.ts","moduleParts":{"hooks/useSelectPermission.js":"a306-67"},"imported":[{"uid":"a306-95"}],"importedBy":[{"uid":"a306-52"}]},"a306-68":{"id":"/src/hooks/useIsActiveRoute.ts","moduleParts":{"hooks/useIsActiveRoute.js":"a306-69"},"imported":[{"uid":"a306-97"},{"uid":"a306-64"}],"importedBy":[{"uid":"a306-52"}]},"a306-70":{"id":"/src/hooks/useSelectState.ts","moduleParts":{"hooks/useSelectState.js":"a306-71"},"imported":[{"uid":"a306-95"}],"importedBy":[{"uid":"a306-52"}]},"a306-72":{"id":"/src/content/utils.tsx","moduleParts":{"content/utils.js":"a306-73"},"imported":[{"uid":"a306-87"},{"uid":"a306-94"}],"importedBy":[{"uid":"a306-56"},{"uid":"a306-58"},{"uid":"a306-62"}]},"a306-74":{"id":"/src/content/components/ActionForm.tsx","moduleParts":{"content/components/ActionForm.js":"a306-75"},"imported":[{"uid":"a306-87"},{"uid":"a306-98"},{"uid":"a306-86"},{"uid":"a306-94"}],"importedBy":[{"uid":"a306-56"}]},"a306-76":{"id":"/src/layout/components/DropdownItem.tsx","moduleParts":{"layout/components/DropdownItem.js":"a306-77"},"imported":[{"uid":"a306-87"},{"uid":"a306-86"},{"uid":"a306-94"},{"uid":"a306-50"},{"uid":"a306-34"}],"importedBy":[{"uid":"a306-54"}]},"a306-78":{"id":"/src/layout/components/CustomLayoutItemComponent.tsx","moduleParts":{"layout/components/CustomLayoutItemComponent.js":"a306-79"},"imported":[{"uid":"a306-87"}],"importedBy":[{"uid":"a306-54"}]},"a306-80":{"id":"/src/layout/components/MenuItem.tsx","moduleParts":{"layout/components/MenuItem.js":"a306-81"},"imported":[{"uid":"a306-87"},{"uid":"a306-94"}],"importedBy":[{"uid":"a306-54"}]},"a306-82":{"id":"/src/layout/components/PlainItem.tsx","moduleParts":{"layout/components/PlainItem.js":"a306-83"},"imported":[{"uid":"a306-87"},{"uid":"a306-94"},{"uid":"a306-50"}],"importedBy":[{"uid":"a306-54"}]},"a306-84":{"id":"/home/mike/dev/imperium/node_modules/style-inject/dist/style-inject.es.js","moduleParts":{"external/style-inject/dist/style-inject.es.js":"a306-85"},"imported":[],"importedBy":[{"uid":"a306-34"},{"uid":"a306-36"}]},"a306-86":{"id":"debug","moduleParts":{},"imported":[],"importedBy":[{"uid":"a306-10"},{"uid":"a306-6"},{"uid":"a306-8"},{"uid":"a306-16"},{"uid":"a306-18"},{"uid":"a306-20"},{"uid":"a306-22"},{"uid":"a306-24"},{"uid":"a306-32"},{"uid":"a306-38"},{"uid":"a306-42"},{"uid":"a306-44"},{"uid":"a306-54"},{"uid":"a306-52"},{"uid":"a306-56"},{"uid":"a306-76"},{"uid":"a306-74"}],"isExternal":true},"a306-87":{"id":"react","moduleParts":{},"imported":[],"importedBy":[{"uid":"a306-10"},{"uid":"a306-6"},{"uid":"a306-8"},{"uid":"a306-16"},{"uid":"a306-18"},{"uid":"a306-20"},{"uid":"a306-22"},{"uid":"a306-24"},{"uid":"a306-28"},{"uid":"a306-26"},{"uid":"a306-38"},{"uid":"a306-40"},{"uid":"a306-42"},{"uid":"a306-44"},{"uid":"a306-50"},{"uid":"a306-54"},{"uid":"a306-56"},{"uid":"a306-58"},{"uid":"a306-60"},{"uid":"a306-62"},{"uid":"a306-78"},{"uid":"a306-76"},{"uid":"a306-80"},{"uid":"a306-82"},{"uid":"a306-72"},{"uid":"a306-74"}],"isExternal":true},"a306-88":{"id":"react-redux","moduleParts":{},"imported":[],"importedBy":[{"uid":"a306-10"},{"uid":"a306-20"},{"uid":"a306-24"},{"uid":"a306-26"}],"isExternal":true},"a306-89":{"id":"react-responsive","moduleParts":{},"imported":[],"importedBy":[{"uid":"a306-10"}],"isExternal":true},"a306-90":{"id":"@imperium/state","moduleParts":{},"imported":[],"importedBy":[{"uid":"a306-2"}],"isExternal":true},"a306-91":{"id":"@reduxjs/toolkit","moduleParts":{},"imported":[],"importedBy":[{"uid":"a306-2"}],"isExternal":true},"a306-92":{"id":"react-router-dom","moduleParts":{},"imported":[],"importedBy":[{"uid":"a306-16"},{"uid":"a306-50"},{"uid":"a306-52"},{"uid":"a306-62"}],"isExternal":true},"a306-93":{"id":"@imperium/auth-client","moduleParts":{},"imported":[],"importedBy":[{"uid":"a306-20"},{"uid":"a306-52"}],"isExternal":true},"a306-94":{"id":"semantic-ui-react","moduleParts":{},"imported":[],"importedBy":[{"uid":"a306-22"},{"uid":"a306-38"},{"uid":"a306-40"},{"uid":"a306-42"},{"uid":"a306-44"},{"uid":"a306-50"},{"uid":"a306-54"},{"uid":"a306-56"},{"uid":"a306-58"},{"uid":"a306-62"},{"uid":"a306-76"},{"uid":"a306-80"},{"uid":"a306-82"},{"uid":"a306-72"},{"uid":"a306-74"}],"isExternal":true},"a306-95":{"id":"lodash-es","moduleParts":{},"imported":[],"importedBy":[{"uid":"a306-24"},{"uid":"a306-32"},{"uid":"a306-30"},{"uid":"a306-52"},{"uid":"a306-66"},{"uid":"a306-70"}],"isExternal":true},"a306-96":{"id":"mingo","moduleParts":{},"imported":[],"importedBy":[{"uid":"a306-44"},{"uid":"a306-54"}],"isExternal":true},"a306-97":{"id":"react-router","moduleParts":{},"imported":[],"importedBy":[{"uid":"a306-68"}],"isExternal":true},"a306-98":{"id":"@thx/controls","moduleParts":{},"imported":[],"importedBy":[{"uid":"a306-74"}],"isExternal":true}},"env":{"rollup":"2.79.1"},"options":{"gzip":true,"brotli":true,"sourcemap":false}};
2672
+ const data = {"version":2,"tree":{"name":"root","children":[{"name":"index.js","children":[{"name":"src/index.ts","uid":"c6a8-1"}]},{"name":"state.js","children":[{"name":"src/state.ts","uid":"c6a8-3"}]},{"name":"content/dividerSidebarItem.js","children":[{"name":"src/content/dividerSidebarItem.ts","uid":"c6a8-5"}]},{"name":"layout/withLayout.js","children":[{"name":"src/layout/withLayout.tsx","uid":"c6a8-7"}]},{"name":"content/createPages.js","children":[{"name":"src/content/createPages.tsx","uid":"c6a8-9"}]},{"name":"layout/hooks/useMobileLayout.js","children":[{"name":"src/layout/hooks/useMobileLayout.ts","uid":"c6a8-11"}]},{"name":"types.js","children":[{"name":"src/types.ts","uid":"c6a8-13"}]},{"name":"content/types.js","children":[{"name":"src/content/types.ts","uid":"c6a8-15"}]},{"name":"datahooks/DataHooks.js","children":[{"name":"src/datahooks/DataHooks.tsx","uid":"c6a8-17"}]},{"name":"datahooks/PermissionHooks.js","children":[{"name":"src/datahooks/PermissionHooks.tsx","uid":"c6a8-19"}]},{"name":"datahooks/Permissions.js","children":[{"name":"src/datahooks/Permissions.tsx","uid":"c6a8-21"}]},{"name":"content/components/ContentComponent.js","children":[{"name":"src/content/components/ContentComponent.tsx","uid":"c6a8-23"}]},{"name":"layout/components/Layout.js","children":[{"name":"src/layout/components/Layout.tsx","uid":"c6a8-25"}]},{"name":"utils.js","children":[{"name":"src/utils.ts","uid":"c6a8-27"}]},{"name":"datahooks/ExecuteDataHook.js","children":[{"name":"src/datahooks/ExecuteDataHook.tsx","uid":"c6a8-29"}]},{"name":"datahooks/ExecutePermissionHook.js","children":[{"name":"src/datahooks/ExecutePermissionHook.tsx","uid":"c6a8-31"}]},{"name":"layout/moveItems.js","children":[{"name":"src/layout/moveItems.ts","uid":"c6a8-33"}]},{"name":"layout/components/styles.module.css.js","children":[{"name":"src/layout/components/styles.module.css","uid":"c6a8-35"}]},{"name":"content/components/styles.module.css.js","children":[{"name":"src/content/components/styles.module.css","uid":"c6a8-37"}]},{"name":"layout/components/LayoutItemBar.js","children":[{"name":"src/layout/components/LayoutItemBar.tsx","uid":"c6a8-39"}]},{"name":"layout/components/SecondaryMenuToggleItem.js","children":[{"name":"src/layout/components/SecondaryMenuToggleItem.tsx","uid":"c6a8-41"}]},{"name":"content/hooks/useBuildContentData.js","children":[{"name":"src/content/hooks/useBuildContentData.ts","uid":"c6a8-43"}]},{"name":"content/components/Header.js","children":[{"name":"src/content/components/Header.tsx","uid":"c6a8-45"}]},{"name":"content/components/SidebarItemWrapper.js","children":[{"name":"src/content/components/SidebarItemWrapper.tsx","uid":"c6a8-47"}]},{"name":"layout/types.js","children":[{"name":"src/layout/types.ts","uid":"c6a8-49"}]},{"name":"layout/utils.js","children":[{"name":"src/layout/utils.tsx","uid":"c6a8-51"}]},{"name":"hooks/useBuildData.js","children":[{"name":"src/hooks/useBuildData.ts","uid":"c6a8-53"}]},{"name":"layout/components/LayoutItemWrapper.js","children":[{"name":"src/layout/components/LayoutItemWrapper.tsx","uid":"c6a8-55"}]},{"name":"content/components/ActionFormSidebarItemComponent.js","children":[{"name":"src/content/components/ActionFormSidebarItemComponent.tsx","uid":"c6a8-57"}]},{"name":"content/components/ActionSidebarItemComponent.js","children":[{"name":"src/content/components/ActionSidebarItemComponent.tsx","uid":"c6a8-59"}]},{"name":"content/components/CustomSidebarItemComponent.js","children":[{"name":"src/content/components/CustomSidebarItemComponent.tsx","uid":"c6a8-61"}]},{"name":"content/components/PlainSidebarItem.js","children":[{"name":"src/content/components/PlainSidebarItem.tsx","uid":"c6a8-63"}]},{"name":"commonItems.js","children":[{"name":"src/commonItems.ts","uid":"c6a8-65"}]},{"name":"hooks/useSelectPermission.js","children":[{"name":"src/hooks/useSelectPermission.ts","uid":"c6a8-67"}]},{"name":"hooks/useIsActiveRoute.js","children":[{"name":"src/hooks/useIsActiveRoute.ts","uid":"c6a8-69"}]},{"name":"hooks/useSelectState.js","children":[{"name":"src/hooks/useSelectState.ts","uid":"c6a8-71"}]},{"name":"content/utils.js","children":[{"name":"src/content/utils.tsx","uid":"c6a8-73"}]},{"name":"layout/components/CustomLayoutItemComponent.js","children":[{"name":"src/layout/components/CustomLayoutItemComponent.tsx","uid":"c6a8-75"}]},{"name":"layout/components/DropdownItem.js","children":[{"name":"src/layout/components/DropdownItem.tsx","uid":"c6a8-77"}]},{"name":"layout/components/MenuItem.js","children":[{"name":"src/layout/components/MenuItem.tsx","uid":"c6a8-79"}]},{"name":"layout/components/PlainItem.js","children":[{"name":"src/layout/components/PlainItem.tsx","uid":"c6a8-81"}]},{"name":"content/components/ActionForm.js","children":[{"name":"src/content/components/ActionForm.tsx","uid":"c6a8-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":"c6a8-85"}]}],"isRoot":true},"nodeParts":{"c6a8-1":{"renderedLength":184,"gzipLength":150,"brotliLength":131,"mainUid":"c6a8-0"},"c6a8-3":{"renderedLength":489,"gzipLength":250,"brotliLength":217,"mainUid":"c6a8-2"},"c6a8-5":{"renderedLength":59,"gzipLength":73,"brotliLength":63,"mainUid":"c6a8-4"},"c6a8-7":{"renderedLength":1955,"gzipLength":562,"brotliLength":488,"mainUid":"c6a8-6"},"c6a8-9":{"renderedLength":650,"gzipLength":301,"brotliLength":268,"mainUid":"c6a8-8"},"c6a8-11":{"renderedLength":445,"gzipLength":265,"brotliLength":229,"mainUid":"c6a8-10"},"c6a8-13":{"renderedLength":121,"gzipLength":111,"brotliLength":90,"mainUid":"c6a8-12"},"c6a8-15":{"renderedLength":388,"gzipLength":167,"brotliLength":111,"mainUid":"c6a8-14"},"c6a8-17":{"renderedLength":1058,"gzipLength":390,"brotliLength":330,"mainUid":"c6a8-16"},"c6a8-19":{"renderedLength":339,"gzipLength":202,"brotliLength":164,"mainUid":"c6a8-18"},"c6a8-21":{"renderedLength":808,"gzipLength":351,"brotliLength":306,"mainUid":"c6a8-20"},"c6a8-23":{"renderedLength":1970,"gzipLength":653,"brotliLength":565,"mainUid":"c6a8-22"},"c6a8-25":{"renderedLength":2638,"gzipLength":748,"brotliLength":635,"mainUid":"c6a8-24"},"c6a8-27":{"renderedLength":145,"gzipLength":117,"brotliLength":116,"mainUid":"c6a8-26"},"c6a8-29":{"renderedLength":123,"gzipLength":111,"brotliLength":93,"mainUid":"c6a8-28"},"c6a8-31":{"renderedLength":345,"gzipLength":207,"brotliLength":172,"mainUid":"c6a8-30"},"c6a8-33":{"renderedLength":1401,"gzipLength":376,"brotliLength":347,"mainUid":"c6a8-32"},"c6a8-35":{"renderedLength":3176,"gzipLength":928,"brotliLength":762,"mainUid":"c6a8-34"},"c6a8-37":{"renderedLength":1639,"gzipLength":581,"brotliLength":473,"mainUid":"c6a8-36"},"c6a8-39":{"renderedLength":726,"gzipLength":294,"brotliLength":252,"mainUid":"c6a8-38"},"c6a8-41":{"renderedLength":335,"gzipLength":222,"brotliLength":169,"mainUid":"c6a8-40"},"c6a8-43":{"renderedLength":257,"gzipLength":158,"brotliLength":122,"mainUid":"c6a8-42"},"c6a8-45":{"renderedLength":1042,"gzipLength":377,"brotliLength":323,"mainUid":"c6a8-44"},"c6a8-47":{"renderedLength":1189,"gzipLength":399,"brotliLength":314,"mainUid":"c6a8-46"},"c6a8-49":{"renderedLength":191,"gzipLength":113,"brotliLength":89,"mainUid":"c6a8-48"},"c6a8-51":{"renderedLength":915,"gzipLength":393,"brotliLength":328,"mainUid":"c6a8-50"},"c6a8-53":{"renderedLength":799,"gzipLength":370,"brotliLength":330,"mainUid":"c6a8-52"},"c6a8-55":{"renderedLength":1503,"gzipLength":487,"brotliLength":399,"mainUid":"c6a8-54"},"c6a8-57":{"renderedLength":663,"gzipLength":346,"brotliLength":277,"mainUid":"c6a8-56"},"c6a8-59":{"renderedLength":362,"gzipLength":246,"brotliLength":185,"mainUid":"c6a8-58"},"c6a8-61":{"renderedLength":83,"gzipLength":97,"brotliLength":66,"mainUid":"c6a8-60"},"c6a8-63":{"renderedLength":344,"gzipLength":236,"brotliLength":186,"mainUid":"c6a8-62"},"c6a8-65":{"renderedLength":203,"gzipLength":136,"brotliLength":97,"mainUid":"c6a8-64"},"c6a8-67":{"renderedLength":294,"gzipLength":155,"brotliLength":114,"mainUid":"c6a8-66"},"c6a8-69":{"renderedLength":514,"gzipLength":227,"brotliLength":187,"mainUid":"c6a8-68"},"c6a8-71":{"renderedLength":326,"gzipLength":176,"brotliLength":141,"mainUid":"c6a8-70"},"c6a8-73":{"renderedLength":628,"gzipLength":259,"brotliLength":219,"mainUid":"c6a8-72"},"c6a8-75":{"renderedLength":82,"gzipLength":96,"brotliLength":66,"mainUid":"c6a8-74"},"c6a8-77":{"renderedLength":1179,"gzipLength":450,"brotliLength":362,"mainUid":"c6a8-76"},"c6a8-79":{"renderedLength":252,"gzipLength":157,"brotliLength":116,"mainUid":"c6a8-78"},"c6a8-81":{"renderedLength":244,"gzipLength":177,"brotliLength":145,"mainUid":"c6a8-80"},"c6a8-83":{"renderedLength":1667,"gzipLength":624,"brotliLength":519,"mainUid":"c6a8-82"},"c6a8-85":{"renderedLength":636,"gzipLength":318,"brotliLength":242,"mainUid":"c6a8-84"}},"nodeMetas":{"c6a8-0":{"id":"/src/index.ts","moduleParts":{"index.js":"c6a8-1"},"imported":[{"uid":"c6a8-10"},{"uid":"c6a8-6"},{"uid":"c6a8-2"},{"uid":"c6a8-8"},{"uid":"c6a8-4"}],"importedBy":[],"isEntry":true},"c6a8-2":{"id":"/src/state.ts","moduleParts":{"state.js":"c6a8-3"},"imported":[{"uid":"c6a8-90"},{"uid":"c6a8-91"}],"importedBy":[{"uid":"c6a8-0"},{"uid":"c6a8-10"},{"uid":"c6a8-20"},{"uid":"c6a8-24"},{"uid":"c6a8-22"},{"uid":"c6a8-30"},{"uid":"c6a8-52"}]},"c6a8-4":{"id":"/src/content/dividerSidebarItem.ts","moduleParts":{"content/dividerSidebarItem.js":"c6a8-5"},"imported":[],"importedBy":[{"uid":"c6a8-0"}]},"c6a8-6":{"id":"/src/layout/withLayout.tsx","moduleParts":{"layout/withLayout.js":"c6a8-7"},"imported":[{"uid":"c6a8-87"},{"uid":"c6a8-86"},{"uid":"c6a8-16"},{"uid":"c6a8-18"},{"uid":"c6a8-20"},{"uid":"c6a8-12"},{"uid":"c6a8-24"}],"importedBy":[{"uid":"c6a8-0"}]},"c6a8-8":{"id":"/src/content/createPages.tsx","moduleParts":{"content/createPages.js":"c6a8-9"},"imported":[{"uid":"c6a8-87"},{"uid":"c6a8-86"},{"uid":"c6a8-22"},{"uid":"c6a8-14"}],"importedBy":[{"uid":"c6a8-0"}]},"c6a8-10":{"id":"/src/layout/hooks/useMobileLayout.ts","moduleParts":{"layout/hooks/useMobileLayout.js":"c6a8-11"},"imported":[{"uid":"c6a8-86"},{"uid":"c6a8-87"},{"uid":"c6a8-88"},{"uid":"c6a8-89"},{"uid":"c6a8-2"}],"importedBy":[{"uid":"c6a8-0"}]},"c6a8-12":{"id":"/src/types.ts","moduleParts":{"types.js":"c6a8-13"},"imported":[],"importedBy":[{"uid":"c6a8-6"}]},"c6a8-14":{"id":"/src/content/types.ts","moduleParts":{"content/types.js":"c6a8-15"},"imported":[],"importedBy":[{"uid":"c6a8-8"},{"uid":"c6a8-44"},{"uid":"c6a8-46"}]},"c6a8-16":{"id":"/src/datahooks/DataHooks.tsx","moduleParts":{"datahooks/DataHooks.js":"c6a8-17"},"imported":[{"uid":"c6a8-87"},{"uid":"c6a8-86"},{"uid":"c6a8-92"},{"uid":"c6a8-28"}],"importedBy":[{"uid":"c6a8-6"},{"uid":"c6a8-22"}]},"c6a8-18":{"id":"/src/datahooks/PermissionHooks.tsx","moduleParts":{"datahooks/PermissionHooks.js":"c6a8-19"},"imported":[{"uid":"c6a8-87"},{"uid":"c6a8-86"},{"uid":"c6a8-30"}],"importedBy":[{"uid":"c6a8-6"}]},"c6a8-20":{"id":"/src/datahooks/Permissions.tsx","moduleParts":{"datahooks/Permissions.js":"c6a8-21"},"imported":[{"uid":"c6a8-87"},{"uid":"c6a8-93"},{"uid":"c6a8-86"},{"uid":"c6a8-88"},{"uid":"c6a8-2"}],"importedBy":[{"uid":"c6a8-6"}]},"c6a8-22":{"id":"/src/content/components/ContentComponent.tsx","moduleParts":{"content/components/ContentComponent.js":"c6a8-23"},"imported":[{"uid":"c6a8-87"},{"uid":"c6a8-86"},{"uid":"c6a8-95"},{"uid":"c6a8-88"},{"uid":"c6a8-16"},{"uid":"c6a8-2"},{"uid":"c6a8-26"},{"uid":"c6a8-42"},{"uid":"c6a8-44"},{"uid":"c6a8-46"},{"uid":"c6a8-36"}],"importedBy":[{"uid":"c6a8-8"}]},"c6a8-24":{"id":"/src/layout/components/Layout.tsx","moduleParts":{"layout/components/Layout.js":"c6a8-25"},"imported":[{"uid":"c6a8-87"},{"uid":"c6a8-86"},{"uid":"c6a8-94"},{"uid":"c6a8-2"},{"uid":"c6a8-32"},{"uid":"c6a8-38"},{"uid":"c6a8-40"},{"uid":"c6a8-34"}],"importedBy":[{"uid":"c6a8-6"}]},"c6a8-26":{"id":"/src/utils.ts","moduleParts":{"utils.js":"c6a8-27"},"imported":[{"uid":"c6a8-95"}],"importedBy":[{"uid":"c6a8-22"},{"uid":"c6a8-38"},{"uid":"c6a8-54"}]},"c6a8-28":{"id":"/src/datahooks/ExecuteDataHook.tsx","moduleParts":{"datahooks/ExecuteDataHook.js":"c6a8-29"},"imported":[{"uid":"c6a8-87"}],"importedBy":[{"uid":"c6a8-16"}]},"c6a8-30":{"id":"/src/datahooks/ExecutePermissionHook.tsx","moduleParts":{"datahooks/ExecutePermissionHook.js":"c6a8-31"},"imported":[{"uid":"c6a8-87"},{"uid":"c6a8-88"},{"uid":"c6a8-2"}],"importedBy":[{"uid":"c6a8-18"}]},"c6a8-32":{"id":"/src/layout/moveItems.ts","moduleParts":{"layout/moveItems.js":"c6a8-33"},"imported":[{"uid":"c6a8-86"},{"uid":"c6a8-95"},{"uid":"c6a8-48"}],"importedBy":[{"uid":"c6a8-24"}]},"c6a8-34":{"id":"/src/layout/components/styles.module.css","moduleParts":{"layout/components/styles.module.css.js":"c6a8-35"},"imported":[{"uid":"c6a8-84"}],"importedBy":[{"uid":"c6a8-24"},{"uid":"c6a8-40"},{"uid":"c6a8-76"}]},"c6a8-36":{"id":"/src/content/components/styles.module.css","moduleParts":{"content/components/styles.module.css.js":"c6a8-37"},"imported":[{"uid":"c6a8-84"}],"importedBy":[{"uid":"c6a8-22"},{"uid":"c6a8-44"}]},"c6a8-38":{"id":"/src/layout/components/LayoutItemBar.tsx","moduleParts":{"layout/components/LayoutItemBar.js":"c6a8-39"},"imported":[{"uid":"c6a8-87"},{"uid":"c6a8-86"},{"uid":"c6a8-94"},{"uid":"c6a8-26"},{"uid":"c6a8-50"},{"uid":"c6a8-54"}],"importedBy":[{"uid":"c6a8-24"}]},"c6a8-40":{"id":"/src/layout/components/SecondaryMenuToggleItem.tsx","moduleParts":{"layout/components/SecondaryMenuToggleItem.js":"c6a8-41"},"imported":[{"uid":"c6a8-87"},{"uid":"c6a8-94"},{"uid":"c6a8-34"}],"importedBy":[{"uid":"c6a8-24"}]},"c6a8-42":{"id":"/src/content/hooks/useBuildContentData.ts","moduleParts":{"content/hooks/useBuildContentData.js":"c6a8-43"},"imported":[{"uid":"c6a8-52"}],"importedBy":[{"uid":"c6a8-22"},{"uid":"c6a8-46"}]},"c6a8-44":{"id":"/src/content/components/Header.tsx","moduleParts":{"content/components/Header.js":"c6a8-45"},"imported":[{"uid":"c6a8-87"},{"uid":"c6a8-86"},{"uid":"c6a8-94"},{"uid":"c6a8-14"},{"uid":"c6a8-36"}],"importedBy":[{"uid":"c6a8-22"}]},"c6a8-46":{"id":"/src/content/components/SidebarItemWrapper.tsx","moduleParts":{"content/components/SidebarItemWrapper.js":"c6a8-47"},"imported":[{"uid":"c6a8-87"},{"uid":"c6a8-86"},{"uid":"c6a8-96"},{"uid":"c6a8-94"},{"uid":"c6a8-42"},{"uid":"c6a8-14"},{"uid":"c6a8-56"},{"uid":"c6a8-58"},{"uid":"c6a8-60"},{"uid":"c6a8-62"}],"importedBy":[{"uid":"c6a8-22"}]},"c6a8-48":{"id":"/src/layout/types.ts","moduleParts":{"layout/types.js":"c6a8-49"},"imported":[],"importedBy":[{"uid":"c6a8-32"},{"uid":"c6a8-54"}]},"c6a8-50":{"id":"/src/layout/utils.tsx","moduleParts":{"layout/utils.js":"c6a8-51"},"imported":[{"uid":"c6a8-87"},{"uid":"c6a8-92"},{"uid":"c6a8-94"},{"uid":"c6a8-64"}],"importedBy":[{"uid":"c6a8-38"},{"uid":"c6a8-76"},{"uid":"c6a8-80"}]},"c6a8-52":{"id":"/src/hooks/useBuildData.ts","moduleParts":{"hooks/useBuildData.js":"c6a8-53"},"imported":[{"uid":"c6a8-93"},{"uid":"c6a8-86"},{"uid":"c6a8-95"},{"uid":"c6a8-92"},{"uid":"c6a8-2"},{"uid":"c6a8-68"},{"uid":"c6a8-66"},{"uid":"c6a8-70"}],"importedBy":[{"uid":"c6a8-42"},{"uid":"c6a8-54"}]},"c6a8-54":{"id":"/src/layout/components/LayoutItemWrapper.tsx","moduleParts":{"layout/components/LayoutItemWrapper.js":"c6a8-55"},"imported":[{"uid":"c6a8-87"},{"uid":"c6a8-86"},{"uid":"c6a8-96"},{"uid":"c6a8-94"},{"uid":"c6a8-52"},{"uid":"c6a8-26"},{"uid":"c6a8-48"},{"uid":"c6a8-74"},{"uid":"c6a8-76"},{"uid":"c6a8-78"},{"uid":"c6a8-80"}],"importedBy":[{"uid":"c6a8-38"}]},"c6a8-56":{"id":"/src/content/components/ActionFormSidebarItemComponent.tsx","moduleParts":{"content/components/ActionFormSidebarItemComponent.js":"c6a8-57"},"imported":[{"uid":"c6a8-87"},{"uid":"c6a8-86"},{"uid":"c6a8-94"},{"uid":"c6a8-72"},{"uid":"c6a8-82"}],"importedBy":[{"uid":"c6a8-46"}]},"c6a8-58":{"id":"/src/content/components/ActionSidebarItemComponent.tsx","moduleParts":{"content/components/ActionSidebarItemComponent.js":"c6a8-59"},"imported":[{"uid":"c6a8-87"},{"uid":"c6a8-94"},{"uid":"c6a8-72"}],"importedBy":[{"uid":"c6a8-46"}]},"c6a8-60":{"id":"/src/content/components/CustomSidebarItemComponent.tsx","moduleParts":{"content/components/CustomSidebarItemComponent.js":"c6a8-61"},"imported":[{"uid":"c6a8-87"}],"importedBy":[{"uid":"c6a8-46"}]},"c6a8-62":{"id":"/src/content/components/PlainSidebarItem.tsx","moduleParts":{"content/components/PlainSidebarItem.js":"c6a8-63"},"imported":[{"uid":"c6a8-87"},{"uid":"c6a8-92"},{"uid":"c6a8-94"},{"uid":"c6a8-72"}],"importedBy":[{"uid":"c6a8-46"}]},"c6a8-64":{"id":"/src/commonItems.ts","moduleParts":{"commonItems.js":"c6a8-65"},"imported":[],"importedBy":[{"uid":"c6a8-50"},{"uid":"c6a8-68"}]},"c6a8-66":{"id":"/src/hooks/useSelectPermission.ts","moduleParts":{"hooks/useSelectPermission.js":"c6a8-67"},"imported":[{"uid":"c6a8-95"}],"importedBy":[{"uid":"c6a8-52"}]},"c6a8-68":{"id":"/src/hooks/useIsActiveRoute.ts","moduleParts":{"hooks/useIsActiveRoute.js":"c6a8-69"},"imported":[{"uid":"c6a8-97"},{"uid":"c6a8-64"}],"importedBy":[{"uid":"c6a8-52"}]},"c6a8-70":{"id":"/src/hooks/useSelectState.ts","moduleParts":{"hooks/useSelectState.js":"c6a8-71"},"imported":[{"uid":"c6a8-95"}],"importedBy":[{"uid":"c6a8-52"}]},"c6a8-72":{"id":"/src/content/utils.tsx","moduleParts":{"content/utils.js":"c6a8-73"},"imported":[{"uid":"c6a8-87"},{"uid":"c6a8-94"}],"importedBy":[{"uid":"c6a8-56"},{"uid":"c6a8-58"},{"uid":"c6a8-62"}]},"c6a8-74":{"id":"/src/layout/components/CustomLayoutItemComponent.tsx","moduleParts":{"layout/components/CustomLayoutItemComponent.js":"c6a8-75"},"imported":[{"uid":"c6a8-87"}],"importedBy":[{"uid":"c6a8-54"}]},"c6a8-76":{"id":"/src/layout/components/DropdownItem.tsx","moduleParts":{"layout/components/DropdownItem.js":"c6a8-77"},"imported":[{"uid":"c6a8-87"},{"uid":"c6a8-86"},{"uid":"c6a8-94"},{"uid":"c6a8-50"},{"uid":"c6a8-34"}],"importedBy":[{"uid":"c6a8-54"}]},"c6a8-78":{"id":"/src/layout/components/MenuItem.tsx","moduleParts":{"layout/components/MenuItem.js":"c6a8-79"},"imported":[{"uid":"c6a8-87"},{"uid":"c6a8-94"}],"importedBy":[{"uid":"c6a8-54"}]},"c6a8-80":{"id":"/src/layout/components/PlainItem.tsx","moduleParts":{"layout/components/PlainItem.js":"c6a8-81"},"imported":[{"uid":"c6a8-87"},{"uid":"c6a8-94"},{"uid":"c6a8-50"}],"importedBy":[{"uid":"c6a8-54"}]},"c6a8-82":{"id":"/src/content/components/ActionForm.tsx","moduleParts":{"content/components/ActionForm.js":"c6a8-83"},"imported":[{"uid":"c6a8-87"},{"uid":"c6a8-98"},{"uid":"c6a8-86"},{"uid":"c6a8-94"}],"importedBy":[{"uid":"c6a8-56"}]},"c6a8-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":"c6a8-85"},"imported":[],"importedBy":[{"uid":"c6a8-34"},{"uid":"c6a8-36"}]},"c6a8-86":{"id":"debug","moduleParts":{},"imported":[],"importedBy":[{"uid":"c6a8-10"},{"uid":"c6a8-6"},{"uid":"c6a8-8"},{"uid":"c6a8-16"},{"uid":"c6a8-18"},{"uid":"c6a8-20"},{"uid":"c6a8-24"},{"uid":"c6a8-22"},{"uid":"c6a8-32"},{"uid":"c6a8-38"},{"uid":"c6a8-44"},{"uid":"c6a8-46"},{"uid":"c6a8-54"},{"uid":"c6a8-52"},{"uid":"c6a8-56"},{"uid":"c6a8-76"},{"uid":"c6a8-82"}],"isExternal":true},"c6a8-87":{"id":"react","moduleParts":{},"imported":[],"importedBy":[{"uid":"c6a8-10"},{"uid":"c6a8-6"},{"uid":"c6a8-8"},{"uid":"c6a8-16"},{"uid":"c6a8-18"},{"uid":"c6a8-20"},{"uid":"c6a8-24"},{"uid":"c6a8-22"},{"uid":"c6a8-28"},{"uid":"c6a8-30"},{"uid":"c6a8-38"},{"uid":"c6a8-40"},{"uid":"c6a8-44"},{"uid":"c6a8-46"},{"uid":"c6a8-50"},{"uid":"c6a8-54"},{"uid":"c6a8-56"},{"uid":"c6a8-58"},{"uid":"c6a8-60"},{"uid":"c6a8-62"},{"uid":"c6a8-74"},{"uid":"c6a8-76"},{"uid":"c6a8-78"},{"uid":"c6a8-80"},{"uid":"c6a8-72"},{"uid":"c6a8-82"}],"isExternal":true},"c6a8-88":{"id":"react-redux","moduleParts":{},"imported":[],"importedBy":[{"uid":"c6a8-10"},{"uid":"c6a8-20"},{"uid":"c6a8-22"},{"uid":"c6a8-30"}],"isExternal":true},"c6a8-89":{"id":"react-responsive","moduleParts":{},"imported":[],"importedBy":[{"uid":"c6a8-10"}],"isExternal":true},"c6a8-90":{"id":"@imperium/state","moduleParts":{},"imported":[],"importedBy":[{"uid":"c6a8-2"}],"isExternal":true},"c6a8-91":{"id":"@reduxjs/toolkit","moduleParts":{},"imported":[],"importedBy":[{"uid":"c6a8-2"}],"isExternal":true},"c6a8-92":{"id":"react-router-dom","moduleParts":{},"imported":[],"importedBy":[{"uid":"c6a8-16"},{"uid":"c6a8-50"},{"uid":"c6a8-52"},{"uid":"c6a8-62"}],"isExternal":true},"c6a8-93":{"id":"@imperium/auth-client","moduleParts":{},"imported":[],"importedBy":[{"uid":"c6a8-20"},{"uid":"c6a8-52"}],"isExternal":true},"c6a8-94":{"id":"semantic-ui-react","moduleParts":{},"imported":[],"importedBy":[{"uid":"c6a8-24"},{"uid":"c6a8-38"},{"uid":"c6a8-40"},{"uid":"c6a8-44"},{"uid":"c6a8-46"},{"uid":"c6a8-50"},{"uid":"c6a8-54"},{"uid":"c6a8-56"},{"uid":"c6a8-58"},{"uid":"c6a8-62"},{"uid":"c6a8-76"},{"uid":"c6a8-78"},{"uid":"c6a8-80"},{"uid":"c6a8-72"},{"uid":"c6a8-82"}],"isExternal":true},"c6a8-95":{"id":"lodash-es","moduleParts":{},"imported":[],"importedBy":[{"uid":"c6a8-22"},{"uid":"c6a8-32"},{"uid":"c6a8-26"},{"uid":"c6a8-52"},{"uid":"c6a8-66"},{"uid":"c6a8-70"}],"isExternal":true},"c6a8-96":{"id":"mingo","moduleParts":{},"imported":[],"importedBy":[{"uid":"c6a8-46"},{"uid":"c6a8-54"}],"isExternal":true},"c6a8-97":{"id":"react-router","moduleParts":{},"imported":[],"importedBy":[{"uid":"c6a8-68"}],"isExternal":true},"c6a8-98":{"id":"@thx/controls","moduleParts":{},"imported":[],"importedBy":[{"uid":"c6a8-82"}],"isExternal":true}},"env":{"rollup":"2.79.1"},"options":{"gzip":true,"brotli":true,"sourcemap":false}};
2673
2673
 
2674
2674
  const run = () => {
2675
2675
  const width = window.innerWidth;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@imperium/layout",
3
- "version": "12.0.0",
3
+ "version": "12.0.2-alpha.0+8417048",
4
4
  "description": "Imperium Layout package",
5
5
  "bugs": {
6
6
  "url": "https://github.com/darkadept/imperium/issues"
@@ -31,11 +31,11 @@
31
31
  }
32
32
  },
33
33
  "dependencies": {
34
- "@imperium/auth-client": "^12.0.0",
35
- "@imperium/client": "^12.0.0",
36
- "@imperium/router": "^12.0.0",
37
- "@imperium/state": "^12.0.0",
38
- "@thx/controls": "^17.0.0",
34
+ "@imperium/auth-client": "^12.0.2-alpha.0+8417048",
35
+ "@imperium/client": "^12.0.2-alpha.0+8417048",
36
+ "@imperium/router": "^12.0.2-alpha.0+8417048",
37
+ "@imperium/state": "^12.0.2-alpha.0+8417048",
38
+ "@thx/controls": "^17.0.1",
39
39
  "debug": "^4.3.3",
40
40
  "history": "^5.0.1",
41
41
  "lodash-es": "^4.17.21",
@@ -60,5 +60,5 @@
60
60
  "publishConfig": {
61
61
  "access": "public"
62
62
  },
63
- "gitHead": "3b5e5f581367209c854a887eff0a390139350d02"
63
+ "gitHead": "8417048e0f9f0fa89c98847a54fd7e9111833e04"
64
64
  }
package/dist/stats.txt DELETED
@@ -1,94 +0,0 @@
1
- -----------------------------
2
- Rollup File Analysis
3
- -----------------------------
4
- bundle size: 32.208 KB
5
- original size: 52.6 KB
6
- code reduction: 38.77 %
7
- module count: 43
8
-
9
- /src/layout/components/styles.module.css
10
- ████░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 9.86 % (3.176 KB)
11
- /src/layout/components/Layout.tsx
12
- ████░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 8.19 % (2.638 KB)
13
- /src/content/components/ContentComponent.tsx
14
- ███░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 6.12 % (1.97 KB)
15
- /src/layout/withLayout.tsx
16
- ███░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 6.07 % (1.955 KB)
17
- /src/content/components/ActionForm.tsx
18
- ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 5.18 % (1.667 KB)
19
- /src/content/components/styles.module.css
20
- ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 5.09 % (1.639 KB)
21
- /src/layout/components/LayoutItemWrapper.tsx
22
- ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 4.67 % (1.503 KB)
23
- /src/layout/moveItems.ts
24
- ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 4.35 % (1.401 KB)
25
- /src/content/components/SidebarItemWrapper.tsx
26
- █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 3.69 % (1.189 KB)
27
- /src/layout/components/DropdownItem.tsx
28
- █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 3.66 % (1.179 KB)
29
- /src/datahooks/DataHooks.tsx
30
- █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 3.28 % (1.058 KB)
31
- /src/content/components/Header.tsx
32
- █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 3.24 % (1.042 KB)
33
- /src/layout/utils.tsx
34
- █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 2.84 % (915 Bytes)
35
- /src/hooks/useBuildData.ts
36
- █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 2.44 % (785 Bytes)
37
- /src/layout/components/LayoutItemBar.tsx
38
- █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 2.25 % (726 Bytes)
39
- /src/datahooks/Permissions.tsx
40
- █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 2.06 % (663 Bytes)
41
- /src/content/components/ActionFormSidebarItemComponent.tsx
42
- █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 2.06 % (663 Bytes)
43
- /src/content/createPages.tsx
44
- █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 2.02 % (650 Bytes)
45
- /home/mike/dev/imperium/node_modules/style-inject/dist/style-inject.es.js
46
- ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.97 % (636 Bytes)
47
- /src/content/utils.tsx
48
- ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.95 % (628 Bytes)
49
- /src/hooks/useIsActiveRoute.ts
50
- ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.6 % (514 Bytes)
51
- /src/state.ts
52
- ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.52 % (489 Bytes)
53
- /src/layout/hooks/useMobileLayout.ts
54
- ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.38 % (445 Bytes)
55
- /src/content/types.ts
56
- ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.2 % (388 Bytes)
57
- /src/content/components/ActionSidebarItemComponent.tsx
58
- ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.12 % (362 Bytes)
59
- /src/datahooks/ExecutePermissionHook.tsx
60
- ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.07 % (345 Bytes)
61
- /src/content/components/PlainSidebarItem.tsx
62
- ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.07 % (344 Bytes)
63
- /src/datahooks/PermissionHooks.tsx
64
- ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.05 % (339 Bytes)
65
- /src/layout/components/SecondaryMenuToggleItem.tsx
66
- ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.04 % (335 Bytes)
67
- /src/hooks/useSelectState.ts
68
- ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.01 % (326 Bytes)
69
- /src/hooks/useSelectPermission.ts
70
- ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.91 % (294 Bytes)
71
- /src/content/hooks/useBuildContentData.ts
72
- ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.8 % (257 Bytes)
73
- /src/layout/components/MenuItem.tsx
74
- ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.78 % (252 Bytes)
75
- /src/layout/components/PlainItem.tsx
76
- ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.76 % (244 Bytes)
77
- /src/commonItems.ts
78
- ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.63 % (203 Bytes)
79
- /src/layout/types.ts
80
- ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.59 % (191 Bytes)
81
- /src/index.ts
82
- ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.57 % (184 Bytes)
83
- /src/utils.ts
84
- ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.45 % (145 Bytes)
85
- /src/datahooks/ExecuteDataHook.tsx
86
- ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.38 % (123 Bytes)
87
- /src/types.ts
88
- ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.38 % (121 Bytes)
89
- /src/content/components/CustomSidebarItemComponent.tsx
90
- ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.26 % (83 Bytes)
91
- /src/layout/components/CustomLayoutItemComponent.tsx
92
- ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.25 % (82 Bytes)
93
- /src/content/dividerSidebarItem.ts
94
- ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.18 % (59 Bytes)