@byteluck-fe/model-driven-controls 4.34.0-lx4 → 4.35.0-lx2

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.
@@ -1,5 +1,5 @@
1
1
  export { default as Text } from './baseControls/Text/property';
2
- export { default as Link } from './baseControls/Link/property';
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,5 +1,4 @@
1
1
  export { default as Text } from './Text';
2
- export { default as Link } from './Link';
3
2
  export { default as Button } from './Button';
4
3
  export { default as Divider } from './Divider';
5
4
  export { default as Title } from './Title';
@@ -8,6 +8,7 @@ declare class AttachmentControl extends DesignerFormControl {
8
8
  static get controlType(): string;
9
9
  static controlFieldType: FieldTypes;
10
10
  static readonly setting: SettingOption[];
11
+ toDataBindModel(parentId: string | null): import("@byteluck-fe/model-driven-core").DataBindModelType | import("@byteluck-fe/model-driven-core").DataBindModelType[] | undefined;
11
12
  readonly props: AttachmentProperty;
12
13
  constructor(props?: Partial<Schema<'attachment'>>);
13
14
  }
@@ -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';
@@ -1,5 +1,5 @@
1
- import { Divider, Text, Link, 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, 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.34.0-lx4",
3
+ "version": "4.35.0-lx2",
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": "3c2aef6c2b0f6230e196fcb5b9b17c2df1827cad"
34
+ "gitHead": "9ed04d4c64eabc3ab2c32948d8a8d007ab2fb0b1"
35
35
  }