@finema/core 1.4.29 → 1.4.31

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.29",
3
+ "version": "1.4.31",
4
4
  "configKey": "core",
5
5
  "compatibility": {
6
6
  "nuxt": "^3.7.4"
package/dist/module.mjs CHANGED
@@ -2,7 +2,7 @@ import { defineNuxtModule, createResolver, installModule, addPlugin, addComponen
2
2
  import 'lodash-es';
3
3
 
4
4
  const name = "@finema/core";
5
- const version = "1.4.29";
5
+ const version = "1.4.31";
6
6
 
7
7
  const colors = {
8
8
  black: "#20243E",
@@ -61,7 +61,7 @@ import i18next from 'i18next'
61
61
 
62
62
  const config = useUiConfig<typeof uploadFileInputClassicAuto>(
63
63
  uploadFileInputClassicAuto,
64
- 'uploadFileInput'
64
+ 'uploadFileInputClassicAuto'
65
65
  )
66
66
 
67
67
  const props = withDefaults(defineProps<IUploadFileProps>(), {})
@@ -86,7 +86,7 @@ const acceptFile = computed(() =>
86
86
  typeof props.accept === 'string' ? props.accept : props.accept?.join(',')
87
87
  )
88
88
 
89
- const { ui } = useUI('breadcrumb', toRef(props, 'ui'), config)
89
+ const { ui } = useUI('uploadFileInputClassicAuto', toRef(props, 'ui'), config)
90
90
 
91
91
  const handleOpenFile = () => {
92
92
  fileInput.value?.click()
@@ -1 +1 @@
1
- export type UIComponentList = 'modal' | 'slideover' | 'dropdown' | 'icon' | 'button' | 'buttonGroup' | 'tabs' | 'card' | 'breadcrumb' | 'badge' | 'input' | 'pagination' | 'notification' | 'uploadFileInput';
1
+ export type UIComponentList = 'modal' | 'slideover' | 'dropdown' | 'icon' | 'button' | 'buttonGroup' | 'tabs' | 'card' | 'breadcrumb' | 'badge' | 'input' | 'pagination' | 'notification' | 'uploadFileInputClassicAuto';
@@ -1,5 +1,5 @@
1
1
  export const uploadFileInputClassicAuto = {
2
- base: "rounded-lg ring-1 ring-inset ring-gray-300 shadow-sm bg-white px-3 py-2",
2
+ base: "rounded-md ring-1 ring-inset ring-gray-300 shadow-sm bg-white px-3 py-2",
3
3
  wrapper: "flex items-center justify-between gap-4",
4
4
  selectFileBox: "flex items-center gap-2 truncate",
5
5
  placeholder: "truncate text-gray-400 text-sm",
@@ -73,7 +73,7 @@ export declare const _isEmpty: {
73
73
  __trapAny: any;
74
74
  }>(value?: T | undefined): boolean;
75
75
  (value: string): value is "";
76
- (value: import("lodash").List<any> | Map<any, any> | Set<any> | null | undefined): boolean;
76
+ (value: Map<any, any> | Set<any> | import("lodash").List<any> | null | undefined): boolean;
77
77
  (value: object): boolean;
78
78
  <T_1 extends object>(value: T_1 | null | undefined): value is import("lodash").EmptyObjectOf<T_1> | null | undefined;
79
79
  (value?: any): boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@finema/core",
3
- "version": "1.4.29",
3
+ "version": "1.4.31",
4
4
  "repository": "https://gitlab.finema.co/finema/ui-kit",
5
5
  "license": "MIT",
6
6
  "author": "Finema Dev Core Team",