-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/main' into release-3.0.0
- Loading branch information
Showing
103 changed files
with
7,129 additions
and
7,281 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"@siemens/ix": minor | ||
--- | ||
|
||
feat(core/message): add options to set size and position |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"@siemens/ix": patch | ||
--- | ||
|
||
fix(core/spinner): move styling into shadow dom |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
'@siemens/ix': patch | ||
--- | ||
|
||
fix(core/select): update input value on slot change |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"@siemens/ix": patch | ||
--- | ||
|
||
fix(core): prevent detached dom nodes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
"timestamp": "", | ||
"compiler": { | ||
"name": "@stencil/core", | ||
"version": "4.22.1", | ||
"version": "4.22.2", | ||
"typescriptVersion": "5.5.4" | ||
}, | ||
"components": [ | ||
|
@@ -3503,6 +3503,7 @@ | |
"reflectToAttr": false, | ||
"docs": "Picker date. If the picker is in range mode this property is the start date.\nIf set to `null` no default start date will be pre-selected.\n\nFormat is based on `format`", | ||
"docsTags": [], | ||
"default": "''", | ||
"values": [ | ||
{ | ||
"type": "string" | ||
|
@@ -3590,6 +3591,7 @@ | |
"reflectToAttr": false, | ||
"docs": "The latest date that can be selected by the date picker.\nIf not set there will be no restriction.", | ||
"docsTags": [], | ||
"default": "''", | ||
"values": [ | ||
{ | ||
"type": "string" | ||
|
@@ -3611,6 +3613,7 @@ | |
"reflectToAttr": false, | ||
"docs": "The earliest date that can be selected by the date picker.\nIf not set there will be no restriction.", | ||
"docsTags": [], | ||
"default": "''", | ||
"values": [ | ||
{ | ||
"type": "string" | ||
|
@@ -3654,6 +3657,7 @@ | |
"reflectToAttr": false, | ||
"docs": "Picker date. If the picker is in range mode this property is the end date.\nIf the picker is not in range mode leave this value `null`\n\nFormat is based on `format`", | ||
"docsTags": [], | ||
"default": "''", | ||
"values": [ | ||
{ | ||
"type": "string" | ||
|
@@ -3956,13 +3960,12 @@ | |
"text": "2.1.0" | ||
} | ||
], | ||
"default": "undefined", | ||
"values": [ | ||
{ | ||
"type": "string" | ||
} | ||
], | ||
"optional": false, | ||
"optional": true, | ||
"required": false | ||
}, | ||
{ | ||
|
@@ -3983,6 +3986,7 @@ | |
"text": "1.1.0" | ||
} | ||
], | ||
"default": "''", | ||
"values": [ | ||
{ | ||
"type": "string" | ||
|
@@ -4009,6 +4013,7 @@ | |
"text": "1.1.0" | ||
} | ||
], | ||
"default": "''", | ||
"values": [ | ||
{ | ||
"type": "string" | ||
|
@@ -4061,6 +4066,7 @@ | |
"text": "since 2.1.0. Use `i18nDone`" | ||
} | ||
], | ||
"default": "''", | ||
"deprecation": "since 2.1.0. Use `i18nDone`", | ||
"values": [ | ||
{ | ||
|
@@ -5211,14 +5217,15 @@ | |
"props": [ | ||
{ | ||
"name": "anchor", | ||
"type": "HTMLElement | string", | ||
"type": "HTMLElement | Promise<HTMLElement> | string", | ||
"complexType": { | ||
"original": "string | HTMLElement", | ||
"resolved": "HTMLElement | string", | ||
"original": "ElementReference", | ||
"resolved": "HTMLElement | Promise<HTMLElement> | string", | ||
"references": { | ||
"HTMLElement": { | ||
"location": "global", | ||
"id": "global::HTMLElement" | ||
"ElementReference": { | ||
"location": "import", | ||
"path": "src/components/utils/element-reference", | ||
"id": "src/components/utils/element-reference.ts::ElementReference" | ||
} | ||
} | ||
}, | ||
|
@@ -5231,11 +5238,14 @@ | |
{ | ||
"type": "HTMLElement" | ||
}, | ||
{ | ||
"type": "Promise<HTMLElement>" | ||
}, | ||
{ | ||
"type": "string" | ||
} | ||
], | ||
"optional": false, | ||
"optional": true, | ||
"required": false | ||
}, | ||
{ | ||
|
@@ -5436,16 +5446,13 @@ | |
"name": "trigger", | ||
"type": "HTMLElement | Promise<HTMLElement> | string", | ||
"complexType": { | ||
"original": "string | HTMLElement | Promise<HTMLElement>", | ||
"original": "ElementReference", | ||
"resolved": "HTMLElement | Promise<HTMLElement> | string", | ||
"references": { | ||
"HTMLElement": { | ||
"location": "global", | ||
"id": "global::HTMLElement" | ||
}, | ||
"Promise": { | ||
"location": "global", | ||
"id": "global::Promise" | ||
"ElementReference": { | ||
"location": "import", | ||
"path": "src/components/utils/element-reference", | ||
"id": "src/components/utils/element-reference.ts::ElementReference" | ||
} | ||
} | ||
}, | ||
|
@@ -5465,7 +5472,7 @@ | |
"type": "string" | ||
} | ||
], | ||
"optional": false, | ||
"optional": true, | ||
"required": false | ||
} | ||
], | ||
|
@@ -5659,7 +5666,7 @@ | |
"type": "string" | ||
} | ||
], | ||
"optional": false, | ||
"optional": true, | ||
"required": false | ||
}, | ||
{ | ||
|
@@ -5680,7 +5687,7 @@ | |
"type": "string" | ||
} | ||
], | ||
"optional": false, | ||
"optional": true, | ||
"required": false | ||
}, | ||
{ | ||
|
@@ -5763,7 +5770,7 @@ | |
"type": "string" | ||
} | ||
], | ||
"optional": false, | ||
"optional": true, | ||
"required": false | ||
}, | ||
{ | ||
|
@@ -16019,16 +16026,13 @@ | |
"name": "for", | ||
"type": "HTMLElement | Promise<HTMLElement> | string", | ||
"complexType": { | ||
"original": "string | HTMLElement | Promise<HTMLElement>", | ||
"original": "ElementReference", | ||
"resolved": "HTMLElement | Promise<HTMLElement> | string", | ||
"references": { | ||
"HTMLElement": { | ||
"location": "global", | ||
"id": "global::HTMLElement" | ||
}, | ||
"Promise": { | ||
"location": "global", | ||
"id": "global::Promise" | ||
"ElementReference": { | ||
"location": "import", | ||
"path": "../utils/element-reference", | ||
"id": "src/components/utils/element-reference.ts::ElementReference" | ||
} | ||
} | ||
}, | ||
|
@@ -17789,6 +17793,11 @@ | |
"docstring": "", | ||
"path": "src/components/category-filter/input-state.ts" | ||
}, | ||
"src/components/utils/element-reference.ts::ElementReference": { | ||
"declaration": "export type ElementReference = string | HTMLElement | Promise<HTMLElement>;", | ||
"docstring": "", | ||
"path": "src/components/utils/element-reference.ts" | ||
}, | ||
"src/components/flip-tile/flip-tile-state.ts::FlipTileState": { | ||
"declaration": "export enum FlipTileState {\n None = 'none',\n Info = 'info',\n Warning = 'warning',\n Alarm = 'alarm',\n Primary = 'primary',\n}", | ||
"docstring": "", | ||
|
@@ -17804,10 +17813,10 @@ | |
"docstring": "", | ||
"path": "src/components/toast/toast-utils.ts" | ||
}, | ||
"../../node_modules/.pnpm/@[email protected].1/node_modules/@stencil/core/internal/stencil-core/index.d.ts::Element": { | ||
"../../node_modules/.pnpm/@[email protected].2/node_modules/@stencil/core/internal/stencil-core/index.d.ts::Element": { | ||
"declaration": "any", | ||
"docstring": "", | ||
"path": "../../node_modules/.pnpm/@[email protected].1/node_modules/@stencil/core/internal/stencil-core/index.d.ts" | ||
"path": "../../node_modules/.pnpm/@[email protected].2/node_modules/@stencil/core/internal/stencil-core/index.d.ts" | ||
}, | ||
"src/components/tree/tree-model.ts::TreeModel": { | ||
"declaration": "{\n [P in K]: T;\n}", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.