@infomaximum/widget-sdk 4.0.0-beta25 → 4.0.0-beta27
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/dist/index.d.ts +2 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -780,6 +780,7 @@ interface IWidgetsContext {
|
|
|
780
780
|
reportDisplayRules: Map<string, IDisplayRule>;
|
|
781
781
|
workspaceDisplayRules: Map<number, Map<string, IDisplayRule>>;
|
|
782
782
|
viewKeyByName: Map<string, string>;
|
|
783
|
+
fetchColumnsByTableName(tableName: string): Promise<IWidgetTableColumn[] | undefined>;
|
|
783
784
|
}
|
|
784
785
|
|
|
785
786
|
declare enum EWidgetActionInputMode {
|
|
@@ -919,6 +920,7 @@ type TGroupLevelRecord<LevelGroupSettings extends object> = IControlRecord<Level
|
|
|
919
920
|
interface ISelectOption {
|
|
920
921
|
value: string;
|
|
921
922
|
label: string;
|
|
923
|
+
disabled?: boolean;
|
|
922
924
|
}
|
|
923
925
|
interface ICustomAddButtonProps {
|
|
924
926
|
options?: ISelectOption[];
|