@point-hub/papp 0.0.106 → 0.0.108
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.
- package/dist/components/base-checkbox.vue.d.ts +13 -5
- package/dist/index.css +1 -1
- package/dist/index.js +1907 -1897
- package/dist/index.umd.cjs +8 -8
- package/package.json +15 -15
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { BaseFormLayoutType } from './base-form.vue';
|
|
2
2
|
export type BaseCheckboxThemeType = 'primary' | 'secondary' | 'info' | 'success' | 'warning' | 'danger';
|
|
3
3
|
export interface Props {
|
|
4
|
-
modelValue: boolean;
|
|
5
4
|
id?: string;
|
|
6
5
|
label?: string;
|
|
7
6
|
text?: string;
|
|
@@ -14,22 +13,31 @@ export interface Props {
|
|
|
14
13
|
helpers?: string[];
|
|
15
14
|
}
|
|
16
15
|
type __VLS_Props = Props;
|
|
16
|
+
declare const __VLS_defaults: {
|
|
17
|
+
'true-value': boolean;
|
|
18
|
+
'false-value': boolean;
|
|
19
|
+
};
|
|
17
20
|
type __VLS_PublicProps = {
|
|
21
|
+
modelValue?: any;
|
|
22
|
+
'true-value'?: typeof __VLS_defaults['true-value'];
|
|
23
|
+
'false-value'?: typeof __VLS_defaults['false-value'];
|
|
18
24
|
'errors'?: string[];
|
|
19
25
|
} & __VLS_Props;
|
|
20
26
|
declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
|
|
21
27
|
inputRef: import('vue').Ref<any, any>;
|
|
22
28
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
29
|
+
"update:modelValue": (value: any) => any;
|
|
23
30
|
"update:errors": (value: string[]) => any;
|
|
24
|
-
|
|
25
|
-
"update:
|
|
31
|
+
"update:true-value": (value: boolean) => any;
|
|
32
|
+
"update:false-value": (value: boolean) => any;
|
|
26
33
|
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
27
|
-
"onUpdate:modelValue"?: ((value:
|
|
34
|
+
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
28
35
|
"onUpdate:errors"?: ((value: string[]) => any) | undefined;
|
|
36
|
+
"onUpdate:true-value"?: ((value: boolean) => any) | undefined;
|
|
37
|
+
"onUpdate:false-value"?: ((value: boolean) => any) | undefined;
|
|
29
38
|
}>, {
|
|
30
39
|
required: boolean;
|
|
31
40
|
disabled: boolean;
|
|
32
|
-
modelValue: boolean;
|
|
33
41
|
theme: BaseCheckboxThemeType;
|
|
34
42
|
layout: BaseFormLayoutType;
|
|
35
43
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|