@limetech/lime-web-components 4.51.10 → 4.52.0

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,33 @@
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.52.0](https://github.com/Lundalogik/lime-web-components/compare/v4.51.12...v4.52.0) (2022-08-25)
7
+
8
+
9
+ ### Features
10
+
11
+ * **query:** add not equals operator ([ee2c215](https://github.com/Lundalogik/lime-web-components/commit/ee2c215bb6c153e96cc4a0a50ca65e680e0c7220))
12
+
13
+
14
+
15
+
16
+
17
+ ## [4.51.12](https://github.com/Lundalogik/lime-web-components/compare/v4.51.11...v4.51.12) (2022-08-22)
18
+
19
+ **Note:** Version bump only for package @limetech/lime-web-components
20
+
21
+
22
+
23
+
24
+
25
+ ## [4.51.11](https://github.com/Lundalogik/lime-web-components/compare/v4.51.10...v4.51.11) (2022-08-22)
26
+
27
+ **Note:** Version bump only for package @limetech/lime-web-components
28
+
29
+
30
+
31
+
32
+
6
33
  ## [4.51.10](https://github.com/Lundalogik/lime-web-components/compare/v4.51.9...v4.51.10) (2022-08-04)
7
34
 
8
35
  **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";
@@ -22,8 +22,9 @@ 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",
@@ -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";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@limetech/lime-web-components",
3
- "version": "4.51.10",
3
+ "version": "4.52.0",
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.9",
40
+ "@limetech/lime-web-components-decorators": "^4.51.11",
41
41
  "@limetech/lime-web-components-interfaces": "^4.51.2",
42
- "@limetech/lime-web-components-testing": "^4.51.10",
42
+ "@limetech/lime-web-components-testing": "^4.51.12",
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": "f579f81a388e72a1b82646d7bed02b68912c9154"
54
+ "gitHead": "8ea075ec1643014454bbe320c84107f52c4b28f8"
55
55
  }