@furystack/shades-nipple 7.0.33 → 7.0.36

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/CHANGELOG.md +18 -0
  2. package/package.json +21 -8
package/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # Changelog
2
2
 
3
+ ## [7.0.36] - 2026-02-01
4
+
5
+ ### ⬆️ Dependencies
6
+
7
+ - Updated peer dependency `@furystack/shades` to include new CSS styling features
8
+
9
+ ## [7.0.35] - 2026-01-26
10
+
11
+ ### 🔧 Chores
12
+
13
+ - Standardized author format, improved keywords, removed obsolete `gitHead`, added `engines` (Node 22+) and `sideEffects: false`
14
+
15
+ ## [7.0.34] - 2026-01-26
16
+
17
+ ### ⬆️ Dependencies
18
+
19
+ - Updated `@furystack/inject` with fix for singleton injector reference being overwritten by child injectors
20
+
3
21
  ## [7.0.33] - 2026-01-22
4
22
 
5
23
  ### ⬆️ Dependencies
package/package.json CHANGED
@@ -1,40 +1,53 @@
1
1
  {
2
2
  "name": "@furystack/shades-nipple",
3
- "version": "7.0.33",
3
+ "version": "7.0.36",
4
4
  "description": "A Nipple component wrapper for FuryStack Shades",
5
5
  "type": "module",
6
6
  "scripts": {
7
- "build:es6": "tsc --outDir ./esm"
7
+ "build": "tsc --outDir ./esm"
8
8
  },
9
9
  "exports": {
10
10
  ".": {
11
+ "types": "./esm/index.d.ts",
11
12
  "import": "./esm/index.js"
12
13
  }
13
14
  },
14
15
  "files": [
15
16
  "esm",
16
- "types",
17
17
  "src"
18
18
  ],
19
+ "repository": {
20
+ "type": "git",
21
+ "url": "https://github.com/furystack/furystack.git"
22
+ },
19
23
  "keywords": [
20
24
  "FuryStack",
21
25
  "Shades",
22
26
  "Nipple",
23
- "Joystick"
27
+ "joystick",
28
+ "gamepad",
29
+ "touch"
24
30
  ],
25
31
  "publishConfig": {
26
32
  "access": "public"
27
33
  },
28
- "author": "gallay.lajos@gmail.com",
34
+ "author": "Gallay Lajos <gallay.lajos@gmail.com>",
29
35
  "license": "GPL-2.0",
36
+ "bugs": {
37
+ "url": "https://github.com/furystack/furystack/issues"
38
+ },
39
+ "homepage": "https://github.com/furystack/furystack",
30
40
  "devDependencies": {
31
- "@furystack/inject": "^12.0.26",
41
+ "@furystack/inject": "^12.0.28",
32
42
  "typescript": "^5.9.3",
33
43
  "vitest": "^4.0.17"
34
44
  },
35
45
  "dependencies": {
36
- "@furystack/shades": "^11.0.33",
46
+ "@furystack/shades": "^11.1.0",
37
47
  "nipplejs": "^0.10.2"
38
48
  },
39
- "gitHead": "76e1d17a71b981984935c9a7a5791cf61ebf5213"
49
+ "engines": {
50
+ "node": ">=22.0.0"
51
+ },
52
+ "sideEffects": false
40
53
  }