eco-vue-js 0.3.80 → 0.3.82

Sign up to get free protection for your applications and to get access to all the features.
@@ -264,7 +264,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
264
264
  id: inputId,
265
265
  ref_key: "input",
266
266
  ref: input,
267
- class: normalizeClass(["text-base font-normal outline-0 border-none bg-[inherit] flex-1 max-w-full disabled:opacity-80 disabled:cursor-not-allowed placeholder:text-gray-400 dark:placeholder:text-gray-500 appearance-none", {
267
+ class: normalizeClass(["text-base font-normal outline-0 border-none bg-[inherit] flex-1 max-w-full w-input disabled:opacity-80 disabled:cursor-not-allowed placeholder:text-gray-400 dark:placeholder:text-gray-500 appearance-none", {
268
268
  "min-h-[var(--textarea-height,160px)] w-full p-3": _ctx.textarea,
269
269
  "resize-y": _ctx.resize && _ctx.textarea,
270
270
  "resize-none": !_ctx.resize && _ctx.textarea,
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "type": "git",
5
5
  "url": "https://github.com/rsmple/eco-vue-js.git"
6
6
  },
7
- "version": "0.3.80",
7
+ "version": "0.3.82",
8
8
  "scripts": {
9
9
  "dev": "vite",
10
10
  "build": "run-p type-check build-only",
@@ -98,7 +98,7 @@ module.exports = plugin(function ({matchUtilities, addVariant, addUtilities, add
98
98
  addVariant('touch-not', '.touch-not &')
99
99
 
100
100
  addBase({
101
- 'input': {
101
+ '.w-input': {
102
102
  'outline': 'none',
103
103
 
104
104
  '--input-autofill-bg': theme('colors.default'),