Skip to content

Commit

Permalink
Merge pull request #284 from markuczy/fix/topic-message-increment-fix
Browse files Browse the repository at this point in the history
fix: topic message increment fix
  • Loading branch information
markuczy authored Jun 18, 2024
2 parents f4dba3b + 581c9d0 commit 36777b0
Show file tree
Hide file tree
Showing 13 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion libs/accelerator/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@onecx/accelerator",
"version": "4.31.1",
"version": "4.32.0",
"peerDependencies": {
"tslib": "^2.3.0",
"rxjs": "7.8.1"
Expand Down
2 changes: 1 addition & 1 deletion libs/accelerator/src/lib/topic/message.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ declare global {
}
}

window['onecxMessageId'] = 1
window['onecxMessageId'] ??= 1

export class Message {
timestamp: number
Expand Down
2 changes: 1 addition & 1 deletion libs/angular-accelerator/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@onecx/angular-accelerator",
"version": "4.31.1",
"version": "4.32.0",
"peerDependencies": {
"@angular/common": "^15.2.7 || ^16.0.0 || ^17.0.0",
"@angular/core": "^15.2.7 || ^16.0.0 || ^17.0.0",
Expand Down
2 changes: 1 addition & 1 deletion libs/angular-auth/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@onecx/angular-auth",
"version": "4.31.1",
"version": "4.32.0",
"peerDependencies": {
"@angular/common": "^15.2.7 || ^16.0.0 || ^17.0.0",
"@angular/core": "^15.2.7 || ^16.0.0 || ^17.0.0",
Expand Down
2 changes: 1 addition & 1 deletion libs/angular-integration-interface/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@onecx/angular-integration-interface",
"version": "4.31.1",
"version": "4.32.0",
"peerDependencies": {
"@angular/core": "^15.2.7 || ^16.0.0 || ^17.0.0",
"@onecx/integration-interface": "~4",
Expand Down
2 changes: 1 addition & 1 deletion libs/angular-remote-components/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@onecx/angular-remote-components",
"version": "4.31.1",
"version": "4.32.0",
"peerDependencies": {
"@angular/common": "^15.2.7 || ^16.0.0 || ^17.0.0",
"@angular/core": "^15.2.7 || ^16.0.0 || ^17.0.0",
Expand Down
2 changes: 1 addition & 1 deletion libs/angular-testing/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@onecx/angular-testing",
"version": "4.31.1",
"version": "4.32.0",
"peerDependencies": {
"@angular/cdk": "^15.2.7 || ^16.0.0 || ^17.0.0",
"primeng": "^15.0.0 || ^16.0.0 || ^17.0.0"
Expand Down
2 changes: 1 addition & 1 deletion libs/integration-interface/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@onecx/integration-interface",
"version": "4.31.1",
"version": "4.32.0",
"peerDependencies": {
"tslib": "^2.3.0",
"rxjs": "7.8.1",
Expand Down
2 changes: 1 addition & 1 deletion libs/keycloak-auth/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@onecx/keycloak-auth",
"version": "4.31.1",
"version": "4.32.0",
"peerDependencies": {
"@angular/common": "^15.2.7 || ^16.0.0 || ^17.0.0",
"@angular/core": "^15.2.7 || ^16.0.0 || ^17.0.0",
Expand Down
2 changes: 1 addition & 1 deletion libs/portal-integration-angular/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@onecx/portal-integration-angular",
"version": "4.31.1",
"version": "4.32.0",
"peerDependencies": {
"@angular/common": "^15.2.7 || ^16.0.0 || ^17.0.0",
"@angular/core": "^15.2.7 || ^16.0.0 || ^17.0.0",
Expand Down
2 changes: 1 addition & 1 deletion libs/portal-layout-styles/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@onecx/portal-layout-styles",
"version": "4.31.1",
"version": "4.32.0",
"peerDependencies": {
"tslib": "^2.5.0"
},
Expand Down
2 changes: 1 addition & 1 deletion libs/shell-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@onecx/shell-core",
"version": "4.31.1",
"version": "4.32.0",
"peerDependencies": {
"rxjs": "7.8.1",
"@angular/animations": "^15.2.7 || ^16.0.0 || ^17.0.0",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@onecx/onecx-portal-ui-libs",
"version": "4.31.1",
"version": "4.32.0",
"license": "Apache-2.0",
"scripts": {
"sass": "npx sass libs/portal-integration-angular/assets/styles.scss libs/portal-integration-angular/assets/output.css",
Expand Down

0 comments on commit 36777b0

Please sign in to comment.