@formkit/inputs
Advanced tools
Comparing version 1.0.0-beta.7-12ce970 to 1.0.0-beta.7-162ea2b
import { FormKitExtendableSchemaRoot } from '@formkit/core'; | ||
import { FormKitLibrary } from '@formkit/core'; | ||
import { FormKitMiddleware } from '@formkit/core'; | ||
import { FormKitNode } from '@formkit/core'; | ||
@@ -23,2 +24,9 @@ import { FormKitPlugin } from '@formkit/core'; | ||
/** | ||
* Adds checkbox selection support | ||
* @param node - Node the feature is added to | ||
* @public | ||
*/ | ||
declare function checkboxes(node: FormKitNode): void; | ||
/** | ||
* The color input. | ||
@@ -60,2 +68,9 @@ * @public | ||
/** | ||
* Allows disabling children of this. | ||
* @param node - The FormKitNode of the form/group/list | ||
* @public | ||
*/ | ||
declare function disables(node: FormKitNode): void; | ||
/** | ||
* The email input. | ||
@@ -75,2 +90,16 @@ * @public | ||
export declare const features: { | ||
checkbox: typeof checkboxes; | ||
disables: typeof disables; | ||
files: typeof files; | ||
form: typeof form_2; | ||
ignore: typeof ignore; | ||
initialValue: typeof initialValue; | ||
localize: typeof localize; | ||
normalizeBoxes: typeof normalizeBoxes; | ||
options: typeof options; | ||
radios: typeof radios; | ||
select: typeof select_2; | ||
}; | ||
/** | ||
@@ -82,2 +111,4 @@ * The file input. | ||
declare function files(node: FormKitNode): void; | ||
/** | ||
@@ -90,2 +121,9 @@ * The group input type. | ||
/** | ||
* Converts the options prop to usable values. | ||
* @param node - A formkit node. | ||
* @public | ||
*/ | ||
declare function form_2(node: FormKitNode): void; | ||
/** | ||
* A single file object in FormKit’s synthetic "FileList". | ||
@@ -135,2 +173,11 @@ * @public | ||
/** | ||
* Applies ignore="true" by default. | ||
* @param node - The node | ||
* @public | ||
*/ | ||
declare function ignore(node: FormKitNode): void; | ||
declare function initialValue(node: FormKitNode): void; | ||
declare namespace inputs { | ||
@@ -193,2 +240,13 @@ export { | ||
/** | ||
* Normalize the boxes. | ||
* @param node - The node | ||
* @returns | ||
* @public | ||
*/ | ||
declare function normalizeBoxes(node: FormKitNode): FormKitMiddleware<{ | ||
prop: string | symbol; | ||
value: any; | ||
}>; | ||
/** | ||
* The number input. | ||
@@ -200,2 +258,9 @@ * @public | ||
/** | ||
* Converts the options prop to usable values. | ||
* @param node - A formkit node. | ||
* @public | ||
*/ | ||
declare function options(node: FormKitNode): void; | ||
/** | ||
* The password input. | ||
@@ -213,2 +278,9 @@ * @public | ||
/** | ||
* Determines if a given radio input is being evaluated. | ||
* @param node - The radio input group. | ||
* @public | ||
*/ | ||
declare function radios(node: FormKitNode): void; | ||
/** | ||
* The range input. | ||
@@ -232,2 +304,9 @@ * @public | ||
/** | ||
* Converts the options prop to usable values. | ||
* @param node - A formkit node. | ||
* @public | ||
*/ | ||
declare function select_2(node: FormKitNode): void; | ||
/** | ||
* The submit input. | ||
@@ -234,0 +313,0 @@ * @public |
{ | ||
"name": "@formkit/inputs", | ||
"type": "module", | ||
"version": "1.0.0-beta.7-12ce970", | ||
"version": "1.0.0-beta.7-162ea2b", | ||
"description": "Commonly shared types for FormKit", | ||
@@ -36,5 +36,5 @@ "main": "dist/index.cjs", | ||
"dependencies": { | ||
"@formkit/core": "1.0.0-beta.7-12ce970" | ||
"@formkit/core": "1.0.0-beta.7-162ea2b" | ||
}, | ||
"devDependencies": {} | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
87740
3074
+ Added@formkit/core@1.0.0-beta.7-162ea2b(transitive)
+ Added@formkit/utils@1.0.0-beta.7-162ea2b(transitive)
- Removed@formkit/core@1.0.0-beta.7-12ce970(transitive)
- Removed@formkit/utils@1.0.0-beta.7-12ce970(transitive)