codexly-ui 0.0.86 → 0.0.88

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.
@@ -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
 
@@ -7918,7 +7918,7 @@ class ClxDatepickerComponent {
7918
7918
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.15", ngImport: i0, type: ClxDatepickerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
7919
7919
  static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.15", type: ClxDatepickerComponent, isStandalone: true, selector: "clx-datepicker", inputs: { label: { classPropertyName: "label", publicName: "label", isSignal: true, isRequired: false, transformFunction: null }, placeholder: { classPropertyName: "placeholder", publicName: "placeholder", isSignal: true, isRequired: false, transformFunction: null }, color: { classPropertyName: "color", publicName: "color", isSignal: true, isRequired: false, transformFunction: null }, size: { classPropertyName: "size", publicName: "size", isSignal: true, isRequired: false, transformFunction: null }, status: { classPropertyName: "status", publicName: "status", isSignal: true, isRequired: false, transformFunction: null }, statusMessage: { classPropertyName: "statusMessage", publicName: "statusMessage", isSignal: true, isRequired: false, transformFunction: null }, hint: { classPropertyName: "hint", publicName: "hint", isSignal: true, isRequired: false, transformFunction: null }, minDate: { classPropertyName: "minDate", publicName: "minDate", isSignal: true, isRequired: false, transformFunction: null }, maxDate: { classPropertyName: "maxDate", publicName: "maxDate", isSignal: true, isRequired: false, transformFunction: null }, value: { classPropertyName: "value", publicName: "value", isSignal: true, isRequired: false, transformFunction: null }, disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null } }, host: { listeners: { "keydown.escape": "onEscape()" }, classAttribute: "flex flex-col gap-1.5" }, providers: [{ provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => ClxDatepickerComponent), multi: true }], viewQueries: [{ propertyName: "origin", first: true, predicate: ["origin"], descendants: true }], ngImport: i0, template: `
7920
7920
  @if (label()) {
7921
- <label [class]="_labelClass()">{{ label() }}</label>
7921
+ <span [class]="_labelClass()">{{ label() }}</span>
7922
7922
  }
7923
7923
 
7924
7924
  <div
@@ -8018,7 +8018,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.15", ngImpo
8018
8018
  providers: [{ provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => ClxDatepickerComponent), multi: true }],
8019
8019
  template: `
8020
8020
  @if (label()) {
8021
- <label [class]="_labelClass()">{{ label() }}</label>
8021
+ <span [class]="_labelClass()">{{ label() }}</span>
8022
8022
  }
8023
8023
 
8024
8024
  <div
@@ -8243,7 +8243,7 @@ class ClxTimepickerComponent {
8243
8243
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.15", ngImport: i0, type: ClxTimepickerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
8244
8244
  static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.15", type: ClxTimepickerComponent, isStandalone: true, selector: "clx-timepicker", inputs: { label: { classPropertyName: "label", publicName: "label", isSignal: true, isRequired: false, transformFunction: null }, placeholder: { classPropertyName: "placeholder", publicName: "placeholder", isSignal: true, isRequired: false, transformFunction: null }, color: { classPropertyName: "color", publicName: "color", isSignal: true, isRequired: false, transformFunction: null }, size: { classPropertyName: "size", publicName: "size", isSignal: true, isRequired: false, transformFunction: null }, status: { classPropertyName: "status", publicName: "status", isSignal: true, isRequired: false, transformFunction: null }, statusMessage: { classPropertyName: "statusMessage", publicName: "statusMessage", isSignal: true, isRequired: false, transformFunction: null }, hint: { classPropertyName: "hint", publicName: "hint", isSignal: true, isRequired: false, transformFunction: null }, value: { classPropertyName: "value", publicName: "value", isSignal: true, isRequired: false, transformFunction: null }, disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null } }, host: { listeners: { "keydown.escape": "onEscape()" }, classAttribute: "flex flex-col gap-1.5" }, providers: [{ provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => ClxTimepickerComponent), multi: true }], viewQueries: [{ propertyName: "origin", first: true, predicate: ["origin"], descendants: true }], ngImport: i0, template: `
8245
8245
  @if (label()) {
8246
- <label [class]="_labelClass()">{{ label() }}</label>
8246
+ <span [class]="_labelClass()">{{ label() }}</span>
8247
8247
  }
8248
8248
 
8249
8249
  <div
@@ -8330,7 +8330,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.15", ngImpo
8330
8330
  providers: [{ provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => ClxTimepickerComponent), multi: true }],
8331
8331
  template: `
8332
8332
  @if (label()) {
8333
- <label [class]="_labelClass()">{{ label() }}</label>
8333
+ <span [class]="_labelClass()">{{ label() }}</span>
8334
8334
  }
8335
8335
 
8336
8336
  <div