@theroutingcompany/components 0.0.71-alpha.8 → 0.0.71-alpha.9

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@theroutingcompany/components",
3
- "version": "0.0.71-alpha.8",
3
+ "version": "0.0.71-alpha.9",
4
4
  "description": "The Routing Company Components",
5
5
  "main": "./dist/trc-components.umd.js",
6
6
  "module": "./dist/trc-components.es.js",
@@ -1,6 +1,7 @@
1
1
  import type { ComboBoxProps } from '@react-types/combobox';
2
2
  import * as React from 'react';
3
3
  export declare const Wrapper: import("styled-components").StyledComponent<"div", any, {}, never>;
4
+ export declare const ChevronDown: import("styled-components").StyledComponent<import("@material-ui/core/OverridableComponent").OverridableComponent<import("@material-ui/core").SvgIconTypeMap<{}, "svg">>, any, {}, never>;
4
5
  declare function ComboBox<T extends object>(props: ComboBoxProps<T> & {
5
6
  tooltipContent?: React.ReactNode;
6
7
  errorMessage?: string;
@@ -1,4 +1,4 @@
1
1
  export declare const timezones: {
2
2
  name: string;
3
- key: string;
3
+ id: string;
4
4
  }[];
@@ -56,6 +56,7 @@ type MultiSelectProps = {
56
56
  tooltipIcon?: string;
57
57
  errorMessage?: string;
58
58
  };
59
+ export declare const MultiSelectComponent: React.ForwardRefExoticComponent<MultiSelectProps & React.RefAttributes<HTMLButtonElement>>;
59
60
  export declare const MultiSelect: React.ForwardRefExoticComponent<MultiSelectProps & {
60
61
  /** Item objects in the collection. */
61
62
  options: Option[];
@@ -14,4 +14,4 @@ export interface MultiSelectListState<T> extends ListState<T> {
14
14
  /** The type of selection. */
15
15
  selectionMode: MultipleSelection["selectionMode"];
16
16
  }
17
- export declare function useMultiSelectListState<T extends {}>(props: MultiSelectListProps<T>): MultiSelectListState<T>;
17
+ export declare function useMultiSelectListState<T extends object>(props: MultiSelectListProps<T>): MultiSelectListState<T>;
@@ -1,5 +1,5 @@
1
1
  import type { AriaSelectProps } from '@react-types/select';
2
- export { Item as SingleSelectItem, Section as SingleSelectSection } from '@react-stately/collections';
2
+ export { Item as SingleSelectItem, Section as SingleSelectSection, } from '@react-stately/collections';
3
3
  type SingleSelectProps<T> = AriaSelectProps<T> & {
4
4
  placeholder?: string;
5
5
  tooltipIcon?: string;