edvoyui-component-library-test-flight 0.0.72 → 0.0.74

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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "edvoyui-component-library-test-flight",
3
3
  "private": false,
4
- "version": "0.0.72",
4
+ "version": "0.0.74",
5
5
  "type": "module",
6
6
  "files": [
7
7
  "dist/",
@@ -31,7 +31,7 @@
31
31
  "@heroicons/vue": "^2.1.5",
32
32
  "@popperjs/core": "^2.11.8",
33
33
  "@types/node": "^22.5.5",
34
- "@vuepic/vue-datepicker": "^9.0.3",
34
+ "@vuepic/vue-datepicker": "^11.0.0",
35
35
  "@vueuse/core": "^11.1.0",
36
36
  "autoprefixer": "^10.4.20",
37
37
  "fuse.js": "^6.4.3",
@@ -1,9 +1,14 @@
1
1
  <template>
2
- <h1 class="my-10 text-2xl font-bold text-center text-gray-900 underline underline-offset-8 decoration-green-400 decoration-wavy">
2
+ <h1
3
+ class="my-10 text-2xl font-bold text-center text-gray-900 underline underline-offset-8 decoration-green-400 decoration-wavy"
4
+ >
3
5
  Edvoy User Interface
4
6
  </h1>
7
+
5
8
  </template>
6
9
  <script setup lang="ts">
10
+
11
+
7
12
  </script>
8
13
  <style lang="scss"></style>
9
14
 
@@ -67,7 +67,7 @@
67
67
  :multi-calendars="multiCalendars"
68
68
  :min-date="minDate"
69
69
  :max-date="maxDate"
70
- :preview-format="format"
70
+ :format="format"
71
71
  :config="config"
72
72
  />
73
73
  </div>
@@ -91,7 +91,7 @@ const props = defineProps({
91
91
  | ((date: Date) => string)
92
92
  | ((dates: Date[]) => string)
93
93
  >,
94
- default: 'MM/dd/yyyy HH:mm', // Default format
94
+ default: 'dd/MM/yyyy', // Default format dd/MM/yyyy HH:mm
95
95
  },
96
96
  maxDate: {
97
97
  type: Date as any,
@@ -204,6 +204,8 @@ const getIconClass = () => {
204
204
  }
205
205
  };
206
206
 
207
+
208
+
207
209
  const iconshowLeft = computed(() => (props.iconType === 'startIcon' ? "46px" : "16px"));
208
210
  const iconshowRight = computed(() => (props.iconType === 'endIcon' ? "46px" : "16px"));
209
211
  const clearIconRight = computed(() => (props.iconType === 'endIcon' ? '40px' : '0px'));