@limetech/lime-web-components 5.36.2 → 5.38.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
|
@@ -1,3 +1,19 @@
|
|
|
1
|
+
## [5.38.0](https://github.com/Lundalogik/lime-web-components/compare/v5.37.0...v5.38.0) (2024-10-17)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
* **notifications:** include coworker as `createdBy` ([b5d5d48](https://github.com/Lundalogik/lime-web-components/commit/b5d5d480b07b20b631600a7dce92e157084864df)), closes [Lundalogik/crm-feature#4412](https://github.com/Lundalogik/crm-feature/issues/4412)
|
|
8
|
+
|
|
9
|
+
## [5.37.0](https://github.com/Lundalogik/lime-web-components/compare/v5.36.2...v5.37.0) (2024-10-15)
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Features
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
* **notifications:** add property for createduser ([27d74eb](https://github.com/Lundalogik/lime-web-components/commit/27d74eb28faed65943cc544dd18cdf33433df5c7))
|
|
16
|
+
|
|
1
17
|
## [5.36.2](https://github.com/Lundalogik/lime-web-components/compare/v5.36.1...v5.36.2) (2024-09-11)
|
|
2
18
|
|
|
3
19
|
|
|
@@ -30,16 +30,13 @@ export type Notification<T = unknown> = {
|
|
|
30
30
|
* Data attached to the notification
|
|
31
31
|
*/
|
|
32
32
|
data?: T;
|
|
33
|
+
/**
|
|
34
|
+
* The coworker that created the notification
|
|
35
|
+
*/
|
|
36
|
+
createdBy?: LimeObject;
|
|
33
37
|
};
|
|
34
38
|
/**
|
|
35
39
|
* @alpha
|
|
36
40
|
*/
|
|
37
41
|
export type NotificationType = 'mention';
|
|
38
|
-
/**
|
|
39
|
-
* @alpha
|
|
40
|
-
*/
|
|
41
|
-
export type CreatedUser = {
|
|
42
|
-
id: number;
|
|
43
|
-
limetype: string;
|
|
44
|
-
};
|
|
45
42
|
//# sourceMappingURL=notification.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"notification.d.ts","sourceRoot":"","sources":["../../src/notification-service/notification.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAE3C;;;;;GAKG;AACH,MAAM,MAAM,YAAY,CAAC,CAAC,GAAG,OAAO,IAAI;IACpC;;OAEG;IACH,EAAE,EAAE,MAAM,CAAC;IAEX;;OAEG;IACH,IAAI,CAAC,EAAE,gBAAgB,CAAC;IAExB;;OAEG;IACH,IAAI,CAAC,EAAE,IAAI,CAAC;IAEZ;;OAEG;IACH,SAAS,EAAE,IAAI,CAAC;IAEhB;;OAEG;IACH,UAAU,CAAC,EAAE,UAAU,CAAC;IAExB;;OAEG;IACH,IAAI,CAAC,EAAE,CAAC,CAAC;
|
|
1
|
+
{"version":3,"file":"notification.d.ts","sourceRoot":"","sources":["../../src/notification-service/notification.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAE3C;;;;;GAKG;AACH,MAAM,MAAM,YAAY,CAAC,CAAC,GAAG,OAAO,IAAI;IACpC;;OAEG;IACH,EAAE,EAAE,MAAM,CAAC;IAEX;;OAEG;IACH,IAAI,CAAC,EAAE,gBAAgB,CAAC;IAExB;;OAEG;IACH,IAAI,CAAC,EAAE,IAAI,CAAC;IAEZ;;OAEG;IACH,SAAS,EAAE,IAAI,CAAC;IAEhB;;OAEG;IACH,UAAU,CAAC,EAAE,UAAU,CAAC;IAExB;;OAEG;IACH,IAAI,CAAC,EAAE,CAAC,CAAC;IAET;;OAEG;IACH,SAAS,CAAC,EAAE,UAAU,CAAC;CAC1B,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,gBAAgB,GAAG,SAAS,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@limetech/lime-web-components",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.38.0",
|
|
4
4
|
"description": "Lime Web Components",
|
|
5
5
|
"author": "Lime Technologies",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -30,15 +30,15 @@
|
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"@stencil/core": "^2.22.3",
|
|
32
32
|
"rxjs": "^7.8.1",
|
|
33
|
-
"tslib": "^2.
|
|
33
|
+
"tslib": "^2.8.0"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
|
-
"@commitlint/config-conventional": "^19.
|
|
37
|
-
"@microsoft/api-extractor": "^7.47.
|
|
36
|
+
"@commitlint/config-conventional": "^19.5.0",
|
|
37
|
+
"@microsoft/api-extractor": "^7.47.10",
|
|
38
38
|
"@types/jest": "^27.5.0",
|
|
39
39
|
"@typescript-eslint/eslint-plugin": "^7.5.0",
|
|
40
40
|
"@typescript-eslint/parser": "^7.5.0",
|
|
41
|
-
"commitizen": "^4.3.
|
|
41
|
+
"commitizen": "^4.3.1",
|
|
42
42
|
"cz-conventional-changelog": "^3.3.0",
|
|
43
43
|
"eslint": "^8.57.0",
|
|
44
44
|
"eslint-config-prettier": "^9.1.0",
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"jest": "^27.5.1",
|
|
52
52
|
"jest-cli": "^27.5.1",
|
|
53
53
|
"prettier": "^3.2.5",
|
|
54
|
-
"replace-in-file": "^8.
|
|
54
|
+
"replace-in-file": "^8.2.0",
|
|
55
55
|
"shelljs": "0.8.5",
|
|
56
56
|
"typedoc": "^0.23.24",
|
|
57
57
|
"typedoc-plugin-markdown": "~3.15.0",
|