fix: type export ValidationType

This commit is contained in:
Thijs Louisse 2022-06-01 12:28:30 +02:00 committed by Thijs Louisse
parent 9ebc79431b
commit 63466d6142
3 changed files with 12 additions and 7 deletions

View file

@ -0,0 +1,5 @@
---
'@lion/form-core': patch
---
fix type export ValidationType

View file

@ -1,10 +1,10 @@
/** /**
* @typedef {import('../../types/validate/validate').FeedbackMessageData} FeedbackMessageData * @typedef {import('../../types/validate').FeedbackMessageData} FeedbackMessageData
* @typedef {import('../../types/validate/validate').ValidatorParam} ValidatorParam * @typedef {import('../../types/validate').ValidatorParam} ValidatorParam
* @typedef {import('../../types/validate/validate').ValidatorConfig} ValidatorConfig * @typedef {import('../../types/validate').ValidatorConfig} ValidatorConfig
* @typedef {import('../../types/validate/validate').ValidatorOutcome} ValidatorOutcome * @typedef {import('../../types/validate').ValidatorOutcome} ValidatorOutcome
* @typedef {import('../../types/validate/validate').ValidatorName} ValidatorName * @typedef {import('../../types/validate').ValidatorName} ValidatorName
* @typedef {import('../../types/validate/validate').ValidationType} ValidationType * @typedef {import('../../types/validate').ValidationType} ValidationType
* @typedef {import('../FormControlMixin').FormControlHost} FormControlHost * @typedef {import('../FormControlMixin').FormControlHost} FormControlHost
*/ */

View file

@ -1,5 +1,5 @@
import { FormControlHost } from '../../src/FormControlMixin'; import { FormControlHost } from '../../src/FormControlMixin';
export { ValidationType } from '../../types/ValidateMixinTypes'; import { ValidationType } from './ValidateMixinTypes';
/** /**
* The name under which validation results get registered. For convience and predictability, this * The name under which validation results get registered. For convience and predictability, this