@livetiles/reach-plugin-types 0.5.0-preview.955 → 0.5.0-preview.957

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 +12 -1
  2. package/package.json +1 -1
package/lib/index.d.ts CHANGED
@@ -6468,6 +6468,16 @@ declare module "libs/reach/ui/common/src/reach-2/surfaces/Card" {
6468
6468
  const Card: FC<ICardProps>;
6469
6469
  export default Card;
6470
6470
  }
6471
+ declare module "libs/reach/ui/common/src/reach-2/tabs/TabGroup" {
6472
+ import { FC } from 'react';
6473
+ interface ITabGroupProps {
6474
+ onChange: (tab: string) => void;
6475
+ selectedTab: string;
6476
+ tabs: string[];
6477
+ }
6478
+ export const TabGroup: FC<ITabGroupProps>;
6479
+ export default TabGroup;
6480
+ }
6471
6481
  declare module "libs/reach/ui/common/src/reach-2/TextField" {
6472
6482
  import { FC, InputHTMLAttributes } from 'react';
6473
6483
  export interface ITextFieldProps extends InputHTMLAttributes<HTMLInputElement> {
@@ -6497,6 +6507,7 @@ declare module "libs/reach/ui/common/src/reach-2/index" {
6497
6507
  export * from "libs/reach/ui/common/src/reach-2/SearchBox";
6498
6508
  export * from "libs/reach/ui/common/src/reach-2/surfaces/index";
6499
6509
  export { default as Card } from "libs/reach/ui/common/src/reach-2/surfaces/Card";
6510
+ export { default as TabGroup } from "libs/reach/ui/common/src/reach-2/tabs/TabGroup";
6500
6511
  export { default as TextField } from "libs/reach/ui/common/src/reach-2/TextField";
6501
6512
  export * from "libs/reach/ui/common/src/reach-2/typography/Typography";
6502
6513
  export * from "libs/reach/ui/common/src/reach-2/utils";
@@ -8383,7 +8394,7 @@ declare module "libs/reach/feature/content/src/forms/keyword-picker/KeywordPicke
8383
8394
  import { LogicalOperator } from "libs/reach/feature/content/src/filter/index";
8384
8395
  export interface KeywordPickerProps {
8385
8396
  value?: Keyword[] | string[];
8386
- onChange: (keywords: Keyword[], logicalOperator?: LogicalOperator) => void;
8397
+ onChange: (keywords: Keyword[], logicalOperator?: LogicalOperator, checkAll?: boolean) => void;
8387
8398
  showSelectionToggle?: boolean;
8388
8399
  availableKeywords?: Keyword[];
8389
8400
  mandatoryKeywordIds?: string[];
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.955",
7
+ "version": "0.5.0-preview.957",
8
8
  "dependencies": {}
9
9
  }