@solcre-org/core-ui 2.15.41 → 2.15.43
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
|
@@ -158,12 +158,6 @@ interface ModalFieldConfig<T> {
|
|
|
158
158
|
format?: (value: any, data: T) => string;
|
|
159
159
|
customViewTemplate?: ((value: any, data: T) => string) | TemplateRef<any>;
|
|
160
160
|
multiEntryConfig?: MultiEntryFieldConfig;
|
|
161
|
-
aiConfig?: {
|
|
162
|
-
endpoint?: string;
|
|
163
|
-
labelField?: string;
|
|
164
|
-
valueField?: string;
|
|
165
|
-
queryParam?: string;
|
|
166
|
-
};
|
|
167
161
|
modes?: Partial<Record<ModalMode, {
|
|
168
162
|
defaultValue?: any | ((row: T) => any);
|
|
169
163
|
readonly?: boolean | ((formValue: any) => boolean);
|
|
@@ -2938,6 +2932,7 @@ declare class GenericTableComponent<T extends DataBaseModelInterface & {
|
|
|
2938
2932
|
loadMoreItems(): void;
|
|
2939
2933
|
onModalData(data: T): void;
|
|
2940
2934
|
getExpandButtonConfig(row: T): ButtonConfig;
|
|
2935
|
+
private getDefaultTooltipPosition;
|
|
2941
2936
|
getActionButtonConfig(action: TableAction, actionConfig: TableActionConfig<T>, row?: T): ButtonConfig;
|
|
2942
2937
|
getCustomActionButtonConfig(customAction: CustomAction<T>): ButtonConfig;
|
|
2943
2938
|
getCustomActionButtonConfigForRow(customAction: CustomAction<T>, row: T): ButtonConfig;
|