codexly-ui 0.6.9 → 0.6.10
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
|
@@ -12380,8 +12380,8 @@ class ClxFabComponent {
|
|
|
12380
12380
|
_sso = inject(ScrollStrategyOptions);
|
|
12381
12381
|
_scrollStrategy = this._sso.reposition();
|
|
12382
12382
|
_positions = [
|
|
12383
|
-
{ originX: '
|
|
12384
|
-
{ originX: '
|
|
12383
|
+
{ originX: 'center', originY: 'top', overlayX: 'center', overlayY: 'bottom', offsetY: -8 },
|
|
12384
|
+
{ originX: 'center', originY: 'bottom', overlayX: 'center', overlayY: 'top', offsetY: 8 },
|
|
12385
12385
|
];
|
|
12386
12386
|
// ── State ────────────────────────────────────────────────────────────────────
|
|
12387
12387
|
_isOpen = signal(false, ...(ngDevMode ? [{ debugName: "_isOpen" }] : /* istanbul ignore next */ []));
|
|
@@ -12429,10 +12429,10 @@ class ClxFabComponent {
|
|
|
12429
12429
|
(overlayOutsideClick)="_close()"
|
|
12430
12430
|
(overlayKeydown)="_onKeydown($event)">
|
|
12431
12431
|
|
|
12432
|
-
<div class="flex flex-col items-
|
|
12432
|
+
<div class="flex flex-col items-center gap-2 mb-2" role="menu">
|
|
12433
12433
|
@for (item of items(); track item.key; let i = $index) {
|
|
12434
12434
|
<button clx-button type="button" shape="circle" [iconOnly]="true" [icon]="item.icon"
|
|
12435
|
-
variant="
|
|
12435
|
+
variant="solid" [color]="item.color ?? _color()" [size]="_itemSize()" class="shadow-md"
|
|
12436
12436
|
clxAnimate="slideInUp" trigger="onEnter" [delay]="i * 60" [duration]="220"
|
|
12437
12437
|
[clxTooltip]="item.label" clxTooltipPosition="right"
|
|
12438
12438
|
[attr.aria-label]="item.label"
|
|
@@ -12482,10 +12482,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.15", ngImpo
|
|
|
12482
12482
|
(overlayOutsideClick)="_close()"
|
|
12483
12483
|
(overlayKeydown)="_onKeydown($event)">
|
|
12484
12484
|
|
|
12485
|
-
<div class="flex flex-col items-
|
|
12485
|
+
<div class="flex flex-col items-center gap-2 mb-2" role="menu">
|
|
12486
12486
|
@for (item of items(); track item.key; let i = $index) {
|
|
12487
12487
|
<button clx-button type="button" shape="circle" [iconOnly]="true" [icon]="item.icon"
|
|
12488
|
-
variant="
|
|
12488
|
+
variant="solid" [color]="item.color ?? _color()" [size]="_itemSize()" class="shadow-md"
|
|
12489
12489
|
clxAnimate="slideInUp" trigger="onEnter" [delay]="i * 60" [duration]="220"
|
|
12490
12490
|
[clxTooltip]="item.label" clxTooltipPosition="right"
|
|
12491
12491
|
[attr.aria-label]="item.label"
|