Skip to content

Commit c6e0af0

Browse files
pclslopesclaude
andcommitted
version 3.0.9: fix year picker not opening, update README links
- Fixed year picker dropdown not opening due to overflow:hidden on toolbar center - Changed toolbar-center to overflow:visible to allow year picker display - Updated index.html version display to v3.0.9 - Updated README LICENSE link to unpkg URL - Added website reference to commercial licensing section Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
1 parent 11d6abb commit c6e0af0

10 files changed

Lines changed: 20 additions & 14 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.9] - 2026-02-25
13+
14+
### Fixed
15+
- Year picker dropdown not opening due to `overflow: hidden` on toolbar center
16+
- Changed toolbar center to `overflow: visible` to allow year picker display
17+
1218
## [3.0.8] - 2026-02-25
1319

1420
### Changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1121,6 +1121,6 @@ export class AppComponent {
11211121

11221122
This project is available for personal, educational, and non-commercial use.
11231123

1124-
**Commercial use requires a separate license.** See [LICENSE](LICENSE) file for full terms.
1124+
**Commercial use requires a separate license.** See [LICENSE](https://unpkg.com/simple-calendar-js/LICENSE) file for full terms.
11251125

1126-
For commercial licensing inquiries: simplecalendarjs@gmail.com
1126+
For commercial licensing inquiries: simplecalendarjs@gmail.com or visit [www.simplecalendarjs.com](https://www.simplecalendarjs.com)

css/simple-calendar-js.css

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* SimpleCalendarJs v3.0.8 — simple-calendar-js.css
2+
* SimpleCalendarJs v3.0.9 — 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>
@@ -123,7 +123,8 @@
123123
.uc-toolbar-center {
124124
justify-self: center;
125125
min-width: 0;
126-
overflow: hidden;
126+
overflow: visible;
127+
position: relative;
127128
}
128129

129130
.uc-title {
@@ -135,9 +136,8 @@
135136
display: inline-flex;
136137
align-items: baseline;
137138
gap: 4px;
138-
overflow: hidden;
139-
text-overflow: ellipsis;
140139
min-width: 0;
140+
max-width: 100%;
141141
}
142142

143143
.uc-title-main {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* SimpleCalendarJs v3.0.8 — Angular Wrapper
2+
* SimpleCalendarJs v3.0.9 — Angular Wrapper
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-react.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* SimpleCalendarJs v3.0.8 — React Wrapper
2+
* SimpleCalendarJs v3.0.9 — React Wrapper
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-vue.js

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

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -543,7 +543,7 @@
543543
<header class="page-header">
544544
<div style="display:flex;align-items:center;gap:10px">
545545
<h1>SimpleCalendarJs</h1>
546-
<span>v3.0.5</span>
546+
<span>v3.0.9</span>
547547
</div>
548548
<div class="header-controls">
549549
<a href="docs.html" class="docs-link">Documentation</a>

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.8
2+
* SimpleCalendarJs v3.0.9
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.8",
3+
"version": "3.0.9",
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)