@chekinapp/ui 0.0.105 → 0.0.107
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.cjs +107 -72
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +174 -139
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.cts
CHANGED
|
@@ -2858,7 +2858,7 @@ declare const DashboardInput: React$1.ForwardRefExoticComponent<React$1.InputHTM
|
|
|
2858
2858
|
type SelectValue$1 = string | number;
|
|
2859
2859
|
type DashboardSelectFilterOption<T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string> = (option: SelectOption<T, V, L>, input: string) => boolean;
|
|
2860
2860
|
|
|
2861
|
-
type DashboardSelectProps<T =
|
|
2861
|
+
type DashboardSelectProps<T = unknown, V extends SelectValue$1 = string, L extends ReactNode = string> = {
|
|
2862
2862
|
options?: SelectOption<T, V, L>[];
|
|
2863
2863
|
value?: SelectOption<T, V, L> | null;
|
|
2864
2864
|
onChange: (option: SelectOption<T, V, L>) => void;
|
package/dist/index.d.ts
CHANGED
|
@@ -2858,7 +2858,7 @@ declare const DashboardInput: React$1.ForwardRefExoticComponent<React$1.InputHTM
|
|
|
2858
2858
|
type SelectValue$1 = string | number;
|
|
2859
2859
|
type DashboardSelectFilterOption<T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string> = (option: SelectOption<T, V, L>, input: string) => boolean;
|
|
2860
2860
|
|
|
2861
|
-
type DashboardSelectProps<T =
|
|
2861
|
+
type DashboardSelectProps<T = unknown, V extends SelectValue$1 = string, L extends ReactNode = string> = {
|
|
2862
2862
|
options?: SelectOption<T, V, L>[];
|
|
2863
2863
|
value?: SelectOption<T, V, L> | null;
|
|
2864
2864
|
onChange: (option: SelectOption<T, V, L>) => void;
|