@brickclay-org/ui 0.1.55 → 0.1.57
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<"top" | "bottom">;
|
|
866
866
|
hasError: boolean;
|
|
867
867
|
errorMessage: string;
|
|
868
868
|
appendToBody: i0.InputSignal<boolean>;
|
|
@@ -1921,7 +1921,7 @@ declare class BkHierarchicalSelect implements ControlValueAccessor {
|
|
|
1921
1921
|
/** When true, dropdown is positioned fixed and sized to the trigger (use inside modals/popups). */
|
|
1922
1922
|
appendToBody: i0.InputSignal<boolean>;
|
|
1923
1923
|
/** Open above or below the trigger (also used when appendToBody is true for fixed coordinates). */
|
|
1924
|
-
dropdownPosition: i0.InputSignal<"
|
|
1924
|
+
dropdownPosition: i0.InputSignal<"top" | "bottom">;
|
|
1925
1925
|
/** Key for option color (e.g. "color"). When set, option label and selected value use this color. */
|
|
1926
1926
|
colorKey: i0.InputSignal<string>;
|
|
1927
1927
|
/** Whether to show clear button when a value is selected. */
|
|
@@ -2139,6 +2139,8 @@ declare class BkColumnSelect implements ControlValueAccessor, OnChanges {
|
|
|
2139
2139
|
cacheKey: string;
|
|
2140
2140
|
columns: string[];
|
|
2141
2141
|
isOpened: boolean;
|
|
2142
|
+
label: string;
|
|
2143
|
+
lefticon: string;
|
|
2142
2144
|
isOpenedChange: EventEmitter<boolean>;
|
|
2143
2145
|
formBoxRef: ElementRef;
|
|
2144
2146
|
/** Value bound via ngModel – only updated when user ticks/unticks a checkbox, never on search. */
|
|
@@ -2162,7 +2164,7 @@ declare class BkColumnSelect implements ControlValueAccessor, OnChanges {
|
|
|
2162
2164
|
onClick(event: Event): void;
|
|
2163
2165
|
get list(): ColumnFilterOption[];
|
|
2164
2166
|
static ɵfac: i0.ɵɵFactoryDeclaration<BkColumnSelect, never>;
|
|
2165
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BkColumnSelect, "bk-column-select", never, { "searchable": { "alias": "searchable"; "required": false; }; "buttonClass": { "alias": "buttonClass"; "required": false; }; "cacheKey": { "alias": "cacheKey"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "isOpened": { "alias": "isOpened"; "required": false; }; }, { "isOpenedChange": "isOpenedChange"; }, never, never, true, never>;
|
|
2167
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BkColumnSelect, "bk-column-select", never, { "searchable": { "alias": "searchable"; "required": false; }; "buttonClass": { "alias": "buttonClass"; "required": false; }; "cacheKey": { "alias": "cacheKey"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "isOpened": { "alias": "isOpened"; "required": false; }; "label": { "alias": "label"; "required": false; }; "lefticon": { "alias": "lefticon"; "required": false; }; }, { "isOpenedChange": "isOpenedChange"; }, never, never, true, never>;
|
|
2166
2168
|
}
|
|
2167
2169
|
|
|
2168
2170
|
declare class BkFilePicker implements ControlValueAccessor, Validator {
|