@dcodegroup-au/page-builder 0.0.4 → 0.0.5
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/page-builder.css +1 -1
- package/dist/page-builder.es.js +607 -607
- package/dist/page-builder.umd.js +10 -10
- package/package.json +1 -1
- package/src/components/common/ActionMenu.vue +7 -7
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div class="relative z-50" v-click-outside="click">
|
|
3
3
|
<DotsHorizontal @click="open = !open" class="w-5 cursor-pointer text-gray-600" />
|
|
4
|
-
<div class="absolute -left-60 top-6 w-[240px] rounded-lg border border-gray-200 bg-white" v-if="open">
|
|
5
|
-
<a v-if="enableEdit" class="flex items-center gap-2
|
|
6
|
-
<Pencil class="w-
|
|
7
|
-
Edit
|
|
4
|
+
<div class="absolute -left-60 top-6 w-[240px] rounded-lg border border-gray-200 bg-white text-sm" v-if="open">
|
|
5
|
+
<a v-if="enableEdit" class="flex items-center gap-2 px-2.5 cursor-pointer h-[48px] w-auto hover:bg-gray-100 rounded-lg m-1.5 text-gray-700" @click="edit">
|
|
6
|
+
<Pencil class="w-4 text-gray-500" />
|
|
7
|
+
<span class="font-medium"> Edit </span>
|
|
8
8
|
</a>
|
|
9
|
-
<a class="flex items-center gap-2
|
|
10
|
-
<TrashIcon class="w-
|
|
11
|
-
Delete
|
|
9
|
+
<a class="flex items-center gap-2 px-2.5 cursor-pointer h-[48px] w-auto hover:bg-gray-100 rounded-lg m-1.5 text-gray-700" @click="remove">
|
|
10
|
+
<TrashIcon class="w-4 text-gray-500" />
|
|
11
|
+
<span class="font-medium"> Delete </span>
|
|
12
12
|
</a>
|
|
13
13
|
</div>
|
|
14
14
|
</div>
|