From c63090d68d5513201699787911585d8588211c24 Mon Sep 17 00:00:00 2001 From: Alban Costaz Date: Thu, 18 Jul 2024 11:45:55 +0200 Subject: [PATCH 1/3] Fix incorrect color name --- lib/components/ms-textarea/MsTextarea.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/components/ms-textarea/MsTextarea.vue b/lib/components/ms-textarea/MsTextarea.vue index 624d6ed..81b82c4 100644 --- a/lib/components/ms-textarea/MsTextarea.vue +++ b/lib/components/ms-textarea/MsTextarea.vue @@ -150,7 +150,7 @@ async function onChange(value: string): Promise { margin-left: auto; &-default { - color: var(--parsec-color-secondary-grey); + color: var(--parsec-color-light-secondary-grey); } &-warn { From 426beb423cf292c4946d13855584e06aabe0e8c0 Mon Sep 17 00:00:00 2001 From: Alban Costaz Date: Thu, 18 Jul 2024 11:22:25 +0200 Subject: [PATCH 2/3] Fix modelvalue handling in MsTextarea --- lib/components/ms-textarea/MsTextarea.vue | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/lib/components/ms-textarea/MsTextarea.vue b/lib/components/ms-textarea/MsTextarea.vue index 40d8ad9..f3e0847 100644 --- a/lib/components/ms-textarea/MsTextarea.vue +++ b/lib/components/ms-textarea/MsTextarea.vue @@ -17,7 +17,6 @@ }" ref="textareaRef" :placeholder="$msTranslate(placeholder)" - :value="modelValue" v-model="textValue" v-bind="$attrs" @ion-input="onChange($event.detail.value || '')" @@ -40,8 +39,7 @@