@connectif/ui-components 2.4.0 → 2.4.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 +15 -0
- package/package.json +3 -2
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## [2.4.1] (2025-11-25)
|
|
4
|
+
|
|
5
|
+
### Performance Improvements
|
|
6
|
+
|
|
7
|
+
- Added changelog file in package.
|
|
8
|
+
- Added optional centeredInScreen and paddingContent props to the SelectPopover component.
|
|
9
|
+
- Modified emptyListPlaceholder prop to receive string | React.ReactNode in SelectPopover component.
|
|
10
|
+
- Added optional sx, onMouseEnter, and onMouseLeave props to the EnhancedCard component.
|
|
11
|
+
- Added new cellphone-off, filter-off and tag-hidden icons.
|
|
12
|
+
- Added new Carousel component.
|
|
13
|
+
- Added optional showTime prop in DateIntervalPicker component.
|
|
14
|
+
- Added optional keepMounted prop in TabContent.
|
|
15
|
+
- Added optional disableContentScroll prop in Tabs component.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@connectif/ui-components",
|
|
3
|
-
"version": "2.4.
|
|
3
|
+
"version": "2.4.2",
|
|
4
4
|
"description": "A comprehensive UI component library for all Connectif projects.",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -112,6 +112,7 @@
|
|
|
112
112
|
},
|
|
113
113
|
"files": [
|
|
114
114
|
"dist",
|
|
115
|
-
"README.md"
|
|
115
|
+
"README.md",
|
|
116
|
+
"CHANGELOG.md"
|
|
116
117
|
]
|
|
117
118
|
}
|