jclib-ui 1.0.180 → 1.0.181

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.
@@ -13,6 +13,7 @@ type Props = {
13
13
  renderLine?: (item) => ReactNode
14
14
  onClick: (keyValue, item) => void
15
15
  maxWidth?: number
16
+ helpLink?: string
16
17
  }
17
18
 
18
19
  export default function BoxSearch(props: Props)
@@ -1,3 +1,3 @@
1
1
  import { FormConsultaProps } from './FormConsulta.types';
2
2
 
3
- export default function FormConsulta({ titulo, rotaApi, headersApi, rotaApp, cols, ordens, ordemPadrao, campoChave, placeHolder, msgSemDados, getLineColor, }: FormConsultaProps): import("react/jsx-runtime").JSX.Element;
3
+ export default function FormConsulta({ titulo, rotaApi, headersApi, rotaApp, cols, ordens, ordemPadrao, campoChave, placeHolder, msgSemDados, helpLink, getLineColor, }: FormConsultaProps): import("react/jsx-runtime").JSX.Element;
@@ -15,6 +15,7 @@ export type FormConsultaProps = {
15
15
  ordemPadrao: number;
16
16
  campoChave: string;
17
17
  placeHolder?: string;
18
+ helpLink?: string;
18
19
  msgSemDados?: string | ReactNode;
19
20
  getLineColor?: (line: any) => string;
20
21
  };
@@ -0,0 +1,3 @@
1
+ export default function ButtonHelp({ ...rest }: {
2
+ [x: string]: any;
3
+ }): import("react/jsx-runtime").JSX.Element;
@@ -8,7 +8,8 @@ type FormEditProps = {
8
8
  goBack?: boolean;
9
9
  goHome?: boolean;
10
10
  onClose?: () => void;
11
+ helpLink?: string;
11
12
  children?: ReactNode;
12
13
  };
13
- export default function FormEdit({ title, count, codigo, maxWidth, goBack, goHome, onClose, children, }: FormEditProps): import("react/jsx-runtime").JSX.Element;
14
+ export default function FormEdit({ title, count, codigo, maxWidth, goBack, goHome, onClose, helpLink, children, }: FormEditProps): import("react/jsx-runtime").JSX.Element;
14
15
  export {};
@@ -21,6 +21,7 @@ export function IconeSearchPlus(): import("react/jsx-runtime").JSX.Element;
21
21
  export function IconeChevron(): import("react/jsx-runtime").JSX.Element;
22
22
  export function IconePrint(): import("react/jsx-runtime").JSX.Element;
23
23
  export function IconeEmail(): import("react/jsx-runtime").JSX.Element;
24
+ export function IconeHelp(): import("react/jsx-runtime").JSX.Element;
24
25
  export function IconeEncerrarAno(): import("react/jsx-runtime").JSX.Element;
25
26
  export function IconeSoma(): import("react/jsx-runtime").JSX.Element;
26
27
  export function IconeOpenLink({ ...rest }: {