pdap-design-system 3.1.0-beta.11 → 3.1.0-beta.13
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/components/FormV2/PdapFormV2.vue.d.ts +3 -17
- package/dist/index.cjs +7 -7
- package/dist/index.js +707 -702
- package/dist/styles.css +1 -1
- package/package.json +1 -1
@@ -1,9 +1,7 @@
|
|
1
1
|
import { PdapFormPropsV2 } from './types';
|
2
2
|
declare const values: import("vue").Ref<Record<PropertyKey, unknown>>;
|
3
3
|
declare function setValues(val: Partial<typeof values.value>): void;
|
4
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<
|
5
|
-
error: null;
|
6
|
-
}>, {
|
4
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<PdapFormPropsV2>, {
|
7
5
|
setValues: typeof setValues;
|
8
6
|
v$: import("vue").Ref<import("@vuelidate/core").Validation<Record<string, {
|
9
7
|
[x: string]: import("@vuelidate/core").ValidationRuleWithParams<{
|
@@ -28,15 +26,11 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
28
26
|
change: (...args: any[]) => void;
|
29
27
|
error: (...args: any[]) => void;
|
30
28
|
submit: (...args: any[]) => void;
|
31
|
-
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<
|
32
|
-
error: null;
|
33
|
-
}>>> & {
|
29
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<PdapFormPropsV2>>> & {
|
34
30
|
onChange?: ((...args: any[]) => any) | undefined;
|
35
31
|
onSubmit?: ((...args: any[]) => any) | undefined;
|
36
32
|
onError?: ((...args: any[]) => any) | undefined;
|
37
|
-
}, {
|
38
|
-
error: string | null;
|
39
|
-
}, {}>, {
|
33
|
+
}, {}, {}>, {
|
40
34
|
error?(_: {}): any;
|
41
35
|
default?(_: {}): any;
|
42
36
|
}>;
|
@@ -50,14 +44,6 @@ type __VLS_TypePropsToRuntimeProps<T> = {
|
|
50
44
|
required: true;
|
51
45
|
};
|
52
46
|
};
|
53
|
-
type __VLS_WithDefaults<P, D> = {
|
54
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
55
|
-
default: D[K];
|
56
|
-
}> : P[K];
|
57
|
-
};
|
58
|
-
type __VLS_Prettify<T> = {
|
59
|
-
[K in keyof T]: T[K];
|
60
|
-
} & {};
|
61
47
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
62
48
|
new (): {
|
63
49
|
$slots: S;
|