@byteluck-fe/model-driven-controls 2.22.4-beta.5 → 2.22.4-beta.6

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.
@@ -0,0 +1,14 @@
1
+ import { CONTROL_TYPE } from '@byteluck-fe/model-driven-shared';
2
+ import { DesignerLayoutControl, SettingOption } from '@byteluck-fe/model-driven-core';
3
+ import StepPaneControlProperty from './property';
4
+ declare class StepPaneControl extends DesignerLayoutControl {
5
+ static get controlName(): string;
6
+ static get controlType(): string;
7
+ static get controlIcon(): string;
8
+ static excludes: CONTROL_TYPE[];
9
+ static setting: SettingOption[];
10
+ props: StepPaneControlProperty;
11
+ constructor(props?: any);
12
+ }
13
+ export default StepPaneControl;
14
+ export { StepPaneControl as DesignerStepPaneControl };
@@ -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,12 @@
1
+ import { LayoutControlProperty } from '@byteluck-fe/model-driven-core';
2
+ declare class StepPaneControlProperty extends LayoutControlProperty {
3
+ title: string;
4
+ subTitle?: string;
5
+ disabled: boolean;
6
+ icon: string;
7
+ color: string;
8
+ status: 'wait' | 'process' | 'finish' | 'error';
9
+ constructor(props?: Partial<StepPaneControlProperty>);
10
+ }
11
+ export default StepPaneControlProperty;
12
+ export { StepPaneControlProperty, };
@@ -0,0 +1,9 @@
1
+ import { RuntimeLayoutControl } from '@byteluck-fe/model-driven-core';
2
+ import StepPaneControlProperty from './property';
3
+ declare class StepPaneControl extends RuntimeLayoutControl {
4
+ static get controlType(): string;
5
+ props: StepPaneControlProperty;
6
+ constructor(props?: any);
7
+ }
8
+ export default StepPaneControl;
9
+ export { StepPaneControl as RuntimeStepPaneControl };
File without changes
@@ -18,3 +18,4 @@ export { default as PositioningContainer } from './PositioningContainer';
18
18
  export { default as Position } from './Position';
19
19
  export { default as ActionBar } from './ActionBar';
20
20
  export { default as Step } from './Step';
21
+ export { default as StepPane } from './StepPane';
@@ -1,6 +1,6 @@
1
1
  import { Divider, Text, Link, Button, Title, CreateFormListButton, BatchSubmissionListButton, SubmissionRecordListButton, ImportRecordListButton, ExportRecordListButton, ExportListButton, FormSelectButton, ListSelectButton, Pagination, Dashboard, ListViewSelect, TextOcrButton, InvoiceCheckButton, BatchPrintListButton, BatchPrintRecordListButton, OperationButton, ReferenceList } from './baseControls';
2
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
- import { CardGroup, Col, Grid, GridRow, Row, SubTableColumn, SubTableRow, GridTableColumn, GridLayoutContainer, Tab, TabPane, Toolbox, ListView, DataView, Page, AdvancedContainer, PositioningContainer, Position, ActionBar, Step } from './layoutControls';
3
+ import { CardGroup, Col, Grid, GridRow, Row, SubTableColumn, SubTableRow, GridTableColumn, GridLayoutContainer, Tab, TabPane, Toolbox, ListView, DataView, Page, AdvancedContainer, PositioningContainer, Position, ActionBar, Step, StepPane } 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';
6
6
  import { SimpleSearch } from './searchControls';
@@ -83,7 +83,8 @@ declare module '@byteluck-fe/model-driven-core' {
83
83
  'positioning-container': typeof PositioningContainer;
84
84
  position: typeof Position;
85
85
  'action-bar': typeof ActionBar;
86
- 'step': typeof Step;
86
+ step: typeof Step;
87
+ 'step-pane': typeof StepPane;
87
88
  }
88
89
  interface ListControls {
89
90
  subtable: typeof SubTable;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@byteluck-fe/model-driven-controls",
3
- "version": "2.22.4-beta.5",
3
+ "version": "2.22.4-beta.6",
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.22.4-beta.5",
30
- "@byteluck-fe/model-driven-settings": "2.22.4-beta.5",
31
- "@byteluck-fe/model-driven-shared": "2.22.4-beta.5",
29
+ "@byteluck-fe/model-driven-core": "2.22.4-beta.6",
30
+ "@byteluck-fe/model-driven-settings": "2.22.4-beta.6",
31
+ "@byteluck-fe/model-driven-shared": "2.22.4-beta.6",
32
32
  "async-validator": "3.5.1"
33
33
  },
34
- "gitHead": "9146be3340bb987edf96d5bda2178a1427be9734"
34
+ "gitHead": "3d1db59a8067ff3f1afd6e2107ba9d29cc987033"
35
35
  }