@connectif/ui-components 5.7.0 → 5.7.2
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.
- package/CHANGELOG.md +12 -0
- package/dist/components/icon/icons.d.ts +1 -0
- package/dist/index.js +3 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [5.7.2] - 2026-03-17
|
|
4
|
+
|
|
5
|
+
### Added
|
|
6
|
+
|
|
7
|
+
- Added new 'gamepad-circle-outlined' icon to our icon collection.
|
|
8
|
+
|
|
9
|
+
## [5.7.1] - 2026-03-13
|
|
10
|
+
|
|
11
|
+
### Fixed
|
|
12
|
+
|
|
13
|
+
- Fixed an issue where item data was not passed to `selectableItemComponent` in the `ItemSelector` component.
|
|
14
|
+
|
|
3
15
|
## [5.7.0] - 2026-03-12
|
|
4
16
|
|
|
5
17
|
### Added
|
package/dist/index.js
CHANGED
|
@@ -1708,6 +1708,7 @@ import {
|
|
|
1708
1708
|
mdiFullscreenExit,
|
|
1709
1709
|
mdiFunction,
|
|
1710
1710
|
mdiGamepad,
|
|
1711
|
+
mdiGamepadCircleOutline,
|
|
1711
1712
|
mdiGamepadVariant,
|
|
1712
1713
|
mdiGarage,
|
|
1713
1714
|
mdiGarageOpen,
|
|
@@ -3525,6 +3526,7 @@ var icons = {
|
|
|
3525
3526
|
"fullscreen-exit": mdiFullscreenExit,
|
|
3526
3527
|
function: mdiFunction,
|
|
3527
3528
|
gamepad: mdiGamepad,
|
|
3529
|
+
"gamepad-circle-outline": mdiGamepadCircleOutline,
|
|
3528
3530
|
"gamepad-variant": mdiGamepadVariant,
|
|
3529
3531
|
garage: mdiGarage,
|
|
3530
3532
|
"garage-open": mdiGarageOpen,
|
|
@@ -23647,6 +23649,7 @@ var ItemSelector = function ItemSelector2({
|
|
|
23647
23649
|
items: items.map((item) => {
|
|
23648
23650
|
const { title, subtitle1, subtitle2 } = renderItem(item);
|
|
23649
23651
|
return {
|
|
23652
|
+
...item,
|
|
23650
23653
|
id: item.id,
|
|
23651
23654
|
name: title,
|
|
23652
23655
|
selected: selectedItems.some((i) => item.id === i.id),
|