@egova/egova-api 1.0.203 → 1.0.204
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.
- package/dist/index.common.js +189 -189
- package/dist/index.css +1 -1
- package/dist/index.umd.js +189 -189
- package/dist/index.umd.min.js +1 -1
- package/package.json +2 -2
package/dist/index.common.js
CHANGED
|
@@ -48560,7 +48560,7 @@ $({ target: PROMISE, stat: true, forced: INCORRECT_ITERATION }, {
|
|
|
48560
48560
|
/***/ "e718":
|
|
48561
48561
|
/***/ (function(module, exports) {
|
|
48562
48562
|
|
|
48563
|
-
module.exports = "<section class=\"v-base-editor-container\">\r\n <u-editor @inited=\"onEditorInited\" :
|
|
48563
|
+
module.exports = "<section class=\"v-base-editor-container\">\r\n <u-editor @inited=\"onEditorInited\" :model.sync=\"script\" lang=\"groovy\"></u-editor>\r\n</section>\r\n"
|
|
48564
48564
|
|
|
48565
48565
|
/***/ }),
|
|
48566
48566
|
|
|
@@ -53441,8 +53441,8 @@ var es_array_includes = __webpack_require__("caad");
|
|
|
53441
53441
|
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.string.includes.js
|
|
53442
53442
|
var es_string_includes = __webpack_require__("2532");
|
|
53443
53443
|
|
|
53444
|
-
// EXTERNAL MODULE: ./src/components/
|
|
53445
|
-
var
|
|
53444
|
+
// EXTERNAL MODULE: ./src/components/groovy-editor/index.scss
|
|
53445
|
+
var groovy_editor = __webpack_require__("2380");
|
|
53446
53446
|
|
|
53447
53447
|
// EXTERNAL MODULE: external "vue-property-decorator"
|
|
53448
53448
|
var external_vue_property_decorator_ = __webpack_require__("01a6");
|
|
@@ -53451,14 +53451,14 @@ var external_vue_property_decorator_ = __webpack_require__("01a6");
|
|
|
53451
53451
|
var vue2_ace_editor = __webpack_require__("7c9e");
|
|
53452
53452
|
var vue2_ace_editor_default = /*#__PURE__*/__webpack_require__.n(vue2_ace_editor);
|
|
53453
53453
|
|
|
53454
|
-
// CONCATENATED MODULE: ./src/components/
|
|
53454
|
+
// CONCATENATED MODULE: ./src/components/groovy-editor/index.ts
|
|
53455
53455
|
|
|
53456
53456
|
|
|
53457
53457
|
|
|
53458
53458
|
|
|
53459
53459
|
|
|
53460
53460
|
|
|
53461
|
-
var
|
|
53461
|
+
var groovy_editor_extends = undefined && undefined.__extends || function () {
|
|
53462
53462
|
var _extendStatics = function extendStatics(d, b) {
|
|
53463
53463
|
_extendStatics = Object.setPrototypeOf || {
|
|
53464
53464
|
__proto__: []
|
|
@@ -53486,7 +53486,7 @@ var code_editor_extends = undefined && undefined.__extends || function () {
|
|
|
53486
53486
|
};
|
|
53487
53487
|
}();
|
|
53488
53488
|
|
|
53489
|
-
var
|
|
53489
|
+
var groovy_editor_decorate = undefined && undefined.__decorate || function (decorators, target, key, desc) {
|
|
53490
53490
|
var c = arguments.length,
|
|
53491
53491
|
r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc,
|
|
53492
53492
|
d;
|
|
@@ -53496,7 +53496,7 @@ var code_editor_decorate = undefined && undefined.__decorate || function (decora
|
|
|
53496
53496
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
53497
53497
|
};
|
|
53498
53498
|
|
|
53499
|
-
var
|
|
53499
|
+
var groovy_editor_metadata = undefined && undefined.__metadata || function (k, v) {
|
|
53500
53500
|
if ((typeof Reflect === "undefined" ? "undefined" : _typeof(Reflect)) === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
53501
53501
|
};
|
|
53502
53502
|
|
|
@@ -53505,20 +53505,24 @@ var code_editor_metadata = undefined && undefined.__metadata || function (k, v)
|
|
|
53505
53505
|
|
|
53506
53506
|
|
|
53507
53507
|
|
|
53508
|
-
var
|
|
53508
|
+
var groovy_editor_CodeEditor =
|
|
53509
53509
|
/** @class */
|
|
53510
53510
|
function (_super) {
|
|
53511
|
-
|
|
53511
|
+
groovy_editor_extends(CodeEditor, _super);
|
|
53512
53512
|
|
|
53513
53513
|
function CodeEditor() {
|
|
53514
53514
|
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
53515
53515
|
|
|
53516
53516
|
_this.option = {
|
|
53517
53517
|
showPrintMargin: false,
|
|
53518
|
-
|
|
53519
|
-
|
|
53520
|
-
|
|
53521
|
-
|
|
53518
|
+
enableEmmet: true,
|
|
53519
|
+
enableBasicAutocompletion: true,
|
|
53520
|
+
enableSnippets: true,
|
|
53521
|
+
enableLiveAutocompletion: true,
|
|
53522
|
+
showFoldWidgets: false,
|
|
53523
|
+
wrap: true,
|
|
53524
|
+
fontSize: 16,
|
|
53525
|
+
fixedWidthGutter: true
|
|
53522
53526
|
};
|
|
53523
53527
|
return _this;
|
|
53524
53528
|
}
|
|
@@ -53529,40 +53533,65 @@ function (_super) {
|
|
|
53529
53533
|
|
|
53530
53534
|
|
|
53531
53535
|
__webpack_require__("5f48"); // tslint:disable-next-line
|
|
53532
|
-
|
|
53533
|
-
|
|
53534
|
-
|
|
53535
|
-
|
|
53536
|
-
|
|
53537
|
-
|
|
53538
|
-
|
|
53539
|
-
|
|
53540
|
-
|
|
53541
|
-
|
|
53542
|
-
|
|
53543
|
-
__webpack_require__("95b8"); // require("brace/theme/github");
|
|
53536
|
+
// require("brace/mode/json");
|
|
53537
|
+
// // tslint:disable-next-line
|
|
53538
|
+
// require("brace/mode/xml");
|
|
53539
|
+
// // tslint:disable-next-line
|
|
53540
|
+
// require("brace/mode/javascript");
|
|
53541
|
+
// // tslint:disable-next-line
|
|
53542
|
+
// require("brace/theme/chrome");
|
|
53543
|
+
// // tslint:disable-next-line
|
|
53544
|
+
// require("brace/snippets/javascript");
|
|
53545
|
+
// // tslint:disable-next-line
|
|
53546
|
+
// require("brace/snippets/json");
|
|
53544
53547
|
// tslint:disable-next-line
|
|
53545
53548
|
|
|
53546
53549
|
|
|
53547
|
-
__webpack_require__("
|
|
53550
|
+
__webpack_require__("2099"); // tslint:disable-next-line
|
|
53548
53551
|
|
|
53549
53552
|
|
|
53550
|
-
__webpack_require__("
|
|
53553
|
+
__webpack_require__("95b8");
|
|
53551
53554
|
|
|
53555
|
+
var that = this; // tslint:disable-next-line
|
|
53552
53556
|
|
|
53553
|
-
__webpack_require__("
|
|
53557
|
+
var ace = __webpack_require__("061c");
|
|
53554
53558
|
|
|
53559
|
+
var langTools = ace.acequire("ace/ext/language_tools");
|
|
53560
|
+
langTools.addCompleter({
|
|
53561
|
+
getCompletions: function getCompletions(editor, session, pos, prefix, callback) {
|
|
53562
|
+
that.setCompletions(editor, session, pos, prefix, callback);
|
|
53563
|
+
}
|
|
53564
|
+
});
|
|
53555
53565
|
this.$emit("inited", editor);
|
|
53556
53566
|
};
|
|
53557
53567
|
|
|
53558
|
-
|
|
53568
|
+
CodeEditor.prototype.setCompletions = function (editor, session, pos, prefix, callback) {
|
|
53569
|
+
if (prefix.length === 0) {
|
|
53570
|
+
return callback(null, []);
|
|
53571
|
+
} else {
|
|
53572
|
+
return callback(null, this.diyKeywordList);
|
|
53573
|
+
}
|
|
53574
|
+
};
|
|
53559
53575
|
|
|
53560
|
-
|
|
53561
|
-
default: "json"
|
|
53562
|
-
}), code_editor_metadata("design:type", String)], CodeEditor.prototype, "lang", void 0);
|
|
53576
|
+
var _a;
|
|
53563
53577
|
|
|
53564
|
-
|
|
53565
|
-
|
|
53578
|
+
groovy_editor_decorate([Object(external_vue_property_decorator_["PropSync"])("model", {
|
|
53579
|
+
default: ""
|
|
53580
|
+
}), groovy_editor_metadata("design:type", String)], CodeEditor.prototype, "code", void 0);
|
|
53581
|
+
|
|
53582
|
+
groovy_editor_decorate([Object(flagwind_web_["config"])({
|
|
53583
|
+
default: "groovy"
|
|
53584
|
+
}), groovy_editor_metadata("design:type", String)], CodeEditor.prototype, "lang", void 0);
|
|
53585
|
+
|
|
53586
|
+
groovy_editor_decorate([Object(flagwind_web_["config"])({
|
|
53587
|
+
type: Array,
|
|
53588
|
+
default: function _default() {
|
|
53589
|
+
return [];
|
|
53590
|
+
}
|
|
53591
|
+
}), groovy_editor_metadata("design:type", typeof (_a = typeof Array !== "undefined" && Array) === "function" ? _a : Object)], CodeEditor.prototype, "diyKeywordList", void 0);
|
|
53592
|
+
|
|
53593
|
+
CodeEditor = groovy_editor_decorate([Object(flagwind_web_["component"])({
|
|
53594
|
+
template: __webpack_require__("9915"),
|
|
53566
53595
|
components: {
|
|
53567
53596
|
editor: vue2_ace_editor_default.a
|
|
53568
53597
|
}
|
|
@@ -53570,7 +53599,7 @@ function (_super) {
|
|
|
53570
53599
|
return CodeEditor;
|
|
53571
53600
|
}(flagwind_web_["Component"]);
|
|
53572
53601
|
|
|
53573
|
-
/* harmony default export */ var
|
|
53602
|
+
/* harmony default export */ var components_groovy_editor = (groovy_editor_CodeEditor);
|
|
53574
53603
|
// EXTERNAL MODULE: ./src/views/project-combine/combine-model/base-editor/index.scss
|
|
53575
53604
|
var base_editor = __webpack_require__("ca1f");
|
|
53576
53605
|
|
|
@@ -53660,7 +53689,7 @@ function (_super) {
|
|
|
53660
53689
|
BaseEditor = base_editor_decorate([Object(flagwind_web_["component"])({
|
|
53661
53690
|
template: __webpack_require__("e718"),
|
|
53662
53691
|
components: {
|
|
53663
|
-
"u-editor":
|
|
53692
|
+
"u-editor": components_groovy_editor
|
|
53664
53693
|
}
|
|
53665
53694
|
})], BaseEditor);
|
|
53666
53695
|
return BaseEditor;
|
|
@@ -60457,158 +60486,6 @@ function (_super) {
|
|
|
60457
60486
|
// EXTERNAL MODULE: ./src/views/project-detail/index.scss
|
|
60458
60487
|
var project_detail = __webpack_require__("fe54");
|
|
60459
60488
|
|
|
60460
|
-
// EXTERNAL MODULE: ./src/components/groovy-editor/index.scss
|
|
60461
|
-
var groovy_editor = __webpack_require__("2380");
|
|
60462
|
-
|
|
60463
|
-
// CONCATENATED MODULE: ./src/components/groovy-editor/index.ts
|
|
60464
|
-
|
|
60465
|
-
|
|
60466
|
-
|
|
60467
|
-
|
|
60468
|
-
|
|
60469
|
-
|
|
60470
|
-
var groovy_editor_extends = undefined && undefined.__extends || function () {
|
|
60471
|
-
var _extendStatics = function extendStatics(d, b) {
|
|
60472
|
-
_extendStatics = Object.setPrototypeOf || {
|
|
60473
|
-
__proto__: []
|
|
60474
|
-
} instanceof Array && function (d, b) {
|
|
60475
|
-
d.__proto__ = b;
|
|
60476
|
-
} || function (d, b) {
|
|
60477
|
-
for (var p in b) {
|
|
60478
|
-
if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p];
|
|
60479
|
-
}
|
|
60480
|
-
};
|
|
60481
|
-
|
|
60482
|
-
return _extendStatics(d, b);
|
|
60483
|
-
};
|
|
60484
|
-
|
|
60485
|
-
return function (d, b) {
|
|
60486
|
-
if (typeof b !== "function" && b !== null) throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
60487
|
-
|
|
60488
|
-
_extendStatics(d, b);
|
|
60489
|
-
|
|
60490
|
-
function __() {
|
|
60491
|
-
this.constructor = d;
|
|
60492
|
-
}
|
|
60493
|
-
|
|
60494
|
-
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
60495
|
-
};
|
|
60496
|
-
}();
|
|
60497
|
-
|
|
60498
|
-
var groovy_editor_decorate = undefined && undefined.__decorate || function (decorators, target, key, desc) {
|
|
60499
|
-
var c = arguments.length,
|
|
60500
|
-
r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc,
|
|
60501
|
-
d;
|
|
60502
|
-
if ((typeof Reflect === "undefined" ? "undefined" : _typeof(Reflect)) === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);else for (var i = decorators.length - 1; i >= 0; i--) {
|
|
60503
|
-
if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
60504
|
-
}
|
|
60505
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
60506
|
-
};
|
|
60507
|
-
|
|
60508
|
-
var groovy_editor_metadata = undefined && undefined.__metadata || function (k, v) {
|
|
60509
|
-
if ((typeof Reflect === "undefined" ? "undefined" : _typeof(Reflect)) === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
60510
|
-
};
|
|
60511
|
-
|
|
60512
|
-
|
|
60513
|
-
|
|
60514
|
-
|
|
60515
|
-
|
|
60516
|
-
|
|
60517
|
-
var groovy_editor_CodeEditor =
|
|
60518
|
-
/** @class */
|
|
60519
|
-
function (_super) {
|
|
60520
|
-
groovy_editor_extends(CodeEditor, _super);
|
|
60521
|
-
|
|
60522
|
-
function CodeEditor() {
|
|
60523
|
-
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
60524
|
-
|
|
60525
|
-
_this.option = {
|
|
60526
|
-
showPrintMargin: false,
|
|
60527
|
-
enableEmmet: true,
|
|
60528
|
-
enableBasicAutocompletion: true,
|
|
60529
|
-
enableSnippets: true,
|
|
60530
|
-
enableLiveAutocompletion: true,
|
|
60531
|
-
showFoldWidgets: false,
|
|
60532
|
-
wrap: true,
|
|
60533
|
-
fontSize: 16,
|
|
60534
|
-
fixedWidthGutter: true
|
|
60535
|
-
};
|
|
60536
|
-
return _this;
|
|
60537
|
-
}
|
|
60538
|
-
|
|
60539
|
-
CodeEditor.prototype.editorInit = function (editor) {
|
|
60540
|
-
// tslint:disable-next-line
|
|
60541
|
-
__webpack_require__("0f6a"); // tslint:disable-next-line
|
|
60542
|
-
|
|
60543
|
-
|
|
60544
|
-
__webpack_require__("5f48"); // tslint:disable-next-line
|
|
60545
|
-
// require("brace/mode/json");
|
|
60546
|
-
// // tslint:disable-next-line
|
|
60547
|
-
// require("brace/mode/xml");
|
|
60548
|
-
// // tslint:disable-next-line
|
|
60549
|
-
// require("brace/mode/javascript");
|
|
60550
|
-
// // tslint:disable-next-line
|
|
60551
|
-
// require("brace/theme/chrome");
|
|
60552
|
-
// // tslint:disable-next-line
|
|
60553
|
-
// require("brace/snippets/javascript");
|
|
60554
|
-
// // tslint:disable-next-line
|
|
60555
|
-
// require("brace/snippets/json");
|
|
60556
|
-
// tslint:disable-next-line
|
|
60557
|
-
|
|
60558
|
-
|
|
60559
|
-
__webpack_require__("2099"); // tslint:disable-next-line
|
|
60560
|
-
|
|
60561
|
-
|
|
60562
|
-
__webpack_require__("95b8");
|
|
60563
|
-
|
|
60564
|
-
var that = this; // tslint:disable-next-line
|
|
60565
|
-
|
|
60566
|
-
var ace = __webpack_require__("061c");
|
|
60567
|
-
|
|
60568
|
-
var langTools = ace.acequire("ace/ext/language_tools");
|
|
60569
|
-
langTools.addCompleter({
|
|
60570
|
-
getCompletions: function getCompletions(editor, session, pos, prefix, callback) {
|
|
60571
|
-
that.setCompletions(editor, session, pos, prefix, callback);
|
|
60572
|
-
}
|
|
60573
|
-
});
|
|
60574
|
-
this.$emit("inited", editor);
|
|
60575
|
-
};
|
|
60576
|
-
|
|
60577
|
-
CodeEditor.prototype.setCompletions = function (editor, session, pos, prefix, callback) {
|
|
60578
|
-
if (prefix.length === 0) {
|
|
60579
|
-
return callback(null, []);
|
|
60580
|
-
} else {
|
|
60581
|
-
return callback(null, this.diyKeywordList);
|
|
60582
|
-
}
|
|
60583
|
-
};
|
|
60584
|
-
|
|
60585
|
-
var _a;
|
|
60586
|
-
|
|
60587
|
-
groovy_editor_decorate([Object(external_vue_property_decorator_["PropSync"])("model", {
|
|
60588
|
-
default: ""
|
|
60589
|
-
}), groovy_editor_metadata("design:type", String)], CodeEditor.prototype, "code", void 0);
|
|
60590
|
-
|
|
60591
|
-
groovy_editor_decorate([Object(flagwind_web_["config"])({
|
|
60592
|
-
default: "groovy"
|
|
60593
|
-
}), groovy_editor_metadata("design:type", String)], CodeEditor.prototype, "lang", void 0);
|
|
60594
|
-
|
|
60595
|
-
groovy_editor_decorate([Object(flagwind_web_["config"])({
|
|
60596
|
-
type: Array,
|
|
60597
|
-
default: function _default() {
|
|
60598
|
-
return [];
|
|
60599
|
-
}
|
|
60600
|
-
}), groovy_editor_metadata("design:type", typeof (_a = typeof Array !== "undefined" && Array) === "function" ? _a : Object)], CodeEditor.prototype, "diyKeywordList", void 0);
|
|
60601
|
-
|
|
60602
|
-
CodeEditor = groovy_editor_decorate([Object(flagwind_web_["component"])({
|
|
60603
|
-
template: __webpack_require__("9915"),
|
|
60604
|
-
components: {
|
|
60605
|
-
editor: vue2_ace_editor_default.a
|
|
60606
|
-
}
|
|
60607
|
-
})], CodeEditor);
|
|
60608
|
-
return CodeEditor;
|
|
60609
|
-
}(flagwind_web_["Component"]);
|
|
60610
|
-
|
|
60611
|
-
/* harmony default export */ var components_groovy_editor = (groovy_editor_CodeEditor);
|
|
60612
60489
|
// CONCATENATED MODULE: ./src/views/project-detail/base-editor-setting.ts
|
|
60613
60490
|
|
|
60614
60491
|
|
|
@@ -60963,7 +60840,7 @@ function (_super) {
|
|
|
60963
60840
|
};
|
|
60964
60841
|
|
|
60965
60842
|
PreExecutionSetting.prototype.handleError = function (value) {
|
|
60966
|
-
var _this = this; // 通过定时器保证dom
|
|
60843
|
+
var _this = this; // 通过定时器保证dom节点已经渲染完毕,不然无法触发新增节点方法
|
|
60967
60844
|
|
|
60968
60845
|
|
|
60969
60846
|
setTimeout(function () {
|
|
@@ -61395,6 +61272,129 @@ var es_array_sort = __webpack_require__("4e82");
|
|
|
61395
61272
|
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.object.keys.js
|
|
61396
61273
|
var es_object_keys = __webpack_require__("b64b");
|
|
61397
61274
|
|
|
61275
|
+
// EXTERNAL MODULE: ./src/components/code-editor/index.scss
|
|
61276
|
+
var code_editor = __webpack_require__("a6c3");
|
|
61277
|
+
|
|
61278
|
+
// CONCATENATED MODULE: ./src/components/code-editor/index.ts
|
|
61279
|
+
|
|
61280
|
+
|
|
61281
|
+
|
|
61282
|
+
|
|
61283
|
+
|
|
61284
|
+
|
|
61285
|
+
var code_editor_extends = undefined && undefined.__extends || function () {
|
|
61286
|
+
var _extendStatics = function extendStatics(d, b) {
|
|
61287
|
+
_extendStatics = Object.setPrototypeOf || {
|
|
61288
|
+
__proto__: []
|
|
61289
|
+
} instanceof Array && function (d, b) {
|
|
61290
|
+
d.__proto__ = b;
|
|
61291
|
+
} || function (d, b) {
|
|
61292
|
+
for (var p in b) {
|
|
61293
|
+
if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p];
|
|
61294
|
+
}
|
|
61295
|
+
};
|
|
61296
|
+
|
|
61297
|
+
return _extendStatics(d, b);
|
|
61298
|
+
};
|
|
61299
|
+
|
|
61300
|
+
return function (d, b) {
|
|
61301
|
+
if (typeof b !== "function" && b !== null) throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
61302
|
+
|
|
61303
|
+
_extendStatics(d, b);
|
|
61304
|
+
|
|
61305
|
+
function __() {
|
|
61306
|
+
this.constructor = d;
|
|
61307
|
+
}
|
|
61308
|
+
|
|
61309
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
61310
|
+
};
|
|
61311
|
+
}();
|
|
61312
|
+
|
|
61313
|
+
var code_editor_decorate = undefined && undefined.__decorate || function (decorators, target, key, desc) {
|
|
61314
|
+
var c = arguments.length,
|
|
61315
|
+
r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc,
|
|
61316
|
+
d;
|
|
61317
|
+
if ((typeof Reflect === "undefined" ? "undefined" : _typeof(Reflect)) === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);else for (var i = decorators.length - 1; i >= 0; i--) {
|
|
61318
|
+
if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
61319
|
+
}
|
|
61320
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
61321
|
+
};
|
|
61322
|
+
|
|
61323
|
+
var code_editor_metadata = undefined && undefined.__metadata || function (k, v) {
|
|
61324
|
+
if ((typeof Reflect === "undefined" ? "undefined" : _typeof(Reflect)) === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
61325
|
+
};
|
|
61326
|
+
|
|
61327
|
+
|
|
61328
|
+
|
|
61329
|
+
|
|
61330
|
+
|
|
61331
|
+
|
|
61332
|
+
var code_editor_CodeEditor =
|
|
61333
|
+
/** @class */
|
|
61334
|
+
function (_super) {
|
|
61335
|
+
code_editor_extends(CodeEditor, _super);
|
|
61336
|
+
|
|
61337
|
+
function CodeEditor() {
|
|
61338
|
+
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
61339
|
+
|
|
61340
|
+
_this.option = {
|
|
61341
|
+
showPrintMargin: false,
|
|
61342
|
+
wrap: "free",
|
|
61343
|
+
fontSize: 15 // enableBasicAutocompletion: true,
|
|
61344
|
+
// enableSnippets: true
|
|
61345
|
+
|
|
61346
|
+
};
|
|
61347
|
+
return _this;
|
|
61348
|
+
}
|
|
61349
|
+
|
|
61350
|
+
CodeEditor.prototype.editorInit = function (editor) {
|
|
61351
|
+
// tslint:disable-next-line
|
|
61352
|
+
__webpack_require__("0f6a"); // tslint:disable-next-line
|
|
61353
|
+
|
|
61354
|
+
|
|
61355
|
+
__webpack_require__("5f48"); // tslint:disable-next-line
|
|
61356
|
+
|
|
61357
|
+
|
|
61358
|
+
__webpack_require__("818b"); // tslint:disable-next-line
|
|
61359
|
+
|
|
61360
|
+
|
|
61361
|
+
__webpack_require__("0696"); // tslint:disable-next-line
|
|
61362
|
+
|
|
61363
|
+
|
|
61364
|
+
__webpack_require__("bb36"); // tslint:disable-next-line
|
|
61365
|
+
|
|
61366
|
+
|
|
61367
|
+
__webpack_require__("95b8"); // require("brace/theme/github");
|
|
61368
|
+
// tslint:disable-next-line
|
|
61369
|
+
|
|
61370
|
+
|
|
61371
|
+
__webpack_require__("6a21"); // tslint:disable-next-line
|
|
61372
|
+
|
|
61373
|
+
|
|
61374
|
+
__webpack_require__("b039"); // tslint:disable-next-line
|
|
61375
|
+
|
|
61376
|
+
|
|
61377
|
+
__webpack_require__("2099");
|
|
61378
|
+
|
|
61379
|
+
this.$emit("inited", editor);
|
|
61380
|
+
};
|
|
61381
|
+
|
|
61382
|
+
code_editor_decorate([Object(external_vue_property_decorator_["PropSync"])("value"), code_editor_metadata("design:type", String)], CodeEditor.prototype, "code", void 0);
|
|
61383
|
+
|
|
61384
|
+
code_editor_decorate([Object(flagwind_web_["config"])({
|
|
61385
|
+
default: "json"
|
|
61386
|
+
}), code_editor_metadata("design:type", String)], CodeEditor.prototype, "lang", void 0);
|
|
61387
|
+
|
|
61388
|
+
CodeEditor = code_editor_decorate([Object(flagwind_web_["component"])({
|
|
61389
|
+
template: __webpack_require__("35e3"),
|
|
61390
|
+
components: {
|
|
61391
|
+
editor: vue2_ace_editor_default.a
|
|
61392
|
+
}
|
|
61393
|
+
})], CodeEditor);
|
|
61394
|
+
return CodeEditor;
|
|
61395
|
+
}(flagwind_web_["Component"]);
|
|
61396
|
+
|
|
61397
|
+
/* harmony default export */ var components_code_editor = (code_editor_CodeEditor);
|
|
61398
61398
|
// EXTERNAL MODULE: ./src/views/project-detail/response/index.scss
|
|
61399
61399
|
var response = __webpack_require__("aba0");
|
|
61400
61400
|
|