@cyberalien/svg-utils 0.0.15 → 0.0.16

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.
@@ -0,0 +1 @@
1
+ export { };
@@ -1,4 +1,3 @@
1
- import { ClassProp } from "./const.js";
2
1
  /**
3
2
  * Split class name by spaces
4
3
  */
@@ -6,5 +5,5 @@ declare function splitClassName(className: string): string[];
6
5
  /**
7
6
  * Add/remove class name
8
7
  */
9
- declare function toggleClassName(attribs: Record<string, unknown>, className: string, add: boolean, prop?: ClassProp): void;
8
+ declare function toggleClassName(attribs: Record<string, unknown>, className: string, add: boolean, prop?: string): void;
10
9
  export { splitClassName, toggleClassName };
@@ -0,0 +1 @@
1
+ export { };
@@ -0,0 +1 @@
1
+ export { };
package/lib/xml/types.js CHANGED
@@ -0,0 +1 @@
1
+ export { };
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "type": "module",
4
4
  "description": "Common functions for working with SVG used by various packages.",
5
5
  "author": "Vjacheslav Trushkin",
6
- "version": "0.0.15",
6
+ "version": "0.0.16",
7
7
  "license": "MIT",
8
8
  "bugs": "https://github.com/cyberalien/svg-utils/issues",
9
9
  "homepage": "https://cyberalien.dev/",
@@ -24,14 +24,14 @@
24
24
  },
25
25
  "devDependencies": {
26
26
  "@eslint/eslintrc": "^3.3.1",
27
- "@eslint/js": "^9.31.0",
27
+ "@eslint/js": "^9.34.0",
28
28
  "@types/jest": "^29.5.14",
29
- "@types/node": "^18.19.120",
30
- "@typescript-eslint/eslint-plugin": "^8.38.0",
31
- "eslint": "^9.31.0",
29
+ "@types/node": "^18.19.123",
30
+ "@typescript-eslint/eslint-plugin": "^8.41.0",
31
+ "eslint": "^9.34.0",
32
32
  "globals": "^16.3.0",
33
- "tsdown": "^0.13.0",
34
- "typescript": "^5.8.3",
33
+ "tsdown": "^0.14.2",
34
+ "typescript": "^5.9.2",
35
35
  "vitest": "^2.1.9"
36
36
  },
37
37
  "scripts": {