@connectif/ui-components 3.0.4 → 3.0.5
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 +38 -31
- package/dist/components/icon/icons.d.ts +3 -0
- package/dist/index.js +16 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/dist/utils/DateUtils.d.ts +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,43 +1,33 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## [
|
|
3
|
+
## [3.0.5] - 2025-12-29
|
|
4
4
|
|
|
5
5
|
### Added
|
|
6
6
|
|
|
7
|
-
- Added
|
|
8
|
-
- Added
|
|
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.
|
|
7
|
+
- Added full month date format.
|
|
8
|
+
- Added "brain", "tools" and "sitemap-outline" icons.
|
|
16
9
|
|
|
17
|
-
## [3.0.
|
|
10
|
+
## [3.0.4] - 2025-12-23
|
|
18
11
|
|
|
19
12
|
### Added
|
|
20
13
|
|
|
21
|
-
-
|
|
14
|
+
- Added "rotate-3d-variant" icon.
|
|
22
15
|
|
|
23
|
-
|
|
16
|
+
## [3.0.3] - 2025-12-22
|
|
24
17
|
|
|
25
|
-
|
|
26
|
-
- `DateIntervalPicker` changes buttons styles.
|
|
18
|
+
### Added
|
|
27
19
|
|
|
28
|
-
|
|
20
|
+
- Added "minimizeIconId", "closeIconId" and "backIconId" props to MinimizableWindow component.
|
|
29
21
|
|
|
30
|
-
|
|
31
|
-
- Fixed change interval when showTime is true.
|
|
22
|
+
## [3.0.2] - 2025-12-16
|
|
32
23
|
|
|
33
|
-
###
|
|
24
|
+
### Added
|
|
34
25
|
|
|
35
|
-
-
|
|
36
|
-
- Upgrade cspell to 6.0.0 (latest)
|
|
26
|
+
- Added new styles for `Tabs`.
|
|
37
27
|
|
|
38
|
-
###
|
|
28
|
+
### Fixed
|
|
39
29
|
|
|
40
|
-
-
|
|
30
|
+
- Fixed bug with timezone in `DateIntervalPicker`
|
|
41
31
|
|
|
42
32
|
## [3.0.1] - 2025-12-12
|
|
43
33
|
|
|
@@ -50,24 +40,41 @@
|
|
|
50
40
|
|
|
51
41
|
- Fixed bug with timezone in `DateIntervalPicker`
|
|
52
42
|
|
|
53
|
-
## [3.0.
|
|
43
|
+
## [3.0.0] - 2025-12-11
|
|
54
44
|
|
|
55
45
|
### Added
|
|
56
46
|
|
|
57
|
-
-
|
|
47
|
+
- `Tabs` now supports a `hideScrollButtons` and `hideLineTabs` prop.
|
|
48
|
+
|
|
49
|
+
### Changed
|
|
50
|
+
|
|
51
|
+
- `Tabs` changes its styles to match the new design.
|
|
52
|
+
- `DateIntervalPicker` changes buttons styles.
|
|
58
53
|
|
|
59
54
|
### Fixed
|
|
60
55
|
|
|
61
|
-
- Fixed
|
|
56
|
+
- Fixed an issue where reloading the `Tabs` component on a non-first tab caused an unwanted scroll effect.
|
|
57
|
+
- Fixed change interval when showTime is true.
|
|
62
58
|
|
|
63
|
-
|
|
59
|
+
### Security
|
|
64
60
|
|
|
65
|
-
|
|
61
|
+
- Upgrade to Typescript 5.9
|
|
62
|
+
- Upgrade cspell to 6.0.0 (latest)
|
|
66
63
|
|
|
67
|
-
|
|
64
|
+
### Removed
|
|
68
65
|
|
|
69
|
-
|
|
66
|
+
- `TabButton` no longer accepts the `disableUppercase` prop; Text always will be lowercase.
|
|
67
|
+
|
|
68
|
+
## [2.4.3] - 2025-11-25
|
|
70
69
|
|
|
71
70
|
### Added
|
|
72
71
|
|
|
73
|
-
- Added
|
|
72
|
+
- Added changelog file in package.
|
|
73
|
+
- Added optional centeredInScreen and paddingContent props to the SelectPopover component.
|
|
74
|
+
- Modified emptyListPlaceholder prop to receive string | React.ReactNode in SelectPopover component.
|
|
75
|
+
- Added optional sx, onMouseEnter, and onMouseLeave props to the EnhancedCard component.
|
|
76
|
+
- Added new cellphone-off, filter-off and tag-hidden icons.
|
|
77
|
+
- Added new Carousel component.
|
|
78
|
+
- Added optional showTime prop in DateIntervalPicker component.
|
|
79
|
+
- Added optional keepMounted prop in TabContent.
|
|
80
|
+
- Added optional disableContentScroll prop in Tabs component.
|
|
@@ -270,6 +270,7 @@ export declare const icons: {
|
|
|
270
270
|
box: string;
|
|
271
271
|
'box-cutter': string;
|
|
272
272
|
'box-shadow': string;
|
|
273
|
+
brain: string;
|
|
273
274
|
bridge: string;
|
|
274
275
|
briefcase: string;
|
|
275
276
|
'briefcase-check': string;
|
|
@@ -1583,6 +1584,7 @@ export declare const icons: {
|
|
|
1583
1584
|
'sim-alert': string;
|
|
1584
1585
|
'sim-off': string;
|
|
1585
1586
|
sitemap: string;
|
|
1587
|
+
'sitemap-outline': string;
|
|
1586
1588
|
'skip-backward': string;
|
|
1587
1589
|
'skip-forward': string;
|
|
1588
1590
|
'skip-next': string;
|
|
@@ -1750,6 +1752,7 @@ export declare const icons: {
|
|
|
1750
1752
|
timetable: string;
|
|
1751
1753
|
'toggle-switch': string;
|
|
1752
1754
|
'toggle-switch-off': string;
|
|
1755
|
+
tools: string;
|
|
1753
1756
|
tooltip: string;
|
|
1754
1757
|
'tooltip-edit': string;
|
|
1755
1758
|
'tooltip-image': string;
|
package/dist/index.js
CHANGED
|
@@ -2632,7 +2632,10 @@ import {
|
|
|
2632
2632
|
mdiYeast,
|
|
2633
2633
|
mdiYinYang,
|
|
2634
2634
|
mdiZipBox,
|
|
2635
|
-
mdiDatabaseExport
|
|
2635
|
+
mdiDatabaseExport,
|
|
2636
|
+
mdiBrain,
|
|
2637
|
+
mdiTools,
|
|
2638
|
+
mdiSitemapOutline
|
|
2636
2639
|
} from "@mdi/js";
|
|
2637
2640
|
var icons = {
|
|
2638
2641
|
"abx-testing": "M 18.00108644,11.0000004 L 18.00108644,8.00000044 L 22.00108644,12.0000004 L 18.00108644,16.0000004 L 18.00108644,13.0000004 L 13.57108644,13.0000004 C 13.1110864,12.2500004 12.5410864,11.5800004 11.8810864,11.0000004 L 18.00108644,11.0000004 Z M 12.0010864,22.0000004 L 16.00108644,18.0000004 L 13.0010864,18.0000004 C 13.1510864,14.3900004 10.4310864,11.3100004 6.8310864,11.0000004 C 6.2810864,9.44000044 4.5610864,8.62000044 3.0010864,9.17000044 C 1.4410864,9.72000044 0.6210864,11.4400004 1.1710864,13.0000004 C 1.7310864,14.5600004 3.4410864,15.3800004 5.0010864,14.8300004 C 5.8610864,14.5300004 6.5310864,13.8500004 6.8310864,13.0000004 C 10.8310864,13.4700004 11.0310864,17.4700004 11.0310864,17.9500004 L 8.0310864,17.9500004 L 12.0010864,22.0000004 Z M 11.4110864,10.6300004 C 12.4310864,9.30000044 13.0010864,7.67000044 13.0010864,6.00000044 L 16.00108644,6.00000044 L 12.0010864,2.00000044 L 8.0010864,6.00000044 L 11.0010864,6.00000044 C 10.9710864,7.34000044 10.5010864,8.63000044 9.6010864,9.64000044 C 10.2410864,9.89000044 10.8510864,10.22000044 11.4110864,10.6300004 Z",
|
|
@@ -2906,6 +2909,7 @@ var icons = {
|
|
|
2906
2909
|
box: "M5,3H19A2,2 0 0,1 21,5V19A2,2 0 0,1 19,21H5A2,2 0 0,1 3,19V5A2,2 0 0,1 5,3M13,13V7H11V13H13M13,17V15H11V17H13Z",
|
|
2907
2910
|
"box-cutter": mdiBoxCutter,
|
|
2908
2911
|
"box-shadow": mdiBoxShadow,
|
|
2912
|
+
brain: mdiBrain,
|
|
2909
2913
|
bridge: mdiBridge,
|
|
2910
2914
|
briefcase: mdiBriefcase,
|
|
2911
2915
|
"briefcase-check": mdiBriefcaseCheck,
|
|
@@ -4254,6 +4258,7 @@ var icons = {
|
|
|
4254
4258
|
"sim-alert": mdiSimAlert,
|
|
4255
4259
|
"sim-off": mdiSimOff,
|
|
4256
4260
|
sitemap: mdiSitemap,
|
|
4261
|
+
"sitemap-outline": mdiSitemapOutline,
|
|
4257
4262
|
"skip-backward": mdiSkipBackward,
|
|
4258
4263
|
"skip-forward": mdiSkipForward,
|
|
4259
4264
|
"skip-next": mdiSkipNext,
|
|
@@ -4421,6 +4426,7 @@ var icons = {
|
|
|
4421
4426
|
timetable: mdiTimetable,
|
|
4422
4427
|
"toggle-switch": mdiToggleSwitch,
|
|
4423
4428
|
"toggle-switch-off": mdiToggleSwitchOff,
|
|
4429
|
+
tools: mdiTools,
|
|
4424
4430
|
tooltip: mdiTooltip,
|
|
4425
4431
|
"tooltip-edit": mdiTooltipEdit,
|
|
4426
4432
|
"tooltip-image": mdiTooltipImage,
|
|
@@ -16001,6 +16007,15 @@ import * as moment from "moment-timezone";
|
|
|
16001
16007
|
import { tz } from "moment-timezone";
|
|
16002
16008
|
function getDateTimeFormatOptions(timeZone, formatString) {
|
|
16003
16009
|
switch (formatString) {
|
|
16010
|
+
case "dateTimeFullMonthFormat":
|
|
16011
|
+
return {
|
|
16012
|
+
year: "numeric",
|
|
16013
|
+
month: "long",
|
|
16014
|
+
day: "numeric",
|
|
16015
|
+
hour: "numeric",
|
|
16016
|
+
minute: "numeric",
|
|
16017
|
+
timeZone
|
|
16018
|
+
};
|
|
16004
16019
|
case "dateTimeVeryLongFormat":
|
|
16005
16020
|
return {
|
|
16006
16021
|
year: "numeric",
|