@infomaximum/widget-sdk 6.0.0-2 → 6.0.0-3
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/CHANGELOG.md +7 -0
- package/dist/index.d.ts +8 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
## [6.0.0-3](https://github.com/Infomaximum/widget-sdk/compare/v6.0.0-2...v6.0.0-3) (2025-08-28)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* виджета дана возможность фильтровать таблицы в дропдаунах кнопок добавления индикаторов и фильтрации по процессам ([cb9fd22](https://github.com/Infomaximum/widget-sdk/commit/cb9fd22cbf6ebf12f0261949ab9d467edcaf0a36))
|
|
11
|
+
|
|
5
12
|
## [6.0.0-2](https://github.com/Infomaximum/widget-sdk/compare/v6.0.0-1...v6.0.0-2) (2025-08-26)
|
|
6
13
|
|
|
7
14
|
|
package/dist/index.d.ts
CHANGED
|
@@ -1682,6 +1682,8 @@ interface IFormulaControl {
|
|
|
1682
1682
|
templates?: EDimensionTemplateNames[];
|
|
1683
1683
|
};
|
|
1684
1684
|
disabled?: boolean;
|
|
1685
|
+
/** Ключи процессов для фильтрации таблиц, доступных для выбора */
|
|
1686
|
+
processKeys?: Iterable<string>;
|
|
1685
1687
|
titleModal?: string;
|
|
1686
1688
|
};
|
|
1687
1689
|
}
|
|
@@ -1734,6 +1736,8 @@ interface IFilterControl {
|
|
|
1734
1736
|
value: TExtendedFormulaFilterValue[];
|
|
1735
1737
|
props: {
|
|
1736
1738
|
buttonTitle?: string;
|
|
1739
|
+
/** Ключи процессов для фильтрации таблиц, доступных для выбора */
|
|
1740
|
+
processKeys?: Iterable<string>;
|
|
1737
1741
|
};
|
|
1738
1742
|
}
|
|
1739
1743
|
interface IDisplayConditionControl {
|
|
@@ -2217,7 +2221,10 @@ interface IInitialSettings extends Record<string, any> {
|
|
|
2217
2221
|
/** Кнопка добавления группы в набор */
|
|
2218
2222
|
type TAddButton = {
|
|
2219
2223
|
title: string;
|
|
2220
|
-
props?: ICustomAddButtonProps | IMeasureAddButtonProps | ISortingAddButtonProps
|
|
2224
|
+
props?: (ICustomAddButtonProps | IMeasureAddButtonProps | ISortingAddButtonProps) & {
|
|
2225
|
+
/** Ключи процессов для фильтрации таблиц, доступных для выбора */
|
|
2226
|
+
processKeys?: Iterable<string>;
|
|
2227
|
+
};
|
|
2221
2228
|
/**
|
|
2222
2229
|
* Начальные настройки, которые получит показатель при создании через кнопку добавления.
|
|
2223
2230
|
* Возможность не поддерживается для иерархии разрезов.
|