Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@formkit/inputs

Package Overview
Dependencies
Maintainers
3
Versions
464
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@formkit/inputs - npm Package Compare versions

Comparing version 1.0.0-beta.7-ca7dad3 to 1.0.0-beta.7-da1ee13

79

dist/index.d.ts
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

4

package.json
{
"name": "@formkit/inputs",
"type": "module",
"version": "1.0.0-beta.7-ca7dad3",
"version": "1.0.0-beta.7-da1ee13",
"description": "Commonly shared types for FormKit",

@@ -36,5 +36,5 @@ "main": "dist/index.cjs",

"dependencies": {
"@formkit/core": "1.0.0-beta.7-ca7dad3"
"@formkit/core": "1.0.0-beta.7-da1ee13"
},
"devDependencies": {}
}

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc