-
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.
refactor: wt-input-info colors [WTEL-3938]
- Loading branch information
Showing
6 changed files
with
79 additions
and
33 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<script setup> | ||
import Docs from './wt-input-info-docs.vue'; | ||
import ExampleInputInfo from './examples/example-input-info.vue'; | ||
import ExampleInvalidInputInfo from './examples/example-invalid-input-info.vue'; | ||
</script> | ||
|
||
# WtInputInfo | ||
|
||
## Props | ||
::: raw | ||
<Docs/> | ||
::: | ||
|
||
## Example Input Info | ||
::: raw | ||
<ExampleInputInfo/> | ||
::: | ||
|
||
::: details Code | ||
<<< ./examples/example-input-info.vue | ||
::: | ||
|
||
## Example Invalid Input Info | ||
::: raw | ||
<ExampleInvalidInputInfo/> | ||
::: | ||
|
||
::: details Code | ||
<<< ./examples/example-invalid-input-info.vue | ||
::: |
11 changes: 11 additions & 0 deletions
11
docs/pages/webitel-ui/components/wt-input-info/examples/example-input-info.vue
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,11 @@ | ||
<script setup> | ||
</script> | ||
|
||
<template> | ||
<wt-input-info>Input info</wt-input-info> | ||
</template> | ||
|
||
<style scoped lang="scss"> | ||
</style> |
13 changes: 13 additions & 0 deletions
13
docs/pages/webitel-ui/components/wt-input-info/examples/example-invalid-input-info.vue
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,13 @@ | ||
<script setup> | ||
</script> | ||
|
||
<template> | ||
<wt-input-info invalid> | ||
Invalid input info | ||
</wt-input-info> | ||
</template> | ||
|
||
<style scoped lang="scss"> | ||
</style> |
53 changes: 22 additions & 31 deletions
53
docs/pages/webitel-ui/components/wt-input-info/wt-input-info-docs.vue
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