kwant-ui 3.33.5-stable.0 → 3.33.5

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
  };
53
54
  type Area = {
54
55
  dataKey: string;
@@ -1,9 +1,9 @@
1
1
  export declare const getMilliseconds: (hour: number, min: number, sec: number) => number;
2
2
  export declare const workerTimeChartOrganizedData: {
3
- date: string;
4
- checkIn: string;
5
- checkOut: string;
3
+ workDate: string;
4
+ checkInTime: string;
5
+ checkOutTime: string;
6
6
  workTime: number;
7
- overTime: number;
7
+ overtime: number;
8
8
  }[];
9
9
  export declare const processDataForWorkerTimeChart: (rawData: any[]) => any[];
@@ -26,6 +26,7 @@ export declare namespace IWorkerTimeChart {
26
26
  dataKeyX: string;
27
27
  dataKeyCheckIn?: string;
28
28
  dataKeyCheckOut?: string;
29
+ dataKeyCheckInOut?: string;
29
30
  dataKeyWorkTime?: string;
30
31
  dataKeyOverTime?: string;
31
32
  legends?: IWeekwiseBarChart.CustomLegendType[];
@@ -5,6 +5,7 @@ export declare const getX: (x: number, width: number) => number;
5
5
  export declare const Divider: import("styled-components").StyledComponent<"div", any, {}, never>;
6
6
  export declare const getHourConditionally: (hour: number) => string;
7
7
  export declare const renderCustomizedLabel: (props: LabelListContentProps) => import("react/jsx-runtime").JSX.Element;
8
+ export declare const CheckInOutConnectorLine: (props: any) => import("react/jsx-runtime").JSX.Element;
8
9
  export declare const WorkerTimeChartTooltip: (props: TooltipProps<ValueType, NameType> & {
9
10
  showHourRows?: boolean;
10
11
  showTimeRows?: boolean;
@@ -0,0 +1,5 @@
1
+ declare const useFullScreenFeature: (containerRef: any) => {
2
+ fullScreenEnterExitRequest: () => void;
3
+ fullScreen: boolean;
4
+ };
5
+ export default useFullScreenFeature;