@livetiles/reach-plugin-types 0.5.0-preview.974 → 0.5.0-preview.976

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.
Files changed (2) hide show
  1. package/lib/index.d.ts +14 -3
  2. package/package.json +1 -1
package/lib/index.d.ts CHANGED
@@ -5960,6 +5960,7 @@ declare module "libs/reach/ui/common/src/reach-2/icons/Icons" {
5960
5960
  export { ReactComponent as GifActiveIcon } from './assets/gif-active.svg';
5961
5961
  export { ReactComponent as GifIcon } from './assets/gif.svg';
5962
5962
  export { ReactComponent as GoogleIcon } from './assets/google.svg';
5963
+ export { ReactComponent as GroupIcon } from './assets/group.svg';
5963
5964
  export { ReactComponent as HashtagActiveIcon } from './assets/hashtag-active.svg';
5964
5965
  export { ReactComponent as HashtagIcon } from './assets/hashtag.svg';
5965
5966
  export { ReactComponent as ImageActiveIcon } from './assets/image-active.svg';
@@ -6363,6 +6364,7 @@ declare module "libs/reach/ui/common/src/reach-2/lists/MenuItem" {
6363
6364
  isSelected?: boolean;
6364
6365
  label: string;
6365
6366
  onClick: (e: MouseEvent<HTMLButtonElement>) => void;
6367
+ sublabel?: string;
6366
6368
  tailIcon?: JSX.Element;
6367
6369
  }
6368
6370
  const MenuItem: FC<MenuItemProps>;
@@ -6528,11 +6530,20 @@ declare module "libs/reach/ui/common/src/reach-2/tabs/TabGroup" {
6528
6530
  export default TabGroup;
6529
6531
  }
6530
6532
  declare module "libs/reach/ui/common/src/reach-2/table/Table" {
6531
- import type { TableProps } from 'antd/es/table';
6532
- import { FC } from 'react';
6533
+ import { TableProps } from 'antd';
6534
+ import { FC, ReactElement } from 'react';
6533
6535
  export const columnSortIcon: ({ sortOrder, }: {
6534
6536
  sortOrder: 'ascend' | 'descend' | null;
6535
6537
  }) => JSX.Element;
6538
+ export const rowExpandIcon: ({ expanded, onExpand, record, }: {
6539
+ expanded: boolean;
6540
+ onExpand: (record: {
6541
+ children?: ReactElement[];
6542
+ }, e: React.MouseEvent<HTMLElement>) => void;
6543
+ record: {
6544
+ children?: ReactElement[];
6545
+ };
6546
+ }) => JSX.Element;
6536
6547
  const Table: FC<TableProps>;
6537
6548
  export default Table;
6538
6549
  }
@@ -6582,7 +6593,7 @@ declare module "libs/reach/ui/common/src/reach-2/index" {
6582
6593
  export { default as Card } from "libs/reach/ui/common/src/reach-2/surfaces/Card";
6583
6594
  export { default as TabGroup } from "libs/reach/ui/common/src/reach-2/tabs/TabGroup";
6584
6595
  export { default as Table } from "libs/reach/ui/common/src/reach-2/table/Table";
6585
- export { columnSortIcon } from "libs/reach/ui/common/src/reach-2/table/Table";
6596
+ export * from "libs/reach/ui/common/src/reach-2/table/Table";
6586
6597
  export { default as Tag } from "libs/reach/ui/common/src/reach-2/tags/Tag";
6587
6598
  export { default as TextField } from "libs/reach/ui/common/src/reach-2/TextField";
6588
6599
  export { default as Typography } from "libs/reach/ui/common/src/reach-2/typography/Typography";
package/package.json CHANGED
@@ -4,6 +4,6 @@
4
4
  "main": "",
5
5
  "types": "./index.d.ts",
6
6
  "license": "ISC",
7
- "version": "0.5.0-preview.974",
7
+ "version": "0.5.0-preview.976",
8
8
  "dependencies": {}
9
9
  }