quasar-ui-danx 0.4.46 → 0.4.47
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/danx.es.js +6 -6
- package/dist/danx.es.js.map +1 -1
- package/dist/danx.umd.js +3 -3
- package/dist/danx.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/components/ActionTable/Form/Fields/SelectionMenuField.vue +41 -42
- package/src/components/Utility/Buttons/ShowHideButton.vue +0 -2
- package/src/components/Utility/Widgets/LabelPillWidget.vue +1 -0
package/package.json
CHANGED
@@ -15,50 +15,49 @@
|
|
15
15
|
:show-icon="selectIcon || DefaultSelectIcon"
|
16
16
|
class="mr-2"
|
17
17
|
>
|
18
|
-
<
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
>
|
24
|
-
<div
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
>
|
33
|
-
|
34
|
-
{{ option.name }}
|
35
|
-
</div>
|
36
|
-
<ActionButton
|
37
|
-
v-if="deletable"
|
38
|
-
type="trash"
|
39
|
-
class="ml-4 mr-2"
|
40
|
-
@click.stop.prevent="$emit('delete', option)"
|
41
|
-
/>
|
18
|
+
<QMenu
|
19
|
+
:model-value="isSelecting"
|
20
|
+
@before-hide="isSelecting = false"
|
21
|
+
@hide="isSelecting = false"
|
22
|
+
>
|
23
|
+
<div>
|
24
|
+
<div
|
25
|
+
v-for="option in options"
|
26
|
+
:key="option.id"
|
27
|
+
v-ripple
|
28
|
+
class="cursor-pointer flex items-center relative"
|
29
|
+
:class="{'bg-sky-900 hover:bg-sky-800': selected?.id === option.id, 'hover:bg-slate-600': selected?.id !== option.id}"
|
30
|
+
@click="selected = option"
|
31
|
+
>
|
32
|
+
<div class="flex-grow px-4 py-2">
|
33
|
+
{{ option.name }}
|
42
34
|
</div>
|
43
|
-
<
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
>
|
51
|
-
<CreateIcon
|
52
|
-
class="w-3"
|
53
|
-
:class="createText ? 'mr-2' : ''"
|
54
|
-
/>
|
55
|
-
{{ createText }}
|
56
|
-
</QBtn>
|
57
|
-
</div>
|
58
|
-
</template>
|
35
|
+
<ActionButton
|
36
|
+
v-if="deletable"
|
37
|
+
type="trash"
|
38
|
+
class="ml-4 mr-2"
|
39
|
+
size="sm"
|
40
|
+
@click.stop.prevent="$emit('delete', option)"
|
41
|
+
/>
|
59
42
|
</div>
|
60
|
-
|
61
|
-
|
43
|
+
<template v-if="creatable">
|
44
|
+
<QSeparator class="bg-slate-400 my-2" />
|
45
|
+
<div class="px-4 mb-2">
|
46
|
+
<QBtn
|
47
|
+
:class="createClass"
|
48
|
+
:loading="loading"
|
49
|
+
@click="$emit('create')"
|
50
|
+
>
|
51
|
+
<CreateIcon
|
52
|
+
class="w-3"
|
53
|
+
:class="createText ? 'mr-2' : ''"
|
54
|
+
/>
|
55
|
+
{{ createText }}
|
56
|
+
</QBtn>
|
57
|
+
</div>
|
58
|
+
</template>
|
59
|
+
</div>
|
60
|
+
</QMenu>
|
62
61
|
</ShowHideButton>
|
63
62
|
|
64
63
|
<div :class="labelClass">
|
@@ -39,14 +39,12 @@ const props = withDefaults(defineProps<Props>(), {
|
|
39
39
|
label: ""
|
40
40
|
});
|
41
41
|
|
42
|
-
console.log("isShowing", isShowing.value);
|
43
42
|
const SETTINGS_KEY = "show-hide-button";
|
44
43
|
const settings = getItem(SETTINGS_KEY, {});
|
45
44
|
|
46
45
|
if (props.name) {
|
47
46
|
if (settings[props.name] !== undefined) {
|
48
47
|
isShowing.value = settings[props.name];
|
49
|
-
console.log("setting is sowing to", isShowing.value);
|
50
48
|
}
|
51
49
|
}
|
52
50
|
|