aloha-vue 1.0.244 → 1.0.246
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/package.json
CHANGED
|
@@ -202,6 +202,12 @@ export default {
|
|
|
202
202
|
disabled: this.isMultipleActionsActive,
|
|
203
203
|
indexFirstDropdownAction: this.tableActionsIndexFirstDropdownAction,
|
|
204
204
|
indexFirstDropdownActionMobile: this.tableActionsIndexFirstDropdownActionMobile,
|
|
205
|
+
minDropdownActions: 0,
|
|
206
|
+
dropdownAttributes: {
|
|
207
|
+
buttonText: "Aktionen",
|
|
208
|
+
buttonClass: "a_btn a_btn_secondary a_table__action",
|
|
209
|
+
placement: "bottom-end",
|
|
210
|
+
},
|
|
205
211
|
}),
|
|
206
212
|
h(AGroupButtonDropdown, {
|
|
207
213
|
actions: this.multipleActionsFiltered,
|
|
@@ -211,6 +217,7 @@ export default {
|
|
|
211
217
|
disabled: this.isMultipleActionsActive,
|
|
212
218
|
indexFirstDropdownAction: 0,
|
|
213
219
|
indexFirstDropdownActionMobile: 0,
|
|
220
|
+
minDropdownActions: 0,
|
|
214
221
|
dropdownAttributes: {
|
|
215
222
|
id: this.buttonMultipleId,
|
|
216
223
|
buttonText: "Mehrfachaktionen",
|
|
@@ -218,40 +225,6 @@ export default {
|
|
|
218
225
|
placement: "bottom-end",
|
|
219
226
|
},
|
|
220
227
|
}),
|
|
221
|
-
|
|
222
|
-
// this.isMultipleActionsFiltered && h(ADropdown, {
|
|
223
|
-
// id: this.buttonMultipleId,
|
|
224
|
-
// buttonClass: "a_btn a_btn_secondary a_table__action",
|
|
225
|
-
// placement: "bottom-end",
|
|
226
|
-
// disabled: this.isMultipleActionsActive,
|
|
227
|
-
// }, {
|
|
228
|
-
// button: () => [
|
|
229
|
-
// h("span", null, "Mehrfachaktionen"),
|
|
230
|
-
// ],
|
|
231
|
-
// dropdown: () => [
|
|
232
|
-
// this.multipleActionsFiltered.map((action, actionIndex) => {
|
|
233
|
-
// return h("li", {
|
|
234
|
-
// class: {
|
|
235
|
-
// a_dropdown__divider: action.isDivider,
|
|
236
|
-
// },
|
|
237
|
-
// }, [
|
|
238
|
-
// !action.isDivider && h("button", {
|
|
239
|
-
// key: actionIndex,
|
|
240
|
-
// class: "a_dropdown__item",
|
|
241
|
-
// type: "button",
|
|
242
|
-
// title: action.title,
|
|
243
|
-
// onClick: () => this.onClickMultipleActions({ action }),
|
|
244
|
-
// }, [
|
|
245
|
-
// action.icon && h(AIcon, {
|
|
246
|
-
// class: "a_mr_2",
|
|
247
|
-
// icon: action.icon,
|
|
248
|
-
// }),
|
|
249
|
-
// action.label,
|
|
250
|
-
// ]),
|
|
251
|
-
// ]);
|
|
252
|
-
// }),
|
|
253
|
-
// ],
|
|
254
|
-
// }),
|
|
255
228
|
this.isQuickSearch && h(AInput, {
|
|
256
229
|
label: "Schnellsuche",
|
|
257
230
|
class: "a_table__top_panel__actions__quick_search",
|