This commit is contained in:
2026-04-06 18:07:39 +02:00
parent 294547fc56
commit 071a215393
80 changed files with 593 additions and 2085 deletions

4
index.d.ts vendored
View File

@@ -67,7 +67,7 @@ declare module 'sigpro-ui' {
interface AutocompleteProps extends BaseProps, EventProps {
items?: string[] | AutocompleteOption[] | (() => (string[] | AutocompleteOption[]));
value?: Signal<string> | string;
onSelect?: (option: string | AutocompleteOption) => void;
onselect?: (option: string | AutocompleteOption) => void;
label?: string | (() => string);
placeholder?: string | (() => string);
}
@@ -167,7 +167,7 @@ declare module 'sigpro-ui' {
tooltip?: string;
max?: number;
accept?: string;
onSelect?: (files: File[]) => void;
onselect?: (files: File[]) => void;
}
function Fileinput(props: FileinputProps): HTMLElement;