@icos-desktop/react-components 0.1.2 → 0.1.3

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/README.md CHANGED
@@ -1 +1,3 @@
1
1
  # ICOS Desktop React Components
2
+
3
+ https://www.npmjs.com/package/@icos-desktop/react-components
package/build/index.d.ts CHANGED
@@ -5,13 +5,6 @@ interface Config {
5
5
  }
6
6
  declare const configFn: (config: Config) => void;
7
7
 
8
- interface TestComponentProps {
9
- heading: string;
10
- content: ReactNode;
11
- }
12
-
13
- declare const TestComponent: React.FC<TestComponentProps>;
14
-
15
8
  interface CheckInfo {
16
9
  info: {
17
10
  selectSenseObjCodes?: string[];
@@ -32,4 +25,22 @@ interface EntityTreeProps {
32
25
 
33
26
  declare const EntityTree: React.FC<EntityTreeProps>;
34
27
 
35
- export { EntityTree, TestComponent, configFn as config };
28
+ interface EntityInfoProps {
29
+ senseGlobalCode: string;
30
+ }
31
+
32
+ declare const EntityInfo: React.FC<EntityInfoProps>;
33
+
34
+ interface EntityTableProps {
35
+ bookId: string;
36
+ }
37
+
38
+ declare const EntityTable: React.FC<EntityTableProps>;
39
+
40
+ interface RegionTreeProps {
41
+ children?: ReactNode;
42
+ }
43
+
44
+ declare const RegionTree: React.FC<RegionTreeProps>;
45
+
46
+ export { EntityInfo, EntityTable, EntityTree, RegionTree, configFn as config };