tycho-components 0.29.15 → 0.29.16

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.
@@ -19,7 +19,6 @@ export declare const DelimiterNames: {
19
19
  SEMICOLON: string;
20
20
  COMMA: string;
21
21
  ELLIPSIS: string;
22
- BAR: string;
23
22
  };
24
23
  export declare const DELIMITERS: SentenceDelimiter[];
25
24
  export declare const DEFAULT_DELIMITERS: string[];
@@ -6,7 +6,6 @@ export const DelimiterNames = {
6
6
  SEMICOLON: 'common:delimiter.semicolon',
7
7
  COMMA: 'common:delimiter.comma',
8
8
  ELLIPSIS: 'common:delimiter.ellipsis',
9
- BAR: 'common:delimiter.bar',
10
9
  };
11
10
  export const DELIMITERS = [
12
11
  { name: DelimiterNames.PERIOD, symbol: '.', value: '\\.', default: true },
@@ -31,7 +30,6 @@ export const DELIMITERS = [
31
30
  value: '\\.\\.\\.',
32
31
  default: true,
33
32
  },
34
- { name: DelimiterNames.BAR, symbol: '|', value: '|', default: false },
35
33
  ];
36
34
  export const DEFAULT_DELIMITERS = DELIMITERS.filter((d) => d.default).map((d) => d.value);
37
35
  export const EMPTY_CONFIGURATION = {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "tycho-components",
3
3
  "private": false,
4
- "version": "0.29.15",
4
+ "version": "0.29.16",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "exports": {