@byteluck-fe/model-driven-controls 6.2.0-cyj.0 → 6.2.0-cyj.2

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,4 @@
1
1
  export { default as Text } from './baseControls/Text/property';
2
- export { default as Link } from './baseControls/Link/property';
3
2
  export { default as Button } from './baseControls/Button/property';
4
3
  export { default as Divider } from './baseControls/Divider/property';
5
4
  export { default as Title } from './baseControls/Title/property';
@@ -66,6 +65,7 @@ export { default as ElectronicSignature } from './formControls/ElectronicSignatu
66
65
  export { default as WPS } from './formControls/WPS/property';
67
66
  export { default as Department2 } from './formControls/Department2/property';
68
67
  export { default as OrganizationSelection } from './formControls/OrganizationSelection/property';
68
+ export { default as Link } from './formControls/Link/property';
69
69
  export { default as Grid } from './layoutControls/Grid/property';
70
70
  export { default as Col } from './layoutControls/Col/property';
71
71
  export { default as Row } from './layoutControls/Row/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';
@@ -76,12 +76,12 @@ function _type_of(obj) {
76
76
  "@swc/helpers - typeof";
77
77
  return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
78
78
  }
79
- import { DesignerControl, COMMON_SETTING_TYPE } from '@byteluck-fe/model-driven-core';
79
+ import { DesignerFormControl, COMMON_SETTING_TYPE } from '@byteluck-fe/model-driven-core';
80
80
  import { LinkProperty } from './property';
81
81
  import { getLocaleText } from '@byteluck-fe/locale-message';
82
- var LinkControl = /*#__PURE__*/ function(DesignerControl) {
82
+ var LinkControl = /*#__PURE__*/ function(DesignerFormControl) {
83
83
  "use strict";
84
- _inherits(LinkControl, DesignerControl);
84
+ _inherits(LinkControl, DesignerFormControl);
85
85
  function LinkControl(props) {
86
86
  _class_call_check(this, LinkControl);
87
87
  var _this;
@@ -112,11 +112,15 @@ var LinkControl = /*#__PURE__*/ function(DesignerControl) {
112
112
  }
113
113
  ]);
114
114
  return LinkControl;
115
- }(DesignerControl);
115
+ }(DesignerFormControl);
116
116
  _define_property(LinkControl, "controlEventKeys", [
117
117
  'on_click'
118
118
  ]);
119
119
  _define_property(LinkControl, "setting", [
120
+ {
121
+ key: 'data-bind',
122
+ visible: true
123
+ },
120
124
  {
121
125
  key: 'content',
122
126
  visible: true
@@ -62,11 +62,11 @@ function _type_of(obj) {
62
62
  "@swc/helpers - typeof";
63
63
  return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
64
64
  }
65
- import { Property } from '@byteluck-fe/model-driven-core';
65
+ import { BaseControlProperty } from '@byteluck-fe/model-driven-core';
66
66
  import { getLocaleText } from '@byteluck-fe/locale-message';
67
- var LinkProperty = /*#__PURE__*/ function(Property) {
67
+ var LinkProperty = /*#__PURE__*/ function(BaseControlProperty) {
68
68
  "use strict";
69
- _inherits(LinkProperty, Property);
69
+ _inherits(LinkProperty, BaseControlProperty);
70
70
  function LinkProperty(props) {
71
71
  _class_call_check(this, LinkProperty);
72
72
  var _this;
@@ -80,6 +80,6 @@ var LinkProperty = /*#__PURE__*/ function(Property) {
80
80
  return _this;
81
81
  }
82
82
  return LinkProperty;
83
- }(Property);
83
+ }(BaseControlProperty);
84
84
  export default LinkProperty;
85
85
  export { LinkProperty };
@@ -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 VuePage } from './VuePage';
32
+ export { default as Link } from './Link';