@fattureincloud/fic-design-system 0.7.21 → 0.7.22
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/components/form/inputText/InputText.d.ts +1 -0
- package/dist/components/form/inputText/components/InputElement.d.ts +1 -0
- package/dist/components/form/inputText/types.d.ts +1 -0
- package/dist/components/newTable/components/row/LoadingRow.d.ts +9 -0
- package/dist/index.esm.js +3 -3
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
@@ -23,5 +23,6 @@ declare const _default: React.ForwardRefExoticComponent<import("../label").Label
|
|
23
23
|
tooltip?: import("../../tooltip").TooltipProps | undefined;
|
24
24
|
unitDropdownProps?: import(".").UnitDropdownProps | undefined;
|
25
25
|
value?: string | number | null | undefined;
|
26
|
+
autoComplete?: string | undefined;
|
26
27
|
} & React.RefAttributes<HTMLInputElement>>;
|
27
28
|
export default _default;
|
@@ -28,5 +28,6 @@ declare const _default: React.ForwardRefExoticComponent<import("../../common/typ
|
|
28
28
|
tooltip?: import("../../../tooltip").TooltipProps | undefined;
|
29
29
|
unitDropdownProps?: import("./UnitDropdown").UnitDropdownProps | undefined;
|
30
30
|
value?: string | number | null | undefined;
|
31
|
+
autoComplete?: string | undefined;
|
31
32
|
} & React.RefAttributes<inputRef>>;
|
32
33
|
export default _default;
|
@@ -20,6 +20,7 @@ export declare type InputElementProps = CommonFormTypes & HTMLInputProps & {
|
|
20
20
|
tooltip?: TooltipProps;
|
21
21
|
unitDropdownProps?: UnitDropdownProps;
|
22
22
|
value?: number | string | null;
|
23
|
+
autoComplete?: string;
|
23
24
|
};
|
24
25
|
export declare type InputCodeProps = LabelProps & CommonFormTypes & Omit<HTMLInputProps, 'onChange'> & {
|
25
26
|
allowLetters?: boolean;
|
@@ -0,0 +1,9 @@
|
|
1
|
+
/// <reference types="react" />
|
2
|
+
import { ColumnDef } from '@tanstack/react-table';
|
3
|
+
import { CellProps } from '../../types';
|
4
|
+
interface Props<T> {
|
5
|
+
loadingMode: 'full' | 'cell';
|
6
|
+
columns: ColumnDef<T, CellProps>[];
|
7
|
+
}
|
8
|
+
declare const LoadingRow: <T>({ columns, loadingMode }: Props<T>) => JSX.Element;
|
9
|
+
export default LoadingRow;
|