@brickclay-org/ui 0.1.54 → 0.1.55
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
|
@@ -862,7 +862,7 @@ declare class BkSelect implements ControlValueAccessor {
|
|
|
862
862
|
disabled: i0.ModelSignal<boolean>;
|
|
863
863
|
loading: i0.InputSignal<boolean>;
|
|
864
864
|
closeOnSelect: i0.InputSignal<boolean>;
|
|
865
|
-
dropdownPosition: i0.InputSignal<"
|
|
865
|
+
dropdownPosition: i0.InputSignal<"bottom" | "top">;
|
|
866
866
|
hasError: boolean;
|
|
867
867
|
errorMessage: string;
|
|
868
868
|
appendToBody: i0.InputSignal<boolean>;
|
|
@@ -939,6 +939,7 @@ declare class BkSelect implements ControlValueAccessor {
|
|
|
939
939
|
resolveIcon(item: any): string | null;
|
|
940
940
|
getRemainingItems(): string[];
|
|
941
941
|
getTooltipIfEllipsed(el: HTMLElement, text: string): string;
|
|
942
|
+
onOptionHover(index: number): void;
|
|
942
943
|
static ɵfac: i0.ɵɵFactoryDeclaration<BkSelect, never>;
|
|
943
944
|
static ɵcmp: i0.ɵɵComponentDeclaration<BkSelect, "bk-select", never, { "items": { "alias": "items"; "required": false; "isSignal": true; }; "bindLabel": { "alias": "bindLabel"; "required": false; "isSignal": true; }; "bindValue": { "alias": "bindValue"; "required": false; "isSignal": true; }; "bindIcon": { "alias": "bindIcon"; "required": false; "isSignal": true; }; "isResponsive": { "alias": "isResponsive"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "notFoundText": { "alias": "notFoundText"; "required": false; "isSignal": true; }; "loadingText": { "alias": "loadingText"; "required": false; "isSignal": true; }; "clearAllText": { "alias": "clearAllText"; "required": false; "isSignal": true; }; "groupBy": { "alias": "groupBy"; "required": false; "isSignal": true; }; "colorKey": { "alias": "colorKey"; "required": false; "isSignal": true; }; "iconAlt": { "alias": "iconAlt"; "required": false; }; "label": { "alias": "label"; "required": false; }; "required": { "alias": "required"; "required": false; }; "variation": { "alias": "variation"; "required": false; }; "iconSrc": { "alias": "iconSrc"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; "isSignal": true; }; "maxLabels": { "alias": "maxLabels"; "required": false; "isSignal": true; }; "searchable": { "alias": "searchable"; "required": false; "isSignal": true; }; "allSelect": { "alias": "allSelect"; "required": false; "isSignal": true; }; "clearable": { "alias": "clearable"; "required": false; "isSignal": true; }; "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "loading": { "alias": "loading"; "required": false; "isSignal": true; }; "closeOnSelect": { "alias": "closeOnSelect"; "required": false; "isSignal": true; }; "dropdownPosition": { "alias": "dropdownPosition"; "required": false; "isSignal": true; }; "hasError": { "alias": "hasError"; "required": false; }; "errorMessage": { "alias": "errorMessage"; "required": false; }; "appendToBody": { "alias": "appendToBody"; "required": false; "isSignal": true; }; "compareWith": { "alias": "compareWith"; "required": false; "isSignal": true; }; }, { "disabled": "disabledChange"; "open": "open"; "close": "close"; "focus": "focus"; "blur": "blur"; "search": "search"; "clear": "clear"; "change": "change"; "scrollToEnd": "scrollToEnd"; }, never, never, true, never>;
|
|
944
945
|
}
|
|
@@ -1920,7 +1921,7 @@ declare class BkHierarchicalSelect implements ControlValueAccessor {
|
|
|
1920
1921
|
/** When true, dropdown is positioned fixed and sized to the trigger (use inside modals/popups). */
|
|
1921
1922
|
appendToBody: i0.InputSignal<boolean>;
|
|
1922
1923
|
/** Open above or below the trigger (also used when appendToBody is true for fixed coordinates). */
|
|
1923
|
-
dropdownPosition: i0.InputSignal<"
|
|
1924
|
+
dropdownPosition: i0.InputSignal<"bottom" | "top">;
|
|
1924
1925
|
/** Key for option color (e.g. "color"). When set, option label and selected value use this color. */
|
|
1925
1926
|
colorKey: i0.InputSignal<string>;
|
|
1926
1927
|
/** Whether to show clear button when a value is selected. */
|
package/package.json
CHANGED
package/src/lib/tabs/tabs.css
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
/* Tabs List */
|
|
7
7
|
.tabs-list {
|
|
8
|
-
@apply flex gap-0 list-none m-0
|
|
8
|
+
@apply flex gap-0 list-none m-0 px-0 py-0.5;
|
|
9
9
|
}
|
|
10
10
|
|
|
11
11
|
/* Tab Item */
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
|
|
16
16
|
/* Tab Button - Base Styles */
|
|
17
17
|
.tabs-button {
|
|
18
|
-
@apply flex items-center gap-[6px] px-3 py-2 rounded-md border-0 bg-transparent cursor-pointer transition-all duration-
|
|
18
|
+
@apply flex items-center gap-[6px] px-3 py-2 rounded-md border-0 bg-transparent cursor-pointer transition-all duration-100 outline-none;
|
|
19
19
|
@apply text-sm leading-[11px] font-medium text-[#141414] tracking-[-0.28];
|
|
20
20
|
}
|
|
21
21
|
|