tycho-components 0.14.16 → 0.14.17
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
|
@@ -76,6 +76,8 @@ export { default as LanguageSelector } from './LanguageSelector';
|
|
|
76
76
|
export { AvailableLanguages } from './LanguageSelector';
|
|
77
77
|
export type { AvailableLanguage } from './LanguageSelector';
|
|
78
78
|
export { default as Participants } from './Participants';
|
|
79
|
+
export type { default as Participant, ParticipantCreateRequest } from './Participants/types/Participant';
|
|
80
|
+
export { EMPTY_PARTICIPANT, PARTICIPANT_FIELDS, CHAT_FIELDS, } from './Participants/types/Participant';
|
|
79
81
|
export { default as SentenceView } from './SentenceView';
|
|
80
82
|
export { default as TreeView } from './TreeView';
|
|
81
83
|
export { default as CytoscapeTreeConverter } from './TreeView/cytoscape/CytoscapeTreeConverter';
|
package/dist/index.js
CHANGED
|
@@ -57,6 +57,7 @@ export { default as HelpButton } from './Header/HelpButton';
|
|
|
57
57
|
export { default as LanguageSelector } from './LanguageSelector';
|
|
58
58
|
export { AvailableLanguages } from './LanguageSelector';
|
|
59
59
|
export { default as Participants } from './Participants';
|
|
60
|
+
export { EMPTY_PARTICIPANT, PARTICIPANT_FIELDS, CHAT_FIELDS, } from './Participants/types/Participant';
|
|
60
61
|
export { default as SentenceView } from './SentenceView';
|
|
61
62
|
export { default as TreeView } from './TreeView';
|
|
62
63
|
export { default as CytoscapeTreeConverter } from './TreeView/cytoscape/CytoscapeTreeConverter';
|