@brickclay-org/ui 0.1.45 → 0.1.46
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
|
@@ -796,6 +796,7 @@ declare class BkGrid<T = any> {
|
|
|
796
796
|
result: T[];
|
|
797
797
|
actions: TableAction<T>[] | ((row: T) => TableAction<T>[]);
|
|
798
798
|
customClass: string;
|
|
799
|
+
actionIconClass: string;
|
|
799
800
|
showNoRecords: boolean;
|
|
800
801
|
noRecordFoundHeight: string;
|
|
801
802
|
change: EventEmitter<{
|
|
@@ -832,7 +833,7 @@ declare class BkGrid<T = any> {
|
|
|
832
833
|
onDragMoved(event: CdkDragMove<any>): void;
|
|
833
834
|
onDragStart(event: CdkDragStart<any>): void;
|
|
834
835
|
static ɵfac: i0.ɵɵFactoryDeclaration<BkGrid<any>, never>;
|
|
835
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BkGrid<any>, "bk-grid", never, { "draggable": { "alias": "draggable"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "result": { "alias": "result"; "required": false; }; "actions": { "alias": "actions"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; "showNoRecords": { "alias": "showNoRecords"; "required": false; }; "noRecordFoundHeight": { "alias": "noRecordFoundHeight"; "required": false; }; }, { "change": "change"; "actionClick": "actionClick"; "sortChange": "sortChange"; "dragDropChange": "dragDropChange"; }, never, never, true, never>;
|
|
836
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BkGrid<any>, "bk-grid", never, { "draggable": { "alias": "draggable"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "result": { "alias": "result"; "required": false; }; "actions": { "alias": "actions"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; "actionIconClass": { "alias": "actionIconClass"; "required": false; }; "showNoRecords": { "alias": "showNoRecords"; "required": false; }; "noRecordFoundHeight": { "alias": "noRecordFoundHeight"; "required": false; }; }, { "change": "change"; "actionClick": "actionClick"; "sortChange": "sortChange"; "dragDropChange": "dragDropChange"; }, never, never, true, never>;
|
|
836
837
|
}
|
|
837
838
|
|
|
838
839
|
declare class BkSelect implements ControlValueAccessor {
|
|
@@ -859,7 +860,7 @@ declare class BkSelect implements ControlValueAccessor {
|
|
|
859
860
|
disabled: i0.ModelSignal<boolean>;
|
|
860
861
|
loading: i0.InputSignal<boolean>;
|
|
861
862
|
closeOnSelect: i0.InputSignal<boolean>;
|
|
862
|
-
dropdownPosition: i0.InputSignal<"
|
|
863
|
+
dropdownPosition: i0.InputSignal<"top" | "bottom">;
|
|
863
864
|
hasError: boolean;
|
|
864
865
|
errorMessage: string;
|
|
865
866
|
appendToBody: i0.InputSignal<boolean>;
|
|
@@ -1916,7 +1917,7 @@ declare class BkHierarchicalSelect implements ControlValueAccessor {
|
|
|
1916
1917
|
/** When true, dropdown is positioned fixed and sized to the trigger (use inside modals/popups). */
|
|
1917
1918
|
appendToBody: i0.InputSignal<boolean>;
|
|
1918
1919
|
/** Open above or below the trigger (also used when appendToBody is true for fixed coordinates). */
|
|
1919
|
-
dropdownPosition: i0.InputSignal<"
|
|
1920
|
+
dropdownPosition: i0.InputSignal<"top" | "bottom">;
|
|
1920
1921
|
/** Key for option color (e.g. "color"). When set, option label and selected value use this color. */
|
|
1921
1922
|
colorKey: i0.InputSignal<string>;
|
|
1922
1923
|
/** Whether to show clear button when a value is selected. */
|
package/package.json
CHANGED
|
@@ -1,6 +1,13 @@
|
|
|
1
1
|
/* Base Button Style */
|
|
2
2
|
.btn {
|
|
3
|
-
@apply border rounded
|
|
3
|
+
@apply border rounded cursor-pointer;
|
|
4
|
+
transition: none;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.btn:hover,
|
|
8
|
+
.btn:focus-visible,
|
|
9
|
+
.btn:active {
|
|
10
|
+
@apply transition-colors duration-200;
|
|
4
11
|
}
|
|
5
12
|
|
|
6
13
|
/* --- VARIANTS --- */
|