Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found
Select Git revision
Loading items

Target

Select target project
  • oss/libraries/javascript/monster
1 result
Select Git revision
Loading items
Show changes
Commits on Source (5)
<a name="v3.29.0"></a>
## [v3.29.0] - 2023-03-16
### Add Features
- customevents are composed and should bubble across shadowRoot
### Changes
- update packages
<a name="v3.28.0"></a>
## [v3.28.0] - 2023-03-14
### Add Features
......@@ -431,6 +440,7 @@
<a name="1.8.0"></a>
## 1.8.0 - 2021-08-15
[v3.29.0]: https://gitlab.schukai.com/oss/libraries/javascript/monster/compare/v3.28.0...v3.29.0
[v3.28.0]: https://gitlab.schukai.com/oss/libraries/javascript/monster/compare/v3.27.0...v3.28.0
[v3.27.0]: https://gitlab.schukai.com/oss/libraries/javascript/monster/compare/v3.26.0...v3.27.0
[v3.26.0]: https://gitlab.schukai.com/oss/libraries/javascript/monster/compare/v3.25.0...v3.26.0
......
{
"name": "@schukai/monster",
"version": "3.27.0",
"version": "3.28.0",
"description": "Monster is a simple library for creating fast, robust and lightweight websites.",
"keywords": [
"framework",
......
......@@ -33,9 +33,11 @@ function fireEvent(element, type) {
return;
}
// https://developer.mozilla.org/en-US/docs/Web/API/Event/Event
let event = new Event(validateString(type), {
bubbles: true,
cancelable: true,
composed: true,
});
element.dispatchEvent(event);
......@@ -72,6 +74,7 @@ function fireCustomEvent(element, type, detail) {
let event = new CustomEvent(validateString(type), {
bubbles: true,
cancelable: true,
composed: true,
detail,
});
......
......@@ -142,7 +142,7 @@ function getMonsterVersion() {
}
/** don't touch, replaced by make with package.json version */
monsterVersion = new Version("3.27.0");
monsterVersion = new Version("3.28.0");
return monsterVersion;
}
{
"name": "monster",
"version": "3.27.0",
"version": "3.28.0",
"description": "monster",
"repository": {
"type": "git",
......@@ -35,7 +35,7 @@
"esbuild": "^0.17.11",
"flow-bin": "^0.201.0",
"fs": "0.0.1-security",
"glob": "^9.2.1",
"glob": "^9.3.0",
"graphviz": "^0.0.9",
"jsdoc": "^4.0.2",
"jsdoc-external-example": "github:volker-schukai/jsdoc-external-example",
......@@ -61,7 +61,7 @@
"url": "^0.11.0",
"url-exist": "3.0.1",
"util": "^0.12.5",
"vite": "^4.1.4",
"vite": "^4.2.0",
"vite-plugin-banner": "^0.7.0",
"vite-plugin-list-directory-contents": "^1.4.5",
"vite-plugin-minify": "^1.5.2",
......
This diff is collapsed.
......@@ -7,7 +7,7 @@ describe('Monster', function () {
let monsterVersion
/** don´t touch, replaced by make with package.json version */
monsterVersion = new Version("3.27.0")
monsterVersion = new Version("3.28.0")
let m = getMonsterVersion();
......
{"version":"3.28.0"}
{"version":"3.29.0"}