fis-component 0.0.48 → 0.0.49

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.
@@ -16,7 +16,7 @@ export type SingleSelect<T> = {
16
16
  displayValue?: (value: SelectOption) => string;
17
17
  };
18
18
  export type MultiSelect<T> = {
19
- multi: true;
19
+ multi?: boolean;
20
20
  value: T[];
21
21
  onChange: (value: T[]) => void;
22
22
  displayValue?: (value: SelectOption[]) => string;
package/dist/index.d.ts CHANGED
@@ -4232,7 +4232,7 @@ type SingleSelect<T> = {
4232
4232
  displayValue?: (value: SelectOption) => string;
4233
4233
  };
4234
4234
  type MultiSelect<T> = {
4235
- multi: true;
4235
+ multi?: boolean;
4236
4236
  value: T[];
4237
4237
  onChange: (value: T[]) => void;
4238
4238
  displayValue?: (value: SelectOption[]) => string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "homepage": "https://vietdiemtran.github.io/fis-component/",
3
3
  "name": "fis-component",
4
- "version": "0.0.48",
4
+ "version": "0.0.49",
5
5
  "description": "",
6
6
  "main": "dist/cjs/index.js",
7
7
  "module": "dist/esm/index.js",