mirror of
https://github.com/grafana/grafana.git
synced 2025-02-16 18:34:52 -06:00
Organise text utils
This commit is contained in:
parent
75498dbda6
commit
676f8ea6c3
@ -4,3 +4,4 @@ export * from './vector';
|
||||
export * from './dataframe';
|
||||
export * from './transformations';
|
||||
export * from './datetime';
|
||||
export * from './text';
|
||||
|
3
packages/grafana-data/src/text/index.ts
Normal file
3
packages/grafana-data/src/text/index.ts
Normal file
@ -0,0 +1,3 @@
|
||||
export * from './string';
|
||||
export * from './markdown';
|
||||
export * from './text';
|
@ -1,7 +1,7 @@
|
||||
import { Field, DataFrame } from '../../types/dataFrame';
|
||||
import { FieldMatcherID, FrameMatcherID } from './ids';
|
||||
import { FieldMatcherInfo, FrameMatcherInfo } from '../../types/transformations';
|
||||
import { stringToJsRegex } from '../../utils/string';
|
||||
import { stringToJsRegex } from '../../text/string';
|
||||
|
||||
// General Field matcher
|
||||
const fieldNameMacher: FieldMatcherInfo<string> = {
|
||||
|
@ -1,6 +1,4 @@
|
||||
export * from './string';
|
||||
export * from './registry';
|
||||
export * from './markdown';
|
||||
export * from './deprecationWarning';
|
||||
export * from './csv';
|
||||
export * from './fieldReducer';
|
||||
@ -9,6 +7,5 @@ export * from './labels';
|
||||
export * from './labels';
|
||||
export * from './object';
|
||||
export * from './thresholds';
|
||||
export * from './text';
|
||||
|
||||
export { getMappedValue } from './valueMappings';
|
||||
|
Loading…
Reference in New Issue
Block a user