@dexteel/mesf-core 4.23.1 → 4.24.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.
@@ -32,12 +32,6 @@ jobs:
32
32
  jq ".version = \"${version}\"" "$file" > temp.json && mv temp.json "$file"
33
33
  done
34
34
 
35
- - name: Delete and regenerate package-lock.json
36
- if: ${{ steps.release.outputs.release_created }}
37
- run: |
38
- find . -name "package-lock.json" -type f -delete
39
- npm install
40
-
41
35
  - name: Update CHANGELOG.md
42
36
  if: ${{ steps.release.outputs.release_created }}
43
37
  run: |
@@ -1,3 +1,3 @@
1
1
  {
2
- ".": "4.23.1"
2
+ ".": "4.24.0"
3
3
  }
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Changelog
2
2
 
3
+ ## [4.24.0](https://github.com/dexteel/mesf-core-frontend/compare/@dexteel/mesf-core-v4.23.1...@dexteel/mesf-core-v4.24.0) (2025-02-04)
4
+
5
+
6
+ ### Features
7
+
8
+ * **RealTime:** add Client and Config components for RealTime ([93fca5d](https://github.com/dexteel/mesf-core-frontend/commit/93fca5dfc74b217f31c9c98653a39a529446b7c0))
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * **Axios:** Show error message correctly ([8a6ed86](https://github.com/dexteel/mesf-core-frontend/commit/8a6ed86c8139a551664064aff706dbf004a871d2))
14
+
3
15
  ## [4.23.1](https://github.com/dexteel/mesf-core-frontend/compare/@dexteel/mesf-core-v4.23.0...@dexteel/mesf-core-v4.23.1) (2025-02-03)
4
16
 
5
17
 
@@ -0,0 +1,3 @@
1
+ import React from "react";
2
+ declare const ChatComponent: React.FC;
3
+ export default ChatComponent;
@@ -0,0 +1,15 @@
1
+ export interface ChatMessage {
2
+ user: string;
3
+ message: string;
4
+ timestamp: Date;
5
+ }
6
+ export interface SignalRMethods {
7
+ ReceiveMessage: (user: string, message: string) => void;
8
+ UserConnected: (connectionId: string) => void;
9
+ UserDisconnected: (connectionId: string) => void;
10
+ }
11
+ export interface ConnectionState {
12
+ isConnected: boolean;
13
+ connectionId?: string;
14
+ error?: Error;
15
+ }
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import "ag-grid-community/styles/ag-theme-material.min.css";
3
+ declare const QueryCacheInvalidations: React.FC;
4
+ export default QueryCacheInvalidations;