@byteluck-fe/model-driven-controls 2.5.0-alpha.2 → 2.5.0-alpha.4

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.
Files changed (27) hide show
  1. package/dist/esm/columnControls/ArrayColumn/designer.js +4 -0
  2. package/dist/esm/columnControls/ArrayColumn/property.js +12 -1
  3. package/dist/esm/columnControls/AutoNumberColumn/designer.js +4 -0
  4. package/dist/esm/columnControls/AutoNumberColumn/property.js +25 -1
  5. package/dist/esm/columnControls/DecimalColumn/designer.js +4 -0
  6. package/dist/esm/columnControls/DecimalColumn/property.js +12 -1
  7. package/dist/esm/columnControls/LocationColumn/designer.js +4 -0
  8. package/dist/esm/columnControls/LocationColumn/property.js +25 -1
  9. package/dist/esm/columnControls/TextColumn/designer.js +4 -0
  10. package/dist/esm/columnControls/TextColumn/property.js +13 -2
  11. package/dist/esm/columnControls/TimescopeColumn/designer.js +4 -0
  12. package/dist/esm/columnControls/TimescopeColumn/property.js +12 -1
  13. package/dist/esm/columnControls/TimestampColumn/designer.js +4 -0
  14. package/dist/esm/columnControls/TimestampColumn/property.js +12 -1
  15. package/dist/esm/columnControls/VarcharColumn/designer.js +4 -0
  16. package/dist/esm/columnControls/VarcharColumn/property.js +12 -1
  17. package/dist/esm/formControls/Tree/property.js +0 -1
  18. package/dist/index.umd.js +1 -1
  19. package/dist/types/columnControls/ArrayColumn/property.d.ts +11 -1
  20. package/dist/types/columnControls/AutoNumberColumn/property.d.ts +11 -1
  21. package/dist/types/columnControls/DecimalColumn/property.d.ts +11 -1
  22. package/dist/types/columnControls/LocationColumn/property.d.ts +11 -1
  23. package/dist/types/columnControls/TextColumn/property.d.ts +11 -1
  24. package/dist/types/columnControls/TimescopeColumn/property.d.ts +11 -1
  25. package/dist/types/columnControls/TimestampColumn/property.d.ts +11 -1
  26. package/dist/types/columnControls/VarcharColumn/property.d.ts +11 -1
  27. package/package.json +4 -4
@@ -1,4 +1,4 @@
1
- import { ColumnControlProperty, ColumnOptionAndDataSourcePropertyRules, DataSourceBind, OptionSetting } from '@byteluck-fe/model-driven-core';
1
+ import { ColumnControlProperty, ColumnOptionAndDataSourcePropertyRules, DataSourceBind, OptionSetting, LinkOperationOption } from '@byteluck-fe/model-driven-core';
2
2
  /**
3
3
  * ArrayColumn 数组列
4
4
  * @public
@@ -26,6 +26,16 @@ declare class ArrayColumnControlProperty extends ColumnControlProperty {
26
26
  * @public
27
27
  */
28
28
  datasourceBind: DataSourceBind;
29
+ /**
30
+ * 是否显示链接操作
31
+ * @public
32
+ */
33
+ showLinkOperation: boolean;
34
+ /**
35
+ * 链接操作配置
36
+ * @public
37
+ */
38
+ linkOperationOption: LinkOperationOption;
29
39
  /**
30
40
  * 自定义选项
31
41
  * @defaultValue []
@@ -1,9 +1,19 @@
1
- import { ColumnControlProperty } from '@byteluck-fe/model-driven-core';
1
+ import { ColumnControlProperty, LinkOperationOption } from '@byteluck-fe/model-driven-core';
2
2
  /**
3
3
  * AutoNumberColumn 自动编号类型列
4
4
  * @public
5
5
  */
6
6
  declare class AutoNumberColumnControlProperty extends ColumnControlProperty {
7
+ /**
8
+ * 是否显示链接操作
9
+ * @public
10
+ */
11
+ showLinkOperation: boolean;
12
+ /**
13
+ * 链接操作配置
14
+ * @public
15
+ */
16
+ linkOperationOption: LinkOperationOption;
7
17
  constructor(props?: Partial<AutoNumberColumnControlProperty>);
8
18
  }
9
19
  export default AutoNumberColumnControlProperty;
@@ -1,4 +1,4 @@
1
- import { ColumnControlProperty, DataSourceBind, OptionSetting } from '@byteluck-fe/model-driven-core';
1
+ import { ColumnControlProperty, DataSourceBind, OptionSetting, LinkOperationOption } from '@byteluck-fe/model-driven-core';
2
2
  /**
3
3
  * DecimalColumn 数字列
4
4
  * @public
@@ -15,6 +15,16 @@ declare class DecimalColumnControlProperty extends ColumnControlProperty {
15
15
  * @public
16
16
  */
17
17
  datasourceBind: DataSourceBind;
18
+ /**
19
+ * 是否显示链接操作
20
+ * @public
21
+ */
22
+ showLinkOperation: boolean;
23
+ /**
24
+ * 链接操作配置
25
+ * @public
26
+ */
27
+ linkOperationOption: LinkOperationOption;
18
28
  /**
19
29
  * 自定义选项
20
30
  * @defaultValue []
@@ -1,9 +1,19 @@
1
- import { ColumnControlProperty } from '@byteluck-fe/model-driven-core';
1
+ import { ColumnControlProperty, LinkOperationOption } from '@byteluck-fe/model-driven-core';
2
2
  /**
3
3
  * LocationColumn 地址列
4
4
  * @public
5
5
  */
6
6
  declare class LocationColumnControlProperty extends ColumnControlProperty {
7
+ /**
8
+ * 是否显示链接操作
9
+ * @public
10
+ */
11
+ showLinkOperation: boolean;
12
+ /**
13
+ * 链接操作配置
14
+ * @public
15
+ */
16
+ linkOperationOption: LinkOperationOption;
7
17
  constructor(props?: Partial<LocationColumnControlProperty>);
8
18
  }
9
19
  export default LocationColumnControlProperty;
@@ -1,4 +1,4 @@
1
- import { ColumnControlProperty } from '@byteluck-fe/model-driven-core';
1
+ import { ColumnControlProperty, LinkOperationOption } from '@byteluck-fe/model-driven-core';
2
2
  /**
3
3
  * TextColumn 长文本列
4
4
  * @public
@@ -15,6 +15,16 @@ declare class TextColumnControlProperty extends ColumnControlProperty {
15
15
  * @defaultValue 1
16
16
  * @public
17
17
  */
18
+ /**
19
+ * 是否显示链接操作
20
+ * @public
21
+ */
22
+ showLinkOperation: boolean;
23
+ /**
24
+ * 链接操作配置
25
+ * @public
26
+ */
27
+ linkOperationOption: LinkOperationOption;
18
28
  lineEllipsis: number;
19
29
  constructor(props?: Partial<TextColumnControlProperty>);
20
30
  }
@@ -1,4 +1,4 @@
1
- import { ColumnControlProperty } from '@byteluck-fe/model-driven-core';
1
+ import { ColumnControlProperty, LinkOperationOption } from '@byteluck-fe/model-driven-core';
2
2
  import { DateType } from '@byteluck-fe/model-driven-shared';
3
3
  /**
4
4
  * TimescopeColumn 日期区间列
@@ -11,6 +11,16 @@ declare class TimescopeColumnControlProperty extends ColumnControlProperty {
11
11
  * @public
12
12
  * */
13
13
  dateType: DateType;
14
+ /**
15
+ * 是否显示链接操作
16
+ * @public
17
+ */
18
+ showLinkOperation: boolean;
19
+ /**
20
+ * 链接操作配置
21
+ * @public
22
+ */
23
+ linkOperationOption: LinkOperationOption;
14
24
  constructor(props?: Partial<TimescopeColumnControlProperty>);
15
25
  }
16
26
  export default TimescopeColumnControlProperty;
@@ -1,4 +1,4 @@
1
- import { ColumnControlProperty } from '@byteluck-fe/model-driven-core';
1
+ import { ColumnControlProperty, LinkOperationOption } from '@byteluck-fe/model-driven-core';
2
2
  import { DateType } from '@byteluck-fe/model-driven-shared';
3
3
  /**
4
4
  * TimestampColumn 日期列
@@ -11,6 +11,16 @@ declare class TimestampColumnControlProperty extends ColumnControlProperty {
11
11
  * @public
12
12
  * */
13
13
  dateType: DateType;
14
+ /**
15
+ * 是否显示链接操作
16
+ * @public
17
+ */
18
+ showLinkOperation: boolean;
19
+ /**
20
+ * 链接操作配置
21
+ * @public
22
+ */
23
+ linkOperationOption: LinkOperationOption;
14
24
  constructor(props?: Partial<TimestampColumnControlProperty>);
15
25
  }
16
26
  export default TimestampColumnControlProperty;
@@ -1,4 +1,4 @@
1
- import { ColumnControlProperty, ColumnOptionAndDataSourcePropertyRules, DataSourceBind, OptionSetting } from '@byteluck-fe/model-driven-core';
1
+ import { ColumnControlProperty, ColumnOptionAndDataSourcePropertyRules, DataSourceBind, LinkOperationOption, OptionSetting } from '@byteluck-fe/model-driven-core';
2
2
  declare class VarcharColumnControlPropertyRules extends ColumnOptionAndDataSourcePropertyRules {
3
3
  constructor(props: VarcharColumnControlProperty);
4
4
  }
@@ -19,6 +19,16 @@ declare class VarcharColumnControlProperty extends ColumnControlProperty {
19
19
  * @public
20
20
  */
21
21
  datasourceBind: DataSourceBind;
22
+ /**
23
+ * 是否显示链接操作
24
+ * @public
25
+ */
26
+ showLinkOperation: boolean;
27
+ /**
28
+ * 链接操作配置
29
+ * @public
30
+ */
31
+ linkOperationOption: LinkOperationOption;
22
32
  /**
23
33
  * 自定义选项
24
34
  * @defaultValue []
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@byteluck-fe/model-driven-controls",
3
- "version": "2.5.0-alpha.2",
3
+ "version": "2.5.0-alpha.4",
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.5.0-alpha.1",
30
- "@byteluck-fe/model-driven-settings": "2.5.0-alpha.1",
29
+ "@byteluck-fe/model-driven-core": "2.5.0-alpha.4",
30
+ "@byteluck-fe/model-driven-settings": "2.5.0-alpha.4",
31
31
  "@byteluck-fe/model-driven-shared": "2.3.1",
32
32
  "async-validator": "3.5.1"
33
33
  },
34
- "gitHead": "c24cabe2e2dea9ebacd6ccb31cebcd636282ebbc"
34
+ "gitHead": "de2770cff4979c56822d01b1821c71797dcaa811"
35
35
  }