@genesislcap/foundation-react-utils 15.6.2 → 15.7.0-ts7.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1 +1 @@
1
- {"version":3,"file":"protected-route.d.ts","sourceRoot":"","sources":["../../../src/router/protected-route.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAGvC;;GAEG;AACH,MAAM,WAAW,mBAAmB;IAClC,iDAAiD;IACjD,eAAe,EAAE,OAAO,CAAC;IACzB;;;;OAIG;IACH,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB,sEAAsE;IACtE,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,8FAA8F;IAC9F,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,QAAQ,EAAE,SAAS,CAAC;CACrB;AAED;;;;;;;;;;GAUG;AACH,wBAAgB,cAAc,CAAC,EAC7B,eAAe,EACf,aAAoB,EACpB,SAAoB,EACpB,gBAAmC,EACnC,QAAQ,GACT,EAAE,mBAAmB,2CAYrB;AAED;;;GAGG;AACH,MAAM,WAAW,wBAAwB;IACvC,QAAQ,EAAE,SAAS,CAAC;IACpB,uEAAuE;IACvE,cAAc,CAAC,EAAE,MAAM,CAAC;CACzB;AAED;;GAEG;AACH,MAAM,WAAW,2BAA2B;IAC1C;;;;OAIG;IACH,kBAAkB,EAAE,MAAM,OAAO,CAAC;IAClC;;;OAGG;IACH,aAAa,CAAC,EAAE,CAAC,cAAc,EAAE,MAAM,GAAG,SAAS,KAAK,OAAO,CAAC;IAChE,sEAAsE;IACtE,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,8FAA8F;IAC9F,gBAAgB,CAAC,EAAE,MAAM,CAAC;CAC3B;AAED;;;;;;;;;;;;;;;;;GAiBG;AACH,wBAAgB,oBAAoB,CAAC,EACnC,kBAAkB,EAClB,aAAa,EACb,SAAS,EACT,gBAAgB,GACjB,EAAE,2BAA2B,IACQ,8BAA8B,wBAAwB,6CAY3F"}
1
+ {"version":3,"file":"protected-route.d.ts","sourceRoot":"","sources":["../../../src/router/protected-route.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAGvC;;GAEG;AACH,MAAM,WAAW,mBAAmB;IAClC,iDAAiD;IACjD,eAAe,EAAE,OAAO,CAAC;IACzB;;;;OAIG;IACH,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB,sEAAsE;IACtE,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,8FAA8F;IAC9F,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,QAAQ,EAAE,SAAS,CAAC;CACrB;AAED;;;;;;;;;;GAUG;AACH,wBAAgB,cAAc,CAAC,EAC7B,eAAe,EACf,aAAoB,EACpB,SAAoB,EACpB,gBAAmC,EACnC,QAAQ,GACT,EAAE,mBAAmB,2CAYrB;AAED;;;GAGG;AACH,MAAM,WAAW,wBAAwB;IACvC,QAAQ,EAAE,SAAS,CAAC;IACpB,uEAAuE;IACvE,cAAc,CAAC,EAAE,MAAM,CAAC;CACzB;AAED;;GAEG;AACH,MAAM,WAAW,2BAA2B;IAC1C;;;;OAIG;IACH,kBAAkB,EAAE,MAAM,OAAO,CAAC;IAClC;;;OAGG;IACH,aAAa,CAAC,EAAE,CAAC,cAAc,EAAE,MAAM,GAAG,SAAS,KAAK,OAAO,CAAC;IAChE,sEAAsE;IACtE,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,8FAA8F;IAC9F,gBAAgB,CAAC,EAAE,MAAM,CAAC;CAC3B;AAED;;;;;;;;;;;;;;;;;GAiBG;AACH,wBAAgB,oBAAoB,CAAC,EACnC,kBAAkB,EAClB,aAAa,EACb,SAAS,EACT,gBAAgB,GACjB,EAAE,2BAA2B,kCACsC,wBAAwB,6CAY3F"}
@@ -1,4 +1,4 @@
1
- import { jsx as _jsx, Fragment as _Fragment } from "react/jsx-runtime";
1
+ import { Fragment as _Fragment, jsx as _jsx } from "react/jsx-runtime";
2
2
  import { createLogger } from '@genesislcap/foundation-logger';
3
3
  import { Component as ReactClassComponent, memo, useEffect, useSyncExternalStore, } from 'react';
4
4
  import { createPortal, flushSync } from 'react-dom';
@@ -1,6 +1,6 @@
1
1
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
2
  import { Navigate, Route, Routes } from 'react-router-dom';
3
- const resolvePermissionCode = (route) => { var _a, _b; return (_a = route.permissionCode) !== null && _a !== void 0 ? _a : (_b = route.data) === null || _b === void 0 ? void 0 : _b.permissionCode; };
3
+ const resolvePermissionCode = (route) => { var _a; var _b; return (_b = route.permissionCode) !== null && _b !== void 0 ? _b : (_a = route.data) === null || _a === void 0 ? void 0 : _a.permissionCode; };
4
4
  /**
5
5
  * Build the app's `<Routes>` tree from a declarative route table, applying the
6
6
  * auth guard, layout nesting, redirects, not-found, and the single-component
@@ -19,10 +19,7 @@ export function renderAppRoutes({ routes, ProtectedRoute, layout, redirects = []
19
19
  const topLevelGuarded = guarded.filter((r) => r.noLayout);
20
20
  // Nested children render as plain relative routes inside the parent's
21
21
  // `<Outlet />`; they inherit the parent's guard, so they are not re-wrapped.
22
- const renderChild = (c) => {
23
- var _a;
24
- return ((_a = c.children) === null || _a === void 0 ? void 0 : _a.length) ? (_jsx(Route, { path: c.path, element: c.element, children: c.children.map(renderChild) }, c.path)) : (_jsx(Route, { path: c.path, element: c.element }, c.path));
25
- };
22
+ const renderChild = (c) => { var _a; return ((_a = c.children) === null || _a === void 0 ? void 0 : _a.length) ? (_jsx(Route, { path: c.path, element: c.element, children: c.children.map(renderChild) }, c.path)) : (_jsx(Route, { path: c.path, element: c.element }, c.path)); };
26
23
  const renderGuarded = (r) => {
27
24
  var _a;
28
25
  const element = (_jsx(ProtectedRoute, { permissionCode: resolvePermissionCode(r), children: r.element }));
@@ -6,14 +6,11 @@
6
6
  * hand-rolled version produced.
7
7
  */
8
8
  export function mergePbcRoutes(staticRoutes, pbcRoutes, { renderPbc }) {
9
- const mapped = pbcRoutes.map((pbc) => {
10
- var _a;
11
- return ({
12
- path: `/${pbc.path}`,
13
- element: renderPbc(pbc),
14
- permissionCode: (_a = pbc.settings) === null || _a === void 0 ? void 0 : _a.permissionCode,
15
- data: Object.assign(Object.assign({}, pbc.settings), { pbcElement: pbc.element, pbcElementTag: pbc.elementTag, navItems: pbc.navItems }),
16
- });
17
- });
9
+ const mapped = pbcRoutes.map((pbc) => { var _a; return ({
10
+ path: `/${pbc.path}`,
11
+ element: renderPbc(pbc),
12
+ permissionCode: (_a = pbc.settings) === null || _a === void 0 ? void 0 : _a.permissionCode,
13
+ data: Object.assign(Object.assign({}, pbc.settings), { pbcElement: pbc.element, pbcElementTag: pbc.elementTag, navItems: pbc.navItems }),
14
+ }); });
18
15
  return [...staticRoutes, ...mapped];
19
16
  }
@@ -8,7 +8,8 @@
8
8
  * @param defaultPath - Where to land when nothing was stashed. Defaults to `/`.
9
9
  */
10
10
  export function buildPostLoginRedirect(location, defaultPath = '/') {
11
- var _a, _b, _c;
11
+ var _a;
12
+ var _b, _c;
12
13
  const from = (_a = location.state) === null || _a === void 0 ? void 0 : _a.from;
13
14
  return from ? `${from.pathname}${(_b = from.search) !== null && _b !== void 0 ? _b : ''}${(_c = from.hash) !== null && _c !== void 0 ? _c : ''}` : defaultPath;
14
15
  }
@@ -1,4 +1,4 @@
1
- import { jsx as _jsx, Fragment as _Fragment } from "react/jsx-runtime";
1
+ import { Fragment as _Fragment, jsx as _jsx } from "react/jsx-runtime";
2
2
  import { Navigate, useLocation } from 'react-router-dom';
3
3
  /**
4
4
  * Route guard. In order:
@@ -1,4 +1,4 @@
1
- import { jsx as _jsx, Fragment as _Fragment } from "react/jsx-runtime";
1
+ import { Fragment as _Fragment, jsx as _jsx } from "react/jsx-runtime";
2
2
  /**
3
3
  * Read a query-string parameter from the current URL.
4
4
  *
@@ -1 +1 @@
1
- {"root":["../src/create-grid-pro-cell-portals.tsx","../src/create-grid-pro-cell-renderer.ts","../src/create-react-renderer.ts","../src/index.ts","../src/react-layout-factory.tsx","../src/router/app-routes.tsx","../src/router/index.ts","../src/router/pbc-routes.ts","../src/router/post-login-redirect.ts","../src/router/protected-route.tsx","../src/router/router.test.ts","../src/router/single-component.tsx"],"version":"5.9.2"}
1
+ {"version":"7.0.2","root":["../src/create-grid-pro-cell-portals.tsx","../src/create-grid-pro-cell-renderer.ts","../src/create-react-renderer.ts","../src/index.ts","../src/react-layout-factory.tsx","../src/router/app-routes.tsx","../src/router/index.ts","../src/router/pbc-routes.ts","../src/router/post-login-redirect.ts","../src/router/protected-route.tsx","../src/router/router.test.ts","../src/router/single-component.tsx"],"packageJsons":["../../../../node_modules/@fortawesome/fontawesome-common-types/package.json","../../../../node_modules/@fortawesome/fontawesome-svg-core/package.json","../../../../node_modules/@genesis-community/golden-layout/package.json","../../../../node_modules/@jsonforms/core/package.json","../../../../node_modules/@microsoft/fast-colors/package.json","../../../../node_modules/@microsoft/fast-components/package.json","../../../../node_modules/@microsoft/fast-element/package.json","../../../../node_modules/@microsoft/fast-foundation/package.json","../../../../node_modules/@microsoft/fast-router/package.json","../../../../node_modules/@microsoft/fast-web-utilities/package.json","../../../../node_modules/@popperjs/core/package.json","../../../../node_modules/@r2wc/core/package.json","../../../../node_modules/@r2wc/react-to-web-component/package.json","../../../../node_modules/@sinonjs/fake-timers/package.json","../../../../node_modules/@types/json-schema/package.json","../../../../node_modules/@types/react-dom/package.json","../../../../node_modules/@types/react/package.json","../../../../node_modules/@types/sinon/package.json","../../../../node_modules/@types/sinonjs__fake-timers/package.json","../../../../node_modules/@typescript/lib-dom/package.json","../../../../node_modules/ajv/package.json","../../../../node_modules/bowser/package.json","../../../../node_modules/consola/package.json","../../../../node_modules/cookie/package.json","../../../../node_modules/csstype/package.json","../../../../node_modules/dayjs/package.json","../../../../node_modules/json-schema/package.json","../../../../node_modules/numeral/package.json","../../../../node_modules/react-dom/package.json","../../../../node_modules/react-router-dom/package.json","../../../../node_modules/react-router/package.json","../../../../node_modules/react/package.json","../../../../node_modules/rxjs/package.json","../../../../node_modules/sinon/package.json","../../../../node_modules/tslib/modules/package.json","../../../../node_modules/tslib/package.json","../../../../node_modules/uri-js/package.json","../../../../node_modules/uvu/package.json","../../expression-builder/package.json","../../foundation-ai/package.json","../../foundation-broadcast-channel/package.json","../../foundation-comms/package.json","../../foundation-criteria/package.json","../../foundation-errors/package.json","../../foundation-events/package.json","../../foundation-forms/package.json","../../foundation-layout/package.json","../../foundation-logger/package.json","../../foundation-notifications/package.json","../package.json","../../foundation-testing/package.json","../../foundation-ui/package.json","../../foundation-user/package.json","../../foundation-utils/package.json","../../../tooling/web-core/package.json"],"missingPackageJsons":["../../../../node_modules/@genesis-community/golden-layout/dist/package.json","../../../../node_modules/@genesis-community/golden-layout/dist/types/package.json","../../../../node_modules/@jsonforms/core/lib/actions/package.json","../../../../node_modules/@jsonforms/core/lib/generators/package.json","../../../../node_modules/@jsonforms/core/lib/i18n/package.json","../../../../node_modules/@jsonforms/core/lib/mappers/package.json","../../../../node_modules/@jsonforms/core/lib/models/package.json","../../../../node_modules/@jsonforms/core/lib/package.json","../../../../node_modules/@jsonforms/core/lib/reducers/package.json","../../../../node_modules/@jsonforms/core/lib/store/package.json","../../../../node_modules/@jsonforms/core/lib/testers/package.json","../../../../node_modules/@jsonforms/core/lib/util/package.json","../../../../node_modules/@microsoft/fast-colors/dist/package.json","../../../../node_modules/@microsoft/fast-components/dist/package.json","../../../../node_modules/@microsoft/fast-components/node_modules/@microsoft/fast-element/package.json","../../../../node_modules/@microsoft/fast-components/node_modules/@microsoft/fast-foundation/package.json","../../../../node_modules/@microsoft/fast-components/node_modules/@microsoft/fast-web-utilities/package.json","../../../../node_modules/@microsoft/fast-element/dist/package.json","../../../../node_modules/@microsoft/fast-foundation/dist/package.json","../../../../node_modules/@microsoft/fast-foundation/node_modules/@microsoft/fast-element/package.json","../../../../node_modules/@microsoft/fast-foundation/node_modules/@microsoft/fast-web-utilities/package.json","../../../../node_modules/@microsoft/fast-router/dist/package.json","../../../../node_modules/@microsoft/fast-web-utilities/dist/package.json","../../../../node_modules/@popperjs/core/lib/modifiers/package.json","../../../../node_modules/@popperjs/core/lib/package.json","../../../../node_modules/@popperjs/core/lib/utils/package.json","../../../../node_modules/@r2wc/core/dist/package.json","../../../../node_modules/@r2wc/react-to-web-component/dist/package.json","../../../../node_modules/@types/dayjs/locale/en-gb/package.json","../../../../node_modules/@types/dayjs/package.json","../../../../node_modules/@types/numeral/locales/package.json","../../../../node_modules/@types/numeral/package.json","../../../../node_modules/@types/react-dom/client/package.json","../../../../node_modules/@types/react/jsx-runtime/package.json","../../../../node_modules/@types/typescript__lib-decorators/legacy/package.json","../../../../node_modules/@types/typescript__lib-decorators/package.json","../../../../node_modules/@types/typescript__lib-es2015/collection/package.json","../../../../node_modules/@types/typescript__lib-es2015/core/package.json","../../../../node_modules/@types/typescript__lib-es2015/generator/package.json","../../../../node_modules/@types/typescript__lib-es2015/iterable/package.json","../../../../node_modules/@types/typescript__lib-es2015/package.json","../../../../node_modules/@types/typescript__lib-es2015/promise/package.json","../../../../node_modules/@types/typescript__lib-es2015/proxy/package.json","../../../../node_modules/@types/typescript__lib-es2015/reflect/package.json","../../../../node_modules/@types/typescript__lib-es2015/symbol-wellknown/package.json","../../../../node_modules/@types/typescript__lib-es2015/symbol/package.json","../../../../node_modules/@types/typescript__lib-es2016/array-include/package.json","../../../../node_modules/@types/typescript__lib-es2016/intl/package.json","../../../../node_modules/@types/typescript__lib-es2016/package.json","../../../../node_modules/@types/typescript__lib-es2017/arraybuffer/package.json","../../../../node_modules/@types/typescript__lib-es2017/date/package.json","../../../../node_modules/@types/typescript__lib-es2017/intl/package.json","../../../../node_modules/@types/typescript__lib-es2017/object/package.json","../../../../node_modules/@types/typescript__lib-es2017/package.json","../../../../node_modules/@types/typescript__lib-es2017/sharedmemory/package.json","../../../../node_modules/@types/typescript__lib-es2017/string/package.json","../../../../node_modules/@types/typescript__lib-es2017/typedarrays/package.json","../../../../node_modules/@types/typescript__lib-es2018/asyncgenerator/package.json","../../../../node_modules/@types/typescript__lib-es2018/asynciterable/package.json","../../../../node_modules/@types/typescript__lib-es2018/intl/package.json","../../../../node_modules/@types/typescript__lib-es2018/package.json","../../../../node_modules/@types/typescript__lib-es2018/promise/package.json","../../../../node_modules/@types/typescript__lib-es2018/regexp/package.json","../../../../node_modules/@types/typescript__lib-es2019/array/package.json","../../../../node_modules/@types/typescript__lib-es2019/intl/package.json","../../../../node_modules/@types/typescript__lib-es2019/object/package.json","../../../../node_modules/@types/typescript__lib-es2019/package.json","../../../../node_modules/@types/typescript__lib-es2019/string/package.json","../../../../node_modules/@types/typescript__lib-es2019/symbol/package.json","../../../../node_modules/@types/typescript__lib-es2020/bigint/package.json","../../../../node_modules/@types/typescript__lib-es2020/date/package.json","../../../../node_modules/@types/typescript__lib-es2020/intl/package.json","../../../../node_modules/@types/typescript__lib-es2020/number/package.json","../../../../node_modules/@types/typescript__lib-es2020/package.json","../../../../node_modules/@types/typescript__lib-es2020/promise/package.json","../../../../node_modules/@types/typescript__lib-es2020/sharedmemory/package.json","../../../../node_modules/@types/typescript__lib-es2020/string/package.json","../../../../node_modules/@types/typescript__lib-es2020/symbol-wellknown/package.json","../../../../node_modules/@types/typescript__lib-es5/package.json","../../../../node_modules/@typescript/lib-decorators/legacy/package.json","../../../../node_modules/@typescript/lib-decorators/package.json","../../../../node_modules/@typescript/lib-dom/iterable/package.json","../../../../node_modules/@typescript/lib-es2015/collection/package.json","../../../../node_modules/@typescript/lib-es2015/core/package.json","../../../../node_modules/@typescript/lib-es2015/generator/package.json","../../../../node_modules/@typescript/lib-es2015/iterable/package.json","../../../../node_modules/@typescript/lib-es2015/package.json","../../../../node_modules/@typescript/lib-es2015/promise/package.json","../../../../node_modules/@typescript/lib-es2015/proxy/package.json","../../../../node_modules/@typescript/lib-es2015/reflect/package.json","../../../../node_modules/@typescript/lib-es2015/symbol-wellknown/package.json","../../../../node_modules/@typescript/lib-es2015/symbol/package.json","../../../../node_modules/@typescript/lib-es2016/array-include/package.json","../../../../node_modules/@typescript/lib-es2016/intl/package.json","../../../../node_modules/@typescript/lib-es2016/package.json","../../../../node_modules/@typescript/lib-es2017/arraybuffer/package.json","../../../../node_modules/@typescript/lib-es2017/date/package.json","../../../../node_modules/@typescript/lib-es2017/intl/package.json","../../../../node_modules/@typescript/lib-es2017/object/package.json","../../../../node_modules/@typescript/lib-es2017/package.json","../../../../node_modules/@typescript/lib-es2017/sharedmemory/package.json","../../../../node_modules/@typescript/lib-es2017/string/package.json","../../../../node_modules/@typescript/lib-es2017/typedarrays/package.json","../../../../node_modules/@typescript/lib-es2018/asyncgenerator/package.json","../../../../node_modules/@typescript/lib-es2018/asynciterable/package.json","../../../../node_modules/@typescript/lib-es2018/intl/package.json","../../../../node_modules/@typescript/lib-es2018/package.json","../../../../node_modules/@typescript/lib-es2018/promise/package.json","../../../../node_modules/@typescript/lib-es2018/regexp/package.json","../../../../node_modules/@typescript/lib-es2019/array/package.json","../../../../node_modules/@typescript/lib-es2019/intl/package.json","../../../../node_modules/@typescript/lib-es2019/object/package.json","../../../../node_modules/@typescript/lib-es2019/package.json","../../../../node_modules/@typescript/lib-es2019/string/package.json","../../../../node_modules/@typescript/lib-es2019/symbol/package.json","../../../../node_modules/@typescript/lib-es2020/bigint/package.json","../../../../node_modules/@typescript/lib-es2020/date/package.json","../../../../node_modules/@typescript/lib-es2020/intl/package.json","../../../../node_modules/@typescript/lib-es2020/number/package.json","../../../../node_modules/@typescript/lib-es2020/package.json","../../../../node_modules/@typescript/lib-es2020/promise/package.json","../../../../node_modules/@typescript/lib-es2020/sharedmemory/package.json","../../../../node_modules/@typescript/lib-es2020/string/package.json","../../../../node_modules/@typescript/lib-es2020/symbol-wellknown/package.json","../../../../node_modules/@typescript/lib-es5/package.json","../../../../node_modules/ajv/dist/compile/codegen/package.json","../../../../node_modules/ajv/dist/compile/package.json","../../../../node_modules/ajv/dist/compile/validate/package.json","../../../../node_modules/ajv/dist/package.json","../../../../node_modules/ajv/dist/runtime/package.json","../../../../node_modules/ajv/dist/types/package.json","../../../../node_modules/ajv/dist/vocabularies/applicator/package.json","../../../../node_modules/ajv/dist/vocabularies/discriminator/package.json","../../../../node_modules/ajv/dist/vocabularies/format/package.json","../../../../node_modules/ajv/dist/vocabularies/package.json","../../../../node_modules/ajv/dist/vocabularies/unevaluated/package.json","../../../../node_modules/ajv/dist/vocabularies/validation/package.json","../../../../node_modules/consola/core/package.json","../../../../node_modules/consola/dist/package.json","../../../../node_modules/cookie/dist/package.json","../../../../node_modules/dayjs/locale/en-gb/package.json","../../../../node_modules/dayjs/locale/package.json","../../../../node_modules/numeral/locales/package.json","../../../../node_modules/react-dom/client/package.json","../../../../node_modules/react-router-dom/dist/package.json","../../../../node_modules/react-router/dist/development/package.json","../../../../node_modules/react-router/dist/package.json","../../../../node_modules/react-router/dom/package.json","../../../../node_modules/react/jsx-runtime/package.json","../../../../node_modules/rxjs/dist/package.json","../../../../node_modules/rxjs/dist/types/internal/observable/dom/package.json","../../../../node_modules/rxjs/dist/types/internal/observable/package.json","../../../../node_modules/rxjs/dist/types/internal/operators/package.json","../../../../node_modules/rxjs/dist/types/internal/package.json","../../../../node_modules/rxjs/dist/types/internal/scheduled/package.json","../../../../node_modules/rxjs/dist/types/internal/scheduler/package.json","../../../../node_modules/rxjs/dist/types/internal/symbol/package.json","../../../../node_modules/rxjs/dist/types/internal/testing/package.json","../../../../node_modules/rxjs/dist/types/internal/util/package.json","../../../../node_modules/rxjs/dist/types/operators/package.json","../../../../node_modules/rxjs/dist/types/package.json","../../../../node_modules/rxjs/dist/types/testing/package.json","../../../../node_modules/uri-js/dist/es5/package.json","../../../../node_modules/uri-js/dist/package.json","../../../../node_modules/uvu/assert/package.json","../../expression-builder/node_modules/@microsoft/fast-element/package.json","../../foundation-ai/node_modules/@microsoft/fast-foundation/package.json","../../foundation-broadcast-channel/node_modules/@microsoft/fast-foundation/package.json","../../foundation-comms/node_modules/@microsoft/fast-element/package.json","../../foundation-comms/node_modules/@microsoft/fast-foundation/package.json","../../foundation-comms/node_modules/bowser/package.json","../../foundation-comms/node_modules/json-schema/package.json","../../foundation-comms/node_modules/rxjs/package.json","../../foundation-criteria/node_modules/@microsoft/fast-element/package.json","../../foundation-events/node_modules/@microsoft/fast-element/package.json","../../foundation-events/node_modules/@microsoft/fast-foundation/package.json","../../foundation-forms/node_modules/@jsonforms/core/package.json","../../foundation-forms/node_modules/@microsoft/fast-element/package.json","../../foundation-forms/node_modules/@microsoft/fast-foundation/package.json","../../foundation-forms/node_modules/ajv/package.json","../../foundation-forms/node_modules/json-schema/package.json","../../foundation-layout/node_modules/@genesis-community/golden-layout/package.json","../../foundation-layout/node_modules/@microsoft/fast-element/package.json","../../foundation-layout/node_modules/@microsoft/fast-foundation/package.json","../node_modules/@jsonforms/core/package.json","../node_modules/@r2wc/react-to-web-component/package.json","../node_modules/@typescript/lib-decorators/legacy/package.json","../node_modules/@typescript/lib-decorators/package.json","../node_modules/@typescript/lib-dom/iterable/package.json","../node_modules/@typescript/lib-dom/package.json","../node_modules/@typescript/lib-es2015/collection/package.json","../node_modules/@typescript/lib-es2015/core/package.json","../node_modules/@typescript/lib-es2015/generator/package.json","../node_modules/@typescript/lib-es2015/iterable/package.json","../node_modules/@typescript/lib-es2015/package.json","../node_modules/@typescript/lib-es2015/promise/package.json","../node_modules/@typescript/lib-es2015/proxy/package.json","../node_modules/@typescript/lib-es2015/reflect/package.json","../node_modules/@typescript/lib-es2015/symbol-wellknown/package.json","../node_modules/@typescript/lib-es2015/symbol/package.json","../node_modules/@typescript/lib-es2016/array-include/package.json","../node_modules/@typescript/lib-es2016/intl/package.json","../node_modules/@typescript/lib-es2016/package.json","../node_modules/@typescript/lib-es2017/arraybuffer/package.json","../node_modules/@typescript/lib-es2017/date/package.json","../node_modules/@typescript/lib-es2017/intl/package.json","../node_modules/@typescript/lib-es2017/object/package.json","../node_modules/@typescript/lib-es2017/package.json","../node_modules/@typescript/lib-es2017/sharedmemory/package.json","../node_modules/@typescript/lib-es2017/string/package.json","../node_modules/@typescript/lib-es2017/typedarrays/package.json","../node_modules/@typescript/lib-es2018/asyncgenerator/package.json","../node_modules/@typescript/lib-es2018/asynciterable/package.json","../node_modules/@typescript/lib-es2018/intl/package.json","../node_modules/@typescript/lib-es2018/package.json","../node_modules/@typescript/lib-es2018/promise/package.json","../node_modules/@typescript/lib-es2018/regexp/package.json","../node_modules/@typescript/lib-es2019/array/package.json","../node_modules/@typescript/lib-es2019/intl/package.json","../node_modules/@typescript/lib-es2019/object/package.json","../node_modules/@typescript/lib-es2019/package.json","../node_modules/@typescript/lib-es2019/string/package.json","../node_modules/@typescript/lib-es2019/symbol/package.json","../node_modules/@typescript/lib-es2020/bigint/package.json","../node_modules/@typescript/lib-es2020/date/package.json","../node_modules/@typescript/lib-es2020/intl/package.json","../node_modules/@typescript/lib-es2020/number/package.json","../node_modules/@typescript/lib-es2020/package.json","../node_modules/@typescript/lib-es2020/promise/package.json","../node_modules/@typescript/lib-es2020/sharedmemory/package.json","../node_modules/@typescript/lib-es2020/string/package.json","../node_modules/@typescript/lib-es2020/symbol-wellknown/package.json","../node_modules/@typescript/lib-es5/package.json","../node_modules/react-dom/client/package.json","../node_modules/react-dom/package.json","../node_modules/react-router-dom/package.json","../node_modules/react/jsx-runtime/package.json","../node_modules/react/package.json","../node_modules/tslib/package.json","../../foundation-testing/node_modules/@microsoft/fast-element/package.json","../../foundation-testing/node_modules/@microsoft/fast-foundation/package.json","../../foundation-testing/node_modules/sinon/package.json","../../foundation-testing/node_modules/uvu/assert/package.json","../../foundation-testing/node_modules/uvu/package.json","../../foundation-ui/node_modules/@fortawesome/fontawesome-svg-core/package.json","../../foundation-ui/node_modules/@microsoft/fast-components/package.json","../../foundation-ui/node_modules/@microsoft/fast-element/package.json","../../foundation-ui/node_modules/@microsoft/fast-foundation/package.json","../../foundation-ui/node_modules/@microsoft/fast-router/package.json","../../foundation-ui/node_modules/@microsoft/fast-web-utilities/package.json","../../foundation-ui/node_modules/@popperjs/core/package.json","../../foundation-ui/node_modules/dayjs/locale/en-gb/package.json","../../foundation-ui/node_modules/dayjs/package.json","../../foundation-ui/node_modules/rxjs/package.json","../../foundation-user/node_modules/@microsoft/fast-foundation/package.json","../../foundation-utils/node_modules/@microsoft/fast-element/package.json","../../foundation-utils/node_modules/@microsoft/fast-foundation/package.json","../../foundation-utils/node_modules/json-schema/package.json","../../foundation-utils/node_modules/numeral/locales/package.json","../../foundation-utils/node_modules/numeral/package.json","../../foundation-utils/node_modules/rxjs/package.json"]}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@genesislcap/foundation-react-utils",
3
3
  "description": "Genesis Foundation React Utils",
4
- "version": "15.6.2",
4
+ "version": "15.7.0-ts7.1",
5
5
  "sideEffects": false,
6
6
  "license": "SEE LICENSE IN license.txt",
7
7
  "main": "dist/esm/index.js",
@@ -47,13 +47,13 @@
47
47
  }
48
48
  },
49
49
  "devDependencies": {
50
- "@genesislcap/foundation-testing": "15.6.2",
51
- "@genesislcap/genx": "15.6.2",
52
- "@genesislcap/rollup-builder": "15.6.2",
53
- "@genesislcap/ts-builder": "15.6.2",
54
- "@genesislcap/uvu-playwright-builder": "15.6.2",
55
- "@genesislcap/vite-builder": "15.6.2",
56
- "@genesislcap/webpack-builder": "15.6.2",
50
+ "@genesislcap/foundation-testing": "15.7.0-ts7.1",
51
+ "@genesislcap/genx": "15.7.0-ts7.1",
52
+ "@genesislcap/rollup-builder": "15.7.0-ts7.1",
53
+ "@genesislcap/ts-builder": "15.7.0-ts7.1",
54
+ "@genesislcap/uvu-playwright-builder": "15.7.0-ts7.1",
55
+ "@genesislcap/vite-builder": "15.7.0-ts7.1",
56
+ "@genesislcap/webpack-builder": "15.7.0-ts7.1",
57
57
  "react-router-dom": "^7.1.3"
58
58
  },
59
59
  "peerDependencies": {
@@ -67,10 +67,10 @@
67
67
  }
68
68
  },
69
69
  "dependencies": {
70
- "@genesislcap/foundation-forms": "15.6.2",
71
- "@genesislcap/foundation-layout": "15.6.2",
72
- "@genesislcap/foundation-logger": "15.6.2",
73
- "@genesislcap/web-core": "15.6.2",
70
+ "@genesislcap/foundation-forms": "15.7.0-ts7.1",
71
+ "@genesislcap/foundation-layout": "15.7.0-ts7.1",
72
+ "@genesislcap/foundation-logger": "15.7.0-ts7.1",
73
+ "@genesislcap/web-core": "15.7.0-ts7.1",
74
74
  "@jsonforms/core": "^3.2.1",
75
75
  "@r2wc/react-to-web-component": "^2.0.2"
76
76
  },
@@ -83,5 +83,5 @@
83
83
  "access": "public"
84
84
  },
85
85
  "customElements": "dist/custom-elements.json",
86
- "gitHead": "a5781780cb56906755ddbfc4be75e221719ae4b4"
86
+ "gitHead": "cbdc6ec8914b5a75c30535e4bd15b11aff6c96fd"
87
87
  }