jenesius-vue-form
Advanced tools
Comparing version 2.3.10 to 2.3.11
@@ -0,7 +1,6 @@ | ||
import { IStore } from "./store"; | ||
export default function config(params: ConfigParams): void; | ||
interface ConfigParams { | ||
inputTypes?: { | ||
[name: string]: any; | ||
}; | ||
} | ||
declare type ConfigParams = Partial<IStore> & { | ||
inputTypes?: IStore['inputTypes']; | ||
}; | ||
export {}; |
declare const STORE: IStore; | ||
declare type defineInputTypes = 'text' | 'select' | 'radio' | 'checkbox' | 'switch' | 'password' | 'tel' | 'number' | 'range' | 'textarea'; | ||
interface IStore { | ||
declare type defineInputTypes = 'text' | 'select' | 'radio' | 'checkbox' | 'switch' | 'password' | 'tel' | 'number' | 'range' | 'textarea' | 'single-checkbox' | 'single-radio'; | ||
export interface IStore { | ||
inputTypes: { | ||
@@ -8,3 +8,4 @@ [name: defineInputTypes | string]: any; | ||
requiredMessage: string; | ||
typeNotCaseSensitive: boolean; | ||
} | ||
export default STORE; |
{ | ||
"name": "jenesius-vue-form", | ||
"version": "2.3.10", | ||
"version": "2.3.11", | ||
"description": "Heavy form system for Vue.js", | ||
@@ -55,3 +55,3 @@ "author": "Jenesius", | ||
"devDependencies": { | ||
"@babel/core": "^7.12.16", | ||
"@babel/core": "^7.21.3", | ||
"@babel/eslint-parser": "^7.12.16", | ||
@@ -58,0 +58,0 @@ "@babel/plugin-proposal-optional-chaining": "^7.18.6", |
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
171135
74
4373