From aa873ec520656037b9377731b6e1aecf47ecbd2e Mon Sep 17 00:00:00 2001 From: Lucas Nascimento Date: Tue, 26 May 2026 09:03:12 -0300 Subject: [PATCH 1/4] =?UTF-8?q?Permite=20que=20o=20usu=C3=A1rio=20redimens?= =?UTF-8?q?ione=20apenas=20o=20input=20do=20tipo=20textarea?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/BaseInput.vue | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/components/BaseInput.vue b/src/components/BaseInput.vue index ffd52562..6ef8659b 100644 --- a/src/components/BaseInput.vue +++ b/src/components/BaseInput.vue @@ -450,6 +450,10 @@ const inputTopPadding = computed(() => { return props.type === 'textarea' ? '8px' : '14px'; }); +const resizeType = computed(() => { + return props.type === 'textarea' ? 'vertical' : 'none'; +}); + const hasError = computed(() => { return props.state === 'invalid'; }); @@ -668,7 +672,7 @@ defineExpose({ text-align: start; color: tokens.$n-600; width: 100%; - resize: vertical; + resize: v-bind(resizeType); cursor: v-bind(computedCursor); background-color: transparent; line-height: 1.5; From f8883081900df015fa44dd329fae11e5ca6315c9 Mon Sep 17 00:00:00 2001 From: Lucas Nascimento Date: Tue, 26 May 2026 09:12:32 -0300 Subject: [PATCH 2/4] =?UTF-8?q?Atualiza=20vers=C3=A3o=20do=20projeto?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 4ab123ab..12793b4c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@sysvale/cuida", - "version": "3.158.2", + "version": "3.158.3", "description": "A design system built by Sysvale, using storybook and Vue components", "repository": { "type": "git", From fb9e71720d8344d54b27ec4877a2cb276135ee95 Mon Sep 17 00:00:00 2001 From: Lucas Nascimento Date: Tue, 26 May 2026 09:17:22 -0300 Subject: [PATCH 3/4] =?UTF-8?q?Adiciona=20restri=C4=87=C3=A3o=20de=20redim?= =?UTF-8?q?ensionamento=20para=20inputs=20mobile?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/BaseMobileInput.vue | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/components/BaseMobileInput.vue b/src/components/BaseMobileInput.vue index 43b79f34..ca23e161 100644 --- a/src/components/BaseMobileInput.vue +++ b/src/components/BaseMobileInput.vue @@ -532,6 +532,10 @@ const shouldShowLink = computed(() => ( && props.supportLinkUrl.length )); +const resizeType = computed(() => { + return props.type === 'textarea' ? 'vertical' : 'none'; +}); + /* WATCHERS */ watch(model, (newValue, oldValue) => { if (newValue !== oldValue) { @@ -694,7 +698,7 @@ defineExpose({ text-align: start; color: tokens.$n-700; width: 100%; - resize: vertical; + resize: v-bind(resizeType); font-size: 14.5px; cursor: v-bind(computedCursor); From 116bc39f40447de367ea2cef43a9c647b169d220 Mon Sep 17 00:00:00 2001 From: Lucas Nascimento Date: Tue, 26 May 2026 09:23:49 -0300 Subject: [PATCH 4/4] =?UTF-8?q?Ajusta=20permiss=C3=B5es?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/build-docs.yml | 1 + .github/workflows/deploy.yml | 1 + .github/workflows/publish.yml | 1 + 3 files changed, 3 insertions(+) diff --git a/.github/workflows/build-docs.yml b/.github/workflows/build-docs.yml index fc024562..da213c9d 100644 --- a/.github/workflows/build-docs.yml +++ b/.github/workflows/build-docs.yml @@ -1,6 +1,7 @@ name: 'Build docs 📚' permissions: contents: read + actions: read on: [push] diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 774bcfd8..511d44a5 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -10,6 +10,7 @@ permissions: contents: read pages: write id-token: write + actions: read concurrency: group: pages diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index e757b53c..64e81444 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -6,6 +6,7 @@ on: permissions: id-token: write contents: read + actions: read jobs: build: runs-on: ubuntu-latest