qlu-20-ui-library 1.1.6 → 1.1.8
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/components/GetSvgIcon/index.d.ts +1 -1
- package/dist/components/NumberInputField/index.d.ts +2 -1
- package/dist/components/SearchPersonTable/index.d.ts +3 -3
- package/dist/components/Svg/Calendar.d.ts +6 -0
- package/dist/components/Svg/Kebab.d.ts +6 -0
- package/dist/library.es.js +1939 -1928
- package/dist/library.umd.js +16 -16
- package/dist/types.d.ts +3 -1
- package/package.json +1 -1
|
@@ -2,6 +2,7 @@ interface NumberInputFieldProps {
|
|
|
2
2
|
initialNumber?: number;
|
|
3
3
|
props?: object;
|
|
4
4
|
placeholder?: string;
|
|
5
|
+
handleChange?: (value: number) => void;
|
|
5
6
|
}
|
|
6
|
-
declare const NumberInputField: ({ initialNumber, props, placeholder }: NumberInputFieldProps) => JSX.Element;
|
|
7
|
+
declare const NumberInputField: ({ initialNumber, props, placeholder, handleChange, }: NumberInputFieldProps) => JSX.Element;
|
|
7
8
|
export default NumberInputField;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { SearchPersonTableType } from '../../types';
|
|
3
3
|
interface SearchPersonTableProps {
|
|
4
|
-
onCheckClick: () => void;
|
|
5
|
-
onNameClick: () => void;
|
|
6
|
-
onCompanyClick: () => void;
|
|
4
|
+
onCheckClick: (publicIdentifier: string) => void;
|
|
5
|
+
onNameClick: (publicIdentifier: string) => void;
|
|
6
|
+
onCompanyClick: (publicIdentifier: string) => void;
|
|
7
7
|
personsData: SearchPersonTableType[];
|
|
8
8
|
}
|
|
9
9
|
declare const SearchPersonTable: React.FC<SearchPersonTableProps>;
|