simple-calendar-js 3.0.7 → 3.0.8
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 +6 -0
- package/dist/simple-calendar-js.min.css +1 -1
- package/dist/simple-calendar-js.min.js +1 -1
- package/frameworks/simple-calendar-js-angular.component.ts +1 -3
- package/frameworks/simple-calendar-js-react.jsx +1 -2
- package/frameworks/simple-calendar-js-vue.js +1 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -9,6 +9,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
9
9
|
|
|
10
10
|
No unreleased changes yet.
|
|
11
11
|
|
|
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
|
+
|
|
12
18
|
## [3.0.7] - 2026-02-25
|
|
13
19
|
|
|
14
20
|
### Breaking Changes
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* SimpleCalendarJs v3.0.
|
|
2
|
+
* SimpleCalendarJs v3.0.8 — Angular Wrapper
|
|
3
3
|
* A clean, modern, and feature-rich JavaScript calendar component with zero dependencies
|
|
4
4
|
*
|
|
5
5
|
* @author Pedro Lopes <simplecalendarjs@gmail.com>
|
|
@@ -123,7 +123,6 @@ const INIT_PROPS = [
|
|
|
123
123
|
'showViewSwitcher',
|
|
124
124
|
'showTooltips',
|
|
125
125
|
'showBorder',
|
|
126
|
-
'maxEventsPerCell',
|
|
127
126
|
'listDaysForward',
|
|
128
127
|
'enabledViews',
|
|
129
128
|
];
|
|
@@ -160,7 +159,6 @@ export class SimpleCalendarJsComponent implements OnInit, OnDestroy, OnChanges,
|
|
|
160
159
|
@Input() showViewSwitcher: boolean = true;
|
|
161
160
|
@Input() showTooltips: boolean = true;
|
|
162
161
|
@Input() showBorder: boolean = true;
|
|
163
|
-
@Input() maxEventsPerCell: number = 3;
|
|
164
162
|
@Input() listDaysForward: number = 30;
|
|
165
163
|
@Input() enabledViews: string[] = ['month', 'week', 'day'];
|
|
166
164
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* SimpleCalendarJs v3.0.
|
|
2
|
+
* SimpleCalendarJs v3.0.8 — React Wrapper
|
|
3
3
|
* A clean, modern, and feature-rich JavaScript calendar component with zero dependencies
|
|
4
4
|
*
|
|
5
5
|
* @author Pedro Lopes <simplecalendarjs@gmail.com>
|
|
@@ -50,7 +50,6 @@ const INIT_PROPS = [
|
|
|
50
50
|
'showViewSwitcher',
|
|
51
51
|
'showTooltips',
|
|
52
52
|
'showBorder',
|
|
53
|
-
'maxEventsPerCell',
|
|
54
53
|
'listDaysForward',
|
|
55
54
|
'enabledViews',
|
|
56
55
|
];
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* SimpleCalendarJs v3.0.
|
|
2
|
+
* SimpleCalendarJs v3.0.8 — Vue 3 Wrapper
|
|
3
3
|
* A clean, modern, and feature-rich JavaScript calendar component with zero dependencies
|
|
4
4
|
*
|
|
5
5
|
* @author Pedro Lopes <simplecalendarjs@gmail.com>
|
|
@@ -60,7 +60,6 @@ const INIT_PROPS = [
|
|
|
60
60
|
'showViewSwitcher',
|
|
61
61
|
'showTooltips',
|
|
62
62
|
'showBorder',
|
|
63
|
-
'maxEventsPerCell',
|
|
64
63
|
'listDaysForward',
|
|
65
64
|
'enabledViews',
|
|
66
65
|
];
|
|
@@ -89,7 +88,6 @@ export default defineComponent({
|
|
|
89
88
|
showViewSwitcher: { type: Boolean, default: true },
|
|
90
89
|
showTooltips: { type: Boolean, default: true },
|
|
91
90
|
showBorder: { type: Boolean, default: true },
|
|
92
|
-
maxEventsPerCell: { type: Number, default: 3 },
|
|
93
91
|
listDaysForward: { type: Number, default: 30 },
|
|
94
92
|
enabledViews: { type: Array, default: () => ['month', 'week', 'day'] },
|
|
95
93
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "simple-calendar-js",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.8",
|
|
4
4
|
"description": "A clean, modern, and feature-rich JavaScript calendar component with zero dependencies. Responsive design and intuitive navigation.",
|
|
5
5
|
"main": "dist/simple-calendar-js.min.js",
|
|
6
6
|
"style": "dist/simple-calendar-js.min.css",
|