@medipass/utils 11.66.2-feature-eclipse-e2e.0 → 11.66.6

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.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,49 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [11.66.6](https://github.com/medipass/web-medicules/compare/@medipass/utils@11.66.5...@medipass/utils@11.66.6) (2022-08-07)
7
+
8
+ **Note:** Version bump only for package @medipass/utils
9
+
10
+
11
+
12
+
13
+
14
+ ## [11.66.5](https://github.com/medipass/web-medicules/compare/@medipass/utils@11.66.5-master.0...@medipass/utils@11.66.5) (2022-08-05)
15
+
16
+ **Note:** Version bump only for package @medipass/utils
17
+
18
+
19
+
20
+
21
+
22
+ ## [11.66.4](https://github.com/medipass/web-medicules/compare/@medipass/utils@11.66.3...@medipass/utils@11.66.4) (2022-08-05)
23
+
24
+ **Note:** Version bump only for package @medipass/utils
25
+
26
+
27
+
28
+
29
+
30
+ ## [11.66.3](https://github.com/medipass/web-medicules/compare/@medipass/utils@11.66.2...@medipass/utils@11.66.3) (2022-08-05)
31
+
32
+ **Note:** Version bump only for package @medipass/utils
33
+
34
+
35
+
36
+
37
+
38
+ ## [11.66.2](https://github.com/medipass/web-medicules/compare/@medipass/utils@11.66.1...@medipass/utils@11.66.2) (2022-08-05)
39
+
40
+
41
+ ### Bug Fixes
42
+
43
+ * crash on table component when selecting undefined rows ([#671](https://github.com/medipass/web-medicules/issues/671)) ([b4e0e4e](https://github.com/medipass/web-medicules/commit/b4e0e4e))
44
+
45
+
46
+
47
+
48
+
6
49
  ## [11.66.1](https://github.com/medipass/web-medicules/compare/@medipass/utils@11.66.0...@medipass/utils@11.66.1) (2022-08-02)
7
50
 
8
51
 
package/constants.js CHANGED
@@ -326,7 +326,7 @@ var HICAPS_FORMS = {
326
326
 
327
327
  /* ====== START: PMS ======= */
328
328
 
329
- var PMS = ['Best Practice (Allied)', 'Best Practice (Premier)', 'Clinic to Cloud', 'Cliniko', 'Coreplus', 'Coviu', 'Dental4Windows', 'Doctors on Demand', 'Exact', 'Front Desk', 'Genie', 'Gensolve', 'Gentu', 'Halaxy / HealthKit', 'Iconpractice', 'Kalysys', 'Lysn', 'Medical Director', 'Medilink', 'Medirecords', 'MedTech', 'Myhealth1st', 'Nookal', 'Oasis', 'Owner.health', 'Optomate', 'Powerdiary', 'PPMP', 'PracSuite', 'Shexie', 'Splose', 'Sunix', 'TM2', 'VisitBase', 'ZedMed', 'Zurili', 'Other'];
329
+ var PMS = ['Best Practice (Allied)', 'Best Practice (Premier)', 'Clinic to Cloud', 'Cliniko', 'Coreplus', 'Coviu', 'Dental4Windows', 'Doctors on Demand', 'Exact', 'Front Desk', 'Genie', 'Gensolve', 'Gentu', 'Halaxy / HealthKit', 'Iconpractice', 'Kalysys', 'Lysn', 'Medical Director', 'Medilink', 'Medirecords', 'MedTech', 'My Appointments', 'Myhealth1st', 'Nookal', 'Oasis', 'Owner.health', 'Optomate', 'Powerdiary', 'PPMP', 'PracSuite', 'Shexie', 'Splose', 'Sunix', 'TM2', 'VisitBase', 'ZedMed', 'Zurili', 'Other'];
330
330
  /* ====== END: PMS ======= */
331
331
 
332
332
  /* ====== START: REGIONS ======= */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@medipass/utils",
3
- "version": "11.66.2-feature-eclipse-e2e.0",
3
+ "version": "11.66.6",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -48,5 +48,5 @@
48
48
  "redux-thunk": "^2.2.0",
49
49
  "rimraf": "^2.6.2"
50
50
  },
51
- "gitHead": "40cd1c14e88e02791db268615bc0fc976f92764e"
51
+ "gitHead": "a0210639b2b43390dcab7fd7758fd764d4e3f668"
52
52
  }
package/validate-form.js CHANGED
@@ -331,7 +331,8 @@ var hasSpaceAfterApostrophe = function hasSpaceAfterApostrophe(value) {
331
331
  var hasSpaceBeforeApostrophe = function hasSpaceBeforeApostrophe(value) {
332
332
  return value && /(\s['])/.test(value) ? "Name cannot have a space before an apostrophe (')" : undefined;
333
333
  };
334
- var validateForm = (function () {
334
+
335
+ var combineValidators = function combineValidators() {
335
336
  for (var _len = arguments.length, fns = new Array(_len), _key = 0; _key < _len; _key++) {
336
337
  fns[_key] = arguments[_key];
337
338
  }
@@ -347,9 +348,9 @@ var validateForm = (function () {
347
348
 
348
349
  return undefined;
349
350
  };
350
- });
351
+ };
351
352
 
352
- exports.default = validateForm;
353
+ exports.default = combineValidators;
353
354
  exports.hasDoubleSpaces = hasDoubleSpaces;
354
355
  exports.hasInvalidCharacters = hasInvalidCharacters;
355
356
  exports.hasNumber = hasNumber;