@kingsimba/nc-ui 0.1.38 → 0.1.40

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.d.ts CHANGED
@@ -860,7 +860,7 @@ export declare interface NotificationRecord {
860
860
 
861
861
  export declare type NotificationType = 'warning' | 'danger' | 'success' | 'info' | null;
862
862
 
863
- export declare function NumberInput({ value, onChange, min, max, step, label, disabled, size }: NumberInputProps): JSX_2.Element;
863
+ export declare function NumberInput({ value, onChange, min, max, step, label, disabled, className, style, size }: NumberInputProps): JSX_2.Element;
864
864
 
865
865
  export declare interface NumberInputProps {
866
866
  /** Current numeric value */
@@ -877,6 +877,10 @@ export declare interface NumberInputProps {
877
877
  label?: string;
878
878
  /** Whether the input is disabled */
879
879
  disabled?: boolean;
880
+ /** Additional CSS class names for the input and spinner control */
881
+ className?: string;
882
+ /** Additional inline styles for the input and spinner control */
883
+ style?: default_2.CSSProperties;
880
884
  /** Size variant */
881
885
  size?: 'default' | 'small';
882
886
  }