tycho-components 0.31.2 → 0.31.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.
@@ -21,7 +21,7 @@ export { SentenceStatusNames } from './types/SentenceStatus';
21
21
  export type { SentenceStatus } from './types/SentenceStatus';
22
22
  export type { Mark, Break, Format as SentenceFormat, SentenceTier, Translation, } from './types/Sentence';
23
23
  export type { default as Sentence } from './types/Sentence';
24
- export { INFLECTIONS } from './types/Struct';
24
+ export { INFLECTIONS, EXTENSIONS } from './types/Struct';
25
25
  export type { Chunk, Edition, Format, Morpheme, Split, Struct, Token, ConlluToken, } from './types/Struct';
26
26
  export type { CytoscapeTree, Tree } from './types/Tree';
27
27
  export { UserStatusNames } from './types/User';
@@ -10,7 +10,7 @@ export { CorpusImageTypeNames } from './types/CorpusImage';
10
10
  export { DEFAULT_EDITION_TIERS, EditionTiers, StructuralEditionTiers, isStructuralEditionTier, } from './types/EditionTiers';
11
11
  export { DEFAULT_DELIMITERS, DELIMITERS, DelimiterNames, EMPTY_CONFIGURATION, } from './types/ProcessConfiguration';
12
12
  export { SentenceStatusNames } from './types/SentenceStatus';
13
- export { INFLECTIONS } from './types/Struct';
13
+ export { INFLECTIONS, EXTENSIONS } from './types/Struct';
14
14
  export { UserStatusNames } from './types/User';
15
15
  export { useCorpusUtils } from './useCorpusUtils';
16
16
  export { useLoggedUtils } from './useLoggedUtils';
@@ -1,5 +1,6 @@
1
1
  import SentenceStatus from './SentenceStatus';
2
2
  export declare const INFLECTIONS: string[];
3
+ export declare const EXTENSIONS: string[];
3
4
  export type Split = {
4
5
  v?: string;
5
6
  t?: string;
@@ -1 +1,2 @@
1
1
  export const INFLECTIONS = ['1S', '2S', '3S', '1P', '2P', '3P'];
2
+ export const EXTENSIONS = ['LFD', 'MSR', 'PRG', 'PRN', 'RSP', 'SPR', 'SPE'];
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "tycho-components",
3
3
  "private": false,
4
- "version": "0.31.2",
4
+ "version": "0.31.3",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "exports": {