@juantroconisf/lib 11.0.0 → 11.0.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.mts CHANGED
@@ -92,7 +92,7 @@ interface ItemNumberInputProps extends ComponentInputProps {
92
92
  /** Props returned by on.select() */
93
93
  interface ItemSelectProps extends ComponentInputProps {
94
94
  onSelectionChange: NonNullable<SelectProps["onSelectionChange"]>;
95
- selectedKeys: string[] | number[] | string | null;
95
+ selectedKeys: NonNullable<SelectProps["selectedKeys"]>;
96
96
  }
97
97
  /** Props returned by on.autocomplete() */
98
98
  interface ItemAutocompleteProps extends ComponentInputProps {
@@ -268,4 +268,4 @@ interface UseFormResponse<O extends StateType> {
268
268
 
269
269
  declare function useForm<S extends Record<string, ConfigType>>(schema: S, { arrayIdentifiers, onFormSubmit: onFormSubmitProp, resetOnSubmit, keepValues: keepValuesProp, }?: FormOptions<InferState<S>>): UseFormResponse<InferState<S>>;
270
270
 
271
- export { type BlurFunc, type ConfigType, type FieldMetadata, type FormOptions, type FormSubmitHandler, type HelpersFunc, type InferState, type InferSubmitHandler, type MetadataType, type NestedChangeProps, NextUIError, type OnMethods, type StateType, type UseFormResponse, type ValueChangeFunc, useForm };
271
+ export { type BlurFunc, type ComponentInputProps, type ConfigType, type FieldMetadata, type FormOptions, type FormResetOptions, type FormSubmitHandler, type HelpersFunc, type InferState, type InferSubmitHandler, type ItemAutocompleteProps, type ItemInputProps, type ItemNumberInputProps, type ItemRadioGroupProps, type ItemSelectProps, type ItemToggleProps, type MetadataType, type NestedChangeProps, NextUIError, type OnMethods, type StateType, type UseFormResponse, type ValueChangeFunc, useForm };
package/dist/index.d.ts CHANGED
@@ -92,7 +92,7 @@ interface ItemNumberInputProps extends ComponentInputProps {
92
92
  /** Props returned by on.select() */
93
93
  interface ItemSelectProps extends ComponentInputProps {
94
94
  onSelectionChange: NonNullable<SelectProps["onSelectionChange"]>;
95
- selectedKeys: string[] | number[] | string | null;
95
+ selectedKeys: NonNullable<SelectProps["selectedKeys"]>;
96
96
  }
97
97
  /** Props returned by on.autocomplete() */
98
98
  interface ItemAutocompleteProps extends ComponentInputProps {
@@ -268,4 +268,4 @@ interface UseFormResponse<O extends StateType> {
268
268
 
269
269
  declare function useForm<S extends Record<string, ConfigType>>(schema: S, { arrayIdentifiers, onFormSubmit: onFormSubmitProp, resetOnSubmit, keepValues: keepValuesProp, }?: FormOptions<InferState<S>>): UseFormResponse<InferState<S>>;
270
270
 
271
- export { type BlurFunc, type ConfigType, type FieldMetadata, type FormOptions, type FormSubmitHandler, type HelpersFunc, type InferState, type InferSubmitHandler, type MetadataType, type NestedChangeProps, NextUIError, type OnMethods, type StateType, type UseFormResponse, type ValueChangeFunc, useForm };
271
+ export { type BlurFunc, type ComponentInputProps, type ConfigType, type FieldMetadata, type FormOptions, type FormResetOptions, type FormSubmitHandler, type HelpersFunc, type InferState, type InferSubmitHandler, type ItemAutocompleteProps, type ItemInputProps, type ItemNumberInputProps, type ItemRadioGroupProps, type ItemSelectProps, type ItemToggleProps, type MetadataType, type NestedChangeProps, NextUIError, type OnMethods, type StateType, type UseFormResponse, type ValueChangeFunc, useForm };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juantroconisf/lib",
3
- "version": "11.0.0",
3
+ "version": "11.0.1",
4
4
  "description": "A form validation library for HeroUI.",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",