@vunk/form 0.0.0-alpha.3 → 0.0.0-alpha.5
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/components/confirm-input/index.css +9 -9
- package/components/ground/index.css +34 -31
- package/components/ground/index.js +35 -14
- package/components/ground/src/ground-widget/src/form-item-widget/src/index.vue.d.ts +594 -0
- package/components/ground/src/index.vue.d.ts +19 -5
- package/components/select/index.js +20 -6
- package/components/select/src/ctx.d.ts +5 -0
- package/components/select/src/index.vue.d.ts +9 -0
- package/components/select/src/types.d.ts +5 -3
- package/index.css +43 -40
- package/index.d.ts +8 -8
- package/package.json +1 -1
- package/shared/types/shared/index.d.ts +4 -0
- package/types/components/ground/src/ground-widget/src/form-item-widget/src/index.vue.d.ts +594 -0
- package/types/components/ground/src/index.vue.d.ts +19 -5
- package/types/components/select/src/ctx.d.ts +5 -0
- package/types/components/select/src/index.vue.d.ts +9 -0
- package/types/components/select/src/types.d.ts +5 -3
- package/types/shared/types/shared/index.d.ts +4 -0
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { VueComponentPropsType } from 'vunk/shared/types';
|
|
2
2
|
import { PropType } from 'vue';
|
|
3
|
+
import { SelectSlots } from './types';
|
|
3
4
|
export declare const props: {
|
|
4
5
|
options: {
|
|
5
6
|
type: PropType<VueComponentPropsType<import("element-plus/es/utils").SFCWithInstall<import("vue").DefineComponent<{
|
|
@@ -64,6 +65,10 @@ export declare const props: {
|
|
|
64
65
|
}>>>[]>;
|
|
65
66
|
default: () => never[];
|
|
66
67
|
};
|
|
68
|
+
selectSlots: {
|
|
69
|
+
type: PropType<SelectSlots>;
|
|
70
|
+
default: undefined;
|
|
71
|
+
};
|
|
67
72
|
name: StringConstructor;
|
|
68
73
|
id: StringConstructor;
|
|
69
74
|
modelValue: {
|
|
@@ -62,6 +62,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
62
62
|
}>>>[]>;
|
|
63
63
|
default: () => never[];
|
|
64
64
|
};
|
|
65
|
+
selectSlots: {
|
|
66
|
+
type: import("vue").PropType<import("./types").SelectSlots>;
|
|
67
|
+
default: undefined;
|
|
68
|
+
};
|
|
65
69
|
name: StringConstructor;
|
|
66
70
|
id: StringConstructor;
|
|
67
71
|
modelValue: {
|
|
@@ -365,6 +369,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
365
369
|
}>>>[]>;
|
|
366
370
|
default: () => never[];
|
|
367
371
|
};
|
|
372
|
+
selectSlots: {
|
|
373
|
+
type: import("vue").PropType<import("./types").SelectSlots>;
|
|
374
|
+
default: undefined;
|
|
375
|
+
};
|
|
368
376
|
name: StringConstructor;
|
|
369
377
|
id: StringConstructor;
|
|
370
378
|
modelValue: {
|
|
@@ -576,5 +584,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
576
584
|
disabled: boolean;
|
|
577
585
|
created: boolean;
|
|
578
586
|
}>>>[];
|
|
587
|
+
selectSlots: import("./types").SelectSlots;
|
|
579
588
|
}>;
|
|
580
589
|
export default _default;
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export declare type
|
|
3
|
-
|
|
1
|
+
import { Func } from '@vunk/form/shared/types';
|
|
2
|
+
export declare type SelectSlots = {
|
|
3
|
+
prefix?: Func;
|
|
4
|
+
empty?: Func;
|
|
5
|
+
};
|