@elderbyte/ngx-starter 19.1.0-beta.2 → 19.1.0-beta.3
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/fesm2022/elderbyte-ngx-starter.mjs +10 -31
- package/fesm2022/elderbyte-ngx-starter.mjs.map +1 -1
- package/lib/components/layout/basic-pane-layout/basic-pane-layout.component.d.ts +1 -6
- package/package.json +1 -1
- package/src/lib/components/data-view/table/elder-table/elder-table.component.scss +1 -1
- package/theming/style-tweaks/_elder-form.scss +4 -2
- package/theming/style-tweaks/_elder-style-fixes.scss +1 -2
- package/theming/system/_elder-design-tokens.scss +1 -1
- package/theming/utility-classes/_elder-common-helpers.scss +3 -0
- package/theming/utility-classes/_elder-flex-layout.scss +106 -0
|
@@ -19881,45 +19881,24 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
19881
19881
|
class ElderBasicPaneLayoutComponent {
|
|
19882
19882
|
constructor() {
|
|
19883
19883
|
this.class = '';
|
|
19884
|
-
this.hasChild = false;
|
|
19885
|
-
}
|
|
19886
|
-
ngAfterContentInit() {
|
|
19887
|
-
this.hasChild = this.children.length > 0;
|
|
19888
19884
|
}
|
|
19889
19885
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: ElderBasicPaneLayoutComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
19890
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.0.3", type: ElderBasicPaneLayoutComponent, isStandalone: true, selector: "elder-basic-pane-layout", host: { properties: { "class": "this.class" }, classAttribute: "elder-basic-pane-layout" },
|
|
19891
|
-
<!--
|
|
19892
|
-
<ng-content
|
|
19893
|
-
|
|
19894
|
-
<!-- Wrap any other content in a child component -->
|
|
19895
|
-
<ng-container *ngIf="!hasChild">
|
|
19896
|
-
<elder-pane>
|
|
19897
|
-
<ng-content></ng-content>
|
|
19898
|
-
<!-- All other content -->
|
|
19899
|
-
</elder-pane>
|
|
19900
|
-
</ng-container>`, isInline: true, styles: [":host{display:flex;flex-flow:row nowrap;justify-content:space-around;padding:var(--elder-pane-padding);gap:var(--elder-pane-gap);align-items:stretch}\n"], dependencies: [{ kind: "component", type: ElderPaneComponent, selector: "elder-pane" }, { kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
19886
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.0.3", type: ElderBasicPaneLayoutComponent, isStandalone: true, selector: "elder-basic-pane-layout", host: { properties: { "class": "this.class" }, classAttribute: "elder-basic-pane-layout" }, ngImport: i0, template: `
|
|
19887
|
+
<!-- inline-html -->
|
|
19888
|
+
<ng-content></ng-content>
|
|
19889
|
+
`, isInline: true, styles: [":host{display:flex;flex-flow:row nowrap;justify-content:flex-start;padding:var(--elder-pane-padding);gap:var(--elder-pane-gap);align-items:stretch}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
19901
19890
|
}
|
|
19902
19891
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: ElderBasicPaneLayoutComponent, decorators: [{
|
|
19903
19892
|
type: Component,
|
|
19904
19893
|
args: [{ changeDetection: ChangeDetectionStrategy.OnPush, imports: [ElderPaneComponent, CommonModule], selector: 'elder-basic-pane-layout', host: {
|
|
19905
19894
|
class: 'elder-basic-pane-layout',
|
|
19906
|
-
}, template: `
|
|
19907
|
-
<!--
|
|
19908
|
-
<ng-content
|
|
19909
|
-
|
|
19910
|
-
<!-- Wrap any other content in a child component -->
|
|
19911
|
-
<ng-container *ngIf="!hasChild">
|
|
19912
|
-
<elder-pane>
|
|
19913
|
-
<ng-content></ng-content>
|
|
19914
|
-
<!-- All other content -->
|
|
19915
|
-
</elder-pane>
|
|
19916
|
-
</ng-container>`, styles: [":host{display:flex;flex-flow:row nowrap;justify-content:space-around;padding:var(--elder-pane-padding);gap:var(--elder-pane-gap);align-items:stretch}\n"] }]
|
|
19895
|
+
}, template: `
|
|
19896
|
+
<!-- inline-html -->
|
|
19897
|
+
<ng-content></ng-content>
|
|
19898
|
+
`, styles: [":host{display:flex;flex-flow:row nowrap;justify-content:flex-start;padding:var(--elder-pane-padding);gap:var(--elder-pane-gap);align-items:stretch}\n"] }]
|
|
19917
19899
|
}], propDecorators: { class: [{
|
|
19918
19900
|
type: HostBinding,
|
|
19919
19901
|
args: ['class']
|
|
19920
|
-
}], children: [{
|
|
19921
|
-
type: ContentChildren,
|
|
19922
|
-
args: [ElderPaneComponent]
|
|
19923
19902
|
}] } });
|
|
19924
19903
|
|
|
19925
19904
|
class ElderMasterDetailComponent {
|
|
@@ -20014,11 +19993,11 @@ class ElderMasterDetailComponent {
|
|
|
20014
19993
|
}
|
|
20015
19994
|
}
|
|
20016
19995
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: ElderMasterDetailComponent, deps: [{ token: ElderMasterDetailService }, { token: i1$7.MatDialog }, { token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
20017
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.0.3", type: ElderMasterDetailComponent, isStandalone: true, selector: "elder-master-detail", inputs: { mode: "mode" }, providers: [ElderMasterDetailProvider.ExistingOrNewMasterDetailService], queries: [{ propertyName: "master", first: true, predicate: ElderMasterDirective, descendants: true, read: TemplateRef }, { propertyName: "detail", first: true, predicate: ElderDetailDirective, descendants: true, read: TemplateRef }], ngImport: i0, template: "<div class=\"layout-col full\"
|
|
19996
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.0.3", type: ElderMasterDetailComponent, isStandalone: true, selector: "elder-master-detail", inputs: { mode: "mode" }, providers: [ElderMasterDetailProvider.ExistingOrNewMasterDetailService], queries: [{ propertyName: "master", first: true, predicate: ElderMasterDirective, descendants: true, read: TemplateRef }, { propertyName: "detail", first: true, predicate: ElderDetailDirective, descendants: true, read: TemplateRef }], ngImport: i0, template: "<div class=\"layout-col full\">\n <elder-basic-pane-layout class=\"flex p-0\" *ngIf=\"mode$ | async as mode\">\n <ng-container *ngTemplateOutlet=\"master\"></ng-container>\n\n @if (mode === 'EMBEDDED') {\n <ng-container *ngIf=\"currentActive$ | async as currentActive\">\n <ng-container\n *ngTemplateOutlet=\"detail; context: { $implicit: currentActive }\"\n ></ng-container>\n </ng-container>\n }\n </elder-basic-pane-layout>\n</div>\n", styles: [""], dependencies: [{ kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "pipe", type: AsyncPipe, name: "async" }, { kind: "component", type: ElderBasicPaneLayoutComponent, selector: "elder-basic-pane-layout" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
20018
19997
|
}
|
|
20019
19998
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: ElderMasterDetailComponent, decorators: [{
|
|
20020
19999
|
type: Component,
|
|
20021
|
-
args: [{ selector: 'elder-master-detail', changeDetection: ChangeDetectionStrategy.OnPush, providers: [ElderMasterDetailProvider.ExistingOrNewMasterDetailService], imports: [NgIf, NgTemplateOutlet, AsyncPipe, ElderBasicPaneLayoutComponent, ElderPaneComponent], template: "<div class=\"layout-col full\"
|
|
20000
|
+
args: [{ selector: 'elder-master-detail', changeDetection: ChangeDetectionStrategy.OnPush, providers: [ElderMasterDetailProvider.ExistingOrNewMasterDetailService], imports: [NgIf, NgTemplateOutlet, AsyncPipe, ElderBasicPaneLayoutComponent, ElderPaneComponent], template: "<div class=\"layout-col full\">\n <elder-basic-pane-layout class=\"flex p-0\" *ngIf=\"mode$ | async as mode\">\n <ng-container *ngTemplateOutlet=\"master\"></ng-container>\n\n @if (mode === 'EMBEDDED') {\n <ng-container *ngIf=\"currentActive$ | async as currentActive\">\n <ng-container\n *ngTemplateOutlet=\"detail; context: { $implicit: currentActive }\"\n ></ng-container>\n </ng-container>\n }\n </elder-basic-pane-layout>\n</div>\n" }]
|
|
20022
20001
|
}], ctorParameters: () => [{ type: ElderMasterDetailService }, { type: i1$7.MatDialog }, { type: i0.ViewContainerRef }], propDecorators: { master: [{
|
|
20023
20002
|
type: ContentChild,
|
|
20024
20003
|
args: [ElderMasterDirective, { read: TemplateRef, static: false }]
|