codexly-ui 0.0.60 → 0.0.62

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.
@@ -4147,7 +4147,7 @@ class ClxSelectComponent {
4147
4147
  _hintClass = computed(() => `${this._sizeConfig().hint} text-gray-400`, ...(ngDevMode ? [{ debugName: "_hintClass" }] : /* istanbul ignore next */ []));
4148
4148
  _triggerClass = computed(() => {
4149
4149
  const s = this._sizeConfig();
4150
- const base = 'relative flex items-center rounded-md border transition-all duration-200 outline-none w-full';
4150
+ const base = 'relative flex items-center rounded-md border transition-all duration-200 outline-none w-full overflow-hidden';
4151
4151
  if (this._disabled()) {
4152
4152
  return `${base} ${s.minH} border-gray-200 bg-gray-50 cursor-not-allowed opacity-60`;
4153
4153
  }
@@ -5204,7 +5204,7 @@ const MODAL_SIZE_MAP = {
5204
5204
  lg: 'w-full max-w-[900px]',
5205
5205
  full: 'w-screen h-screen max-w-none rounded-none',
5206
5206
  };
5207
- const MODAL_CONTAINER_CLASS = 'flex flex-col bg-white rounded-2xl shadow-2xl overflow-hidden';
5207
+ const MODAL_CONTAINER_CLASS = 'flex flex-col bg-white rounded-2xl shadow-2xl overflow-hidden min-w-0';
5208
5208
  // eslint-disable-next-line @typescript-eslint/no-explicit-any
5209
5209
  const CLX_MODAL_DATA = new InjectionToken('CLX_MODAL_DATA');
5210
5210
  const CLX_MODAL_SIZE = new InjectionToken('CLX_MODAL_SIZE');
@@ -5397,7 +5397,7 @@ class ClxModalComponent {
5397
5397
  this._modalRef?.close();
5398
5398
  }
5399
5399
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.15", ngImport: i0, type: ClxModalComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
5400
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.15", type: ClxModalComponent, isStandalone: true, selector: "clx-modal", inputs: { size: { classPropertyName: "size", publicName: "size", isSignal: true, isRequired: false, transformFunction: null }, showClose: { classPropertyName: "showClose", publicName: "showClose", isSignal: true, isRequired: false, transformFunction: null }, confirmButton: { classPropertyName: "confirmButton", publicName: "confirmButton", isSignal: true, isRequired: false, transformFunction: null }, cancelButton: { classPropertyName: "cancelButton", publicName: "cancelButton", isSignal: true, isRequired: false, transformFunction: null }, showCancelButton: { classPropertyName: "showCancelButton", publicName: "showCancelButton", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { confirmClick: "confirmClick", cancelClick: "cancelClick" }, host: { properties: { "class": "_hostClass()" } }, ngImport: i0, template: `
5400
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.15", type: ClxModalComponent, isStandalone: true, selector: "clx-modal", inputs: { size: { classPropertyName: "size", publicName: "size", isSignal: true, isRequired: false, transformFunction: null }, showClose: { classPropertyName: "showClose", publicName: "showClose", isSignal: true, isRequired: false, transformFunction: null }, confirmButton: { classPropertyName: "confirmButton", publicName: "confirmButton", isSignal: true, isRequired: false, transformFunction: null }, cancelButton: { classPropertyName: "cancelButton", publicName: "cancelButton", isSignal: true, isRequired: false, transformFunction: null }, showCancelButton: { classPropertyName: "showCancelButton", publicName: "showCancelButton", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { confirmClick: "confirmClick", cancelClick: "cancelClick" }, host: { properties: { "class": "_hostClass()" }, styleAttribute: "min-width:0" }, ngImport: i0, template: `
5401
5401
  <!-- Header -->
5402
5402
  <div class="flex items-center gap-3 px-6 py-4 border-b border-slate-100 shrink-0">
5403
5403
  <div class="flex-1 min-w-0">
@@ -5419,7 +5419,7 @@ class ClxModalComponent {
5419
5419
  </div>
5420
5420
 
5421
5421
  <!-- Body -->
5422
- <div class="flex-1 overflow-y-auto px-6 py-5">
5422
+ <div class="flex-1 min-h-0 overflow-y-auto px-6 py-5">
5423
5423
  <ng-content />
5424
5424
  </div>
5425
5425
 
@@ -5480,7 +5480,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.15", ngImpo
5480
5480
  </div>
5481
5481
 
5482
5482
  <!-- Body -->
5483
- <div class="flex-1 overflow-y-auto px-6 py-5">
5483
+ <div class="flex-1 min-h-0 overflow-y-auto px-6 py-5">
5484
5484
  <ng-content />
5485
5485
  </div>
5486
5486
 
@@ -5514,7 +5514,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.15", ngImpo
5514
5514
  `,
5515
5515
  encapsulation: ViewEncapsulation.None,
5516
5516
  changeDetection: ChangeDetectionStrategy.OnPush,
5517
- host: { '[class]': '_hostClass()' },
5517
+ host: { '[class]': '_hostClass()', style: 'min-width:0' },
5518
5518
  }]
5519
5519
  }], propDecorators: { size: [{ type: i0.Input, args: [{ isSignal: true, alias: "size", required: false }] }], showClose: [{ type: i0.Input, args: [{ isSignal: true, alias: "showClose", required: false }] }], confirmButton: [{ type: i0.Input, args: [{ isSignal: true, alias: "confirmButton", required: false }] }], cancelButton: [{ type: i0.Input, args: [{ isSignal: true, alias: "cancelButton", required: false }] }], showCancelButton: [{ type: i0.Input, args: [{ isSignal: true, alias: "showCancelButton", required: false }] }], confirmClick: [{ type: i0.Output, args: ["confirmClick"] }], cancelClick: [{ type: i0.Output, args: ["cancelClick"] }] } });
5520
5520