edvoyui-component-library-test-flight 0.0.41 → 0.0.43
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 +10 -10
- package/dist/library-vue-ts.es.js +19 -9
- package/dist/library-vue-ts.umd.js +11 -11
- package/dist/table/EUITable.vue.d.ts +1 -1
- package/package.json +1 -1
- package/src/components/HelloWorld.vue +2 -2
- package/src/components/datepicker/EUIDatepicker.vue +11 -1
- package/src/components/table/EUITable.vue +3 -2
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export * from "/Volumes/work/repos/edvoy-ui-v2/src/components/table/EUITable.vue?vue&type=script&setup=true&lang.ts";
|
|
2
|
-
import "/Volumes/work/repos/edvoy-ui-v2/src/components/table/EUITable.vue?vue&type=style&index=0&scoped=
|
|
2
|
+
import "/Volumes/work/repos/edvoy-ui-v2/src/components/table/EUITable.vue?vue&type=style&index=0&scoped=0d422110&lang.scss";
|
|
3
3
|
declare const _default: any;
|
|
4
4
|
export default _default;
|
|
5
5
|
//# sourceMappingURL=EUITable.vue.d.ts.map
|
package/package.json
CHANGED
|
@@ -16,8 +16,8 @@ import UTableview from './table/UTableview.vue';
|
|
|
16
16
|
<!-- <template>
|
|
17
17
|
<div class="h-[clac(100svh-64px)] w-full px-10 py-8 max-w-screen-xl mx-auto">
|
|
18
18
|
<h1 class="mb-2 font-semibold text-gray-900 tetx-lg">Edvoy UI Componnet</h1>
|
|
19
|
-
<div class="
|
|
20
|
-
<pre class="text-[0.5rem] p-2
|
|
19
|
+
<div class="">
|
|
20
|
+
<pre class="text-[0.5rem] p-2 rounded-lg max-h-72 overflow-y-auto text-red-600 border border-gray-100">
|
|
21
21
|
{{ `Total Row:${selectedRows.length}` }}
|
|
22
22
|
{{ selectedRows.map(x => x?._id)}}
|
|
23
23
|
</pre>
|
|
@@ -65,6 +65,8 @@
|
|
|
65
65
|
:hide-input-icon="true"
|
|
66
66
|
position="left"
|
|
67
67
|
:multi-calendars="multiCalendars"
|
|
68
|
+
:min-date="minDate"
|
|
69
|
+
:max-date="maxDate"
|
|
68
70
|
/>
|
|
69
71
|
</div>
|
|
70
72
|
<EUIErrorMessage :errors="errors" :name="name" />
|
|
@@ -81,7 +83,15 @@ const props = defineProps({
|
|
|
81
83
|
type: Date as any,
|
|
82
84
|
default: "",
|
|
83
85
|
},
|
|
84
|
-
|
|
86
|
+
maxDate: {
|
|
87
|
+
type: Date as any,
|
|
88
|
+
default: "",
|
|
89
|
+
},
|
|
90
|
+
minDate: {
|
|
91
|
+
type: Date as any,
|
|
92
|
+
default: "",
|
|
93
|
+
},
|
|
94
|
+
name: {
|
|
85
95
|
type: String,
|
|
86
96
|
required: false,
|
|
87
97
|
default: "date-picker",
|
|
@@ -407,16 +407,17 @@ watch(
|
|
|
407
407
|
{ immediate: true }
|
|
408
408
|
);
|
|
409
409
|
|
|
410
|
+
//shadow-[4px_0px_8px_0px_#e5e6e8]
|
|
410
411
|
// table scroll to add class
|
|
411
412
|
const stickyClass = computed(() => {
|
|
412
413
|
return props.checkable && props.stickyColumn
|
|
413
414
|
? {
|
|
414
415
|
head: "bg-gray-100 sticky left-16 top-0 z-20 shadow-[10px_0px_16px_-5px_#e5e6e8]",
|
|
415
|
-
body: "bg-white sticky left-16 top-0 z-10
|
|
416
|
+
body: "bg-white sticky left-16 top-0 z-10 after:absolute after:content-[''] after:bg-inherit after:w-2 after:h-[103%] after:inset-y-0 after:-right-2 after:bg-gradient-to-r after:from-gray-200 after:from-0% after:via-gray-50 after:via-60% after:z-0 after:bg-white/10",
|
|
416
417
|
}
|
|
417
418
|
: {
|
|
418
419
|
head: "bg-gray-100 sticky left-0 top-0 z-20 shadow-[10px_0px_16px_-5px_#e5e6e8]",
|
|
419
|
-
body: "bg-white sticky left-0 top-0 z-10
|
|
420
|
+
body: "bg-white sticky left-0 top-0 z-10 after:absolute after:content-[''] after:bg-inherit after:w-2 after:h-[103%] after:inset-y-0 after:-right-2 after:bg-gradient-to-r after:from-gray-200 after:from-0% after:via-gray-50 after:via-60% after:z-0 after:bg-white/10",
|
|
420
421
|
};
|
|
421
422
|
});
|
|
422
423
|
|