kitzo 2.0.23 → 2.0.24

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/README.md CHANGED
@@ -25,7 +25,7 @@ npm i kitzo
25
25
  or
26
26
 
27
27
  ```javascript
28
- <script src="https://cdn.jsdelivr.net/npm/kitzo@2.0.23/dist/kitzo.umd.min.js"></script>
28
+ <script src="https://cdn.jsdelivr.net/npm/kitzo@2.0.24/dist/kitzo.umd.min.js"></script>
29
29
  ```
30
30
 
31
31
  > Attach this script tag in the html head tag and you are good to go.
package/dist/kitzo.esm.js CHANGED
@@ -404,6 +404,7 @@ function clippathStyles() {
404
404
  clip-path: circle(0 at var(--kitzo-clippath-pos-x) var(--kitzo-clippath-pos-y));
405
405
  transition: var(--kitzo-clippath-transition);
406
406
  font-family: inherit;
407
+ overflow: hidden;
407
408
  }
408
409
  .kitzo-clippath-div.show {
409
410
  opacity: 1;
package/dist/kitzo.umd.js CHANGED
@@ -410,6 +410,7 @@
410
410
  clip-path: circle(0 at var(--kitzo-clippath-pos-x) var(--kitzo-clippath-pos-y));
411
411
  transition: var(--kitzo-clippath-transition);
412
412
  font-family: inherit;
413
+ overflow: hidden;
413
414
  }
414
415
  .kitzo-clippath-div.show {
415
416
  opacity: 1;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kitzo",
3
- "version": "2.0.23",
3
+ "version": "2.0.24",
4
4
  "description": "A lightweight JavaScript UI micro-library.",
5
5
  "type": "module",
6
6
  "main": "./dist/kitzo.umd.js",