el-plus 0.0.86-beta.2 → 0.0.86
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 +9 -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/CHANGELOG.md +3 -0
- package/docs/components/form.md +3 -4
- package/es/cli/src/fetcher/browser-fetcher.d.ts +4 -0
- package/es/cli/src/fetcher/browser-instance.d.ts +8 -0
- package/es/cli/src/fetcher/fetcher-factory.d.ts +4 -0
- package/es/cli/src/fetcher/index.d.ts +6 -0
- package/es/cli/src/fetcher/node-fetcher.d.ts +4 -0
- package/es/cli/src/fetcher/types.d.ts +15 -0
- package/es/cli/src/fetcher/utils.d.ts +6 -0
- package/es/cli/src/parser/index.d.ts +2 -0
- package/es/cli/src/parser/modao-parser.d.ts +20 -0
- package/es/cli/src/parser/{modao.d.ts → types.d.ts} +6 -18
- package/es/components/buttons/index.d.ts +6 -6
- package/es/components/buttons/src/buttons-vue.d.ts +3 -3
- package/es/components/buttons/src/buttons.d.ts +1 -1
- package/es/components/search-list-page/index.d.ts +3 -3
- package/es/components/search-list-page/src/search-list-page.vue.d.ts +1 -1
- package/es/components/search-list-page/src/use-search-list-page.d.ts +1 -1
- package/es/package.json.mjs +1 -1
- package/lib/cli/src/fetcher/browser-fetcher.d.ts +4 -0
- package/lib/cli/src/fetcher/browser-instance.d.ts +8 -0
- package/lib/cli/src/fetcher/fetcher-factory.d.ts +4 -0
- package/lib/cli/src/fetcher/index.d.ts +6 -0
- package/lib/cli/src/fetcher/node-fetcher.d.ts +4 -0
- package/lib/cli/src/fetcher/types.d.ts +15 -0
- package/lib/cli/src/fetcher/utils.d.ts +6 -0
- package/lib/cli/src/parser/index.d.ts +2 -0
- package/lib/cli/src/parser/modao-parser.d.ts +20 -0
- package/lib/cli/src/parser/{modao.d.ts → types.d.ts} +6 -18
- package/lib/components/buttons/index.d.ts +6 -6
- package/lib/components/buttons/src/buttons-vue.d.ts +3 -3
- package/lib/components/buttons/src/buttons.d.ts +1 -1
- package/lib/components/search-list-page/index.d.ts +3 -3
- package/lib/components/search-list-page/src/search-list-page.vue.d.ts +1 -1
- package/lib/components/search-list-page/src/use-search-list-page.d.ts +1 -1
- package/lib/package.json.js +1 -1
- package/package.json +1 -2
- package/es/cli/src/parser/image-parser.d.ts +0 -8
- package/lib/cli/src/parser/image-parser.d.ts +0 -8
|
@@ -309,9 +309,9 @@ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPro
|
|
|
309
309
|
readonly allowDragLastColumn: boolean;
|
|
310
310
|
readonly preserveExpandedContent: boolean;
|
|
311
311
|
readonly nativeScrollbar: boolean;
|
|
312
|
+
readonly load?: ((row: any, treeNode: import("element-plus").TreeNode, resolve: (data: any[]) => void) => void) | undefined;
|
|
312
313
|
readonly width?: string | number | undefined;
|
|
313
314
|
readonly height?: string | number | undefined;
|
|
314
|
-
readonly load?: ((row: any, treeNode: import("element-plus").TreeNode, resolve: (data: any[]) => void) => void) | undefined;
|
|
315
315
|
readonly method?: import("axios").Method | undefined;
|
|
316
316
|
readonly api?: import("el-plus/es/types").Api | undefined;
|
|
317
317
|
readonly reqData?: Record<string, any> | undefined;
|
|
@@ -307,9 +307,9 @@ export declare const useSearchListPage: (props: SearchListPageProps, config?: {}
|
|
|
307
307
|
readonly allowDragLastColumn: boolean;
|
|
308
308
|
readonly preserveExpandedContent: boolean;
|
|
309
309
|
readonly nativeScrollbar: boolean;
|
|
310
|
+
readonly load?: ((row: any, treeNode: import("element-plus").TreeNode, resolve: (data: any[]) => void) => void) | undefined;
|
|
310
311
|
readonly width?: string | number | undefined;
|
|
311
312
|
readonly height?: string | number | undefined;
|
|
312
|
-
readonly load?: ((row: any, treeNode: import("element-plus").TreeNode, resolve: (data: any[]) => void) => void) | undefined;
|
|
313
313
|
readonly method?: import("axios").Method | undefined;
|
|
314
314
|
readonly api?: import("el-plus/es/types").Api | undefined;
|
|
315
315
|
readonly reqData?: Record<string, any> | undefined;
|
package/lib/package.json.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "el-plus",
|
|
3
|
-
"version": "0.0.86
|
|
3
|
+
"version": "0.0.86",
|
|
4
4
|
"description": "pro base on element-plus",
|
|
5
5
|
"module": "./es/index.mjs",
|
|
6
6
|
"keywords": [
|
|
@@ -25,7 +25,6 @@
|
|
|
25
25
|
"vue-router": "^4.6.4"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"el-plus-cli": "latest",
|
|
29
28
|
"@vueuse/core": "^14.1.0",
|
|
30
29
|
"lodash-unified": "^1.0.3",
|
|
31
30
|
"qs": "^6.14.1",
|
|
@@ -1,8 +0,0 @@
|
|
|
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;
|
|
@@ -1,8 +0,0 @@
|
|
|
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;
|