@byteluck-fe/model-driven-controls 4.35.0-lx1 → 4.35.0-lx3
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/dist/esm/api-doc-index.js +1 -1
- package/dist/esm/baseControls/index.js +0 -1
- package/dist/esm/{baseControls → formControls}/Link/designer.js +4 -4
- package/dist/esm/formControls/index.js +1 -0
- package/dist/index.umd.js +1 -1
- package/dist/types/api-doc-index.d.ts +1 -1
- package/dist/types/baseControls/index.d.ts +0 -1
- package/dist/types/{baseControls → formControls}/Link/designer.d.ts +2 -2
- package/dist/types/formControls/index.d.ts +1 -0
- package/dist/types/type.d.ts +3 -3
- package/package.json +2 -2
- /package/dist/esm/{baseControls → formControls}/Link/index.js +0 -0
- /package/dist/esm/{baseControls → formControls}/Link/property.js +0 -0
- /package/dist/esm/{baseControls → formControls}/Link/runtime.js +0 -0
- /package/dist/esm/{baseControls → formControls}/Link/types.js +0 -0
- /package/dist/types/{baseControls → formControls}/Link/index.d.ts +0 -0
- /package/dist/types/{baseControls → formControls}/Link/property.d.ts +0 -0
- /package/dist/types/{baseControls → formControls}/Link/runtime.d.ts +0 -0
- /package/dist/types/{baseControls → formControls}/Link/types.d.ts +0 -0
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export { default as Text } from './baseControls/Text/property';
|
|
2
|
-
export { default as Link } from './
|
|
2
|
+
export { default as Link } from './formControls/Link/property';
|
|
3
3
|
export { default as Button } from './baseControls/Button/property';
|
|
4
4
|
export { default as Divider } from './baseControls/Divider/property';
|
|
5
5
|
export { default as Title } from './baseControls/Title/property';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { DesignerFormControl, Schema, SettingOption } from '@byteluck-fe/model-driven-core';
|
|
2
2
|
import { LinkProperty } from './property';
|
|
3
|
-
declare class LinkControl extends
|
|
3
|
+
declare class LinkControl extends DesignerFormControl {
|
|
4
4
|
static get controlName(): string;
|
|
5
5
|
static get controlIcon(): string;
|
|
6
6
|
static get controlType(): string;
|
|
@@ -29,3 +29,4 @@ export { default as WPS } from './WPS';
|
|
|
29
29
|
export { default as Department2 } from './Department2';
|
|
30
30
|
export { default as OrganizationSelection } from './OrganizationSelection';
|
|
31
31
|
export { default as SensitivenInformation } from './SensitivenInformation';
|
|
32
|
+
export { default as Link } from './Link';
|
package/dist/types/type.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { Divider, Text,
|
|
2
|
-
import { Address, Amount, Attachment, AutoNumber, Checkbox, DatePicker, DateRange, Department, Employee, Image, Input, Number, Radio, Score, Select, SelectMultiple, Textarea, RichText, Calc, SearchNumberRange, SearchDateRange, SearchInput, VueFormItem, SelectRelation, Tree, Employee2, ElectronicSignature, WPS, Department2, OrganizationSelection, SensitivenInformation } from './formControls';
|
|
1
|
+
import { Divider, Text, Button, Title, CreateFormListButton, BatchSubmissionListButton, SubmissionRecordListButton, ImportRecordListButton, ExportRecordListButton, ExportListButton, FormSelectButton, ListSelectButton, Pagination, Dashboard, ListViewSelect, TextOcrButton, InvoiceCheckButton, BatchPrintListButton, BatchPrintRecordListButton, OperationButton } from './baseControls';
|
|
2
|
+
import { Address, Amount, Attachment, AutoNumber, Checkbox, DatePicker, DateRange, Department, Employee, Image, Input, Link, Number, Radio, Score, Select, SelectMultiple, Textarea, RichText, Calc, SearchNumberRange, SearchDateRange, SearchInput, VueFormItem, SelectRelation, Tree, Employee2, ElectronicSignature, WPS, Department2, OrganizationSelection, SensitivenInformation } from './formControls';
|
|
3
3
|
import { CardGroup, Col, Grid, GridRow, Row, SubTableColumn, SubTableRow, GridTableColumn, GridLayoutContainer, Tab, TabPane, Toolbox, ListView, DataView, Page, AdvancedContainer, PositioningContainer, Position, ActionBar } from './layoutControls';
|
|
4
4
|
import { SubTable, GridTable } from './listControls';
|
|
5
5
|
import { VarcharColumn, TextColumn, DecimalColumn, TimescopeColumn, TimestampColumn, ArrayColumn, DepartmentColumn, AutoNumberColumn, FileColumn, ImageColumn, PeopleColumn, LocationColumn, CustomColumn, OrderColumn, OperationColumn, EmployeeColumn, ApprovalStatusColumn } from './columnControls';
|
|
@@ -10,7 +10,6 @@ declare module '@byteluck-fe/model-driven-core' {
|
|
|
10
10
|
divider: typeof Divider;
|
|
11
11
|
text: typeof Text;
|
|
12
12
|
title: typeof Title;
|
|
13
|
-
link: typeof Link;
|
|
14
13
|
button: typeof Button;
|
|
15
14
|
'list-page-btn-create-form': typeof CreateFormListButton;
|
|
16
15
|
'list-page-btn-batch-submission': typeof BatchSubmissionListButton;
|
|
@@ -30,6 +29,7 @@ declare module '@byteluck-fe/model-driven-core' {
|
|
|
30
29
|
'operation-button': typeof OperationButton;
|
|
31
30
|
}
|
|
32
31
|
interface FormControls {
|
|
32
|
+
link: typeof Link;
|
|
33
33
|
input: typeof Input;
|
|
34
34
|
select: typeof Select;
|
|
35
35
|
'select-multiple': typeof SelectMultiple;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@byteluck-fe/model-driven-controls",
|
|
3
|
-
"version": "4.35.0-
|
|
3
|
+
"version": "4.35.0-lx3",
|
|
4
4
|
"description": "> TODO: description",
|
|
5
5
|
"author": "郝晨光 <2293885211@qq.com>",
|
|
6
6
|
"homepage": "",
|
|
@@ -31,5 +31,5 @@
|
|
|
31
31
|
"@byteluck-fe/model-driven-shared": "2.9.1-beta.1",
|
|
32
32
|
"async-validator": "3.5.1"
|
|
33
33
|
},
|
|
34
|
-
"gitHead": "
|
|
34
|
+
"gitHead": "5eac693ca453876e6eef28c3b621769261f9d410"
|
|
35
35
|
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|