@dmlibs/dm-cmps 0.1.15 → 0.1.16
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/package.json
CHANGED
|
@@ -603,7 +603,7 @@ declare class DmMatSelect<T = any> implements DmMatSelectConfig<T>, OnDestroy {
|
|
|
603
603
|
value: _angular_core.ModelSignal<DmMatSelectOutput<T>>;
|
|
604
604
|
formControl: _angular_core.InputSignal<FormControl<DmMatSelectOutput<T>> | null>;
|
|
605
605
|
panelWidth: _angular_core.InputSignal<string | null>;
|
|
606
|
-
panelClass: _angular_core.InputSignal<string | string
|
|
606
|
+
panelClass: _angular_core.InputSignal<string | Set<string> | string[] | {
|
|
607
607
|
[key: string]: any;
|
|
608
608
|
}>;
|
|
609
609
|
searchSectionBackgroundColor: _angular_core.InputSignal<string | null>;
|
|
@@ -760,6 +760,7 @@ interface DmTableColumnBase<T extends object> {
|
|
|
760
760
|
valueGetter?: (row: T) => any;
|
|
761
761
|
dateFormat?: string;
|
|
762
762
|
component?: Type<any>;
|
|
763
|
+
hidden?: boolean | ((datasource: DmCmpsDataSource<T>) => boolean);
|
|
763
764
|
valueSetter?: (row: T, payload: any) => void;
|
|
764
765
|
customHtml?: string;
|
|
765
766
|
customCellTemplate?: TemplateRef<any>;
|