kibana-123
Version:
Kibana is an open source (Apache Licensed), browser based analytics and search dashboard for Elasticsearch. Kibana is a snap to setup and start using. Kibana strives to be easy to get started with, while also being flexible and powerful, just like Elastic
13 lines (11 loc) • 326 B
JavaScript
import StringifyTypesNumeralProvider from 'ui/stringify/types/_numeral';
export default function NumberFormatProvider(Private) {
let Numeral = Private(StringifyTypesNumeralProvider);
return Numeral.factory({
id: 'number',
title: 'Number',
sampleInputs: [
10000, 12.345678, -1, -999, 0.52
]
});
};