@byteluck-fe/model-driven-controls 2.9.0-alpha.20 → 2.9.0-alpha.21

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.
@@ -98,7 +98,7 @@ function _create_super(Derived) {
98
98
  }
99
99
  import { DesignerFormControl } from "@byteluck-fe/model-driven-core";
100
100
  import VuePageProperty from "./property";
101
- import { FieldTypes } from "@byteluck-fe/model-driven-shared";
101
+ import { FieldTypes, CONTROL_TYPE } from "@byteluck-fe/model-driven-shared";
102
102
  var VuePageControl = /*#__PURE__*/ function(DesignerFormControl) {
103
103
  "use strict";
104
104
  _inherits(VuePageControl, DesignerFormControl);
@@ -127,7 +127,7 @@ var VuePageControl = /*#__PURE__*/ function(DesignerFormControl) {
127
127
  {
128
128
  key: "controlType",
129
129
  get: function get() {
130
- return "vue-page";
130
+ return CONTROL_TYPE.VUE_PAGE;
131
131
  }
132
132
  }
133
133
  ]);
@@ -97,7 +97,7 @@ function _create_super(Derived) {
97
97
  };
98
98
  }
99
99
  import { RuntimeFormControl } from "@byteluck-fe/model-driven-core";
100
- import { FieldTypes } from "@byteluck-fe/model-driven-shared";
100
+ import { CONTROL_TYPE, FieldTypes } from "@byteluck-fe/model-driven-shared";
101
101
  import VuePageProperty from "./property";
102
102
  var VuePageControl = /*#__PURE__*/ function(RuntimeFormControl) {
103
103
  "use strict";
@@ -115,7 +115,7 @@ var VuePageControl = /*#__PURE__*/ function(RuntimeFormControl) {
115
115
  {
116
116
  key: "controlType",
117
117
  get: function get() {
118
- return FieldTypes.ANY;
118
+ return CONTROL_TYPE.VUE_PAGE;
119
119
  }
120
120
  }
121
121
  ]);