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.
@@ -1,4 +1,4 @@
1
- import { IconSize, IconType } from "../../types";
1
+ import { IconSize, IconType } from '../../types';
2
2
  interface GetSvgIcon {
3
3
  iconType: IconType;
4
4
  iconSize?: IconSize;
@@ -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>;
@@ -0,0 +1,6 @@
1
+ interface CalendarProps {
2
+ width?: string;
3
+ height?: string;
4
+ }
5
+ declare const Calendar: ({ width, height }: CalendarProps) => JSX.Element;
6
+ export default Calendar;
@@ -0,0 +1,6 @@
1
+ interface KebabProps {
2
+ width?: string;
3
+ height?: string;
4
+ }
5
+ declare const Kebab: ({ width, height }: KebabProps) => JSX.Element;
6
+ export default Kebab;