@maltjoy/core-vue 5.23.0 → 5.23.1
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.
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
import type { VJoyInputProps } from '../JoyInput/JoyInput.types';
|
|
2
|
-
type VJoyInputNumberProps = Omit<VJoyInputProps, 'clearable' | 'clearAriaLabel'
|
|
2
|
+
type VJoyInputNumberProps = Omit<VJoyInputProps, 'clearable' | 'clearAriaLabel'> & {
|
|
3
|
+
/** Unit label displayed on the right side of the number input. */
|
|
4
|
+
unit?: string;
|
|
5
|
+
};
|
|
3
6
|
declare function focus(): void;
|
|
4
7
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<VJoyInputNumberProps, {
|
|
5
8
|
focus: typeof focus;
|