orbiq-neural-ui-kit 1.2.72 → 1.2.74
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.
|
@@ -14522,6 +14522,7 @@ class NeuralSidebarItemComponent {
|
|
|
14522
14522
|
routerLinkActive="active"
|
|
14523
14523
|
#rla="routerLinkActive"
|
|
14524
14524
|
[attr.aria-label]="tooltipText() || undefined"
|
|
14525
|
+
[attr.title]="isCollapsed() ? tooltipText() : null"
|
|
14525
14526
|
[attr.aria-current]="resolvedActive() ? 'page' : undefined"
|
|
14526
14527
|
class="flex h-full w-full items-center rounded-4 focus-visible:ring-0 focus-visible:focus-ring overflow-hidden transition-all duration-300 ease-in-out"
|
|
14527
14528
|
(click)="handleClick($event)"
|
|
@@ -14532,6 +14533,7 @@ class NeuralSidebarItemComponent {
|
|
|
14532
14533
|
<button
|
|
14533
14534
|
type="button"
|
|
14534
14535
|
[attr.aria-label]="tooltipText() || undefined"
|
|
14536
|
+
[attr.title]="isCollapsed() ? tooltipText() : null"
|
|
14535
14537
|
class="flex h-full w-full text-left items-center rounded-4 focus-visible:ring-0 focus-visible:focus-ring overflow-hidden transition-all duration-300 ease-in-out"
|
|
14536
14538
|
(click)="handleClick($event)"
|
|
14537
14539
|
>
|
|
@@ -14628,6 +14630,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.4", ngImpor
|
|
|
14628
14630
|
routerLinkActive="active"
|
|
14629
14631
|
#rla="routerLinkActive"
|
|
14630
14632
|
[attr.aria-label]="tooltipText() || undefined"
|
|
14633
|
+
[attr.title]="isCollapsed() ? tooltipText() : null"
|
|
14631
14634
|
[attr.aria-current]="resolvedActive() ? 'page' : undefined"
|
|
14632
14635
|
class="flex h-full w-full items-center rounded-4 focus-visible:ring-0 focus-visible:focus-ring overflow-hidden transition-all duration-300 ease-in-out"
|
|
14633
14636
|
(click)="handleClick($event)"
|
|
@@ -14638,6 +14641,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.4", ngImpor
|
|
|
14638
14641
|
<button
|
|
14639
14642
|
type="button"
|
|
14640
14643
|
[attr.aria-label]="tooltipText() || undefined"
|
|
14644
|
+
[attr.title]="isCollapsed() ? tooltipText() : null"
|
|
14641
14645
|
class="flex h-full w-full text-left items-center rounded-4 focus-visible:ring-0 focus-visible:focus-ring overflow-hidden transition-all duration-300 ease-in-out"
|
|
14642
14646
|
(click)="handleClick($event)"
|
|
14643
14647
|
>
|
|
@@ -14738,7 +14742,7 @@ class NeuralSidebarHeaderComponent {
|
|
|
14738
14742
|
class="flex items-center h-10 rounded-6 transition-all duration-300 ease-in-out cursor-pointer overflow-hidden"
|
|
14739
14743
|
[ngClass]="isOpen && !isCollapsed() ? 'bg-surface-elevation-2 shadow-sm ring-1 ring-black/5' : 'hover:bg-surface-gray-2'"
|
|
14740
14744
|
[attr.aria-label]="title()"
|
|
14741
|
-
[title]="isCollapsed() ? title() : null"
|
|
14745
|
+
[attr.title]="isCollapsed() ? title() : null"
|
|
14742
14746
|
>
|
|
14743
14747
|
<!-- App Icon Container (32px wide, centers icon exactly) -->
|
|
14744
14748
|
<div class="flex-none flex items-center justify-center size-8 rounded-[10px] shrink-0" [ngClass]="iconClass()">
|
|
@@ -14778,7 +14782,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.4", ngImpor
|
|
|
14778
14782
|
class="flex items-center h-10 rounded-6 transition-all duration-300 ease-in-out cursor-pointer overflow-hidden"
|
|
14779
14783
|
[ngClass]="isOpen && !isCollapsed() ? 'bg-surface-elevation-2 shadow-sm ring-1 ring-black/5' : 'hover:bg-surface-gray-2'"
|
|
14780
14784
|
[attr.aria-label]="title()"
|
|
14781
|
-
[title]="isCollapsed() ? title() : null"
|
|
14785
|
+
[attr.title]="isCollapsed() ? title() : null"
|
|
14782
14786
|
>
|
|
14783
14787
|
<!-- App Icon Container (32px wide, centers icon exactly) -->
|
|
14784
14788
|
<div class="flex-none flex items-center justify-center size-8 rounded-[10px] shrink-0" [ngClass]="iconClass()">
|