-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
30 changed files
with
145 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,42 @@ | ||
{ | ||
"name": "element-pro-crud", | ||
"version": "0.1.1", | ||
"description": "二次封装Table,Form组件,配套表单,表格设计器,一键Crud", | ||
"version": "0.1.2", | ||
"main": "lib/ProCrud.umd.min.js", | ||
"files": [ | ||
"lib", | ||
"src", | ||
"packages", | ||
"types" | ||
], | ||
"typings": "types/index.d.ts", | ||
"description": "二次封装Table,Form组件,配套表单,表格设计器,一键Crud", | ||
"private": false, | ||
"license": "MIT", | ||
"keyword": "ElementUI,CRUD,el-table,el-form,表单设计器", | ||
"keywords": ["CRUD","ElementUI","el-table","el-form","表单设计器","表格设计器"], | ||
"keywords": [ | ||
"CRUD", | ||
"ElementUI", | ||
"el-table", | ||
"el-form", | ||
"表单设计器", | ||
"表格设计器" | ||
], | ||
"author": "BoBo<[email protected]>", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/BoBoooooo/Element-Pro-Crud" | ||
}, | ||
"homepage": "https://github.com/BoBoooooo/Element-Pro-Crud/blob/master/README.md", | ||
"homepage": "https://github.com/BoBoooooo/Element-Pro-Crud#readme", | ||
"bugs": { | ||
"url": "https://github.com/BoBoooooo/Element-Pro-Crud/issues" | ||
}, | ||
"scripts": { | ||
"start": "vue-cli-service serve", | ||
"build": "vue-cli-service build", | ||
"lint": "vue-cli-service lint", | ||
"fix": "eslint --ext .ts,.vue packages --fix", | ||
"report": "cross-env IS_REPORT=true vue-cli-service build", | ||
"lib": "vue-cli-service build --target lib --name ProCrud --dest lib packages/index.ts", | ||
"lib": "vue-cli-service build --target lib --name ProCrud --dest lib src/index.ts", | ||
"deploy": "npm run lib && npm publish" | ||
}, | ||
"dependencies": { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import { BaseComponent } from './main' | ||
|
||
|
||
/** CrudTable Component */ | ||
export declare class ElCrudTable extends BaseComponent { | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
import Vue from 'vue' | ||
import { BaseComponent } from './main' | ||
import { ElCrudTable } from './crud-table' | ||
import { ElFormDesignerDialog } from './form-designer-dialog' | ||
import { ElTableDesignerDialog } from './table-designer-dialog' | ||
import { ElGenerateForm } from './generate-form' | ||
|
||
export interface InstallationOptions {} | ||
|
||
/** | ||
* Install all ElementProCrud components into Vue. | ||
* Please do not invoke this method directly. | ||
* Call `Vue.use(ElementProCrud)` to install. | ||
*/ | ||
export function install (vue: typeof Vue, options: InstallationOptions): void | ||
|
||
/** ElementUI component common definition */ | ||
export type Component = BaseComponent | ||
|
||
/** FormDesignerDialog Component */ | ||
export class FormDesignerDialog extends ElFormDesignerDialog {} | ||
|
||
/** TableDesignerDialog Component */ | ||
export class TableDesignerDialog extends ElTableDesignerDialog {} | ||
|
||
/** GenerateForm Component */ | ||
export class GenerateForm extends ElGenerateForm {} | ||
|
||
/** CrudTable Component */ | ||
export class CrudTable extends ElCrudTable {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import { BaseComponent } from './main' | ||
|
||
|
||
/** FormDesignerDialog Component */ | ||
export declare class ElFormDesignerDialog extends BaseComponent { | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import { BaseComponent } from './main' | ||
|
||
|
||
/** GenerateForm Component */ | ||
export declare class ElGenerateForm extends BaseComponent { | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
export * from './element-pro-crud' | ||
|
||
import * as ElementProCrud from './element-pro-crud' | ||
export default ElementProCrud |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import Vue from 'vue' | ||
|
||
/** ElementProCrud component common definition */ | ||
export declare class BaseComponent extends Vue { | ||
/** Install component into Vue */ | ||
static install (vue: typeof Vue): void | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import { BaseComponent } from './main' | ||
|
||
|
||
/** TableDesignerDialog Component */ | ||
export declare class ElTableDesignerDialog extends BaseComponent { | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters