@limetech/lime-web-components 4.51.12 → 4.53.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
@@ -3,6 +3,36 @@
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
+ ## [4.53.1](https://github.com/Lundalogik/lime-web-components/compare/v4.53.0...v4.53.1) (2022-09-12)
7
+
8
+ **Note:** Version bump only for package @limetech/lime-web-components
9
+
10
+
11
+
12
+
13
+
14
+ # [4.53.0](https://github.com/Lundalogik/lime-web-components/compare/v4.52.0...v4.53.0) (2022-09-01)
15
+
16
+
17
+ ### Features
18
+
19
+ * **query:** add ends with operator ([3661001](https://github.com/Lundalogik/lime-web-components/commit/36610013cf6bfe333c75093164ebc99e78d47845))
20
+
21
+
22
+
23
+
24
+
25
+ # [4.52.0](https://github.com/Lundalogik/lime-web-components/compare/v4.51.12...v4.52.0) (2022-08-25)
26
+
27
+
28
+ ### Features
29
+
30
+ * **query:** add not equals operator ([ee2c215](https://github.com/Lundalogik/lime-web-components/commit/ee2c215bb6c153e96cc4a0a50ca65e680e0c7220))
31
+
32
+
33
+
34
+
35
+
6
36
  ## [4.51.12](https://github.com/Lundalogik/lime-web-components/compare/v4.51.11...v4.51.12) (2022-08-22)
7
37
 
8
38
  **Note:** Version bump only for package @limetech/lime-web-components
@@ -5,8 +5,9 @@ var Operator;
5
5
  (function (Operator) {
6
6
  Operator["AND"] = "AND";
7
7
  Operator["OR"] = "OR";
8
- Operator["EQUALS"] = "=";
9
8
  Operator["NOT"] = "!";
9
+ Operator["EQUALS"] = "=";
10
+ Operator["NOT_EQUALS"] = "!=";
10
11
  Operator["GREATER"] = ">";
11
12
  Operator["LESS"] = "<";
12
13
  Operator["IN"] = "IN";
@@ -14,4 +15,5 @@ var Operator;
14
15
  Operator["LIKE"] = "?";
15
16
  Operator["LESS_OR_EQUAL"] = "<=";
16
17
  Operator["GREATER_OR_EQUAL"] = ">=";
18
+ Operator["ENDS"] = "=$";
17
19
  })(Operator = exports.Operator || (exports.Operator = {}));
@@ -22,15 +22,17 @@ export interface Expression {
22
22
  export declare enum Operator {
23
23
  AND = "AND",
24
24
  OR = "OR",
25
- EQUALS = "=",
26
25
  NOT = "!",
26
+ EQUALS = "=",
27
+ NOT_EQUALS = "!=",
27
28
  GREATER = ">",
28
29
  LESS = "<",
29
30
  IN = "IN",
30
31
  BEGINS = "=?",
31
32
  LIKE = "?",
32
33
  LESS_OR_EQUAL = "<=",
33
- GREATER_OR_EQUAL = ">="
34
+ GREATER_OR_EQUAL = ">=",
35
+ ENDS = "=$"
34
36
  }
35
37
  export interface Filter {
36
38
  id: string;
@@ -2,8 +2,9 @@ export var Operator;
2
2
  (function (Operator) {
3
3
  Operator["AND"] = "AND";
4
4
  Operator["OR"] = "OR";
5
- Operator["EQUALS"] = "=";
6
5
  Operator["NOT"] = "!";
6
+ Operator["EQUALS"] = "=";
7
+ Operator["NOT_EQUALS"] = "!=";
7
8
  Operator["GREATER"] = ">";
8
9
  Operator["LESS"] = "<";
9
10
  Operator["IN"] = "IN";
@@ -11,4 +12,5 @@ export var Operator;
11
12
  Operator["LIKE"] = "?";
12
13
  Operator["LESS_OR_EQUAL"] = "<=";
13
14
  Operator["GREATER_OR_EQUAL"] = ">=";
15
+ Operator["ENDS"] = "=$";
14
16
  })(Operator || (Operator = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@limetech/lime-web-components",
3
- "version": "4.51.12",
3
+ "version": "4.53.1",
4
4
  "author": "Lime Technologies",
5
5
  "homepage": "https://github.com/Lundalogik/lime-web-components",
6
6
  "license": "Apache-2.0",
@@ -37,9 +37,9 @@
37
37
  },
38
38
  "dependencies": {
39
39
  "@limetech/lime-web-components-commands": "^4.51.2",
40
- "@limetech/lime-web-components-decorators": "^4.51.11",
40
+ "@limetech/lime-web-components-decorators": "^4.53.1",
41
41
  "@limetech/lime-web-components-interfaces": "^4.51.2",
42
- "@limetech/lime-web-components-testing": "^4.51.12",
42
+ "@limetech/lime-web-components-testing": "^4.53.1",
43
43
  "rxjs": "^7.5.6",
44
44
  "tslib": "^2.4.0"
45
45
  },
@@ -51,5 +51,5 @@
51
51
  "peerDependencies": {
52
52
  "@stencil/core": "^2.17.1"
53
53
  },
54
- "gitHead": "44f9a791c6615db908a06dbb54fc673d4ffd4d0f"
54
+ "gitHead": "423e86cdd7bd1139b9928817e32e524cee4b1b10"
55
55
  }