@byteluck-fe/model-driven-controls 2.9.0-alpha.9 → 2.9.3

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.
@@ -86,4 +86,5 @@ export { default as Position } from './layoutControls/Position/property';
86
86
  export { default as SubTable } from './listControls/SubTable/property';
87
87
  export { default as GridTable } from './listControls/GridTable/property';
88
88
  export { default as SimpleSearch } from './searchControls/SimpleSearch/property';
89
+ export { default as VuePage } from './formControls/VuePage/property';
89
90
  export * from './framework';
@@ -0,0 +1,15 @@
1
+ import { DesignerFormControl, Schema, SettingOption } from '@byteluck-fe/model-driven-core';
2
+ import VuePageProperty from './property';
3
+ import { FieldTypes } from '@byteluck-fe/model-driven-shared';
4
+ declare class VuePageControl extends DesignerFormControl {
5
+ static controlFieldType: FieldTypes;
6
+ static controlEventKeys: string[];
7
+ static get controlName(): string;
8
+ static get controlIcon(): string;
9
+ static get controlType(): FieldTypes;
10
+ static readonly setting: SettingOption[];
11
+ readonly props: VuePageProperty;
12
+ constructor(props?: Partial<Schema<'vue-form-item'>>);
13
+ }
14
+ export default VuePageControl;
15
+ export { VuePageControl as DesignerVuePageControl };
@@ -0,0 +1,12 @@
1
+ import Designer from './designer';
2
+ import Runtime from './runtime';
3
+ import Property from './property';
4
+ declare const _default: {
5
+ Designer: typeof Designer;
6
+ Runtime: typeof Runtime;
7
+ Property: typeof Property;
8
+ };
9
+ export default _default;
10
+ export * from './designer';
11
+ export * from './runtime';
12
+ export * from './property';
@@ -0,0 +1,18 @@
1
+ import { BaseControlProperty, BaseControlPropertyRules, BaseControlPropertyRuntimeRules, CustomPermissionItem } from '@byteluck-fe/model-driven-core';
2
+ declare class VuePagePropertyRules extends BaseControlPropertyRules {
3
+ constructor(props: VuePageProperty);
4
+ }
5
+ declare class VuePagePropertyRuntimeRules extends BaseControlPropertyRuntimeRules {
6
+ constructor(props: VuePageProperty);
7
+ }
8
+ declare class VuePageProperty extends BaseControlProperty {
9
+ static readonly Rules: typeof VuePagePropertyRules;
10
+ static readonly RuntimeRules: typeof VuePagePropertyRuntimeRules;
11
+ controlExportName: string;
12
+ permissions: CustomPermissionItem[];
13
+ defaultValue: any;
14
+ isInlineEdit: boolean;
15
+ constructor(props?: Partial<VuePageProperty>);
16
+ }
17
+ export default VuePageProperty;
18
+ export { VuePageProperty, VuePagePropertyRules, VuePagePropertyRuntimeRules };
@@ -0,0 +1,12 @@
1
+ import { RuntimeFormControl } from '@byteluck-fe/model-driven-core';
2
+ import { FieldTypes } from '@byteluck-fe/model-driven-shared';
3
+ import VuePageProperty from './property';
4
+ import { Schema } from '@byteluck-fe/model-driven-core';
5
+ declare class VuePageControl extends RuntimeFormControl {
6
+ static get controlType(): FieldTypes;
7
+ static controlFieldType: FieldTypes;
8
+ readonly props: VuePageProperty;
9
+ constructor(props?: Partial<Schema<'vue-page'>>);
10
+ }
11
+ export default VuePageControl;
12
+ export { VuePageControl as RuntimeVuePageControl };
File without changes
@@ -28,3 +28,4 @@ export { default as ElectronicSignature } from './ElectronicSignature';
28
28
  export { default as WPS } from './WPS';
29
29
  export { default as Department2 } from './Department2';
30
30
  export { default as OrganizationSelection } from './OrganizationSelection';
31
+ export { default as VuePage } from './VuePage';
@@ -6,6 +6,7 @@ declare class CardGroupControlPropertyRules extends LayoutControlProperty.Rules
6
6
  declare class CardGroupControlProperty extends LayoutControlProperty {
7
7
  static readonly Rules: typeof CardGroupControlPropertyRules;
8
8
  caption: string;
9
+ isHideCaption: boolean;
9
10
  collapse: 'none' | 'open' | 'close';
10
11
  constructor(props?: Partial<CardGroupControlProperty>);
11
12
  }
@@ -1,5 +1,5 @@
1
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 } from './formControls';
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, VuePage } 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';
@@ -60,6 +60,7 @@ declare module '@byteluck-fe/model-driven-core' {
60
60
  wps: typeof WPS;
61
61
  department2: typeof Department2;
62
62
  'organization-selection': typeof OrganizationSelection;
63
+ 'vue-page': typeof VuePage;
63
64
  }
64
65
  interface LayoutControls {
65
66
  'subtable-column': typeof SubTableColumn;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@byteluck-fe/model-driven-controls",
3
- "version": "2.9.0-alpha.9",
3
+ "version": "2.9.3",
4
4
  "description": "> TODO: description",
5
5
  "author": "郝晨光 <2293885211@qq.com>",
6
6
  "homepage": "",
@@ -26,10 +26,10 @@
26
26
  "postpublish": "node ../../scripts/postpublish.js"
27
27
  },
28
28
  "dependencies": {
29
- "@byteluck-fe/model-driven-core": "2.9.0-alpha.9",
30
- "@byteluck-fe/model-driven-settings": "2.9.0-alpha.9",
31
- "@byteluck-fe/model-driven-shared": "2.9.0-alpha.9",
29
+ "@byteluck-fe/model-driven-core": "2.9.0-alpha.17",
30
+ "@byteluck-fe/model-driven-settings": "2.9.0-alpha.17",
31
+ "@byteluck-fe/model-driven-shared": "2.9.0-alpha.17",
32
32
  "async-validator": "3.5.1"
33
33
  },
34
- "gitHead": "6b9a71cd72e9cfa5d8552ec19e896cb077e5fd29"
34
+ "gitHead": "e1d488964c1a66df282afdb967dec687f16986ee"
35
35
  }