jclib-ui 0.0.65 → 1.0.0-0

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
@@ -33,7 +33,6 @@ export { default as InputPesquisa } from './inputPesquisa/inputPesquisa';
33
33
  export { default as InputQRCode } from './inputQRCode/inputQRCode';
34
34
  export { default as CheckBox } from './inputs/CheckBox';
35
35
  export { default as Input } from './inputs/Input';
36
- export { InputCheckBox } from './inputs/InputCheckBox';
37
36
  export * from './inputs/inputs';
38
37
  export { default as LabelHint } from './labelHint/LabelHint';
39
38
  export { default as Loading } from './loading/Loading';
@@ -64,4 +63,17 @@ export { createMenuOptions } from './navbar/OpcoesMenu';
64
63
  /**
65
64
  * ------- Verificar --------
66
65
  * -- InputCheckBox -> "parece um toggle repetido, se for o caso remover"
66
+ * -- LoadingReport -> "precisa do useApi"
67
+ */
68
+ /**
69
+ * NavBar
70
+ * Precisa ser repensado.
71
+ * - pois depende de contextos específicos como de usuários
72
+ * - e criação da lista de menus para renderizar dependendo do projeto
73
+ *
74
+ * export { MenuOption } from './navbar/MenuOption'
75
+ * export { default as NavBar } from './navbar/Navbar'
76
+ * export { darkColors, darkLightColors, lightColors } from './navbar/NavbarColors'
77
+ *
78
+ * NavBar
67
79
  */
@@ -1,7 +1,5 @@
1
- export function InputCheckBox({ disabled, children, name, checked, onChange }: {
1
+ export function InputCheckBox({ disabled, children, ...rest }: {
2
+ [x: string]: any;
2
3
  disabled: any;
3
4
  children: any;
4
- name: any;
5
- checked: any;
6
- onChange: any;
7
5
  }): import("react/jsx-runtime").JSX.Element;