pollination-react-io 0.0.25 → 0.0.26

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,3 +1,3 @@
1
1
  export interface GetModelProps {
2
- setParentState: (data: any) => any;
2
+ setParentState?: (data: any) => any;
3
3
  }
@@ -1947,7 +1947,6 @@ var useGetHbjson = function () {
1947
1947
  var hbjsonRef = useRef(undefined);
1948
1948
  var setReturnValue = useCallback(function (res, force) {
1949
1949
  var bytes = new TextEncoder().encode(res.Geometry);
1950
- console.log(res);
1951
1950
  if (hbjsonRef.current) {
1952
1951
  if (force || !lodash_isequal(bytes, hbjsonRef.current)) {
1953
1952
  setHbjson(new Blob([bytes], {
@@ -2006,7 +2005,6 @@ var useGetHbjson = function () {
2006
2005
  var revitGetHbjson = useCallback(function () {
2007
2006
  if (!checkDotNet())
2008
2007
  return;
2009
- console.log('Calling revitGetHbjson');
2010
2008
  window.parent.chrome.webview.hostObjects.sync.hbjson.PassHBJSON();
2011
2009
  }, []);
2012
2010
  var getHbjson = useMemo(function () {