edvoyui-component-library-test-flight 0.0.159 → 0.0.160
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/library-vue-ts.cjs.js +3 -3
- package/dist/library-vue-ts.css +1 -1
- package/dist/library-vue-ts.es.js +11 -11
- package/dist/library-vue-ts.umd.js +4 -4
- package/dist/table/EUIDashboardTable.vue.d.ts +1 -1
- package/package.json +1 -1
- package/src/components/alerts/EUIAlerts.vue +3 -3
- package/src/components/button/EUIButton.vue +1 -1
- package/src/components/table/EUIDashboardTable.vue +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export * from "/Volumes/work/repos/edvoy-ui-v2/src/components/table/EUIDashboardTable.vue?vue&type=script&setup=true&lang.ts";
|
|
2
|
-
import "/Volumes/work/repos/edvoy-ui-v2/src/components/table/EUIDashboardTable.vue?vue&type=style&index=0&scoped=
|
|
2
|
+
import "/Volumes/work/repos/edvoy-ui-v2/src/components/table/EUIDashboardTable.vue?vue&type=style&index=0&scoped=eae073aa&lang.scss";
|
|
3
3
|
declare const _default: any;
|
|
4
4
|
export default _default;
|
|
5
5
|
//# sourceMappingURL=EUIDashboardTable.vue.d.ts.map
|
package/package.json
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
>
|
|
10
10
|
<div v-if="showAlert" :class="['p-4 rounded-md', alertsClass.bgColor]">
|
|
11
11
|
<div
|
|
12
|
-
:class="[closeIcon && !textMessage ? 'items-center pr-2 flex' : 'flex']"
|
|
12
|
+
:class="[closeIcon && !textMessage ? 'items-center pr-2 flex' : 'flex items-start']"
|
|
13
13
|
>
|
|
14
14
|
<div class="shrink-0">
|
|
15
15
|
<slot name="icon">
|
|
@@ -58,9 +58,9 @@
|
|
|
58
58
|
</div>
|
|
59
59
|
</slot>
|
|
60
60
|
</div>
|
|
61
|
-
<div class="
|
|
61
|
+
<div v-if="closeIcon" class="ms-auto ps-3">
|
|
62
62
|
<slot name="xclose">
|
|
63
|
-
<div
|
|
63
|
+
<div class="-mx-1.5 -my-1.5 pt-1">
|
|
64
64
|
<button
|
|
65
65
|
type="button"
|
|
66
66
|
:class="[
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
:color="color"
|
|
6
6
|
:iconType="iconType"
|
|
7
7
|
v-bind="$attrs"
|
|
8
|
-
:class="['capitalize box-border border-none inline-flex flex-row gap-x-2 items-center active:scale-[.97] active:shadow-md transition-all duration-200 ease-in-out active:translate-y-0.5', rounded ?'rounded-full':'rounded-lg', btnClass]"
|
|
8
|
+
:class="['capitalize box-border border-none inline-flex flex-row gap-x-2 items-center active:scale-[.97] active:shadow-md transition-all duration-200 ease-in-out active:translate-y-0.5 focus-within:outline-purple-500', rounded ?'rounded-full':'rounded-lg', btnClass]"
|
|
9
9
|
:disabled="disabled"
|
|
10
10
|
:loading="loading"
|
|
11
11
|
:icon="icon"
|
|
@@ -141,7 +141,7 @@
|
|
|
141
141
|
<slot name="tableCount">
|
|
142
142
|
<div class="inline-flex items-center gap-x-10">
|
|
143
143
|
<div class="text-sm font-normal text-gray-900">
|
|
144
|
-
|
|
144
|
+
{{ newCurrentPage }} - {{ limit }} of {{ total }}
|
|
145
145
|
</div>
|
|
146
146
|
<div class="inline-flex items-center gap-2">
|
|
147
147
|
<span class="text-sm font-normal text-gray-900"
|