@finema/core 3.0.2 → 3.1.0

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.0.2",
3
+ "version": "3.1.0",
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.0.2";
7
+ const version = "3.1.0";
8
8
 
9
9
  const nuxtAppOptions = {
10
10
  head: {
@@ -5,6 +5,10 @@ declare const __VLS_export: import("vue").DefineComponent<ISelectFieldProps, {},
5
5
  onChange?: ((...args: any[]) => any) | undefined;
6
6
  }>, {
7
7
  clearIcon: string;
8
+ searchInput: {
9
+ placeholder?: string;
10
+ icon?: string;
11
+ } | boolean;
8
12
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
9
13
  declare const _default: typeof __VLS_export;
10
14
  export default _default;
@@ -6,7 +6,7 @@
6
6
  :placeholder="wrapperProps.placeholder"
7
7
  :disabled="wrapperProps.disabled"
8
8
  :loading="loading"
9
- :search-input="searchInput"
9
+ :search-input="searchInput ?? void 0"
10
10
  :selected-icon="selectedIcon"
11
11
  value-key="value"
12
12
  label-key="label"
@@ -60,7 +60,7 @@ const props = defineProps({
60
60
  trailingIcon: { type: String, required: false },
61
61
  clearIcon: { type: String, required: false, default: "ph:x-circle-fill" },
62
62
  selectedIcon: { type: String, required: false },
63
- searchInput: { type: [Object, Boolean], required: false },
63
+ searchInput: { type: [Object, Boolean], required: false, default: void 0 },
64
64
  clearable: { type: Boolean, required: false },
65
65
  loading: { type: Boolean, required: false },
66
66
  options: { type: Array, required: true },
@@ -5,6 +5,10 @@ declare const __VLS_export: import("vue").DefineComponent<ISelectFieldProps, {},
5
5
  onChange?: ((...args: any[]) => any) | undefined;
6
6
  }>, {
7
7
  clearIcon: string;
8
+ searchInput: {
9
+ placeholder?: string;
10
+ icon?: string;
11
+ } | boolean;
8
12
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
9
13
  declare const _default: typeof __VLS_export;
10
14
  export default _default;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@finema/core",
3
- "version": "3.0.2",
3
+ "version": "3.1.0",
4
4
  "repository": "https://gitlab.finema.co/finema/ui-kit",
5
5
  "license": "MIT",
6
6
  "author": "Finema Dev Core Team",