Skip to content

Commit 2a8eccf

Browse files
Version Packages
1 parent 08f59f7 commit 2a8eccf

23 files changed

+117
-98
lines changed

.changeset/brave-jeans-approve.md

-7
This file was deleted.

.changeset/eighty-doors-wait.md

-7
This file was deleted.

.changeset/heavy-cups-peel.md

-5
This file was deleted.

.changeset/pink-needles-kick.md

-5
This file was deleted.

.changeset/pretty-guests-jog.md

-8
This file was deleted.

.changeset/rare-tables-jam.md

-5
This file was deleted.

.changeset/shy-lions-hear.md

-7
This file was deleted.

.changeset/six-wombats-grow.md

-15
This file was deleted.

.changeset/sixty-carpets-sniff.md

-5
This file was deleted.

.changeset/stale-ladybugs-wave.md

-9
This file was deleted.

.changeset/tender-planes-bathe.md

-5
This file was deleted.

.changeset/thick-vans-arrive.md

-7
This file was deleted.

packages/aggrid/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @siemens/ix-aggrid
22

3+
## 2.2.4
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`aa63b4fd90`](https://github.com/siemens/ix/commit/aa63b4fd901bc50e98877826699412affa127ae7), [`4685dc2c2b`](https://github.com/siemens/ix/commit/4685dc2c2b0de0961b464d305f633e1115a5926a), [`5b56d90813`](https://github.com/siemens/ix/commit/5b56d90813239cb34d28b4c20255392b9dd1d66f), [`093c783529`](https://github.com/siemens/ix/commit/093c78352916a193e7f2cbfab692362c4ba0de9a), [`5a12c6ac20`](https://github.com/siemens/ix/commit/5a12c6ac20e80a77f9fd3ad9aaffd66468f72b40), [`2d4e3b8cdb`](https://github.com/siemens/ix/commit/2d4e3b8cdb756dff44627941adfea6a0230ccf26), [`4685dc2c2b`](https://github.com/siemens/ix/commit/4685dc2c2b0de0961b464d305f633e1115a5926a), [`8726afc094`](https://github.com/siemens/ix/commit/8726afc094adf2ddb4f8e927c6a42aa8dc0ed589), [`f41b5d6029`](https://github.com/siemens/ix/commit/f41b5d60299cb874cec9730394038dd4c2df8a60), [`4685dc2c2b`](https://github.com/siemens/ix/commit/4685dc2c2b0de0961b464d305f633e1115a5926a), [`4685dc2c2b`](https://github.com/siemens/ix/commit/4685dc2c2b0de0961b464d305f633e1115a5926a)]:
8+
- @siemens/ix@2.8.0
9+
310
## 2.2.3
411

512
### Patch Changes

packages/aggrid/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"directory": "packages/aggrid"
99
},
1010
"description": "AG Grid theme based on ix theme variables",
11-
"version": "2.2.3",
11+
"version": "2.2.4",
1212
"files": [
1313
"LICENSE",
1414
"README.md",
@@ -38,7 +38,7 @@
3838
"ts-node": "^10.9.1"
3939
},
4040
"dependencies": {
41-
"@siemens/ix": "~2.7.0"
41+
"@siemens/ix": "~2.8.0"
4242
},
4343
"peerDependencies": {
4444
"ag-grid-community": ">=28"

packages/angular/CHANGELOG.md

+37
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,42 @@
11
# @siemens/ix-angular
22

3+
## 2.8.0
4+
5+
### Minor Changes
6+
7+
- [#1676](https://github.com/siemens/ix/pull/1676) [`4685dc2c2b`](https://github.com/siemens/ix/commit/4685dc2c2b0de0961b464d305f633e1115a5926a) Thanks [@nuke-ellington](https://github.com/nuke-ellington)! - `ix-flip-tile`: Expsose `index` property to allow setting of displayed content and add `toggle` event.
8+
9+
- [#1688](https://github.com/siemens/ix/pull/1688) [`5a12c6ac20`](https://github.com/siemens/ix/commit/5a12c6ac20e80a77f9fd3ad9aaffd66468f72b40) Thanks [@matthiashader](https://github.com/matthiashader)! - `ix-message-bar`: Event `closedChange` can now be prevented via `event.preventDefault()`.
10+
An additional event is added to get notified after the close animation of the `ix-message-bar` is finished.
11+
12+
- [#1676](https://github.com/siemens/ix/pull/1676) [`4685dc2c2b`](https://github.com/siemens/ix/commit/4685dc2c2b0de0961b464d305f633e1115a5926a) Thanks [@nuke-ellington](https://github.com/nuke-ellington)! - `ix-menu`: Add `openSettings` and `openAbout` events. Event `expandChange` can now be prevented via `event.preventDefault()`.
13+
14+
- [#1682](https://github.com/siemens/ix/pull/1682) [`f41b5d6029`](https://github.com/siemens/ix/commit/f41b5d60299cb874cec9730394038dd4c2df8a60) Thanks [@danielleroux](https://github.com/danielleroux)! - Add `suppressClassMapping` to value-accessors to prevent that the accessors automatically map `ng-`-classes to `ix-`-classes.
15+
16+
If `[suppressClassMapping]="true"` you need to control the `ix-`-classes on your own.
17+
18+
```html
19+
<ix-input
20+
label="Name:"
21+
formControlName="name"
22+
[suppressClassMapping]="true"
23+
[class.ix-invalid]="!form.get('name')!.valid && form.get('name')!.touched"
24+
required
25+
>
26+
</ix-input>
27+
```
28+
29+
`value-accessor` ignores NgControls which are untouched but have `required=true` errors
30+
31+
Fixes #1638 #1680
32+
33+
- [#1676](https://github.com/siemens/ix/pull/1676) [`4685dc2c2b`](https://github.com/siemens/ix/commit/4685dc2c2b0de0961b464d305f633e1115a5926a) Thanks [@nuke-ellington](https://github.com/nuke-ellington)! - Add `tabChange` event to `ix-menu-settings` and `ix-menu-about`.
34+
35+
### Patch Changes
36+
37+
- Updated dependencies [[`aa63b4fd90`](https://github.com/siemens/ix/commit/aa63b4fd901bc50e98877826699412affa127ae7), [`4685dc2c2b`](https://github.com/siemens/ix/commit/4685dc2c2b0de0961b464d305f633e1115a5926a), [`5b56d90813`](https://github.com/siemens/ix/commit/5b56d90813239cb34d28b4c20255392b9dd1d66f), [`093c783529`](https://github.com/siemens/ix/commit/093c78352916a193e7f2cbfab692362c4ba0de9a), [`5a12c6ac20`](https://github.com/siemens/ix/commit/5a12c6ac20e80a77f9fd3ad9aaffd66468f72b40), [`2d4e3b8cdb`](https://github.com/siemens/ix/commit/2d4e3b8cdb756dff44627941adfea6a0230ccf26), [`4685dc2c2b`](https://github.com/siemens/ix/commit/4685dc2c2b0de0961b464d305f633e1115a5926a), [`8726afc094`](https://github.com/siemens/ix/commit/8726afc094adf2ddb4f8e927c6a42aa8dc0ed589), [`f41b5d6029`](https://github.com/siemens/ix/commit/f41b5d60299cb874cec9730394038dd4c2df8a60), [`4685dc2c2b`](https://github.com/siemens/ix/commit/4685dc2c2b0de0961b464d305f633e1115a5926a), [`4685dc2c2b`](https://github.com/siemens/ix/commit/4685dc2c2b0de0961b464d305f633e1115a5926a)]:
38+
- @siemens/ix@2.8.0
39+
340
## 2.7.0
441

542
### Minor Changes

packages/angular/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"url": "https://github.com/siemens/ix",
88
"directory": "packages/angular"
99
},
10-
"version": "2.7.0",
10+
"version": "2.8.0",
1111
"description": "Siemens iX for Angular",
1212
"scripts": {
1313
"build": "ng-packagr -c tsconfig.json",
@@ -16,7 +16,7 @@
1616
},
1717
"license": "MIT",
1818
"dependencies": {
19-
"@siemens/ix": "~2.7.0"
19+
"@siemens/ix": "~2.8.0"
2020
},
2121
"peerDependencies": {
2222
"@angular/core": ">=13.4.0",

packages/core/CHANGELOG.md

+35
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,40 @@
11
# @siemens/ix
22

3+
## 2.8.0
4+
5+
### Minor Changes
6+
7+
- [#1676](https://github.com/siemens/ix/pull/1676) [`4685dc2c2b`](https://github.com/siemens/ix/commit/4685dc2c2b0de0961b464d305f633e1115a5926a) Thanks [@nuke-ellington](https://github.com/nuke-ellington)! - `ix-flip-tile`: Expsose `index` property to allow setting of displayed content and add `toggle` event.
8+
9+
- [#1688](https://github.com/siemens/ix/pull/1688) [`5a12c6ac20`](https://github.com/siemens/ix/commit/5a12c6ac20e80a77f9fd3ad9aaffd66468f72b40) Thanks [@matthiashader](https://github.com/matthiashader)! - `ix-message-bar`: Event `closedChange` can now be prevented via `event.preventDefault()`.
10+
An additional event is added to get notified after the close animation of the `ix-message-bar` is finished.
11+
12+
- [#1676](https://github.com/siemens/ix/pull/1676) [`4685dc2c2b`](https://github.com/siemens/ix/commit/4685dc2c2b0de0961b464d305f633e1115a5926a) Thanks [@nuke-ellington](https://github.com/nuke-ellington)! - `ix-menu`: Add `openSettings` and `openAbout` events. Event `expandChange` can now be prevented via `event.preventDefault()`.
13+
14+
- [#1676](https://github.com/siemens/ix/pull/1676) [`4685dc2c2b`](https://github.com/siemens/ix/commit/4685dc2c2b0de0961b464d305f633e1115a5926a) Thanks [@nuke-ellington](https://github.com/nuke-ellington)! - `ìx-drawer`: Events `open` and `drawerClose` can now be prevented via`event.preventDefault()`.
15+
16+
- [#1676](https://github.com/siemens/ix/pull/1676) [`4685dc2c2b`](https://github.com/siemens/ix/commit/4685dc2c2b0de0961b464d305f633e1115a5926a) Thanks [@nuke-ellington](https://github.com/nuke-ellington)! - Add `tabChange` event to `ix-menu-settings` and `ix-menu-about`.
17+
18+
### Patch Changes
19+
20+
- [#1683](https://github.com/siemens/ix/pull/1683) [`aa63b4fd90`](https://github.com/siemens/ix/commit/aa63b4fd901bc50e98877826699412affa127ae7) Thanks [@ridvandmrc](https://github.com/ridvandmrc)! - `active=false` of the `ix-chip` will now show the chip as not interactable.
21+
22+
Fixed #1656
23+
24+
- [#1681](https://github.com/siemens/ix/pull/1681) [`5b56d90813`](https://github.com/siemens/ix/commit/5b56d90813239cb34d28b4c20255392b9dd1d66f) Thanks [@jul-lam](https://github.com/jul-lam)! - Update `@floating-ui/dom` dependency to fix a wrong placement of the `ix-dropdown` if the dropdown is placed inside a `dialog`-element with animations in certain environments.
25+
26+
- [#1699](https://github.com/siemens/ix/pull/1699) [`093c783529`](https://github.com/siemens/ix/commit/093c78352916a193e7f2cbfab692362c4ba0de9a) Thanks [@danielleroux](https://github.com/danielleroux)! - Update classic theme colors to match latest figma specs
27+
28+
- [#1687](https://github.com/siemens/ix/pull/1687) [`2d4e3b8cdb`](https://github.com/siemens/ix/commit/2d4e3b8cdb756dff44627941adfea6a0230ccf26) Thanks [@matthiashader](https://github.com/matthiashader)! - Fix issue of `ix-button` which prevent a form get submitted twice in row.
29+
30+
- [#1691](https://github.com/siemens/ix/pull/1691) [`8726afc094`](https://github.com/siemens/ix/commit/8726afc094adf2ddb4f8e927c6a42aa8dc0ed589) Thanks [@nuke-ellington](https://github.com/nuke-ellington)! - `ix-workflow-step`: change icon for 'done' state to be different from the one shown for 'success' state to pervent confusion.
31+
32+
- [#1682](https://github.com/siemens/ix/pull/1682) [`f41b5d6029`](https://github.com/siemens/ix/commit/f41b5d60299cb874cec9730394038dd4c2df8a60) Thanks [@danielleroux](https://github.com/danielleroux)! - Prevent input elements like (`ix-input`, `ix-number-input`, `ix-date-input`, `ix-select`, `ix-textarea`) to show `required` validation error without any user interaction.
33+
34+
If the class `ix-invalid` is applied programmatically an error message is still shown even without a user interaction.
35+
36+
Fixes #1638, #1680
37+
338
## 2.7.0
439

540
### Minor Changes

packages/core/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"url": "https://github.com/siemens/ix",
88
"directory": "packages/core"
99
},
10-
"version": "2.7.0",
10+
"version": "2.8.0",
1111
"license": "MIT",
1212
"description": "Siemens iX Web Components",
1313
"main": "dist/index.cjs.js",

packages/react/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @siemens/ix-react
22

3+
## 2.8.0
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`aa63b4fd90`](https://github.com/siemens/ix/commit/aa63b4fd901bc50e98877826699412affa127ae7), [`4685dc2c2b`](https://github.com/siemens/ix/commit/4685dc2c2b0de0961b464d305f633e1115a5926a), [`5b56d90813`](https://github.com/siemens/ix/commit/5b56d90813239cb34d28b4c20255392b9dd1d66f), [`093c783529`](https://github.com/siemens/ix/commit/093c78352916a193e7f2cbfab692362c4ba0de9a), [`5a12c6ac20`](https://github.com/siemens/ix/commit/5a12c6ac20e80a77f9fd3ad9aaffd66468f72b40), [`2d4e3b8cdb`](https://github.com/siemens/ix/commit/2d4e3b8cdb756dff44627941adfea6a0230ccf26), [`4685dc2c2b`](https://github.com/siemens/ix/commit/4685dc2c2b0de0961b464d305f633e1115a5926a), [`8726afc094`](https://github.com/siemens/ix/commit/8726afc094adf2ddb4f8e927c6a42aa8dc0ed589), [`f41b5d6029`](https://github.com/siemens/ix/commit/f41b5d60299cb874cec9730394038dd4c2df8a60), [`4685dc2c2b`](https://github.com/siemens/ix/commit/4685dc2c2b0de0961b464d305f633e1115a5926a), [`4685dc2c2b`](https://github.com/siemens/ix/commit/4685dc2c2b0de0961b464d305f633e1115a5926a)]:
8+
- @siemens/ix@2.8.0
9+
310
## 2.7.0
411

512
### Patch Changes

packages/react/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"url": "https://github.com/siemens/ix",
88
"directory": "packages/react"
99
},
10-
"version": "2.7.0",
10+
"version": "2.8.0",
1111
"description": "Siemens iX for React",
1212
"main": "dist/index.js",
1313
"module": "dist/index.esm.js",
@@ -63,6 +63,6 @@
6363
"react-dom": ">=17.0.2"
6464
},
6565
"dependencies": {
66-
"@siemens/ix": "~2.7.0"
66+
"@siemens/ix": "~2.8.0"
6767
}
6868
}

packages/vue/CHANGELOG.md

+18
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# @siemens/ix-vue
22

3+
## 2.8.0
4+
5+
### Minor Changes
6+
7+
- [#1676](https://github.com/siemens/ix/pull/1676) [`4685dc2c2b`](https://github.com/siemens/ix/commit/4685dc2c2b0de0961b464d305f633e1115a5926a) Thanks [@nuke-ellington](https://github.com/nuke-ellington)! - `ix-flip-tile`: Expsose `index` property to allow setting of displayed content and add `toggle` event.
8+
9+
- [#1688](https://github.com/siemens/ix/pull/1688) [`5a12c6ac20`](https://github.com/siemens/ix/commit/5a12c6ac20e80a77f9fd3ad9aaffd66468f72b40) Thanks [@matthiashader](https://github.com/matthiashader)! - `ix-message-bar`: Event `closedChange` can now be prevented via `event.preventDefault()`.
10+
An additional event is added to get notified after the close animation of the `ix-message-bar` is finished.
11+
12+
- [#1676](https://github.com/siemens/ix/pull/1676) [`4685dc2c2b`](https://github.com/siemens/ix/commit/4685dc2c2b0de0961b464d305f633e1115a5926a) Thanks [@nuke-ellington](https://github.com/nuke-ellington)! - `ix-menu`: Add `openSettings` and `openAbout` events. Event `expandChange` can now be prevented via `event.preventDefault()`.
13+
14+
- [#1676](https://github.com/siemens/ix/pull/1676) [`4685dc2c2b`](https://github.com/siemens/ix/commit/4685dc2c2b0de0961b464d305f633e1115a5926a) Thanks [@nuke-ellington](https://github.com/nuke-ellington)! - Add `tabChange` event to `ix-menu-settings` and `ix-menu-about`.
15+
16+
### Patch Changes
17+
18+
- Updated dependencies [[`aa63b4fd90`](https://github.com/siemens/ix/commit/aa63b4fd901bc50e98877826699412affa127ae7), [`4685dc2c2b`](https://github.com/siemens/ix/commit/4685dc2c2b0de0961b464d305f633e1115a5926a), [`5b56d90813`](https://github.com/siemens/ix/commit/5b56d90813239cb34d28b4c20255392b9dd1d66f), [`093c783529`](https://github.com/siemens/ix/commit/093c78352916a193e7f2cbfab692362c4ba0de9a), [`5a12c6ac20`](https://github.com/siemens/ix/commit/5a12c6ac20e80a77f9fd3ad9aaffd66468f72b40), [`2d4e3b8cdb`](https://github.com/siemens/ix/commit/2d4e3b8cdb756dff44627941adfea6a0230ccf26), [`4685dc2c2b`](https://github.com/siemens/ix/commit/4685dc2c2b0de0961b464d305f633e1115a5926a), [`8726afc094`](https://github.com/siemens/ix/commit/8726afc094adf2ddb4f8e927c6a42aa8dc0ed589), [`f41b5d6029`](https://github.com/siemens/ix/commit/f41b5d60299cb874cec9730394038dd4c2df8a60), [`4685dc2c2b`](https://github.com/siemens/ix/commit/4685dc2c2b0de0961b464d305f633e1115a5926a), [`4685dc2c2b`](https://github.com/siemens/ix/commit/4685dc2c2b0de0961b464d305f633e1115a5926a)]:
19+
- @siemens/ix@2.8.0
20+
321
## 2.7.0
422

523
### Minor Changes

packages/vue/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"homepage": "https://ix.siemens.io",
44
"author": "Siemens AG",
55
"license": "MIT",
6-
"version": "2.7.0",
6+
"version": "2.8.0",
77
"description": "Siemens iX for Vue",
88
"bugs": "https://github.com/siemens/ix/issues",
99
"repository": {
@@ -31,7 +31,7 @@
3131
"lint": "eslint src"
3232
},
3333
"dependencies": {
34-
"@siemens/ix": "~2.7.0"
34+
"@siemens/ix": "~2.8.0"
3535
},
3636
"devDependencies": {
3737
"rimraf": "^3.0.2",

pnpm-lock.yaml

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)