sprof 0.2.12 → 0.2.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.
@@ -1,7 +1,13 @@
1
1
  declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<globalThis.ExtractPropTypes<{
2
2
  label: {
3
3
  type: StringConstructor;
4
- required: true;
4
+ default: string;
5
+ required: false;
6
+ };
7
+ placeholder: {
8
+ type: StringConstructor;
9
+ default: string;
10
+ required: false;
5
11
  };
6
12
  dense: {
7
13
  type: BooleanConstructor;
@@ -23,16 +29,44 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<gl
23
29
  type: BooleanConstructor;
24
30
  default: boolean;
25
31
  };
32
+ margin: {
33
+ type: StringConstructor;
34
+ default: string;
35
+ required: false;
36
+ };
37
+ padding: {
38
+ type: StringConstructor;
39
+ default: string;
40
+ required: false;
41
+ };
42
+ width: {
43
+ type: StringConstructor;
44
+ default: string;
45
+ required: false;
46
+ };
47
+ /** Принудительный режим модели: 'date' | 'string' (по умолчанию — автодетект) */
48
+ modelType: {
49
+ type: globalThis.PropType<"string" | "date">;
50
+ default: undefined;
51
+ required: false;
52
+ };
26
53
  modelValue: {
27
- type: globalThis.PropType<string>;
54
+ type: globalThis.PropType<string | Date | null>;
28
55
  };
29
56
  }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
57
+ input: (...args: any[]) => void;
30
58
  blur: (...args: any[]) => void;
31
- "update:modelValue": (value: string) => void;
59
+ "update:modelValue": (value: string | Date | null | undefined) => void;
32
60
  }, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<{
33
61
  label: {
34
62
  type: StringConstructor;
35
- required: true;
63
+ default: string;
64
+ required: false;
65
+ };
66
+ placeholder: {
67
+ type: StringConstructor;
68
+ default: string;
69
+ required: false;
36
70
  };
37
71
  dense: {
38
72
  type: BooleanConstructor;
@@ -54,19 +88,48 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<gl
54
88
  type: BooleanConstructor;
55
89
  default: boolean;
56
90
  };
91
+ margin: {
92
+ type: StringConstructor;
93
+ default: string;
94
+ required: false;
95
+ };
96
+ padding: {
97
+ type: StringConstructor;
98
+ default: string;
99
+ required: false;
100
+ };
101
+ width: {
102
+ type: StringConstructor;
103
+ default: string;
104
+ required: false;
105
+ };
106
+ /** Принудительный режим модели: 'date' | 'string' (по умолчанию — автодетект) */
107
+ modelType: {
108
+ type: globalThis.PropType<"string" | "date">;
109
+ default: undefined;
110
+ required: false;
111
+ };
57
112
  modelValue: {
58
- type: globalThis.PropType<string>;
113
+ type: globalThis.PropType<string | Date | null>;
59
114
  };
60
115
  }>> & Readonly<{
116
+ onInput?: ((...args: any[]) => any) | undefined;
61
117
  onBlur?: ((...args: any[]) => any) | undefined;
62
- "onUpdate:modelValue"?: ((value: string) => any) | undefined;
118
+ "onUpdate:modelValue"?: ((value: string | Date | null | undefined) => any) | undefined;
63
119
  }>, {
120
+ label: string;
121
+ padding: string;
64
122
  dense: boolean;
65
123
  disable: boolean;
66
124
  readonly: boolean;
125
+ placeholder: string;
126
+ width: string;
127
+ margin: string;
67
128
  clearable: boolean;
68
129
  outlined: boolean;
130
+ modelType: "string" | "date";
69
131
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>, {
132
+ before?(_: {}): any;
70
133
  append?(_: {}): any;
71
134
  }>;
72
135
  export default _default;
@@ -25,6 +25,7 @@ declare const _default: {
25
25
  type: globalThis.PropType<Date>;
26
26
  };
27
27
  }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
28
+ input: (...args: any[]) => void;
28
29
  change: (...args: any[]) => void;
29
30
  "update:modelValue": (...args: any[]) => void;
30
31
  beforeChange: (...args: any[]) => void;
@@ -52,6 +53,7 @@ declare const _default: {
52
53
  type: globalThis.PropType<Date>;
53
54
  };
54
55
  }>> & Readonly<{
56
+ onInput?: ((...args: any[]) => any) | undefined;
55
57
  onChange?: ((...args: any[]) => any) | undefined;
56
58
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
57
59
  onBeforeChange?: ((...args: any[]) => any) | undefined;
@@ -113,6 +115,7 @@ export declare const Default: StoryFn<import('vue').DefineComponent<globalThis.E
113
115
  type: globalThis.PropType<Date>;
114
116
  };
115
117
  }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
118
+ input: (...args: any[]) => void;
116
119
  change: (...args: any[]) => void;
117
120
  "update:modelValue": (...args: any[]) => void;
118
121
  beforeChange: (...args: any[]) => void;
@@ -140,6 +143,7 @@ export declare const Default: StoryFn<import('vue').DefineComponent<globalThis.E
140
143
  type: globalThis.PropType<Date>;
141
144
  };
142
145
  }>> & Readonly<{
146
+ onInput?: ((...args: any[]) => any) | undefined;
143
147
  onChange?: ((...args: any[]) => any) | undefined;
144
148
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
145
149
  onBeforeChange?: ((...args: any[]) => any) | undefined;
@@ -22,6 +22,7 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
22
22
  type: globalThis.PropType<Date>;
23
23
  };
24
24
  }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
25
+ input: (...args: any[]) => void;
25
26
  change: (...args: any[]) => void;
26
27
  "update:modelValue": (...args: any[]) => void;
27
28
  beforeChange: (...args: any[]) => void;
@@ -49,6 +50,7 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
49
50
  type: globalThis.PropType<Date>;
50
51
  };
51
52
  }>> & Readonly<{
53
+ onInput?: ((...args: any[]) => any) | undefined;
52
54
  onChange?: ((...args: any[]) => any) | undefined;
53
55
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
54
56
  onBeforeChange?: ((...args: any[]) => any) | undefined;