@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.
- package/alauda-ui.metadata.json +1 -1
- package/bundles/alauda-ui.umd.js +4 -2
- package/bundles/alauda-ui.umd.js.map +1 -1
- package/bundles/alauda-ui.umd.min.js +1 -1
- package/bundles/alauda-ui.umd.min.js.map +1 -1
- package/esm2015/table/table-scroll-wrapper.directive.js +5 -3
- package/esm2015/table/table-scroll-wrapper.directive.ngsummary.json +1 -1
- package/fesm2015/alauda-ui.js +4 -2
- package/fesm2015/alauda-ui.js.map +1 -1
- package/package.json +1 -1
- package/table/table-scroll-wrapper.directive.d.ts +2 -1
package/bundles/alauda-ui.umd.js
CHANGED
|
@@ -1235,7 +1235,8 @@
|
|
|
1235
1235
|
function TableScrollShadowDirective(el) {
|
|
1236
1236
|
this.el = el;
|
|
1237
1237
|
this.destroy$$ = new rxjs.Subject();
|
|
1238
|
-
this.
|
|
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
|
-
|
|
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) {
|