kwant-ui 3.33.6-alpha.0 → 3.33.6-stable.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.
- package/dist/components/Charts/AreaChart/AreaChartStyled.d.ts +3 -0
- package/dist/components/Charts/AreaChart/AreaChartTypes.d.ts +1 -0
- package/dist/components/Charts/AreaChart/AreaChartUtils.d.ts +1 -1
- package/dist/components/Charts/LineChart/LineChartData.d.ts +3 -8
- package/dist/components/Charts/LineChart/LineChartUtils.d.ts +1 -1
- package/dist/components/Charts/StackedBarChart/StackedBarChartData.d.ts +5 -14
- package/dist/components/Charts/StackedBarChart/StackedBarChartTypes.d.ts +1 -0
- package/dist/components/Charts/StackedBarChart/StackedBarChartUtils.d.ts +1 -0
- package/dist/components/Datepicker/Datepicker.d.ts +2 -1
- package/dist/components/Datepicker/types.d.ts +1 -0
- package/dist/components/HoverCalendar/types.d.ts +1 -0
- package/dist/components/Select/Select.d.ts +2 -1
- package/dist/hooks/useFullScreenFeature.d.ts +5 -0
- package/dist/index.es.js +75 -63
- package/dist/index.js +75 -63
- package/dist/package.json +1 -1
- package/package.json +1 -1
- package/utils/formatDate.ts +1 -4
|
@@ -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>;
|
|
@@ -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
|
-
|
|
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;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
1
2
|
import { IDatepicker } from './types';
|
|
2
|
-
declare const Datepicker: (
|
|
3
|
+
declare const Datepicker: import("react").ForwardRefExoticComponent<Omit<IDatepicker.Props, "ref"> & import("react").RefAttributes<HTMLInputElement>>;
|
|
3
4
|
export { Datepicker };
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
1
2
|
import { ISelect } from './Select.types';
|
|
2
|
-
declare const Select: (
|
|
3
|
+
declare const Select: import("react").ForwardRefExoticComponent<ISelect.Props & import("react").RefAttributes<HTMLInputElement>>;
|
|
3
4
|
export { Select };
|