tycho-components 0.2.1-SNAPSHOT-1 → 0.2.1-SNAPSHOT-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/dist/AppTable/types/AppPage.d.ts +2 -0
- package/dist/SentenceView/SentenceMorphemeTiers.js +1 -1
- package/dist/SentenceView/index.d.ts +2 -0
- package/dist/SentenceView/index.js +2 -0
- package/dist/configs/types/Parameter.d.ts +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/package.json +1 -1
|
@@ -4,7 +4,7 @@ import SentenceUtils from '../functions/SentenceUtils';
|
|
|
4
4
|
import SentenceMorphemeTags from './SentenceMorphemeTags';
|
|
5
5
|
import './style.scss';
|
|
6
6
|
export default function SentenceMorphemeTiers({ struct, morphemeTiers, }) {
|
|
7
|
-
const { t } = useTranslation(
|
|
7
|
+
const { t } = useTranslation('sentence');
|
|
8
8
|
const { skipToken } = SentenceUtils;
|
|
9
9
|
return (_jsxs(_Fragment, { children: [_jsxs("tr", { children: [_jsx("td", { children: t('label.morphemes') }), struct.tokens.map((thisToken, idx) => {
|
|
10
10
|
const elements = [];
|
package/dist/index.d.ts
CHANGED
|
@@ -54,6 +54,7 @@ export { default as UsabilityUtils } from './functions/UsabilityUtils';
|
|
|
54
54
|
export { default as Header } from './Header';
|
|
55
55
|
export { default as LanguageSelector } from './LanguageSelector';
|
|
56
56
|
export { default as Participants } from './Participants';
|
|
57
|
+
export { default as SentenceView } from './SentenceView';
|
|
57
58
|
export { default as TreeView } from './TreeView';
|
|
58
59
|
export { default as SyntreesCytoscape } from './TreeView/cytoscape/SyntreesCytoscape';
|
|
59
60
|
export { default as VirtualKeyboard } from './VirtualKeyboard';
|
package/dist/index.js
CHANGED
|
@@ -40,6 +40,7 @@ export { default as UsabilityUtils } from './functions/UsabilityUtils';
|
|
|
40
40
|
export { default as Header } from './Header';
|
|
41
41
|
export { default as LanguageSelector } from './LanguageSelector';
|
|
42
42
|
export { default as Participants } from './Participants';
|
|
43
|
+
export { default as SentenceView } from './SentenceView';
|
|
43
44
|
export { default as TreeView } from './TreeView';
|
|
44
45
|
export { default as SyntreesCytoscape } from './TreeView/cytoscape/SyntreesCytoscape';
|
|
45
46
|
export { default as VirtualKeyboard } from './VirtualKeyboard';
|