forked from vexip-ui/vexip-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(captcha): add Captcha component (vexip-ui#295)
* wip: create component * chore: switch to tsx * wip: image * wip: add tolerance * wip: slide image type * wip: update * wip: update * wip: extra slider component * chore: update * chore: adjust props * wip: improve and docs * wip: improve and docs * wip: docs * wip: update * wip: update * wip: update * feat: add point type * feat: support use trigger * docs: complete docs * feat: switch to lucide * docs: update * docs: update * chore: update * test: update * docs: update * chore: update lock file * style: lint * test: update * test: update * test: add unit tests * test: update
- Loading branch information
Showing
64 changed files
with
3,115 additions
and
107 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
import '@/components/preset/css' | ||
import '@/components/captcha/css' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import CaptchaSlider from '../captcha/captcha-slider.vue' | ||
|
||
export { CaptchaSlider } | ||
export { captchaSliderProps } from '../captcha/props' | ||
|
||
export type CaptchaSliderExposed = InstanceType<typeof CaptchaSlider> | ||
|
||
export type { CaptchaSliderProps, CaptchaSliderCProps } from '../captcha/props' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
import '@/components/preset/style' | ||
import '@/components/captcha/style' |
Oops, something went wrong.