@beinformed/ui 1.65.22 → 1.65.24

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 (107) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/esm/hooks/__tests__/useAuthentication.spec.js.flow +100 -132
  3. package/esm/hooks/useAuthentication.js +14 -8
  4. package/esm/hooks/useAuthentication.js.flow +23 -23
  5. package/esm/hooks/useAuthentication.js.map +1 -1
  6. package/esm/hooks/useModularUI.js +1 -1
  7. package/esm/hooks/useModularUI.js.flow +1 -1
  8. package/esm/hooks/useModularUI.js.map +1 -1
  9. package/esm/models/filters/RangeFilterModel.js +1 -1
  10. package/esm/models/filters/RangeFilterModel.js.flow +1 -1
  11. package/esm/models/filters/RangeFilterModel.js.map +1 -1
  12. package/esm/models/filters/__tests__/RangeFilterModel.spec.js.flow +5 -7
  13. package/esm/redux/_i18n/I18nActions.js.flow +1 -1
  14. package/esm/redux/_i18n/I18nActions.js.map +1 -1
  15. package/esm/redux/_modularui/ModularUIActions.js.flow +2 -2
  16. package/esm/redux/_modularui/ModularUIActions.js.map +1 -1
  17. package/esm/redux/_modularui/ModularUIConnector.js +2 -2
  18. package/esm/redux/_modularui/ModularUIConnector.js.flow +2 -2
  19. package/esm/redux/_modularui/ModularUIConnector.js.map +1 -1
  20. package/esm/redux/_modularui/ModularUISelectors.js +12 -18
  21. package/esm/redux/_modularui/ModularUISelectors.js.flow +13 -14
  22. package/esm/redux/_modularui/ModularUISelectors.js.map +1 -1
  23. package/esm/redux/_modularui/withModularUI.js.flow +2 -2
  24. package/esm/redux/_modularui/withModularUI.js.map +1 -1
  25. package/esm/redux/actions/Application.js +32 -4
  26. package/esm/redux/actions/Application.js.flow +34 -5
  27. package/esm/redux/actions/Application.js.map +1 -1
  28. package/esm/redux/actions/Authorization.js +20 -25
  29. package/esm/redux/actions/Authorization.js.flow +28 -29
  30. package/esm/redux/actions/Authorization.js.map +1 -1
  31. package/esm/redux/actions/Error.js +2 -0
  32. package/esm/redux/actions/Error.js.flow +5 -4
  33. package/esm/redux/actions/Error.js.map +1 -1
  34. package/esm/redux/actions/Form.js.flow +1 -1
  35. package/esm/redux/actions/Form.js.map +1 -1
  36. package/esm/redux/actions/FormAttributeSet.js.flow +1 -1
  37. package/esm/redux/actions/FormAttributeSet.js.map +1 -1
  38. package/esm/redux/actions/FormAutosave.js.flow +1 -1
  39. package/esm/redux/actions/FormAutosave.js.map +1 -1
  40. package/esm/redux/actions/FormAutosubmit.js.flow +1 -1
  41. package/esm/redux/actions/FormAutosubmit.js.map +1 -1
  42. package/esm/redux/actions/FormAutoupdate.js.flow +1 -1
  43. package/esm/redux/actions/FormAutoupdate.js.map +1 -1
  44. package/esm/redux/actions/FormValidations.js.flow +1 -1
  45. package/esm/redux/actions/FormValidations.js.map +1 -1
  46. package/esm/redux/actions/Notification.js.flow +3 -3
  47. package/esm/redux/actions/Notification.js.map +1 -1
  48. package/esm/redux/actions/SignIn.js +2 -4
  49. package/esm/redux/actions/SignIn.js.flow +4 -7
  50. package/esm/redux/actions/SignIn.js.map +1 -1
  51. package/esm/redux/actions/SignOut.js.flow +1 -1
  52. package/esm/redux/actions/SignOut.js.map +1 -1
  53. package/esm/redux/actions/__tests__/Application.spec.js.flow +67 -29
  54. package/esm/redux/actions/__tests__/Authorization.spec.js.flow +77 -83
  55. package/esm/redux/connectors/Form.js.flow +2 -2
  56. package/esm/redux/connectors/Form.js.map +1 -1
  57. package/esm/redux/connectors/FormAttributeSet.js.flow +2 -5
  58. package/esm/redux/connectors/FormAttributeSet.js.map +1 -1
  59. package/esm/redux/connectors/Progress.js.flow +1 -1
  60. package/esm/redux/connectors/Progress.js.map +1 -1
  61. package/esm/redux/connectors/SignIn.js.flow +1 -1
  62. package/esm/redux/connectors/SignIn.js.map +1 -1
  63. package/esm/redux/connectors/SignOut.js.flow +1 -1
  64. package/esm/redux/connectors/SignOut.js.map +1 -1
  65. package/esm/redux/store/configureStore.js +5 -1
  66. package/esm/redux/store/configureStore.js.flow +10 -1
  67. package/esm/redux/store/configureStore.js.map +1 -1
  68. package/esm/redux/types.js.flow +24 -5
  69. package/esm/redux/types.js.map +1 -1
  70. package/lib/hooks/useAuthentication.js +14 -8
  71. package/lib/hooks/useAuthentication.js.map +1 -1
  72. package/lib/hooks/useModularUI.js +1 -1
  73. package/lib/hooks/useModularUI.js.map +1 -1
  74. package/lib/models/filters/RangeFilterModel.js +1 -1
  75. package/lib/models/filters/RangeFilterModel.js.map +1 -1
  76. package/lib/redux/_i18n/I18nActions.js.map +1 -1
  77. package/lib/redux/_modularui/ModularUIActions.js.map +1 -1
  78. package/lib/redux/_modularui/ModularUIConnector.js +2 -2
  79. package/lib/redux/_modularui/ModularUIConnector.js.map +1 -1
  80. package/lib/redux/_modularui/ModularUISelectors.js +12 -18
  81. package/lib/redux/_modularui/ModularUISelectors.js.map +1 -1
  82. package/lib/redux/_modularui/withModularUI.js.map +1 -1
  83. package/lib/redux/actions/Application.js +33 -4
  84. package/lib/redux/actions/Application.js.map +1 -1
  85. package/lib/redux/actions/Authorization.js +20 -25
  86. package/lib/redux/actions/Authorization.js.map +1 -1
  87. package/lib/redux/actions/Error.js +2 -0
  88. package/lib/redux/actions/Error.js.map +1 -1
  89. package/lib/redux/actions/Form.js.map +1 -1
  90. package/lib/redux/actions/FormAttributeSet.js.map +1 -1
  91. package/lib/redux/actions/FormAutosave.js.map +1 -1
  92. package/lib/redux/actions/FormAutosubmit.js.map +1 -1
  93. package/lib/redux/actions/FormAutoupdate.js.map +1 -1
  94. package/lib/redux/actions/FormValidations.js.map +1 -1
  95. package/lib/redux/actions/Notification.js.map +1 -1
  96. package/lib/redux/actions/SignIn.js +2 -4
  97. package/lib/redux/actions/SignIn.js.map +1 -1
  98. package/lib/redux/actions/SignOut.js.map +1 -1
  99. package/lib/redux/connectors/Form.js.map +1 -1
  100. package/lib/redux/connectors/FormAttributeSet.js.map +1 -1
  101. package/lib/redux/connectors/Progress.js.map +1 -1
  102. package/lib/redux/connectors/SignIn.js.map +1 -1
  103. package/lib/redux/connectors/SignOut.js.map +1 -1
  104. package/lib/redux/store/configureStore.js +5 -1
  105. package/lib/redux/store/configureStore.js.map +1 -1
  106. package/lib/redux/types.js.map +1 -1
  107. package/package.json +11 -11
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@beinformed/ui",
3
- "version": "1.65.22",
3
+ "version": "1.65.24",
4
4
  "description": "Toolbox for be informed javascript layouts",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "bugs": "https://support.beinformed.com",
@@ -70,7 +70,7 @@
70
70
  "dependencies": {
71
71
  "@babel/runtime-corejs3": "^7.28.6",
72
72
  "@date-fns/tz": "^1.4.1",
73
- "baseline-browser-mapping": "^2.9.15",
73
+ "baseline-browser-mapping": "^2.9.19",
74
74
  "big.js": "^7.0.1",
75
75
  "date-fns": "^4.1.0",
76
76
  "deepmerge": "^4.3.1",
@@ -82,7 +82,7 @@
82
82
  "iban": "^0.0.14",
83
83
  "js-cookie": "^3.0.5",
84
84
  "klona": "^2.0.6",
85
- "lodash": "^4.17.21",
85
+ "lodash": "^4.17.23",
86
86
  "reselect": "^4.1.8",
87
87
  "setimmediate": "^1.0.5",
88
88
  "timezone-soft": "^1.5.2"
@@ -98,11 +98,11 @@
98
98
  "@babel/preset-env": "^7.28.6",
99
99
  "@babel/preset-flow": "^7.27.1",
100
100
  "@babel/preset-react": "^7.28.5",
101
- "@commitlint/cli": "^20.3.1",
102
- "@commitlint/config-conventional": "^20.3.1",
101
+ "@commitlint/cli": "^20.4.0",
102
+ "@commitlint/config-conventional": "^20.4.0",
103
103
  "@testing-library/dom": "^10.4.1",
104
104
  "@testing-library/react": "^16.3.2",
105
- "auditjs": "^4.0.47",
105
+ "auditjs": "^4.2.0",
106
106
  "babel-jest": "^30.2.0",
107
107
  "babel-plugin-styled-components": "^2.1.4",
108
108
  "cherry-pick": "^0.5.0",
@@ -114,7 +114,7 @@
114
114
  "eslint-plugin-babel": "^5.3.1",
115
115
  "eslint-plugin-ft-flow": "^3.0.11",
116
116
  "eslint-plugin-jest": "^29.12.1",
117
- "eslint-plugin-jsdoc": "^61.5.0",
117
+ "eslint-plugin-jsdoc": "^62.5.0",
118
118
  "eslint-plugin-react": "^7.37.5",
119
119
  "eslint-plugin-react-hooks": "^5.2.0",
120
120
  "eslint-plugin-you-dont-need-lodash-underscore": "^6.14.0",
@@ -131,13 +131,13 @@
131
131
  "jscodeshift": "^17.3.0",
132
132
  "lint-staged": "^16.2.7",
133
133
  "polished": "^4.3.1",
134
- "prettier": "^3.8.0",
135
- "react": "^19.2.3",
136
- "react-dom": "^19.2.3",
134
+ "prettier": "^3.8.1",
135
+ "react": "^19.2.4",
136
+ "react-dom": "^19.2.4",
137
137
  "react-helmet-async": "^2.0.5",
138
138
  "react-redux": "^8.1.3",
139
139
  "react-router": "^5.0.0",
140
- "react-test-renderer": "^19.2.3",
140
+ "react-test-renderer": "^19.2.4",
141
141
  "redux": "^4.2.1",
142
142
  "redux-mock-store": "^1.5.5",
143
143
  "redux-thunk": "^2.4.2",