Skip to content
Merged
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
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## 4.1.5 - Released on 2025-05-17

### Fixes

- Urgent fix for an accidental `console.log()` in the core.

<br>

## 4.1.4 - Released on 2025-05-17

### Fixes
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": "prismium-src",
"version": "4.1.4",
"version": "4.1.5",
"description": "A modern JavaScript accordion library with smooth animations. Easily integrates with React, Vue, and vanilla JavaScript.",
"type": "module",
"scripts": {
Expand Down
1 change: 0 additions & 1 deletion src/core/managers/DOMManager.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,6 @@ export class DOMManager {
*/
setTheme(el) {
const { theme } = this.instance.options;
console.log(el);

if (theme) {
if (typeof theme === 'object') {
Expand Down