@medipass/utils 11.81.0 → 11.81.2-chore-update-react-places-autocomplete.0

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 (70) 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.d.ts +13 -8
  20. package/google-addresses.js +30 -37
  21. package/i18n/index.js +18 -17
  22. package/i18n/translations.js +1 -1
  23. package/index.js +41 -41
  24. package/intercom.js +16 -12
  25. package/masked.js +12 -8
  26. package/package.json +6 -6
  27. package/parse-health-fund-card-fields.js +1 -1
  28. package/practices-d6c480f1.js +2 -2
  29. package/products.js +8 -6
  30. package/redux-actions.js +15 -10
  31. package/redux-reducer.js +15 -11
  32. package/sanitise-url.js +6 -4
  33. package/scroll.js +1 -1
  34. package/sensitive-keys.js +1 -1
  35. package/sentry.js +48 -25
  36. package/service-items.js +26 -21
  37. package/status-icons.js +1 -1
  38. package/status-text-classes.js +1 -1
  39. package/test-framework/fixtures/billable-items.js +2 -2
  40. package/test-framework/fixtures/businesses.js +2 -2
  41. package/test-framework/fixtures/forms.js +2 -2
  42. package/test-framework/fixtures/health-fund-accounts.js +2 -2
  43. package/test-framework/fixtures/health-fund-settings.js +2 -2
  44. package/test-framework/fixtures/health-funds.js +3 -3
  45. package/test-framework/fixtures/index.js +37 -37
  46. package/test-framework/fixtures/members.js +2 -2
  47. package/test-framework/fixtures/modalities.js +2 -2
  48. package/test-framework/fixtures/patients.js +2 -2
  49. package/test-framework/fixtures/payment-methods.js +2 -2
  50. package/test-framework/fixtures/practices.js +4 -4
  51. package/test-framework/fixtures/products.js +3 -3
  52. package/test-framework/fixtures/professional-categories.js +2 -2
  53. package/test-framework/fixtures/services.js +4 -4
  54. package/test-framework/fixtures/specialties.js +2 -2
  55. package/test-framework/fixtures/staff.js +5 -5
  56. package/test-framework/fixtures/subscriptions.js +6 -6
  57. package/test-framework/fixtures/transactions.js +14 -14
  58. package/transaction-status-formatted.js +1 -1
  59. package/transaction-status-helpers.js +9 -7
  60. package/transaction-status-icons.js +1 -1
  61. package/transaction-status-text-classes.js +1 -1
  62. package/transaction-status.js +11 -9
  63. package/tsconfig.json +1 -1
  64. package/validate-form.js +37 -27
  65. package/validate.js +32 -11
  66. package/webpack-config.js +5 -3
  67. package/workflow-state-formatted-text-classes.js +1 -1
  68. package/workflow-state-formatted.js +7 -5
  69. package/test-framework/react.d.ts +0 -8
  70. 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
  };