@julseb-lib/react 1.0.60 → 1.0.62
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.cjs +10 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +10 -2
- package/dist/index.js.map +1 -1
- package/dist/types/components-props.d.cts +3 -1
- package/dist/types/components-props.d.ts +3 -1
- package/package.json +1 -1
|
@@ -433,6 +433,8 @@ type ILibInputCounterBase = Omit<LibComponentBase<HTMLInputElement>, "element">
|
|
|
433
433
|
min?: number;
|
|
434
434
|
max?: number;
|
|
435
435
|
step?: number;
|
|
436
|
+
onClickPlus?: () => void;
|
|
437
|
+
onClickMinus?: () => void;
|
|
436
438
|
type?: never;
|
|
437
439
|
children?: never;
|
|
438
440
|
};
|
|
@@ -524,7 +526,7 @@ type ILibInputPin = Omit<LibComponentBase<HTMLDivElement>, "element"> & Omit<ILi
|
|
|
524
526
|
};
|
|
525
527
|
|
|
526
528
|
type ILibFieldset = Omit<LibComponentBase<HTMLFieldSetElement>, "element"> & Omit<ILibInputCommon, "inputBackground" | "inputVariant" | "label" | "labelComment" | "helper"> & ILibInputWithValidation & {
|
|
527
|
-
legend:
|
|
529
|
+
legend: ReactChildren;
|
|
528
530
|
borderRadius?: LibRadiuses;
|
|
529
531
|
};
|
|
530
532
|
|
|
@@ -433,6 +433,8 @@ type ILibInputCounterBase = Omit<LibComponentBase<HTMLInputElement>, "element">
|
|
|
433
433
|
min?: number;
|
|
434
434
|
max?: number;
|
|
435
435
|
step?: number;
|
|
436
|
+
onClickPlus?: () => void;
|
|
437
|
+
onClickMinus?: () => void;
|
|
436
438
|
type?: never;
|
|
437
439
|
children?: never;
|
|
438
440
|
};
|
|
@@ -524,7 +526,7 @@ type ILibInputPin = Omit<LibComponentBase<HTMLDivElement>, "element"> & Omit<ILi
|
|
|
524
526
|
};
|
|
525
527
|
|
|
526
528
|
type ILibFieldset = Omit<LibComponentBase<HTMLFieldSetElement>, "element"> & Omit<ILibInputCommon, "inputBackground" | "inputVariant" | "label" | "labelComment" | "helper"> & ILibInputWithValidation & {
|
|
527
|
-
legend:
|
|
529
|
+
legend: ReactChildren;
|
|
528
530
|
borderRadius?: LibRadiuses;
|
|
529
531
|
};
|
|
530
532
|
|