impact-nova 1.7.25 → 1.7.26
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/dist/components/ui/ag-grid-react/cell-renderers/editors/input-cell-editor.js +45 -36
- package/dist/components/ui/ag-grid-react/cell-renderers/editors/split-cell-editor.d.ts +0 -1
- package/dist/components/ui/ag-grid-react/cell-renderers/editors/split-cell-editor.js +92 -75
- package/dist/components/ui/ag-grid-react/cell-renderers/split-cell-renderer.js +52 -41
- package/dist/components/ui/ag-grid-react/hooks/useStopEditingOnClickOutside.d.ts +5 -0
- package/dist/components/ui/alert.d.ts +1 -1
- package/dist/components/ui/calendar.js +3 -2
- package/dist/components/ui/data-table/data-table-column-list.js +119 -108
- package/dist/components/ui/nested-list/components/NestedListContent.d.ts +1 -0
- package/dist/components/ui/nested-list/components/NestedListContent.js +134 -63
- package/dist/components/ui/nested-list/components/SortableItem.js +65 -82
- package/dist/components/ui/nested-list/hooks/useNestedListDragDrop.js +176 -153
- package/dist/components/ui/nested-list/nested-list.js +190 -203
- package/dist/components/ui/select/components/Submenu.js +7 -5
- package/dist/components/ui/select/select.js +390 -369
- package/dist/i18n/defaultMessages.d.ts +3 -0
- package/dist/i18n/defaultMessages.js +14 -11
- package/dist/i18n/locales/de.js +4 -1
- package/dist/i18n/locales/es.js +4 -1
- package/dist/i18n/locales/hi.js +4 -1
- package/dist/i18n/locales/kn.js +4 -1
- package/dist/impact-nova.css +1 -1
- package/package.json +1 -1
|
@@ -76,8 +76,11 @@ const e = {
|
|
|
76
76
|
expandAll: "Expand All",
|
|
77
77
|
collapseAll: "Collapse All",
|
|
78
78
|
expand: "Expand",
|
|
79
|
-
collapse: "Collapse"
|
|
80
|
-
|
|
79
|
+
collapse: "Collapse",
|
|
80
|
+
dropHere: "Drop here",
|
|
81
|
+
releaseToDrop: "Release to drop",
|
|
82
|
+
dragHere: "Drag here"
|
|
83
|
+
}, r = {
|
|
81
84
|
frozenColumns: "Frozen Columns",
|
|
82
85
|
scrollableColumns: "Scrollable Columns",
|
|
83
86
|
searchColumnsPlaceholder: "Search columns...",
|
|
@@ -120,7 +123,7 @@ const e = {
|
|
|
120
123
|
savedViewsDeleteConfirmTitle: "Delete saved view?",
|
|
121
124
|
savedViewsDeleteConfirmDescription: 'This will permanently delete "{{viewName}}". You cannot undo this action.',
|
|
122
125
|
savedViewsDeleteConfirmButton: "Delete"
|
|
123
|
-
},
|
|
126
|
+
}, i = {
|
|
124
127
|
close: "Close",
|
|
125
128
|
breadcrumb: "breadcrumb",
|
|
126
129
|
remove: "Remove",
|
|
@@ -132,7 +135,7 @@ const e = {
|
|
|
132
135
|
toggle: "Toggle",
|
|
133
136
|
more: "More",
|
|
134
137
|
loading: "Loading"
|
|
135
|
-
},
|
|
138
|
+
}, n = {
|
|
136
139
|
cancel: "Cancel",
|
|
137
140
|
confirm: "Confirm"
|
|
138
141
|
}, c = {
|
|
@@ -161,13 +164,13 @@ const e = {
|
|
|
161
164
|
}, m = {
|
|
162
165
|
scrollLeft: "Scroll left",
|
|
163
166
|
scrollRight: "Scroll right"
|
|
164
|
-
},
|
|
167
|
+
}, p = {
|
|
165
168
|
viewMore: "View More",
|
|
166
169
|
viewLess: "View Less",
|
|
167
170
|
logout: "Logout"
|
|
168
171
|
}, h = {
|
|
169
172
|
stepOfTotal: "Step {{current}} of {{total}}"
|
|
170
|
-
},
|
|
173
|
+
}, f = {
|
|
171
174
|
title: "Advanced Filter",
|
|
172
175
|
currentColumn: "Current Column",
|
|
173
176
|
allFilters: "Active Filters",
|
|
@@ -218,16 +221,16 @@ const e = {
|
|
|
218
221
|
filter: a,
|
|
219
222
|
select: o,
|
|
220
223
|
nestedList: s,
|
|
221
|
-
dataTable:
|
|
222
|
-
aria:
|
|
223
|
-
prompt:
|
|
224
|
+
dataTable: r,
|
|
225
|
+
aria: i,
|
|
226
|
+
prompt: n,
|
|
224
227
|
filterStrip: c,
|
|
225
228
|
filterPanel: d,
|
|
226
|
-
advancedFilter:
|
|
229
|
+
advancedFilter: f,
|
|
227
230
|
gridHeader: S,
|
|
228
231
|
notificationPanel: u,
|
|
229
232
|
horizontalScroller: m,
|
|
230
|
-
sidebar:
|
|
233
|
+
sidebar: p,
|
|
231
234
|
stepper: h
|
|
232
235
|
};
|
|
233
236
|
export {
|
package/dist/i18n/locales/de.js
CHANGED
|
@@ -81,7 +81,10 @@ const e = {
|
|
|
81
81
|
expandAll: "Alle aufklappen",
|
|
82
82
|
collapseAll: "Alle zuklappen",
|
|
83
83
|
expand: "Aufklappen",
|
|
84
|
-
collapse: "Zuklappen"
|
|
84
|
+
collapse: "Zuklappen",
|
|
85
|
+
dropHere: "Hier ablegen",
|
|
86
|
+
releaseToDrop: "Loslassen zum Ablegen",
|
|
87
|
+
dragHere: "Hierher ziehen"
|
|
85
88
|
},
|
|
86
89
|
dataTable: {
|
|
87
90
|
frozenColumns: "Fixe Spalten",
|
package/dist/i18n/locales/es.js
CHANGED
|
@@ -81,7 +81,10 @@ const e = {
|
|
|
81
81
|
expandAll: "Expandir todo",
|
|
82
82
|
collapseAll: "Contraer todo",
|
|
83
83
|
expand: "Expandir",
|
|
84
|
-
collapse: "Contraer"
|
|
84
|
+
collapse: "Contraer",
|
|
85
|
+
dropHere: "Soltar aquí",
|
|
86
|
+
releaseToDrop: "Soltar para colocar",
|
|
87
|
+
dragHere: "Arrastrar aquí"
|
|
85
88
|
},
|
|
86
89
|
dataTable: {
|
|
87
90
|
frozenColumns: "Columnas fijas",
|
package/dist/i18n/locales/hi.js
CHANGED
|
@@ -81,7 +81,10 @@ const e = {
|
|
|
81
81
|
expandAll: "सभी विस्तार करें",
|
|
82
82
|
collapseAll: "सभी संक्षिप्त करें",
|
|
83
83
|
expand: "विस्तार करें",
|
|
84
|
-
collapse: "संक्षिप्त करें"
|
|
84
|
+
collapse: "संक्षिप्त करें",
|
|
85
|
+
dropHere: "यहाँ छोड़ें",
|
|
86
|
+
releaseToDrop: "छोड़ने के लिए रिलीज़ करें",
|
|
87
|
+
dragHere: "यहाँ खींचें"
|
|
85
88
|
},
|
|
86
89
|
dataTable: {
|
|
87
90
|
frozenColumns: "फ़्रीज़ किए गए कॉलम",
|
package/dist/i18n/locales/kn.js
CHANGED
|
@@ -81,7 +81,10 @@ const e = {
|
|
|
81
81
|
expandAll: "ಎಲ್ಲಾ ವಿಸ್ತರಿಸಿ",
|
|
82
82
|
collapseAll: "ಎಲ್ಲಾ ಕುಗ್ಗಿಸಿ",
|
|
83
83
|
expand: "ವಿಸ್ತರಿಸಿ",
|
|
84
|
-
collapse: "ಕುಗ್ಗಿಸಿ"
|
|
84
|
+
collapse: "ಕುಗ್ಗಿಸಿ",
|
|
85
|
+
dropHere: "ಇಲ್ಲಿ ಬಿಡಿ",
|
|
86
|
+
releaseToDrop: "ಬಿಡಲು ಬಿಡುಗಡೆ ಮಾಡಿ",
|
|
87
|
+
dragHere: "ಇಲ್ಲಿ ಎಳೆಯಿರಿ"
|
|
85
88
|
},
|
|
86
89
|
dataTable: {
|
|
87
90
|
frozenColumns: "ಫ್ರೀಜ್ ಮಾಡಿದ ಕಾಲಮ್ಗಳು",
|