tycho-components 0.4.1 → 0.4.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/index.d.ts +2 -0
- package/dist/index.js +1 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -71,6 +71,8 @@ export { default as SentenceView } from './SentenceView';
|
|
|
71
71
|
export { default as TreeView } from './TreeView';
|
|
72
72
|
export { default as CytoscapeTreeConverter } from './TreeView/cytoscape/CytoscapeTreeConverter';
|
|
73
73
|
export { default as SyntreesCytoscape } from './TreeView/cytoscape/SyntreesCytoscape';
|
|
74
|
+
export { default as TreeViewSearch } from './TreeView/TreeViewSearch/TreeViewSearch';
|
|
75
|
+
export type { SearchCriteria } from './TreeView/TreeViewSearch/TreeViewSearch';
|
|
74
76
|
export { default as VirtualKeyboard } from './VirtualKeyboard';
|
|
75
77
|
export { KeyboardCustomLayouts } from './VirtualKeyboard/KeyboardCustomLayout';
|
|
76
78
|
export type { KeyboardLayout } from './VirtualKeyboard/KeyboardCustomLayout';
|
package/dist/index.js
CHANGED
|
@@ -55,6 +55,7 @@ export { default as SentenceView } from './SentenceView';
|
|
|
55
55
|
export { default as TreeView } from './TreeView';
|
|
56
56
|
export { default as CytoscapeTreeConverter } from './TreeView/cytoscape/CytoscapeTreeConverter';
|
|
57
57
|
export { default as SyntreesCytoscape } from './TreeView/cytoscape/SyntreesCytoscape';
|
|
58
|
+
export { default as TreeViewSearch } from './TreeView/TreeViewSearch/TreeViewSearch';
|
|
58
59
|
export { default as VirtualKeyboard } from './VirtualKeyboard';
|
|
59
60
|
export { KeyboardCustomLayouts } from './VirtualKeyboard/KeyboardCustomLayout';
|
|
60
61
|
export { default as AppCopyText } from './AppCopyText';
|