@k-int/stripes-kint-components 5.1.0 → 5.1.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.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,6 @@
1
+ ## 5.1.1 2023-10-03
2
+ * comparators - added !~ (Does not contain) comparator to constants array
3
+
1
4
  ## 5.1.0 2023-09-26
2
5
  * KIWT filter parsers
3
6
  * parseKiwtQueryFilters - will parse grouped KIWT query strings into structured array
@@ -4,4 +4,4 @@ Object.defineProperty(exports, "__esModule", {
4
4
  value: true
5
5
  });
6
6
  exports.default = void 0;
7
- var _default = exports.default = ['==', '!=', '=~', '=i=', 'isEmpty', 'isNotEmpty', 'isSet', 'isNotSet', 'isNull', 'isNotNull'];
7
+ var _default = exports.default = ['==', '!=', '=~', '!~', '=i=', 'isEmpty', 'isNotEmpty', 'isSet', 'isNotSet', 'isNull', 'isNotNull'];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@k-int/stripes-kint-components",
3
- "version": "5.1.0",
3
+ "version": "5.1.1",
4
4
  "description": "Stripes Component library for K-Int specific applications",
5
5
  "sideEffects": [
6
6
  "*.css"
@@ -2,6 +2,7 @@ export default [
2
2
  '==',
3
3
  '!=',
4
4
  '=~',
5
+ '!~',
5
6
  '=i=',
6
7
  'isEmpty',
7
8
  'isNotEmpty',