@ssa-ui-kit/templates 2.19.1 → 2.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.
@@ -1,10 +1,10 @@
1
- import { BotsTableCell } from '@ssa-ui-kit/widgets';
2
- interface TableCellWithLinkProps extends React.PropsWithChildren<Parameters<typeof BotsTableCell>[0]> {
1
+ import { TableCell } from '@ssa-ui-kit/core';
2
+ interface TableCellWithLinkProps extends React.PropsWithChildren<Parameters<typeof TableCell>[0]> {
3
3
  includeLink?: boolean;
4
4
  href?: string;
5
5
  }
6
6
  export declare const TableCellWithLink: ({ children, includeLink, href, ...rest }: TableCellWithLinkProps) => import("@emotion/react/jsx-runtime").JSX.Element;
7
- export declare const InformationLinkCell: ({ children, ...rest }: React.PropsWithChildren<Parameters<typeof BotsTableCell>[0]> & {
7
+ export declare const InformationLinkCell: ({ children, ...rest }: React.PropsWithChildren<Parameters<typeof TableCell>[0]> & {
8
8
  includeLink?: boolean;
9
9
  }) => import("@emotion/react/jsx-runtime").JSX.Element;
10
10
  export {};
@@ -2,6 +2,5 @@ export * from './Actions';
2
2
  export * from './CreationTime';
3
3
  export * from './Body';
4
4
  export * from './Header';
5
- export * from './TableRow';
6
5
  export * from './BotTableName';
7
6
  export * from './BotTooltip';
@@ -2,8 +2,6 @@ import React from 'react';
2
2
  export declare const EventInfoPopoverTrigger: React.ForwardRefExoticComponent<Omit<React.HTMLProps<HTMLElement> & {
3
3
  theme?: import("@emotion/react").Theme;
4
4
  as?: React.ElementType;
5
- } & import("@ssa-ui-kit/core").CommonProps & React.ClassAttributes<HTMLTableRowElement> & React.HTMLAttributes<HTMLTableRowElement> & {
6
- theme?: import("@emotion/react").Theme;
7
- } & {
5
+ } & import("@ssa-ui-kit/core").CommonProps & {
8
6
  isDisabled?: boolean;
9
- } & Omit<React.HTMLProps<HTMLElement> & import("@ssa-ui-kit/core/dist/components/Button/types").ButtonProps & import("@ssa-ui-kit/core/dist/components/Popover/types").PopoverTriggerProps, "ref"> & React.RefAttributes<HTMLElement>, "ref"> & React.RefAttributes<HTMLElement>>;
7
+ } & React.ClassAttributes<HTMLTableRowElement> & React.HTMLAttributes<HTMLTableRowElement> & Omit<React.HTMLProps<HTMLElement> & import("@ssa-ui-kit/core/dist/components/Button/types").ButtonProps & import("@ssa-ui-kit/core/dist/components/Popover/types").PopoverTriggerProps, "ref"> & React.RefAttributes<HTMLElement>, "ref"> & React.RefAttributes<HTMLElement>>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ssa-ui-kit/templates",
3
- "version": "2.19.1",
3
+ "version": "2.20.0",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "private": false,
@@ -33,10 +33,10 @@
33
33
  "react-plotly.js": "^2.6.0",
34
34
  "react-toastify": "^11.0.3",
35
35
  "usehooks-ts": "^3.1.0",
36
- "@ssa-ui-kit/core": "^2.19.1",
37
- "@ssa-ui-kit/hooks": "^2.19.1",
38
- "@ssa-ui-kit/utils": "^2.19.1",
39
- "@ssa-ui-kit/widgets": "^2.19.1"
36
+ "@ssa-ui-kit/core": "^2.20.0",
37
+ "@ssa-ui-kit/hooks": "^2.20.0",
38
+ "@ssa-ui-kit/utils": "^2.20.0",
39
+ "@ssa-ui-kit/widgets": "^2.20.0"
40
40
  },
41
41
  "devDependencies": {
42
42
  "@emotion/css": "^11.13.5",
@@ -1,6 +0,0 @@
1
- export declare const TableRow: import("@emotion/styled").StyledComponent<{
2
- theme?: import("@emotion/react").Theme;
3
- as?: React.ElementType;
4
- } & {
5
- isDisabled?: boolean;
6
- }, import("react").DetailedHTMLProps<import("react").AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>, {}>;