@infineon/design-system-mcp 40.1.0 → 40.1.1

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.
@@ -1,8 +1,8 @@
1
1
  {
2
- "timestamp": "2026-08-26T13:23:42",
2
+ "timestamp": "2026-08-26T14:12:31",
3
3
  "compiler": {
4
4
  "name": "@stencil/core",
5
- "version": "4.44.0",
5
+ "version": "4.44.1",
6
6
  "typescriptVersion": "5.8.3"
7
7
  },
8
8
  "components": [
@@ -18727,7 +18727,7 @@
18727
18727
  "Event": {
18728
18728
  "location": "import",
18729
18729
  "path": "@stencil/core",
18730
- "id": "../../node_modules/.pnpm/@stencil+core@4.44.0/node_modules/@stencil/core/internal/stencil-core/index.d.ts::Event",
18730
+ "id": "../../node_modules/.pnpm/@stencil+core@4.44.1/node_modules/@stencil/core/internal/stencil-core/index.d.ts::Event",
18731
18731
  "referenceLocation": "Event"
18732
18732
  }
18733
18733
  }
@@ -18756,7 +18756,7 @@
18756
18756
  "Event": {
18757
18757
  "location": "import",
18758
18758
  "path": "@stencil/core",
18759
- "id": "../../node_modules/.pnpm/@stencil+core@4.44.0/node_modules/@stencil/core/internal/stencil-core/index.d.ts::Event",
18759
+ "id": "../../node_modules/.pnpm/@stencil+core@4.44.1/node_modules/@stencil/core/internal/stencil-core/index.d.ts::Event",
18760
18760
  "referenceLocation": "Event"
18761
18761
  }
18762
18762
  }
@@ -18999,7 +18999,7 @@
18999
18999
  "Event": {
19000
19000
  "location": "import",
19001
19001
  "path": "@stencil/core",
19002
- "id": "../../node_modules/.pnpm/@stencil+core@4.44.0/node_modules/@stencil/core/internal/stencil-core/index.d.ts::Event",
19002
+ "id": "../../node_modules/.pnpm/@stencil+core@4.44.1/node_modules/@stencil/core/internal/stencil-core/index.d.ts::Event",
19003
19003
  "referenceLocation": "Event"
19004
19004
  }
19005
19005
  }
@@ -22339,10 +22339,10 @@
22339
22339
  "docstring": "",
22340
22340
  "path": "src/components/stepper/interfaces.tsx"
22341
22341
  },
22342
- "../../node_modules/.pnpm/@stencil+core@4.44.0/node_modules/@stencil/core/internal/stencil-core/index.d.ts::Event": {
22343
- "declaration": "any",
22344
- "docstring": "",
22345
- "path": "../../node_modules/.pnpm/@stencil+core@4.44.0/node_modules/@stencil/core/internal/stencil-core/index.d.ts"
22342
+ "../../node_modules/.pnpm/@stencil+core@4.44.1/node_modules/@stencil/core/internal/stencil-core/index.d.ts::Event": {
22343
+ "declaration": "interface Event {\n /**\n * Returns true or false depending on how event was initialized. True if event goes through its target's ancestors in reverse tree order, and false otherwise.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/bubbles)\n */\n readonly bubbles: boolean;\n /**\n * @deprecated\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/cancelBubble)\n */\n cancelBubble: boolean;\n /**\n * Returns true or false depending on how event was initialized. Its return value does not always carry meaning, but true can indicate that part of the operation during which event was dispatched, can be canceled by invoking the preventDefault() method.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/cancelable)\n */\n readonly cancelable: boolean;\n /**\n * Returns true or false depending on how event was initialized. True if event invokes listeners past a ShadowRoot node that is the root of its target, and false otherwise.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/composed)\n */\n readonly composed: boolean;\n /**\n * Returns the object whose event listener's callback is currently being invoked.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/currentTarget)\n */\n readonly currentTarget: EventTarget | null;\n /**\n * Returns true if preventDefault() was invoked successfully to indicate cancelation, and false otherwise.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/defaultPrevented)\n */\n readonly defaultPrevented: boolean;\n /**\n * Returns the event's phase, which is one of NONE, CAPTURING_PHASE, AT_TARGET, and BUBBLING_PHASE.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/eventPhase)\n */\n readonly eventPhase: number;\n /**\n * Returns true if event was dispatched by the user agent, and false otherwise.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/isTrusted)\n */\n readonly isTrusted: boolean;\n /**\n * @deprecated\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/returnValue)\n */\n returnValue: boolean;\n /**\n * @deprecated\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/srcElement)\n */\n readonly srcElement: EventTarget | null;\n /**\n * Returns the object to which event is dispatched (its target).\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/target)\n */\n readonly target: EventTarget | null;\n /**\n * Returns the event's timestamp as the number of milliseconds measured relative to the time origin.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/timeStamp)\n */\n readonly timeStamp: DOMHighResTimeStamp;\n /**\n * Returns the type of event, e.g. \"click\", \"hashchange\", or \"submit\".\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/type)\n */\n readonly type: string;\n /**\n * Returns the invocation target objects of event's path (objects on which listeners will be invoked), except for any nodes in shadow trees of which the shadow root's mode is \"closed\" that are not reachable from event's currentTarget.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/composedPath)\n */\n composedPath(): EventTarget[];\n /**\n * @deprecated\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/initEvent)\n */\n initEvent(type: string, bubbles?: boolean, cancelable?: boolean): void;\n /**\n * If invoked when the cancelable attribute value is true, and while executing a listener for the event with passive set to false, signals to the operation that caused event to be dispatched that it needs to be canceled.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/preventDefault)\n */\n preventDefault(): void;\n /**\n * Invoking this method prevents event from reaching any registered event listeners after the current one finishes running and, when dispatched in a tree, also prevents event from reaching any other objects.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/stopImmediatePropagation)\n */\n stopImmediatePropagation(): void;\n /**\n * When dispatched in a tree, invoking this method prevents event from reaching any objects other than the current object.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/stopPropagation)\n */\n stopPropagation(): void;\n readonly NONE: 0;\n readonly CAPTURING_PHASE: 1;\n readonly AT_TARGET: 2;\n readonly BUBBLING_PHASE: 3;\n}",
22344
+ "docstring": "An event which takes place in the DOM.\n\n[MDN Reference](https://developer.mozilla.org/docs/Web/API/Event)",
22345
+ "path": "../../node_modules/.pnpm/@stencil+core@4.44.1/node_modules/@stencil/core/internal/stencil-core/index.d.ts"
22346
22346
  }
22347
22347
  }
22348
22348
  }
@@ -7,7 +7,7 @@
7
7
  "attributes": {
8
8
  "max-file-size-m-b": "7",
9
9
  "allowed-file-types": "jpg,jpeg,png,pdf",
10
- "additional-allowed-file-types": "application/zip,text/csv",
10
+ "additional-allowed-file-types": "application/zip,application/x-zip-compressed,text/csv",
11
11
  "label": "Label",
12
12
  "label-required-error": "You must upload at least one file.",
13
13
  "label-browse-files": "Browse files",
@@ -125,7 +125,7 @@
125
125
  "png",
126
126
  "pdf"
127
127
  ],
128
- "additionalAllowedFileTypes": "application/zip,text/csv",
128
+ "additionalAllowedFileTypes": "application/zip,application/x-zip-compressed,text/csv",
129
129
  "allowAnyFileType": false,
130
130
  "allowedFileExtensions": "",
131
131
  "labelBrowseFiles": "Browse files",
package/dist/index.js CHANGED
@@ -159,7 +159,7 @@ Examples:
159
159
  `);
160
160
  }
161
161
  function showVersion() {
162
- console.log(`dds-mcp version ${"40.1.0"}`);
162
+ console.log(`dds-mcp version ${"40.1.1"}`);
163
163
  }
164
164
  async function handleCli(args) {
165
165
  const command = args[0];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@infineon/design-system-mcp",
3
- "version": "40.1.0",
3
+ "version": "40.1.1",
4
4
  "type": "module",
5
5
  "description": "MCP server for the Infineon Design System (DDS)",
6
6
  "main": "./dist/index.js",
@@ -32,16 +32,16 @@
32
32
  "zod": "^3.23.8"
33
33
  },
34
34
  "devDependencies": {
35
- "@infineon/dds-tooling": "40.1.0",
35
+ "@infineon/dds-tooling": "40.1.1",
36
36
  "@types/node": "^20.19.33",
37
37
  "esbuild": "^0.27.4",
38
38
  "typescript": "^5.4.5"
39
39
  },
40
40
  "peerDependencies": {
41
- "@infineon/infineon-design-system-angular": "40.1.0",
42
- "@infineon/infineon-design-system-react": "40.1.0",
43
- "@infineon/infineon-design-system-stencil": "40.1.0",
44
- "@infineon/infineon-design-system-vue": "40.1.0"
41
+ "@infineon/infineon-design-system-angular": "40.1.1",
42
+ "@infineon/infineon-design-system-react": "40.1.1",
43
+ "@infineon/infineon-design-system-stencil": "40.1.1",
44
+ "@infineon/infineon-design-system-vue": "40.1.1"
45
45
  },
46
46
  "peerDependenciesMeta": {
47
47
  "@infineon/infineon-design-system-stencil": {
@@ -123,5 +123,5 @@
123
123
  }
124
124
  },
125
125
  "license": "MIT",
126
- "gitHead": "bff4b47b49c2a8bca3a41d3b3881cd21ba429fc1"
126
+ "gitHead": "65212418272e03ea7e6d16a714944a8341e88434"
127
127
  }