@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 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
@@ -183,6 +183,7 @@ export declare const en: {
183
183
  START_HOUR: string;
184
184
  };
185
185
  PAGE_SELECTOR: {
186
+ LAST_PAGE_REACHED: string;
186
187
  SHOWING_ITEMS: string;
187
188
  };
188
189
  SELECT_POPOVER: {
package/dist/i18n/es.d.ts CHANGED
@@ -183,6 +183,7 @@ export declare const es: {
183
183
  START_HOUR: string;
184
184
  };
185
185
  PAGE_SELECTOR: {
186
+ LAST_PAGE_REACHED: string;
186
187
  SHOWING_ITEMS: string;
187
188
  };
188
189
  SELECT_POPOVER: {
package/dist/i18n/fr.d.ts CHANGED
@@ -183,6 +183,7 @@ export declare const fr: {
183
183
  START_HOUR: string;
184
184
  };
185
185
  PAGE_SELECTOR: {
186
+ LAST_PAGE_REACHED: string;
186
187
  SHOWING_ITEMS: string;
187
188
  };
188
189
  SELECT_POPOVER: {
package/dist/i18n/it.d.ts CHANGED
@@ -183,6 +183,7 @@ export declare const it: {
183
183
  START_HOUR: string;
184
184
  };
185
185
  PAGE_SELECTOR: {
186
+ LAST_PAGE_REACHED: string;
186
187
  SHOWING_ITEMS: string;
187
188
  };
188
189
  SELECT_POPOVER: {
package/dist/i18n/pt.d.ts CHANGED
@@ -183,6 +183,7 @@ export declare const pt: {
183
183
  START_HOUR: string;
184
184
  };
185
185
  PAGE_SELECTOR: {
186
+ LAST_PAGE_REACHED: string;
186
187
  SHOWING_ITEMS: string;
187
188
  };
188
189
  SELECT_POPOVER: {