@telicent-oss/ds 0.23.1 → 0.23.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/ds.js CHANGED
@@ -80757,6 +80757,11 @@ function useViewTransitionState(to, opts) {
80757
80757
  return matchPath(path.pathname, nextPath) != null || matchPath(path.pathname, currentPath) != null;
80758
80758
  }
80759
80759
  const toStringEncoded = (params, codec) => `${codec.param}=${codec.encode(`${createSearchParams(params)}`)}`;
80760
+ const GRAPH_APP = {
80761
+ QUERY_PARAM: {
80762
+ NODES: `nodes[]`
80763
+ }
80764
+ };
80760
80765
  export {
80761
80766
  AppBar2 as AppBar,
80762
80767
  AppChrome,
@@ -80792,6 +80797,7 @@ export {
80792
80797
  FloatingPanelContext,
80793
80798
  FloatingPanelProvider,
80794
80799
  FloppyDiskIcon,
80800
+ GRAPH_APP,
80795
80801
  GridIcon,
80796
80802
  H1,
80797
80803
  H2,
package/dist/ds.umd.cjs CHANGED
@@ -80775,6 +80775,11 @@ uniform ${i3} ${s4} u_${a3};
80775
80775
  return matchPath(path.pathname, nextPath) != null || matchPath(path.pathname, currentPath) != null;
80776
80776
  }
80777
80777
  const toStringEncoded = (params, codec) => `${codec.param}=${codec.encode(`${createSearchParams(params)}`)}`;
80778
+ const GRAPH_APP = {
80779
+ QUERY_PARAM: {
80780
+ NODES: `nodes[]`
80781
+ }
80782
+ };
80778
80783
  const __viteOptionalPeerDep_mapboxGl_reactMapGl = {};
80779
80784
  const __viteOptionalPeerDep_mapboxGl_reactMapGl$1 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
80780
80785
  __proto__: null,
@@ -80814,6 +80819,7 @@ uniform ${i3} ${s4} u_${a3};
80814
80819
  exports2.FloatingPanelContext = FloatingPanelContext;
80815
80820
  exports2.FloatingPanelProvider = FloatingPanelProvider;
80816
80821
  exports2.FloppyDiskIcon = FloppyDiskIcon;
80822
+ exports2.GRAPH_APP = GRAPH_APP;
80817
80823
  exports2.GridIcon = GridIcon;
80818
80824
  exports2.H1 = H1;
80819
80825
  exports2.H2 = H2;
@@ -0,0 +1,5 @@
1
+ export declare const GRAPH_APP: {
2
+ QUERY_PARAM: {
3
+ NODES: string;
4
+ };
5
+ };
@@ -1,3 +1,4 @@
1
1
  export { getCodec, type Codec, base64Codec, uriComponentCodec, } from './getCodec/getCodec';
2
2
  export { ENCODE_SEARCH_PARAMS_MODES_Schema, type ENCODE_SEARCH_PARAMS_MODES_Type, } from './getCodec/schemaAndTypes';
3
3
  export { toStringEncoded, type URLSearchParamsInit, } from './getCodec/toStringEncoded';
4
+ export { GRAPH_APP } from './GraphApp/constants';
@@ -13,4 +13,4 @@ export * from './v1/components/surfaces';
13
13
  export * from './v1/theme';
14
14
  export { Modal, type ModalProps } from './v1/components/utils/index';
15
15
  export * from './component-library/Map';
16
- export { getCodec, type Codec, base64Codec, uriComponentCodec, ENCODE_SEARCH_PARAMS_MODES_Schema, type ENCODE_SEARCH_PARAMS_MODES_Type, toStringEncoded, type URLSearchParamsInit, } from './candidate-packages/utils-lib/src/index';
16
+ export { getCodec, type Codec, base64Codec, uriComponentCodec, ENCODE_SEARCH_PARAMS_MODES_Schema, type ENCODE_SEARCH_PARAMS_MODES_Type, toStringEncoded, type URLSearchParamsInit, GRAPH_APP } from './candidate-packages/utils-lib/src/index';
package/package.json CHANGED
@@ -7,7 +7,7 @@
7
7
  "url": "https://github.com/telicent-oss/telicent-ds.git"
8
8
  },
9
9
  "type": "module",
10
- "version": "0.23.1",
10
+ "version": "0.23.2",
11
11
  "private": false,
12
12
  "dependencies": {
13
13
  "@emotion/react": "^11.10.6",
@@ -68,6 +68,7 @@
68
68
  "bump:pre": "yarn bump:prerelease",
69
69
  "link-to-local-packages": "./scripts/link-to-local-packages.sh",
70
70
  "postinstall": "[ \"$LOCAL_MACHINE\" = \"false\" ] && echo 'Skipping tefe hook-postinstall' || tefe hook-postinstall",
71
+ "local-publish": "yarn build && yarn publish --dry-run --registry http://localhost:4873 --prepatch",
71
72
  "prepare": "husky install"
72
73
  },
73
74
  "peerDependencies": {