Skip to content
Open
Show file tree
Hide file tree
Changes from 7 commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
d601682
Add StudioEmailField and StudioPasswordField components
vtushar06 Feb 2, 2026
e296099
add custom validateForm method and replaced basic fields with new com…
vtushar06 Feb 2, 2026
5cbe5cc
Refactor usage fields to use KCheckbox and KTextbox components, and i…
vtushar06 Feb 2, 2026
03f71fb
updted Create.vue to replace VInput and TextArea with KSelect and KTe…
vtushar06 Feb 2, 2026
8798e70
Replace Checkbox with KCheckbox component and update error message ha…
vtushar06 Feb 2, 2026
79bd634
remove vuetify from create page
vtushar06 Feb 13, 2026
9025e23
[pre-commit.ci lite] apply automatic fixes
pre-commit-ci-lite[bot] Feb 13, 2026
8d5a99f
updated theme color error and fixed copilot review
vtushar06 Feb 13, 2026
0c4bdf9
test for email and password field
vtushar06 Feb 24, 2026
1534de0
Merge remote-tracking branch 'upstream/unstable' into remove-vuetify-…
vtushar06 Mar 12, 2026
7fa182b
replace Vuetify components with KDS equivalents and update error hand…
vtushar06 Mar 14, 2026
ec7699b
updated lint error
vtushar06 Mar 14, 2026
361fecf
[pre-commit.ci lite] apply automatic fixes
pre-commit-ci-lite[bot] Mar 14, 2026
2cdd99a
updated error handling in Create.vue
vtushar06 Apr 5, 2026
fb1e848
[pre-commit.ci lite] apply automatic fixes
pre-commit-ci-lite[bot] Apr 5, 2026
234f374
fix max-len lint error in Create.vue comment
vtushar06 Apr 5, 2026
be65e62
Merge upstream/unstable into remove-vuetify-5670
vtushar06 Apr 16, 2026
d7afe75
use generateFormMixin onSubmit/onValidationFailed pattern
vtushar06 Apr 18, 2026
818440f
add appearanceOverrides prop to form fields
vtushar06 Apr 18, 2026
8b65f5b
Merge remote-tracking branch 'upstream/unstable' into remove-vuetify-…
vtushar06 Apr 18, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
<template>

<KTextbox
:value="value"
type="email"
:label="label || $tr('emailLabel')"
:maxlength="maxlength"
:disabled="disabled"
:invalid="hasError"
:invalidText="errorText"
:showInvalidText="hasError"
v-bind="$attrs"
@input="handleInput"
@blur="$emit('blur')"
/>

</template>


<script>

export default {
name: 'StudioEmailField',
props: {
value: {
type: String,
default: '',
},
label: {
type: String,
default: null,
},
disabled: {
type: Boolean,
default: false,
},
errorMessages: {
type: Array,
default: () => [],
},
maxlength: {
type: [String, Number],
default: null,
},
},
computed: {
hasError() {
return this.errorMessages && this.errorMessages.length > 0;
},
errorText() {
return this.hasError ? this.errorMessages[0] : '';
},
},
methods: {
handleInput(value) {
this.$emit('input', value.trim());
},
Comment thread
vtushar06 marked this conversation as resolved.
},
$trs: {
emailLabel: 'Email address',
},
};

</script>
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
<template>

<KTextbox
:value="value"
type="password"
:label="label || $tr('passwordLabel')"
:invalid="hasError"
:invalidText="errorText"
:showInvalidText="hasError"
@input="$emit('input', $event)"
@blur="$emit('blur')"
/>

</template>


<script>

export default {
name: 'StudioPasswordField',
props: {
value: {
type: String,
default: '',
},
label: {
type: String,
default: null,
},
errorMessages: {
type: Array,
default: () => [],
},
},
computed: {
hasError() {
return this.errorMessages && this.errorMessages.length > 0;
},
errorText() {
return this.hasError ? this.errorMessages[0] : '';
},
},
$trs: {
passwordLabel: 'Password',
},
};

</script>
Loading