@veritone-ce/design-system 1.12.40 → 1.12.41
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.
|
@@ -2,10 +2,10 @@ type Item = {
|
|
|
2
2
|
label: string;
|
|
3
3
|
value: string;
|
|
4
4
|
};
|
|
5
|
-
type
|
|
5
|
+
export type AutocompleteProps = {
|
|
6
6
|
items: Item[];
|
|
7
7
|
label: string;
|
|
8
8
|
width: number;
|
|
9
9
|
};
|
|
10
|
-
declare function ComboBox({ items, label, width }:
|
|
10
|
+
declare function ComboBox({ items, label, width }: AutocompleteProps): import("react/jsx-runtime").JSX.Element;
|
|
11
11
|
export default ComboBox;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
2
|
+
import React from 'react';
|
|
2
3
|
import { Autocomplete, TextField } from '@mui/material';
|
|
3
4
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
4
5
|
function ComboBox(_ref) {
|
package/dist/index.d.ts
CHANGED
|
@@ -68,3 +68,5 @@ export { default as IconGroups } from './components/icons/IconGroups/index.js';
|
|
|
68
68
|
export type { IconGroupsProps } from './components/icons/IconGroups/index.js';
|
|
69
69
|
export { default as IconListItem } from './components/icons/IconListItem/index.js';
|
|
70
70
|
export type { IconListItemProps } from './components/icons/IconListItem/index.js';
|
|
71
|
+
export { default as Autocomplete } from './components/Autocomplete/index.js';
|
|
72
|
+
export type { AutocompleteProps } from './components/Autocomplete/index.js';
|
package/dist/index.js
CHANGED
|
@@ -34,4 +34,5 @@ export { default as Toast } from './components/Toast/index.js';
|
|
|
34
34
|
export { default as Typography } from './components/Typography/index.js';
|
|
35
35
|
export { default as HomeOutlinedIcon } from './components/icons/HomeOutlinedIcon/index.js';
|
|
36
36
|
export { default as IconGroups } from './components/icons/IconGroups/index.js';
|
|
37
|
-
export { default as IconListItem } from './components/icons/IconListItem/index.js';
|
|
37
|
+
export { default as IconListItem } from './components/icons/IconListItem/index.js';
|
|
38
|
+
export { default as Autocomplete } from './components/Autocomplete/index.js';
|