kwant-ui 3.33.7-alpha.0 → 3.33.7-dev.1

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.
@@ -17,3 +17,6 @@ export declare const TooltipItemColor: import("styled-components").StyledCompone
17
17
  }, never>;
18
18
  export declare const TooltipItemLabel: import("styled-components").StyledComponent<"span", any, {}, never>;
19
19
  export declare const TooltipItemRight: import("styled-components").StyledComponent<"span", any, {}, never>;
20
+ export declare const FullScreenIconContainer: import("styled-components").StyledComponent<"div", any, {
21
+ fullScreen: boolean;
22
+ }, never>;
@@ -49,6 +49,7 @@ export declare namespace IAreaChart {
49
49
  areaProps?: AreaProps;
50
50
  areaYAxisRightProps?: AreaProps;
51
51
  customTooltipLabelFormatter?: (label: any) => string;
52
+ fullScreenFeature?: boolean;
52
53
  dateFormat?: string;
53
54
  };
54
55
  type Area = {
@@ -14,7 +14,7 @@ export declare const TickX: (props: {
14
14
  dateFormat: string;
15
15
  rotate?: number;
16
16
  }) => import("react/jsx-runtime").JSX.Element;
17
- export declare const tooltipLabelFormatter: (label: string) => string;
17
+ export declare const tooltipLabelFormatter: (label: string, dateFormat: string) => string;
18
18
  export declare const TooltipItemRow: ({ color, name, value, shape, }: {
19
19
  color?: string;
20
20
  name?: string;
@@ -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;
@@ -1,20 +1,11 @@
1
1
  import { YAxisProps } from 'recharts';
2
2
  import { Props as StackedBarProps } from 'recharts/types/cartesian/Area';
3
- export declare const data: ({
4
- name: string;
5
- actualWorkforce: number;
6
- budgetedWorkforce: number;
7
- workerConsistency: number;
8
- date: string;
9
- prediction?: undefined;
10
- } | {
11
- name: string;
12
- actualWorkforce: number;
13
- budgetedWorkforce: number;
14
- prediction: number;
15
- workerConsistency: number;
3
+ export declare const data: {
16
4
  date: string;
17
- })[];
5
+ productiveHour: number;
6
+ unproductiveHour: number;
7
+ totalHour: number;
8
+ }[];
18
9
  export declare const areas: {
19
10
  dataKey: string;
20
11
  color: string;
@@ -37,6 +37,7 @@ export declare namespace IStackedBarChart {
37
37
  yAxisRightProps?: YAxisProps;
38
38
  areaProps?: AreaProps;
39
39
  areaYAxisRightProps?: AreaProps;
40
+ formattedXTick?: boolean;
40
41
  customTooltipLabelFormatter?: (label: any) => string;
41
42
  customYAxisTickFormatter?: (value: any) => string;
42
43
  dateFormat?: string;
@@ -21,4 +21,5 @@ export declare const CustomTooltip: (props: TooltipProps<ValueType, NameType> &
21
21
  showHourRows?: boolean;
22
22
  showTimeRows?: boolean;
23
23
  dateFormat?: string;
24
+ isDateFormatted?: boolean;
24
25
  }) => import("react/jsx-runtime").JSX.Element;
@@ -5,11 +5,5 @@ export declare const workerTimeChartOrganizedData: {
5
5
  checkOutTime: string;
6
6
  workTime: number;
7
7
  overtime: number;
8
- overTime: number;
9
- date: string;
10
- checkIn: number;
11
- checkOut: number;
12
- formattedCheckIn: string;
13
- formattedCheckOut: string;
14
8
  }[];
15
9
  export declare const processDataForWorkerTimeChart: (rawData: any[]) => any[];
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { IDatepicker } from './types';
2
- declare const Datepicker: (props: IDatepicker.Props) => import("react/jsx-runtime").JSX.Element;
3
+ declare const Datepicker: import("react").ForwardRefExoticComponent<Omit<IDatepicker.Props, "ref"> & import("react").RefAttributes<HTMLInputElement>>;
3
4
  export { Datepicker };
@@ -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;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { ISelect } from './Select.types';
2
- declare const Select: (props: ISelect.Props) => import("react/jsx-runtime").JSX.Element;
3
+ declare const Select: import("react").ForwardRefExoticComponent<ISelect.Props & import("react").RefAttributes<HTMLInputElement>>;
3
4
  export { Select };
@@ -0,0 +1,5 @@
1
+ declare const useFullScreenFeature: (containerRef: any) => {
2
+ fullScreenEnterExitRequest: () => void;
3
+ fullScreen: boolean;
4
+ };
5
+ export default useFullScreenFeature;