@sit-onyx/figma-utils 1.1.0 → 1.1.1-dev-20260611132325

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.
@@ -14,6 +14,7 @@ const UNKNOWN_COUNTRY_NAMES = {
14
14
  "ES-IB": "Balearic Islands",
15
15
  "ES-ML": "Melilla",
16
16
  "ES-PV": "Basque Country",
17
+ "ES-CN": "Canary Islands",
17
18
  "FR-20R": "Corsica",
18
19
  "FR-BRE": "Brittany",
19
20
  };
@@ -4,7 +4,7 @@ export const parseComponentsToIcons = (options) => {
4
4
  .map((component) => {
5
5
  return {
6
6
  id: component.node_id,
7
- name: component.name,
7
+ name: component.name.trim(),
8
8
  category: component.containing_frame.name.trim(),
9
9
  aliases: component.description
10
10
  .split(options.aliasSeparator ?? ",")
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@sit-onyx/figma-utils",
3
3
  "description": "Utility functions and CLI for importing data from the Figma API into different formats (e.g. CSS, SCSS etc.)",
4
- "version": "1.1.0",
4
+ "version": "1.1.1-dev-20260611132325",
5
5
  "type": "module",
6
6
  "author": "Schwarz IT KG",
7
7
  "license": "Apache-2.0",
@@ -31,7 +31,7 @@
31
31
  "url": "https://github.com/SchwarzIT/onyx/issues"
32
32
  },
33
33
  "dependencies": {
34
- "commander": "^14.0.3"
34
+ "commander": "^15.0.0"
35
35
  },
36
36
  "optionalDependencies": {
37
37
  "svgo": "^4.0.1"