@zuzjs/ui 1.0.60 → 1.0.62
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/bin.cjs +4 -4
- package/dist/bin.js +1 -1
- package/dist/{chunk-XH3JCMJ6.cjs → chunk-76JUBNXP.cjs} +4 -4
- package/dist/{chunk-V3BYJUHB.js → chunk-S3AC6XMO.js} +3 -3
- package/dist/index.cjs +5 -5
- package/dist/index.d.cts +10 -1
- package/dist/index.d.ts +10 -1
- package/dist/index.js +5 -5
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -2442,7 +2442,16 @@ type SelectInternalProps = SelectCommonProps & {
|
|
|
2442
2442
|
};
|
|
2443
2443
|
|
|
2444
2444
|
type SelectComponent = {
|
|
2445
|
-
|
|
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
|
-
|
|
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;
|