kwant-ui 3.33.13-alpha.0 → 3.34.0-alpha.0

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,14 +1,9 @@
1
1
  import { YAxisProps } from 'recharts';
2
2
  import { Props as LineProps } from 'recharts/types/cartesian/Line';
3
- export declare const data: ({
4
- etc: number;
3
+ export declare const data: {
5
4
  date: string;
6
- klm?: undefined;
7
- } | {
8
- etc: number;
9
- klm: number;
10
- date: string;
11
- })[];
5
+ ATF: number;
6
+ }[];
12
7
  export declare const lines: {
13
8
  dataKey: string;
14
9
  color: string;
@@ -12,7 +12,7 @@ export declare const TickX: (props: {
12
12
  payload?: any;
13
13
  dateFormat: string;
14
14
  }) => import("react/jsx-runtime").JSX.Element;
15
- export declare const tooltipLabelFormatter: (label: string) => string;
15
+ export declare const tooltipLabelFormatter: (label: string, dateFormat: string) => string;
16
16
  export declare const TooltipItemRow: ({ color, name, value, }: {
17
17
  color?: string;
18
18
  name?: string;
@@ -11,6 +11,7 @@ export declare namespace IDatepicker {
11
11
  errorMessage?: string;
12
12
  calendarRef?: any;
13
13
  inputProps?: InputComponent.Props;
14
+ dateFormat?: string;
14
15
  };
15
16
  enum DatpickerNavigationDirectionEnum {
16
17
  right = "right",
@@ -8,6 +8,7 @@ export type HIStyles = {
8
8
  placeholder?: string;
9
9
  onSelect?: any;
10
10
  editMode?: boolean;
11
+ dateFormat?: string;
11
12
  numberOfMonths?: 1 | 2;
12
13
  disableEdit?: boolean;
13
14
  datepickerProps?: IDatepicker.Props;