Skip to content

Commit 11d6abb

Browse files
pclslopesclaude
andcommitted
version 3.0.8: update framework wrappers, remove deprecated maxEventsPerCell
- Updated all framework wrappers (React, Vue, Angular) to v3.0.8 - Removed maxEventsPerCell prop from all wrappers (deprecated in v3.0.7) - Calendar now always auto-calculates optimal event display Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
1 parent 23655e2 commit 11d6abb

8 files changed

Lines changed: 14 additions & 13 deletions

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
No unreleased changes yet.
1111

12+
## [3.0.8] - 2026-02-25
13+
14+
### Changed
15+
- Updated framework wrappers (React, Vue, Angular) to v3.0.8
16+
- Removed `maxEventsPerCell` prop from all framework wrappers (deprecated in v3.0.7)
17+
1218
## [3.0.7] - 2026-02-25
1319

1420
### Breaking Changes

css/simple-calendar-js.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* SimpleCalendarJs v3.0.7 — simple-calendar-js.css
2+
* SimpleCalendarJs v3.0.8 — simple-calendar-js.css
33
* A clean, modern, and feature-rich JavaScript calendar component with zero dependencies
44
*
55
* @author Pedro Lopes <simplecalendarjs@gmail.com>

frameworks/simple-calendar-js-angular.component.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* SimpleCalendarJs v3.0.5 — Angular Wrapper
2+
* SimpleCalendarJs v3.0.8 — Angular Wrapper
33
* A clean, modern, and feature-rich JavaScript calendar component with zero dependencies
44
*
55
* @author Pedro Lopes <simplecalendarjs@gmail.com>
@@ -123,7 +123,6 @@ const INIT_PROPS = [
123123
'showViewSwitcher',
124124
'showTooltips',
125125
'showBorder',
126-
'maxEventsPerCell',
127126
'listDaysForward',
128127
'enabledViews',
129128
];
@@ -160,7 +159,6 @@ export class SimpleCalendarJsComponent implements OnInit, OnDestroy, OnChanges,
160159
@Input() showViewSwitcher: boolean = true;
161160
@Input() showTooltips: boolean = true;
162161
@Input() showBorder: boolean = true;
163-
@Input() maxEventsPerCell: number = 3;
164162
@Input() listDaysForward: number = 30;
165163
@Input() enabledViews: string[] = ['month', 'week', 'day'];
166164

frameworks/simple-calendar-js-react.jsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* SimpleCalendarJs v3.0.5 — React Wrapper
2+
* SimpleCalendarJs v3.0.8 — React Wrapper
33
* A clean, modern, and feature-rich JavaScript calendar component with zero dependencies
44
*
55
* @author Pedro Lopes <simplecalendarjs@gmail.com>
@@ -50,7 +50,6 @@ const INIT_PROPS = [
5050
'showViewSwitcher',
5151
'showTooltips',
5252
'showBorder',
53-
'maxEventsPerCell',
5453
'listDaysForward',
5554
'enabledViews',
5655
];

frameworks/simple-calendar-js-vue.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* SimpleCalendarJs v3.0.5 — Vue 3 Wrapper
2+
* SimpleCalendarJs v3.0.8 — Vue 3 Wrapper
33
* A clean, modern, and feature-rich JavaScript calendar component with zero dependencies
44
*
55
* @author Pedro Lopes <simplecalendarjs@gmail.com>
@@ -60,7 +60,6 @@ const INIT_PROPS = [
6060
'showViewSwitcher',
6161
'showTooltips',
6262
'showBorder',
63-
'maxEventsPerCell',
6463
'listDaysForward',
6564
'enabledViews',
6665
];
@@ -89,7 +88,6 @@ export default defineComponent({
8988
showViewSwitcher: { type: Boolean, default: true },
9089
showTooltips: { type: Boolean, default: true },
9190
showBorder: { type: Boolean, default: true },
92-
maxEventsPerCell: { type: Number, default: 3 },
9391
listDaysForward: { type: Number, default: 30 },
9492
enabledViews: { type: Array, default: () => ['month', 'week', 'day'] },
9593

js/simple-calendar-js.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* SimpleCalendarJs v3.0.7
2+
* SimpleCalendarJs v3.0.8
33
* A clean, modern, and feature-rich JavaScript calendar component with zero dependencies
44
*
55
* @author Pedro Lopes <simplecalendarjs@gmail.com>

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "simple-calendar-js",
3-
"version": "3.0.7",
3+
"version": "3.0.8",
44
"description": "A clean, modern, and feature-rich JavaScript calendar component with zero dependencies. Responsive design and intuitive navigation.",
55
"main": "dist/simple-calendar-js.min.js",
66
"style": "dist/simple-calendar-js.min.css",

0 commit comments

Comments
 (0)