@alauda/ui 6.0.1-beta.39 → 6.0.1-beta.42

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.
@@ -1235,7 +1235,8 @@
1235
1235
  function TableScrollShadowDirective(el) {
1236
1236
  this.el = el;
1237
1237
  this.destroy$$ = new rxjs.Subject();
1238
- this.class = SCROLL_BEFORE_END_CLASS + " " + SHADOW_CLASS;
1238
+ this.SCROLL_BEFORE_END_CLASS = true;
1239
+ this.SHADOW_CLASS = true;
1239
1240
  }
1240
1241
  Object.defineProperty(TableScrollShadowDirective.prototype, "containerEl", {
1241
1242
  get: function () {
@@ -1290,7 +1291,8 @@
1290
1291
  { type: i0.ElementRef }
1291
1292
  ]; };
1292
1293
  TableScrollShadowDirective.propDecorators = {
1293
- class: [{ type: i0.HostBinding, args: ['class',] }]
1294
+ SCROLL_BEFORE_END_CLASS: [{ type: i0.HostBinding, args: ["class." + SCROLL_BEFORE_END_CLASS,] }],
1295
+ SHADOW_CLASS: [{ type: i0.HostBinding, args: ["class." + SHADOW_CLASS,] }]
1294
1296
  };
1295
1297
 
1296
1298
  var TableComponent = /** @class */ (function (_super) {