@brickclay-org/ui 0.0.90 → 0.0.91
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/index.d.ts
CHANGED
|
@@ -782,7 +782,7 @@ declare class BkSelect implements ControlValueAccessor {
|
|
|
782
782
|
disabled: i0.ModelSignal<boolean>;
|
|
783
783
|
loading: i0.InputSignal<boolean>;
|
|
784
784
|
closeOnSelect: i0.InputSignal<boolean>;
|
|
785
|
-
dropdownPosition: i0.InputSignal<"
|
|
785
|
+
dropdownPosition: i0.InputSignal<"top" | "bottom">;
|
|
786
786
|
hasError: boolean;
|
|
787
787
|
errorMessage: string;
|
|
788
788
|
appendToBody: i0.InputSignal<boolean>;
|
package/package.json
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
/* Control */
|
|
7
7
|
.bk-select-control {
|
|
8
|
-
@apply flex items-center justify-between gap-2 w-full bg-white border border-[#E3E3E7] rounded transition-all duration-200 px-3 py-2.5 cursor-pointer;
|
|
8
|
+
@apply flex items-center justify-between gap-2 w-full bg-white border border-[#E3E3E7] rounded transition-all duration-200 px-3 py-2.5 cursor-pointer ;
|
|
9
9
|
|
|
10
10
|
&.bk-focused { @apply border-[#6B7080] shadow-none z-10; }
|
|
11
11
|
&.bk-disabled { @apply bg-[#F4F4F6] cursor-not-allowed opacity-60; }
|
|
@@ -22,13 +22,13 @@
|
|
|
22
22
|
}
|
|
23
23
|
|
|
24
24
|
.bk-placeholder {
|
|
25
|
-
@apply text-[#6B7080] font-normal text-
|
|
25
|
+
@apply text-[#6B7080] font-normal text-[14px] truncate w-full pointer-events-none !leading-[18px];
|
|
26
26
|
}
|
|
27
27
|
|
|
28
28
|
|
|
29
29
|
/* --- NEW: Single Value --- */
|
|
30
30
|
.bk-value-label-single {
|
|
31
|
-
@apply font-normal text-
|
|
31
|
+
@apply font-normal text-[14px] !leading-[18px] text-[#141414] truncate w-full;
|
|
32
32
|
}
|
|
33
33
|
/* --- NEW: Multi Select Chips --- */
|
|
34
34
|
|
|
@@ -146,3 +146,7 @@
|
|
|
146
146
|
.bk-select-hint {
|
|
147
147
|
@apply text-xs text-[#868997] font-normal;
|
|
148
148
|
}
|
|
149
|
+
|
|
150
|
+
.bk-search-input:focus-visible {
|
|
151
|
+
outline: 2px solid transparent;
|
|
152
|
+
}
|