kwant-ui 3.21.2 → 3.21.4
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/Charts/AreaChart/AreaChartData.d.ts +2 -10
- package/dist/components/Charts/WeekwiseBarChart/WeekwiseBarChartTypes.d.ts +1 -1
- package/dist/components/Charts/WorkerTimeChart/WorkerTimeChartUtils.d.ts +1 -0
- package/dist/index.es.js +241 -241
- package/dist/index.js +121 -121
- package/dist/package.json +1 -1
- package/dist/types/IconTypes.d.ts +1 -1
- package/package.json +1 -1
- package/dist/public/assets/icons/Compare.svg +0 -1
- package/dist/public/assets/icons/Notifications.svg +0 -1
- package/dist/public/assets/icons/Search.svg +0 -1
|
@@ -15,21 +15,13 @@ export declare const data: ({
|
|
|
15
15
|
workerConsistency: number;
|
|
16
16
|
date: string;
|
|
17
17
|
})[];
|
|
18
|
-
export declare const areas:
|
|
18
|
+
export declare const areas: {
|
|
19
19
|
dataKey: string;
|
|
20
20
|
color: string;
|
|
21
21
|
stroke: string;
|
|
22
22
|
fillOpacity: number;
|
|
23
23
|
name: string;
|
|
24
|
-
|
|
25
|
-
} | {
|
|
26
|
-
dataKey: string;
|
|
27
|
-
color: string;
|
|
28
|
-
stroke: string;
|
|
29
|
-
fillOpacity: number;
|
|
30
|
-
name: string;
|
|
31
|
-
legendType: string;
|
|
32
|
-
})[];
|
|
24
|
+
}[];
|
|
33
25
|
export declare const areasYAxisRight: {
|
|
34
26
|
dataKey: string;
|
|
35
27
|
color: string;
|
|
@@ -3,5 +3,6 @@ import { NameType, ValueType } from 'recharts/types/component/DefaultTooltipCont
|
|
|
3
3
|
import { Props as LabelListContentProps } from 'recharts/types/component/Label';
|
|
4
4
|
export declare const getX: (x: number, width: number) => number;
|
|
5
5
|
export declare const Divider: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
6
|
+
export declare const getHourConditionally: (hour: number) => string;
|
|
6
7
|
export declare const renderCustomizedLabel: (props: LabelListContentProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
8
|
export declare const WorkerTimeChartTooltip: (props: TooltipProps<ValueType, NameType>) => import("react/jsx-runtime").JSX.Element;
|