@acoustte-digital-services/digitalstore-controls-dev 0.8.1-dev.20260416092937 → 0.8.1-dev.20260417052148
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1 -3
- package/dist/index.mjs +1 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1420,9 +1420,7 @@ var LineTextInput = (props) => {
|
|
|
1420
1420
|
pattern: props?.attributes?.pattern,
|
|
1421
1421
|
disabled: props?.attributes?.readOnly,
|
|
1422
1422
|
minLength: props?.attributes?.minLength,
|
|
1423
|
-
className: `peer py-1.5 block w-full rounded
|
|
1424
|
-
focus:border-indigo-300 focus:ring focus:ring-indigo-200 focus:ring-opacity-50
|
|
1425
|
-
disabled:bg-slate-50 disabled:text-slate-500 disabled:border-slate-200 disabled:shadow-none
|
|
1423
|
+
className: `peer input mt-1 py-1.5 block w-full rounded shadow-sm transition-all duration-500 ease-in-out
|
|
1426
1424
|
${props?.inputClasses ? props.inputClasses : ``}
|
|
1427
1425
|
`
|
|
1428
1426
|
}
|
package/dist/index.mjs
CHANGED
|
@@ -432,9 +432,7 @@ var LineTextInput = (props) => {
|
|
|
432
432
|
pattern: props?.attributes?.pattern,
|
|
433
433
|
disabled: props?.attributes?.readOnly,
|
|
434
434
|
minLength: props?.attributes?.minLength,
|
|
435
|
-
className: `peer py-1.5 block w-full rounded
|
|
436
|
-
focus:border-indigo-300 focus:ring focus:ring-indigo-200 focus:ring-opacity-50
|
|
437
|
-
disabled:bg-slate-50 disabled:text-slate-500 disabled:border-slate-200 disabled:shadow-none
|
|
435
|
+
className: `peer input mt-1 py-1.5 block w-full rounded shadow-sm transition-all duration-500 ease-in-out
|
|
438
436
|
${props?.inputClasses ? props.inputClasses : ``}
|
|
439
437
|
`
|
|
440
438
|
}
|
package/package.json
CHANGED