@point-hub/papp 0.1.13 → 0.1.16

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.
@@ -19,18 +19,13 @@ export interface Props {
19
19
  size?: string;
20
20
  rounded?: boolean;
21
21
  paddingless?: boolean;
22
- /**
23
- * Clearing or resetting errors when an update or change occurs.
24
- *
25
- * @default true
26
- */
27
22
  resetErrorsOnUpdate?: boolean;
28
23
  helpers?: string[];
29
24
  dataTestid?: string;
30
25
  }
31
26
  type __VLS_Props = Props;
32
27
  type __VLS_PublicProps = {
33
- modelValue?: string | number;
28
+ modelValue?: number | undefined;
34
29
  'errors'?: string[];
35
30
  } & __VLS_Props;
36
31
  declare function __VLS_template(): {
@@ -48,14 +43,14 @@ declare function __VLS_template(): {
48
43
  };
49
44
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
50
45
  declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps, {
51
- inputRef: import('vue').Ref<any, any>;
46
+ inputRef: import('vue').Ref<HTMLInputElement | null, HTMLInputElement | null>;
52
47
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
53
- "update:modelValue": (value: string | number) => any;
48
+ "update:modelValue": (value: number | undefined) => any;
54
49
  "update:errors": (value: string[]) => any;
55
50
  } & {
56
- "update:modelValue": (value: number) => any;
51
+ "update:modelValue": (value: number | undefined) => any;
57
52
  }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
58
- "onUpdate:modelValue"?: ((value: number) => any) | undefined;
53
+ "onUpdate:modelValue"?: ((value: number | undefined) => any) | undefined;
59
54
  "onUpdate:errors"?: ((value: string[]) => any) | undefined;
60
55
  }>, {
61
56
  required: boolean;