codexly-ui 0.0.23 → 0.0.25
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/codexly-ui.mjs +6 -6
- package/fesm2022/codexly-ui.mjs.map +1 -1
- package/index.d.ts +1 -1
- package/package.json +1 -1
package/fesm2022/codexly-ui.mjs
CHANGED
|
@@ -10984,10 +10984,10 @@ class ClxAppLayoutComponent {
|
|
|
10984
10984
|
|
|
10985
10985
|
<!-- Brand slot -->
|
|
10986
10986
|
<div class="border-b border-slate-700/50 shrink-0 overflow-hidden">
|
|
10987
|
-
<ng-content select="
|
|
10987
|
+
<ng-content select="clx-brand"></ng-content>
|
|
10988
10988
|
</div>
|
|
10989
10989
|
|
|
10990
|
-
<div class="flex-
|
|
10990
|
+
<div class="flex flex-col flex-1 min-h-0">
|
|
10991
10991
|
<ng-content select="[clx-sidebar]"></ng-content>
|
|
10992
10992
|
</div>
|
|
10993
10993
|
</aside>
|
|
@@ -11046,10 +11046,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImpo
|
|
|
11046
11046
|
|
|
11047
11047
|
<!-- Brand slot -->
|
|
11048
11048
|
<div class="border-b border-slate-700/50 shrink-0 overflow-hidden">
|
|
11049
|
-
<ng-content select="
|
|
11049
|
+
<ng-content select="clx-brand"></ng-content>
|
|
11050
11050
|
</div>
|
|
11051
11051
|
|
|
11052
|
-
<div class="flex-
|
|
11052
|
+
<div class="flex flex-col flex-1 min-h-0">
|
|
11053
11053
|
<ng-content select="[clx-sidebar]"></ng-content>
|
|
11054
11054
|
</div>
|
|
11055
11055
|
</aside>
|
|
@@ -11095,7 +11095,7 @@ class ClxBrandComponent {
|
|
|
11095
11095
|
collapsed = input(false, ...(ngDevMode ? [{ debugName: "collapsed" }] : []));
|
|
11096
11096
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ClxBrandComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
11097
11097
|
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.21", type: ClxBrandComponent, isStandalone: true, selector: "clx-brand", inputs: { logo: { classPropertyName: "logo", publicName: "logo", isSignal: true, isRequired: true, transformFunction: null }, name: { classPropertyName: "name", publicName: "name", isSignal: true, isRequired: true, transformFunction: null }, description: { classPropertyName: "description", publicName: "description", isSignal: true, isRequired: false, transformFunction: null }, collapsed: { classPropertyName: "collapsed", publicName: "collapsed", isSignal: true, isRequired: false, transformFunction: null } }, host: { classAttribute: "block" }, ngImport: i0, template: `
|
|
11098
|
-
<div class="flex items-center gap-3 px-4 py-4">
|
|
11098
|
+
<div [class]="collapsed() ? 'flex items-center justify-center py-4' : 'flex items-center gap-3 px-4 py-4'">
|
|
11099
11099
|
<img [src]="logo()" [alt]="name()" class="h-8 w-8 shrink-0 object-contain" />
|
|
11100
11100
|
@if (!collapsed()) {
|
|
11101
11101
|
<div class="min-w-0 overflow-hidden">
|
|
@@ -11114,7 +11114,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImpo
|
|
|
11114
11114
|
selector: 'clx-brand',
|
|
11115
11115
|
standalone: true,
|
|
11116
11116
|
template: `
|
|
11117
|
-
<div class="flex items-center gap-3 px-4 py-4">
|
|
11117
|
+
<div [class]="collapsed() ? 'flex items-center justify-center py-4' : 'flex items-center gap-3 px-4 py-4'">
|
|
11118
11118
|
<img [src]="logo()" [alt]="name()" class="h-8 w-8 shrink-0 object-contain" />
|
|
11119
11119
|
@if (!collapsed()) {
|
|
11120
11120
|
<div class="min-w-0 overflow-hidden">
|