prizm-ui-vue 2.3.13 → 2.3.15

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