vxui-react 1.2.5 → 1.2.7

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": "vxui-react",
3
- "version": "1.2.5",
3
+ "version": "1.2.7",
4
4
  "description": "A general-purpose React UI framework rebuilt from VXUI principles.",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
@@ -1,28 +0,0 @@
1
- export interface ComboboxOption {
2
- value: string;
3
- label: string;
4
- disabled?: boolean;
5
- }
6
- export interface ComboboxProps {
7
- options: ComboboxOption[];
8
- value?: string;
9
- defaultValue?: string;
10
- onChange?: (value: string | undefined) => void;
11
- placeholder?: string;
12
- searchPlaceholder?: string;
13
- label?: string;
14
- hint?: string;
15
- error?: string;
16
- disabled?: boolean;
17
- clearable?: boolean;
18
- emptyText?: string;
19
- /**
20
- * Controls when the search input is shown.
21
- * - `true` (default): always show
22
- * - `false`: never show
23
- * - `number N`: show only when `options.length > N`
24
- */
25
- searchable?: boolean | number;
26
- className?: string;
27
- }
28
- export declare function Combobox({ options, value: controlledValue, defaultValue, onChange, placeholder, searchPlaceholder, label, hint, error, disabled, clearable, emptyText, searchable, className, }: ComboboxProps): import("react/jsx-runtime").JSX.Element;