codexly-ui 0.0.86 → 0.0.87
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
CHANGED
|
@@ -7,8 +7,8 @@ import { toSignal, takeUntilDestroyed } from '@angular/core/rxjs-interop';
|
|
|
7
7
|
import { startWith, map, debounceTime, distinctUntilChanged, switchMap, of, catchError } from 'rxjs';
|
|
8
8
|
import * as i1$1 from '@angular/cdk/overlay';
|
|
9
9
|
import { ScrollStrategyOptions, OverlayModule } from '@angular/cdk/overlay';
|
|
10
|
+
import { ScrollingModule, CdkScrollable } from '@angular/cdk/scrolling';
|
|
10
11
|
import { Chart, LineController, BarController, PieController, DoughnutController, RadarController, PolarAreaController, CategoryScale, LinearScale, RadialLinearScale, BarElement, LineElement, PointElement, ArcElement, Filler, Tooltip, Legend } from 'chart.js';
|
|
11
|
-
import { CdkScrollable } from '@angular/cdk/scrolling';
|
|
12
12
|
import { RouterLink, RouterLinkActive } from '@angular/router';
|
|
13
13
|
|
|
14
14
|
// ── Parse 'red' | 'red-500' → { color, shade } ───────────────────────────────
|
|
@@ -5381,7 +5381,7 @@ class ClxModalComponent {
|
|
|
5381
5381
|
</div>
|
|
5382
5382
|
|
|
5383
5383
|
<!-- Body -->
|
|
5384
|
-
<div class="flex-1 min-h-0 overflow-y-auto px-6 py-5">
|
|
5384
|
+
<div cdkScrollable class="flex-1 min-h-0 overflow-y-auto px-6 py-5">
|
|
5385
5385
|
<ng-content />
|
|
5386
5386
|
</div>
|
|
5387
5387
|
|
|
@@ -5412,14 +5412,14 @@ class ClxModalComponent {
|
|
|
5412
5412
|
<ng-content select="[clx-modal-footer]" />
|
|
5413
5413
|
}
|
|
5414
5414
|
</div>
|
|
5415
|
-
`, isInline: true, dependencies: [{ kind: "component", type: ClxButtonComponent, selector: "button[clx-button], a[clx-button]", inputs: ["variant", "color", "size", "shape", "loading", "disabled", "block", "icon", "iconPosition", "iconOnly", "badge", "badgeColor"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
5415
|
+
`, isInline: true, dependencies: [{ kind: "component", type: ClxButtonComponent, selector: "button[clx-button], a[clx-button]", inputs: ["variant", "color", "size", "shape", "loading", "disabled", "block", "icon", "iconPosition", "iconOnly", "badge", "badgeColor"] }, { kind: "ngmodule", type: ScrollingModule }, { kind: "directive", type: i1$1.CdkScrollable, selector: "[cdk-scrollable], [cdkScrollable]" }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
5416
5416
|
}
|
|
5417
5417
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.15", ngImport: i0, type: ClxModalComponent, decorators: [{
|
|
5418
5418
|
type: Component,
|
|
5419
5419
|
args: [{
|
|
5420
5420
|
selector: 'clx-modal',
|
|
5421
5421
|
standalone: true,
|
|
5422
|
-
imports: [ClxButtonComponent],
|
|
5422
|
+
imports: [ClxButtonComponent, ScrollingModule],
|
|
5423
5423
|
template: `
|
|
5424
5424
|
<!-- Header -->
|
|
5425
5425
|
<div class="flex items-center gap-3 px-6 py-4 border-b border-slate-100 shrink-0">
|
|
@@ -5442,7 +5442,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.15", ngImpo
|
|
|
5442
5442
|
</div>
|
|
5443
5443
|
|
|
5444
5444
|
<!-- Body -->
|
|
5445
|
-
<div class="flex-1 min-h-0 overflow-y-auto px-6 py-5">
|
|
5445
|
+
<div cdkScrollable class="flex-1 min-h-0 overflow-y-auto px-6 py-5">
|
|
5446
5446
|
<ng-content />
|
|
5447
5447
|
</div>
|
|
5448
5448
|
|