componenteshospitais 4.4.7 → 4.4.8
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/cjs/index.js +1 -1
- package/dist/esm/index.js +1 -1
- package/package.json +1 -1
- package/src/components/InputField.tsx +1 -1
package/dist/cjs/index.js
CHANGED
|
@@ -263,7 +263,7 @@ var InputField = function (_a) {
|
|
|
263
263
|
inputs.forEach(function (input) {
|
|
264
264
|
input.addEventListener('wheel', function (e) {
|
|
265
265
|
e.preventDefault(); // Impede a rolagem do mouse
|
|
266
|
-
});
|
|
266
|
+
}, { passive: true });
|
|
267
267
|
});
|
|
268
268
|
}
|
|
269
269
|
var empresaClass = empresa ? styles$7["empresa".concat(empresa)] : '';
|
package/dist/esm/index.js
CHANGED
|
@@ -261,7 +261,7 @@ var InputField = function (_a) {
|
|
|
261
261
|
inputs.forEach(function (input) {
|
|
262
262
|
input.addEventListener('wheel', function (e) {
|
|
263
263
|
e.preventDefault(); // Impede a rolagem do mouse
|
|
264
|
-
});
|
|
264
|
+
}, { passive: true });
|
|
265
265
|
});
|
|
266
266
|
}
|
|
267
267
|
var empresaClass = empresa ? styles$7["empresa".concat(empresa)] : '';
|
package/package.json
CHANGED