perfect-gui 4.12.9 → 4.12.10

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.
@@ -297,6 +297,7 @@ function Z(y) {
297
297
  border: 1px solid var(--color-border);
298
298
  line-height: normal;
299
299
  transition: var(--transition) opacity;
300
+ overflow: hidden;
300
301
  }
301
302
 
302
303
  .p-gui__content {
package/package.json CHANGED
@@ -1,9 +1,13 @@
1
1
  {
2
2
  "name": "perfect-gui",
3
3
  "type": "module",
4
- "version": "4.12.9",
4
+ "version": "4.12.10",
5
5
  "description": "GUI for JavaScript",
6
- "main": "src/index.js",
6
+ "main": "dist/perfect-gui.js",
7
+ "module": "dist/perfect-gui.js",
8
+ "exports": {
9
+ ".": "./dist/perfect-gui.js"
10
+ },
7
11
  "scripts": {
8
12
  "build": "vite build"
9
13
  },
@@ -38,6 +38,7 @@ export default function (position_type) {
38
38
  border: 1px solid var(--color-border);
39
39
  line-height: normal;
40
40
  transition: var(--transition) opacity;
41
+ overflow: hidden;
41
42
  }
42
43
 
43
44
  .p-gui__content {