cb2558cb3843c60db029be1453fd3815df6965fccbe4b96eeaaf073b0c522d4f12f1057e94296fd4c244900624d39c4b09ec32a883b4fcb8664f919f1531e5 587 B

123456789101112131415161718192021222324252627282930
  1. import { buildProps, definePropType } from '../../../utils/vue/props/runtime.mjs';
  2. const statisticProps = buildProps({
  3. decimalSeparator: {
  4. type: String,
  5. default: "."
  6. },
  7. groupSeparator: {
  8. type: String,
  9. default: ","
  10. },
  11. precision: {
  12. type: Number,
  13. default: 0
  14. },
  15. formatter: Function,
  16. value: {
  17. type: definePropType([Number, Object]),
  18. default: 0
  19. },
  20. prefix: String,
  21. suffix: String,
  22. title: String,
  23. valueStyle: {
  24. type: definePropType([String, Object, Array])
  25. }
  26. });
  27. export { statisticProps };
  28. //# sourceMappingURL=statistic.mjs.map