jclib-ui 1.0.103 → 1.0.104

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,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  type Item = {
3
2
  title: string;
4
3
  icon: React.ReactNode;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  type InputTypes = 'button' | 'checkbox' | 'color' | 'date' | 'datetime-local' | 'email' | 'file' | 'hidden' | 'image' | 'month' | 'number' | 'password' | 'radio' | 'range' | 'reset' | 'search' | 'submit' | 'tel' | 'text' | 'time' | 'url' | 'week' | 'cpf' | 'cnpj' | 'codigo' | 'fone' | 'uf' | 'hora';
3
2
  type Variants = {
4
3
  type: 'percent' | 'quant' | 'real';
@@ -11,6 +11,6 @@
11
11
  export default function InputCep({ dados, setDados, onSearch, ...rest }: {
12
12
  dados?: {};
13
13
  setDados?: (value: any) => void;
14
- onSearch?: (result) => void;
14
+ onSearch?: (result: any) => void;
15
15
  [x: string]: any;
16
16
  }): React.JSX.Element;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  export type InputFinderProps = {
3
2
  children: React.ReactNode;
4
3
  findTitle?: string;