@getflip/swirl-components-angular 0.298.0 → 0.300.0
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/.turbo/turbo-build.log +1 -1
- package/CHANGELOG.md +35 -0
- package/dist/component-library/esm2022/lib/stencil-generated/components.mjs +5 -4
- package/dist/component-library/fesm2022/getflip-swirl-components-angular.mjs +4 -3
- package/dist/component-library/fesm2022/getflip-swirl-components-angular.mjs.map +1 -1
- package/dist/component-library/lib/stencil-generated/components.d.ts +3 -1
- package/package.json +2 -2
- package/projects/component-library/src/lib/stencil-generated/components.ts +9 -3
|
@@ -9069,13 +9069,14 @@ let SwirlTable = class SwirlTable {
|
|
|
9069
9069
|
this.z = z;
|
|
9070
9070
|
c.detach();
|
|
9071
9071
|
this.el = r.nativeElement;
|
|
9072
|
+
proxyOutputs(this, this.el, ['dropRow']);
|
|
9072
9073
|
}
|
|
9073
9074
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SwirlTable, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
9074
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SwirlTable, selector: "swirl-table", inputs: { caption: "caption", emptyStateLabel: "emptyStateLabel", label: "label" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
9075
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SwirlTable, selector: "swirl-table", inputs: { caption: "caption", dragDropHandle: "dragDropHandle", dragDropInstructions: "dragDropInstructions", emptyStateLabel: "emptyStateLabel", enableDragDrop: "enableDragDrop", label: "label" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
9075
9076
|
};
|
|
9076
9077
|
SwirlTable = __decorate([
|
|
9077
9078
|
ProxyCmp({
|
|
9078
|
-
inputs: ['caption', 'emptyStateLabel', 'label'],
|
|
9079
|
+
inputs: ['caption', 'dragDropHandle', 'dragDropInstructions', 'emptyStateLabel', 'enableDragDrop', 'label'],
|
|
9079
9080
|
methods: ['rerender']
|
|
9080
9081
|
})
|
|
9081
9082
|
], SwirlTable);
|
|
@@ -9086,7 +9087,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
9086
9087
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
9087
9088
|
template: '<ng-content></ng-content>',
|
|
9088
9089
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
9089
|
-
inputs: ['caption', 'emptyStateLabel', 'label'],
|
|
9090
|
+
inputs: ['caption', 'dragDropHandle', 'dragDropInstructions', 'emptyStateLabel', 'enableDragDrop', 'label'],
|
|
9090
9091
|
}]
|
|
9091
9092
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
9092
9093
|
let SwirlTableCell = class SwirlTableCell {
|