impact-nova 1.7.24 → 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.
Files changed (25) hide show
  1. package/dist/components/ui/ag-grid-react/cell-renderers/editors/input-cell-editor.js +45 -36
  2. package/dist/components/ui/ag-grid-react/cell-renderers/editors/split-cell-editor.d.ts +0 -1
  3. package/dist/components/ui/ag-grid-react/cell-renderers/editors/split-cell-editor.js +92 -75
  4. package/dist/components/ui/ag-grid-react/cell-renderers/split-cell-renderer.js +52 -41
  5. package/dist/components/ui/ag-grid-react/hooks/useStopEditingOnClickOutside.d.ts +5 -0
  6. package/dist/components/ui/alert.d.ts +1 -1
  7. package/dist/components/ui/data-table/data-table-column-list.js +119 -108
  8. package/dist/components/ui/nested-list/components/NestedListContent.d.ts +1 -0
  9. package/dist/components/ui/nested-list/components/NestedListContent.js +134 -63
  10. package/dist/components/ui/nested-list/components/SortableItem.js +65 -82
  11. package/dist/components/ui/nested-list/hooks/useNestedListDragDrop.js +176 -153
  12. package/dist/components/ui/nested-list/nested-list.js +190 -203
  13. package/dist/components/ui/select/components/Submenu.js +7 -5
  14. package/dist/components/ui/select/select.js +390 -369
  15. package/dist/i18n/defaultMessages.d.ts +3 -0
  16. package/dist/i18n/defaultMessages.js +14 -11
  17. package/dist/i18n/locales/de.js +4 -1
  18. package/dist/i18n/locales/es.js +4 -1
  19. package/dist/i18n/locales/hi.js +4 -1
  20. package/dist/i18n/locales/kn.js +4 -1
  21. package/dist/icons/assets/DraftNote.svg.js +5 -0
  22. package/dist/icons/index.d.ts +1 -0
  23. package/dist/icons/index.js +253 -251
  24. package/dist/impact-nova.css +1 -1
  25. package/package.json +1 -1
@@ -92,6 +92,9 @@ export interface NestedListMessages {
92
92
  collapseAll: string;
93
93
  expand: string;
94
94
  collapse: string;
95
+ dropHere: string;
96
+ releaseToDrop: string;
97
+ dragHere: string;
95
98
  }
96
99
  export interface DataTableMessages {
97
100
  frozenColumns: string;
@@ -76,8 +76,11 @@ const e = {
76
76
  expandAll: "Expand All",
77
77
  collapseAll: "Collapse All",
78
78
  expand: "Expand",
79
- collapse: "Collapse"
80
- }, i = {
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
- }, n = {
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
- }, r = {
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
- }, f = {
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
- }, p = {
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: i,
222
- aria: n,
223
- prompt: r,
224
+ dataTable: r,
225
+ aria: i,
226
+ prompt: n,
224
227
  filterStrip: c,
225
228
  filterPanel: d,
226
- advancedFilter: p,
229
+ advancedFilter: f,
227
230
  gridHeader: S,
228
231
  notificationPanel: u,
229
232
  horizontalScroller: m,
230
- sidebar: f,
233
+ sidebar: p,
231
234
  stepper: h
232
235
  };
233
236
  export {
@@ -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",
@@ -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",
@@ -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: "फ़्रीज़ किए गए कॉलम",
@@ -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: "ಫ್ರೀಜ್ ಮಾಡಿದ ಕಾಲಮ್‌ಗಳು",