@imperium/layout 14.7.7 → 14.8.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -12,7 +12,7 @@ function Permissions({ permissions }) {
12
12
  useEffect(() => {
13
13
  (async function iife() {
14
14
  const permissionsWithData = permissions.map((permission) => {
15
- const data = Object.keys(layoutState.params).length > 0 ? layoutState.params : void 0;
15
+ const data = layoutState.params && Object.keys(layoutState.params).length > 0 ? layoutState.params : void 0;
16
16
  return {
17
17
  permission,
18
18
  data
@@ -1 +1 @@
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 = 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\n\t\t\t\t\t.can(permission)\n\t\t\t\t\t.then(result => {\n\t\t\t\t\t\tdispatch(actions.setPermission({...permission, result}));\n\t\t\t\t\t})\n\t\t\t\t\t.catch(err => d(err));\n\t\t\t});\n\t\t})().catch(err => d(err));\n\t}, [dispatch, permissions, authorization, layoutState.params]);\n\n\treturn null;\n}\n"],"names":[],"mappings":";;;;;;AAOA,MAAM,CAAA,GAAI,MAAM,uCAAuC,CAAA,CAAA;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,OAAO,IAAK,CAAA,WAAA,CAAY,MAAM,CAAE,CAAA,MAAA,GAAS,CAAI,GAAA,WAAA,CAAY,MAAS,GAAA,KAAA,CAAA,CAAA;AAC/E,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,CACE,GAAI,CAAA,UAAU,CACd,CAAA,IAAA,CAAK,CAAU,MAAA,KAAA;AACf,UAAA,QAAA,CAAS,QAAQ,aAAc,CAAA,EAAA,GAAI,UAAY,EAAA,MAAA,EAAO,CAAC,CAAA,CAAA;AAAA,SACvD,CACA,CAAA,KAAA,CAAM,CAAO,GAAA,KAAA,CAAA,CAAE,GAAG,CAAC,CAAA,CAAA;AAAA,OACrB,CAAA,CAAA;AAAA,QACG,CAAA,KAAA,CAAM,CAAO,GAAA,KAAA,CAAA,CAAE,GAAG,CAAC,CAAA,CAAA;AAAA,KACtB,CAAC,QAAA,EAAU,aAAa,aAAe,EAAA,WAAA,CAAY,MAAM,CAAC,CAAA,CAAA;AAE7D,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\t// eslint-disable-next-line @typescript-eslint/no-unnecessary-condition\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\n\t\t\t\t\t.can(permission)\n\t\t\t\t\t.then(result => {\n\t\t\t\t\t\tdispatch(actions.setPermission({...permission, result}));\n\t\t\t\t\t})\n\t\t\t\t\t.catch(err => d(err));\n\t\t\t});\n\t\t})().catch(err => d(err));\n\t}, [dispatch, permissions, authorization, layoutState.params]);\n\n\treturn null;\n}\n"],"names":[],"mappings":";;;;;;AAOA,MAAM,CAAA,GAAI,MAAM,uCAAuC,CAAA,CAAA;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;AAEzD,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,CACE,GAAI,CAAA,UAAU,CACd,CAAA,IAAA,CAAK,CAAU,MAAA,KAAA;AACf,UAAA,QAAA,CAAS,QAAQ,aAAc,CAAA,EAAA,GAAI,UAAY,EAAA,MAAA,EAAO,CAAC,CAAA,CAAA;AAAA,SACvD,CACA,CAAA,KAAA,CAAM,CAAO,GAAA,KAAA,CAAA,CAAE,GAAG,CAAC,CAAA,CAAA;AAAA,OACrB,CAAA,CAAA;AAAA,QACG,CAAA,KAAA,CAAM,CAAO,GAAA,KAAA,CAAA,CAAE,GAAG,CAAC,CAAA,CAAA;AAAA,KACtB,CAAC,QAAA,EAAU,aAAa,aAAe,EAAA,WAAA,CAAY,MAAM,CAAC,CAAA,CAAA;AAE7D,EAAO,OAAA,IAAA,CAAA;AACR;;;;"}
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":"1da3-1"}]},{"name":"state.js","children":[{"name":"src/state.ts","uid":"1da3-3"}]},{"name":"content/dividerSidebarItem.js","children":[{"name":"src/content/dividerSidebarItem.ts","uid":"1da3-5"}]},{"name":"layout/withLayout.js","children":[{"name":"src/layout/withLayout.tsx","uid":"1da3-7"}]},{"name":"content/createPages.js","children":[{"name":"src/content/createPages.tsx","uid":"1da3-9"}]},{"name":"types.js","children":[{"name":"src/types.ts","uid":"1da3-11"}]},{"name":"content/types.js","children":[{"name":"src/content/types.ts","uid":"1da3-13"}]},{"name":"datahooks/DataHooks.js","children":[{"name":"src/datahooks/DataHooks.tsx","uid":"1da3-15"}]},{"name":"datahooks/PermissionHooks.js","children":[{"name":"src/datahooks/PermissionHooks.tsx","uid":"1da3-17"}]},{"name":"datahooks/Permissions.js","children":[{"name":"src/datahooks/Permissions.tsx","uid":"1da3-19"}]},{"name":"content/components/ContentComponent.js","children":[{"name":"src/content/components/ContentComponent.tsx","uid":"1da3-21"}]},{"name":"layout/components/Layout.js","children":[{"name":"src/layout/components/Layout.tsx","uid":"1da3-23"}]},{"name":"datahooks/ExecutePermissionHook.js","children":[{"name":"src/datahooks/ExecutePermissionHook.tsx","uid":"1da3-25"}]},{"name":"datahooks/ExecuteDataHook.js","children":[{"name":"src/datahooks/ExecuteDataHook.tsx","uid":"1da3-27"}]},{"name":"utils.js","children":[{"name":"src/utils.ts","uid":"1da3-29"}]},{"name":"layout/moveItems.js","children":[{"name":"src/layout/moveItems.ts","uid":"1da3-31"}]},{"name":"content/components/styles.module.css.js","children":[{"name":"src/content/components/styles.module.css","uid":"1da3-33"}]},{"name":"layout/components/styles.module.css.js","children":[{"name":"src/layout/components/styles.module.css","uid":"1da3-35"}]},{"name":"content/hooks/useBuildContentData.js","children":[{"name":"src/content/hooks/useBuildContentData.ts","uid":"1da3-37"}]},{"name":"content/components/SidebarItemWrapper.js","children":[{"name":"src/content/components/SidebarItemWrapper.tsx","uid":"1da3-39"}]},{"name":"content/components/Header.js","children":[{"name":"src/content/components/Header.tsx","uid":"1da3-41"}]},{"name":"layout/components/LayoutItemBar.js","children":[{"name":"src/layout/components/LayoutItemBar.tsx","uid":"1da3-43"}]},{"name":"layout/components/SecondaryMenuToggleItem.js","children":[{"name":"src/layout/components/SecondaryMenuToggleItem.tsx","uid":"1da3-45"}]},{"name":"layout/types.js","children":[{"name":"src/layout/types.ts","uid":"1da3-47"}]},{"name":"hooks/useBuildData.js","children":[{"name":"src/hooks/useBuildData.ts","uid":"1da3-49"}]},{"name":"layout/utils.js","children":[{"name":"src/layout/utils.tsx","uid":"1da3-51"}]},{"name":"content/components/ActionFormSidebarItemComponent.js","children":[{"name":"src/content/components/ActionFormSidebarItemComponent.tsx","uid":"1da3-53"}]},{"name":"content/components/ActionSidebarItemComponent.js","children":[{"name":"src/content/components/ActionSidebarItemComponent.tsx","uid":"1da3-55"}]},{"name":"content/components/CustomSidebarItemComponent.js","children":[{"name":"src/content/components/CustomSidebarItemComponent.tsx","uid":"1da3-57"}]},{"name":"content/components/PlainSidebarItem.js","children":[{"name":"src/content/components/PlainSidebarItem.tsx","uid":"1da3-59"}]},{"name":"layout/components/LayoutItemWrapper.js","children":[{"name":"src/layout/components/LayoutItemWrapper.tsx","uid":"1da3-61"}]},{"name":"hooks/useIsActiveRoute.js","children":[{"name":"src/hooks/useIsActiveRoute.ts","uid":"1da3-63"}]},{"name":"hooks/useSelectState.js","children":[{"name":"src/hooks/useSelectState.ts","uid":"1da3-65"}]},{"name":"hooks/useSelectPermission.js","children":[{"name":"src/hooks/useSelectPermission.ts","uid":"1da3-67"}]},{"name":"commonItems.js","children":[{"name":"src/commonItems.ts","uid":"1da3-69"}]},{"name":"content/utils.js","children":[{"name":"src/content/utils.tsx","uid":"1da3-71"}]},{"name":"content/components/ActionForm.js","children":[{"name":"src/content/components/ActionForm.tsx","uid":"1da3-73"}]},{"name":"layout/components/CustomLayoutItemComponent.js","children":[{"name":"src/layout/components/CustomLayoutItemComponent.tsx","uid":"1da3-75"}]},{"name":"layout/components/DropdownItem.js","children":[{"name":"src/layout/components/DropdownItem.tsx","uid":"1da3-77"}]},{"name":"layout/components/MenuItem.js","children":[{"name":"src/layout/components/MenuItem.tsx","uid":"1da3-79"}]},{"name":"layout/components/PlainItem.js","children":[{"name":"src/layout/components/PlainItem.tsx","uid":"1da3-81"}]},{"name":"external/style-inject/dist/style-inject.es.js","children":[{"name":"home/artemis/Github/imperium/node_modules/style-inject/dist/style-inject.es.js","uid":"1da3-83"}]}],"isRoot":true},"nodeParts":{"1da3-1":{"renderedLength":144,"gzipLength":131,"brotliLength":106,"mainUid":"1da3-0"},"1da3-3":{"renderedLength":591,"gzipLength":268,"brotliLength":243,"mainUid":"1da3-2"},"1da3-5":{"renderedLength":59,"gzipLength":73,"brotliLength":63,"mainUid":"1da3-4"},"1da3-7":{"renderedLength":1913,"gzipLength":563,"brotliLength":489,"mainUid":"1da3-6"},"1da3-9":{"renderedLength":650,"gzipLength":301,"brotliLength":268,"mainUid":"1da3-8"},"1da3-11":{"renderedLength":121,"gzipLength":111,"brotliLength":90,"mainUid":"1da3-10"},"1da3-13":{"renderedLength":388,"gzipLength":167,"brotliLength":111,"mainUid":"1da3-12"},"1da3-15":{"renderedLength":1058,"gzipLength":390,"brotliLength":330,"mainUid":"1da3-14"},"1da3-17":{"renderedLength":339,"gzipLength":202,"brotliLength":164,"mainUid":"1da3-16"},"1da3-19":{"renderedLength":842,"gzipLength":361,"brotliLength":320,"mainUid":"1da3-18"},"1da3-21":{"renderedLength":3568,"gzipLength":927,"brotliLength":804,"mainUid":"1da3-20"},"1da3-23":{"renderedLength":2512,"gzipLength":751,"brotliLength":636,"mainUid":"1da3-22"},"1da3-25":{"renderedLength":345,"gzipLength":207,"brotliLength":172,"mainUid":"1da3-24"},"1da3-27":{"renderedLength":123,"gzipLength":111,"brotliLength":93,"mainUid":"1da3-26"},"1da3-29":{"renderedLength":145,"gzipLength":117,"brotliLength":116,"mainUid":"1da3-28"},"1da3-31":{"renderedLength":1413,"gzipLength":381,"brotliLength":359,"mainUid":"1da3-30"},"1da3-33":{"renderedLength":2119,"gzipLength":680,"brotliLength":565,"mainUid":"1da3-32"},"1da3-35":{"renderedLength":3176,"gzipLength":928,"brotliLength":762,"mainUid":"1da3-34"},"1da3-37":{"renderedLength":257,"gzipLength":158,"brotliLength":122,"mainUid":"1da3-36"},"1da3-39":{"renderedLength":1183,"gzipLength":394,"brotliLength":310,"mainUid":"1da3-38"},"1da3-41":{"renderedLength":1042,"gzipLength":377,"brotliLength":323,"mainUid":"1da3-40"},"1da3-43":{"renderedLength":726,"gzipLength":294,"brotliLength":252,"mainUid":"1da3-42"},"1da3-45":{"renderedLength":356,"gzipLength":233,"brotliLength":176,"mainUid":"1da3-44"},"1da3-47":{"renderedLength":191,"gzipLength":113,"brotliLength":89,"mainUid":"1da3-46"},"1da3-49":{"renderedLength":799,"gzipLength":370,"brotliLength":330,"mainUid":"1da3-48"},"1da3-51":{"renderedLength":915,"gzipLength":393,"brotliLength":328,"mainUid":"1da3-50"},"1da3-53":{"renderedLength":644,"gzipLength":341,"brotliLength":295,"mainUid":"1da3-52"},"1da3-55":{"renderedLength":343,"gzipLength":239,"brotliLength":181,"mainUid":"1da3-54"},"1da3-57":{"renderedLength":83,"gzipLength":97,"brotliLength":66,"mainUid":"1da3-56"},"1da3-59":{"renderedLength":325,"gzipLength":230,"brotliLength":183,"mainUid":"1da3-58"},"1da3-61":{"renderedLength":1497,"gzipLength":481,"brotliLength":413,"mainUid":"1da3-60"},"1da3-63":{"renderedLength":514,"gzipLength":227,"brotliLength":187,"mainUid":"1da3-62"},"1da3-65":{"renderedLength":326,"gzipLength":176,"brotliLength":141,"mainUid":"1da3-64"},"1da3-67":{"renderedLength":294,"gzipLength":155,"brotliLength":114,"mainUid":"1da3-66"},"1da3-69":{"renderedLength":203,"gzipLength":136,"brotliLength":97,"mainUid":"1da3-68"},"1da3-71":{"renderedLength":628,"gzipLength":259,"brotliLength":219,"mainUid":"1da3-70"},"1da3-73":{"renderedLength":1667,"gzipLength":624,"brotliLength":519,"mainUid":"1da3-72"},"1da3-75":{"renderedLength":82,"gzipLength":96,"brotliLength":66,"mainUid":"1da3-74"},"1da3-77":{"renderedLength":1179,"gzipLength":450,"brotliLength":362,"mainUid":"1da3-76"},"1da3-79":{"renderedLength":252,"gzipLength":157,"brotliLength":116,"mainUid":"1da3-78"},"1da3-81":{"renderedLength":379,"gzipLength":264,"brotliLength":224,"mainUid":"1da3-80"},"1da3-83":{"renderedLength":636,"gzipLength":318,"brotliLength":242,"mainUid":"1da3-82"}},"nodeMetas":{"1da3-0":{"id":"/src/index.ts","moduleParts":{"index.js":"1da3-1"},"imported":[{"uid":"1da3-6"},{"uid":"1da3-2"},{"uid":"1da3-8"},{"uid":"1da3-4"}],"importedBy":[],"isEntry":true},"1da3-2":{"id":"/src/state.ts","moduleParts":{"state.js":"1da3-3"},"imported":[{"uid":"1da3-86"},{"uid":"1da3-87"}],"importedBy":[{"uid":"1da3-0"},{"uid":"1da3-18"},{"uid":"1da3-20"},{"uid":"1da3-24"},{"uid":"1da3-48"}]},"1da3-4":{"id":"/src/content/dividerSidebarItem.ts","moduleParts":{"content/dividerSidebarItem.js":"1da3-5"},"imported":[],"importedBy":[{"uid":"1da3-0"}]},"1da3-6":{"id":"/src/layout/withLayout.tsx","moduleParts":{"layout/withLayout.js":"1da3-7"},"imported":[{"uid":"1da3-84"},{"uid":"1da3-85"},{"uid":"1da3-14"},{"uid":"1da3-16"},{"uid":"1da3-18"},{"uid":"1da3-10"},{"uid":"1da3-22"}],"importedBy":[{"uid":"1da3-0"}]},"1da3-8":{"id":"/src/content/createPages.tsx","moduleParts":{"content/createPages.js":"1da3-9"},"imported":[{"uid":"1da3-84"},{"uid":"1da3-85"},{"uid":"1da3-20"},{"uid":"1da3-12"}],"importedBy":[{"uid":"1da3-0"}]},"1da3-10":{"id":"/src/types.ts","moduleParts":{"types.js":"1da3-11"},"imported":[],"importedBy":[{"uid":"1da3-6"}]},"1da3-12":{"id":"/src/content/types.ts","moduleParts":{"content/types.js":"1da3-13"},"imported":[],"importedBy":[{"uid":"1da3-8"},{"uid":"1da3-40"},{"uid":"1da3-38"}]},"1da3-14":{"id":"/src/datahooks/DataHooks.tsx","moduleParts":{"datahooks/DataHooks.js":"1da3-15"},"imported":[{"uid":"1da3-84"},{"uid":"1da3-85"},{"uid":"1da3-88"},{"uid":"1da3-26"}],"importedBy":[{"uid":"1da3-6"},{"uid":"1da3-20"}]},"1da3-16":{"id":"/src/datahooks/PermissionHooks.tsx","moduleParts":{"datahooks/PermissionHooks.js":"1da3-17"},"imported":[{"uid":"1da3-84"},{"uid":"1da3-85"},{"uid":"1da3-24"}],"importedBy":[{"uid":"1da3-6"}]},"1da3-18":{"id":"/src/datahooks/Permissions.tsx","moduleParts":{"datahooks/Permissions.js":"1da3-19"},"imported":[{"uid":"1da3-84"},{"uid":"1da3-89"},{"uid":"1da3-85"},{"uid":"1da3-90"},{"uid":"1da3-2"}],"importedBy":[{"uid":"1da3-6"}]},"1da3-20":{"id":"/src/content/components/ContentComponent.tsx","moduleParts":{"content/components/ContentComponent.js":"1da3-21"},"imported":[{"uid":"1da3-84"},{"uid":"1da3-85"},{"uid":"1da3-93"},{"uid":"1da3-90"},{"uid":"1da3-92"},{"uid":"1da3-91"},{"uid":"1da3-14"},{"uid":"1da3-2"},{"uid":"1da3-28"},{"uid":"1da3-36"},{"uid":"1da3-40"},{"uid":"1da3-38"},{"uid":"1da3-32"}],"importedBy":[{"uid":"1da3-8"}]},"1da3-22":{"id":"/src/layout/components/Layout.tsx","moduleParts":{"layout/components/Layout.js":"1da3-23"},"imported":[{"uid":"1da3-84"},{"uid":"1da3-85"},{"uid":"1da3-91"},{"uid":"1da3-92"},{"uid":"1da3-30"},{"uid":"1da3-42"},{"uid":"1da3-44"},{"uid":"1da3-34"}],"importedBy":[{"uid":"1da3-6"}]},"1da3-24":{"id":"/src/datahooks/ExecutePermissionHook.tsx","moduleParts":{"datahooks/ExecutePermissionHook.js":"1da3-25"},"imported":[{"uid":"1da3-84"},{"uid":"1da3-90"},{"uid":"1da3-2"}],"importedBy":[{"uid":"1da3-16"}]},"1da3-26":{"id":"/src/datahooks/ExecuteDataHook.tsx","moduleParts":{"datahooks/ExecuteDataHook.js":"1da3-27"},"imported":[{"uid":"1da3-84"}],"importedBy":[{"uid":"1da3-14"}]},"1da3-28":{"id":"/src/utils.ts","moduleParts":{"utils.js":"1da3-29"},"imported":[{"uid":"1da3-93"}],"importedBy":[{"uid":"1da3-20"},{"uid":"1da3-42"},{"uid":"1da3-60"}]},"1da3-30":{"id":"/src/layout/moveItems.ts","moduleParts":{"layout/moveItems.js":"1da3-31"},"imported":[{"uid":"1da3-85"},{"uid":"1da3-93"},{"uid":"1da3-46"}],"importedBy":[{"uid":"1da3-22"}]},"1da3-32":{"id":"/src/content/components/styles.module.css","moduleParts":{"content/components/styles.module.css.js":"1da3-33"},"imported":[{"uid":"1da3-82"}],"importedBy":[{"uid":"1da3-20"},{"uid":"1da3-40"}]},"1da3-34":{"id":"/src/layout/components/styles.module.css","moduleParts":{"layout/components/styles.module.css.js":"1da3-35"},"imported":[{"uid":"1da3-82"}],"importedBy":[{"uid":"1da3-22"},{"uid":"1da3-44"},{"uid":"1da3-76"}]},"1da3-36":{"id":"/src/content/hooks/useBuildContentData.ts","moduleParts":{"content/hooks/useBuildContentData.js":"1da3-37"},"imported":[{"uid":"1da3-48"}],"importedBy":[{"uid":"1da3-20"},{"uid":"1da3-38"}]},"1da3-38":{"id":"/src/content/components/SidebarItemWrapper.tsx","moduleParts":{"content/components/SidebarItemWrapper.js":"1da3-39"},"imported":[{"uid":"1da3-84"},{"uid":"1da3-85"},{"uid":"1da3-94"},{"uid":"1da3-92"},{"uid":"1da3-36"},{"uid":"1da3-12"},{"uid":"1da3-52"},{"uid":"1da3-54"},{"uid":"1da3-56"},{"uid":"1da3-58"}],"importedBy":[{"uid":"1da3-20"}]},"1da3-40":{"id":"/src/content/components/Header.tsx","moduleParts":{"content/components/Header.js":"1da3-41"},"imported":[{"uid":"1da3-84"},{"uid":"1da3-85"},{"uid":"1da3-92"},{"uid":"1da3-12"},{"uid":"1da3-32"}],"importedBy":[{"uid":"1da3-20"}]},"1da3-42":{"id":"/src/layout/components/LayoutItemBar.tsx","moduleParts":{"layout/components/LayoutItemBar.js":"1da3-43"},"imported":[{"uid":"1da3-84"},{"uid":"1da3-85"},{"uid":"1da3-92"},{"uid":"1da3-28"},{"uid":"1da3-50"},{"uid":"1da3-60"}],"importedBy":[{"uid":"1da3-22"}]},"1da3-44":{"id":"/src/layout/components/SecondaryMenuToggleItem.tsx","moduleParts":{"layout/components/SecondaryMenuToggleItem.js":"1da3-45"},"imported":[{"uid":"1da3-84"},{"uid":"1da3-92"},{"uid":"1da3-34"}],"importedBy":[{"uid":"1da3-22"}]},"1da3-46":{"id":"/src/layout/types.ts","moduleParts":{"layout/types.js":"1da3-47"},"imported":[],"importedBy":[{"uid":"1da3-30"},{"uid":"1da3-60"}]},"1da3-48":{"id":"/src/hooks/useBuildData.ts","moduleParts":{"hooks/useBuildData.js":"1da3-49"},"imported":[{"uid":"1da3-89"},{"uid":"1da3-85"},{"uid":"1da3-93"},{"uid":"1da3-88"},{"uid":"1da3-2"},{"uid":"1da3-62"},{"uid":"1da3-66"},{"uid":"1da3-64"}],"importedBy":[{"uid":"1da3-36"},{"uid":"1da3-60"}]},"1da3-50":{"id":"/src/layout/utils.tsx","moduleParts":{"layout/utils.js":"1da3-51"},"imported":[{"uid":"1da3-84"},{"uid":"1da3-88"},{"uid":"1da3-92"},{"uid":"1da3-68"}],"importedBy":[{"uid":"1da3-42"},{"uid":"1da3-76"},{"uid":"1da3-80"}]},"1da3-52":{"id":"/src/content/components/ActionFormSidebarItemComponent.tsx","moduleParts":{"content/components/ActionFormSidebarItemComponent.js":"1da3-53"},"imported":[{"uid":"1da3-84"},{"uid":"1da3-85"},{"uid":"1da3-92"},{"uid":"1da3-70"},{"uid":"1da3-72"}],"importedBy":[{"uid":"1da3-38"}]},"1da3-54":{"id":"/src/content/components/ActionSidebarItemComponent.tsx","moduleParts":{"content/components/ActionSidebarItemComponent.js":"1da3-55"},"imported":[{"uid":"1da3-84"},{"uid":"1da3-92"},{"uid":"1da3-70"}],"importedBy":[{"uid":"1da3-38"}]},"1da3-56":{"id":"/src/content/components/CustomSidebarItemComponent.tsx","moduleParts":{"content/components/CustomSidebarItemComponent.js":"1da3-57"},"imported":[{"uid":"1da3-84"}],"importedBy":[{"uid":"1da3-38"}]},"1da3-58":{"id":"/src/content/components/PlainSidebarItem.tsx","moduleParts":{"content/components/PlainSidebarItem.js":"1da3-59"},"imported":[{"uid":"1da3-84"},{"uid":"1da3-88"},{"uid":"1da3-92"},{"uid":"1da3-70"}],"importedBy":[{"uid":"1da3-38"}]},"1da3-60":{"id":"/src/layout/components/LayoutItemWrapper.tsx","moduleParts":{"layout/components/LayoutItemWrapper.js":"1da3-61"},"imported":[{"uid":"1da3-84"},{"uid":"1da3-85"},{"uid":"1da3-94"},{"uid":"1da3-92"},{"uid":"1da3-48"},{"uid":"1da3-28"},{"uid":"1da3-46"},{"uid":"1da3-74"},{"uid":"1da3-76"},{"uid":"1da3-78"},{"uid":"1da3-80"}],"importedBy":[{"uid":"1da3-42"}]},"1da3-62":{"id":"/src/hooks/useIsActiveRoute.ts","moduleParts":{"hooks/useIsActiveRoute.js":"1da3-63"},"imported":[{"uid":"1da3-95"},{"uid":"1da3-68"}],"importedBy":[{"uid":"1da3-48"}]},"1da3-64":{"id":"/src/hooks/useSelectState.ts","moduleParts":{"hooks/useSelectState.js":"1da3-65"},"imported":[{"uid":"1da3-93"}],"importedBy":[{"uid":"1da3-48"}]},"1da3-66":{"id":"/src/hooks/useSelectPermission.ts","moduleParts":{"hooks/useSelectPermission.js":"1da3-67"},"imported":[{"uid":"1da3-93"}],"importedBy":[{"uid":"1da3-48"}]},"1da3-68":{"id":"/src/commonItems.ts","moduleParts":{"commonItems.js":"1da3-69"},"imported":[],"importedBy":[{"uid":"1da3-50"},{"uid":"1da3-62"}]},"1da3-70":{"id":"/src/content/utils.tsx","moduleParts":{"content/utils.js":"1da3-71"},"imported":[{"uid":"1da3-84"},{"uid":"1da3-92"}],"importedBy":[{"uid":"1da3-52"},{"uid":"1da3-54"},{"uid":"1da3-58"}]},"1da3-72":{"id":"/src/content/components/ActionForm.tsx","moduleParts":{"content/components/ActionForm.js":"1da3-73"},"imported":[{"uid":"1da3-84"},{"uid":"1da3-96"},{"uid":"1da3-85"},{"uid":"1da3-92"}],"importedBy":[{"uid":"1da3-52"}]},"1da3-74":{"id":"/src/layout/components/CustomLayoutItemComponent.tsx","moduleParts":{"layout/components/CustomLayoutItemComponent.js":"1da3-75"},"imported":[{"uid":"1da3-84"}],"importedBy":[{"uid":"1da3-60"}]},"1da3-76":{"id":"/src/layout/components/DropdownItem.tsx","moduleParts":{"layout/components/DropdownItem.js":"1da3-77"},"imported":[{"uid":"1da3-84"},{"uid":"1da3-85"},{"uid":"1da3-92"},{"uid":"1da3-50"},{"uid":"1da3-34"}],"importedBy":[{"uid":"1da3-60"}]},"1da3-78":{"id":"/src/layout/components/MenuItem.tsx","moduleParts":{"layout/components/MenuItem.js":"1da3-79"},"imported":[{"uid":"1da3-84"},{"uid":"1da3-92"}],"importedBy":[{"uid":"1da3-60"}]},"1da3-80":{"id":"/src/layout/components/PlainItem.tsx","moduleParts":{"layout/components/PlainItem.js":"1da3-81"},"imported":[{"uid":"1da3-84"},{"uid":"1da3-91"},{"uid":"1da3-92"},{"uid":"1da3-50"}],"importedBy":[{"uid":"1da3-60"}]},"1da3-82":{"id":"/home/artemis/Github/imperium/node_modules/style-inject/dist/style-inject.es.js","moduleParts":{"external/style-inject/dist/style-inject.es.js":"1da3-83"},"imported":[],"importedBy":[{"uid":"1da3-34"},{"uid":"1da3-32"}]},"1da3-84":{"id":"react","moduleParts":{},"imported":[],"importedBy":[{"uid":"1da3-6"},{"uid":"1da3-8"},{"uid":"1da3-14"},{"uid":"1da3-16"},{"uid":"1da3-18"},{"uid":"1da3-22"},{"uid":"1da3-20"},{"uid":"1da3-26"},{"uid":"1da3-24"},{"uid":"1da3-42"},{"uid":"1da3-44"},{"uid":"1da3-40"},{"uid":"1da3-38"},{"uid":"1da3-50"},{"uid":"1da3-60"},{"uid":"1da3-52"},{"uid":"1da3-54"},{"uid":"1da3-56"},{"uid":"1da3-58"},{"uid":"1da3-74"},{"uid":"1da3-76"},{"uid":"1da3-78"},{"uid":"1da3-80"},{"uid":"1da3-70"},{"uid":"1da3-72"}],"isExternal":true},"1da3-85":{"id":"debug","moduleParts":{},"imported":[],"importedBy":[{"uid":"1da3-6"},{"uid":"1da3-8"},{"uid":"1da3-14"},{"uid":"1da3-16"},{"uid":"1da3-18"},{"uid":"1da3-22"},{"uid":"1da3-20"},{"uid":"1da3-30"},{"uid":"1da3-42"},{"uid":"1da3-40"},{"uid":"1da3-38"},{"uid":"1da3-60"},{"uid":"1da3-48"},{"uid":"1da3-52"},{"uid":"1da3-76"},{"uid":"1da3-72"}],"isExternal":true},"1da3-86":{"id":"@imperium/state","moduleParts":{},"imported":[],"importedBy":[{"uid":"1da3-2"}],"isExternal":true},"1da3-87":{"id":"@reduxjs/toolkit","moduleParts":{},"imported":[],"importedBy":[{"uid":"1da3-2"}],"isExternal":true},"1da3-88":{"id":"react-router-dom","moduleParts":{},"imported":[],"importedBy":[{"uid":"1da3-14"},{"uid":"1da3-50"},{"uid":"1da3-48"},{"uid":"1da3-58"}],"isExternal":true},"1da3-89":{"id":"@imperium/auth-client","moduleParts":{},"imported":[],"importedBy":[{"uid":"1da3-18"},{"uid":"1da3-48"}],"isExternal":true},"1da3-90":{"id":"react-redux","moduleParts":{},"imported":[],"importedBy":[{"uid":"1da3-18"},{"uid":"1da3-20"},{"uid":"1da3-24"}],"isExternal":true},"1da3-91":{"id":"react-responsive","moduleParts":{},"imported":[],"importedBy":[{"uid":"1da3-22"},{"uid":"1da3-20"},{"uid":"1da3-80"}],"isExternal":true},"1da3-92":{"id":"semantic-ui-react","moduleParts":{},"imported":[],"importedBy":[{"uid":"1da3-22"},{"uid":"1da3-20"},{"uid":"1da3-42"},{"uid":"1da3-44"},{"uid":"1da3-40"},{"uid":"1da3-38"},{"uid":"1da3-50"},{"uid":"1da3-60"},{"uid":"1da3-52"},{"uid":"1da3-54"},{"uid":"1da3-58"},{"uid":"1da3-76"},{"uid":"1da3-78"},{"uid":"1da3-80"},{"uid":"1da3-70"},{"uid":"1da3-72"}],"isExternal":true},"1da3-93":{"id":"lodash-es","moduleParts":{},"imported":[],"importedBy":[{"uid":"1da3-20"},{"uid":"1da3-30"},{"uid":"1da3-28"},{"uid":"1da3-48"},{"uid":"1da3-66"},{"uid":"1da3-64"}],"isExternal":true},"1da3-94":{"id":"mingo","moduleParts":{},"imported":[],"importedBy":[{"uid":"1da3-38"},{"uid":"1da3-60"}],"isExternal":true},"1da3-95":{"id":"react-router","moduleParts":{},"imported":[],"importedBy":[{"uid":"1da3-62"}],"isExternal":true},"1da3-96":{"id":"@thx/controls","moduleParts":{},"imported":[],"importedBy":[{"uid":"1da3-72"}],"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":"83f7-1"}]},{"name":"state.js","children":[{"name":"src/state.ts","uid":"83f7-3"}]},{"name":"layout/withLayout.js","children":[{"name":"src/layout/withLayout.tsx","uid":"83f7-5"}]},{"name":"content/dividerSidebarItem.js","children":[{"name":"src/content/dividerSidebarItem.ts","uid":"83f7-7"}]},{"name":"content/createPages.js","children":[{"name":"src/content/createPages.tsx","uid":"83f7-9"}]},{"name":"types.js","children":[{"name":"src/types.ts","uid":"83f7-11"}]},{"name":"content/types.js","children":[{"name":"src/content/types.ts","uid":"83f7-13"}]},{"name":"datahooks/Permissions.js","children":[{"name":"src/datahooks/Permissions.tsx","uid":"83f7-15"}]},{"name":"datahooks/PermissionHooks.js","children":[{"name":"src/datahooks/PermissionHooks.tsx","uid":"83f7-17"}]},{"name":"datahooks/DataHooks.js","children":[{"name":"src/datahooks/DataHooks.tsx","uid":"83f7-19"}]},{"name":"content/components/ContentComponent.js","children":[{"name":"src/content/components/ContentComponent.tsx","uid":"83f7-21"}]},{"name":"layout/components/Layout.js","children":[{"name":"src/layout/components/Layout.tsx","uid":"83f7-23"}]},{"name":"datahooks/ExecuteDataHook.js","children":[{"name":"src/datahooks/ExecuteDataHook.tsx","uid":"83f7-25"}]},{"name":"datahooks/ExecutePermissionHook.js","children":[{"name":"src/datahooks/ExecutePermissionHook.tsx","uid":"83f7-27"}]},{"name":"utils.js","children":[{"name":"src/utils.ts","uid":"83f7-29"}]},{"name":"layout/moveItems.js","children":[{"name":"src/layout/moveItems.ts","uid":"83f7-31"}]},{"name":"layout/components/styles.module.css.js","children":[{"name":"src/layout/components/styles.module.css","uid":"83f7-33"}]},{"name":"content/components/styles.module.css.js","children":[{"name":"src/content/components/styles.module.css","uid":"83f7-35"}]},{"name":"layout/components/LayoutItemBar.js","children":[{"name":"src/layout/components/LayoutItemBar.tsx","uid":"83f7-37"}]},{"name":"layout/components/SecondaryMenuToggleItem.js","children":[{"name":"src/layout/components/SecondaryMenuToggleItem.tsx","uid":"83f7-39"}]},{"name":"content/hooks/useBuildContentData.js","children":[{"name":"src/content/hooks/useBuildContentData.ts","uid":"83f7-41"}]},{"name":"content/components/Header.js","children":[{"name":"src/content/components/Header.tsx","uid":"83f7-43"}]},{"name":"content/components/SidebarItemWrapper.js","children":[{"name":"src/content/components/SidebarItemWrapper.tsx","uid":"83f7-45"}]},{"name":"layout/types.js","children":[{"name":"src/layout/types.ts","uid":"83f7-47"}]},{"name":"layout/utils.js","children":[{"name":"src/layout/utils.tsx","uid":"83f7-49"}]},{"name":"hooks/useBuildData.js","children":[{"name":"src/hooks/useBuildData.ts","uid":"83f7-51"}]},{"name":"layout/components/LayoutItemWrapper.js","children":[{"name":"src/layout/components/LayoutItemWrapper.tsx","uid":"83f7-53"}]},{"name":"content/components/ActionFormSidebarItemComponent.js","children":[{"name":"src/content/components/ActionFormSidebarItemComponent.tsx","uid":"83f7-55"}]},{"name":"content/components/ActionSidebarItemComponent.js","children":[{"name":"src/content/components/ActionSidebarItemComponent.tsx","uid":"83f7-57"}]},{"name":"content/components/CustomSidebarItemComponent.js","children":[{"name":"src/content/components/CustomSidebarItemComponent.tsx","uid":"83f7-59"}]},{"name":"content/components/PlainSidebarItem.js","children":[{"name":"src/content/components/PlainSidebarItem.tsx","uid":"83f7-61"}]},{"name":"commonItems.js","children":[{"name":"src/commonItems.ts","uid":"83f7-63"}]},{"name":"hooks/useIsActiveRoute.js","children":[{"name":"src/hooks/useIsActiveRoute.ts","uid":"83f7-65"}]},{"name":"hooks/useSelectState.js","children":[{"name":"src/hooks/useSelectState.ts","uid":"83f7-67"}]},{"name":"hooks/useSelectPermission.js","children":[{"name":"src/hooks/useSelectPermission.ts","uid":"83f7-69"}]},{"name":"content/utils.js","children":[{"name":"src/content/utils.tsx","uid":"83f7-71"}]},{"name":"content/components/ActionForm.js","children":[{"name":"src/content/components/ActionForm.tsx","uid":"83f7-73"}]},{"name":"layout/components/CustomLayoutItemComponent.js","children":[{"name":"src/layout/components/CustomLayoutItemComponent.tsx","uid":"83f7-75"}]},{"name":"layout/components/DropdownItem.js","children":[{"name":"src/layout/components/DropdownItem.tsx","uid":"83f7-77"}]},{"name":"layout/components/MenuItem.js","children":[{"name":"src/layout/components/MenuItem.tsx","uid":"83f7-79"}]},{"name":"layout/components/PlainItem.js","children":[{"name":"src/layout/components/PlainItem.tsx","uid":"83f7-81"}]},{"name":"external/style-inject/dist/style-inject.es.js","children":[{"name":"home/artemis/Github/imperium/node_modules/style-inject/dist/style-inject.es.js","uid":"83f7-83"}]}],"isRoot":true},"nodeParts":{"83f7-1":{"renderedLength":144,"gzipLength":131,"brotliLength":106,"mainUid":"83f7-0"},"83f7-3":{"renderedLength":591,"gzipLength":268,"brotliLength":243,"mainUid":"83f7-2"},"83f7-5":{"renderedLength":1913,"gzipLength":563,"brotliLength":489,"mainUid":"83f7-4"},"83f7-7":{"renderedLength":59,"gzipLength":73,"brotliLength":63,"mainUid":"83f7-6"},"83f7-9":{"renderedLength":650,"gzipLength":301,"brotliLength":268,"mainUid":"83f7-8"},"83f7-11":{"renderedLength":121,"gzipLength":111,"brotliLength":90,"mainUid":"83f7-10"},"83f7-13":{"renderedLength":388,"gzipLength":167,"brotliLength":111,"mainUid":"83f7-12"},"83f7-15":{"renderedLength":864,"gzipLength":366,"brotliLength":318,"mainUid":"83f7-14"},"83f7-17":{"renderedLength":339,"gzipLength":202,"brotliLength":164,"mainUid":"83f7-16"},"83f7-19":{"renderedLength":1058,"gzipLength":390,"brotliLength":330,"mainUid":"83f7-18"},"83f7-21":{"renderedLength":3568,"gzipLength":927,"brotliLength":804,"mainUid":"83f7-20"},"83f7-23":{"renderedLength":2512,"gzipLength":751,"brotliLength":636,"mainUid":"83f7-22"},"83f7-25":{"renderedLength":123,"gzipLength":111,"brotliLength":93,"mainUid":"83f7-24"},"83f7-27":{"renderedLength":345,"gzipLength":207,"brotliLength":172,"mainUid":"83f7-26"},"83f7-29":{"renderedLength":145,"gzipLength":117,"brotliLength":116,"mainUid":"83f7-28"},"83f7-31":{"renderedLength":1413,"gzipLength":381,"brotliLength":359,"mainUid":"83f7-30"},"83f7-33":{"renderedLength":3176,"gzipLength":928,"brotliLength":762,"mainUid":"83f7-32"},"83f7-35":{"renderedLength":2119,"gzipLength":680,"brotliLength":565,"mainUid":"83f7-34"},"83f7-37":{"renderedLength":726,"gzipLength":294,"brotliLength":252,"mainUid":"83f7-36"},"83f7-39":{"renderedLength":356,"gzipLength":233,"brotliLength":176,"mainUid":"83f7-38"},"83f7-41":{"renderedLength":257,"gzipLength":158,"brotliLength":122,"mainUid":"83f7-40"},"83f7-43":{"renderedLength":1042,"gzipLength":377,"brotliLength":323,"mainUid":"83f7-42"},"83f7-45":{"renderedLength":1183,"gzipLength":394,"brotliLength":310,"mainUid":"83f7-44"},"83f7-47":{"renderedLength":191,"gzipLength":113,"brotliLength":89,"mainUid":"83f7-46"},"83f7-49":{"renderedLength":915,"gzipLength":393,"brotliLength":328,"mainUid":"83f7-48"},"83f7-51":{"renderedLength":799,"gzipLength":370,"brotliLength":330,"mainUid":"83f7-50"},"83f7-53":{"renderedLength":1497,"gzipLength":481,"brotliLength":413,"mainUid":"83f7-52"},"83f7-55":{"renderedLength":644,"gzipLength":341,"brotliLength":295,"mainUid":"83f7-54"},"83f7-57":{"renderedLength":343,"gzipLength":239,"brotliLength":181,"mainUid":"83f7-56"},"83f7-59":{"renderedLength":83,"gzipLength":97,"brotliLength":66,"mainUid":"83f7-58"},"83f7-61":{"renderedLength":325,"gzipLength":230,"brotliLength":183,"mainUid":"83f7-60"},"83f7-63":{"renderedLength":203,"gzipLength":136,"brotliLength":97,"mainUid":"83f7-62"},"83f7-65":{"renderedLength":514,"gzipLength":227,"brotliLength":187,"mainUid":"83f7-64"},"83f7-67":{"renderedLength":326,"gzipLength":176,"brotliLength":141,"mainUid":"83f7-66"},"83f7-69":{"renderedLength":294,"gzipLength":155,"brotliLength":114,"mainUid":"83f7-68"},"83f7-71":{"renderedLength":628,"gzipLength":259,"brotliLength":219,"mainUid":"83f7-70"},"83f7-73":{"renderedLength":1667,"gzipLength":624,"brotliLength":519,"mainUid":"83f7-72"},"83f7-75":{"renderedLength":82,"gzipLength":96,"brotliLength":66,"mainUid":"83f7-74"},"83f7-77":{"renderedLength":1179,"gzipLength":450,"brotliLength":362,"mainUid":"83f7-76"},"83f7-79":{"renderedLength":252,"gzipLength":157,"brotliLength":116,"mainUid":"83f7-78"},"83f7-81":{"renderedLength":379,"gzipLength":264,"brotliLength":224,"mainUid":"83f7-80"},"83f7-83":{"renderedLength":636,"gzipLength":318,"brotliLength":242,"mainUid":"83f7-82"}},"nodeMetas":{"83f7-0":{"id":"/src/index.ts","moduleParts":{"index.js":"83f7-1"},"imported":[{"uid":"83f7-4"},{"uid":"83f7-2"},{"uid":"83f7-8"},{"uid":"83f7-6"}],"importedBy":[],"isEntry":true},"83f7-2":{"id":"/src/state.ts","moduleParts":{"state.js":"83f7-3"},"imported":[{"uid":"83f7-86"},{"uid":"83f7-87"}],"importedBy":[{"uid":"83f7-0"},{"uid":"83f7-14"},{"uid":"83f7-20"},{"uid":"83f7-26"},{"uid":"83f7-50"}]},"83f7-4":{"id":"/src/layout/withLayout.tsx","moduleParts":{"layout/withLayout.js":"83f7-5"},"imported":[{"uid":"83f7-84"},{"uid":"83f7-85"},{"uid":"83f7-18"},{"uid":"83f7-16"},{"uid":"83f7-14"},{"uid":"83f7-10"},{"uid":"83f7-22"}],"importedBy":[{"uid":"83f7-0"}]},"83f7-6":{"id":"/src/content/dividerSidebarItem.ts","moduleParts":{"content/dividerSidebarItem.js":"83f7-7"},"imported":[],"importedBy":[{"uid":"83f7-0"}]},"83f7-8":{"id":"/src/content/createPages.tsx","moduleParts":{"content/createPages.js":"83f7-9"},"imported":[{"uid":"83f7-84"},{"uid":"83f7-85"},{"uid":"83f7-20"},{"uid":"83f7-12"}],"importedBy":[{"uid":"83f7-0"}]},"83f7-10":{"id":"/src/types.ts","moduleParts":{"types.js":"83f7-11"},"imported":[],"importedBy":[{"uid":"83f7-4"}]},"83f7-12":{"id":"/src/content/types.ts","moduleParts":{"content/types.js":"83f7-13"},"imported":[],"importedBy":[{"uid":"83f7-8"},{"uid":"83f7-42"},{"uid":"83f7-44"}]},"83f7-14":{"id":"/src/datahooks/Permissions.tsx","moduleParts":{"datahooks/Permissions.js":"83f7-15"},"imported":[{"uid":"83f7-84"},{"uid":"83f7-89"},{"uid":"83f7-85"},{"uid":"83f7-90"},{"uid":"83f7-2"}],"importedBy":[{"uid":"83f7-4"}]},"83f7-16":{"id":"/src/datahooks/PermissionHooks.tsx","moduleParts":{"datahooks/PermissionHooks.js":"83f7-17"},"imported":[{"uid":"83f7-84"},{"uid":"83f7-85"},{"uid":"83f7-26"}],"importedBy":[{"uid":"83f7-4"}]},"83f7-18":{"id":"/src/datahooks/DataHooks.tsx","moduleParts":{"datahooks/DataHooks.js":"83f7-19"},"imported":[{"uid":"83f7-84"},{"uid":"83f7-85"},{"uid":"83f7-88"},{"uid":"83f7-24"}],"importedBy":[{"uid":"83f7-4"},{"uid":"83f7-20"}]},"83f7-20":{"id":"/src/content/components/ContentComponent.tsx","moduleParts":{"content/components/ContentComponent.js":"83f7-21"},"imported":[{"uid":"83f7-84"},{"uid":"83f7-85"},{"uid":"83f7-93"},{"uid":"83f7-90"},{"uid":"83f7-92"},{"uid":"83f7-91"},{"uid":"83f7-18"},{"uid":"83f7-2"},{"uid":"83f7-28"},{"uid":"83f7-40"},{"uid":"83f7-42"},{"uid":"83f7-44"},{"uid":"83f7-34"}],"importedBy":[{"uid":"83f7-8"}]},"83f7-22":{"id":"/src/layout/components/Layout.tsx","moduleParts":{"layout/components/Layout.js":"83f7-23"},"imported":[{"uid":"83f7-84"},{"uid":"83f7-85"},{"uid":"83f7-91"},{"uid":"83f7-92"},{"uid":"83f7-30"},{"uid":"83f7-36"},{"uid":"83f7-38"},{"uid":"83f7-32"}],"importedBy":[{"uid":"83f7-4"}]},"83f7-24":{"id":"/src/datahooks/ExecuteDataHook.tsx","moduleParts":{"datahooks/ExecuteDataHook.js":"83f7-25"},"imported":[{"uid":"83f7-84"}],"importedBy":[{"uid":"83f7-18"}]},"83f7-26":{"id":"/src/datahooks/ExecutePermissionHook.tsx","moduleParts":{"datahooks/ExecutePermissionHook.js":"83f7-27"},"imported":[{"uid":"83f7-84"},{"uid":"83f7-90"},{"uid":"83f7-2"}],"importedBy":[{"uid":"83f7-16"}]},"83f7-28":{"id":"/src/utils.ts","moduleParts":{"utils.js":"83f7-29"},"imported":[{"uid":"83f7-93"}],"importedBy":[{"uid":"83f7-20"},{"uid":"83f7-36"},{"uid":"83f7-52"}]},"83f7-30":{"id":"/src/layout/moveItems.ts","moduleParts":{"layout/moveItems.js":"83f7-31"},"imported":[{"uid":"83f7-85"},{"uid":"83f7-93"},{"uid":"83f7-46"}],"importedBy":[{"uid":"83f7-22"}]},"83f7-32":{"id":"/src/layout/components/styles.module.css","moduleParts":{"layout/components/styles.module.css.js":"83f7-33"},"imported":[{"uid":"83f7-82"}],"importedBy":[{"uid":"83f7-22"},{"uid":"83f7-38"},{"uid":"83f7-76"}]},"83f7-34":{"id":"/src/content/components/styles.module.css","moduleParts":{"content/components/styles.module.css.js":"83f7-35"},"imported":[{"uid":"83f7-82"}],"importedBy":[{"uid":"83f7-20"},{"uid":"83f7-42"}]},"83f7-36":{"id":"/src/layout/components/LayoutItemBar.tsx","moduleParts":{"layout/components/LayoutItemBar.js":"83f7-37"},"imported":[{"uid":"83f7-84"},{"uid":"83f7-85"},{"uid":"83f7-92"},{"uid":"83f7-28"},{"uid":"83f7-48"},{"uid":"83f7-52"}],"importedBy":[{"uid":"83f7-22"}]},"83f7-38":{"id":"/src/layout/components/SecondaryMenuToggleItem.tsx","moduleParts":{"layout/components/SecondaryMenuToggleItem.js":"83f7-39"},"imported":[{"uid":"83f7-84"},{"uid":"83f7-92"},{"uid":"83f7-32"}],"importedBy":[{"uid":"83f7-22"}]},"83f7-40":{"id":"/src/content/hooks/useBuildContentData.ts","moduleParts":{"content/hooks/useBuildContentData.js":"83f7-41"},"imported":[{"uid":"83f7-50"}],"importedBy":[{"uid":"83f7-20"},{"uid":"83f7-44"}]},"83f7-42":{"id":"/src/content/components/Header.tsx","moduleParts":{"content/components/Header.js":"83f7-43"},"imported":[{"uid":"83f7-84"},{"uid":"83f7-85"},{"uid":"83f7-92"},{"uid":"83f7-12"},{"uid":"83f7-34"}],"importedBy":[{"uid":"83f7-20"}]},"83f7-44":{"id":"/src/content/components/SidebarItemWrapper.tsx","moduleParts":{"content/components/SidebarItemWrapper.js":"83f7-45"},"imported":[{"uid":"83f7-84"},{"uid":"83f7-85"},{"uid":"83f7-94"},{"uid":"83f7-92"},{"uid":"83f7-40"},{"uid":"83f7-12"},{"uid":"83f7-54"},{"uid":"83f7-56"},{"uid":"83f7-58"},{"uid":"83f7-60"}],"importedBy":[{"uid":"83f7-20"}]},"83f7-46":{"id":"/src/layout/types.ts","moduleParts":{"layout/types.js":"83f7-47"},"imported":[],"importedBy":[{"uid":"83f7-30"},{"uid":"83f7-52"}]},"83f7-48":{"id":"/src/layout/utils.tsx","moduleParts":{"layout/utils.js":"83f7-49"},"imported":[{"uid":"83f7-84"},{"uid":"83f7-88"},{"uid":"83f7-92"},{"uid":"83f7-62"}],"importedBy":[{"uid":"83f7-36"},{"uid":"83f7-76"},{"uid":"83f7-80"}]},"83f7-50":{"id":"/src/hooks/useBuildData.ts","moduleParts":{"hooks/useBuildData.js":"83f7-51"},"imported":[{"uid":"83f7-89"},{"uid":"83f7-85"},{"uid":"83f7-93"},{"uid":"83f7-88"},{"uid":"83f7-2"},{"uid":"83f7-64"},{"uid":"83f7-68"},{"uid":"83f7-66"}],"importedBy":[{"uid":"83f7-40"},{"uid":"83f7-52"}]},"83f7-52":{"id":"/src/layout/components/LayoutItemWrapper.tsx","moduleParts":{"layout/components/LayoutItemWrapper.js":"83f7-53"},"imported":[{"uid":"83f7-84"},{"uid":"83f7-85"},{"uid":"83f7-94"},{"uid":"83f7-92"},{"uid":"83f7-50"},{"uid":"83f7-28"},{"uid":"83f7-46"},{"uid":"83f7-74"},{"uid":"83f7-76"},{"uid":"83f7-78"},{"uid":"83f7-80"}],"importedBy":[{"uid":"83f7-36"}]},"83f7-54":{"id":"/src/content/components/ActionFormSidebarItemComponent.tsx","moduleParts":{"content/components/ActionFormSidebarItemComponent.js":"83f7-55"},"imported":[{"uid":"83f7-84"},{"uid":"83f7-85"},{"uid":"83f7-92"},{"uid":"83f7-70"},{"uid":"83f7-72"}],"importedBy":[{"uid":"83f7-44"}]},"83f7-56":{"id":"/src/content/components/ActionSidebarItemComponent.tsx","moduleParts":{"content/components/ActionSidebarItemComponent.js":"83f7-57"},"imported":[{"uid":"83f7-84"},{"uid":"83f7-92"},{"uid":"83f7-70"}],"importedBy":[{"uid":"83f7-44"}]},"83f7-58":{"id":"/src/content/components/CustomSidebarItemComponent.tsx","moduleParts":{"content/components/CustomSidebarItemComponent.js":"83f7-59"},"imported":[{"uid":"83f7-84"}],"importedBy":[{"uid":"83f7-44"}]},"83f7-60":{"id":"/src/content/components/PlainSidebarItem.tsx","moduleParts":{"content/components/PlainSidebarItem.js":"83f7-61"},"imported":[{"uid":"83f7-84"},{"uid":"83f7-88"},{"uid":"83f7-92"},{"uid":"83f7-70"}],"importedBy":[{"uid":"83f7-44"}]},"83f7-62":{"id":"/src/commonItems.ts","moduleParts":{"commonItems.js":"83f7-63"},"imported":[],"importedBy":[{"uid":"83f7-48"},{"uid":"83f7-64"}]},"83f7-64":{"id":"/src/hooks/useIsActiveRoute.ts","moduleParts":{"hooks/useIsActiveRoute.js":"83f7-65"},"imported":[{"uid":"83f7-95"},{"uid":"83f7-62"}],"importedBy":[{"uid":"83f7-50"}]},"83f7-66":{"id":"/src/hooks/useSelectState.ts","moduleParts":{"hooks/useSelectState.js":"83f7-67"},"imported":[{"uid":"83f7-93"}],"importedBy":[{"uid":"83f7-50"}]},"83f7-68":{"id":"/src/hooks/useSelectPermission.ts","moduleParts":{"hooks/useSelectPermission.js":"83f7-69"},"imported":[{"uid":"83f7-93"}],"importedBy":[{"uid":"83f7-50"}]},"83f7-70":{"id":"/src/content/utils.tsx","moduleParts":{"content/utils.js":"83f7-71"},"imported":[{"uid":"83f7-84"},{"uid":"83f7-92"}],"importedBy":[{"uid":"83f7-54"},{"uid":"83f7-56"},{"uid":"83f7-60"}]},"83f7-72":{"id":"/src/content/components/ActionForm.tsx","moduleParts":{"content/components/ActionForm.js":"83f7-73"},"imported":[{"uid":"83f7-84"},{"uid":"83f7-96"},{"uid":"83f7-85"},{"uid":"83f7-92"}],"importedBy":[{"uid":"83f7-54"}]},"83f7-74":{"id":"/src/layout/components/CustomLayoutItemComponent.tsx","moduleParts":{"layout/components/CustomLayoutItemComponent.js":"83f7-75"},"imported":[{"uid":"83f7-84"}],"importedBy":[{"uid":"83f7-52"}]},"83f7-76":{"id":"/src/layout/components/DropdownItem.tsx","moduleParts":{"layout/components/DropdownItem.js":"83f7-77"},"imported":[{"uid":"83f7-84"},{"uid":"83f7-85"},{"uid":"83f7-92"},{"uid":"83f7-48"},{"uid":"83f7-32"}],"importedBy":[{"uid":"83f7-52"}]},"83f7-78":{"id":"/src/layout/components/MenuItem.tsx","moduleParts":{"layout/components/MenuItem.js":"83f7-79"},"imported":[{"uid":"83f7-84"},{"uid":"83f7-92"}],"importedBy":[{"uid":"83f7-52"}]},"83f7-80":{"id":"/src/layout/components/PlainItem.tsx","moduleParts":{"layout/components/PlainItem.js":"83f7-81"},"imported":[{"uid":"83f7-84"},{"uid":"83f7-91"},{"uid":"83f7-92"},{"uid":"83f7-48"}],"importedBy":[{"uid":"83f7-52"}]},"83f7-82":{"id":"/home/artemis/Github/imperium/node_modules/style-inject/dist/style-inject.es.js","moduleParts":{"external/style-inject/dist/style-inject.es.js":"83f7-83"},"imported":[],"importedBy":[{"uid":"83f7-32"},{"uid":"83f7-34"}]},"83f7-84":{"id":"react","moduleParts":{},"imported":[],"importedBy":[{"uid":"83f7-4"},{"uid":"83f7-8"},{"uid":"83f7-18"},{"uid":"83f7-16"},{"uid":"83f7-14"},{"uid":"83f7-22"},{"uid":"83f7-20"},{"uid":"83f7-24"},{"uid":"83f7-26"},{"uid":"83f7-36"},{"uid":"83f7-38"},{"uid":"83f7-42"},{"uid":"83f7-44"},{"uid":"83f7-48"},{"uid":"83f7-52"},{"uid":"83f7-54"},{"uid":"83f7-56"},{"uid":"83f7-58"},{"uid":"83f7-60"},{"uid":"83f7-74"},{"uid":"83f7-76"},{"uid":"83f7-78"},{"uid":"83f7-80"},{"uid":"83f7-70"},{"uid":"83f7-72"}],"isExternal":true},"83f7-85":{"id":"debug","moduleParts":{},"imported":[],"importedBy":[{"uid":"83f7-4"},{"uid":"83f7-8"},{"uid":"83f7-18"},{"uid":"83f7-16"},{"uid":"83f7-14"},{"uid":"83f7-22"},{"uid":"83f7-20"},{"uid":"83f7-30"},{"uid":"83f7-36"},{"uid":"83f7-42"},{"uid":"83f7-44"},{"uid":"83f7-52"},{"uid":"83f7-50"},{"uid":"83f7-54"},{"uid":"83f7-76"},{"uid":"83f7-72"}],"isExternal":true},"83f7-86":{"id":"@imperium/state","moduleParts":{},"imported":[],"importedBy":[{"uid":"83f7-2"}],"isExternal":true},"83f7-87":{"id":"@reduxjs/toolkit","moduleParts":{},"imported":[],"importedBy":[{"uid":"83f7-2"}],"isExternal":true},"83f7-88":{"id":"react-router-dom","moduleParts":{},"imported":[],"importedBy":[{"uid":"83f7-18"},{"uid":"83f7-48"},{"uid":"83f7-50"},{"uid":"83f7-60"}],"isExternal":true},"83f7-89":{"id":"@imperium/auth-client","moduleParts":{},"imported":[],"importedBy":[{"uid":"83f7-14"},{"uid":"83f7-50"}],"isExternal":true},"83f7-90":{"id":"react-redux","moduleParts":{},"imported":[],"importedBy":[{"uid":"83f7-14"},{"uid":"83f7-20"},{"uid":"83f7-26"}],"isExternal":true},"83f7-91":{"id":"react-responsive","moduleParts":{},"imported":[],"importedBy":[{"uid":"83f7-22"},{"uid":"83f7-20"},{"uid":"83f7-80"}],"isExternal":true},"83f7-92":{"id":"semantic-ui-react","moduleParts":{},"imported":[],"importedBy":[{"uid":"83f7-22"},{"uid":"83f7-20"},{"uid":"83f7-36"},{"uid":"83f7-38"},{"uid":"83f7-42"},{"uid":"83f7-44"},{"uid":"83f7-48"},{"uid":"83f7-52"},{"uid":"83f7-54"},{"uid":"83f7-56"},{"uid":"83f7-60"},{"uid":"83f7-76"},{"uid":"83f7-78"},{"uid":"83f7-80"},{"uid":"83f7-70"},{"uid":"83f7-72"}],"isExternal":true},"83f7-93":{"id":"lodash-es","moduleParts":{},"imported":[],"importedBy":[{"uid":"83f7-20"},{"uid":"83f7-30"},{"uid":"83f7-28"},{"uid":"83f7-50"},{"uid":"83f7-68"},{"uid":"83f7-66"}],"isExternal":true},"83f7-94":{"id":"mingo","moduleParts":{},"imported":[],"importedBy":[{"uid":"83f7-44"},{"uid":"83f7-52"}],"isExternal":true},"83f7-95":{"id":"react-router","moduleParts":{},"imported":[],"importedBy":[{"uid":"83f7-64"}],"isExternal":true},"83f7-96":{"id":"@thx/controls","moduleParts":{},"imported":[],"importedBy":[{"uid":"83f7-72"}],"isExternal":true}},"env":{"rollup":"2.79.1"},"options":{"gzip":true,"brotli":true,"sourcemap":false}};
2673
2673
 
2674
2674
  const run = () => {
2675
2675
  const width = window.innerWidth;
package/dist/stats.txt CHANGED
@@ -1,19 +1,19 @@
1
1
  -----------------------------
2
2
  Rollup File Analysis
3
3
  -----------------------------
4
- bundle size: 34.027 KB
5
- original size: 53.624 KB
6
- code reduction: 36.55 %
4
+ bundle size: 34.049 KB
5
+ original size: 53.722 KB
6
+ code reduction: 36.62 %
7
7
  module count: 42
8
8
 
9
9
  /src/content/components/ContentComponent.tsx
10
- █████░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 10.49 % (3.568 KB)
10
+ █████░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 10.48 % (3.568 KB)
11
11
  /src/layout/components/styles.module.css
12
12
  ████░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 9.33 % (3.176 KB)
13
13
  /src/layout/components/Layout.tsx
14
14
  ███░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 7.38 % (2.512 KB)
15
15
  /src/content/components/styles.module.css
16
- ███░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 6.23 % (2.119 KB)
16
+ ███░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 6.22 % (2.119 KB)
17
17
  /src/layout/withLayout.tsx
18
18
  ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 5.62 % (1.913 KB)
19
19
  /src/content/components/ActionForm.tsx
@@ -23,7 +23,7 @@ module count: 42
23
23
  /src/layout/moveItems.ts
24
24
  ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 4.15 % (1.413 KB)
25
25
  /src/content/components/SidebarItemWrapper.tsx
26
- █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 3.48 % (1.183 KB)
26
+ █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 3.47 % (1.183 KB)
27
27
  /src/layout/components/DropdownItem.tsx
28
28
  █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 3.46 % (1.179 KB)
29
29
  /src/datahooks/DataHooks.tsx
@@ -33,7 +33,7 @@ module count: 42
33
33
  /src/layout/utils.tsx
34
34
  █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 2.69 % (915 Bytes)
35
35
  /src/datahooks/Permissions.tsx
36
- █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 2.47 % (842 Bytes)
36
+ █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 2.54 % (864 Bytes)
37
37
  /src/hooks/useBuildData.ts
38
38
  █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 2.35 % (799 Bytes)
39
39
  /src/layout/components/LayoutItemBar.tsx
@@ -45,7 +45,7 @@ module count: 42
45
45
  /home/artemis/Github/imperium/node_modules/style-inject/dist/style-inject.es.js
46
46
  ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.87 % (636 Bytes)
47
47
  /src/content/utils.tsx
48
- ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.85 % (628 Bytes)
48
+ ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.84 % (628 Bytes)
49
49
  /src/state.ts
50
50
  ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.74 % (591 Bytes)
51
51
  /src/hooks/useIsActiveRoute.ts
@@ -65,11 +65,11 @@ module count: 42
65
65
  /src/hooks/useSelectState.ts
66
66
  ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.96 % (326 Bytes)
67
67
  /src/content/components/PlainSidebarItem.tsx
68
- ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.96 % (325 Bytes)
68
+ ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.95 % (325 Bytes)
69
69
  /src/hooks/useSelectPermission.ts
70
70
  ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.86 % (294 Bytes)
71
71
  /src/content/hooks/useBuildContentData.ts
72
- ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.76 % (257 Bytes)
72
+ ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.75 % (257 Bytes)
73
73
  /src/layout/components/MenuItem.tsx
74
74
  ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.74 % (252 Bytes)
75
75
  /src/commonItems.ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@imperium/layout",
3
- "version": "14.7.7",
3
+ "version": "14.8.1",
4
4
  "description": "Imperium Layout package",
5
5
  "bugs": {
6
6
  "url": "https://github.com/thr-consulting/imperium/issues"
@@ -31,10 +31,10 @@
31
31
  }
32
32
  },
33
33
  "dependencies": {
34
- "@imperium/auth-client": "^14.7.7",
34
+ "@imperium/auth-client": "^14.8.1",
35
35
  "@imperium/client": "^14.5.1",
36
36
  "@imperium/router": "^14.5.1",
37
- "@imperium/state": "^14.7.7",
37
+ "@imperium/state": "^14.8.1",
38
38
  "@thx/controls": "^19.0.0",
39
39
  "debug": "^4.4.0",
40
40
  "history": "^5.0.1",
@@ -60,5 +60,5 @@
60
60
  "publishConfig": {
61
61
  "access": "public"
62
62
  },
63
- "gitHead": "ae3d9c2bb79f4fa9d6a7866c23e6217e89320238"
63
+ "gitHead": "2e4206aaf350388258b1d9d85751b01a1beb09eb"
64
64
  }