@finema/core 3.6.1 → 3.6.2

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": "3.6.1",
3
+ "version": "3.6.2",
4
4
  "configKey": "core",
5
5
  "builder": {
6
6
  "@nuxt/module-builder": "1.0.2",
package/dist/module.mjs CHANGED
@@ -4,7 +4,7 @@ import * as lodash from 'lodash-es';
4
4
  import * as theme from '../dist/runtime/theme/index.js';
5
5
 
6
6
  const name = "@finema/core";
7
- const version = "3.6.1";
7
+ const version = "3.6.2";
8
8
 
9
9
  const nuxtAppOptions = {
10
10
  head: {
@@ -1,7 +1,9 @@
1
1
  import type { ISelectFieldProps } from '#core/components/Form/InputSelect/types';
2
2
  declare const __VLS_export: import("vue").DefineComponent<ISelectFieldProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
3
+ search: (...args: any[]) => void;
3
4
  change: (...args: any[]) => void;
4
5
  }, string, import("vue").PublicProps, Readonly<ISelectFieldProps> & Readonly<{
6
+ onSearch?: ((...args: any[]) => any) | undefined;
5
7
  onChange?: ((...args: any[]) => any) | undefined;
6
8
  }>, {
7
9
  clearIcon: string;
@@ -60,8 +60,8 @@ import { useFieldHOC } from "#core/composables/useForm";
60
60
  import { selectMenuTheme } from "#core/theme/selectMenu";
61
61
  import { useUiConfig } from "#core/composables/useConfig";
62
62
  const emits = defineEmits([
63
- "change"
64
- // 'search',
63
+ "change",
64
+ "search"
65
65
  ]);
66
66
  const props = defineProps({
67
67
  icon: { type: String, required: false },
@@ -1,7 +1,9 @@
1
1
  import type { ISelectFieldProps } from '#core/components/Form/InputSelect/types';
2
2
  declare const __VLS_export: import("vue").DefineComponent<ISelectFieldProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
3
+ search: (...args: any[]) => void;
3
4
  change: (...args: any[]) => void;
4
5
  }, string, import("vue").PublicProps, Readonly<ISelectFieldProps> & Readonly<{
6
+ onSearch?: ((...args: any[]) => any) | undefined;
5
7
  onChange?: ((...args: any[]) => any) | undefined;
6
8
  }>, {
7
9
  clearIcon: string;
@@ -1,8 +1,16 @@
1
1
  import type { ISelectFieldProps } from '#core/components/Form/InputSelect/types';
2
2
  declare const __VLS_export: import("vue").DefineComponent<ISelectFieldProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
3
+ search: (...args: any[]) => void;
3
4
  change: (...args: any[]) => void;
4
5
  }, string, import("vue").PublicProps, Readonly<ISelectFieldProps> & Readonly<{
6
+ onSearch?: ((...args: any[]) => any) | undefined;
5
7
  onChange?: ((...args: any[]) => any) | undefined;
6
- }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
8
+ }>, {
9
+ clearIcon: string;
10
+ searchInput: {
11
+ placeholder?: string;
12
+ icon?: string;
13
+ } | boolean;
14
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
7
15
  declare const _default: typeof __VLS_export;
8
16
  export default _default;
@@ -81,15 +81,15 @@ import { useFieldHOC } from "#core/composables/useForm";
81
81
  import { useUiConfig } from "#core/composables/useConfig";
82
82
  import { selectMenuTheme } from "#core/theme/selectMenu";
83
83
  const emits = defineEmits([
84
- "change"
85
- // 'search',
84
+ "change",
85
+ "search"
86
86
  ]);
87
87
  const props = defineProps({
88
88
  icon: { type: String, required: false },
89
89
  trailingIcon: { type: String, required: false },
90
- clearIcon: { type: String, required: false },
90
+ clearIcon: { type: String, required: false, default: "ph:x-circle-fill" },
91
91
  selectedIcon: { type: String, required: false },
92
- searchInput: { type: [Object, Boolean], required: false },
92
+ searchInput: { type: [Object, Boolean], required: false, default: void 0 },
93
93
  clearable: { type: Boolean, required: false },
94
94
  loading: { type: Boolean, required: false },
95
95
  options: { type: Array, required: true },
@@ -1,8 +1,16 @@
1
1
  import type { ISelectFieldProps } from '#core/components/Form/InputSelect/types';
2
2
  declare const __VLS_export: import("vue").DefineComponent<ISelectFieldProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
3
+ search: (...args: any[]) => void;
3
4
  change: (...args: any[]) => void;
4
5
  }, string, import("vue").PublicProps, Readonly<ISelectFieldProps> & Readonly<{
6
+ onSearch?: ((...args: any[]) => any) | undefined;
5
7
  onChange?: ((...args: any[]) => any) | undefined;
6
- }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
8
+ }>, {
9
+ clearIcon: string;
10
+ searchInput: {
11
+ placeholder?: string;
12
+ icon?: string;
13
+ } | boolean;
14
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
7
15
  declare const _default: typeof __VLS_export;
8
16
  export default _default;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@finema/core",
3
- "version": "3.6.1",
3
+ "version": "3.6.2",
4
4
  "repository": "https://gitlab.finema.co/finema/ui-kit",
5
5
  "license": "MIT",
6
6
  "author": "Finema Dev Core Team",