forstok-ui-lib 7.4.0 → 7.4.1

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/index.d.ts CHANGED
@@ -250,7 +250,7 @@ type TSingleValueProps = SingleValueProps;
250
250
  type TOptionProps = OptionProps;
251
251
  type TValueContainerPropsWithVariable = ValueContainerProps<TOption, boolean>;
252
252
  type TMultiValuePropsWithVariable = MultiValueProps<TOption, boolean>;
253
- type TMultiValue = MultiValue<TOption[]>;
253
+ type TMultiValue = MultiValue<TOption>;
254
254
  type TOptionsOrGroupsWithVariable = OptionsOrGroups<TOption, GroupBase<TOption>>;
255
255
  type TMenuListProps = MenuListProps;
256
256
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "forstok-ui-lib",
3
- "version": "7.4.0",
3
+ "version": "7.4.1",
4
4
  "description": "Forstok UI Components Library",
5
5
  "path": "dist",
6
6
  "main": "dist/index.js",
@@ -103,7 +103,7 @@ export type TValueContainerPropsWithVariable = ValueContainerProps<TOption, bool
103
103
 
104
104
  export type TMultiValuePropsWithVariable = MultiValueProps<TOption, boolean>
105
105
 
106
- export type TMultiValue = MultiValue<TOption[]>
106
+ export type TMultiValue = MultiValue<TOption>
107
107
 
108
108
  export type TOptionsOrGroupsWithVariable = OptionsOrGroups<TOption, GroupBase<TOption>>
109
109