prizm-ui-vue 2.2.55 → 2.2.56
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.
|
@@ -8,9 +8,8 @@ type Slots = {
|
|
|
8
8
|
default?: unknown;
|
|
9
9
|
};
|
|
10
10
|
type ElCheckboxProps = InstanceType<typeof ElCheckbox>['$props'];
|
|
11
|
-
type PickedProps = Pick<ElCheckboxProps, '
|
|
11
|
+
type PickedProps = Pick<ElCheckboxProps, 'name' | 'disabled' | 'falseValue' | 'validateEvent' | 'size' | 'value' | 'label' | 'checked'>;
|
|
12
12
|
type Props = {
|
|
13
|
-
class?: PickedProps['class'];
|
|
14
13
|
name?: PickedProps['name'];
|
|
15
14
|
disabled?: PickedProps['disabled'];
|
|
16
15
|
falseValue?: PickedProps['falseValue'];
|
|
@@ -23,7 +22,7 @@ type Props = {
|
|
|
23
22
|
type __VLS_Slots = Slots;
|
|
24
23
|
type __VLS_Props = Props;
|
|
25
24
|
type __VLS_PublicProps = __VLS_Props & {
|
|
26
|
-
modelValue
|
|
25
|
+
modelValue: string | number | boolean;
|
|
27
26
|
};
|
|
28
27
|
declare const __VLS_component: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
29
28
|
checkboxRef: Readonly<import("vue").ShallowRef<({
|
|
@@ -250,10 +249,12 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_PublicProps,
|
|
|
250
249
|
};
|
|
251
250
|
}) | null>>;
|
|
252
251
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
253
|
-
"update:modelValue": (value: string | number | boolean
|
|
252
|
+
"update:modelValue": (value: string | number | boolean) => any;
|
|
254
253
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
255
|
-
"onUpdate:modelValue"?: ((value: string | number | boolean
|
|
256
|
-
}>, {
|
|
254
|
+
"onUpdate:modelValue"?: ((value: string | number | boolean) => any) | undefined;
|
|
255
|
+
}>, {
|
|
256
|
+
size: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never>;
|
|
257
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
257
258
|
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
258
259
|
export default _default;
|
|
259
260
|
type __VLS_WithSlots<T, S> = T & {
|