fantasy-ngzorro 1.3.19 → 1.3.20

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.
@@ -2163,7 +2163,6 @@
2163
2163
  return;
2164
2164
  }
2165
2165
  if (this.activeDomX !== 0) {
2166
- console.log('执行过程8');
2167
2166
  this.focusDom(this.activeDomX - 1, this.activeDomY);
2168
2167
  }
2169
2168
  break;
@@ -2178,7 +2177,6 @@
2178
2177
  break;
2179
2178
  }
2180
2179
  else {
2181
- console.log('执行过程9');
2182
2180
  this.focusDom(this.activeDomX + 1, this.activeDomY);
2183
2181
  }
2184
2182
  break;
@@ -2191,14 +2189,11 @@
2191
2189
  case 'Enter':
2192
2190
  if (this.activeDom instanceof ngZorroAntd.NzSelectComponent) {
2193
2191
  this.setActiveSelectedComponentOpen(this.activeDom.open);
2194
- console.log('Enter Open', this.activeSelectedComponentOpen);
2195
2192
  if (this.activeSelectedComponentOpen === false) {
2196
- console.log('执行过程10');
2197
2193
  this.focusDom(this.activeDomX, this.activeDomY);
2198
2194
  }
2199
2195
  }
2200
2196
  else if (this.activeDomX === this.collectDomList.length - 1) {
2201
- console.log('执行过程qqq');
2202
2197
  this.addNewLineAndFocus();
2203
2198
  }
2204
2199
  break;
@@ -2217,12 +2212,10 @@
2217
2212
  * @return {?}
2218
2213
  */
2219
2214
  function () {
2220
- console.log('执行过程11');
2221
2215
  _this.focusDom(_this.activeDomX, _this.activeDomY);
2222
2216
  }), 0);
2223
2217
  }
2224
2218
  else {
2225
- console.log('执行过程12');
2226
2219
  _this.focusDom(_this.activeDomX, _this.activeDomY);
2227
2220
  }
2228
2221
  }
@@ -4210,8 +4203,8 @@
4210
4203
  HdLogComponent.decorators = [
4211
4204
  { type: core.Component, args: [{
4212
4205
  selector: 'hd-log',
4213
- template: "<hd-detail-lines [scroll]=\"{x: '1px'}\" [lines]=\"logs\" hdFrontPagination=\"true\">\n <ng-template #detailLineHead>\n <th>\u65F6\u95F4</th>\n <th>\u64CD\u4F5C\u4EBA</th>\n <th>\u4E8B\u4EF6</th>\n <th>\u63CF\u8FF0</th>\n </ng-template>\n <ng-template #detailLineBody let-data let-index=\"index\">\n <td>{{data.createInfo.operateTime}}</td>\n <td>{{data.createInfo.operatorName}}</td>\n <td>{{data.event}}</td>\n <td>{{data.describe}}</td>\n </ng-template>\n</hd-detail-lines>",
4214
- styles: [""]
4206
+ template: "<hd-detail-lines [lines]=\"logs\" hdFrontPagination=\"true\">\n <ng-template #detailLineHead>\n <th class=\"hd-log-time\">\u65F6\u95F4</th>\n <th class=\"hd-log-operate\">\u64CD\u4F5C\u4EBA</th>\n <th class=\"hd-log-event\">\u4E8B\u4EF6</th>\n <th class=\"hd-log-describe\">\u63CF\u8FF0</th>\n </ng-template>\n <ng-template #detailLineBody let-data let-index=\"index\">\n <td class=\"hd-log-time\">{{ data.createInfo.operateTime }}</td>\n <td class=\"hd-log-operate\">{{ data.createInfo.operatorName }}</td>\n <td class=\"hd-log-event\">{{ data.event }}</td>\n <td class=\"hd-log-describe\">{{ data.describe }}</td>\n </ng-template>\n</hd-detail-lines>\n",
4207
+ styles: ["td{white-space:wrap!important}.hd-log-time{width:150px}.hd-log-operate{width:100px;max-width:200px}.hd-log-event{width:80px;max-width:150px}"]
4215
4208
  }] }
4216
4209
  ];
4217
4210
  /** @nocollapse */
@@ -4248,7 +4241,7 @@
4248
4241
  nzContent: HdLogComponent,
4249
4242
  nzComponentParams: { logs: logs },
4250
4243
  nzFooter: null,
4251
- nzWidth: 800
4244
+ nzWidth: 1000
4252
4245
  });
4253
4246
  };
4254
4247
  HdLogService.decorators = [