From eda7a1d79d98e4ccd76e67bc93c1bf8dc5249e67 Mon Sep 17 00:00:00 2001 From: Kirill Zaytsev Date: Thu, 28 Dec 2023 13:55:15 +0400 Subject: [PATCH] feat: Added web-types declaration --- package.json | 1 + web-types.json | 207 +++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 208 insertions(+) create mode 100644 web-types.json diff --git a/package.json b/package.json index f7f7156..458847c 100644 --- a/package.json +++ b/package.json @@ -9,6 +9,7 @@ "./sfc": "src/index.ts" }, "unpkg": "dist/formulario.min.js", + "web-types": "web-types.json", "dependencies": { "is-url": "^1.2.4", "vue-class-component": "^7.2.3", diff --git a/web-types.json b/web-types.json new file mode 100644 index 0000000..c7baca7 --- /dev/null +++ b/web-types.json @@ -0,0 +1,207 @@ +{ + "$schema": "https://raw.githubusercontent.com/JetBrains/web-types/master/schema/web-types.json", + "framework": "vue", + "name": "@omnica/accordion-vue2", + "version": "0.24.22", + "js-types-syntax": "typescript", + "description-markup": "markdown", + "contributions": { + "html": { + "vue-components": [ + { + "name": "FormularioForm", + "description": "Form root", + "source": { + "module": "@retailcrm/vue-formulario", + "symbol": "FormularioForm" + }, + "props": [ + { + "name": "state", + "type": "object", + "default": "{}", + "description": "" + }, + { + "name": "id", + "type": "string", + "default": "id('formulario-form')", + "description": "" + }, + { + "name": "fieldsErrors", + "type": "object", + "default": "{}", + "description": "Describes validation errors of concrete fields" + }, + { + "name": "formErrors", + "type": "array", + "default": "[]", + "description": "Describes validation errors of entire state" + } + ], + "events": [ + { + "name": "input", + "description": "Occurs on state change", + "arguments": [ + { + "name": "...", + "type": { + "name": "any" + } + } + ] + }, + { + "name": "validation", + "description": "Occurs at the end of a validation run", + "arguments": [ + { + "name": "...", + "type": { + "name": "any" + } + } + ] + } + ], + "slots": [ + { + "name": "default", + "description": "Form content", + "scoped": true + } + ] + }, + { + "name": "FormularioField", + "description": "Form field", + "source": { + "module": "@retailcrm/vue-formulario", + "symbol": "FormularioField" + }, + "props": [ + { + "name": "value", + "type": "any", + "description": "The field's value, if not set explicitly, will be extracted from the state using 'path'" + }, + { + "name": "name", + "type": "string", + "description": "Path to field's value in the state", + "required": true + }, + { + "name": "validation", + "type": "string|array", + "description": "" + }, + { + "name": "validationRules", + "type": "object", + "description": "Validation rules override/extension opportunity", + "default": "{}" + }, + { + "name": "validationMessages", + "type": "object", + "description": "Validation messages override/extension opportunity", + "default": "{}" + }, + { + "name": "validationBehavior", + "type": "string", + "description": "", + "default": "'demand'" + }, + { + "name": "errorsDisabled", + "type": "boolean", + "description": "Disables passing errors to the field from FormularioForm's fieldsErrors", + "default": "false" + }, + { + "name": "modelGetConverter", + "type": "function", + "description": "Simple middleware that provides opportunity to transform value before passing it to a template" + }, + { + "name": "modelSetConverter", + "type": "function", + "description": "Simple middleware that provides opportunity to transform new value before assigning" + }, + { + "name": "tag", + "type": "string", + "description": "Root element's tagName in lowercase" + }, + { + "name": "unregisterBehavior", + "type": "string", + "description": "Possible values: 'none', 'unset'", + "default": "'none'" + } + ], + "events": [ + { + "name": "input", + "description": "Occurs on value change", + "arguments": [ + { + "name": "...", + "type": { + "name": "any" + } + } + ] + }, + { + "name": "validation", + "description": "Occurs at the end of a validation run", + "arguments": [ + { + "name": "...", + "type": { + "name": "any" + } + } + ] + } + ], + "slots": [ + { + "name": "default", + "description": "Field content", + "scoped": true + } + ] + }, + { + "name": "FormularioFieldGroup", + "description": "Field group", + "source": { + "module": "@retailcrm/vue-formulario", + "symbol": "FormularioFieldGroup" + }, + "props": [ + { + "name": "name", + "type": "string", + "description": "Path to a nested state", + "required": true + } + ], + "slots": [ + { + "name": "default", + "description": "Group content" + } + ] + } + ] + } + } +}