@alauda/ui 6.0.1-beta.45 → 6.0.1-beta.46
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 +16 -0
- 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/alauda-ui.ngsummary.json +1 -1
- package/esm2015/public-api.ngsummary.json +1 -1
- package/esm2015/table/public-api.js +2 -2
- package/esm2015/table/public-api.ngsummary.json +1 -1
- package/esm2015/table/table-scroll.directive.js +79 -0
- package/esm2015/table/{table-scroll-wrapper.directive.ngsummary.json → table-scroll.directive.ngsummary.json} +1 -1
- package/esm2015/table/{table-scroll-wrapper.scss.ngstyle.js → table-scroll.scss.ngstyle.js} +1 -1
- package/esm2015/table/table.component.js +1 -1
- package/esm2015/table/table.component.ngfactory.js +1 -1
- package/esm2015/table/table.module.js +4 -2
- package/esm2015/table/table.module.ngfactory.js +1 -1
- package/esm2015/table/table.module.ngsummary.json +1 -1
- package/fesm2015/alauda-ui.js +13 -1
- package/fesm2015/alauda-ui.js.map +1 -1
- package/package.json +1 -1
- package/table/public-api.d.ts +1 -1
- package/table/{table-scroll-wrapper.directive.d.ts → table-scroll.directive.d.ts} +2 -0
- package/table/{table-scroll-wrapper.scss.ngstyle.d.ts → table-scroll.scss.ngstyle.d.ts} +0 -0
- package/esm2015/table/table-scroll-wrapper.directive.js +0 -69
package/bundles/alauda-ui.umd.js
CHANGED
|
@@ -1231,6 +1231,19 @@
|
|
|
1231
1231
|
var HAS_TABLE_TOP_SHADOW = 'hasTableTopShadow';
|
|
1232
1232
|
var HAS_TABLE_BOTTOM_SHADOW = 'hasTableBottomShadow';
|
|
1233
1233
|
var HAS_TABLE_VERTICAL_SCROLL = 'hasTableVerticalScroll';
|
|
1234
|
+
var TableScrollWrapperDirective = /** @class */ (function () {
|
|
1235
|
+
function TableScrollWrapperDirective() {
|
|
1236
|
+
}
|
|
1237
|
+
return TableScrollWrapperDirective;
|
|
1238
|
+
}());
|
|
1239
|
+
TableScrollWrapperDirective.decorators = [
|
|
1240
|
+
{ type: i0.Directive, args: [{
|
|
1241
|
+
selector: '[auiTableScrollWrapper]',
|
|
1242
|
+
host: {
|
|
1243
|
+
class: 'aui-table__scroll-wrapper',
|
|
1244
|
+
},
|
|
1245
|
+
},] }
|
|
1246
|
+
];
|
|
1234
1247
|
var TableScrollShadowDirective = /** @class */ (function () {
|
|
1235
1248
|
function TableScrollShadowDirective(el) {
|
|
1236
1249
|
this.el = el;
|
|
@@ -1389,6 +1402,7 @@
|
|
|
1389
1402
|
TableScrollShadowDirective,
|
|
1390
1403
|
TablePlaceholderOutlet,
|
|
1391
1404
|
TablePlaceholderDefDirective,
|
|
1405
|
+
TableScrollWrapperDirective,
|
|
1392
1406
|
],
|
|
1393
1407
|
exports: [
|
|
1394
1408
|
TableComponent,
|
|
@@ -1405,6 +1419,7 @@
|
|
|
1405
1419
|
TableScrollShadowDirective,
|
|
1406
1420
|
TablePlaceholderOutlet,
|
|
1407
1421
|
TablePlaceholderDefDirective,
|
|
1422
|
+
TableScrollWrapperDirective,
|
|
1408
1423
|
],
|
|
1409
1424
|
},] }
|
|
1410
1425
|
];
|
|
@@ -12564,6 +12579,7 @@
|
|
|
12564
12579
|
exports.TableRowComponent = TableRowComponent;
|
|
12565
12580
|
exports.TableRowDefDirective = TableRowDefDirective;
|
|
12566
12581
|
exports.TableScrollShadowDirective = TableScrollShadowDirective;
|
|
12582
|
+
exports.TableScrollWrapperDirective = TableScrollWrapperDirective;
|
|
12567
12583
|
exports.TabsModule = TabsModule;
|
|
12568
12584
|
exports.TagComponent = TagComponent;
|
|
12569
12585
|
exports.TagModule = TagModule;
|