nuxeo-development-framework 5.2.6 → 5.2.7
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/nuxeo-development-framework.umd.js +48 -0
- package/bundles/nuxeo-development-framework.umd.js.map +1 -1
- package/esm2015/lib/components/ndf-panel/component/ndf-panel.component.js +31 -0
- package/esm2015/lib/components/ndf-panel/index.js +3 -0
- package/esm2015/lib/components/ndf-panel/ndf-panel.module.js +18 -0
- package/esm2015/public-api.js +2 -1
- package/fesm2015/nuxeo-development-framework.js +43 -1
- package/fesm2015/nuxeo-development-framework.js.map +1 -1
- package/lib/components/ndf-panel/component/ndf-panel.component.d.ts +10 -0
- package/lib/components/ndf-panel/index.d.ts +2 -0
- package/lib/components/ndf-panel/ndf-panel.module.d.ts +8 -0
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
|
@@ -42688,6 +42688,52 @@
|
|
|
42688
42688
|
}]
|
|
42689
42689
|
}] });
|
|
42690
42690
|
|
|
42691
|
+
var NdfPanelComponent = /** @class */ (function () {
|
|
42692
|
+
function NdfPanelComponent() {
|
|
42693
|
+
this.maxBodyHeight = 'auto';
|
|
42694
|
+
}
|
|
42695
|
+
return NdfPanelComponent;
|
|
42696
|
+
}());
|
|
42697
|
+
NdfPanelComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: NdfPanelComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
42698
|
+
NdfPanelComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: NdfPanelComponent, selector: "ndf-panel", inputs: { maxBodyHeight: "maxBodyHeight" }, queries: [{ propertyName: "panelHeader", first: true, predicate: ["panelHeader"], descendants: true, read: i0.TemplateRef }, { propertyName: "panelBody", first: true, predicate: ["panelBody"], descendants: true, read: i0.TemplateRef }, { propertyName: "panelFooter", first: true, predicate: ["panelFooter"], descendants: true, read: i0.TemplateRef }], ngImport: i0__namespace, template: "<div class=\"scroll-panel\">\r\n\t<div class=\"header\">\r\n\t\t<ng-container [ngTemplateOutlet]=\"panelHeader\"></ng-container>\r\n\t</div>\r\n\r\n\t<div class=\"body\" [style.maxHeight]=\"maxBodyHeight\">\r\n\t\t<ng-container [ngTemplateOutlet]=\"panelBody\"></ng-container>\r\n\t</div>\r\n\r\n\t<div class=\"footer\">\r\n\t\t<ng-container [ngTemplateOutlet]=\"panelFooter\"></ng-container>\r\n\t</div>\r\n</div>\r\n", styles: [".scroll-panel{display:var(--ndf-panel-display, flex);flex-direction:var(--ndf-panel-flex-direction, column);height:var(--ndf-panel-height, calc(100dvh - 65px));border:1px solid var(--ndf-panel-main-border)}.header{flex:var(--ndf-panel-header-flex, 0 0 auto);color:var(--ndf-panel-color, #3b3b3c);background-color:var(--ndf-panel-bg, #f6f9f5);border-bottom:1px solid var(--ndf-panel-border-color, #e7e7e7)}.footer{border-top:1px solid var(--ndf-panel-border-color, #e7e7e7)}.body{flex:var(--ndf-panel-body-flex, 1 1 auto);overflow-y:var(--ndf-panel-body-overflow-y, auto);min-height:var(--ndf-panel-body-min-height, 0)}\n"], directives: [{ type: i4__namespace$1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }], changeDetection: i0__namespace.ChangeDetectionStrategy.OnPush });
|
|
42699
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: NdfPanelComponent, decorators: [{
|
|
42700
|
+
type: i0.Component,
|
|
42701
|
+
args: [{
|
|
42702
|
+
selector: 'ndf-panel',
|
|
42703
|
+
templateUrl: './ndf-panel.component.html',
|
|
42704
|
+
styleUrls: ['./ndf-panel.component.scss'],
|
|
42705
|
+
changeDetection: i0.ChangeDetectionStrategy.OnPush
|
|
42706
|
+
}]
|
|
42707
|
+
}], propDecorators: { maxBodyHeight: [{
|
|
42708
|
+
type: i0.Input
|
|
42709
|
+
}], panelHeader: [{
|
|
42710
|
+
type: i0.ContentChild,
|
|
42711
|
+
args: ['panelHeader', { read: i0.TemplateRef }]
|
|
42712
|
+
}], panelBody: [{
|
|
42713
|
+
type: i0.ContentChild,
|
|
42714
|
+
args: ['panelBody', { read: i0.TemplateRef }]
|
|
42715
|
+
}], panelFooter: [{
|
|
42716
|
+
type: i0.ContentChild,
|
|
42717
|
+
args: ['panelFooter', { read: i0.TemplateRef }]
|
|
42718
|
+
}] } });
|
|
42719
|
+
|
|
42720
|
+
var NdfPanelModule = /** @class */ (function () {
|
|
42721
|
+
function NdfPanelModule() {
|
|
42722
|
+
}
|
|
42723
|
+
return NdfPanelModule;
|
|
42724
|
+
}());
|
|
42725
|
+
NdfPanelModule.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: NdfPanelModule, deps: [], target: i0__namespace.ɵɵFactoryTarget.NgModule });
|
|
42726
|
+
NdfPanelModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: NdfPanelModule, declarations: [NdfPanelComponent], imports: [i4.CommonModule], exports: [NdfPanelComponent] });
|
|
42727
|
+
NdfPanelModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: NdfPanelModule, imports: [[i4.CommonModule]] });
|
|
42728
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: NdfPanelModule, decorators: [{
|
|
42729
|
+
type: i0.NgModule,
|
|
42730
|
+
args: [{
|
|
42731
|
+
declarations: [NdfPanelComponent],
|
|
42732
|
+
imports: [i4.CommonModule],
|
|
42733
|
+
exports: [NdfPanelComponent]
|
|
42734
|
+
}]
|
|
42735
|
+
}] });
|
|
42736
|
+
|
|
42691
42737
|
/*
|
|
42692
42738
|
* Public API Surface of nuxeo-development-framework
|
|
42693
42739
|
*/
|
|
@@ -42986,6 +43032,8 @@
|
|
|
42986
43032
|
exports.NdfGregorianDatepickerComponent = NdfGregorianDatepickerComponent;
|
|
42987
43033
|
exports.NdfHijriDatepickerComponent = NdfHijriDatepickerComponent;
|
|
42988
43034
|
exports.NdfNuxeoDialog = NdfNuxeoDialog;
|
|
43035
|
+
exports.NdfPanelComponent = NdfPanelComponent;
|
|
43036
|
+
exports.NdfPanelModule = NdfPanelModule;
|
|
42989
43037
|
exports.NdfTableComponent = NdfTableComponent;
|
|
42990
43038
|
exports.NdfTableModule = NdfTableModule;
|
|
42991
43039
|
exports.NdfTableService = NdfTableService;
|