@infomaximum/widget-sdk 4.0.0-beta38 → 4.0.0-beta39
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 +6 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1036,6 +1036,12 @@ interface IGroupSetDescription<Settings extends object, GroupSettings extends ob
|
|
|
1036
1036
|
isValid?(group: IGroupSettings): boolean;
|
|
1037
1037
|
/** Находится ли группа в состоянии загрузки */
|
|
1038
1038
|
isLoading?(group: IGroupSettings): boolean;
|
|
1039
|
+
/** Можно ли удалять группу по умолчанию true */
|
|
1040
|
+
isRemovable?(group: IGroupSettings): boolean;
|
|
1041
|
+
/** Можно ли сортировать группу по умолчанию true */
|
|
1042
|
+
isDraggable?: boolean;
|
|
1043
|
+
/** Опциональный верхний отступ для группы */
|
|
1044
|
+
marginTop?: number;
|
|
1039
1045
|
}
|
|
1040
1046
|
/** Конфигурация левой панели */
|
|
1041
1047
|
interface IPanelDescription<Settings extends object, GroupSettings extends IGroupSettings = IGroupSettings> {
|