@vunk/form 2.19.12 → 2.19.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.
Files changed (108) hide show
  1. package/components/api-tables-select/src/ctx.d.ts +14 -10
  2. package/components/api-tables-select/src/index.vue.d.ts +30 -21
  3. package/components/button/src/ctx.d.ts +4 -0
  4. package/components/button/src/index.vue.d.ts +18 -0
  5. package/components/card-input-collection/src/core.vue.d.ts +9 -0
  6. package/components/card-input-collection/src/ctx.d.ts +4 -0
  7. package/components/card-input-collection/src/index.vue.d.ts +9 -0
  8. package/components/cascader/src/ctx.d.ts +5 -1
  9. package/components/cascader/src/index.vue.d.ts +12 -3
  10. package/components/checkbox/src/ctx.d.ts +5 -1
  11. package/components/checkbox/src/index.vue.d.ts +19 -1
  12. package/components/collapse/index.cjs +1 -0
  13. package/components/collapse/index.d.ts +4 -0
  14. package/components/collapse/index.mjs +45 -0
  15. package/components/collapse/src/index.vue.d.ts +15 -0
  16. package/components/collapse/src/set-attrs.vue.d.ts +23 -0
  17. package/components/collapse-item/index.cjs +1 -0
  18. package/components/collapse-item/index.d.ts +6 -0
  19. package/components/collapse-item/index.mjs +63 -0
  20. package/components/collapse-item/src/ctx.d.ts +7 -0
  21. package/components/collapse-item/src/index.vue.d.ts +36 -0
  22. package/components/collapse-item/src/types.d.ts +1 -0
  23. package/components/collapse-item/src/use.d.ts +13 -0
  24. package/components/color-picker/src/ctx.d.ts +4 -0
  25. package/components/color-picker/src/index.vue.d.ts +10 -1
  26. package/components/date-picker/src/ctx.d.ts +5 -1
  27. package/components/date-picker/src/index.vue.d.ts +13 -4
  28. package/components/date-picker-range/src/ctx.d.ts +90 -86
  29. package/components/date-picker-range/src/index.vue.d.ts +198 -180
  30. package/components/dialog/src/ctx.d.ts +1 -1
  31. package/components/dialog-input-collection/src/ctx.d.ts +4 -0
  32. package/components/dialog-input-collection/src/dialog-form.vue.d.ts +1 -1
  33. package/components/dialog-input-collection/src/index.vue.d.ts +9 -0
  34. package/components/download-plus/src/ctx.d.ts +4 -0
  35. package/components/download-plus/src/index.vue.d.ts +18 -0
  36. package/components/editable-text/src/ctx.d.ts +4 -0
  37. package/components/editable-text/src/index.vue.d.ts +9 -0
  38. package/components/el-slider/src/slider-core.vue.d.ts +2 -2
  39. package/components/esri-input-geojson/src/ctx.d.ts +5 -1
  40. package/components/esri-input-geojson/src/index.vue.d.ts +34 -6
  41. package/components/form/index.cjs +1 -1
  42. package/components/form/index.d.ts +1 -0
  43. package/components/form/index.mjs +115 -80
  44. package/components/form/src/index.vue.d.ts +1 -1
  45. package/components/form/src/types.d.ts +2 -1
  46. package/components/form/src/use.d.ts +206 -0
  47. package/components/form-item/index.cjs +1 -1
  48. package/components/form-item/index.mjs +103 -80
  49. package/components/form-item/src/core.vue.d.ts +4 -0
  50. package/components/form-item/src/ctx.d.ts +6 -1
  51. package/components/form-item/src/index.vue.d.ts +9 -0
  52. package/components/information-collection/src/ctx.d.ts +4 -0
  53. package/components/information-collection/src/index.vue.d.ts +9 -0
  54. package/components/information-tag/src/index.vue.d.ts +2 -2
  55. package/components/input/src/ctx.d.ts +5 -1
  56. package/components/input/src/index.vue.d.ts +21 -3
  57. package/components/input-array/src/ctx.d.ts +4 -0
  58. package/components/input-array/src/index.vue.d.ts +9 -0
  59. package/components/input-collection/src/core.vue.d.ts +9 -0
  60. package/components/input-collection/src/ctx.d.ts +4 -0
  61. package/components/input-collection/src/index.vue.d.ts +9 -0
  62. package/components/input-file/src/index.vue.d.ts +9 -0
  63. package/components/input-link/src/ctx.d.ts +4 -0
  64. package/components/input-link/src/index.vue.d.ts +31 -4
  65. package/components/input-number/src/ctx.d.ts +5 -1
  66. package/components/input-number/src/index.vue.d.ts +21 -3
  67. package/components/input-tag/src/ctx.d.ts +5 -1
  68. package/components/input-tag/src/index.vue.d.ts +25 -7
  69. package/components/monaco-editor/src/ctx.d.ts +4 -0
  70. package/components/monaco-editor/src/index.vue.d.ts +18 -0
  71. package/components/radio/src/ctx.d.ts +4 -0
  72. package/components/radio/src/index.vue.d.ts +21 -3
  73. package/components/radio/src/wraper.vue.d.ts +10 -1
  74. package/components/select/src/core.vue.d.ts +33 -15
  75. package/components/select/src/ctx.d.ts +5 -1
  76. package/components/select/src/index.vue.d.ts +15 -6
  77. package/components/slider/src/ctx.d.ts +4 -0
  78. package/components/slider/src/index.vue.d.ts +11 -2
  79. package/components/switch/src/ctx.d.ts +4 -0
  80. package/components/switch/src/index.vue.d.ts +9 -0
  81. package/components/tables-select/src/ctx.d.ts +5 -1
  82. package/components/tables-select/src/index.vue.d.ts +10 -1
  83. package/components/templates-default/src/index.vue.d.ts +218 -38
  84. package/components/templates-esri/src/index.vue.d.ts +34 -6
  85. package/components/templates-variant/src/index.vue.d.ts +198 -180
  86. package/components/time-picker/src/ctx.d.ts +5 -1
  87. package/components/time-picker/src/index.vue.d.ts +13 -4
  88. package/components/upload/src/ctx.d.ts +5 -1
  89. package/components/upload/src/index.vue.d.ts +18 -0
  90. package/components/upload/src/wraper.vue.d.ts +9 -0
  91. package/components/upload-plus/src/ctx.d.ts +4 -0
  92. package/components/upload-plus/src/index.vue.d.ts +9 -0
  93. package/components/van-cascader/src/ctx.d.ts +4 -0
  94. package/components/van-cascader/src/index.vue.d.ts +12 -3
  95. package/components/var-datetime-picker/src/ctx.d.ts +4 -0
  96. package/components/var-datetime-picker/src/index.vue.d.ts +18 -0
  97. package/components/vditor/src/ctx.d.ts +4 -0
  98. package/components/vditor/src/index.vue.d.ts +18 -0
  99. package/composables/form-mitt/index.cjs +1 -0
  100. package/composables/form-mitt/index.d.ts +37 -0
  101. package/composables/form-mitt/index.mjs +41 -0
  102. package/composables/index.cjs +1 -1
  103. package/composables/index.d.ts +1 -0
  104. package/composables/index.mjs +16 -14
  105. package/package.json +19 -1
  106. package/shared/element-plus/ctx.d.ts +14 -13
  107. package/shared/element-plus/index.cjs +1 -1
  108. package/shared/element-plus/index.mjs +57 -56
@@ -92,6 +92,10 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
92
92
  default: boolean;
93
93
  };
94
94
  prop: null;
95
+ labelTipProps: {
96
+ type: import("vue").PropType<import("element-plus").UseTooltipProps>;
97
+ default: () => {};
98
+ };
95
99
  label: StringConstructor;
96
100
  labelWidth: {
97
101
  readonly type: import("vue").PropType<import("element-plus/es/utils/index.mjs").EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>>;
@@ -119,11 +123,11 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
119
123
  formItemBindProps: import("vue").ComputedRef<{}>;
120
124
  coreBindProps: import("vue").ComputedRef<{
121
125
  type: "button" | "checkbox";
126
+ ariaLabel: string | undefined;
122
127
  size: import("element-plus/es/utils/index.mjs").EpPropMergeType<StringConstructor, "" | "default" | "small" | "large", never> | undefined;
123
128
  fill: string | undefined;
124
129
  modelValue: (string | number)[] | undefined;
125
130
  validateEvent: import("element-plus/es/utils/index.mjs").EpPropMergeType<BooleanConstructor, unknown, unknown>;
126
- ariaLabel: string | undefined;
127
131
  props: {
128
132
  value?: string;
129
133
  label?: string;
@@ -233,6 +237,10 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
233
237
  default: boolean;
234
238
  };
235
239
  prop: null;
240
+ labelTipProps: {
241
+ type: import("vue").PropType<import("element-plus").UseTooltipProps>;
242
+ default: () => {};
243
+ };
236
244
  label: StringConstructor;
237
245
  labelWidth: {
238
246
  readonly type: import("vue").PropType<import("element-plus/es/utils/index.mjs").EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>>;
@@ -271,6 +279,7 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
271
279
  labelTip: string;
272
280
  information: boolean;
273
281
  defaultModelValue: any[];
282
+ labelTipProps: import("element-plus").UseTooltipProps;
274
283
  inlineMessage: import("element-plus/es/utils/index.mjs").EpPropMergeType<BooleanConstructor, unknown, unknown>;
275
284
  showMessage: import("element-plus/es/utils/index.mjs").EpPropMergeType<BooleanConstructor, unknown, unknown>;
276
285
  disabled: import("element-plus/es/utils/index.mjs").EpPropMergeType<BooleanConstructor, unknown, unknown>;
@@ -324,6 +333,10 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
324
333
  };
325
334
  prop: null;
326
335
  defaultModelValue: null;
336
+ labelTipProps: {
337
+ type: import("vue").PropType<import("element-plus").UseTooltipProps>;
338
+ default: () => {};
339
+ };
327
340
  label: StringConstructor;
328
341
  labelWidth: {
329
342
  readonly type: import("vue").PropType<import("element-plus/es/utils/index.mjs").EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>>;
@@ -396,6 +409,10 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
396
409
  };
397
410
  prop: null;
398
411
  defaultModelValue: null;
412
+ labelTipProps: {
413
+ type: import("vue").PropType<import("element-plus").UseTooltipProps>;
414
+ default: () => {};
415
+ };
399
416
  label: StringConstructor;
400
417
  labelWidth: {
401
418
  readonly type: import("vue").PropType<import("element-plus/es/utils/index.mjs").EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>>;
@@ -436,6 +453,7 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
436
453
  formItemTip: string;
437
454
  labelTip: string;
438
455
  information: boolean;
456
+ labelTipProps: import("element-plus").UseTooltipProps;
439
457
  inlineMessage: import("element-plus/es/utils/index.mjs").EpPropMergeType<BooleanConstructor, unknown, unknown>;
440
458
  showMessage: import("element-plus/es/utils/index.mjs").EpPropMergeType<BooleanConstructor, unknown, unknown>;
441
459
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
@@ -0,0 +1 @@
1
+ "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e=require("vue"),a=require("element-plus"),l=e.defineComponent({__name:"set-attrs",props:{accordion:{type:Boolean}},setup(n){const o=n,c=e.inject(a.collapseContextKey,null);return e.provide(a.collapseContextKey,{...c,accordion:e.computed(()=>o.accordion)}),(t,d)=>e.renderSlot(t.$slots,"default")}}),u=e.defineComponent({name:"VkfCollapse",props:{accordion:{type:Boolean}},setup(n,{slots:o,attrs:c}){return()=>e.h(a.ElCollapse,{accordion:n.accordion,...c},{...o,default:()=>e.h(l,{accordion:n.accordion},{default:()=>{var t;return(t=o.default)==null?void 0:t.call(o)}})})}}),r=u;exports.VkfCollapse=r;exports.default=r;
@@ -0,0 +1,4 @@
1
+ import { ElCollapse } from 'element-plus';
2
+ declare const VkfCollapse: typeof ElCollapse;
3
+ export { VkfCollapse, };
4
+ export default VkfCollapse;
@@ -0,0 +1,45 @@
1
+ import { defineComponent as r, inject as p, provide as d, computed as l, renderSlot as i, h as a } from "vue";
2
+ import { collapseContextKey as t, ElCollapse as f } from "element-plus";
3
+ const u = /* @__PURE__ */ r({
4
+ __name: "set-attrs",
5
+ props: {
6
+ accordion: {
7
+ type: Boolean
8
+ }
9
+ },
10
+ setup(e) {
11
+ const o = e, c = p(t, null);
12
+ return d(t, {
13
+ ...c,
14
+ // provider to collapse-item,
15
+ accordion: l(() => o.accordion)
16
+ }), (n, m) => i(n.$slots, "default");
17
+ }
18
+ }), s = r({
19
+ name: "VkfCollapse",
20
+ props: {
21
+ accordion: {
22
+ type: Boolean
23
+ }
24
+ },
25
+ setup(e, { slots: o, attrs: c }) {
26
+ return () => a(f, {
27
+ accordion: e.accordion,
28
+ ...c
29
+ }, {
30
+ ...o,
31
+ default: () => a(u, {
32
+ accordion: e.accordion
33
+ }, {
34
+ default: () => {
35
+ var n;
36
+ return (n = o.default) == null ? void 0 : n.call(o);
37
+ }
38
+ })
39
+ });
40
+ }
41
+ }), x = s;
42
+ export {
43
+ x as VkfCollapse,
44
+ x as default
45
+ };
@@ -0,0 +1,15 @@
1
+ declare const _default: typeof __VLS_export;
2
+ export default _default;
3
+ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
4
+ accordion: {
5
+ type: BooleanConstructor;
6
+ };
7
+ }>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
8
+ [key: string]: any;
9
+ }>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
10
+ accordion: {
11
+ type: BooleanConstructor;
12
+ };
13
+ }>> & Readonly<{}>, {
14
+ accordion: boolean;
15
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
@@ -0,0 +1,23 @@
1
+ declare var __VLS_1: {};
2
+ type __VLS_Slots = {} & {
3
+ default?: (props: typeof __VLS_1) => any;
4
+ };
5
+ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
6
+ accordion: {
7
+ type: BooleanConstructor;
8
+ };
9
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
10
+ accordion: {
11
+ type: BooleanConstructor;
12
+ };
13
+ }>> & Readonly<{}>, {
14
+ accordion: boolean;
15
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
16
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
17
+ declare const _default: typeof __VLS_export;
18
+ export default _default;
19
+ type __VLS_WithSlots<T, S> = T & {
20
+ new (): {
21
+ $slots: S;
22
+ };
23
+ };
@@ -0,0 +1 @@
1
+ "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e=require("vue"),n=require("element-plus"),f=require("@vunk/form/shared/element-plus"),c={...n.collapseItemProps},C={},I=Object.freeze(Object.defineProperty({__proto__:null,emits:C,props:c},Symbol.toStringTag,{value:"Module"})),u=Symbol("vkfCollapseItemContextKey");function v(l){const t=e.inject(n.collapseContextKey,null),s=e.reactive({activeNames:t==null?void 0:t.activeNames,handleItemClick:t==null?void 0:t.handleItemClick,name:e.computed(()=>e.unref(l.name)),accordion:t==null?void 0:t.accordion});e.provide(u,s)}function _(){return e.inject(u,null)}const m=e.defineComponent({name:"VkfCollapseItem",__name:"index",props:c,setup(l){const t=l,s=f.createCollapseItemBindProps(t),{namespace:p}=n.useNamespace("collapse"),a=n.useIdInjection(),d=`${p.value}-id-${a.prefix}-${a.current++}`,i=e.computed(()=>t.name??d);return v({name:i}),(o,k)=>(e.openBlock(),e.createBlock(e.unref(n.ElCollapseItem),e.mergeProps(e.unref(s),{name:i.value,title:o.title}),e.createSlots({default:e.withCtx(()=>[e.renderSlot(o.$slots,"default")]),_:2},[o.$slots.title?{name:"title",fn:e.withCtx(r=>[e.renderSlot(o.$slots,"title",e.normalizeProps(e.guardReactiveProps(r)))]),key:"0"}:void 0,o.$slots.icon?{name:"icon",fn:e.withCtx(r=>[e.renderSlot(o.$slots,"icon",e.normalizeProps(e.guardReactiveProps(r)))]),key:"1"}:void 0]),1040,["name","title"]))}}),P=Object.freeze(Object.defineProperty({__proto__:null},Symbol.toStringTag,{value:"Module"}));exports.VkfCollapseItem=m;exports._VkfCollapseItemCtx=I;exports.__VkfCollapseItem=P;exports.default=m;exports.useCollapseItemContext=_;
@@ -0,0 +1,6 @@
1
+ import VkfCollapseItem from './src/index.vue';
2
+ export * as __VkfCollapseItem from './src/types';
3
+ export * as _VkfCollapseItemCtx from './src/ctx';
4
+ export { useCollapseItemContext } from './src/use';
5
+ export { VkfCollapseItem, };
6
+ export default VkfCollapseItem;
@@ -0,0 +1,63 @@
1
+ import { inject as u, reactive as k, computed as d, unref as r, provide as _, defineComponent as y, openBlock as b, createBlock as P, mergeProps as $, createSlots as j, withCtx as s, renderSlot as a, normalizeProps as m, guardReactiveProps as p } from "vue";
2
+ import { collapseItemProps as S, collapseContextKey as g, useNamespace as h, useIdInjection as O, ElCollapseItem as V } from "element-plus";
3
+ import { createCollapseItemBindProps as z } from "@vunk/form/shared/element-plus";
4
+ const f = {
5
+ ...S
6
+ }, B = {}, x = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
7
+ __proto__: null,
8
+ emits: B,
9
+ props: f
10
+ }, Symbol.toStringTag, { value: "Module" })), I = Symbol("vkfCollapseItemContextKey");
11
+ function K(o) {
12
+ const e = u(g, null), n = k({
13
+ activeNames: e == null ? void 0 : e.activeNames,
14
+ handleItemClick: e == null ? void 0 : e.handleItemClick,
15
+ name: d(() => r(o.name)),
16
+ accordion: e == null ? void 0 : e.accordion
17
+ });
18
+ _(I, n);
19
+ }
20
+ function E() {
21
+ return u(I, null);
22
+ }
23
+ const R = /* @__PURE__ */ y({
24
+ name: "VkfCollapseItem",
25
+ __name: "index",
26
+ props: f,
27
+ setup(o) {
28
+ const e = o, n = z(e), { namespace: C } = h("collapse"), i = O(), v = `${C.value}-id-${i.prefix}-${i.current++}`, c = d(() => e.name ?? v);
29
+ return K({ name: c }), (t, N) => (b(), P(r(V), $(r(n), {
30
+ name: c.value,
31
+ title: t.title
32
+ }), j({
33
+ default: s(() => [
34
+ a(t.$slots, "default")
35
+ ]),
36
+ _: 2
37
+ }, [
38
+ t.$slots.title ? {
39
+ name: "title",
40
+ fn: s((l) => [
41
+ a(t.$slots, "title", m(p(l)))
42
+ ]),
43
+ key: "0"
44
+ } : void 0,
45
+ t.$slots.icon ? {
46
+ name: "icon",
47
+ fn: s((l) => [
48
+ a(t.$slots, "icon", m(p(l)))
49
+ ]),
50
+ key: "1"
51
+ } : void 0
52
+ ]), 1040, ["name", "title"]));
53
+ }
54
+ }), q = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
55
+ __proto__: null
56
+ }, Symbol.toStringTag, { value: "Module" }));
57
+ export {
58
+ R as VkfCollapseItem,
59
+ x as _VkfCollapseItemCtx,
60
+ q as __VkfCollapseItem,
61
+ R as default,
62
+ E as useCollapseItemContext
63
+ };
@@ -0,0 +1,7 @@
1
+ export declare const props: {
2
+ title: import("element-plus/es/utils/index.mjs").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
3
+ name: import("element-plus/es/utils/index.mjs").EpPropFinalized<(new (...args: any[]) => string | number) | (() => import("element-plus").CollapseActiveName) | (((new (...args: any[]) => string | number) | (() => import("element-plus").CollapseActiveName)) | null)[], unknown, unknown, undefined, boolean>;
4
+ icon: import("element-plus/es/utils/index.mjs").EpPropFinalized<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | (((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component)) | null)[], unknown, unknown, import("vue").DefineComponent<{}, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, boolean>;
5
+ disabled: BooleanConstructor;
6
+ };
7
+ export declare const emits: {};
@@ -0,0 +1,36 @@
1
+ declare var __VLS_9: {
2
+ isActive: boolean | undefined;
3
+ }, __VLS_12: {
4
+ isActive: boolean | undefined;
5
+ }, __VLS_14: {};
6
+ type __VLS_Slots = {} & {
7
+ title?: (props: typeof __VLS_9) => any;
8
+ } & {
9
+ icon?: (props: typeof __VLS_12) => any;
10
+ } & {
11
+ default?: (props: typeof __VLS_14) => any;
12
+ };
13
+ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
14
+ title: import("element-plus/es/utils/index.mjs").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
15
+ name: import("element-plus/es/utils/index.mjs").EpPropFinalized<(new (...args: any[]) => string | number) | (() => import("element-plus").CollapseActiveName) | (((new (...args: any[]) => string | number) | (() => import("element-plus").CollapseActiveName)) | null)[], unknown, unknown, undefined, boolean>;
16
+ icon: import("element-plus/es/utils/index.mjs").EpPropFinalized<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | (((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component)) | null)[], unknown, unknown, import("vue").DefineComponent<{}, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, boolean>;
17
+ disabled: BooleanConstructor;
18
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
19
+ title: import("element-plus/es/utils/index.mjs").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
20
+ name: import("element-plus/es/utils/index.mjs").EpPropFinalized<(new (...args: any[]) => string | number) | (() => import("element-plus").CollapseActiveName) | (((new (...args: any[]) => string | number) | (() => import("element-plus").CollapseActiveName)) | null)[], unknown, unknown, undefined, boolean>;
21
+ icon: import("element-plus/es/utils/index.mjs").EpPropFinalized<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | (((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component)) | null)[], unknown, unknown, import("vue").DefineComponent<{}, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, boolean>;
22
+ disabled: BooleanConstructor;
23
+ }>> & Readonly<{}>, {
24
+ disabled: boolean;
25
+ icon: import("element-plus/es/utils/index.mjs").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | null)[], unknown, unknown>;
26
+ name: import("element-plus/es/utils/index.mjs").EpPropMergeType<(new (...args: any[]) => string | number) | (() => import("element-plus").CollapseActiveName) | ((new (...args: any[]) => string | number) | (() => import("element-plus").CollapseActiveName) | null)[], unknown, unknown>;
27
+ title: string;
28
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
29
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
30
+ declare const _default: typeof __VLS_export;
31
+ export default _default;
32
+ type __VLS_WithSlots<T, S> = T & {
33
+ new (): {
34
+ $slots: S;
35
+ };
36
+ };
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,13 @@
1
+ import { MaybeRef } from 'vue';
2
+ export interface CollapseItemContext {
3
+ /** Unwrapped value of ElCollapse's activeNames: a string in accordion mode,
4
+ * an array otherwise. Mutating it drives the native collapse. */
5
+ activeNames: (string | number)[];
6
+ handleItemClick: (name: string | number) => void;
7
+ name: string | number;
8
+ accordion?: boolean;
9
+ }
10
+ export declare function initCollapseItemContext(props: {
11
+ name: MaybeRef<string | number>;
12
+ }): void;
13
+ export declare function useCollapseItemContext(): CollapseItemContext | null;
@@ -179,6 +179,10 @@ export declare const props: {
179
179
  };
180
180
  prop: null;
181
181
  defaultModelValue: null;
182
+ labelTipProps: {
183
+ type: PropType<import("element-plus").UseTooltipProps>;
184
+ default: () => {};
185
+ };
182
186
  label: StringConstructor;
183
187
  labelWidth: {
184
188
  readonly type: PropType<import("element-plus/es/utils/index.mjs").EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>>;
@@ -181,6 +181,10 @@ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPro
181
181
  };
182
182
  prop: null;
183
183
  defaultModelValue: null;
184
+ labelTipProps: {
185
+ type: import("vue").PropType<import("element-plus").UseTooltipProps>;
186
+ default: () => {};
187
+ };
184
188
  label: StringConstructor;
185
189
  labelWidth: {
186
190
  readonly type: import("vue").PropType<import("element-plus/es/utils/index.mjs").EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>>;
@@ -390,6 +394,10 @@ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPro
390
394
  };
391
395
  prop: null;
392
396
  defaultModelValue: null;
397
+ labelTipProps: {
398
+ type: import("vue").PropType<import("element-plus").UseTooltipProps>;
399
+ default: () => {};
400
+ };
393
401
  label: StringConstructor;
394
402
  labelWidth: {
395
403
  readonly type: import("vue").PropType<import("element-plus/es/utils/index.mjs").EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>>;
@@ -422,6 +430,7 @@ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPro
422
430
  onActiveChange?: ((val: string | null) => any) | undefined;
423
431
  }>, {
424
432
  required: import("element-plus/es/utils/index.mjs").EpPropMergeType<BooleanConstructor, unknown, unknown>;
433
+ popperStyle: import("vue").StyleValue;
425
434
  labelPosition: "left" | "right" | "top" | "start" | "end";
426
435
  formItemSize: "default" | "small" | "large";
427
436
  formItemSlots: import("../../form-item/src/types").FormItemSlots;
@@ -430,6 +439,7 @@ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPro
430
439
  formItemTip: string;
431
440
  labelTip: string;
432
441
  information: boolean;
442
+ labelTipProps: import("element-plus").UseTooltipProps;
433
443
  inlineMessage: import("element-plus/es/utils/index.mjs").EpPropMergeType<BooleanConstructor, unknown, unknown>;
434
444
  showMessage: import("element-plus/es/utils/index.mjs").EpPropMergeType<BooleanConstructor, unknown, unknown>;
435
445
  disabled: import("element-plus/es/utils/index.mjs").EpPropMergeType<BooleanConstructor, unknown, unknown>;
@@ -438,7 +448,6 @@ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPro
438
448
  tabindex: import("element-plus/es/utils/index.mjs").EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
439
449
  validateEvent: import("element-plus/es/utils/index.mjs").EpPropMergeType<BooleanConstructor, unknown, unknown>;
440
450
  valueOnClear: import("element-plus/es/utils/index.mjs").EpPropMergeType<(new (...args: any[]) => string | number | boolean | Function) | (() => string | number | boolean | Function | null) | ((new (...args: any[]) => string | number | boolean | Function) | (() => string | number | boolean | Function | null) | null)[], unknown, unknown>;
441
- popperStyle: import("vue").StyleValue;
442
451
  teleported: import("element-plus/es/utils/index.mjs").EpPropMergeType<BooleanConstructor, unknown, unknown>;
443
452
  persistent: import("element-plus/es/utils/index.mjs").EpPropMergeType<BooleanConstructor, unknown, unknown>;
444
453
  colorPickerRef: import("@vunk/shared").AnyFunc;
@@ -45,6 +45,10 @@ export declare const props: {
45
45
  };
46
46
  prop: null;
47
47
  defaultModelValue: null;
48
+ labelTipProps: {
49
+ type: PropType<import("element-plus").UseTooltipProps>;
50
+ default: () => {};
51
+ };
48
52
  label: StringConstructor;
49
53
  labelWidth: {
50
54
  readonly type: PropType<import("element-plus/es/utils/index.mjs").EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>>;
@@ -269,7 +273,7 @@ export declare const props: {
269
273
  };
270
274
  isRange: BooleanConstructor;
271
275
  };
272
- export declare const createBindProps: <T2 extends import("@vunk/core").NormalObject, EX extends (Extract<"type", keyof T2> | Extract<"required", keyof T2> | Extract<"size", keyof T2> | Extract<"labelPosition", keyof T2> | Extract<"formItemSize", keyof T2> | Extract<"formItemSlots", keyof T2> | Extract<"elRef", keyof T2> | Extract<"inline", keyof T2> | Extract<"readonly", keyof T2> | Extract<"formItemTip", keyof T2> | Extract<"formItemTipClass", keyof T2> | Extract<"labelTip", keyof T2> | Extract<"information", keyof T2> | Extract<"prop", keyof T2> | Extract<"defaultModelValue", keyof T2> | Extract<"label", keyof T2> | Extract<"labelWidth", keyof T2> | Extract<"rules", keyof T2> | Extract<"error", keyof T2> | Extract<"validateStatus", keyof T2> | Extract<"for", keyof T2> | Extract<"inlineMessage", keyof T2> | Extract<"showMessage", keyof T2> | Extract<"placement", keyof T2> | Extract<"disabled", keyof T2> | Extract<"id", keyof T2> | Extract<"modelValue", keyof T2> | Extract<"placeholder", keyof T2> | Extract<"clearable", keyof T2> | Extract<"clearIcon", keyof T2> | Extract<"prefixIcon", keyof T2> | Extract<"tabindex", keyof T2> | Extract<"validateEvent", keyof T2> | Extract<"ariaLabel", keyof T2> | Extract<"name", keyof T2> | Extract<"emptyValues", keyof T2> | Extract<"valueOnClear", keyof T2> | Extract<"automaticDropdown", keyof T2> | Extract<"popperClass", keyof T2> | Extract<"popperStyle", keyof T2> | Extract<"popperOptions", keyof T2> | Extract<"fallbackPlacements", keyof T2> | Extract<"datePickerSlots", keyof T2> | Extract<"showNow", keyof T2> | Extract<"showConfirm", keyof T2> | Extract<"showFooter", keyof T2> | Extract<"showWeekNumber", keyof T2> | Extract<"disabledDate", keyof T2> | Extract<"cellClassName", keyof T2> | Extract<"shortcuts", keyof T2> | Extract<"arrowControl", keyof T2> | Extract<"unlinkPanels", keyof T2> | Extract<"singlePanel", keyof T2> | Extract<"disabledHours", keyof T2> | Extract<"disabledMinutes", keyof T2> | Extract<"disabledSeconds", keyof T2> | Extract<"format", keyof T2> | Extract<"valueFormat", keyof T2> | Extract<"dateFormat", keyof T2> | Extract<"timeFormat", keyof T2> | Extract<"editable", keyof T2> | Extract<"saveOnBlur", keyof T2> | Extract<"rangeSeparator", keyof T2> | Extract<"startPlaceholder", keyof T2> | Extract<"endPlaceholder", keyof T2> | Extract<"defaultValue", keyof T2> | Extract<"defaultTime", keyof T2> | Extract<"isRange", keyof T2>)[]>(propsArg: T2, excludes?: EX | undefined) => import("vue").ComputedRef<{ [P in EX extends (infer KE)[] ? Exclude<Extract<"type", keyof T2>, KE> | Exclude<Extract<"required", keyof T2>, KE> | Exclude<Extract<"size", keyof T2>, KE> | Exclude<Extract<"labelPosition", keyof T2>, KE> | Exclude<Extract<"formItemSize", keyof T2>, KE> | Exclude<Extract<"formItemSlots", keyof T2>, KE> | Exclude<Extract<"elRef", keyof T2>, KE> | Exclude<Extract<"inline", keyof T2>, KE> | Exclude<Extract<"readonly", keyof T2>, KE> | Exclude<Extract<"formItemTip", keyof T2>, KE> | Exclude<Extract<"formItemTipClass", keyof T2>, KE> | Exclude<Extract<"labelTip", keyof T2>, KE> | Exclude<Extract<"information", keyof T2>, KE> | Exclude<Extract<"prop", keyof T2>, KE> | Exclude<Extract<"defaultModelValue", keyof T2>, KE> | Exclude<Extract<"label", keyof T2>, KE> | Exclude<Extract<"labelWidth", keyof T2>, KE> | Exclude<Extract<"rules", keyof T2>, KE> | Exclude<Extract<"error", keyof T2>, KE> | Exclude<Extract<"validateStatus", keyof T2>, KE> | Exclude<Extract<"for", keyof T2>, KE> | Exclude<Extract<"inlineMessage", keyof T2>, KE> | Exclude<Extract<"showMessage", keyof T2>, KE> | Exclude<Extract<"placement", keyof T2>, KE> | Exclude<Extract<"disabled", keyof T2>, KE> | Exclude<Extract<"id", keyof T2>, KE> | Exclude<Extract<"modelValue", keyof T2>, KE> | Exclude<Extract<"placeholder", keyof T2>, KE> | Exclude<Extract<"clearable", keyof T2>, KE> | Exclude<Extract<"clearIcon", keyof T2>, KE> | Exclude<Extract<"prefixIcon", keyof T2>, KE> | Exclude<Extract<"tabindex", keyof T2>, KE> | Exclude<Extract<"validateEvent", keyof T2>, KE> | Exclude<Extract<"ariaLabel", keyof T2>, KE> | Exclude<Extract<"name", keyof T2>, KE> | Exclude<Extract<"emptyValues", keyof T2>, KE> | Exclude<Extract<"valueOnClear", keyof T2>, KE> | Exclude<Extract<"automaticDropdown", keyof T2>, KE> | Exclude<Extract<"popperClass", keyof T2>, KE> | Exclude<Extract<"popperStyle", keyof T2>, KE> | Exclude<Extract<"popperOptions", keyof T2>, KE> | Exclude<Extract<"fallbackPlacements", keyof T2>, KE> | Exclude<Extract<"datePickerSlots", keyof T2>, KE> | Exclude<Extract<"showNow", keyof T2>, KE> | Exclude<Extract<"showConfirm", keyof T2>, KE> | Exclude<Extract<"showFooter", keyof T2>, KE> | Exclude<Extract<"showWeekNumber", keyof T2>, KE> | Exclude<Extract<"disabledDate", keyof T2>, KE> | Exclude<Extract<"cellClassName", keyof T2>, KE> | Exclude<Extract<"shortcuts", keyof T2>, KE> | Exclude<Extract<"arrowControl", keyof T2>, KE> | Exclude<Extract<"unlinkPanels", keyof T2>, KE> | Exclude<Extract<"singlePanel", keyof T2>, KE> | Exclude<Extract<"disabledHours", keyof T2>, KE> | Exclude<Extract<"disabledMinutes", keyof T2>, KE> | Exclude<Extract<"disabledSeconds", keyof T2>, KE> | Exclude<Extract<"format", keyof T2>, KE> | Exclude<Extract<"valueFormat", keyof T2>, KE> | Exclude<Extract<"dateFormat", keyof T2>, KE> | Exclude<Extract<"timeFormat", keyof T2>, KE> | Exclude<Extract<"editable", keyof T2>, KE> | Exclude<Extract<"saveOnBlur", keyof T2>, KE> | Exclude<Extract<"rangeSeparator", keyof T2>, KE> | Exclude<Extract<"startPlaceholder", keyof T2>, KE> | Exclude<Extract<"endPlaceholder", keyof T2>, KE> | Exclude<Extract<"defaultValue", keyof T2>, KE> | Exclude<Extract<"defaultTime", keyof T2>, KE> | Exclude<Extract<"isRange", keyof T2>, KE> : Extract<"type", keyof T2> | Extract<"required", keyof T2> | Extract<"size", keyof T2> | Extract<"labelPosition", keyof T2> | Extract<"formItemSize", keyof T2> | Extract<"formItemSlots", keyof T2> | Extract<"elRef", keyof T2> | Extract<"inline", keyof T2> | Extract<"readonly", keyof T2> | Extract<"formItemTip", keyof T2> | Extract<"formItemTipClass", keyof T2> | Extract<"labelTip", keyof T2> | Extract<"information", keyof T2> | Extract<"prop", keyof T2> | Extract<"defaultModelValue", keyof T2> | Extract<"label", keyof T2> | Extract<"labelWidth", keyof T2> | Extract<"rules", keyof T2> | Extract<"error", keyof T2> | Extract<"validateStatus", keyof T2> | Extract<"for", keyof T2> | Extract<"inlineMessage", keyof T2> | Extract<"showMessage", keyof T2> | Extract<"placement", keyof T2> | Extract<"disabled", keyof T2> | Extract<"id", keyof T2> | Extract<"modelValue", keyof T2> | Extract<"placeholder", keyof T2> | Extract<"clearable", keyof T2> | Extract<"clearIcon", keyof T2> | Extract<"prefixIcon", keyof T2> | Extract<"tabindex", keyof T2> | Extract<"validateEvent", keyof T2> | Extract<"ariaLabel", keyof T2> | Extract<"name", keyof T2> | Extract<"emptyValues", keyof T2> | Extract<"valueOnClear", keyof T2> | Extract<"automaticDropdown", keyof T2> | Extract<"popperClass", keyof T2> | Extract<"popperStyle", keyof T2> | Extract<"popperOptions", keyof T2> | Extract<"fallbackPlacements", keyof T2> | Extract<"datePickerSlots", keyof T2> | Extract<"showNow", keyof T2> | Extract<"showConfirm", keyof T2> | Extract<"showFooter", keyof T2> | Extract<"showWeekNumber", keyof T2> | Extract<"disabledDate", keyof T2> | Extract<"cellClassName", keyof T2> | Extract<"shortcuts", keyof T2> | Extract<"arrowControl", keyof T2> | Extract<"unlinkPanels", keyof T2> | Extract<"singlePanel", keyof T2> | Extract<"disabledHours", keyof T2> | Extract<"disabledMinutes", keyof T2> | Extract<"disabledSeconds", keyof T2> | Extract<"format", keyof T2> | Extract<"valueFormat", keyof T2> | Extract<"dateFormat", keyof T2> | Extract<"timeFormat", keyof T2> | Extract<"editable", keyof T2> | Extract<"saveOnBlur", keyof T2> | Extract<"rangeSeparator", keyof T2> | Extract<"startPlaceholder", keyof T2> | Extract<"endPlaceholder", keyof T2> | Extract<"defaultValue", keyof T2> | Extract<"defaultTime", keyof T2> | Extract<"isRange", keyof T2>]: { [k in Extract<"type", keyof T2> | Extract<"required", keyof T2> | Extract<"size", keyof T2> | Extract<"labelPosition", keyof T2> | Extract<"formItemSize", keyof T2> | Extract<"formItemSlots", keyof T2> | Extract<"elRef", keyof T2> | Extract<"inline", keyof T2> | Extract<"readonly", keyof T2> | Extract<"formItemTip", keyof T2> | Extract<"formItemTipClass", keyof T2> | Extract<"labelTip", keyof T2> | Extract<"information", keyof T2> | Extract<"prop", keyof T2> | Extract<"defaultModelValue", keyof T2> | Extract<"label", keyof T2> | Extract<"labelWidth", keyof T2> | Extract<"rules", keyof T2> | Extract<"error", keyof T2> | Extract<"validateStatus", keyof T2> | Extract<"for", keyof T2> | Extract<"inlineMessage", keyof T2> | Extract<"showMessage", keyof T2> | Extract<"placement", keyof T2> | Extract<"disabled", keyof T2> | Extract<"id", keyof T2> | Extract<"modelValue", keyof T2> | Extract<"placeholder", keyof T2> | Extract<"clearable", keyof T2> | Extract<"clearIcon", keyof T2> | Extract<"prefixIcon", keyof T2> | Extract<"tabindex", keyof T2> | Extract<"validateEvent", keyof T2> | Extract<"ariaLabel", keyof T2> | Extract<"name", keyof T2> | Extract<"emptyValues", keyof T2> | Extract<"valueOnClear", keyof T2> | Extract<"automaticDropdown", keyof T2> | Extract<"popperClass", keyof T2> | Extract<"popperStyle", keyof T2> | Extract<"popperOptions", keyof T2> | Extract<"fallbackPlacements", keyof T2> | Extract<"datePickerSlots", keyof T2> | Extract<"showNow", keyof T2> | Extract<"showConfirm", keyof T2> | Extract<"showFooter", keyof T2> | Extract<"showWeekNumber", keyof T2> | Extract<"disabledDate", keyof T2> | Extract<"cellClassName", keyof T2> | Extract<"shortcuts", keyof T2> | Extract<"arrowControl", keyof T2> | Extract<"unlinkPanels", keyof T2> | Extract<"singlePanel", keyof T2> | Extract<"disabledHours", keyof T2> | Extract<"disabledMinutes", keyof T2> | Extract<"disabledSeconds", keyof T2> | Extract<"format", keyof T2> | Extract<"valueFormat", keyof T2> | Extract<"dateFormat", keyof T2> | Extract<"timeFormat", keyof T2> | Extract<"editable", keyof T2> | Extract<"saveOnBlur", keyof T2> | Extract<"rangeSeparator", keyof T2> | Extract<"startPlaceholder", keyof T2> | Extract<"endPlaceholder", keyof T2> | Extract<"defaultValue", keyof T2> | Extract<"defaultTime", keyof T2> | Extract<"isRange", keyof T2>]: T2[k]; }[P]; }>;
276
+ export declare const createBindProps: <T2 extends import("@vunk/core").NormalObject, EX extends (Extract<"type", keyof T2> | Extract<"required", keyof T2> | Extract<"id", keyof T2> | Extract<"popperClass", keyof T2> | Extract<"popperStyle", keyof T2> | Extract<"ariaLabel", keyof T2> | Extract<"fallbackPlacements", keyof T2> | Extract<"placement", keyof T2> | Extract<"popperOptions", keyof T2> | Extract<"size", keyof T2> | Extract<"labelPosition", keyof T2> | Extract<"formItemSize", keyof T2> | Extract<"formItemSlots", keyof T2> | Extract<"elRef", keyof T2> | Extract<"inline", keyof T2> | Extract<"readonly", keyof T2> | Extract<"formItemTip", keyof T2> | Extract<"formItemTipClass", keyof T2> | Extract<"labelTip", keyof T2> | Extract<"information", keyof T2> | Extract<"prop", keyof T2> | Extract<"defaultModelValue", keyof T2> | Extract<"labelTipProps", keyof T2> | Extract<"label", keyof T2> | Extract<"labelWidth", keyof T2> | Extract<"rules", keyof T2> | Extract<"error", keyof T2> | Extract<"validateStatus", keyof T2> | Extract<"for", keyof T2> | Extract<"inlineMessage", keyof T2> | Extract<"showMessage", keyof T2> | Extract<"disabled", keyof T2> | Extract<"modelValue", keyof T2> | Extract<"placeholder", keyof T2> | Extract<"clearable", keyof T2> | Extract<"clearIcon", keyof T2> | Extract<"prefixIcon", keyof T2> | Extract<"tabindex", keyof T2> | Extract<"validateEvent", keyof T2> | Extract<"name", keyof T2> | Extract<"emptyValues", keyof T2> | Extract<"valueOnClear", keyof T2> | Extract<"automaticDropdown", keyof T2> | Extract<"datePickerSlots", keyof T2> | Extract<"showNow", keyof T2> | Extract<"showConfirm", keyof T2> | Extract<"showFooter", keyof T2> | Extract<"showWeekNumber", keyof T2> | Extract<"disabledDate", keyof T2> | Extract<"cellClassName", keyof T2> | Extract<"shortcuts", keyof T2> | Extract<"arrowControl", keyof T2> | Extract<"unlinkPanels", keyof T2> | Extract<"singlePanel", keyof T2> | Extract<"disabledHours", keyof T2> | Extract<"disabledMinutes", keyof T2> | Extract<"disabledSeconds", keyof T2> | Extract<"format", keyof T2> | Extract<"valueFormat", keyof T2> | Extract<"dateFormat", keyof T2> | Extract<"timeFormat", keyof T2> | Extract<"editable", keyof T2> | Extract<"saveOnBlur", keyof T2> | Extract<"rangeSeparator", keyof T2> | Extract<"startPlaceholder", keyof T2> | Extract<"endPlaceholder", keyof T2> | Extract<"defaultValue", keyof T2> | Extract<"defaultTime", keyof T2> | Extract<"isRange", keyof T2>)[]>(propsArg: T2, excludes?: EX | undefined) => import("vue").ComputedRef<{ [P in EX extends (infer KE)[] ? Exclude<Extract<"type", keyof T2>, KE> | Exclude<Extract<"required", keyof T2>, KE> | Exclude<Extract<"id", keyof T2>, KE> | Exclude<Extract<"popperClass", keyof T2>, KE> | Exclude<Extract<"popperStyle", keyof T2>, KE> | Exclude<Extract<"ariaLabel", keyof T2>, KE> | Exclude<Extract<"fallbackPlacements", keyof T2>, KE> | Exclude<Extract<"placement", keyof T2>, KE> | Exclude<Extract<"popperOptions", keyof T2>, KE> | Exclude<Extract<"size", keyof T2>, KE> | Exclude<Extract<"labelPosition", keyof T2>, KE> | Exclude<Extract<"formItemSize", keyof T2>, KE> | Exclude<Extract<"formItemSlots", keyof T2>, KE> | Exclude<Extract<"elRef", keyof T2>, KE> | Exclude<Extract<"inline", keyof T2>, KE> | Exclude<Extract<"readonly", keyof T2>, KE> | Exclude<Extract<"formItemTip", keyof T2>, KE> | Exclude<Extract<"formItemTipClass", keyof T2>, KE> | Exclude<Extract<"labelTip", keyof T2>, KE> | Exclude<Extract<"information", keyof T2>, KE> | Exclude<Extract<"prop", keyof T2>, KE> | Exclude<Extract<"defaultModelValue", keyof T2>, KE> | Exclude<Extract<"labelTipProps", keyof T2>, KE> | Exclude<Extract<"label", keyof T2>, KE> | Exclude<Extract<"labelWidth", keyof T2>, KE> | Exclude<Extract<"rules", keyof T2>, KE> | Exclude<Extract<"error", keyof T2>, KE> | Exclude<Extract<"validateStatus", keyof T2>, KE> | Exclude<Extract<"for", keyof T2>, KE> | Exclude<Extract<"inlineMessage", keyof T2>, KE> | Exclude<Extract<"showMessage", keyof T2>, KE> | Exclude<Extract<"disabled", keyof T2>, KE> | Exclude<Extract<"modelValue", keyof T2>, KE> | Exclude<Extract<"placeholder", keyof T2>, KE> | Exclude<Extract<"clearable", keyof T2>, KE> | Exclude<Extract<"clearIcon", keyof T2>, KE> | Exclude<Extract<"prefixIcon", keyof T2>, KE> | Exclude<Extract<"tabindex", keyof T2>, KE> | Exclude<Extract<"validateEvent", keyof T2>, KE> | Exclude<Extract<"name", keyof T2>, KE> | Exclude<Extract<"emptyValues", keyof T2>, KE> | Exclude<Extract<"valueOnClear", keyof T2>, KE> | Exclude<Extract<"automaticDropdown", keyof T2>, KE> | Exclude<Extract<"datePickerSlots", keyof T2>, KE> | Exclude<Extract<"showNow", keyof T2>, KE> | Exclude<Extract<"showConfirm", keyof T2>, KE> | Exclude<Extract<"showFooter", keyof T2>, KE> | Exclude<Extract<"showWeekNumber", keyof T2>, KE> | Exclude<Extract<"disabledDate", keyof T2>, KE> | Exclude<Extract<"cellClassName", keyof T2>, KE> | Exclude<Extract<"shortcuts", keyof T2>, KE> | Exclude<Extract<"arrowControl", keyof T2>, KE> | Exclude<Extract<"unlinkPanels", keyof T2>, KE> | Exclude<Extract<"singlePanel", keyof T2>, KE> | Exclude<Extract<"disabledHours", keyof T2>, KE> | Exclude<Extract<"disabledMinutes", keyof T2>, KE> | Exclude<Extract<"disabledSeconds", keyof T2>, KE> | Exclude<Extract<"format", keyof T2>, KE> | Exclude<Extract<"valueFormat", keyof T2>, KE> | Exclude<Extract<"dateFormat", keyof T2>, KE> | Exclude<Extract<"timeFormat", keyof T2>, KE> | Exclude<Extract<"editable", keyof T2>, KE> | Exclude<Extract<"saveOnBlur", keyof T2>, KE> | Exclude<Extract<"rangeSeparator", keyof T2>, KE> | Exclude<Extract<"startPlaceholder", keyof T2>, KE> | Exclude<Extract<"endPlaceholder", keyof T2>, KE> | Exclude<Extract<"defaultValue", keyof T2>, KE> | Exclude<Extract<"defaultTime", keyof T2>, KE> | Exclude<Extract<"isRange", keyof T2>, KE> : Extract<"type", keyof T2> | Extract<"required", keyof T2> | Extract<"id", keyof T2> | Extract<"popperClass", keyof T2> | Extract<"popperStyle", keyof T2> | Extract<"ariaLabel", keyof T2> | Extract<"fallbackPlacements", keyof T2> | Extract<"placement", keyof T2> | Extract<"popperOptions", keyof T2> | Extract<"size", keyof T2> | Extract<"labelPosition", keyof T2> | Extract<"formItemSize", keyof T2> | Extract<"formItemSlots", keyof T2> | Extract<"elRef", keyof T2> | Extract<"inline", keyof T2> | Extract<"readonly", keyof T2> | Extract<"formItemTip", keyof T2> | Extract<"formItemTipClass", keyof T2> | Extract<"labelTip", keyof T2> | Extract<"information", keyof T2> | Extract<"prop", keyof T2> | Extract<"defaultModelValue", keyof T2> | Extract<"labelTipProps", keyof T2> | Extract<"label", keyof T2> | Extract<"labelWidth", keyof T2> | Extract<"rules", keyof T2> | Extract<"error", keyof T2> | Extract<"validateStatus", keyof T2> | Extract<"for", keyof T2> | Extract<"inlineMessage", keyof T2> | Extract<"showMessage", keyof T2> | Extract<"disabled", keyof T2> | Extract<"modelValue", keyof T2> | Extract<"placeholder", keyof T2> | Extract<"clearable", keyof T2> | Extract<"clearIcon", keyof T2> | Extract<"prefixIcon", keyof T2> | Extract<"tabindex", keyof T2> | Extract<"validateEvent", keyof T2> | Extract<"name", keyof T2> | Extract<"emptyValues", keyof T2> | Extract<"valueOnClear", keyof T2> | Extract<"automaticDropdown", keyof T2> | Extract<"datePickerSlots", keyof T2> | Extract<"showNow", keyof T2> | Extract<"showConfirm", keyof T2> | Extract<"showFooter", keyof T2> | Extract<"showWeekNumber", keyof T2> | Extract<"disabledDate", keyof T2> | Extract<"cellClassName", keyof T2> | Extract<"shortcuts", keyof T2> | Extract<"arrowControl", keyof T2> | Extract<"unlinkPanels", keyof T2> | Extract<"singlePanel", keyof T2> | Extract<"disabledHours", keyof T2> | Extract<"disabledMinutes", keyof T2> | Extract<"disabledSeconds", keyof T2> | Extract<"format", keyof T2> | Extract<"valueFormat", keyof T2> | Extract<"dateFormat", keyof T2> | Extract<"timeFormat", keyof T2> | Extract<"editable", keyof T2> | Extract<"saveOnBlur", keyof T2> | Extract<"rangeSeparator", keyof T2> | Extract<"startPlaceholder", keyof T2> | Extract<"endPlaceholder", keyof T2> | Extract<"defaultValue", keyof T2> | Extract<"defaultTime", keyof T2> | Extract<"isRange", keyof T2>]: { [k in Extract<"type", keyof T2> | Extract<"required", keyof T2> | Extract<"id", keyof T2> | Extract<"popperClass", keyof T2> | Extract<"popperStyle", keyof T2> | Extract<"ariaLabel", keyof T2> | Extract<"fallbackPlacements", keyof T2> | Extract<"placement", keyof T2> | Extract<"popperOptions", keyof T2> | Extract<"size", keyof T2> | Extract<"labelPosition", keyof T2> | Extract<"formItemSize", keyof T2> | Extract<"formItemSlots", keyof T2> | Extract<"elRef", keyof T2> | Extract<"inline", keyof T2> | Extract<"readonly", keyof T2> | Extract<"formItemTip", keyof T2> | Extract<"formItemTipClass", keyof T2> | Extract<"labelTip", keyof T2> | Extract<"information", keyof T2> | Extract<"prop", keyof T2> | Extract<"defaultModelValue", keyof T2> | Extract<"labelTipProps", keyof T2> | Extract<"label", keyof T2> | Extract<"labelWidth", keyof T2> | Extract<"rules", keyof T2> | Extract<"error", keyof T2> | Extract<"validateStatus", keyof T2> | Extract<"for", keyof T2> | Extract<"inlineMessage", keyof T2> | Extract<"showMessage", keyof T2> | Extract<"disabled", keyof T2> | Extract<"modelValue", keyof T2> | Extract<"placeholder", keyof T2> | Extract<"clearable", keyof T2> | Extract<"clearIcon", keyof T2> | Extract<"prefixIcon", keyof T2> | Extract<"tabindex", keyof T2> | Extract<"validateEvent", keyof T2> | Extract<"name", keyof T2> | Extract<"emptyValues", keyof T2> | Extract<"valueOnClear", keyof T2> | Extract<"automaticDropdown", keyof T2> | Extract<"datePickerSlots", keyof T2> | Extract<"showNow", keyof T2> | Extract<"showConfirm", keyof T2> | Extract<"showFooter", keyof T2> | Extract<"showWeekNumber", keyof T2> | Extract<"disabledDate", keyof T2> | Extract<"cellClassName", keyof T2> | Extract<"shortcuts", keyof T2> | Extract<"arrowControl", keyof T2> | Extract<"unlinkPanels", keyof T2> | Extract<"singlePanel", keyof T2> | Extract<"disabledHours", keyof T2> | Extract<"disabledMinutes", keyof T2> | Extract<"disabledSeconds", keyof T2> | Extract<"format", keyof T2> | Extract<"valueFormat", keyof T2> | Extract<"dateFormat", keyof T2> | Extract<"timeFormat", keyof T2> | Extract<"editable", keyof T2> | Extract<"saveOnBlur", keyof T2> | Extract<"rangeSeparator", keyof T2> | Extract<"startPlaceholder", keyof T2> | Extract<"endPlaceholder", keyof T2> | Extract<"defaultValue", keyof T2> | Extract<"defaultTime", keyof T2> | Extract<"isRange", keyof T2>]: T2[k]; }[P]; }>;
273
277
  export declare const emits: {
274
278
  'update:modelValue': null;
275
279
  change: null;
@@ -45,6 +45,10 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
45
45
  };
46
46
  prop: null;
47
47
  defaultModelValue: null;
48
+ labelTipProps: {
49
+ type: import("vue").PropType<import("element-plus").UseTooltipProps>;
50
+ default: () => {};
51
+ };
48
52
  label: StringConstructor;
49
53
  labelWidth: {
50
54
  readonly type: import("vue").PropType<import("element-plus/es/utils/index.mjs").EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>>;
@@ -322,6 +326,10 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
322
326
  };
323
327
  prop: null;
324
328
  defaultModelValue: null;
329
+ labelTipProps: {
330
+ type: import("vue").PropType<import("element-plus").UseTooltipProps>;
331
+ default: () => {};
332
+ };
325
333
  label: StringConstructor;
326
334
  labelWidth: {
327
335
  readonly type: import("vue").PropType<import("element-plus/es/utils/index.mjs").EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>>;
@@ -557,6 +565,10 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
557
565
  }>, {
558
566
  type: "year" | "years" | "month" | "months" | "date" | "dates" | "week" | "datetime" | "datetimerange" | "daterange" | "monthrange" | "yearrange";
559
567
  required: import("element-plus/es/utils/index.mjs").EpPropMergeType<BooleanConstructor, unknown, unknown>;
568
+ popperStyle: import("vue").StyleValue;
569
+ fallbackPlacements: Placement[];
570
+ placement: import("element-plus/es/utils/index.mjs").EpPropMergeType<(new (...args: any[]) => "auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => Placement) | ((new (...args: any[]) => "auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => Placement) | null)[], Placement, unknown>;
571
+ popperOptions: Partial<import("element-plus").Options>;
560
572
  labelPosition: "left" | "right" | "top" | "start" | "end";
561
573
  formItemSize: "default" | "small" | "large";
562
574
  formItemSlots: import("../../form-item/src/types").FormItemSlots;
@@ -565,9 +577,9 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
565
577
  formItemTip: string;
566
578
  labelTip: string;
567
579
  information: boolean;
580
+ labelTipProps: import("element-plus").UseTooltipProps;
568
581
  inlineMessage: import("element-plus/es/utils/index.mjs").EpPropMergeType<BooleanConstructor, unknown, unknown>;
569
582
  showMessage: import("element-plus/es/utils/index.mjs").EpPropMergeType<BooleanConstructor, unknown, unknown>;
570
- placement: import("element-plus/es/utils/index.mjs").EpPropMergeType<(new (...args: any[]) => "auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => Placement) | ((new (...args: any[]) => "auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => Placement) | null)[], Placement, unknown>;
571
583
  disabled: import("element-plus/es/utils/index.mjs").EpPropMergeType<BooleanConstructor, unknown, unknown>;
572
584
  modelValue: import("element-plus/es/utils/index.mjs").EpPropMergeType<(new (...args: any[]) => string | number | string[] | Date | number[] | Date[]) | (() => import("element-plus").ModelValueType | null) | ((new (...args: any[]) => string | number | string[] | Date | number[] | Date[]) | (() => import("element-plus").ModelValueType | null) | null)[], unknown, unknown>;
573
585
  placeholder: string;
@@ -578,9 +590,6 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
578
590
  validateEvent: import("element-plus/es/utils/index.mjs").EpPropMergeType<BooleanConstructor, unknown, unknown>;
579
591
  valueOnClear: import("element-plus/es/utils/index.mjs").EpPropMergeType<(new (...args: any[]) => string | number | boolean | Function) | (() => string | number | boolean | Function | null) | ((new (...args: any[]) => string | number | boolean | Function) | (() => string | number | boolean | Function | null) | null)[], unknown, unknown>;
580
592
  automaticDropdown: import("element-plus/es/utils/index.mjs").EpPropMergeType<BooleanConstructor, unknown, unknown>;
581
- popperStyle: import("vue").StyleValue;
582
- popperOptions: Partial<import("element-plus").Options>;
583
- fallbackPlacements: Placement[];
584
593
  datePickerSlots: import("./types").DatePickerSlots;
585
594
  showNow: import("element-plus/es/utils/index.mjs").EpPropMergeType<BooleanConstructor, unknown, unknown>;
586
595
  showConfirm: import("element-plus/es/utils/index.mjs").EpPropMergeType<BooleanConstructor, unknown, unknown>;