@infomaximum/widget-sdk 3.32.0 → 3.34.0
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
|
tables: Set<string>;
|
|
781
781
|
reportDisplayRules: Map<string, IDisplayRule>;
|
|
782
782
|
workspaceDisplayRules: Map<number, Map<string, IDisplayRule>>;
|
|
783
|
+
fetchColumnsByTableName(tableName: string): Promise<IWidgetTableColumn[] | undefined>;
|
|
783
784
|
}
|
|
784
785
|
|
|
785
786
|
declare enum EWidgetActionInputMode {
|
|
@@ -875,6 +876,7 @@ type TGroupLevelRecord<LevelGroupSettings extends object> = IControlRecord<Level
|
|
|
875
876
|
interface ISelectOption {
|
|
876
877
|
value: string;
|
|
877
878
|
label: string;
|
|
879
|
+
disabled?: boolean;
|
|
878
880
|
}
|
|
879
881
|
interface ICustomAddButtonProps {
|
|
880
882
|
options?: ISelectOption[];
|