@solcre-org/core-ui 2.15.25 → 2.15.26
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/fesm2022/solcre-org-core-ui.mjs +131 -77
- package/fesm2022/solcre-org-core-ui.mjs.map +1 -1
- package/index.d.ts +6 -6
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -2765,8 +2765,8 @@ declare class GenericTableComponent<T extends DataBaseModelInterface & {
|
|
|
2765
2765
|
getVisibleCustomActions(row: T, isExtra?: boolean): CustomAction<T>[];
|
|
2766
2766
|
getVisibleDefaultActions(row: T, isExtra?: boolean): TableActionConfig<T>[];
|
|
2767
2767
|
getOutsideFixedActionsForRow(row: T): Array<{
|
|
2768
|
-
type: 'table' | 'global';
|
|
2769
|
-
config: TableActionConfig<T> | GlobalAction<T>;
|
|
2768
|
+
type: 'table' | 'global' | 'custom';
|
|
2769
|
+
config: TableActionConfig<T> | GlobalAction<T> | CustomAction<T>;
|
|
2770
2770
|
}>;
|
|
2771
2771
|
private getMobileShowInHeader;
|
|
2772
2772
|
private getMobileShowOutsideFixedActions;
|
|
@@ -2912,12 +2912,12 @@ declare class GenericTableComponent<T extends DataBaseModelInterface & {
|
|
|
2912
2912
|
getCustomActionButtonConfigForRow(customAction: CustomAction<T>, row: T): ButtonConfig;
|
|
2913
2913
|
getMoreActionsButtonConfig(rowId: number): ButtonConfig;
|
|
2914
2914
|
getOutsideFixedActionButtonConfig(item: {
|
|
2915
|
-
type: 'table' | 'global';
|
|
2916
|
-
config: TableActionConfig<T> | GlobalAction<T>;
|
|
2915
|
+
type: 'table' | 'global' | 'custom';
|
|
2916
|
+
config: TableActionConfig<T> | GlobalAction<T> | CustomAction<T>;
|
|
2917
2917
|
}, row: T): ButtonConfig;
|
|
2918
2918
|
onOutsideFixedActionClick(event: ButtonActionEvent, item: {
|
|
2919
|
-
type: 'table' | 'global';
|
|
2920
|
-
config: TableActionConfig<T> | GlobalAction<T>;
|
|
2919
|
+
type: 'table' | 'global' | 'custom';
|
|
2920
|
+
config: TableActionConfig<T> | GlobalAction<T> | CustomAction<T>;
|
|
2921
2921
|
}, row: T): void;
|
|
2922
2922
|
onButtonClick(event: ButtonActionEvent, action: any, row?: T): void;
|
|
2923
2923
|
onExpandButtonClick(event: ButtonActionEvent, row: T): void;
|