px-react-ui-components 1.0.20 → 1.0.21

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.
@@ -204,12 +204,12 @@ function MyInput({
204
204
 
205
205
  // Eğer değer değişmediyse güncelleme yapma
206
206
  if (newValue === myValue) return;
207
- if (type === MyInputType.NUMBER) {
207
+ if (type === MyInputType.NUMBER && newValue) {
208
208
  // Sadece 0-9 arası rakamlara izin ver
209
209
  newValue = newValue.replace(/[^0-9]/g, '');
210
210
 
211
211
  // min ve max kontrolü
212
- if (min && newValue < min) newValue = min.toString();else if (max && newValue > max) newValue = max.toString();
212
+ if (min && newValue < min) newValue = min;else if (max && newValue > max) newValue = max;
213
213
  }
214
214
  if (type === MyInputType.TEXT || type === MyInputType.TEXTAREA) {
215
215
  newValue = newValue.trim();
@@ -503,7 +503,7 @@ function MyInput({
503
503
  children: /*#__PURE__*/(0, _jsxRuntime.jsx)("input", {
504
504
  ref: ref,
505
505
  id: id,
506
- type: "number",
506
+ type: "text",
507
507
  value: myValue,
508
508
  onChange: handleChange,
509
509
  placeholder: placeholder,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "px-react-ui-components",
3
- "version": "1.0.20",
3
+ "version": "1.0.21",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.js",
6
6
  "type": "commonjs",