el-plus 0.0.84 → 0.0.86-beta.0
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/CHANGELOG.md +12 -0
- package/dist/index.full.js +7 -3
- package/dist/index.full.min.js +2 -2
- package/dist/index.full.min.js.map +1 -1
- package/dist/index.full.min.mjs +2 -2
- package/dist/index.full.min.mjs.map +1 -1
- package/dist/index.full.mjs +7 -3
- package/docs/api-examples.md +49 -0
- package/docs/components/attachment.md +111 -0
- package/docs/components/buttons.md +108 -0
- package/docs/components/custom-column.md +70 -0
- package/docs/components/date-picker-range.md +61 -0
- package/docs/components/dialog.md +104 -0
- package/docs/components/footer-info.md +101 -0
- package/docs/components/form.md +186 -0
- package/docs/components/header.md +89 -0
- package/docs/components/index.md +23 -0
- package/docs/components/input.md +109 -0
- package/docs/components/link.md +63 -0
- package/docs/components/search-list-page.md +81 -0
- package/docs/components/select.md +163 -0
- package/docs/components/table.md +133 -0
- package/docs/components/title.md +70 -0
- package/docs/components/use-choose-dialog.md +115 -0
- package/docs/components/use-confirm-dialog.md +87 -0
- package/docs/components/use-form-dialog.md +87 -0
- package/docs/guide/markdown-examples.md +85 -0
- package/docs/index.md +25 -0
- package/docs/pages/detail.md +74 -0
- package/docs/pages/list.md +73 -0
- package/es/cli/src/commands/gen-docs.d.ts +2 -0
- package/es/cli/src/commands/install.d.ts +13 -0
- package/es/cli/src/commands/parse.d.ts +2 -0
- package/es/cli/src/index.d.ts +2 -0
- package/es/cli/src/parser/image-parser.d.ts +8 -0
- package/es/cli/src/parser/modao.d.ts +54 -0
- package/es/components/buttons/index.d.ts +45 -45
- package/es/components/buttons/src/buttons-vue.d.ts +16 -16
- package/es/components/buttons/src/buttons.d.ts +1 -1
- package/es/components/date-picker-range/index.d.ts +3 -3
- package/es/components/date-picker-range/src/date-picker-range.vue.d.ts +1 -1
- package/es/components/footer-info/index.d.ts +3 -3
- package/es/components/footer-info/src/footer-info.vue.d.ts +1 -1
- package/es/components/form/src/form-item-vue.mjs +6 -2
- package/es/components/form/src/form-item-vue.mjs.map +1 -1
- package/es/components/header/index.d.ts +3 -3
- package/es/components/header/src/header.d.ts +1 -1
- package/es/components/header/src/header.mjs.map +1 -1
- package/es/components/header/src/header.vue.d.ts +1 -1
- package/es/components/input/index.d.ts +3 -3
- package/es/components/input/src/input.vue.d.ts +1 -1
- package/es/components/link/index.d.ts +6 -6
- package/es/components/link/src/link.d.ts +1 -1
- package/es/components/link/src/link.vue.d.ts +3 -3
- package/es/components/search-list-page/index.d.ts +12 -12
- package/es/components/search-list-page/src/search-list-page.vue.d.ts +4 -4
- package/es/components/search-list-page/src/use-search-list-page.d.ts +4 -4
- package/es/package.json.mjs +1 -1
- package/lib/cli/src/commands/gen-docs.d.ts +2 -0
- package/lib/cli/src/commands/install.d.ts +13 -0
- package/lib/cli/src/commands/parse.d.ts +2 -0
- package/lib/cli/src/index.d.ts +2 -0
- package/lib/cli/src/parser/image-parser.d.ts +8 -0
- package/lib/cli/src/parser/modao.d.ts +54 -0
- package/lib/components/buttons/index.d.ts +45 -45
- package/lib/components/buttons/src/buttons-vue.d.ts +16 -16
- package/lib/components/buttons/src/buttons.d.ts +1 -1
- package/lib/components/date-picker-range/index.d.ts +3 -3
- package/lib/components/date-picker-range/src/date-picker-range.vue.d.ts +1 -1
- package/lib/components/footer-info/index.d.ts +3 -3
- package/lib/components/footer-info/src/footer-info.vue.d.ts +1 -1
- package/lib/components/form/src/form-item-vue.js +5 -1
- package/lib/components/form/src/form-item-vue.js.map +1 -1
- package/lib/components/header/index.d.ts +3 -3
- package/lib/components/header/src/header.d.ts +1 -1
- package/lib/components/header/src/header.js.map +1 -1
- package/lib/components/header/src/header.vue.d.ts +1 -1
- package/lib/components/input/index.d.ts +3 -3
- package/lib/components/input/src/input.vue.d.ts +1 -1
- package/lib/components/link/index.d.ts +6 -6
- package/lib/components/link/src/link.d.ts +1 -1
- package/lib/components/link/src/link.vue.d.ts +3 -3
- package/lib/components/search-list-page/index.d.ts +12 -12
- package/lib/components/search-list-page/src/search-list-page.vue.d.ts +4 -4
- package/lib/components/search-list-page/src/use-search-list-page.d.ts +4 -4
- package/lib/package.json.js +1 -1
- package/package.json +2 -1
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
# Markdown Extension Examples
|
|
2
|
+
|
|
3
|
+
This page demonstrates some of the built-in markdown extensions provided by VitePress.
|
|
4
|
+
|
|
5
|
+
## Syntax Highlighting
|
|
6
|
+
|
|
7
|
+
VitePress provides Syntax Highlighting powered by [Shiki](https://github.com/shikijs/shiki), with additional features like line-highlighting:
|
|
8
|
+
|
|
9
|
+
**Input**
|
|
10
|
+
|
|
11
|
+
````md
|
|
12
|
+
```js{4}
|
|
13
|
+
export default {
|
|
14
|
+
data () {
|
|
15
|
+
return {
|
|
16
|
+
msg: 'Highlighted!'
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
```
|
|
21
|
+
````
|
|
22
|
+
|
|
23
|
+
**Output**
|
|
24
|
+
|
|
25
|
+
```js{4}
|
|
26
|
+
export default {
|
|
27
|
+
data () {
|
|
28
|
+
return {
|
|
29
|
+
msg: 'Highlighted!'
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
## Custom Containers
|
|
36
|
+
|
|
37
|
+
**Input**
|
|
38
|
+
|
|
39
|
+
```md
|
|
40
|
+
::: info
|
|
41
|
+
This is an info box.
|
|
42
|
+
:::
|
|
43
|
+
|
|
44
|
+
::: tip
|
|
45
|
+
This is a tip.
|
|
46
|
+
:::
|
|
47
|
+
|
|
48
|
+
::: warning
|
|
49
|
+
This is a warning.
|
|
50
|
+
:::
|
|
51
|
+
|
|
52
|
+
::: danger
|
|
53
|
+
This is a dangerous warning.
|
|
54
|
+
:::
|
|
55
|
+
|
|
56
|
+
::: details
|
|
57
|
+
This is a details block.
|
|
58
|
+
:::
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
**Output**
|
|
62
|
+
|
|
63
|
+
::: info
|
|
64
|
+
This is an info box.
|
|
65
|
+
:::
|
|
66
|
+
|
|
67
|
+
::: tip
|
|
68
|
+
This is a tip.
|
|
69
|
+
:::
|
|
70
|
+
|
|
71
|
+
::: warning
|
|
72
|
+
This is a warning.
|
|
73
|
+
:::
|
|
74
|
+
|
|
75
|
+
::: danger
|
|
76
|
+
This is a dangerous warning.
|
|
77
|
+
:::
|
|
78
|
+
|
|
79
|
+
::: details
|
|
80
|
+
This is a details block.
|
|
81
|
+
:::
|
|
82
|
+
|
|
83
|
+
## More
|
|
84
|
+
|
|
85
|
+
Check out the documentation for the [full list of markdown extensions](https://vitepress.dev/guide/markdown).
|
package/docs/index.md
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
---
|
|
2
|
+
# https://vitepress.dev/reference/default-theme-home-page
|
|
3
|
+
layout: home
|
|
4
|
+
|
|
5
|
+
hero:
|
|
6
|
+
name: "el-plus-docs"
|
|
7
|
+
text: "宏信组件文档"
|
|
8
|
+
tagline: My great project tagline
|
|
9
|
+
actions:
|
|
10
|
+
- theme: brand
|
|
11
|
+
text: Markdown Examples
|
|
12
|
+
link: /markdown-examples
|
|
13
|
+
- theme: alt
|
|
14
|
+
text: API Examples
|
|
15
|
+
link: /api-examples
|
|
16
|
+
|
|
17
|
+
features:
|
|
18
|
+
- title: Feature A
|
|
19
|
+
details: Lorem ipsum dolor sit amet, consectetur adipiscing elit
|
|
20
|
+
- title: Feature B
|
|
21
|
+
details: Lorem ipsum dolor sit amet, consectetur adipiscing elit
|
|
22
|
+
- title: Feature C
|
|
23
|
+
details: Lorem ipsum dolor sit amet, consectetur adipiscing elit
|
|
24
|
+
---
|
|
25
|
+
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
# 详情页面
|
|
2
|
+
|
|
3
|
+
详情页面用于展示和编辑单条数据,组件自由组合。
|
|
4
|
+
|
|
5
|
+
## 页面结构
|
|
6
|
+
|
|
7
|
+
详情页无固定结构,根据业务需求自由组合以下组件:
|
|
8
|
+
> 查看所有可用组件:[组件文档索引](../components/index.md)
|
|
9
|
+
|
|
10
|
+
## 完整示例
|
|
11
|
+
|
|
12
|
+
```vue
|
|
13
|
+
<template>
|
|
14
|
+
<div>
|
|
15
|
+
|
|
16
|
+
<EpForm
|
|
17
|
+
ref="epForm"
|
|
18
|
+
:formItemList="formItemList"
|
|
19
|
+
v-model="formData"
|
|
20
|
+
labelPosition="left"
|
|
21
|
+
></EpForm>
|
|
22
|
+
</div>
|
|
23
|
+
</template>
|
|
24
|
+
|
|
25
|
+
<script setup lang="tsx">
|
|
26
|
+
import type { FormProps, HeaderProps } from 'el-plus'
|
|
27
|
+
import { useNavigation } from 'el-plus'
|
|
28
|
+
import { reactive, ref, computed, useTemplateRef } from 'vue'
|
|
29
|
+
import { useRoute } from 'vue-router'
|
|
30
|
+
|
|
31
|
+
defineOptions({
|
|
32
|
+
name: 'DemoDetail'
|
|
33
|
+
})
|
|
34
|
+
|
|
35
|
+
const route = useRoute()
|
|
36
|
+
const epForm = useTemplateRef('epForm')
|
|
37
|
+
const { isEdit } = useNavigation()
|
|
38
|
+
const id = route.query.id
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
// 表单数据:不需要预定义所有字段,reactive({}) 即可
|
|
42
|
+
// 仅以下类型需要预定义:
|
|
43
|
+
// - dateRange:需定义开始/结束字段
|
|
44
|
+
// - 表格数组、附件数组
|
|
45
|
+
const formData = reactive({
|
|
46
|
+
// dateRange 示例:orderDateStart: '', orderDateEnd: '',
|
|
47
|
+
detailList: [] as Record<string, any>[], // 明细表格
|
|
48
|
+
fileList: [] as Record<string, any>[], // 附件列表
|
|
49
|
+
})
|
|
50
|
+
|
|
51
|
+
// 表单配置 - 组件自由组合,参考各组件文档
|
|
52
|
+
const formItemList = ref<FormProps['formItemList']>([
|
|
53
|
+
// 组件类似下面这样自由组合
|
|
54
|
+
{ col: 24, type: 'EpHeader', props: { buttons: [
|
|
55
|
+
{ name: '提交审批', type: 'primary', onClick: () => {} }
|
|
56
|
+
] } },
|
|
57
|
+
{ col: 24, type: 'EpTitle', props: { title: '基本信息' } },
|
|
58
|
+
])
|
|
59
|
+
|
|
60
|
+
// 保存
|
|
61
|
+
const handleSave = async () => {
|
|
62
|
+
const valid = await epForm.value?.validate()
|
|
63
|
+
if (valid) {
|
|
64
|
+
// TODO: 调用保存接口
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
// 加载数据
|
|
69
|
+
if (isEdit.value && id) {
|
|
70
|
+
// TODO: 调用接口获取详情
|
|
71
|
+
}
|
|
72
|
+
</script>
|
|
73
|
+
```
|
|
74
|
+
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
# 列表页面
|
|
2
|
+
|
|
3
|
+
列表页面是最常见的业务页面类型,使用 EpSearchListPage 组件实现。
|
|
4
|
+
|
|
5
|
+
## 页面结构
|
|
6
|
+
|
|
7
|
+
- **EpSearchListPage**: 列表页容器组件,集成搜索表单和数据表格
|
|
8
|
+
- 组件自由组合,参考各组件文档配置
|
|
9
|
+
|
|
10
|
+
## 完整示例
|
|
11
|
+
|
|
12
|
+
```vue
|
|
13
|
+
<template>
|
|
14
|
+
<EpSearchListPage
|
|
15
|
+
:form-item-list="formItemList"
|
|
16
|
+
:form-data="formData"
|
|
17
|
+
:columns="columns"
|
|
18
|
+
:left-buttons="leftButtons"
|
|
19
|
+
api="/api/your-api/page"
|
|
20
|
+
:add="handleAdd"
|
|
21
|
+
show-selection-col
|
|
22
|
+
:action-buttons="actionButtons"
|
|
23
|
+
/>
|
|
24
|
+
</template>
|
|
25
|
+
|
|
26
|
+
<script setup lang="tsx">
|
|
27
|
+
import { ref, reactive } from 'vue'
|
|
28
|
+
import { useNavigation } from 'el-plus'
|
|
29
|
+
import type { SearchListPageProps } from 'el-plus'
|
|
30
|
+
|
|
31
|
+
defineOptions({
|
|
32
|
+
name: 'DemoList'
|
|
33
|
+
})
|
|
34
|
+
|
|
35
|
+
const { $goto } = useNavigation()
|
|
36
|
+
|
|
37
|
+
const formData = reactive({
|
|
38
|
+
// 表单数据
|
|
39
|
+
})
|
|
40
|
+
|
|
41
|
+
// 搜索表单配置 - 组件自由组合
|
|
42
|
+
const formItemList = ref<SearchListPageProps['formItemList']>([
|
|
43
|
+
// 参考EpForm和各组件文档配置
|
|
44
|
+
])
|
|
45
|
+
|
|
46
|
+
// 表格列配置
|
|
47
|
+
const columns:SearchListPageProps['columns'] = [
|
|
48
|
+
// 参考 EpTable 文档
|
|
49
|
+
]
|
|
50
|
+
|
|
51
|
+
// 左侧按钮配置
|
|
52
|
+
const leftButtons:SearchListPageProps['leftButtons']=[
|
|
53
|
+
// 按钮配置
|
|
54
|
+
]
|
|
55
|
+
|
|
56
|
+
// 行操作按钮
|
|
57
|
+
const actionButtons:SearchListPageProps['actionButtons']=[
|
|
58
|
+
// 操作按钮配置
|
|
59
|
+
]
|
|
60
|
+
|
|
61
|
+
// 新增
|
|
62
|
+
const handleAdd = () => {
|
|
63
|
+
$goto({
|
|
64
|
+
name: 'DemoDetail',
|
|
65
|
+
query: { mode: 'add' }
|
|
66
|
+
})
|
|
67
|
+
}
|
|
68
|
+
</script>
|
|
69
|
+
```
|
|
70
|
+
|
|
71
|
+
## 组件文档
|
|
72
|
+
|
|
73
|
+
> 查看所有可用组件:[组件文档索引](../components/index.md)
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { Command } from 'commander';
|
|
2
|
+
export type AgentType = 'claude-code' | 'qoder' | 'cursor' | 'windsurf' | 'trae' | 'trae-cn' | 'cline' | 'copilot' | 'gemini-cli' | 'opencode' | 'goose' | 'universal';
|
|
3
|
+
export interface AgentConfig {
|
|
4
|
+
name: string;
|
|
5
|
+
displayName: string;
|
|
6
|
+
skillsDir: string;
|
|
7
|
+
globalSkillsDir: string | undefined;
|
|
8
|
+
detectInstalled: () => Promise<boolean>;
|
|
9
|
+
installMode: 'skill' | 'rules';
|
|
10
|
+
rulesFile?: string;
|
|
11
|
+
}
|
|
12
|
+
export declare const agents: Record<AgentType, AgentConfig>;
|
|
13
|
+
export declare const installCommand: Command;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { ParsedPageData } from './modao.js';
|
|
2
|
+
export declare function isImageFile(filePath: string): boolean;
|
|
3
|
+
export declare class ImageParseError extends Error {
|
|
4
|
+
constructor(message: string);
|
|
5
|
+
}
|
|
6
|
+
export declare function generateImageParsePrompt(filePath: string): string;
|
|
7
|
+
export declare function parseImage(filePath: string): Promise<ParsedPageData>;
|
|
8
|
+
export declare function parseAIEditorResponse(jsonResponse: string, filePath: string): ParsedPageData;
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
export type ListSectionType = 'form' | 'toolbar' | 'table' | 'dialog';
|
|
2
|
+
export type DetailSectionType = 'header' | 'title' | 'form' | 'table' | 'attachment' | 'footer' | 'dialog';
|
|
3
|
+
export type SectionType = ListSectionType | DetailSectionType;
|
|
4
|
+
export type ParseErrorType = 'access_denied' | 'content_invalid' | 'timeout' | 'network' | 'unknown';
|
|
5
|
+
export declare class ParseError extends Error {
|
|
6
|
+
type: ParseErrorType;
|
|
7
|
+
needsBrowserAgent: boolean;
|
|
8
|
+
constructor(message: string, type: ParseErrorType, needsBrowserAgent?: boolean);
|
|
9
|
+
}
|
|
10
|
+
export type PageType = 'list' | 'detail' | 'mixed';
|
|
11
|
+
export type FormFieldType = 'input' | 'select' | 'date' | 'dateRange' | 'textarea' | 'number' | 'radio' | 'checkbox' | 'unknown';
|
|
12
|
+
export declare const VALID_FORM_FIELD_TYPES: FormFieldType[];
|
|
13
|
+
export interface FormField {
|
|
14
|
+
label: string;
|
|
15
|
+
fieldType: FormFieldType;
|
|
16
|
+
}
|
|
17
|
+
export interface PageSection {
|
|
18
|
+
type: SectionType;
|
|
19
|
+
title?: string;
|
|
20
|
+
labels: string[];
|
|
21
|
+
buttons: string[];
|
|
22
|
+
tableHeaders: string[];
|
|
23
|
+
formFields?: FormField[];
|
|
24
|
+
}
|
|
25
|
+
export interface ParsedPageData {
|
|
26
|
+
title: string;
|
|
27
|
+
sections: PageSection[];
|
|
28
|
+
pageType: PageType;
|
|
29
|
+
rawText: string;
|
|
30
|
+
url: string;
|
|
31
|
+
}
|
|
32
|
+
export declare class ModaoParser {
|
|
33
|
+
private browser;
|
|
34
|
+
private page;
|
|
35
|
+
private checkAccessDenied;
|
|
36
|
+
private checkPageContentValid;
|
|
37
|
+
init(): Promise<void>;
|
|
38
|
+
close(): Promise<void>;
|
|
39
|
+
parse(url: string): Promise<ParsedPageData>;
|
|
40
|
+
private delay;
|
|
41
|
+
}
|
|
42
|
+
export declare function parseModaoPage(url: string): Promise<ParsedPageData>;
|
|
43
|
+
export interface ParseResult {
|
|
44
|
+
success: boolean;
|
|
45
|
+
data?: ParsedPageData;
|
|
46
|
+
needsBrowserAgent?: boolean;
|
|
47
|
+
error?: {
|
|
48
|
+
type: ParseErrorType;
|
|
49
|
+
message: string;
|
|
50
|
+
};
|
|
51
|
+
url: string;
|
|
52
|
+
}
|
|
53
|
+
export declare function parseModaoPageWithFallback(url: string): Promise<ParseResult>;
|
|
54
|
+
export declare function generateBrowserAgentPrompt(url: string): string;
|
|
@@ -25,7 +25,7 @@ export declare const EpButtons: {
|
|
|
25
25
|
};
|
|
26
26
|
readonly type: {
|
|
27
27
|
readonly default: "default";
|
|
28
|
-
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "
|
|
28
|
+
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "success" | "text" | "primary" | "warning" | "info" | "default" | "danger", unknown>>;
|
|
29
29
|
readonly required: false;
|
|
30
30
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
31
31
|
readonly __epPropKey: true;
|
|
@@ -54,12 +54,25 @@ export declare const EpButtons: {
|
|
|
54
54
|
readonly autoInsertSpace: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
55
55
|
readonly tag: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown, "button", boolean>;
|
|
56
56
|
}>> & Readonly<{}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").PublicProps, {
|
|
57
|
+
readonly list: Partial<Omit<import("element-plus").ButtonProps, "disabled"> & {
|
|
58
|
+
name: string;
|
|
59
|
+
prop: string;
|
|
60
|
+
permission: string;
|
|
61
|
+
onClick: (e: MouseEvent | import("el-plus/es").TableScope) => void;
|
|
62
|
+
scopedSlots: Record<string, () => import("vue").VNode>;
|
|
63
|
+
disabled: import("el-plus/es/utils").IDisabled;
|
|
64
|
+
confirm: boolean;
|
|
65
|
+
confirmText: string;
|
|
66
|
+
} & {} & {
|
|
67
|
+
show?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
68
|
+
hide?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
69
|
+
}>[];
|
|
57
70
|
readonly link: boolean;
|
|
71
|
+
readonly type: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "success" | "text" | "primary" | "warning" | "info" | "default" | "danger", unknown>;
|
|
58
72
|
readonly circle: boolean;
|
|
59
73
|
readonly text: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
60
74
|
readonly size: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never>;
|
|
61
75
|
readonly loading: boolean;
|
|
62
|
-
readonly type: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "text" | "success" | "default" | "primary" | "warning" | "info" | "danger", unknown>;
|
|
63
76
|
readonly plain: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
64
77
|
readonly nativeType: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "button" | "reset" | "submit", unknown>;
|
|
65
78
|
readonly loadingIcon: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown>;
|
|
@@ -69,19 +82,6 @@ export declare const EpButtons: {
|
|
|
69
82
|
readonly dark: boolean;
|
|
70
83
|
readonly autoInsertSpace: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
71
84
|
readonly tag: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown>;
|
|
72
|
-
readonly list: Partial<Omit<import("element-plus").ButtonProps, "disabled"> & {
|
|
73
|
-
name: string;
|
|
74
|
-
prop: string;
|
|
75
|
-
permission: string;
|
|
76
|
-
onClick: (e: MouseEvent | import("el-plus/es").TableScope) => void;
|
|
77
|
-
scopedSlots: Record<string, () => import("vue").VNode>;
|
|
78
|
-
disabled: import("el-plus/es/utils").IDisabled;
|
|
79
|
-
confirm: boolean;
|
|
80
|
-
confirmText: string;
|
|
81
|
-
} & {} & {
|
|
82
|
-
show?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
83
|
-
hide?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
84
|
-
}>[];
|
|
85
85
|
}, true, {}, {}, import("vue").GlobalComponents, {
|
|
86
86
|
[x: string]: (import("vue").ObjectDirective<import("el-plus/es/directives/repeat-click").RepeatClickEl, import("el-plus/es/directives/repeat-click").RepeatClickOptions, string, any> & {
|
|
87
87
|
name: string;
|
|
@@ -121,7 +121,7 @@ export declare const EpButtons: {
|
|
|
121
121
|
};
|
|
122
122
|
readonly type: {
|
|
123
123
|
readonly default: "default";
|
|
124
|
-
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "
|
|
124
|
+
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "success" | "text" | "primary" | "warning" | "info" | "default" | "danger", unknown>>;
|
|
125
125
|
readonly required: false;
|
|
126
126
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
127
127
|
readonly __epPropKey: true;
|
|
@@ -150,12 +150,25 @@ export declare const EpButtons: {
|
|
|
150
150
|
readonly autoInsertSpace: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
151
151
|
readonly tag: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown, "button", boolean>;
|
|
152
152
|
}>> & Readonly<{}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, {
|
|
153
|
+
readonly list: Partial<Omit<import("element-plus").ButtonProps, "disabled"> & {
|
|
154
|
+
name: string;
|
|
155
|
+
prop: string;
|
|
156
|
+
permission: string;
|
|
157
|
+
onClick: (e: MouseEvent | import("el-plus/es").TableScope) => void;
|
|
158
|
+
scopedSlots: Record<string, () => import("vue").VNode>;
|
|
159
|
+
disabled: import("el-plus/es/utils").IDisabled;
|
|
160
|
+
confirm: boolean;
|
|
161
|
+
confirmText: string;
|
|
162
|
+
} & {} & {
|
|
163
|
+
show?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
164
|
+
hide?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
165
|
+
}>[];
|
|
153
166
|
readonly link: boolean;
|
|
167
|
+
readonly type: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "success" | "text" | "primary" | "warning" | "info" | "default" | "danger", unknown>;
|
|
154
168
|
readonly circle: boolean;
|
|
155
169
|
readonly text: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
156
170
|
readonly size: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never>;
|
|
157
171
|
readonly loading: boolean;
|
|
158
|
-
readonly type: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "text" | "success" | "default" | "primary" | "warning" | "info" | "danger", unknown>;
|
|
159
172
|
readonly plain: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
160
173
|
readonly nativeType: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "button" | "reset" | "submit", unknown>;
|
|
161
174
|
readonly loadingIcon: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown>;
|
|
@@ -165,19 +178,6 @@ export declare const EpButtons: {
|
|
|
165
178
|
readonly dark: boolean;
|
|
166
179
|
readonly autoInsertSpace: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
167
180
|
readonly tag: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown>;
|
|
168
|
-
readonly list: Partial<Omit<import("element-plus").ButtonProps, "disabled"> & {
|
|
169
|
-
name: string;
|
|
170
|
-
prop: string;
|
|
171
|
-
permission: string;
|
|
172
|
-
onClick: (e: MouseEvent | import("el-plus/es").TableScope) => void;
|
|
173
|
-
scopedSlots: Record<string, () => import("vue").VNode>;
|
|
174
|
-
disabled: import("el-plus/es/utils").IDisabled;
|
|
175
|
-
confirm: boolean;
|
|
176
|
-
confirmText: string;
|
|
177
|
-
} & {} & {
|
|
178
|
-
show?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
179
|
-
hide?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
180
|
-
}>[];
|
|
181
181
|
}>;
|
|
182
182
|
__isFragment?: never;
|
|
183
183
|
__isTeleport?: never;
|
|
@@ -196,7 +196,7 @@ export declare const EpButtons: {
|
|
|
196
196
|
};
|
|
197
197
|
readonly type: {
|
|
198
198
|
readonly default: "default";
|
|
199
|
-
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "
|
|
199
|
+
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "success" | "text" | "primary" | "warning" | "info" | "default" | "danger", unknown>>;
|
|
200
200
|
readonly required: false;
|
|
201
201
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
202
202
|
readonly __epPropKey: true;
|
|
@@ -225,12 +225,25 @@ export declare const EpButtons: {
|
|
|
225
225
|
readonly autoInsertSpace: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
226
226
|
readonly tag: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown, "button", boolean>;
|
|
227
227
|
}>> & Readonly<{}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
228
|
+
readonly list: Partial<Omit<import("element-plus").ButtonProps, "disabled"> & {
|
|
229
|
+
name: string;
|
|
230
|
+
prop: string;
|
|
231
|
+
permission: string;
|
|
232
|
+
onClick: (e: MouseEvent | import("el-plus/es").TableScope) => void;
|
|
233
|
+
scopedSlots: Record<string, () => import("vue").VNode>;
|
|
234
|
+
disabled: import("el-plus/es/utils").IDisabled;
|
|
235
|
+
confirm: boolean;
|
|
236
|
+
confirmText: string;
|
|
237
|
+
} & {} & {
|
|
238
|
+
show?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
239
|
+
hide?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
240
|
+
}>[];
|
|
228
241
|
readonly link: boolean;
|
|
242
|
+
readonly type: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "success" | "text" | "primary" | "warning" | "info" | "default" | "danger", unknown>;
|
|
229
243
|
readonly circle: boolean;
|
|
230
244
|
readonly text: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
231
245
|
readonly size: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never>;
|
|
232
246
|
readonly loading: boolean;
|
|
233
|
-
readonly type: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "text" | "success" | "default" | "primary" | "warning" | "info" | "danger", unknown>;
|
|
234
247
|
readonly plain: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
235
248
|
readonly nativeType: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "button" | "reset" | "submit", unknown>;
|
|
236
249
|
readonly loadingIcon: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown>;
|
|
@@ -240,19 +253,6 @@ export declare const EpButtons: {
|
|
|
240
253
|
readonly dark: boolean;
|
|
241
254
|
readonly autoInsertSpace: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
242
255
|
readonly tag: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown>;
|
|
243
|
-
readonly list: Partial<Omit<import("element-plus").ButtonProps, "disabled"> & {
|
|
244
|
-
name: string;
|
|
245
|
-
prop: string;
|
|
246
|
-
permission: string;
|
|
247
|
-
onClick: (e: MouseEvent | import("el-plus/es").TableScope) => void;
|
|
248
|
-
scopedSlots: Record<string, () => import("vue").VNode>;
|
|
249
|
-
disabled: import("el-plus/es/utils").IDisabled;
|
|
250
|
-
confirm: boolean;
|
|
251
|
-
confirmText: string;
|
|
252
|
-
} & {} & {
|
|
253
|
-
show?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
254
|
-
hide?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
255
|
-
}>[];
|
|
256
256
|
}, {}, string, {}, import("vue").GlobalComponents, {
|
|
257
257
|
[x: string]: (import("vue").ObjectDirective<import("el-plus/es/directives/repeat-click").RepeatClickEl, import("el-plus/es/directives/repeat-click").RepeatClickOptions, string, any> & {
|
|
258
258
|
name: string;
|
|
@@ -13,7 +13,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
13
13
|
};
|
|
14
14
|
readonly type: {
|
|
15
15
|
readonly default: "default";
|
|
16
|
-
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "
|
|
16
|
+
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "success" | "text" | "primary" | "warning" | "info" | "default" | "danger", unknown>>;
|
|
17
17
|
readonly required: false;
|
|
18
18
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
19
19
|
readonly __epPropKey: true;
|
|
@@ -55,7 +55,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
55
55
|
};
|
|
56
56
|
readonly type: {
|
|
57
57
|
readonly default: "default";
|
|
58
|
-
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "
|
|
58
|
+
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "success" | "text" | "primary" | "warning" | "info" | "default" | "danger", unknown>>;
|
|
59
59
|
readonly required: false;
|
|
60
60
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
61
61
|
readonly __epPropKey: true;
|
|
@@ -84,12 +84,25 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
84
84
|
readonly autoInsertSpace: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
85
85
|
readonly tag: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown, "button", boolean>;
|
|
86
86
|
}>> & Readonly<{}>, {
|
|
87
|
+
readonly list: Partial<Omit<import("element-plus").ButtonProps, "disabled"> & {
|
|
88
|
+
name: string;
|
|
89
|
+
prop: string;
|
|
90
|
+
permission: string;
|
|
91
|
+
onClick: (e: MouseEvent | import("el-plus/es").TableScope) => void;
|
|
92
|
+
scopedSlots: Record<string, () => import("vue").VNode>;
|
|
93
|
+
disabled: import("el-plus/es/utils/props").IDisabled;
|
|
94
|
+
confirm: boolean;
|
|
95
|
+
confirmText: string;
|
|
96
|
+
} & {} & {
|
|
97
|
+
show?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
98
|
+
hide?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
99
|
+
}>[];
|
|
87
100
|
readonly link: boolean;
|
|
101
|
+
readonly type: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "success" | "text" | "primary" | "warning" | "info" | "default" | "danger", unknown>;
|
|
88
102
|
readonly circle: boolean;
|
|
89
103
|
readonly text: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
90
104
|
readonly size: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never>;
|
|
91
105
|
readonly loading: boolean;
|
|
92
|
-
readonly type: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "text" | "success" | "default" | "primary" | "warning" | "info" | "danger", unknown>;
|
|
93
106
|
readonly plain: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
94
107
|
readonly nativeType: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "button" | "reset" | "submit", unknown>;
|
|
95
108
|
readonly loadingIcon: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown>;
|
|
@@ -99,19 +112,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
99
112
|
readonly dark: boolean;
|
|
100
113
|
readonly autoInsertSpace: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
101
114
|
readonly tag: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown>;
|
|
102
|
-
readonly list: Partial<Omit<import("element-plus").ButtonProps, "disabled"> & {
|
|
103
|
-
name: string;
|
|
104
|
-
prop: string;
|
|
105
|
-
permission: string;
|
|
106
|
-
onClick: (e: MouseEvent | import("el-plus/es").TableScope) => void;
|
|
107
|
-
scopedSlots: Record<string, () => import("vue").VNode>;
|
|
108
|
-
disabled: import("el-plus/es/utils/props").IDisabled;
|
|
109
|
-
confirm: boolean;
|
|
110
|
-
confirmText: string;
|
|
111
|
-
} & {} & {
|
|
112
|
-
show?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
113
|
-
hide?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
114
|
-
}>[];
|
|
115
115
|
}, {}, {}, {
|
|
116
116
|
[vRepeatClick.name]: import("vue").Directive<import("el-plus/es/directives/repeat-click").RepeatClickEl, import("el-plus/es/directives/repeat-click").RepeatClickOptions> & {
|
|
117
117
|
name: string;
|
|
@@ -26,7 +26,7 @@ export declare const buttonsProps: {
|
|
|
26
26
|
};
|
|
27
27
|
readonly type: {
|
|
28
28
|
readonly default: "default";
|
|
29
|
-
readonly type: PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "
|
|
29
|
+
readonly type: PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "success" | "text" | "primary" | "warning" | "info" | "default" | "danger", unknown>>;
|
|
30
30
|
readonly required: false;
|
|
31
31
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
32
32
|
readonly __epPropKey: true;
|
|
@@ -267,8 +267,8 @@ export declare const EpDatePickerRange: {
|
|
|
267
267
|
"update:start": (value: import("element-plus/es/utils/index.js").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))[], unknown, unknown> | undefined) => void;
|
|
268
268
|
"update:end": (value: import("element-plus/es/utils/index.js").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))[], unknown, unknown> | undefined) => void;
|
|
269
269
|
}, import("vue").PublicProps, {
|
|
270
|
-
size: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never>;
|
|
271
270
|
type: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => "year" | "years" | "month" | "months" | "date" | "dates" | "week" | "datetime" | "datetimerange" | "daterange" | "monthrange" | "yearrange") | (() => import("element-plus").DatePickerType) | ((new (...args: any[]) => "year" | "years" | "month" | "months" | "date" | "dates" | "week" | "datetime" | "datetimerange" | "daterange" | "monthrange" | "yearrange") | (() => import("element-plus").DatePickerType))[], unknown, unknown>;
|
|
271
|
+
size: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never>;
|
|
272
272
|
placement: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => "left" | "right" | "top" | "bottom" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => import("element-plus").Placement) | ((new (...args: any[]) => "left" | "right" | "top" | "bottom" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => import("element-plus").Placement))[], import("element-plus").Placement, unknown>;
|
|
273
273
|
disabled: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
274
274
|
modelValue: import("element-plus/es/utils/index.js").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))[], unknown, unknown>;
|
|
@@ -566,8 +566,8 @@ export declare const EpDatePickerRange: {
|
|
|
566
566
|
"onUpdate:start"?: ((value: import("element-plus/es/utils/index.js").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))[], unknown, unknown> | undefined) => any) | undefined;
|
|
567
567
|
"onUpdate:end"?: ((value: import("element-plus/es/utils/index.js").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))[], unknown, unknown> | undefined) => any) | undefined;
|
|
568
568
|
}>, {}, {}, {}, {}, {
|
|
569
|
-
size: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never>;
|
|
570
569
|
type: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => "year" | "years" | "month" | "months" | "date" | "dates" | "week" | "datetime" | "datetimerange" | "daterange" | "monthrange" | "yearrange") | (() => import("element-plus").DatePickerType) | ((new (...args: any[]) => "year" | "years" | "month" | "months" | "date" | "dates" | "week" | "datetime" | "datetimerange" | "daterange" | "monthrange" | "yearrange") | (() => import("element-plus").DatePickerType))[], unknown, unknown>;
|
|
570
|
+
size: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never>;
|
|
571
571
|
placement: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => "left" | "right" | "top" | "bottom" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => import("element-plus").Placement) | ((new (...args: any[]) => "left" | "right" | "top" | "bottom" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => import("element-plus").Placement))[], import("element-plus").Placement, unknown>;
|
|
572
572
|
disabled: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
573
573
|
modelValue: import("element-plus/es/utils/index.js").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))[], unknown, unknown>;
|
|
@@ -866,8 +866,8 @@ export declare const EpDatePickerRange: {
|
|
|
866
866
|
"update:start": (value: import("element-plus/es/utils/index.js").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))[], unknown, unknown> | undefined) => void;
|
|
867
867
|
"update:end": (value: import("element-plus/es/utils/index.js").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))[], unknown, unknown> | undefined) => void;
|
|
868
868
|
}, string, {
|
|
869
|
-
size: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never>;
|
|
870
869
|
type: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => "year" | "years" | "month" | "months" | "date" | "dates" | "week" | "datetime" | "datetimerange" | "daterange" | "monthrange" | "yearrange") | (() => import("element-plus").DatePickerType) | ((new (...args: any[]) => "year" | "years" | "month" | "months" | "date" | "dates" | "week" | "datetime" | "datetimerange" | "daterange" | "monthrange" | "yearrange") | (() => import("element-plus").DatePickerType))[], unknown, unknown>;
|
|
870
|
+
size: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never>;
|
|
871
871
|
placement: import("element-plus/es/utils/index.js").EpPropMergeType<(new (...args: any[]) => "left" | "right" | "top" | "bottom" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => import("element-plus").Placement) | ((new (...args: any[]) => "left" | "right" | "top" | "bottom" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => import("element-plus").Placement))[], import("element-plus").Placement, unknown>;
|
|
872
872
|
disabled: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
873
873
|
modelValue: import("element-plus/es/utils/index.js").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))[], unknown, unknown>;
|