@connectif/ui-components 9.0.2 → 9.0.4
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 +17 -0
- package/dist/components/input/PageSelector.d.ts +6 -0
- package/dist/i18n/en.d.ts +1 -0
- package/dist/i18n/es.d.ts +1 -0
- package/dist/i18n/fr.d.ts +1 -0
- package/dist/i18n/it.d.ts +1 -0
- package/dist/i18n/pt.d.ts +1 -0
- package/dist/index.js +109 -91
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [9.0.4] - 2026-06-08
|
|
4
|
+
|
|
5
|
+
### Changed
|
|
6
|
+
|
|
7
|
+
- `LineChart`: now the secondary metric is positioned in left side of the chart.
|
|
8
|
+
|
|
9
|
+
## [9.0.3] - 2026-06-02
|
|
10
|
+
|
|
11
|
+
### Added
|
|
12
|
+
|
|
13
|
+
- Added `maxNavigablePage` prop to `PageSelector` to cap the navigable page range for both buttons and text input.
|
|
14
|
+
- Added a tooltip on the `PageSelector` next button when it is disabled because the user has reached the last navigable page.
|
|
15
|
+
|
|
16
|
+
### Changed
|
|
17
|
+
|
|
18
|
+
- Changes the default icon for `success` and `warning` severities of the `Alert` component for the "outlined" versions.
|
|
19
|
+
|
|
3
20
|
## [9.0.2] - 2026-05-29
|
|
4
21
|
|
|
5
22
|
### Added
|
|
@@ -24,6 +24,12 @@ export type PageSelectorProps = {
|
|
|
24
24
|
* @default false
|
|
25
25
|
*/
|
|
26
26
|
hideText?: boolean;
|
|
27
|
+
/**
|
|
28
|
+
* Optional maximum navigable page. When provided, navigation (buttons and input)
|
|
29
|
+
* is capped to this value or the last page derived from totalItems/pageSize,
|
|
30
|
+
* whichever is lower.
|
|
31
|
+
*/
|
|
32
|
+
maxNavigablePage?: number;
|
|
27
33
|
/**
|
|
28
34
|
* The function to call when the page is changed by the user.
|
|
29
35
|
*/
|
package/dist/i18n/en.d.ts
CHANGED
package/dist/i18n/es.d.ts
CHANGED
package/dist/i18n/fr.d.ts
CHANGED
package/dist/i18n/it.d.ts
CHANGED