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.
- package/dist/BoxSearch/BoxSearch.d.ts +1 -0
- package/dist/FormConsulta/FormConsulta.d.ts +1 -1
- package/dist/FormConsulta/FormConsulta.types.d.ts +1 -0
- package/dist/buttonClose/buttonHelp.d.ts +3 -0
- package/dist/formEdit/formEdit.d.ts +2 -1
- package/dist/icones/Icones.d.ts +1 -0
- package/dist/jclib-ui.css +1 -1
- package/dist/jclib-ui.es.js +464 -418
- package/dist/jclib-ui.es.js.map +1 -1
- package/dist/jclib-ui.umd.js +29 -21
- package/dist/jclib-ui.umd.js.map +1 -1
- package/dist/modal/modalHeader.d.ts +2 -1
- package/dist/modalBox/ModalBox.d.ts +1 -0
- package/dist/modalFilter/modalFilter.d.ts +1 -0
- package/dist/navbar/Navbar.d.ts +2 -1
- package/dist/panel/panel.d.ts +7 -4
- package/dist/qrCodeReader/qrCodeReader.d.ts +2 -1
- package/package.json +1 -1
|
@@ -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;
|
|
@@ -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 {};
|
package/dist/icones/Icones.d.ts
CHANGED
|
@@ -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 }: {
|