-
The const types = {
textarea() {
const disabled = {
label: `z-[30] mt-px inline-block pl-[0.15rem] opacity-80 hover:pointer-events-none`,
labelAtt: {},
}
return {
wrap: 'z-[30] relative mb-3',
wrapAtt: {['data-twe-input-wrapper-init']: true},
controlAtt: {},
control: `peer textarea-control`,
label: ``,
labelAtt: {},
disabled
}
}
} Is this something that can be improved, or should I modify temporarily to something simpler and what might that look like? |
Beta Was this translation helpful? Give feedback.
Answered by
wongjn
Apr 1, 2025
Replies: 1 comment 4 replies
-
What did you expect the upgrade tool to change? |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Consider checking the file is covered by the
content
file globs in the Tailwind configuration. In a test I spun up, the upgrade tool would properly replacez-[30]
withz-30
with your exact code if the file was covered.