@bagelink/vue 1.15.29 → 1.15.32
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
|
@@ -116,7 +116,7 @@ function fileName(pathKey: string) {
|
|
|
116
116
|
<Btn v-tooltip="'Delete'" color="gray" thin icon="delete" @click="removeFile(path_key)" />
|
|
117
117
|
<Btn v-tooltip="'Replace'" color="gray" thin icon="autorenew" @click="browse()" />
|
|
118
118
|
<Btn
|
|
119
|
-
icon="download" color="gray" thin :href="pathKeyToURL(path_key)"
|
|
119
|
+
icon="download" color="gray" thin target="_blank" :href="pathKeyToURL(path_key)"
|
|
120
120
|
:download="fileName(path_key)"
|
|
121
121
|
/>
|
|
122
122
|
<div class="flex gap-025 rounded pe-1 ps-05 py-025 -my-1 ">
|
|
@@ -195,7 +195,7 @@ function fileName(pathKey: string) {
|
|
|
195
195
|
/>
|
|
196
196
|
<Btn v-tooltip="'Replace'" color="white" frame thin icon="autorenew" @click="browse()" />
|
|
197
197
|
<Btn
|
|
198
|
-
v-tooltip="'Download'" color="white" frame thin icon="download"
|
|
198
|
+
v-tooltip="'Download'" color="white" frame thin target="_blank" icon="download"
|
|
199
199
|
:href="pathKeyToURL(path_key)" :download="fileName(path_key)"
|
|
200
200
|
/>
|
|
201
201
|
</div>
|
package/src/dialog/Dialog.vue
CHANGED
|
@@ -121,7 +121,7 @@ defineExpose({ close })
|
|
|
121
121
|
>
|
|
122
122
|
<Btn
|
|
123
123
|
v-if="dismissable && closePlacement === 'header-start'" flat icon="close" aria-label="Close"
|
|
124
|
-
class="dialog-close" thin @click="close"
|
|
124
|
+
class="dialog-close relative z-2" thin @click="close"
|
|
125
125
|
/>
|
|
126
126
|
<h3
|
|
127
127
|
v-if="title" class="dialog-title m-0 txt20 semi w-100p"
|
|
@@ -132,7 +132,7 @@ defineExpose({ close })
|
|
|
132
132
|
<div v-if="!title" class="flex-grow-1" />
|
|
133
133
|
<Btn
|
|
134
134
|
v-if="dismissable && closePlacement === 'header-end'" flat icon="close" aria-label="Close"
|
|
135
|
-
class="dialog-close" thin @click="close"
|
|
135
|
+
class="dialog-close relative z-2" thin @click="close"
|
|
136
136
|
/>
|
|
137
137
|
</header>
|
|
138
138
|
<!-- Body -->
|