Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions packages/modules/calendar/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,18 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

## [Unreleased]

## [2.3.0] Calendar - 2026-02-17

### [2.3.0] Calendar

#### Added

- We added support for configuring calendar time grid density via timeslots and step properties to control the widget’s required space.

#### Fixed

- We fixed an issue where the “On view range changed” event nanoflow did not trigger when switching from Day/Week to Month view, causing Month view to only load events from the last week instead of the full month range.

## [2.2.0] Calendar - 2025-11-11

### [2.2.0] Calendar
Expand Down
4 changes: 2 additions & 2 deletions packages/modules/calendar/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@mendix/calendar",
"moduleName": "Calendar module",
"version": "2.2.0",
"version": "2.3.0",
"copyright": "© Mendix Technology BV 2025. All rights reserved.",
"license": "Apache-2.0",
"private": true,
Expand All @@ -21,7 +21,7 @@
"marketplace": {
"minimumMXVersion": "10.22.0.68245",
"appName": "Calendar",
"appNumber": 107954
"appNumber": 245304
},
"testProject": {
"githubUrl": "https://github.com/mendix/testProjects",
Expand Down
2 changes: 2 additions & 0 deletions packages/pluggableWidgets/calendar-web/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

## [Unreleased]

## [2.3.0] - 2026-02-17

### Added

- We added support for configuring calendar time grid density via timeslots and step properties to control the widget’s required space.
Expand Down
12 changes: 4 additions & 8 deletions packages/pluggableWidgets/calendar-web/package.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,16 @@
{
"name": "@mendix/calendar-web",
"widgetName": "Calendar",
"version": "2.2.0",
"version": "2.3.0",
"description": "Calendar",
"copyright": "© Mendix Technology BV 2025. All rights reserved.",
"license": "Apache-2.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/mendix/web-widgets.git"
},
"config": {
"developmentPort": 3000,
"mendixHost": "http://localhost:8080"
},
"config": {},
"mxpackage": {
"name": "Calendar",
"type": "widget",
Expand All @@ -21,9 +19,7 @@
"packagePath": "com.mendix.widget.web",
"marketplace": {
"minimumMXVersion": "10.22.0",
"appNumber": 107954,
"appName": "Calendar",
"reactReady": true
"appName": "Calendar"
},
"testProject": {
"githubUrl": "https://github.com/mendix/testProjects",
Expand Down
2 changes: 1 addition & 1 deletion packages/pluggableWidgets/calendar-web/src/package.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8" ?>
<package xmlns="http://www.mendix.com/package/1.0/">
<clientModule name="Calendar" version="2.2.0" xmlns="http://www.mendix.com/clientModule/1.0/">
<clientModule name="Calendar" version="2.3.0" xmlns="http://www.mendix.com/clientModule/1.0/">
<widgetFiles>
<widgetFile path="Calendar.xml" />
</widgetFiles>
Expand Down
Loading