jclib-ui 1.0.148 → 1.0.150
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/formDesk/formDesk.d.ts +26 -0
- package/dist/formDesk/formDesk.styles.d.ts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/inputs/Formats.d.ts +1 -1
- package/dist/jclib-ui.css +1 -1
- package/dist/jclib-ui.es.js +150 -16
- package/dist/jclib-ui.es.js.map +1 -1
- package/dist/jclib-ui.umd.js +68 -4
- package/dist/jclib-ui.umd.js.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
export default function FormDesk({ children, labelWidth, sizeBreak, lineShortWidth, gap, ...rest }: {
|
|
2
|
+
[x: string]: any;
|
|
3
|
+
children: any;
|
|
4
|
+
labelWidth?: number | undefined;
|
|
5
|
+
sizeBreak?: number | undefined;
|
|
6
|
+
lineShortWidth?: number | undefined;
|
|
7
|
+
gap?: string | undefined;
|
|
8
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
export function FormDeskLine({ children, label, isShort, className, classNameLabel, classNameCol, extraComp, inpWidth, ...rest }: {
|
|
10
|
+
[x: string]: any;
|
|
11
|
+
children: any;
|
|
12
|
+
label?: string | undefined;
|
|
13
|
+
isShort?: boolean | undefined;
|
|
14
|
+
className?: string | undefined;
|
|
15
|
+
classNameLabel?: string | undefined;
|
|
16
|
+
classNameCol?: string | undefined;
|
|
17
|
+
extraComp: any;
|
|
18
|
+
inpWidth: any;
|
|
19
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
20
|
+
export function FormDeskGrid({ grid, gap, className, children, ...rest }: {
|
|
21
|
+
[x: string]: any;
|
|
22
|
+
grid: any;
|
|
23
|
+
gap?: number | undefined;
|
|
24
|
+
className?: string | undefined;
|
|
25
|
+
children: any;
|
|
26
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const Container: import('styled-components').StyledComponent<"div", any, {}, never>;
|
package/dist/index.d.ts
CHANGED
|
@@ -61,6 +61,7 @@ export { CheckUpdates } from './update/update';
|
|
|
61
61
|
export { ScrollContainer } from './ScrollContainer/ScrollContainer';
|
|
62
62
|
export { default as BoxSearch } from './BoxSearch/BoxSearch';
|
|
63
63
|
export { default as PrintButtons } from './printButtons/printButtons';
|
|
64
|
+
export { FormDeskGrid, FormDeskLine, default as FormDesk } from './formDesk/formDesk';
|
|
64
65
|
export { useLocalForage } from './hooks/useLocalForage';
|
|
65
66
|
export { default as useParamId } from './hooks/useParamId';
|
|
66
67
|
export { default as useQuery } from './hooks/useQuery';
|
package/dist/inputs/Formats.d.ts
CHANGED
|
@@ -15,6 +15,6 @@ export function FormatPercent({ value, decimalScale, ...rest }: {
|
|
|
15
15
|
decimalScale?: number | undefined;
|
|
16
16
|
}): import("react/jsx-runtime").JSX.Element;
|
|
17
17
|
export function FormatData({ value, incHour }: {
|
|
18
|
-
value?:
|
|
18
|
+
value?: string | undefined;
|
|
19
19
|
incHour?: boolean | undefined;
|
|
20
20
|
}): string;
|