Skip to content

Commit

Permalink
fix: incorrect shared type import in rules
Browse files Browse the repository at this point in the history
  • Loading branch information
logaretm committed Oct 18, 2024
1 parent 97cebd8 commit a8524a1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/beige-mirrors-smoke.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@vee-validate/rules": patch
---

fix: incorrect shared type import in rules
2 changes: 1 addition & 1 deletion packages/rules/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import required from './required';
import size from './size';
import url from './url';
import { toTypedSchema } from './toTypedSchema';
import { SimpleValidationRuleFunction } from 'packages/shared';
import { SimpleValidationRuleFunction } from '../../shared/types';

export const all: Record<string, SimpleValidationRuleFunction<any, any>> = {
alpha_dash,
Expand Down

0 comments on commit a8524a1

Please sign in to comment.