kwant-ui 3.29.0 → 3.29.3

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,27 +1,27 @@
1
1
  import { YAxisProps } from 'recharts';
2
2
  import { Props as AreaProps } from 'recharts/types/cartesian/Area';
3
- export declare const data: ({
4
- name: string;
5
- actualWorkforce: number;
6
- budgetedWorkforce: number;
7
- workerConsistency: number;
3
+ export declare const data: {
4
+ day: string;
8
5
  date: string;
9
- prediction?: undefined;
10
- } | {
11
- name: string;
12
6
  actualWorkforce: number;
13
7
  budgetedWorkforce: number;
14
- prediction: number;
15
8
  workerConsistency: number;
16
- date: string;
17
- })[];
18
- export declare const areas: {
9
+ }[];
10
+ export declare const areaChartArea: ({
19
11
  dataKey: string;
20
12
  color: string;
21
13
  stroke: string;
22
14
  fillOpacity: number;
23
15
  name: string;
24
- }[];
16
+ legendType?: undefined;
17
+ } | {
18
+ dataKey: string;
19
+ color: string;
20
+ stroke: string;
21
+ fillOpacity: number;
22
+ name: string;
23
+ legendType: string;
24
+ })[];
25
25
  export declare const areasYAxisRight: {
26
26
  dataKey: string;
27
27
  color: string;
@@ -8,6 +8,7 @@ export type InfoAccordionProps = {
8
8
  additionalInfo?: Array<{
9
9
  title: string;
10
10
  description: string;
11
+ gdprRule?: boolean;
11
12
  }>;
12
13
  children?: string | JSX.Element | JSX.Element[];
13
14
  };