@imperium/layout 12.0.1 → 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":"b668-1"}]},{"name":"state.js","children":[{"name":"src/state.ts","uid":"b668-3"}]},{"name":"layout/withLayout.js","children":[{"name":"src/layout/withLayout.tsx","uid":"b668-5"}]},{"name":"content/dividerSidebarItem.js","children":[{"name":"src/content/dividerSidebarItem.ts","uid":"b668-7"}]},{"name":"content/createPages.js","children":[{"name":"src/content/createPages.tsx","uid":"b668-9"}]},{"name":"layout/hooks/useMobileLayout.js","children":[{"name":"src/layout/hooks/useMobileLayout.ts","uid":"b668-11"}]},{"name":"types.js","children":[{"name":"src/types.ts","uid":"b668-13"}]},{"name":"content/types.js","children":[{"name":"src/content/types.ts","uid":"b668-15"}]},{"name":"datahooks/DataHooks.js","children":[{"name":"src/datahooks/DataHooks.tsx","uid":"b668-17"}]},{"name":"datahooks/PermissionHooks.js","children":[{"name":"src/datahooks/PermissionHooks.tsx","uid":"b668-19"}]},{"name":"datahooks/Permissions.js","children":[{"name":"src/datahooks/Permissions.tsx","uid":"b668-21"}]},{"name":"layout/components/Layout.js","children":[{"name":"src/layout/components/Layout.tsx","uid":"b668-23"}]},{"name":"content/components/ContentComponent.js","children":[{"name":"src/content/components/ContentComponent.tsx","uid":"b668-25"}]},{"name":"datahooks/ExecutePermissionHook.js","children":[{"name":"src/datahooks/ExecutePermissionHook.tsx","uid":"b668-27"}]},{"name":"datahooks/ExecuteDataHook.js","children":[{"name":"src/datahooks/ExecuteDataHook.tsx","uid":"b668-29"}]},{"name":"utils.js","children":[{"name":"src/utils.ts","uid":"b668-31"}]},{"name":"layout/moveItems.js","children":[{"name":"src/layout/moveItems.ts","uid":"b668-33"}]},{"name":"layout/components/styles.module.css.js","children":[{"name":"src/layout/components/styles.module.css","uid":"b668-35"}]},{"name":"content/components/styles.module.css.js","children":[{"name":"src/content/components/styles.module.css","uid":"b668-37"}]},{"name":"layout/components/SecondaryMenuToggleItem.js","children":[{"name":"src/layout/components/SecondaryMenuToggleItem.tsx","uid":"b668-39"}]},{"name":"layout/components/LayoutItemBar.js","children":[{"name":"src/layout/components/LayoutItemBar.tsx","uid":"b668-41"}]},{"name":"content/components/Header.js","children":[{"name":"src/content/components/Header.tsx","uid":"b668-43"}]},{"name":"content/components/SidebarItemWrapper.js","children":[{"name":"src/content/components/SidebarItemWrapper.tsx","uid":"b668-45"}]},{"name":"content/hooks/useBuildContentData.js","children":[{"name":"src/content/hooks/useBuildContentData.ts","uid":"b668-47"}]},{"name":"layout/types.js","children":[{"name":"src/layout/types.ts","uid":"b668-49"}]},{"name":"layout/utils.js","children":[{"name":"src/layout/utils.tsx","uid":"b668-51"}]},{"name":"hooks/useBuildData.js","children":[{"name":"src/hooks/useBuildData.ts","uid":"b668-53"}]},{"name":"layout/components/LayoutItemWrapper.js","children":[{"name":"src/layout/components/LayoutItemWrapper.tsx","uid":"b668-55"}]},{"name":"content/components/ActionFormSidebarItemComponent.js","children":[{"name":"src/content/components/ActionFormSidebarItemComponent.tsx","uid":"b668-57"}]},{"name":"content/components/ActionSidebarItemComponent.js","children":[{"name":"src/content/components/ActionSidebarItemComponent.tsx","uid":"b668-59"}]},{"name":"content/components/CustomSidebarItemComponent.js","children":[{"name":"src/content/components/CustomSidebarItemComponent.tsx","uid":"b668-61"}]},{"name":"content/components/PlainSidebarItem.js","children":[{"name":"src/content/components/PlainSidebarItem.tsx","uid":"b668-63"}]},{"name":"commonItems.js","children":[{"name":"src/commonItems.ts","uid":"b668-65"}]},{"name":"hooks/useIsActiveRoute.js","children":[{"name":"src/hooks/useIsActiveRoute.ts","uid":"b668-67"}]},{"name":"hooks/useSelectPermission.js","children":[{"name":"src/hooks/useSelectPermission.ts","uid":"b668-69"}]},{"name":"hooks/useSelectState.js","children":[{"name":"src/hooks/useSelectState.ts","uid":"b668-71"}]},{"name":"content/utils.js","children":[{"name":"src/content/utils.tsx","uid":"b668-73"}]},{"name":"content/components/ActionForm.js","children":[{"name":"src/content/components/ActionForm.tsx","uid":"b668-75"}]},{"name":"layout/components/CustomLayoutItemComponent.js","children":[{"name":"src/layout/components/CustomLayoutItemComponent.tsx","uid":"b668-77"}]},{"name":"layout/components/DropdownItem.js","children":[{"name":"src/layout/components/DropdownItem.tsx","uid":"b668-79"}]},{"name":"layout/components/MenuItem.js","children":[{"name":"src/layout/components/MenuItem.tsx","uid":"b668-81"}]},{"name":"layout/components/PlainItem.js","children":[{"name":"src/layout/components/PlainItem.tsx","uid":"b668-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":"b668-85"}]}],"isRoot":true},"nodeParts":{"b668-1":{"renderedLength":184,"gzipLength":150,"brotliLength":131,"mainUid":"b668-0"},"b668-3":{"renderedLength":489,"gzipLength":250,"brotliLength":217,"mainUid":"b668-2"},"b668-5":{"renderedLength":1955,"gzipLength":562,"brotliLength":488,"mainUid":"b668-4"},"b668-7":{"renderedLength":59,"gzipLength":73,"brotliLength":63,"mainUid":"b668-6"},"b668-9":{"renderedLength":650,"gzipLength":301,"brotliLength":268,"mainUid":"b668-8"},"b668-11":{"renderedLength":445,"gzipLength":265,"brotliLength":229,"mainUid":"b668-10"},"b668-13":{"renderedLength":121,"gzipLength":111,"brotliLength":90,"mainUid":"b668-12"},"b668-15":{"renderedLength":388,"gzipLength":167,"brotliLength":111,"mainUid":"b668-14"},"b668-17":{"renderedLength":1058,"gzipLength":390,"brotliLength":330,"mainUid":"b668-16"},"b668-19":{"renderedLength":339,"gzipLength":202,"brotliLength":164,"mainUid":"b668-18"},"b668-21":{"renderedLength":663,"gzipLength":327,"brotliLength":285,"mainUid":"b668-20"},"b668-23":{"renderedLength":2638,"gzipLength":748,"brotliLength":635,"mainUid":"b668-22"},"b668-25":{"renderedLength":1970,"gzipLength":653,"brotliLength":565,"mainUid":"b668-24"},"b668-27":{"renderedLength":345,"gzipLength":207,"brotliLength":172,"mainUid":"b668-26"},"b668-29":{"renderedLength":123,"gzipLength":111,"brotliLength":93,"mainUid":"b668-28"},"b668-31":{"renderedLength":145,"gzipLength":117,"brotliLength":116,"mainUid":"b668-30"},"b668-33":{"renderedLength":1401,"gzipLength":376,"brotliLength":347,"mainUid":"b668-32"},"b668-35":{"renderedLength":3176,"gzipLength":928,"brotliLength":762,"mainUid":"b668-34"},"b668-37":{"renderedLength":1639,"gzipLength":581,"brotliLength":473,"mainUid":"b668-36"},"b668-39":{"renderedLength":335,"gzipLength":222,"brotliLength":169,"mainUid":"b668-38"},"b668-41":{"renderedLength":726,"gzipLength":294,"brotliLength":252,"mainUid":"b668-40"},"b668-43":{"renderedLength":1042,"gzipLength":377,"brotliLength":323,"mainUid":"b668-42"},"b668-45":{"renderedLength":1189,"gzipLength":399,"brotliLength":314,"mainUid":"b668-44"},"b668-47":{"renderedLength":257,"gzipLength":158,"brotliLength":122,"mainUid":"b668-46"},"b668-49":{"renderedLength":191,"gzipLength":113,"brotliLength":89,"mainUid":"b668-48"},"b668-51":{"renderedLength":915,"gzipLength":393,"brotliLength":328,"mainUid":"b668-50"},"b668-53":{"renderedLength":785,"gzipLength":364,"brotliLength":321,"mainUid":"b668-52"},"b668-55":{"renderedLength":1503,"gzipLength":487,"brotliLength":399,"mainUid":"b668-54"},"b668-57":{"renderedLength":663,"gzipLength":346,"brotliLength":277,"mainUid":"b668-56"},"b668-59":{"renderedLength":362,"gzipLength":246,"brotliLength":185,"mainUid":"b668-58"},"b668-61":{"renderedLength":83,"gzipLength":97,"brotliLength":66,"mainUid":"b668-60"},"b668-63":{"renderedLength":344,"gzipLength":236,"brotliLength":186,"mainUid":"b668-62"},"b668-65":{"renderedLength":203,"gzipLength":136,"brotliLength":97,"mainUid":"b668-64"},"b668-67":{"renderedLength":514,"gzipLength":227,"brotliLength":187,"mainUid":"b668-66"},"b668-69":{"renderedLength":294,"gzipLength":155,"brotliLength":114,"mainUid":"b668-68"},"b668-71":{"renderedLength":326,"gzipLength":176,"brotliLength":141,"mainUid":"b668-70"},"b668-73":{"renderedLength":628,"gzipLength":259,"brotliLength":219,"mainUid":"b668-72"},"b668-75":{"renderedLength":1667,"gzipLength":624,"brotliLength":519,"mainUid":"b668-74"},"b668-77":{"renderedLength":82,"gzipLength":96,"brotliLength":66,"mainUid":"b668-76"},"b668-79":{"renderedLength":1179,"gzipLength":450,"brotliLength":362,"mainUid":"b668-78"},"b668-81":{"renderedLength":252,"gzipLength":157,"brotliLength":116,"mainUid":"b668-80"},"b668-83":{"renderedLength":244,"gzipLength":177,"brotliLength":145,"mainUid":"b668-82"},"b668-85":{"renderedLength":636,"gzipLength":318,"brotliLength":242,"mainUid":"b668-84"}},"nodeMetas":{"b668-0":{"id":"/src/index.ts","moduleParts":{"index.js":"b668-1"},"imported":[{"uid":"b668-10"},{"uid":"b668-4"},{"uid":"b668-2"},{"uid":"b668-8"},{"uid":"b668-6"}],"importedBy":[],"isEntry":true},"b668-2":{"id":"/src/state.ts","moduleParts":{"state.js":"b668-3"},"imported":[{"uid":"b668-90"},{"uid":"b668-91"}],"importedBy":[{"uid":"b668-0"},{"uid":"b668-10"},{"uid":"b668-20"},{"uid":"b668-22"},{"uid":"b668-24"},{"uid":"b668-26"},{"uid":"b668-52"}]},"b668-4":{"id":"/src/layout/withLayout.tsx","moduleParts":{"layout/withLayout.js":"b668-5"},"imported":[{"uid":"b668-87"},{"uid":"b668-86"},{"uid":"b668-16"},{"uid":"b668-18"},{"uid":"b668-20"},{"uid":"b668-12"},{"uid":"b668-22"}],"importedBy":[{"uid":"b668-0"}]},"b668-6":{"id":"/src/content/dividerSidebarItem.ts","moduleParts":{"content/dividerSidebarItem.js":"b668-7"},"imported":[],"importedBy":[{"uid":"b668-0"}]},"b668-8":{"id":"/src/content/createPages.tsx","moduleParts":{"content/createPages.js":"b668-9"},"imported":[{"uid":"b668-87"},{"uid":"b668-86"},{"uid":"b668-24"},{"uid":"b668-14"}],"importedBy":[{"uid":"b668-0"}]},"b668-10":{"id":"/src/layout/hooks/useMobileLayout.ts","moduleParts":{"layout/hooks/useMobileLayout.js":"b668-11"},"imported":[{"uid":"b668-86"},{"uid":"b668-87"},{"uid":"b668-88"},{"uid":"b668-89"},{"uid":"b668-2"}],"importedBy":[{"uid":"b668-0"}]},"b668-12":{"id":"/src/types.ts","moduleParts":{"types.js":"b668-13"},"imported":[],"importedBy":[{"uid":"b668-4"}]},"b668-14":{"id":"/src/content/types.ts","moduleParts":{"content/types.js":"b668-15"},"imported":[],"importedBy":[{"uid":"b668-8"},{"uid":"b668-42"},{"uid":"b668-44"}]},"b668-16":{"id":"/src/datahooks/DataHooks.tsx","moduleParts":{"datahooks/DataHooks.js":"b668-17"},"imported":[{"uid":"b668-87"},{"uid":"b668-86"},{"uid":"b668-92"},{"uid":"b668-28"}],"importedBy":[{"uid":"b668-4"},{"uid":"b668-24"}]},"b668-18":{"id":"/src/datahooks/PermissionHooks.tsx","moduleParts":{"datahooks/PermissionHooks.js":"b668-19"},"imported":[{"uid":"b668-87"},{"uid":"b668-86"},{"uid":"b668-26"}],"importedBy":[{"uid":"b668-4"}]},"b668-20":{"id":"/src/datahooks/Permissions.tsx","moduleParts":{"datahooks/Permissions.js":"b668-21"},"imported":[{"uid":"b668-87"},{"uid":"b668-93"},{"uid":"b668-86"},{"uid":"b668-88"},{"uid":"b668-2"}],"importedBy":[{"uid":"b668-4"}]},"b668-22":{"id":"/src/layout/components/Layout.tsx","moduleParts":{"layout/components/Layout.js":"b668-23"},"imported":[{"uid":"b668-87"},{"uid":"b668-86"},{"uid":"b668-94"},{"uid":"b668-2"},{"uid":"b668-32"},{"uid":"b668-40"},{"uid":"b668-38"},{"uid":"b668-34"}],"importedBy":[{"uid":"b668-4"}]},"b668-24":{"id":"/src/content/components/ContentComponent.tsx","moduleParts":{"content/components/ContentComponent.js":"b668-25"},"imported":[{"uid":"b668-87"},{"uid":"b668-86"},{"uid":"b668-95"},{"uid":"b668-88"},{"uid":"b668-16"},{"uid":"b668-2"},{"uid":"b668-30"},{"uid":"b668-46"},{"uid":"b668-42"},{"uid":"b668-44"},{"uid":"b668-36"}],"importedBy":[{"uid":"b668-8"}]},"b668-26":{"id":"/src/datahooks/ExecutePermissionHook.tsx","moduleParts":{"datahooks/ExecutePermissionHook.js":"b668-27"},"imported":[{"uid":"b668-87"},{"uid":"b668-88"},{"uid":"b668-2"}],"importedBy":[{"uid":"b668-18"}]},"b668-28":{"id":"/src/datahooks/ExecuteDataHook.tsx","moduleParts":{"datahooks/ExecuteDataHook.js":"b668-29"},"imported":[{"uid":"b668-87"}],"importedBy":[{"uid":"b668-16"}]},"b668-30":{"id":"/src/utils.ts","moduleParts":{"utils.js":"b668-31"},"imported":[{"uid":"b668-95"}],"importedBy":[{"uid":"b668-24"},{"uid":"b668-40"},{"uid":"b668-54"}]},"b668-32":{"id":"/src/layout/moveItems.ts","moduleParts":{"layout/moveItems.js":"b668-33"},"imported":[{"uid":"b668-86"},{"uid":"b668-95"},{"uid":"b668-48"}],"importedBy":[{"uid":"b668-22"}]},"b668-34":{"id":"/src/layout/components/styles.module.css","moduleParts":{"layout/components/styles.module.css.js":"b668-35"},"imported":[{"uid":"b668-84"}],"importedBy":[{"uid":"b668-22"},{"uid":"b668-38"},{"uid":"b668-78"}]},"b668-36":{"id":"/src/content/components/styles.module.css","moduleParts":{"content/components/styles.module.css.js":"b668-37"},"imported":[{"uid":"b668-84"}],"importedBy":[{"uid":"b668-24"},{"uid":"b668-42"}]},"b668-38":{"id":"/src/layout/components/SecondaryMenuToggleItem.tsx","moduleParts":{"layout/components/SecondaryMenuToggleItem.js":"b668-39"},"imported":[{"uid":"b668-87"},{"uid":"b668-94"},{"uid":"b668-34"}],"importedBy":[{"uid":"b668-22"}]},"b668-40":{"id":"/src/layout/components/LayoutItemBar.tsx","moduleParts":{"layout/components/LayoutItemBar.js":"b668-41"},"imported":[{"uid":"b668-87"},{"uid":"b668-86"},{"uid":"b668-94"},{"uid":"b668-30"},{"uid":"b668-50"},{"uid":"b668-54"}],"importedBy":[{"uid":"b668-22"}]},"b668-42":{"id":"/src/content/components/Header.tsx","moduleParts":{"content/components/Header.js":"b668-43"},"imported":[{"uid":"b668-87"},{"uid":"b668-86"},{"uid":"b668-94"},{"uid":"b668-14"},{"uid":"b668-36"}],"importedBy":[{"uid":"b668-24"}]},"b668-44":{"id":"/src/content/components/SidebarItemWrapper.tsx","moduleParts":{"content/components/SidebarItemWrapper.js":"b668-45"},"imported":[{"uid":"b668-87"},{"uid":"b668-86"},{"uid":"b668-96"},{"uid":"b668-94"},{"uid":"b668-46"},{"uid":"b668-14"},{"uid":"b668-56"},{"uid":"b668-58"},{"uid":"b668-60"},{"uid":"b668-62"}],"importedBy":[{"uid":"b668-24"}]},"b668-46":{"id":"/src/content/hooks/useBuildContentData.ts","moduleParts":{"content/hooks/useBuildContentData.js":"b668-47"},"imported":[{"uid":"b668-52"}],"importedBy":[{"uid":"b668-24"},{"uid":"b668-44"}]},"b668-48":{"id":"/src/layout/types.ts","moduleParts":{"layout/types.js":"b668-49"},"imported":[],"importedBy":[{"uid":"b668-32"},{"uid":"b668-54"}]},"b668-50":{"id":"/src/layout/utils.tsx","moduleParts":{"layout/utils.js":"b668-51"},"imported":[{"uid":"b668-87"},{"uid":"b668-92"},{"uid":"b668-94"},{"uid":"b668-64"}],"importedBy":[{"uid":"b668-40"},{"uid":"b668-78"},{"uid":"b668-82"}]},"b668-52":{"id":"/src/hooks/useBuildData.ts","moduleParts":{"hooks/useBuildData.js":"b668-53"},"imported":[{"uid":"b668-93"},{"uid":"b668-86"},{"uid":"b668-95"},{"uid":"b668-92"},{"uid":"b668-2"},{"uid":"b668-66"},{"uid":"b668-68"},{"uid":"b668-70"}],"importedBy":[{"uid":"b668-46"},{"uid":"b668-54"}]},"b668-54":{"id":"/src/layout/components/LayoutItemWrapper.tsx","moduleParts":{"layout/components/LayoutItemWrapper.js":"b668-55"},"imported":[{"uid":"b668-87"},{"uid":"b668-86"},{"uid":"b668-96"},{"uid":"b668-94"},{"uid":"b668-52"},{"uid":"b668-30"},{"uid":"b668-48"},{"uid":"b668-76"},{"uid":"b668-78"},{"uid":"b668-80"},{"uid":"b668-82"}],"importedBy":[{"uid":"b668-40"}]},"b668-56":{"id":"/src/content/components/ActionFormSidebarItemComponent.tsx","moduleParts":{"content/components/ActionFormSidebarItemComponent.js":"b668-57"},"imported":[{"uid":"b668-87"},{"uid":"b668-86"},{"uid":"b668-94"},{"uid":"b668-72"},{"uid":"b668-74"}],"importedBy":[{"uid":"b668-44"}]},"b668-58":{"id":"/src/content/components/ActionSidebarItemComponent.tsx","moduleParts":{"content/components/ActionSidebarItemComponent.js":"b668-59"},"imported":[{"uid":"b668-87"},{"uid":"b668-94"},{"uid":"b668-72"}],"importedBy":[{"uid":"b668-44"}]},"b668-60":{"id":"/src/content/components/CustomSidebarItemComponent.tsx","moduleParts":{"content/components/CustomSidebarItemComponent.js":"b668-61"},"imported":[{"uid":"b668-87"}],"importedBy":[{"uid":"b668-44"}]},"b668-62":{"id":"/src/content/components/PlainSidebarItem.tsx","moduleParts":{"content/components/PlainSidebarItem.js":"b668-63"},"imported":[{"uid":"b668-87"},{"uid":"b668-92"},{"uid":"b668-94"},{"uid":"b668-72"}],"importedBy":[{"uid":"b668-44"}]},"b668-64":{"id":"/src/commonItems.ts","moduleParts":{"commonItems.js":"b668-65"},"imported":[],"importedBy":[{"uid":"b668-50"},{"uid":"b668-66"}]},"b668-66":{"id":"/src/hooks/useIsActiveRoute.ts","moduleParts":{"hooks/useIsActiveRoute.js":"b668-67"},"imported":[{"uid":"b668-97"},{"uid":"b668-64"}],"importedBy":[{"uid":"b668-52"}]},"b668-68":{"id":"/src/hooks/useSelectPermission.ts","moduleParts":{"hooks/useSelectPermission.js":"b668-69"},"imported":[{"uid":"b668-95"}],"importedBy":[{"uid":"b668-52"}]},"b668-70":{"id":"/src/hooks/useSelectState.ts","moduleParts":{"hooks/useSelectState.js":"b668-71"},"imported":[{"uid":"b668-95"}],"importedBy":[{"uid":"b668-52"}]},"b668-72":{"id":"/src/content/utils.tsx","moduleParts":{"content/utils.js":"b668-73"},"imported":[{"uid":"b668-87"},{"uid":"b668-94"}],"importedBy":[{"uid":"b668-56"},{"uid":"b668-58"},{"uid":"b668-62"}]},"b668-74":{"id":"/src/content/components/ActionForm.tsx","moduleParts":{"content/components/ActionForm.js":"b668-75"},"imported":[{"uid":"b668-87"},{"uid":"b668-98"},{"uid":"b668-86"},{"uid":"b668-94"}],"importedBy":[{"uid":"b668-56"}]},"b668-76":{"id":"/src/layout/components/CustomLayoutItemComponent.tsx","moduleParts":{"layout/components/CustomLayoutItemComponent.js":"b668-77"},"imported":[{"uid":"b668-87"}],"importedBy":[{"uid":"b668-54"}]},"b668-78":{"id":"/src/layout/components/DropdownItem.tsx","moduleParts":{"layout/components/DropdownItem.js":"b668-79"},"imported":[{"uid":"b668-87"},{"uid":"b668-86"},{"uid":"b668-94"},{"uid":"b668-50"},{"uid":"b668-34"}],"importedBy":[{"uid":"b668-54"}]},"b668-80":{"id":"/src/layout/components/MenuItem.tsx","moduleParts":{"layout/components/MenuItem.js":"b668-81"},"imported":[{"uid":"b668-87"},{"uid":"b668-94"}],"importedBy":[{"uid":"b668-54"}]},"b668-82":{"id":"/src/layout/components/PlainItem.tsx","moduleParts":{"layout/components/PlainItem.js":"b668-83"},"imported":[{"uid":"b668-87"},{"uid":"b668-94"},{"uid":"b668-50"}],"importedBy":[{"uid":"b668-54"}]},"b668-84":{"id":"/home/mike/dev/imperium/node_modules/style-inject/dist/style-inject.es.js","moduleParts":{"external/style-inject/dist/style-inject.es.js":"b668-85"},"imported":[],"importedBy":[{"uid":"b668-34"},{"uid":"b668-36"}]},"b668-86":{"id":"debug","moduleParts":{},"imported":[],"importedBy":[{"uid":"b668-10"},{"uid":"b668-4"},{"uid":"b668-8"},{"uid":"b668-16"},{"uid":"b668-18"},{"uid":"b668-20"},{"uid":"b668-22"},{"uid":"b668-24"},{"uid":"b668-32"},{"uid":"b668-40"},{"uid":"b668-42"},{"uid":"b668-44"},{"uid":"b668-54"},{"uid":"b668-52"},{"uid":"b668-56"},{"uid":"b668-78"},{"uid":"b668-74"}],"isExternal":true},"b668-87":{"id":"react","moduleParts":{},"imported":[],"importedBy":[{"uid":"b668-10"},{"uid":"b668-4"},{"uid":"b668-8"},{"uid":"b668-16"},{"uid":"b668-18"},{"uid":"b668-20"},{"uid":"b668-22"},{"uid":"b668-24"},{"uid":"b668-28"},{"uid":"b668-26"},{"uid":"b668-40"},{"uid":"b668-38"},{"uid":"b668-42"},{"uid":"b668-44"},{"uid":"b668-50"},{"uid":"b668-54"},{"uid":"b668-56"},{"uid":"b668-58"},{"uid":"b668-60"},{"uid":"b668-62"},{"uid":"b668-76"},{"uid":"b668-78"},{"uid":"b668-80"},{"uid":"b668-82"},{"uid":"b668-72"},{"uid":"b668-74"}],"isExternal":true},"b668-88":{"id":"react-redux","moduleParts":{},"imported":[],"importedBy":[{"uid":"b668-10"},{"uid":"b668-20"},{"uid":"b668-24"},{"uid":"b668-26"}],"isExternal":true},"b668-89":{"id":"react-responsive","moduleParts":{},"imported":[],"importedBy":[{"uid":"b668-10"}],"isExternal":true},"b668-90":{"id":"@imperium/state","moduleParts":{},"imported":[],"importedBy":[{"uid":"b668-2"}],"isExternal":true},"b668-91":{"id":"@reduxjs/toolkit","moduleParts":{},"imported":[],"importedBy":[{"uid":"b668-2"}],"isExternal":true},"b668-92":{"id":"react-router-dom","moduleParts":{},"imported":[],"importedBy":[{"uid":"b668-16"},{"uid":"b668-50"},{"uid":"b668-52"},{"uid":"b668-62"}],"isExternal":true},"b668-93":{"id":"@imperium/auth-client","moduleParts":{},"imported":[],"importedBy":[{"uid":"b668-20"},{"uid":"b668-52"}],"isExternal":true},"b668-94":{"id":"semantic-ui-react","moduleParts":{},"imported":[],"importedBy":[{"uid":"b668-22"},{"uid":"b668-40"},{"uid":"b668-38"},{"uid":"b668-42"},{"uid":"b668-44"},{"uid":"b668-50"},{"uid":"b668-54"},{"uid":"b668-56"},{"uid":"b668-58"},{"uid":"b668-62"},{"uid":"b668-78"},{"uid":"b668-80"},{"uid":"b668-82"},{"uid":"b668-72"},{"uid":"b668-74"}],"isExternal":true},"b668-95":{"id":"lodash-es","moduleParts":{},"imported":[],"importedBy":[{"uid":"b668-24"},{"uid":"b668-32"},{"uid":"b668-30"},{"uid":"b668-52"},{"uid":"b668-68"},{"uid":"b668-70"}],"isExternal":true},"b668-96":{"id":"mingo","moduleParts":{},"imported":[],"importedBy":[{"uid":"b668-44"},{"uid":"b668-54"}],"isExternal":true},"b668-97":{"id":"react-router","moduleParts":{},"imported":[],"importedBy":[{"uid":"b668-66"}],"isExternal":true},"b668-98":{"id":"@thx/controls","moduleParts":{},"imported":[],"importedBy":[{"uid":"b668-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.1",
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,10 +31,10 @@
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",
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
38
  "@thx/controls": "^17.0.1",
39
39
  "debug": "^4.3.3",
40
40
  "history": "^5.0.1",
@@ -60,5 +60,5 @@
60
60
  "publishConfig": {
61
61
  "access": "public"
62
62
  },
63
- "gitHead": "270b06c58dc5b3fb3e8421971bdd4416cbfe3333"
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)