@ship-ui/core 0.16.13 → 0.16.14
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.
|
@@ -6002,6 +6002,10 @@ class ShipTable {
|
|
|
6002
6002
|
}
|
|
6003
6003
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.0", ngImport: i0, type: ShipTable, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
6004
6004
|
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.0.0", type: ShipTable, isStandalone: true, selector: "sh-table", inputs: { loading: { classPropertyName: "loading", publicName: "loading", isSignal: true, isRequired: false, transformFunction: null }, data: { classPropertyName: "data", publicName: "data", isSignal: true, isRequired: false, transformFunction: null }, sortByColumn: { classPropertyName: "sortByColumn", publicName: "sortByColumn", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { dataChange: "dataChange", sortByColumn: "sortByColumnChange" }, host: { listeners: { "scroll": "onScroll()", "window:resize": "onResize($event)" }, properties: { "class": "class()", "style.grid-template-columns": "columnSizes()", "class.resizing": "resizing()", "class.can-scroll-x": "canScrollX()", "class.can-scroll-y": "canScrollY()", "class.scrolled-x": "scrollXState() >= 0", "class.scrolled-x-end": "scrollXState() === 1", "class.scrolled-y": "scrollYState() >= 0", "class.scrolled-y-end": "scrollYState() === 1" } }, viewQueries: [{ propertyName: "thead", first: true, predicate: ["thead"], descendants: true, isSignal: true }, { propertyName: "tbody", first: true, predicate: ["tbody"], descendants: true, isSignal: true }], ngImport: i0, template: `
|
|
6005
|
+
<div class="actionbar">
|
|
6006
|
+
<ng-content select="[actionbar]" />
|
|
6007
|
+
</div>
|
|
6008
|
+
|
|
6005
6009
|
@if (loading()) {
|
|
6006
6010
|
<sh-progress-bar class="indeterminate primary" />
|
|
6007
6011
|
}
|
|
@@ -6028,6 +6032,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.0", ngImpor
|
|
|
6028
6032
|
selector: 'sh-table',
|
|
6029
6033
|
imports: [ShipProgressBar],
|
|
6030
6034
|
template: `
|
|
6035
|
+
<div class="actionbar">
|
|
6036
|
+
<ng-content select="[actionbar]" />
|
|
6037
|
+
</div>
|
|
6038
|
+
|
|
6031
6039
|
@if (loading()) {
|
|
6032
6040
|
<sh-progress-bar class="indeterminate primary" />
|
|
6033
6041
|
}
|