@finema/core 1.4.65 → 1.4.66

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/module.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@finema/core",
3
- "version": "1.4.65",
3
+ "version": "1.4.66",
4
4
  "configKey": "core",
5
5
  "compatibility": {
6
6
  "nuxt": "^3.7.4"
package/dist/module.mjs CHANGED
@@ -1,7 +1,7 @@
1
1
  import { defineNuxtModule, createResolver, installModule, addPlugin, addComponentsDir, addImportsDir } from '@nuxt/kit';
2
2
 
3
3
  const name = "@finema/core";
4
- const version = "1.4.65";
4
+ const version = "1.4.66";
5
5
 
6
6
  const colors = {
7
7
  black: "#20243E",
@@ -386,7 +386,7 @@ const module = defineNuxtModule({
386
386
  );
387
387
  nuxt.options.build = {
388
388
  ...nuxt.options.build || {},
389
- transpile: [...nuxt.options.build?.transpile || [], "date-fns"]
389
+ transpile: [...nuxt.options.build?.transpile || [], "date-fns", "@vuepic/vue-datepicker"]
390
390
  };
391
391
  await installModule("@pinia/nuxt");
392
392
  await installModule("@vee-validate/nuxt", veeValidateNuxtOptions);
@@ -42,10 +42,6 @@ const props = withDefaults(defineProps<IDateTimeFieldProps>(), {})
42
42
  const { value, wrapperProps } = useFieldHOC<string>(props)
43
43
 
44
44
  const format = (date: Date) => {
45
- if (!date) {
46
- return ''
47
- }
48
-
49
45
  if (props.disabledTime) {
50
46
  return TimeHelper.displayDate(date)
51
47
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@finema/core",
3
- "version": "1.4.65",
3
+ "version": "1.4.66",
4
4
  "repository": "https://gitlab.finema.co/finema/ui-kit",
5
5
  "license": "MIT",
6
6
  "author": "Finema Dev Core Team",