jclib-ui 1.0.36 → 1.0.38

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
@@ -37,6 +37,7 @@ export { default as CheckBox } from './inputs/CheckBox';
37
37
  export { default as Input } from './inputs/Input';
38
38
  export { InputCheckBox } from './inputs/InputCheckBox';
39
39
  export { default as InputPassword } from './InputPass/InputPass';
40
+ export { default as InputBox } from './inputs/InputBox';
40
41
  export * from './inputs/inputs';
41
42
  export { default as LabelHint } from './labelHint/LabelHint';
42
43
  export { default as Loading } from './loading/Loading';
@@ -0,0 +1,3 @@
1
+ export default function InputBox({ children }: {
2
+ children: any;
3
+ }): import("react/jsx-runtime").JSX.Element;