@mvr-ui/components 1.0.61 → 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/page.d.mts +8 -21
- package/dist/page.d.ts +8 -21
- package/package.json +1 -1
package/dist/page.d.mts
CHANGED
|
@@ -147,27 +147,14 @@ type ComboBoxProps<T, V extends AllowedComboValue<T>> = CommonProps<T> & {
|
|
|
147
147
|
value?: V;
|
|
148
148
|
onChange?: (e: ChangeEvent<V>) => void;
|
|
149
149
|
};
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
typeSet?: TypeSet;
|
|
159
|
-
mode?: Mode;
|
|
160
|
-
disabled?: boolean;
|
|
161
|
-
ClearEnabled?: boolean;
|
|
162
|
-
helperText?: string;
|
|
163
|
-
error?: boolean;
|
|
164
|
-
className?: string;
|
|
165
|
-
} & {
|
|
166
|
-
value?: unknown;
|
|
167
|
-
onChange?: ((e: ChangeEvent<unknown>) => void) | undefined;
|
|
168
|
-
} & {
|
|
169
|
-
ref?: React__default.Ref<HTMLInputElement>;
|
|
170
|
-
}) => react_jsx_runtime.JSX.Element;
|
|
150
|
+
type ComboBoxComponent = {
|
|
151
|
+
<T, V extends AllowedComboValue<T>>(props: ComboBoxProps<T, V> & {
|
|
152
|
+
ref?: React__default.Ref<HTMLInputElement>;
|
|
153
|
+
}): JSX.Element;
|
|
154
|
+
displayName?: string;
|
|
155
|
+
};
|
|
156
|
+
declare const ComboBox: ComboBoxComponent;
|
|
157
|
+
declare const ComboBoxPrimitive: typeof ComboBox;
|
|
171
158
|
|
|
172
159
|
interface SwitchHTMLCustomAttributes {
|
|
173
160
|
label?: string;
|
package/dist/page.d.ts
CHANGED
|
@@ -147,27 +147,14 @@ type ComboBoxProps<T, V extends AllowedComboValue<T>> = CommonProps<T> & {
|
|
|
147
147
|
value?: V;
|
|
148
148
|
onChange?: (e: ChangeEvent<V>) => void;
|
|
149
149
|
};
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
typeSet?: TypeSet;
|
|
159
|
-
mode?: Mode;
|
|
160
|
-
disabled?: boolean;
|
|
161
|
-
ClearEnabled?: boolean;
|
|
162
|
-
helperText?: string;
|
|
163
|
-
error?: boolean;
|
|
164
|
-
className?: string;
|
|
165
|
-
} & {
|
|
166
|
-
value?: unknown;
|
|
167
|
-
onChange?: ((e: ChangeEvent<unknown>) => void) | undefined;
|
|
168
|
-
} & {
|
|
169
|
-
ref?: React__default.Ref<HTMLInputElement>;
|
|
170
|
-
}) => react_jsx_runtime.JSX.Element;
|
|
150
|
+
type ComboBoxComponent = {
|
|
151
|
+
<T, V extends AllowedComboValue<T>>(props: ComboBoxProps<T, V> & {
|
|
152
|
+
ref?: React__default.Ref<HTMLInputElement>;
|
|
153
|
+
}): JSX.Element;
|
|
154
|
+
displayName?: string;
|
|
155
|
+
};
|
|
156
|
+
declare const ComboBox: ComboBoxComponent;
|
|
157
|
+
declare const ComboBoxPrimitive: typeof ComboBox;
|
|
171
158
|
|
|
172
159
|
interface SwitchHTMLCustomAttributes {
|
|
173
160
|
label?: string;
|