@leapdevuk/component-toolbox 0.0.61 → 0.0.63

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.
@@ -8,6 +8,7 @@ export * from './dialog';
8
8
  export * from './formdialog';
9
9
  export * from './footer';
10
10
  export * from './loader';
11
+ export * from './numberdisplay';
11
12
  export * from './numberinput';
12
13
  export * from './select';
13
14
  export * from './typography';
@@ -0,0 +1,13 @@
1
+ interface IProps {
2
+ align?: "inherit" | "left" | "center" | "right" | "justify";
3
+ bold?: boolean;
4
+ color?: string;
5
+ displayAsQty?: boolean;
6
+ hideNoValue?: boolean;
7
+ notCurrency?: boolean;
8
+ showNegative?: boolean;
9
+ showPrefix?: boolean;
10
+ value?: number;
11
+ }
12
+ declare const LCTNumberDisplay: ({ align, bold, color, displayAsQty, hideNoValue, notCurrency, showNegative, showPrefix, value, }: IProps) => import("react/jsx-runtime").JSX.Element;
13
+ export default LCTNumberDisplay;
@@ -0,0 +1 @@
1
+ export { default as LCTNumberDisplay } from './NumberDisplay';
@@ -3,10 +3,11 @@ interface IProps {
3
3
  decimalScale?: number;
4
4
  disabled?: boolean;
5
5
  placeholder?: string;
6
- updater?: (event: any) => void;
6
+ prefix?: string;
7
7
  size?: "medium" | "small";
8
+ updater?: (event: any) => void;
8
9
  value?: number;
9
10
  width?: number;
10
11
  }
11
- declare const LCTNumberInput: ({ autoFocus, disabled, placeholder, size, updater, value, width, ...props }: IProps) => import("react/jsx-runtime").JSX.Element;
12
+ declare const LCTNumberInput: ({ autoFocus, decimalScale, disabled, placeholder, prefix, size, updater, value, width, ...props }: IProps) => import("react/jsx-runtime").JSX.Element;
12
13
  export default LCTNumberInput;