@zuzjs/ui 1.0.60 → 1.0.61

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/dist/index.d.cts CHANGED
@@ -2442,7 +2442,16 @@ type SelectInternalProps = SelectCommonProps & {
2442
2442
  };
2443
2443
 
2444
2444
  type SelectComponent = {
2445
- <TMultiple extends boolean = false, TTokenizer extends boolean = false, TEditable extends boolean = false>(props: SelectProps<TMultiple, TTokenizer, TEditable> & {
2445
+ (props: SelectSingleProps & {
2446
+ ref?: Ref<SelectHandler>;
2447
+ }): ReactElement;
2448
+ (props: SelectEditableProps & {
2449
+ ref?: Ref<SelectHandler>;
2450
+ }): ReactElement;
2451
+ (props: SelectMultipleProps & {
2452
+ ref?: Ref<SelectHandler>;
2453
+ }): ReactElement;
2454
+ (props: SelectTokenizerProps & {
2446
2455
  ref?: Ref<SelectHandler>;
2447
2456
  }): ReactElement;
2448
2457
  displayName?: string;
package/dist/index.d.ts CHANGED
@@ -2442,7 +2442,16 @@ type SelectInternalProps = SelectCommonProps & {
2442
2442
  };
2443
2443
 
2444
2444
  type SelectComponent = {
2445
- <TMultiple extends boolean = false, TTokenizer extends boolean = false, TEditable extends boolean = false>(props: SelectProps<TMultiple, TTokenizer, TEditable> & {
2445
+ (props: SelectSingleProps & {
2446
+ ref?: Ref<SelectHandler>;
2447
+ }): ReactElement;
2448
+ (props: SelectEditableProps & {
2449
+ ref?: Ref<SelectHandler>;
2450
+ }): ReactElement;
2451
+ (props: SelectMultipleProps & {
2452
+ ref?: Ref<SelectHandler>;
2453
+ }): ReactElement;
2454
+ (props: SelectTokenizerProps & {
2446
2455
  ref?: Ref<SelectHandler>;
2447
2456
  }): ReactElement;
2448
2457
  displayName?: string;