impact-nova 1.7.13 → 1.7.15

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.
@@ -46,8 +46,8 @@ export interface DataTableSavedViewsProps {
46
46
  defaultMenuOpen?: boolean;
47
47
  onMenuOpenChange?: (open: boolean) => void;
48
48
  /**
49
- * Optional server-side search: receives debounced query; parent updates `views`.
50
- * When provided, local client-side filtering by search text is skipped (see FilterSummary pattern).
49
+ * Optional hook when the debounced search text changes (e.g. refetch). The list is still
50
+ * filtered by view name in the component for reliable UX.
51
51
  */
52
52
  onSearch?: (query: string) => void;
53
53
  isLoadingViews?: boolean;
@@ -122,6 +122,8 @@ export interface DataTableMessages {
122
122
  savedViewsTitle: string;
123
123
  savedViewsDefault: string;
124
124
  savedViewsAll: string;
125
+ /** Section heading above the full list of views */
126
+ savedViewsAllSavedViews: string;
125
127
  savedViewsSearchPlaceholder: string;
126
128
  savedViewsEmptyList: string;
127
129
  savedViewsCancel: string;
@@ -105,6 +105,7 @@ const e = {
105
105
  savedViewsTitle: "Saved views",
106
106
  savedViewsDefault: "Default",
107
107
  savedViewsAll: "All",
108
+ savedViewsAllSavedViews: "All saved views",
108
109
  savedViewsSearchPlaceholder: "Search here...",
109
110
  savedViewsEmptyList: "No saved views match your filters.",
110
111
  savedViewsCancel: "Cancel",
@@ -111,6 +111,7 @@ const e = {
111
111
  savedViewsTitle: "Gespeicherte Ansichten",
112
112
  savedViewsDefault: "Standard",
113
113
  savedViewsAll: "Alle",
114
+ savedViewsAllSavedViews: "Alle gespeicherten Ansichten",
114
115
  savedViewsSearchPlaceholder: "Suchen…",
115
116
  savedViewsEmptyList: "Keine gespeicherten Ansichten entsprechen den Filtern.",
116
117
  savedViewsCancel: "Abbrechen",
@@ -111,6 +111,7 @@ const e = {
111
111
  savedViewsTitle: "Vistas guardadas",
112
112
  savedViewsDefault: "Predeterminado",
113
113
  savedViewsAll: "Todos",
114
+ savedViewsAllSavedViews: "Todas las vistas guardadas",
114
115
  savedViewsSearchPlaceholder: "Buscar aquí...",
115
116
  savedViewsEmptyList: "Ninguna vista guardada coincide con los filtros.",
116
117
  savedViewsCancel: "Cancelar",
@@ -111,6 +111,7 @@ const e = {
111
111
  savedViewsTitle: "सहेजे गए व्यू",
112
112
  savedViewsDefault: "डिफ़ॉल्ट",
113
113
  savedViewsAll: "सभी",
114
+ savedViewsAllSavedViews: "सभी सहेजे गए व्यू",
114
115
  savedViewsSearchPlaceholder: "यहाँ खोजें...",
115
116
  savedViewsEmptyList: "कोई सहेजा व्यू फ़िल्टर से मेल नहीं खाता।",
116
117
  savedViewsCancel: "रद्द करें",
@@ -111,6 +111,7 @@ const e = {
111
111
  savedViewsTitle: "ಉಳಿಸಿದ ವೀಕ್ಷಣೆಗಳು",
112
112
  savedViewsDefault: "ಡೀಫಾಲ್ಟ್",
113
113
  savedViewsAll: "ಎಲ್ಲಾ",
114
+ savedViewsAllSavedViews: "ಎಲ್ಲಾ ಉಳಿಸಿದ ವೀಕ್ಷಣೆಗಳು",
114
115
  savedViewsSearchPlaceholder: "ಇಲ್ಲಿ ಹುಡುಕಿ...",
115
116
  savedViewsEmptyList: "ಯಾವುದೇ ಉಳಿಸಿದ ವೀಕ್ಷಣೆಗಳು ಫಿಲ್ಟರ್‌ಗಳಿಗೆ ಹೊಂದುವುದಿಲ್ಲ.",
116
117
  savedViewsCancel: "ರದ್ದುಮಾಡಿ",
@@ -1,5 +1,5 @@
1
1
  import * as e from "react";
2
- const o = (t) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", fill: "currentColor", stroke: "none", ...t }, /* @__PURE__ */ e.createElement("path", { d: "M19 21l-7-5-7 5V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2z" }));
2
+ const r = (t) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", fill: "currentColor", stroke: "currentColor", strokeWidth: 2, ...t }, /* @__PURE__ */ e.createElement("path", { d: "M19 21l-7-5-7 5V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2z" }));
3
3
  export {
4
- o as default
4
+ r as default
5
5
  };
@@ -0,0 +1,5 @@
1
+ import * as e from "react";
2
+ const r = (t) => /* @__PURE__ */ e.createElement("svg", { width: 30, height: 30, viewBox: "0 0 30 30", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...t }, /* @__PURE__ */ e.createElement("rect", { x: 0.5, y: 0.5, width: 29, height: 29, rx: 14.5, fill: "currentColor", fillOpacity: 0.1, stroke: "currentColor" }), /* @__PURE__ */ e.createElement("path", { d: "M16.0168 10.228V20H14.0568V10.228H16.0168Z", fill: "currentColor" }));
3
+ export {
4
+ r as default
5
+ };
@@ -53,6 +53,7 @@ export declare const Download: IconComponent;
53
53
  export declare const CircleTick: IconComponent;
54
54
  export declare const CircleCross: IconComponent;
55
55
  export declare const Info: IconComponent;
56
+ export declare const InfoCircleFilled: IconComponent;
56
57
  export declare const PriorityAlert: IconComponent;
57
58
  export declare const InfoBadge: IconComponent;
58
59
  export declare const Blocks: IconComponent;