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.
|
@@ -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 = {
|