pollination-react-io 0.0.4 → 0.0.5
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/build/Logo/index.d.ts +1 -1
- package/build/hooks/index.d.ts +9 -9
- package/build/hooks/useGetGeometry.d.ts +1 -1
- package/build/hooks/useGetHBJSON.d.ts +1 -1
- package/build/hooks/utilities.d.ts +1 -1
- package/build/index.esm.js +256 -265
- package/build/index.esm.js.map +1 -1
- package/build/index.js +270 -279
- package/build/index.js.map +1 -1
- package/package.json +12 -2
package/build/Logo/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
export declare
|
|
2
|
+
export declare function Logo(): JSX.Element;
|
package/build/hooks/index.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
export type { Options, Message, Coordinates, SettingsOptions } from './types';
|
|
2
|
-
export * from
|
|
3
|
-
export * from
|
|
4
|
-
export * from
|
|
5
|
-
export * from
|
|
6
|
-
export * from
|
|
7
|
-
export * from
|
|
8
|
-
export * from
|
|
9
|
-
export * from
|
|
1
|
+
export type { Options, Message, Coordinates, SettingsOptions, } from './types';
|
|
2
|
+
export * from './useGetHbjson';
|
|
3
|
+
export * from './useGetGeometry';
|
|
4
|
+
export * from './useSendHbjson';
|
|
5
|
+
export * from './useSendGeometry';
|
|
6
|
+
export * from './useRunCommand';
|
|
7
|
+
export * from './useManageSettings';
|
|
8
|
+
export * from './useHbjsontoVTK';
|
|
9
|
+
export * from './utilities';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="node" />
|
|
2
|
-
import { Message } from
|
|
2
|
+
import { Message } from './types';
|
|
3
3
|
export declare function checkDotNet(): boolean;
|
|
4
4
|
export declare function checkRuby(): boolean;
|
|
5
5
|
export declare function sendMessageDotNet(message: Message): Message;
|