@itrocks/menu 0.1.0 → 0.1.2

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.
Files changed (2) hide show
  1. package/css/menu.css +1 -1
  2. package/package.json +5 -6
package/css/menu.css CHANGED
@@ -14,7 +14,7 @@ body > .app.menu > ul {
14
14
  }
15
15
  body > .app.menu > ul > li > h3 {
16
16
  background-color: #ddd;
17
- background-position: 0.5em center;
17
+ background-position: 8px center;
18
18
  background-repeat: no-repeat;
19
19
  background-size: 24px;
20
20
  font-weight: normal;
package/package.json CHANGED
@@ -7,10 +7,10 @@
7
7
  "description": "A flexible and accessible customizable main menu component with sidebar layout",
8
8
  "devDependencies": {
9
9
  "sass": "^1.95",
10
- "typescript": "~5.9"
10
+ "typescript": "^6.0"
11
11
  },
12
12
  "engines": {
13
- "node": ">=18"
13
+ "node": ">=24"
14
14
  },
15
15
  "exports": "./cjs/menu.js",
16
16
  "homepage": "https://it.rocks",
@@ -18,8 +18,8 @@
18
18
  "config.yaml",
19
19
  "LICENSE",
20
20
  "README.md",
21
- "cjs/*",
22
- "css/*",
21
+ "cjs",
22
+ "css",
23
23
  "!*.map"
24
24
  ],
25
25
  "keywords": [
@@ -54,6 +54,5 @@
54
54
  "build": "tsc && cp src/*.html cjs/ && npm run build:css",
55
55
  "build:css": "sass --no-source-map src:css"
56
56
  },
57
- "types": "./cjs/menu.d.ts",
58
- "version": "0.1.0"
57
+ "version": "0.1.2"
59
58
  }