-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
VL-133_UInput-stories-refinement #351
Conversation
export const Disabled = DefaultTemplate.bind({}); | ||
Disabled.args = { disabled: true }; | ||
export const Placeholder = DefaultTemplate.bind({}); | ||
Placeholder.args = { placeholder: "Your placeholder text" }; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
use real life example
|
||
export const Description = DefaultTemplate.bind({}); | ||
Description.args = { description: "some description text" }; | ||
Description.args = { description: "Some description text" }; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
use real life example
|
||
export const Placeholder = DefaultTemplate.bind({}); | ||
Placeholder.args = { placeholder: "some placeholder text" }; | ||
Error.args = { error: "Some error text" }; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
use real life example
|
||
export const Readonly = DefaultTemplate.bind({}); | ||
Readonly.args = { readonly: true, modelValue: "some value for read" }; | ||
Readonly.args = { readonly: true, modelValue: "Some value for read" }; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
use real life example
v-bind="args" | ||
validation-rule="^[a-gA-G]{1,10}$" | ||
label="Custom RegExp" | ||
description="Only letters between 'a' and 'g' are allowed, max length is 10" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lest crete regex to add hex color number #4e3f2
, it will be good real life example.
Update UInput component stories
https://ilevel.atlassian.net/jira/software/c/projects/VL/boards/11?selectedIssue=VL-133