@k-int/stripes-kint-components 5.2.1 → 5.2.3

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
@@ -1,3 +1,17 @@
1
+ ## [5.2.3](https://gitlab.com/knowledge-integration/folio/stripes-kint-components/compare/v5.2.2...v5.2.3) (2023-11-03)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * ERM-3081 Removed spaces added between stanzas in groupings by deparseKiwtQueryFilters ([63b061b](https://gitlab.com/knowledge-integration/folio/stripes-kint-components/commit/63b061bb0a7922898c37ed2d23b86109928e2cd0))
7
+
8
+ ## [5.2.2](https://gitlab.com/knowledge-integration/folio/stripes-kint-components/compare/v5.2.1...v5.2.2) (2023-11-02)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * Do not add a space after search operator when doing groupings ([9aadc23](https://gitlab.com/knowledge-integration/folio/stripes-kint-components/commit/9aadc235a993e4808ea62effeaf60046ad01bc8c))
14
+
1
15
  ## [5.2.1](https://gitlab.com/knowledge-integration/folio/stripes-kint-components/compare/v5.2.0...v5.2.1) (2023-10-31)
2
16
 
3
17
 
@@ -20,12 +20,12 @@ const deparseKiwtQueryFilters = queryArray => {
20
20
  let returnString = '';
21
21
  queryArray.forEach(qa => {
22
22
  if (Array.isArray(qa)) {
23
- returnString += ` (${deparseKiwtQueryFilters(qa)})`;
23
+ returnString += `(${deparseKiwtQueryFilters(qa)})`;
24
24
  } else if (typeof qa === 'string') {
25
- returnString += ` ${qa}`;
25
+ returnString += qa;
26
26
  } else {
27
27
  // Assuming object at this stage
28
- returnString += ` ${deparseKiwtQueryFiltersObject(qa)}`;
28
+ returnString += `${deparseKiwtQueryFiltersObject(qa)}`;
29
29
  }
30
30
  });
31
31
  return returnString.trim();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@k-int/stripes-kint-components",
3
- "version": "5.2.1",
3
+ "version": "5.2.3",
4
4
  "description": "Stripes Component library for K-Int specific applications",
5
5
  "sideEffects": [
6
6
  "*.css"
@@ -46,6 +46,10 @@
46
46
  "@folio/stripes-cli": "^3.0.0",
47
47
  "@folio/stripes-erm-testing": "^2.0.0",
48
48
  "@formatjs/cli": "^6.1.3",
49
+ "@semantic-release/changelog": "^6.0.3",
50
+ "@semantic-release/git": "^10.0.1",
51
+ "@semantic-release/gitlab": "^12.0.6",
52
+ "@semantic-release/npm": "^11.0.0",
49
53
  "babel-eslint": "^10.1.0",
50
54
  "babel-plugin-const-enum": "^1.0.1",
51
55
  "babel-plugin-module-resolver": "^4.0.0",
@@ -63,7 +67,7 @@
63
67
  "prop-types-extra": ">=1.1.0",
64
68
  "react": "^18.2.0",
65
69
  "react-dom": "^18.2.0",
66
- "react-intl": "^5.7.0",
70
+ "react-intl": "^6.4.4",
67
71
  "react-query": "^3.6.0",
68
72
  "react-redux": "^7.0.0",
69
73
  "react-router": "^5.2.0",
@@ -72,13 +76,9 @@
72
76
  "redux-observable": "^1.2.0",
73
77
  "regenerator-runtime": "^0.13.3",
74
78
  "rxjs": "^6.6.3",
79
+ "semantic-release": "^22.0.6",
75
80
  "sinon": "^14.0.0",
76
- "typescript": "^2.8.0",
77
- "@semantic-release/git": "^10.0.1",
78
- "@semantic-release/gitlab": "^12.0.6",
79
- "@semantic-release/npm": "^11.0.0",
80
- "@semantic-release/changelog": "^6.0.3",
81
- "semantic-release": "^22.0.5"
81
+ "typescript": "^2.8.0"
82
82
  },
83
83
  "peerDependencies": {
84
84
  "@folio/stripes": ">=9.0.0",
@@ -14,12 +14,12 @@ const deparseKiwtQueryFilters = (queryArray) => {
14
14
  let returnString = '';
15
15
  queryArray.forEach(qa => {
16
16
  if (Array.isArray(qa)) {
17
- returnString += ` (${deparseKiwtQueryFilters(qa)})`;
17
+ returnString += `(${deparseKiwtQueryFilters(qa)})`;
18
18
  } else if (typeof qa === 'string') {
19
- returnString += ` ${qa}`;
19
+ returnString += qa;
20
20
  } else {
21
21
  // Assuming object at this stage
22
- returnString += ` ${deparseKiwtQueryFiltersObject(qa)}`;
22
+ returnString += `${deparseKiwtQueryFiltersObject(qa)}`;
23
23
  }
24
24
  });
25
25