diff --git a/client/components/forms/TextAreaInput.vue b/client/components/forms/TextAreaInput.vue index 4105ebd2..fe11a58e 100644 --- a/client/components/forms/TextAreaInput.vue +++ b/client/components/forms/TextAreaInput.vue @@ -22,6 +22,13 @@ :maxlength="maxCharLimit" /> + + + + - + diff --git a/client/components/forms/TextInput.vue b/client/components/forms/TextInput.vue index a5062f8e..74799b32 100644 --- a/client/components/forms/TextInput.vue +++ b/client/components/forms/TextInput.vue @@ -29,7 +29,10 @@ @keydown.enter.prevent="onEnterPress" > - + @@ -42,7 +45,10 @@ - + diff --git a/client/components/forms/components/InputHelp.vue b/client/components/forms/components/InputHelp.vue index 1de6f10b..a8e98cf4 100644 --- a/client/components/forms/components/InputHelp.vue +++ b/client/components/forms/components/InputHelp.vue @@ -1,5 +1,8 @@ - + diff --git a/client/components/forms/components/InputWrapper.vue b/client/components/forms/components/InputWrapper.vue index bacad11b..0c5b9a44 100644 --- a/client/components/forms/components/InputWrapper.vue +++ b/client/components/forms/components/InputWrapper.vue @@ -18,10 +18,13 @@ name="help" > + > + + + + @@ -30,7 +33,6 @@ name="help" > diff --git a/client/components/forms/useFormInput.js b/client/components/forms/useFormInput.js index 34a494f7..60709cbc 100644 --- a/client/components/forms/useFormInput.js +++ b/client/components/forms/useFormInput.js @@ -16,6 +16,7 @@ export const inputProps = { placeholder: { type: String, default: null }, uppercaseLabels: { type: Boolean, default: false }, hideFieldName: { type: Boolean, default: false }, + showCharLimit: { type: Boolean, default: false }, help: { type: String, default: null }, helpPosition: { type: String, default: "below_input" }, color: { type: String, default: "#3B82F6" }, diff --git a/client/nuxt.config.ts b/client/nuxt.config.ts index c1093619..88919a77 100644 --- a/client/nuxt.config.ts +++ b/client/nuxt.config.ts @@ -1,11 +1,11 @@ // https://nuxt.com/docs/api/configuration/nuxt-config -import runtimeConfig from "./runtimeConfig"; -import {sentryVitePlugin} from "@sentry/vite-plugin"; -import sitemap from "./sitemap"; +import runtimeConfig from "./runtimeConfig" +import {sentryVitePlugin} from "@sentry/vite-plugin" +import sitemap from "./sitemap" export default defineNuxtConfig({ loglevel: process.env.NUXT_LOG_LEVEL || 'info', - devtools: {enabled: true}, + devtools: {enabled: false}, css: ['~/scss/app.scss'], modules: [ '@pinia/nuxt',