@ssa-ui-kit/templates 3.19.0 → 3.20.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/index.js +785 -346
- package/dist/projects/fintech/components/WidgetCard/Content.d.ts +4 -3
- package/dist/projects/fintech/pages/BotsPage/components/BotsNavigation/Navigation.d.ts +1 -1
- package/dist/projects/fintech/pages/BotsPage/components/BotsNavigation/types.d.ts +1 -1
- package/dist/projects/fintech/pages/Dashboard/components/PeriodFilter/hooks/usePeriodFilter.d.ts +1 -1
- package/dist/projects/fintech/pages/NotificationsPage/components/ReadAllButton/types.d.ts +1 -1
- package/dist/projects/hr/components/Events/components/EventInfoCell.d.ts +4 -6
- package/dist/projects/hr/components/Events/components/EventInfoPopoverTrigger.d.ts +4 -1
- package/dist/projects/hr/components/TableCell.d.ts +4 -6
- package/dist/projects/hr/components/WidgetCard/Content.d.ts +4 -3
- package/dist/tsbuildcache +1 -0
- package/package.json +8 -7
|
@@ -1,3 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
import type { ComponentProps } from 'react';
|
|
2
|
+
import { type StyledComponent } from '@emotion/styled';
|
|
3
|
+
import { CardContent } from '@ssa-ui-kit/core';
|
|
4
|
+
export declare const Content: StyledComponent<ComponentProps<typeof CardContent>>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { BotsNavigationProps } from './types';
|
|
2
|
-
export declare const BotsNavigation: ({ handleRunStateClick,
|
|
2
|
+
export declare const BotsNavigation: ({ handleRunStateClick, value, }: BotsNavigationProps) => import("@emotion/react/jsx-runtime").JSX.Element;
|
package/dist/projects/fintech/pages/Dashboard/components/PeriodFilter/hooks/usePeriodFilter.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ButtonGroupItem } from '@ssa-ui-kit/core';
|
|
2
2
|
import { PeriodRange, RequestPeriod } from '../../../../../types';
|
|
3
3
|
export declare const usePeriodFilter: (period: RequestPeriod, onClick: (period: RequestPeriod) => void) => {
|
|
4
|
-
selectedItem:
|
|
4
|
+
selectedItem: string | number;
|
|
5
5
|
initialRange: PeriodRange | undefined;
|
|
6
6
|
isOpen: boolean;
|
|
7
7
|
onButtonClick: (item: ButtonGroupItem) => void;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { Button } from '@ssa-ui-kit/core';
|
|
2
|
-
export type ReadAllButtonProps = Pick<React.ComponentProps<typeof Button>, 'onClick' | 'text' | '
|
|
2
|
+
export type ReadAllButtonProps = Pick<React.ComponentProps<typeof Button>, 'onClick' | 'text' | 'disabled'>;
|
|
@@ -1,6 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
theme?: import("@emotion/react").Theme;
|
|
6
|
-
}, {}, {}>;
|
|
1
|
+
import type { ComponentProps } from 'react';
|
|
2
|
+
import { type StyledComponent } from '@emotion/styled';
|
|
3
|
+
import { HRTableCell } from '../..';
|
|
4
|
+
export declare const EventInfoCell: StyledComponent<ComponentProps<typeof HRTableCell>>;
|
|
@@ -1,2 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
|
|
2
|
+
import { PopoverTrigger, TableRow } from '@ssa-ui-kit/core';
|
|
3
|
+
type EventInfoPopoverTriggerProps = React.HTMLProps<HTMLElement> & Parameters<typeof TableRow>[0] & Parameters<typeof PopoverTrigger>[0];
|
|
4
|
+
export declare const EventInfoPopoverTrigger: React.ForwardRefExoticComponent<EventInfoPopoverTriggerProps & React.RefAttributes<HTMLElement>>;
|
|
5
|
+
export {};
|
|
@@ -1,6 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
theme?: import("@emotion/react").Theme;
|
|
6
|
-
}, {}, {}>;
|
|
1
|
+
import type { ComponentProps } from 'react';
|
|
2
|
+
import { type StyledComponent } from '@emotion/styled';
|
|
3
|
+
import { TableCell } from '@ssa-ui-kit/core';
|
|
4
|
+
export declare const HRTableCell: StyledComponent<ComponentProps<typeof TableCell>>;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
import type { ComponentProps } from 'react';
|
|
2
|
+
import { type StyledComponent } from '@emotion/styled';
|
|
3
|
+
import { CardContent } from '@ssa-ui-kit/core';
|
|
4
|
+
export declare const Content: StyledComponent<ComponentProps<typeof CardContent>>;
|