fantasy-ngzorro 1.0.32 → 1.0.34
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/bundles/fantasy-ngzorro.umd.js +48 -47
- package/bundles/fantasy-ngzorro.umd.js.map +1 -1
- package/bundles/fantasy-ngzorro.umd.min.js +1 -1
- package/bundles/fantasy-ngzorro.umd.min.js.map +1 -1
- package/esm2015/fantasy-ngzorro.js +2 -3
- package/esm2015/hd-log/hd-log.module.js +4 -2
- package/esm2015/hd-log/hd-log.service.js +2 -2
- package/esm2015/index.js +2 -2
- package/esm2015/public-api.js +2 -1
- package/esm5/fantasy-ngzorro.js +2 -3
- package/esm5/hd-log/hd-log.module.js +4 -2
- package/esm5/hd-log/hd-log.service.js +2 -2
- package/esm5/index.js +2 -2
- package/esm5/public-api.js +2 -1
- package/fantasy-ngzorro.d.ts +0 -1
- package/fantasy-ngzorro.metadata.json +1 -1
- package/fesm2015/fantasy-ngzorro.js +46 -45
- package/fesm2015/fantasy-ngzorro.js.map +1 -1
- package/fesm5/fantasy-ngzorro.js +48 -47
- package/fesm5/fantasy-ngzorro.js.map +1 -1
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
|
@@ -2834,6 +2834,51 @@
|
|
|
2834
2834
|
HdLogComponent.prototype.logs;
|
|
2835
2835
|
}
|
|
2836
2836
|
|
|
2837
|
+
/**
|
|
2838
|
+
* @fileoverview added by tsickle
|
|
2839
|
+
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
2840
|
+
*/
|
|
2841
|
+
var HdLogService = /** @class */ (function () {
|
|
2842
|
+
function HdLogService(modalService) {
|
|
2843
|
+
this.modalService = modalService;
|
|
2844
|
+
}
|
|
2845
|
+
/**
|
|
2846
|
+
* @param {?} logs
|
|
2847
|
+
* @return {?}
|
|
2848
|
+
*/
|
|
2849
|
+
HdLogService.prototype.showLogs = /**
|
|
2850
|
+
* @param {?} logs
|
|
2851
|
+
* @return {?}
|
|
2852
|
+
*/
|
|
2853
|
+
function (logs) {
|
|
2854
|
+
this.modalService.create({
|
|
2855
|
+
nzTitle: '操作日志',
|
|
2856
|
+
nzContent: HdLogComponent,
|
|
2857
|
+
nzComponentParams: { logs: logs },
|
|
2858
|
+
nzFooter: null,
|
|
2859
|
+
nzWidth: 800
|
|
2860
|
+
});
|
|
2861
|
+
};
|
|
2862
|
+
HdLogService.decorators = [
|
|
2863
|
+
{ type: core.Injectable, args: [{
|
|
2864
|
+
providedIn: 'root',
|
|
2865
|
+
},] }
|
|
2866
|
+
];
|
|
2867
|
+
/** @nocollapse */
|
|
2868
|
+
HdLogService.ctorParameters = function () { return [
|
|
2869
|
+
{ type: ngZorroAntd.NzModalService }
|
|
2870
|
+
]; };
|
|
2871
|
+
/** @nocollapse */ HdLogService.ngInjectableDef = core.ɵɵdefineInjectable({ factory: function HdLogService_Factory() { return new HdLogService(core.ɵɵinject(modal.NzModalService)); }, token: HdLogService, providedIn: "root" });
|
|
2872
|
+
return HdLogService;
|
|
2873
|
+
}());
|
|
2874
|
+
if (false) {
|
|
2875
|
+
/**
|
|
2876
|
+
* @type {?}
|
|
2877
|
+
* @private
|
|
2878
|
+
*/
|
|
2879
|
+
HdLogService.prototype.modalService;
|
|
2880
|
+
}
|
|
2881
|
+
|
|
2837
2882
|
/**
|
|
2838
2883
|
* @fileoverview added by tsickle
|
|
2839
2884
|
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
@@ -2850,7 +2895,8 @@
|
|
|
2850
2895
|
],
|
|
2851
2896
|
entryComponents: [HdLogComponent],
|
|
2852
2897
|
declarations: [HdLogComponent],
|
|
2853
|
-
exports: [HdLogComponent]
|
|
2898
|
+
exports: [HdLogComponent],
|
|
2899
|
+
providers: [HdLogService]
|
|
2854
2900
|
},] }
|
|
2855
2901
|
];
|
|
2856
2902
|
return HdLogModule;
|
|
@@ -3298,51 +3344,6 @@
|
|
|
3298
3344
|
return HdFormLinesService;
|
|
3299
3345
|
}());
|
|
3300
3346
|
|
|
3301
|
-
/**
|
|
3302
|
-
* @fileoverview added by tsickle
|
|
3303
|
-
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
3304
|
-
*/
|
|
3305
|
-
var HdLogService = /** @class */ (function () {
|
|
3306
|
-
function HdLogService(modalService) {
|
|
3307
|
-
this.modalService = modalService;
|
|
3308
|
-
}
|
|
3309
|
-
/**
|
|
3310
|
-
* @param {?} logs
|
|
3311
|
-
* @return {?}
|
|
3312
|
-
*/
|
|
3313
|
-
HdLogService.prototype.showLogs = /**
|
|
3314
|
-
* @param {?} logs
|
|
3315
|
-
* @return {?}
|
|
3316
|
-
*/
|
|
3317
|
-
function (logs) {
|
|
3318
|
-
this.modalService.create({
|
|
3319
|
-
nzTitle: '操作日志',
|
|
3320
|
-
nzContent: HdLogComponent,
|
|
3321
|
-
nzComponentParams: { logs: logs },
|
|
3322
|
-
nzFooter: null,
|
|
3323
|
-
nzWidth: 800
|
|
3324
|
-
});
|
|
3325
|
-
};
|
|
3326
|
-
HdLogService.decorators = [
|
|
3327
|
-
{ type: core.Injectable, args: [{
|
|
3328
|
-
providedIn: 'root'
|
|
3329
|
-
},] }
|
|
3330
|
-
];
|
|
3331
|
-
/** @nocollapse */
|
|
3332
|
-
HdLogService.ctorParameters = function () { return [
|
|
3333
|
-
{ type: ngZorroAntd.NzModalService }
|
|
3334
|
-
]; };
|
|
3335
|
-
/** @nocollapse */ HdLogService.ngInjectableDef = core.ɵɵdefineInjectable({ factory: function HdLogService_Factory() { return new HdLogService(core.ɵɵinject(modal.NzModalService)); }, token: HdLogService, providedIn: "root" });
|
|
3336
|
-
return HdLogService;
|
|
3337
|
-
}());
|
|
3338
|
-
if (false) {
|
|
3339
|
-
/**
|
|
3340
|
-
* @type {?}
|
|
3341
|
-
* @private
|
|
3342
|
-
*/
|
|
3343
|
-
HdLogService.prototype.modalService;
|
|
3344
|
-
}
|
|
3345
|
-
|
|
3346
3347
|
/**
|
|
3347
3348
|
* @fileoverview added by tsickle
|
|
3348
3349
|
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
@@ -3487,6 +3488,7 @@
|
|
|
3487
3488
|
exports.HdFilterService = HdFilterService;
|
|
3488
3489
|
exports.HdFormLinesService = HdFormLinesService;
|
|
3489
3490
|
exports.HdFormService = HdFormService;
|
|
3491
|
+
exports.HdLogComponent = HdLogComponent;
|
|
3490
3492
|
exports.HdLogService = HdLogService;
|
|
3491
3493
|
exports.HdOption = HdOption;
|
|
3492
3494
|
exports.InputNumber = InputNumber;
|
|
@@ -3499,7 +3501,6 @@
|
|
|
3499
3501
|
exports.ɵa = HdComponentModule;
|
|
3500
3502
|
exports.ɵb = HdButtonModule;
|
|
3501
3503
|
exports.ɵba = HdLogModule;
|
|
3502
|
-
exports.ɵbb = HdLogComponent;
|
|
3503
3504
|
exports.ɵc = HdButtonComponent;
|
|
3504
3505
|
exports.ɵd = HdButtonGroupModule;
|
|
3505
3506
|
exports.ɵe = HdButtonGroupComponent;
|