@medipass/utils 11.81.0 → 11.81.1

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.
Files changed (69) hide show
  1. package/babel.config.js +2 -2
  2. package/build-validation-schema.js +301 -269
  3. package/chart.js +12 -8
  4. package/claim-payment-status-formatted.js +1 -1
  5. package/claim-payment-status-icons.js +1 -1
  6. package/claim-payment-status-text-classes.js +1 -1
  7. package/datetime.js +10 -6
  8. package/document-types-formatted.js +1 -1
  9. package/document-types-icons.js +1 -1
  10. package/document-types-text-classes.js +1 -1
  11. package/documents/workflow-state-formatted-text-classes.js +1 -1
  12. package/documents/workflow-state-formatted.js +7 -5
  13. package/documents/workflow-state-icons.js +1 -1
  14. package/form-applications/assign-values-to-sections.js +6 -4
  15. package/funders.js +6 -4
  16. package/get-env.js +14 -23
  17. package/get-select-options.js +11 -9
  18. package/get-staff-type-display-name.js +1 -1
  19. package/google-addresses.js +17 -12
  20. package/i18n/index.js +18 -17
  21. package/i18n/translations.js +1 -1
  22. package/index.js +41 -41
  23. package/intercom.js +16 -12
  24. package/masked.js +12 -8
  25. package/package.json +4 -5
  26. package/parse-health-fund-card-fields.js +1 -1
  27. package/practices-d6c480f1.js +2 -2
  28. package/products.js +8 -6
  29. package/redux-actions.js +15 -10
  30. package/redux-reducer.js +15 -11
  31. package/sanitise-url.js +6 -4
  32. package/scroll.js +1 -1
  33. package/sensitive-keys.js +1 -1
  34. package/sentry.js +48 -25
  35. package/service-items.js +26 -21
  36. package/status-icons.js +1 -1
  37. package/status-text-classes.js +1 -1
  38. package/test-framework/fixtures/billable-items.js +2 -2
  39. package/test-framework/fixtures/businesses.js +2 -2
  40. package/test-framework/fixtures/forms.js +2 -2
  41. package/test-framework/fixtures/health-fund-accounts.js +2 -2
  42. package/test-framework/fixtures/health-fund-settings.js +2 -2
  43. package/test-framework/fixtures/health-funds.js +3 -3
  44. package/test-framework/fixtures/index.js +37 -37
  45. package/test-framework/fixtures/members.js +2 -2
  46. package/test-framework/fixtures/modalities.js +2 -2
  47. package/test-framework/fixtures/patients.js +2 -2
  48. package/test-framework/fixtures/payment-methods.js +2 -2
  49. package/test-framework/fixtures/practices.js +4 -4
  50. package/test-framework/fixtures/products.js +3 -3
  51. package/test-framework/fixtures/professional-categories.js +2 -2
  52. package/test-framework/fixtures/services.js +4 -4
  53. package/test-framework/fixtures/specialties.js +2 -2
  54. package/test-framework/fixtures/staff.js +5 -5
  55. package/test-framework/fixtures/subscriptions.js +6 -6
  56. package/test-framework/fixtures/transactions.js +14 -14
  57. package/transaction-status-formatted.js +1 -1
  58. package/transaction-status-helpers.js +9 -7
  59. package/transaction-status-icons.js +1 -1
  60. package/transaction-status-text-classes.js +1 -1
  61. package/transaction-status.js +11 -9
  62. package/tsconfig.json +1 -1
  63. package/validate-form.js +37 -27
  64. package/validate.js +32 -11
  65. package/webpack-config.js +5 -3
  66. package/workflow-state-formatted-text-classes.js +1 -1
  67. package/workflow-state-formatted.js +7 -5
  68. package/test-framework/react.d.ts +0 -8
  69. package/test-framework/react.js +0 -39
package/babel.config.js CHANGED
@@ -1,5 +1,5 @@
1
1
  module.exports = {
2
2
  extends: '../../babel.config.js',
3
- plugins: ['@babel/plugin-transform-runtime', '@babel/plugin-transform-typescript'],
4
- presets: ['@babel/preset-typescript']
3
+ presets: ['@babel/preset-typescript'],
4
+ plugins: []
5
5
  };