@uoguelph/react-components 1.5.0-rc.8 → 1.5.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
1
  import { ComboboxInputProps } from '@headlessui/react';
2
2
  import { ElementType } from 'react';
3
- export type AutocompleteInputProps<TTag extends ElementType> = ComboboxInputProps<TTag> & {
3
+ export type AutocompleteInputProps<TTag extends ElementType, TType> = ComboboxInputProps<TTag, TType> & {
4
4
  /** Additional classes to apply to the component. */
5
5
  className?: string;
6
6
  };
7
- export declare function AutocompleteInput<TTag extends ElementType>({ children, className, defaultValue, ...rest }: AutocompleteInputProps<TTag>): import("react/jsx-runtime").JSX.Element;
7
+ export declare function AutocompleteInput<TTag extends ElementType, TType>({ children, className, defaultValue, ...rest }: AutocompleteInputProps<TTag, TType>): import("react/jsx-runtime").JSX.Element;
8
8
  export declare namespace AutocompleteInput {
9
9
  var displayName: string;
10
10
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uoguelph/react-components",
3
- "version": "1.5.0-rc.8",
3
+ "version": "1.5.0",
4
4
  "description": "University of Guelph React Components Library",
5
5
  "type": "module",
6
6
  "scripts": {
@@ -76,5 +76,5 @@
76
76
  "bugs": {
77
77
  "url": "https://github.com/ccswbs/uofg-components/issues"
78
78
  },
79
- "gitHead": "06a2d1a34bd871dede914f70878897a2c7510d9b"
79
+ "gitHead": "f15e8fa01c2612e0759a458ddb9d32991a9dbade"
80
80
  }