el-plus 0.0.86 → 0.0.87-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 +6 -0
- package/dist/index.full.js +2 -2
- 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 +2 -2
- package/docs/components/form.md +15 -0
- package/docs/components/use-choose-dialog.md +2 -2
- package/docs/components/use-confirm-dialog.md +2 -2
- package/docs/components/use-form-dialog.md +2 -2
- package/docs/pages/detail.md +7 -15
- package/docs/pages/list.md +2 -1
- package/es/cli/src/fetcher/browser-fetcher.d.ts +8 -3
- package/es/cli/src/fetcher/fetcher-factory.d.ts +2 -2
- package/es/cli/src/fetcher/index.d.ts +4 -5
- package/es/cli/src/fetcher/node-fetcher.d.ts +5 -3
- package/es/cli/src/fetcher/types.d.ts +6 -9
- package/es/cli/src/fetcher/utils.d.ts +1 -5
- package/es/cli/src/parser/base-parser.d.ts +19 -0
- package/es/cli/src/parser/extractors.d.ts +9 -0
- package/es/cli/src/parser/figma-parser.d.ts +0 -0
- package/es/cli/src/parser/index.d.ts +2 -0
- package/es/cli/src/parser/modao-parser.d.ts +4 -13
- package/es/components/form/src/form-item-vue.d.ts +1 -1
- package/es/components/header/index.d.ts +3 -3
- package/es/components/header/src/header.vue.d.ts +1 -1
- package/es/components/search-list-page/index.d.ts +6 -6
- package/es/components/search-list-page/src/search-list-page.vue.d.ts +2 -2
- package/es/components/search-list-page/src/use-search-list-page.d.ts +2 -2
- package/es/package.json.mjs +1 -1
- package/lib/cli/src/fetcher/browser-fetcher.d.ts +8 -3
- package/lib/cli/src/fetcher/fetcher-factory.d.ts +2 -2
- package/lib/cli/src/fetcher/index.d.ts +4 -5
- package/lib/cli/src/fetcher/node-fetcher.d.ts +5 -3
- package/lib/cli/src/fetcher/types.d.ts +6 -9
- package/lib/cli/src/fetcher/utils.d.ts +1 -5
- package/lib/cli/src/parser/base-parser.d.ts +19 -0
- package/lib/cli/src/parser/extractors.d.ts +9 -0
- package/lib/cli/src/parser/figma-parser.d.ts +0 -0
- package/lib/cli/src/parser/index.d.ts +2 -0
- package/lib/cli/src/parser/modao-parser.d.ts +4 -13
- package/lib/components/form/src/form-item-vue.d.ts +1 -1
- package/lib/components/header/index.d.ts +3 -3
- package/lib/components/header/src/header.vue.d.ts +1 -1
- package/lib/components/search-list-page/index.d.ts +6 -6
- package/lib/components/search-list-page/src/search-list-page.vue.d.ts +2 -2
- package/lib/components/search-list-page/src/use-search-list-page.d.ts +2 -2
- package/lib/package.json.js +1 -1
- package/package.json +1 -1
- package/es/cli/src/fetcher/browser-instance.d.ts +0 -8
- package/lib/cli/src/fetcher/browser-instance.d.ts +0 -8
|
@@ -58,7 +58,6 @@ export declare const EpHeader: {
|
|
|
58
58
|
readonly isShowAttachmentButton: boolean;
|
|
59
59
|
readonly fileList: Record<string, any>[];
|
|
60
60
|
readonly attachmentProps: {
|
|
61
|
-
readonly permission?: `${string}:${string}` | undefined;
|
|
62
61
|
readonly mode?: import("el-plus/es/hooks/use-navigation").PageMode | undefined;
|
|
63
62
|
readonly formatColumns?: Partial<import("element-plus").TableColumnCtx & {
|
|
64
63
|
[key: string]: any;
|
|
@@ -74,6 +73,7 @@ export declare const EpHeader: {
|
|
|
74
73
|
show?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
75
74
|
hide?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
76
75
|
}>[] | undefined;
|
|
76
|
+
readonly permission?: `${string}:${string}` | undefined;
|
|
77
77
|
readonly openType?: "dialog" | "normal" | undefined;
|
|
78
78
|
readonly isType?: boolean | undefined;
|
|
79
79
|
readonly isNote?: boolean | undefined;
|
|
@@ -146,7 +146,6 @@ export declare const EpHeader: {
|
|
|
146
146
|
readonly isShowAttachmentButton: boolean;
|
|
147
147
|
readonly fileList: Record<string, any>[];
|
|
148
148
|
readonly attachmentProps: {
|
|
149
|
-
readonly permission?: `${string}:${string}` | undefined;
|
|
150
149
|
readonly mode?: import("el-plus/es/hooks/use-navigation").PageMode | undefined;
|
|
151
150
|
readonly formatColumns?: Partial<import("element-plus").TableColumnCtx & {
|
|
152
151
|
[key: string]: any;
|
|
@@ -162,6 +161,7 @@ export declare const EpHeader: {
|
|
|
162
161
|
show?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
163
162
|
hide?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
164
163
|
}>[] | undefined;
|
|
164
|
+
readonly permission?: `${string}:${string}` | undefined;
|
|
165
165
|
readonly openType?: "dialog" | "normal" | undefined;
|
|
166
166
|
readonly isType?: boolean | undefined;
|
|
167
167
|
readonly isNote?: boolean | undefined;
|
|
@@ -219,7 +219,6 @@ export declare const EpHeader: {
|
|
|
219
219
|
readonly isShowAttachmentButton: boolean;
|
|
220
220
|
readonly fileList: Record<string, any>[];
|
|
221
221
|
readonly attachmentProps: {
|
|
222
|
-
readonly permission?: `${string}:${string}` | undefined;
|
|
223
222
|
readonly mode?: import("el-plus/es/hooks/use-navigation").PageMode | undefined;
|
|
224
223
|
readonly formatColumns?: Partial<import("element-plus").TableColumnCtx & {
|
|
225
224
|
[key: string]: any;
|
|
@@ -235,6 +234,7 @@ export declare const EpHeader: {
|
|
|
235
234
|
show?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
236
235
|
hide?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
237
236
|
}>[] | undefined;
|
|
237
|
+
readonly permission?: `${string}:${string}` | undefined;
|
|
238
238
|
readonly openType?: "dialog" | "normal" | undefined;
|
|
239
239
|
readonly isType?: boolean | undefined;
|
|
240
240
|
readonly isNote?: boolean | undefined;
|
|
@@ -74,7 +74,6 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
74
74
|
readonly isShowAttachmentButton: boolean;
|
|
75
75
|
readonly fileList: Record<string, any>[];
|
|
76
76
|
readonly attachmentProps: {
|
|
77
|
-
readonly permission?: `${string}:${string}` | undefined;
|
|
78
77
|
readonly mode?: import("el-plus/es/hooks").PageMode | undefined;
|
|
79
78
|
readonly formatColumns?: Partial<import("element-plus").TableColumnCtx & {
|
|
80
79
|
[key: string]: any;
|
|
@@ -90,6 +89,7 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
90
89
|
show?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
91
90
|
hide?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
92
91
|
}>[] | undefined;
|
|
92
|
+
readonly permission?: `${string}:${string}` | undefined;
|
|
93
93
|
readonly openType?: "dialog" | "normal" | undefined;
|
|
94
94
|
readonly isType?: boolean | undefined;
|
|
95
95
|
readonly isNote?: boolean | undefined;
|
|
@@ -357,9 +357,8 @@ export declare const EpSearchListPage: {
|
|
|
357
357
|
readonly preserveExpandedContent: boolean;
|
|
358
358
|
readonly nativeScrollbar: boolean;
|
|
359
359
|
readonly load?: ((row: any, treeNode: import("element-plus").TreeNode, resolve: (data: any[]) => void) => void) | undefined;
|
|
360
|
-
readonly width?: string | number | undefined;
|
|
361
|
-
readonly height?: string | number | undefined;
|
|
362
360
|
readonly method?: import("axios").Method | undefined;
|
|
361
|
+
readonly width?: string | number | undefined;
|
|
363
362
|
readonly api?: import("el-plus/es/types/axios").Api | undefined;
|
|
364
363
|
readonly reqData?: Record<string, any> | undefined;
|
|
365
364
|
readonly reqParams?: Record<string, any> | undefined;
|
|
@@ -392,6 +391,7 @@ export declare const EpSearchListPage: {
|
|
|
392
391
|
readonly selectable?: ((row: import("element-plus/es/components/table/src/table/defaults.js").DefaultRow, index: number) => boolean) | undefined;
|
|
393
392
|
readonly indexFormatter?: number | ((index: number) => number) | undefined;
|
|
394
393
|
readonly customColumnModule?: string | number | undefined;
|
|
394
|
+
readonly height?: string | number | undefined;
|
|
395
395
|
readonly maxHeight?: string | number | undefined;
|
|
396
396
|
readonly sumText?: string | undefined;
|
|
397
397
|
readonly currentRowKey?: string | number | undefined;
|
|
@@ -3004,9 +3004,8 @@ export declare const EpSearchListPage: {
|
|
|
3004
3004
|
readonly preserveExpandedContent: boolean;
|
|
3005
3005
|
readonly nativeScrollbar: boolean;
|
|
3006
3006
|
readonly load?: ((row: any, treeNode: import("element-plus").TreeNode, resolve: (data: any[]) => void) => void) | undefined;
|
|
3007
|
-
readonly width?: string | number | undefined;
|
|
3008
|
-
readonly height?: string | number | undefined;
|
|
3009
3007
|
readonly method?: import("axios").Method | undefined;
|
|
3008
|
+
readonly width?: string | number | undefined;
|
|
3010
3009
|
readonly api?: import("el-plus/es/types/axios").Api | undefined;
|
|
3011
3010
|
readonly reqData?: Record<string, any> | undefined;
|
|
3012
3011
|
readonly reqParams?: Record<string, any> | undefined;
|
|
@@ -3039,6 +3038,7 @@ export declare const EpSearchListPage: {
|
|
|
3039
3038
|
readonly selectable?: ((row: import("element-plus/es/components/table/src/table/defaults.js").DefaultRow, index: number) => boolean) | undefined;
|
|
3040
3039
|
readonly indexFormatter?: number | ((index: number) => number) | undefined;
|
|
3041
3040
|
readonly customColumnModule?: string | number | undefined;
|
|
3041
|
+
readonly height?: string | number | undefined;
|
|
3042
3042
|
readonly maxHeight?: string | number | undefined;
|
|
3043
3043
|
readonly sumText?: string | undefined;
|
|
3044
3044
|
readonly currentRowKey?: string | number | undefined;
|
|
@@ -5598,9 +5598,8 @@ export declare const EpSearchListPage: {
|
|
|
5598
5598
|
readonly preserveExpandedContent: boolean;
|
|
5599
5599
|
readonly nativeScrollbar: boolean;
|
|
5600
5600
|
readonly load?: ((row: any, treeNode: import("element-plus").TreeNode, resolve: (data: any[]) => void) => void) | undefined;
|
|
5601
|
-
readonly width?: string | number | undefined;
|
|
5602
|
-
readonly height?: string | number | undefined;
|
|
5603
5601
|
readonly method?: import("axios").Method | undefined;
|
|
5602
|
+
readonly width?: string | number | undefined;
|
|
5604
5603
|
readonly api?: import("el-plus/es/types/axios").Api | undefined;
|
|
5605
5604
|
readonly reqData?: Record<string, any> | undefined;
|
|
5606
5605
|
readonly reqParams?: Record<string, any> | undefined;
|
|
@@ -5633,6 +5632,7 @@ export declare const EpSearchListPage: {
|
|
|
5633
5632
|
readonly selectable?: ((row: import("element-plus/es/components/table/src/table/defaults.js").DefaultRow, index: number) => boolean) | undefined;
|
|
5634
5633
|
readonly indexFormatter?: number | ((index: number) => number) | undefined;
|
|
5635
5634
|
readonly customColumnModule?: string | number | undefined;
|
|
5635
|
+
readonly height?: string | number | undefined;
|
|
5636
5636
|
readonly maxHeight?: string | number | undefined;
|
|
5637
5637
|
readonly sumText?: string | undefined;
|
|
5638
5638
|
readonly currentRowKey?: string | number | undefined;
|
|
@@ -310,9 +310,8 @@ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPro
|
|
|
310
310
|
readonly preserveExpandedContent: boolean;
|
|
311
311
|
readonly nativeScrollbar: boolean;
|
|
312
312
|
readonly load?: ((row: any, treeNode: import("element-plus").TreeNode, resolve: (data: any[]) => void) => void) | undefined;
|
|
313
|
-
readonly width?: string | number | undefined;
|
|
314
|
-
readonly height?: string | number | undefined;
|
|
315
313
|
readonly method?: import("axios").Method | undefined;
|
|
314
|
+
readonly width?: string | number | undefined;
|
|
316
315
|
readonly api?: import("el-plus/es/types").Api | undefined;
|
|
317
316
|
readonly reqData?: Record<string, any> | undefined;
|
|
318
317
|
readonly reqParams?: Record<string, any> | undefined;
|
|
@@ -345,6 +344,7 @@ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPro
|
|
|
345
344
|
readonly selectable?: ((row: import("element-plus/es/components/table/src/table/defaults").DefaultRow, index: number) => boolean) | undefined;
|
|
346
345
|
readonly indexFormatter?: number | ((index: number) => number) | undefined;
|
|
347
346
|
readonly customColumnModule?: string | number | undefined;
|
|
347
|
+
readonly height?: string | number | undefined;
|
|
348
348
|
readonly maxHeight?: string | number | undefined;
|
|
349
349
|
readonly sumText?: string | undefined;
|
|
350
350
|
readonly currentRowKey?: string | number | undefined;
|
|
@@ -308,9 +308,8 @@ export declare const useSearchListPage: (props: SearchListPageProps, config?: {}
|
|
|
308
308
|
readonly preserveExpandedContent: boolean;
|
|
309
309
|
readonly nativeScrollbar: boolean;
|
|
310
310
|
readonly load?: ((row: any, treeNode: import("element-plus").TreeNode, resolve: (data: any[]) => void) => void) | undefined;
|
|
311
|
-
readonly width?: string | number | undefined;
|
|
312
|
-
readonly height?: string | number | undefined;
|
|
313
311
|
readonly method?: import("axios").Method | undefined;
|
|
312
|
+
readonly width?: string | number | undefined;
|
|
314
313
|
readonly api?: import("el-plus/es/types").Api | undefined;
|
|
315
314
|
readonly reqData?: Record<string, any> | undefined;
|
|
316
315
|
readonly reqParams?: Record<string, any> | undefined;
|
|
@@ -343,6 +342,7 @@ export declare const useSearchListPage: (props: SearchListPageProps, config?: {}
|
|
|
343
342
|
readonly selectable?: ((row: import("element-plus/es/components/table/src/table/defaults").DefaultRow, index: number) => boolean) | undefined;
|
|
344
343
|
readonly indexFormatter?: number | ((index: number) => number) | undefined;
|
|
345
344
|
readonly customColumnModule?: string | number | undefined;
|
|
345
|
+
readonly height?: string | number | undefined;
|
|
346
346
|
readonly maxHeight?: string | number | undefined;
|
|
347
347
|
readonly sumText?: string | undefined;
|
|
348
348
|
readonly currentRowKey?: string | number | undefined;
|
package/lib/package.json.js
CHANGED
package/package.json
CHANGED
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import type { Browser } from 'puppeteer';
|
|
2
|
-
export declare class BrowserInstance {
|
|
3
|
-
private static browser;
|
|
4
|
-
private static browserStarting;
|
|
5
|
-
private static browserStartPromise;
|
|
6
|
-
static getBrowser(proxy?: string): Promise<Browser>;
|
|
7
|
-
static closeBrowser(): Promise<void>;
|
|
8
|
-
}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import type { Browser } from 'puppeteer';
|
|
2
|
-
export declare class BrowserInstance {
|
|
3
|
-
private static browser;
|
|
4
|
-
private static browserStarting;
|
|
5
|
-
private static browserStartPromise;
|
|
6
|
-
static getBrowser(proxy?: string): Promise<Browser>;
|
|
7
|
-
static closeBrowser(): Promise<void>;
|
|
8
|
-
}
|