@sd-angular/core 1.3.200 → 1.3.201
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/sd-angular-core-table.umd.js +60 -60
- package/bundles/sd-angular-core-table.umd.js.map +1 -1
- package/bundles/sd-angular-core-table.umd.min.js +16 -1
- package/bundles/sd-angular-core-table.umd.min.js.map +1 -1
- package/esm2015/table/sd-angular-core-table.js +15 -17
- package/esm2015/table/src/public-api.js +4 -1
- package/fesm2015/sd-angular-core-table.js +31 -31
- package/fesm2015/sd-angular-core-table.js.map +1 -1
- package/package.json +1 -1
- package/{sd-angular-core-1.3.200.tgz → sd-angular-core-1.3.201.tgz} +0 -0
- package/table/sd-angular-core-table.d.ts +14 -16
- package/table/sd-angular-core-table.metadata.json +1 -1
- package/table/src/public-api.d.ts +2 -0
|
@@ -30,6 +30,50 @@
|
|
|
30
30
|
var hash__namespace = /*#__PURE__*/_interopNamespace(hash);
|
|
31
31
|
var hash__default = /*#__PURE__*/_interopDefaultLegacy(hash);
|
|
32
32
|
|
|
33
|
+
var SdTabelCellDefDirective = /** @class */ (function () {
|
|
34
|
+
function SdTabelCellDefDirective(templateRef) {
|
|
35
|
+
this.templateRef = templateRef;
|
|
36
|
+
}
|
|
37
|
+
return SdTabelCellDefDirective;
|
|
38
|
+
}());
|
|
39
|
+
SdTabelCellDefDirective.decorators = [
|
|
40
|
+
{ type: core.Directive, args: [{
|
|
41
|
+
selector: '[sdTableCellDef]'
|
|
42
|
+
},] }
|
|
43
|
+
];
|
|
44
|
+
SdTabelCellDefDirective.ctorParameters = function () { return [
|
|
45
|
+
{ type: core.TemplateRef }
|
|
46
|
+
]; };
|
|
47
|
+
SdTabelCellDefDirective.propDecorators = {
|
|
48
|
+
sdTableCellDef: [{ type: core.Input }]
|
|
49
|
+
};
|
|
50
|
+
|
|
51
|
+
var SdTableFilterDefDirective = /** @class */ (function () {
|
|
52
|
+
function SdTableFilterDefDirective(templateRef) {
|
|
53
|
+
this.templateRef = templateRef;
|
|
54
|
+
}
|
|
55
|
+
Object.defineProperty(SdTableFilterDefDirective.prototype, "showing", {
|
|
56
|
+
set: function (val) {
|
|
57
|
+
this.defaultShowing = (val === '') || val;
|
|
58
|
+
},
|
|
59
|
+
enumerable: false,
|
|
60
|
+
configurable: true
|
|
61
|
+
});
|
|
62
|
+
return SdTableFilterDefDirective;
|
|
63
|
+
}());
|
|
64
|
+
SdTableFilterDefDirective.decorators = [
|
|
65
|
+
{ type: core.Directive, args: [{
|
|
66
|
+
selector: '[sdTableFilterDef]'
|
|
67
|
+
},] }
|
|
68
|
+
];
|
|
69
|
+
SdTableFilterDefDirective.ctorParameters = function () { return [
|
|
70
|
+
{ type: core.TemplateRef }
|
|
71
|
+
]; };
|
|
72
|
+
SdTableFilterDefDirective.propDecorators = {
|
|
73
|
+
sdTableFilterDef: [{ type: core.Input }],
|
|
74
|
+
showing: [{ type: core.Input, args: ['defaultShowing',] }]
|
|
75
|
+
};
|
|
76
|
+
|
|
33
77
|
/*! *****************************************************************************
|
|
34
78
|
Copyright (c) Microsoft Corporation.
|
|
35
79
|
|
|
@@ -356,24 +400,6 @@
|
|
|
356
400
|
};
|
|
357
401
|
var TABLE_CONFIG = new core.InjectionToken('sd-table.configuration');
|
|
358
402
|
|
|
359
|
-
var SdTabelCellDefDirective = /** @class */ (function () {
|
|
360
|
-
function SdTabelCellDefDirective(templateRef) {
|
|
361
|
-
this.templateRef = templateRef;
|
|
362
|
-
}
|
|
363
|
-
return SdTabelCellDefDirective;
|
|
364
|
-
}());
|
|
365
|
-
SdTabelCellDefDirective.decorators = [
|
|
366
|
-
{ type: core.Directive, args: [{
|
|
367
|
-
selector: '[sdTableCellDef]'
|
|
368
|
-
},] }
|
|
369
|
-
];
|
|
370
|
-
SdTabelCellDefDirective.ctorParameters = function () { return [
|
|
371
|
-
{ type: core.TemplateRef }
|
|
372
|
-
]; };
|
|
373
|
-
SdTabelCellDefDirective.propDecorators = {
|
|
374
|
-
sdTableCellDef: [{ type: core.Input }]
|
|
375
|
-
};
|
|
376
|
-
|
|
377
403
|
var _filterRegister;
|
|
378
404
|
var SdPopupFilter = /** @class */ (function () {
|
|
379
405
|
function SdPopupFilter(cdRef) {
|
|
@@ -564,32 +590,6 @@
|
|
|
564
590
|
_filterRegister: [{ type: core.Input, args: ['filterRegister',] }]
|
|
565
591
|
};
|
|
566
592
|
|
|
567
|
-
var SdTableFilterDefDirective = /** @class */ (function () {
|
|
568
|
-
function SdTableFilterDefDirective(templateRef) {
|
|
569
|
-
this.templateRef = templateRef;
|
|
570
|
-
}
|
|
571
|
-
Object.defineProperty(SdTableFilterDefDirective.prototype, "showing", {
|
|
572
|
-
set: function (val) {
|
|
573
|
-
this.defaultShowing = (val === '') || val;
|
|
574
|
-
},
|
|
575
|
-
enumerable: false,
|
|
576
|
-
configurable: true
|
|
577
|
-
});
|
|
578
|
-
return SdTableFilterDefDirective;
|
|
579
|
-
}());
|
|
580
|
-
SdTableFilterDefDirective.decorators = [
|
|
581
|
-
{ type: core.Directive, args: [{
|
|
582
|
-
selector: '[sdTableFilterDef]'
|
|
583
|
-
},] }
|
|
584
|
-
];
|
|
585
|
-
SdTableFilterDefDirective.ctorParameters = function () { return [
|
|
586
|
-
{ type: core.TemplateRef }
|
|
587
|
-
]; };
|
|
588
|
-
SdTableFilterDefDirective.propDecorators = {
|
|
589
|
-
sdTableFilterDef: [{ type: core.Input }],
|
|
590
|
-
showing: [{ type: core.Input, args: ['defaultShowing',] }]
|
|
591
|
-
};
|
|
592
|
-
|
|
593
593
|
var SdMaterialSubInformationDefDirective = /** @class */ (function () {
|
|
594
594
|
function SdMaterialSubInformationDefDirective(templateRef) {
|
|
595
595
|
this.templateRef = templateRef;
|
|
@@ -3704,14 +3704,14 @@
|
|
|
3704
3704
|
exports.DEFAULT_TABLE_CONFIG = DEFAULT_TABLE_CONFIG;
|
|
3705
3705
|
exports.MatPaginatorIntlCro = MatPaginatorIntlCro;
|
|
3706
3706
|
exports.SdFilterOperators = SdFilterOperators;
|
|
3707
|
+
exports.SdTabelCellDefDirective = SdTabelCellDefDirective;
|
|
3707
3708
|
exports.SdTable = SdTable;
|
|
3709
|
+
exports.SdTableFilterDefDirective = SdTableFilterDefDirective;
|
|
3708
3710
|
exports.SdTableModule = SdTableModule;
|
|
3709
3711
|
exports.SdTableQuickFilter = SdTableQuickFilter;
|
|
3710
3712
|
exports.TABLE_CONFIG = TABLE_CONFIG;
|
|
3711
3713
|
exports.ɵa = SdTableQuickAction;
|
|
3712
3714
|
exports.ɵb = SdDesktopCell;
|
|
3713
|
-
exports.ɵba = SdSelectionVisibleSelectAllPipe;
|
|
3714
|
-
exports.ɵbb = SdGroupPipe;
|
|
3715
3715
|
exports.ɵc = SdDesktopCellView;
|
|
3716
3716
|
exports.ɵd = SdDesktopCommand;
|
|
3717
3717
|
exports.ɵe = SdColumnInlineFilter;
|
|
@@ -3721,20 +3721,20 @@
|
|
|
3721
3721
|
exports.ɵj = SdTableFilter;
|
|
3722
3722
|
exports.ɵk = SdPopupFilter;
|
|
3723
3723
|
exports.ɵl = SdMaterialSubInformationDefDirective;
|
|
3724
|
-
exports.ɵm =
|
|
3725
|
-
exports.ɵn =
|
|
3726
|
-
exports.ɵo =
|
|
3727
|
-
exports.ɵp =
|
|
3728
|
-
exports.ɵq =
|
|
3729
|
-
exports.ɵr =
|
|
3730
|
-
exports.ɵs =
|
|
3731
|
-
exports.ɵt =
|
|
3732
|
-
exports.ɵu =
|
|
3733
|
-
exports.ɵv =
|
|
3734
|
-
exports.ɵw =
|
|
3735
|
-
exports.ɵx =
|
|
3736
|
-
exports.ɵy =
|
|
3737
|
-
exports.ɵz =
|
|
3724
|
+
exports.ɵm = SdMaterialFooterDefDirective;
|
|
3725
|
+
exports.ɵn = SdTableFilterService;
|
|
3726
|
+
exports.ɵo = SdCommandFilterPipe;
|
|
3727
|
+
exports.ɵp = SdCommandDisablePipe;
|
|
3728
|
+
exports.ɵq = SdCommandIconPipe;
|
|
3729
|
+
exports.ɵr = SdCommandTitlePipe;
|
|
3730
|
+
exports.ɵs = SdColumnTooltipPipe;
|
|
3731
|
+
exports.ɵt = SdFilterColumnPipe;
|
|
3732
|
+
exports.ɵu = SdFilterExternalPipe;
|
|
3733
|
+
exports.ɵv = SdSelectionActionFilterPipe;
|
|
3734
|
+
exports.ɵw = SdSelectionVisiblePipe;
|
|
3735
|
+
exports.ɵx = SdSelectionDisablePipe;
|
|
3736
|
+
exports.ɵy = SdSelectionVisibleSelectAllPipe;
|
|
3737
|
+
exports.ɵz = SdGroupPipe;
|
|
3738
3738
|
|
|
3739
3739
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
3740
3740
|
|