sit-onyx 1.0.0-beta.86 → 1.0.0-beta.87
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/OnyxDataGrid/features/index.d.ts +3 -2
- package/dist/i18n/locales/de-DE.json +3 -1
- package/dist/i18n/locales/en-US.json +3 -1
- package/dist/index.cjs +4 -4
- package/dist/index.js +1440 -1416
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/src/i18n/locales/de-DE.json +3 -1
- package/src/i18n/locales/en-US.json +3 -1
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import { type Component, type WatchSource } from "vue";
|
|
1
|
+
import { type Component, type ComponentInstance, type WatchSource } from "vue";
|
|
2
|
+
import OnyxListItem from "../../OnyxListItem/OnyxListItem.vue";
|
|
2
3
|
import type { DataGridRendererColumn, DataGridRendererRow } from "../OnyxDataGridRenderer/types";
|
|
3
4
|
import type { DataGridEntry, DataGridMetadata } from "../types";
|
|
4
5
|
export type DataGridFeature<TEntry extends DataGridEntry, TFeatureName extends symbol> = {
|
|
@@ -27,7 +28,7 @@ export type DataGridFeature<TEntry extends DataGridEntry, TFeatureName extends s
|
|
|
27
28
|
*/
|
|
28
29
|
actions?: (column: keyof TEntry) => {
|
|
29
30
|
iconComponent: Component;
|
|
30
|
-
|
|
31
|
+
listItems?: ComponentInstance<typeof OnyxListItem>[];
|
|
31
32
|
}[];
|
|
32
33
|
};
|
|
33
34
|
};
|
|
@@ -90,7 +90,9 @@
|
|
|
90
90
|
"userMenuLabel": "Benutzeroptionen",
|
|
91
91
|
"toggleBurgerMenu": "Burger-Menü umschalten",
|
|
92
92
|
"toggleContextMenu": "Kontext-Menü umschalten",
|
|
93
|
-
"navigationHeadline": "Navigation"
|
|
93
|
+
"navigationHeadline": "Navigation",
|
|
94
|
+
"moreActionsFlyout": "Wähle eine Aktion für die Spalte \"{column}\"",
|
|
95
|
+
"moreActionsTrigger": "Spaltenaktionen umschalten"
|
|
94
96
|
},
|
|
95
97
|
"tooltip": {
|
|
96
98
|
"neutral": "Info-Tooltip Sichtbarkeit umschalten",
|
|
@@ -99,7 +99,9 @@
|
|
|
99
99
|
"userMenuLabel": "User options",
|
|
100
100
|
"toggleBurgerMenu": "Toggle burger menu",
|
|
101
101
|
"toggleContextMenu": "Toggle context menu",
|
|
102
|
-
"navigationHeadline": "Navigation"
|
|
102
|
+
"navigationHeadline": "Navigation",
|
|
103
|
+
"moreActionsFlyout": "Choose an action for the column \"{column}\"",
|
|
104
|
+
"moreActionsTrigger": "Toggle column actions"
|
|
103
105
|
},
|
|
104
106
|
"tooltip": {
|
|
105
107
|
"neutral": "Toggle info tooltip",
|