Merge branch 'update-tailwind-and-daisyui' of github.com:utopia-os/utopia-ui into update-tailwind-and-daisyui

This commit is contained in:
Anton Tranelis 2025-03-21 19:11:29 +00:00
commit ad5e55bd27
3 changed files with 13 additions and 13 deletions

View File

@ -2,7 +2,7 @@
exports[`<ComboBoxInput /> > renders properly 1`] = `
<select
class="form-select block w-full py-2 px-4 border border-gray-300 rounded-md shadow-sm text-sm focus:outline-none focus:ring-indigo-500 focus:border-indigo-500 sm:text-sm"
class="tw:form-select tw:block tw:w-full tw:py-2 tw:px-4 tw:border tw:border-gray-300 rounded-md tw:shadow-sm tw:text-sm tw:focus:outline-hidden tw:focus:ring-indigo-500 tw:focus:border-indigo-500 tw:sm:text-sm"
>
<option
value="Option 1"

View File

@ -2,19 +2,19 @@
exports[`<TextAreaInput /> > labelTitle > sets label 1`] = `
<div
class="form-control w-full "
class="tw:form-control tw:w-full "
>
<label
class="label"
class="tw:label"
>
<span
class="label-text text-base-content "
class="tw:label-text tw:text-base-content "
>
My Title
</span>
</label>
<textarea
class="textarea textarea-bordered w-full leading-5 "
class="tw:textarea tw:textarea-bordered tw:w-full tw:leading-5 "
placeholder=""
required=""
/>
@ -23,10 +23,10 @@ exports[`<TextAreaInput /> > labelTitle > sets label 1`] = `
exports[`<TextAreaInput /> > renders properly 1`] = `
<div
class="form-control w-full "
class="tw:form-control tw:w-full "
>
<textarea
class="textarea textarea-bordered w-full leading-5 "
class="tw:textarea tw:textarea-bordered tw:w-full tw:leading-5 "
placeholder=""
required=""
/>

View File

@ -2,19 +2,19 @@
exports[`<TextInput /> > labelTitle > sets label 1`] = `
<div
class="form-control "
class="tw:form-control "
>
<label
class="label"
class="tw:label"
>
<span
class="label-text text-base-content "
class="tw:label-text tw:text-base-content "
>
My Title
</span>
</label>
<input
class="input input-bordered w-full "
class="tw:input tw:input-bordered tw:w-full "
placeholder=""
required=""
type="text"
@ -25,10 +25,10 @@ exports[`<TextInput /> > labelTitle > sets label 1`] = `
exports[`<TextInput /> > renders properly 1`] = `
<div
class="form-control "
class="tw:form-control "
>
<input
class="input input-bordered w-full "
class="tw:input tw:input-bordered tw:w-full "
placeholder=""
required=""
type="text"