bits-ui 2.11.4 → 2.11.5
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.
|
@@ -304,7 +304,7 @@ export declare class SelectGroupHeadingState {
|
|
|
304
304
|
};
|
|
305
305
|
}
|
|
306
306
|
interface SelectHiddenInputStateOpts extends ReadableBoxedValues<{
|
|
307
|
-
value: string;
|
|
307
|
+
value: string | undefined;
|
|
308
308
|
}> {
|
|
309
309
|
}
|
|
310
310
|
export declare class SelectHiddenInputState {
|
|
@@ -318,7 +318,7 @@ export declare class SelectHiddenInputState {
|
|
|
318
318
|
readonly disabled: true | undefined;
|
|
319
319
|
readonly required: true | undefined;
|
|
320
320
|
readonly name: string;
|
|
321
|
-
readonly value: string;
|
|
321
|
+
readonly value: string | undefined;
|
|
322
322
|
readonly onfocus: (e: BitsFocusEvent) => void;
|
|
323
323
|
};
|
|
324
324
|
}
|