@infomaximum/widget-sdk 6.0.0-0 → 6.0.0-wefi344-1
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 +7 -15
- package/package.json +1 -1
- package/CHANGELOG.md +0 -944
package/dist/index.d.ts
CHANGED
|
@@ -571,13 +571,9 @@ declare enum ESortingValueModes {
|
|
|
571
571
|
}
|
|
572
572
|
interface ICommonState {
|
|
573
573
|
name: string;
|
|
574
|
-
/** @deprecated */
|
|
575
|
-
guid: string;
|
|
576
574
|
}
|
|
577
575
|
interface ICommonMeasures {
|
|
578
576
|
name: string;
|
|
579
|
-
/** @deprecated */
|
|
580
|
-
guid: string;
|
|
581
577
|
formula: string;
|
|
582
578
|
}
|
|
583
579
|
interface ICommonDimensions {
|
|
@@ -649,8 +645,6 @@ declare enum EIndicatorType {
|
|
|
649
645
|
interface IBaseWidgetVariable {
|
|
650
646
|
/** Имя переменной */
|
|
651
647
|
name: string;
|
|
652
|
-
/** @deprecated */
|
|
653
|
-
guid: string;
|
|
654
648
|
}
|
|
655
649
|
/** Обобщенные типы значений переменных */
|
|
656
650
|
declare enum ESimpleInputType {
|
|
@@ -786,16 +780,12 @@ interface IWidgetTableColumn {
|
|
|
786
780
|
dbDataType: string;
|
|
787
781
|
}
|
|
788
782
|
interface IScriptField {
|
|
789
|
-
/** @deprecated */
|
|
790
|
-
guid: string;
|
|
791
783
|
name: string;
|
|
792
784
|
isRequired: boolean;
|
|
793
785
|
isArray: boolean;
|
|
794
786
|
}
|
|
795
787
|
interface IActionScript {
|
|
796
788
|
key: string;
|
|
797
|
-
/** @deprecated */
|
|
798
|
-
guid: string;
|
|
799
789
|
name: string;
|
|
800
790
|
fields: IScriptField[];
|
|
801
791
|
}
|
|
@@ -815,8 +805,6 @@ interface IGlobalContext {
|
|
|
815
805
|
reportName: string;
|
|
816
806
|
/** Имена образов по их ключу(в текущем отчете) */
|
|
817
807
|
viewNameByKey: Map<string, string>;
|
|
818
|
-
/** @deprecated имя группы пространства по ее id */
|
|
819
|
-
workspaceGroupNameById: Map<number, string>;
|
|
820
808
|
/** Меры уровня отчета */
|
|
821
809
|
reportMeasures: TNullable<Map<string, ICommonMeasures>>;
|
|
822
810
|
/** Меры уровня пространства(из модели данных) */
|
|
@@ -2335,8 +2323,6 @@ interface IPanelDescription<Settings extends object, GroupSettings extends IGrou
|
|
|
2335
2323
|
filtrationModes?: EWidgetFilterMode[];
|
|
2336
2324
|
}
|
|
2337
2325
|
interface IWidgetProcess {
|
|
2338
|
-
/** @deprecated */
|
|
2339
|
-
guid: string;
|
|
2340
2326
|
/** Ключ процесса */
|
|
2341
2327
|
key: string;
|
|
2342
2328
|
/** Имя процесса */
|
|
@@ -2685,6 +2671,12 @@ interface IWidgetEntity<WidgetSettings extends IBaseWidgetSettings, GroupSetting
|
|
|
2685
2671
|
definition: IDefinition<WidgetSettings, GroupSettings>;
|
|
2686
2672
|
}
|
|
2687
2673
|
|
|
2674
|
+
type SystemWidgetExternals = {
|
|
2675
|
+
react: "React";
|
|
2676
|
+
"react-dom": "ReactDOM";
|
|
2677
|
+
"react-dom/client": "ReactDOMClient";
|
|
2678
|
+
};
|
|
2679
|
+
|
|
2688
2680
|
interface IDimensionSelection {
|
|
2689
2681
|
values: Set<string | null>;
|
|
2690
2682
|
replacedFilter: ICalculatorFilter | null;
|
|
@@ -2750,4 +2742,4 @@ declare global {
|
|
|
2750
2742
|
}
|
|
2751
2743
|
}
|
|
2752
2744
|
|
|
2753
|
-
export { EActionButtonsTypes, EActionTypes, EActivateConditionMode, EAutoUpdateMode, ECalculatorFilterMethods, EClickHouseBaseTypes, EColorMode, EControlType, ECustomSelectTemplates, EDataModelOption, EDimensionAggregationTemplateName, EDimensionTemplateNames, EDisplayConditionMode, EDrawerPlacement, EDurationTemplateName, EDurationUnit, EEventAppearances, EEventMeasureTemplateNames, EFontWeight, EFormatTypes, EFormattingPresets, EFormulaFilterFieldKeys, EIndicatorType, ELastTimeUnit, EMarkdownDisplayMode, EMeasureAggregationTemplateName, EMeasureTemplateNames, EOuterAggregation, EProcessFilterNames, ESelectOptionTypes, ESimpleDataType, ESimpleInputType, ESortDirection, ESortingValueModes, ESystemRecordKey, ETransitionMeasureTemplateNames, EUnitMode, EViewMode, EViewOpenIn, EWidgetActionInputMethod, EWidgetFilterMode, EWidgetIndicatorType, EWidgetIndicatorValueModes, type IActionButton, type IActionGoToUrl, type IActionOnClickControl, type IActionRunScript, type IActionScript, type IActionUpdateVariable, type IAddButtonSelectOption, type IAddDurationOfTransitionFilter, type IAddPresenceOfEventFilter, type IAddPresenceOfTransitionFilter, type IAddRepetitionOfEventFilter, type IAutoIdentifiedArrayItem, type IBaseDimensionsAndMeasuresCalculator, type IBaseDimensionsAndMeasuresCalculatorInput, type IBaseDimensionsAndMeasuresCalculatorOutput, type IBaseWidgetSettings, type ICalculator, type ICalculatorDimensionInput, type ICalculatorDimensionOutput, type ICalculatorFactory, type ICalculatorFilter, type ICalculatorIndicatorInput, type ICalculatorIndicatorOutput, type ICalculatorMeasureInput, type ICalculatorMeasureOutput, type ICalculatorOptions, type ICollapseRecord, type IColorPickerControl, type IColoredValue, type ICommonDimensions, type ICommonMeasures, type ICommonState, type IControlRecord, type ICustomAddButtonProps, type ICustomWidgetProps, type IDefinition, type IDimensionSelection, type IDimensionSelectionByFormula, type IDisplayConditionControl, type IDisplayPredicate, type IDisplayRule, type IDivePanelDescription, type IDividerRecord, type IEdge, type IEventsColorControl, type IEventsPickerControl, type IExportColumnOrder, type IFillSettings, type IFilterControl, type IFormattingControl, type IFormattingTemplateControl, type IFormulaControl, type IFormulaFilterValue, type IGeneralCalculator, type IGeneralCalculatorExportInput, type IGeneralCalculatorInput, type IGeneralCalculatorOutput, type IGlobalContext, type IGraphElement, type IGroupSetDescription, type IGroupSetRecord, type IGroupSettings, type IHistogramBin, type IHistogramCalculator, type IHistogramCalculatorInput, type IHistogramCalculatorOutput, type IIndicatorLink, type IInitialSettings, type IInputControl, type IInputMarkdownControl, type IInputNumberControl, type IInputRangeControl, type ILens, type IMarkdownMeasure, type IMeasureAddButtonProps, type IPanelDescription, type IPanelDescriptionCreator, type IParameterColumnList, type IParameterFromAggregation, type IParameterFromColumn, type IParameterFromDynamicList, type IParameterFromEndEvent, type IParameterFromEvent, type IParameterFromFormula, type IParameterFromManualInput, type IParameterFromStartEvent, type IParameterFromStaticList, type IParameterFromVariable, type IParameterTableList, type IPieCalculator, type IPieCalculatorInput, type IPieCalculatorOutput, type IProcessEventFilterValue, type IProcessEventIndicator, type IProcessFilterPreviewParams, type IProcessGraphCalculator, type IProcessGraphCalculatorInput, type IProcessGraphCalculatorOutput, type IProcessIndicator, type IProcessTransitionFilterValue, type IProcessTransitionIndicator, type IRadioIconGroupControl, type IRange, type ISelectBranchOption, type ISelectControl, type ISelectDividerOption, type ISelectGroupOption, type ISelectLeafOption, type ISelectNode, type ISelectOption, type ISelectSystemOption, type ISettingsMigratorParams, type ISizeControl, type ISortOrder, type ISortingAddButtonProps, type IStagesFilterValue, type IStaticListLabeledOption, type ISwitchControl, type ITagSetControl, type ITwoLimitsCalculator, type ITwoLimitsCalculatorExportInput, type ITwoLimitsCalculatorInput, type ITwoLimitsCalculatorOutput, type ITypeCalculator, type ITypeCalculatorInput, type ITypeCalculatorOutput, type ITypeCalculatorOutputItem, type ITypedFormulaControl, type IVertex, type IViewAction, type IViewContext, type IWidget, type IWidgetAction, type IWidgetColumnIndicator, type IWidgetColumnListVariable, type IWidgetDimension, type IWidgetDimensionHierarchy, type IWidgetDynamicListVariable, type IWidgetEntity, type IWidgetFilter, type IWidgetFiltration, type IWidgetFormatting, type IWidgetIndicator, type IWidgetIndicatorAddButtonProps, type IWidgetManifest, type IWidgetMeasure, type IWidgetMigrator, type IWidgetPersistValue, type IWidgetPlaceholderController, type IWidgetPlaceholderValues, type IWidgetPresetSettings, type IWidgetProcess, type IWidgetProps, type IWidgetSortingIndicator, type IWidgetStaticListVariable, type IWidgetStaticVariable, type IWidgetStruct, type IWidgetTable, type IWidgetTableColumn, OuterAggregation, type TAction, type TActionOnClickParameter, type TActionOpenView, type TActionValidator, type TActionsOnClick, type TAddButton, type TBoundedContentWithIndicator, type TColor, type TColorBase, type TColorRule, type TColumnIndicatorValue, type TContextMenu, type TContextMenuButton, type TContextMenuButtonActions, type TContextMenuButtonApply, type TContextMenuButtonClose, type TContextMenuButtonCustom, type TContextMenuButtonGroup, type TContextMenuButtonOptions, type TContextMenuList, type TContextMenuPositionUnit, type TContextMenuRow, type TControlUnion, type TCustomAddButtonSelectOption, type TDefineWidgetOptions, type TDisplayCondition, type TDisplayMode, type TEmptyRecord, type TExtendedFormulaFilterValue, type TFiltrationAccessibility, type TGroupLevelRecord, type THintPlacement, type TLaunchActionParams, type TMeasureAddButtonSelectOption, type TMigrateProcessor, type TMigrationStruct, type TParameterFromDataModel, type TProcessIndicatorValue, type TRecordAccessor, type TSelectChildOptions, type TSelectFetchNodes, type TSelectivePartial, type TSortDirection, type TUpdateSelection, type TValuePath, type TVersion, type TViewActionParameter, type TWidgetActionParameter, type TWidgetContainer, type TWidgetDimensionData, type TWidgetFilterValue, type TWidgetFiltering, type TWidgetIndicatorAggregationValue, type TWidgetIndicatorConversionValue, type TWidgetIndicatorDurationValue, type TWidgetIndicatorTimeValue, type TWidgetLevelRecord, type TWidgetMeasureData, type TWidgetSortingValue, type TWidgetVariable, applyIndexToArrayFormula, bindContentWithIndicator, bindContentsWithIndicators, checkDisplayCondition, clearMultiLineComments, clearSingleLineComments, colors, conversionTemplate, convertFiltersToFormula, convertToFormulasChain, countExecutionsTemplate, createAggregationTemplate as createMeasureAggregationTemplate, dashboardLinkRegExp, dimensionAggregationTemplates, dimensionTemplateFormulas, displayConditionTemplate, durationTemplates, escapeSpecialCharacters, eventMeasureTemplateFormulas, fillTemplateString, formattingConfig, formulaFilterMethods, generateColumnFormula, getColorByIndex, getDefaultSortOrders, getDimensionFormula, getDisplayConditionFormula, getEventMeasureFormula, getLocalizedText, getMeasureFormula, getRuleColor, getTransitionMeasureFormula, isDimensionsHierarchy, isFormulaFilterValue, isValidColor, linkNameRegExp, mapDimensionsToInputs, mapEventMeasuresToInputs, mapFormulaFilterToCalculatorInput, mapFormulaFiltersToInputs, mapMeasuresToInputs, mapSortingToInputs, mapTransitionMeasuresToInputs, measureTemplateFormulas, parseClickHouseType, parseIndicatorLink, prepareConversionParams, prepareDimensionAggregationParams, prepareDurationParams, prepareFormulaForSql, prepareMeasureAggregationParams, prepareSortOrders, prepareTimeParams, prepareValuesForSql, replaceDisplayCondition, replaceFiltersBySelection, replaceHierarchiesWithDimensions, selectDimensionFromHierarchy, timeTemplates, transitionMeasureTemplateFormulas, unescapeSpecialCharacters, updateDefaultModeSelection, updateMultiModeSelection, updateSingleModeSelection, workspaceLinkRegExp };
|
|
2745
|
+
export { EActionButtonsTypes, EActionTypes, EActivateConditionMode, EAutoUpdateMode, ECalculatorFilterMethods, EClickHouseBaseTypes, EColorMode, EControlType, ECustomSelectTemplates, EDataModelOption, EDimensionAggregationTemplateName, EDimensionTemplateNames, EDisplayConditionMode, EDrawerPlacement, EDurationTemplateName, EDurationUnit, EEventAppearances, EEventMeasureTemplateNames, EFontWeight, EFormatTypes, EFormattingPresets, EFormulaFilterFieldKeys, EIndicatorType, ELastTimeUnit, EMarkdownDisplayMode, EMeasureAggregationTemplateName, EMeasureTemplateNames, EOuterAggregation, EProcessFilterNames, ESelectOptionTypes, ESimpleDataType, ESimpleInputType, ESortDirection, ESortingValueModes, ESystemRecordKey, ETransitionMeasureTemplateNames, EUnitMode, EViewMode, EViewOpenIn, EWidgetActionInputMethod, EWidgetFilterMode, EWidgetIndicatorType, EWidgetIndicatorValueModes, type IActionButton, type IActionGoToUrl, type IActionOnClickControl, type IActionRunScript, type IActionScript, type IActionUpdateVariable, type IAddButtonSelectOption, type IAddDurationOfTransitionFilter, type IAddPresenceOfEventFilter, type IAddPresenceOfTransitionFilter, type IAddRepetitionOfEventFilter, type IAutoIdentifiedArrayItem, type IBaseDimensionsAndMeasuresCalculator, type IBaseDimensionsAndMeasuresCalculatorInput, type IBaseDimensionsAndMeasuresCalculatorOutput, type IBaseWidgetSettings, type ICalculator, type ICalculatorDimensionInput, type ICalculatorDimensionOutput, type ICalculatorFactory, type ICalculatorFilter, type ICalculatorIndicatorInput, type ICalculatorIndicatorOutput, type ICalculatorMeasureInput, type ICalculatorMeasureOutput, type ICalculatorOptions, type ICollapseRecord, type IColorPickerControl, type IColoredValue, type ICommonDimensions, type ICommonMeasures, type ICommonState, type IControlRecord, type ICustomAddButtonProps, type ICustomWidgetProps, type IDefinition, type IDimensionSelection, type IDimensionSelectionByFormula, type IDisplayConditionControl, type IDisplayPredicate, type IDisplayRule, type IDivePanelDescription, type IDividerRecord, type IEdge, type IEventsColorControl, type IEventsPickerControl, type IExportColumnOrder, type IFillSettings, type IFilterControl, type IFormattingControl, type IFormattingTemplateControl, type IFormulaControl, type IFormulaFilterValue, type IGeneralCalculator, type IGeneralCalculatorExportInput, type IGeneralCalculatorInput, type IGeneralCalculatorOutput, type IGlobalContext, type IGraphElement, type IGroupSetDescription, type IGroupSetRecord, type IGroupSettings, type IHistogramBin, type IHistogramCalculator, type IHistogramCalculatorInput, type IHistogramCalculatorOutput, type IIndicatorLink, type IInitialSettings, type IInputControl, type IInputMarkdownControl, type IInputNumberControl, type IInputRangeControl, type ILens, type IMarkdownMeasure, type IMeasureAddButtonProps, type IPanelDescription, type IPanelDescriptionCreator, type IParameterColumnList, type IParameterFromAggregation, type IParameterFromColumn, type IParameterFromDynamicList, type IParameterFromEndEvent, type IParameterFromEvent, type IParameterFromFormula, type IParameterFromManualInput, type IParameterFromStartEvent, type IParameterFromStaticList, type IParameterFromVariable, type IParameterTableList, type IPieCalculator, type IPieCalculatorInput, type IPieCalculatorOutput, type IProcessEventFilterValue, type IProcessEventIndicator, type IProcessFilterPreviewParams, type IProcessGraphCalculator, type IProcessGraphCalculatorInput, type IProcessGraphCalculatorOutput, type IProcessIndicator, type IProcessTransitionFilterValue, type IProcessTransitionIndicator, type IRadioIconGroupControl, type IRange, type ISelectBranchOption, type ISelectControl, type ISelectDividerOption, type ISelectGroupOption, type ISelectLeafOption, type ISelectNode, type ISelectOption, type ISelectSystemOption, type ISettingsMigratorParams, type ISizeControl, type ISortOrder, type ISortingAddButtonProps, type IStagesFilterValue, type IStaticListLabeledOption, type ISwitchControl, type ITagSetControl, type ITwoLimitsCalculator, type ITwoLimitsCalculatorExportInput, type ITwoLimitsCalculatorInput, type ITwoLimitsCalculatorOutput, type ITypeCalculator, type ITypeCalculatorInput, type ITypeCalculatorOutput, type ITypeCalculatorOutputItem, type ITypedFormulaControl, type IVertex, type IViewAction, type IViewContext, type IWidget, type IWidgetAction, type IWidgetColumnIndicator, type IWidgetColumnListVariable, type IWidgetDimension, type IWidgetDimensionHierarchy, type IWidgetDynamicListVariable, type IWidgetEntity, type IWidgetFilter, type IWidgetFiltration, type IWidgetFormatting, type IWidgetIndicator, type IWidgetIndicatorAddButtonProps, type IWidgetManifest, type IWidgetMeasure, type IWidgetMigrator, type IWidgetPersistValue, type IWidgetPlaceholderController, type IWidgetPlaceholderValues, type IWidgetPresetSettings, type IWidgetProcess, type IWidgetProps, type IWidgetSortingIndicator, type IWidgetStaticListVariable, type IWidgetStaticVariable, type IWidgetStruct, type IWidgetTable, type IWidgetTableColumn, OuterAggregation, type SystemWidgetExternals, type TAction, type TActionOnClickParameter, type TActionOpenView, type TActionValidator, type TActionsOnClick, type TAddButton, type TBoundedContentWithIndicator, type TColor, type TColorBase, type TColorRule, type TColumnIndicatorValue, type TContextMenu, type TContextMenuButton, type TContextMenuButtonActions, type TContextMenuButtonApply, type TContextMenuButtonClose, type TContextMenuButtonCustom, type TContextMenuButtonGroup, type TContextMenuButtonOptions, type TContextMenuList, type TContextMenuPositionUnit, type TContextMenuRow, type TControlUnion, type TCustomAddButtonSelectOption, type TDefineWidgetOptions, type TDisplayCondition, type TDisplayMode, type TEmptyRecord, type TExtendedFormulaFilterValue, type TFiltrationAccessibility, type TGroupLevelRecord, type THintPlacement, type TLaunchActionParams, type TMeasureAddButtonSelectOption, type TMigrateProcessor, type TMigrationStruct, type TParameterFromDataModel, type TProcessIndicatorValue, type TRecordAccessor, type TSelectChildOptions, type TSelectFetchNodes, type TSelectivePartial, type TSortDirection, type TUpdateSelection, type TValuePath, type TVersion, type TViewActionParameter, type TWidgetActionParameter, type TWidgetContainer, type TWidgetDimensionData, type TWidgetFilterValue, type TWidgetFiltering, type TWidgetIndicatorAggregationValue, type TWidgetIndicatorConversionValue, type TWidgetIndicatorDurationValue, type TWidgetIndicatorTimeValue, type TWidgetLevelRecord, type TWidgetMeasureData, type TWidgetSortingValue, type TWidgetVariable, applyIndexToArrayFormula, bindContentWithIndicator, bindContentsWithIndicators, checkDisplayCondition, clearMultiLineComments, clearSingleLineComments, colors, conversionTemplate, convertFiltersToFormula, convertToFormulasChain, countExecutionsTemplate, createAggregationTemplate as createMeasureAggregationTemplate, dashboardLinkRegExp, dimensionAggregationTemplates, dimensionTemplateFormulas, displayConditionTemplate, durationTemplates, escapeSpecialCharacters, eventMeasureTemplateFormulas, fillTemplateString, formattingConfig, formulaFilterMethods, generateColumnFormula, getColorByIndex, getDefaultSortOrders, getDimensionFormula, getDisplayConditionFormula, getEventMeasureFormula, getLocalizedText, getMeasureFormula, getRuleColor, getTransitionMeasureFormula, isDimensionsHierarchy, isFormulaFilterValue, isValidColor, linkNameRegExp, mapDimensionsToInputs, mapEventMeasuresToInputs, mapFormulaFilterToCalculatorInput, mapFormulaFiltersToInputs, mapMeasuresToInputs, mapSortingToInputs, mapTransitionMeasuresToInputs, measureTemplateFormulas, parseClickHouseType, parseIndicatorLink, prepareConversionParams, prepareDimensionAggregationParams, prepareDurationParams, prepareFormulaForSql, prepareMeasureAggregationParams, prepareSortOrders, prepareTimeParams, prepareValuesForSql, replaceDisplayCondition, replaceFiltersBySelection, replaceHierarchiesWithDimensions, selectDimensionFromHierarchy, timeTemplates, transitionMeasureTemplateFormulas, unescapeSpecialCharacters, updateDefaultModeSelection, updateMultiModeSelection, updateSingleModeSelection, workspaceLinkRegExp };
|
package/package.json
CHANGED
package/CHANGELOG.md
DELETED
|
@@ -1,944 +0,0 @@
|
|
|
1
|
-
# Changelog
|
|
2
|
-
|
|
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
|
-
|
|
5
|
-
## [6.0.0-0](https://github.com/Infomaximum/widget-sdk/compare/v5.33.1...v6.0.0-0) (2025-08-20)
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
### ⚠ BREAKING CHANGES
|
|
9
|
-
|
|
10
|
-
* получение ф-ии шаблона процессной агрегации для меры через константу "measureAggregationTemplates" заменено на получение через ф-ию "createAggregationFormulaByTemplateName"
|
|
11
|
-
* поле actions удалено из настроек виджетов
|
|
12
|
-
|
|
13
|
-
### Features
|
|
14
|
-
|
|
15
|
-
* отказ от поля actions в пользу actionButtons в настройках виджетов ([2ee361a](https://github.com/Infomaximum/widget-sdk/commit/2ee361a5ab1478e1b0ad90feae2256cf90d46058))
|
|
16
|
-
* расширен IInputControl полями hint и hintPlacement. Для запуска скрипта из действий по клику добавлена подсказка ([63d02d6](https://github.com/Infomaximum/widget-sdk/commit/63d02d68bc38bb6d6b1bb2dfd1898d4b948ee6fc))
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
* From BI-15231 into master (#92) ([8257237](https://github.com/Infomaximum/widget-sdk/commit/8257237e12b42ee403378408d0bb5007853c379d)), closes [#92](https://github.com/Infomaximum/widget-sdk/issues/92)
|
|
20
|
-
|
|
21
|
-
### [5.33.1](https://github.com/Infomaximum/widget-sdk/compare/v5.33.0...v5.33.1) (2025-08-15)
|
|
22
|
-
|
|
23
|
-
## [5.33.0](https://github.com/Infomaximum/widget-sdk/compare/v5.32.1...v5.33.0) (2025-08-06)
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
### Features
|
|
27
|
-
|
|
28
|
-
* расширены шаблоны процессных агрегаций ([f2bfbaf](https://github.com/Infomaximum/widget-sdk/commit/f2bfbafb557ba72ae605d906ae1341109adf3894))
|
|
29
|
-
|
|
30
|
-
### [5.32.1](https://github.com/Infomaximum/widget-sdk/compare/v5.32.0...v5.32.1) (2025-08-05)
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
### Bug Fixes
|
|
34
|
-
|
|
35
|
-
* исправлена типизация ответов вычислителей ([0453793](https://github.com/Infomaximum/widget-sdk/commit/04537930ba1916d300b279e658a7e9b8da191af4))
|
|
36
|
-
|
|
37
|
-
## [5.32.0](https://github.com/Infomaximum/widget-sdk/compare/v5.31.0...v5.32.0) (2025-07-31)
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
### Features
|
|
41
|
-
|
|
42
|
-
* добавлена возможность управления якорем для сохранения положения виджета ([3bd5610](https://github.com/Infomaximum/widget-sdk/commit/3bd561058e48055ec10f99c53f88f2fcddf18d94))
|
|
43
|
-
|
|
44
|
-
## [5.31.0](https://github.com/Infomaximum/widget-sdk/compare/v5.30.0...v5.31.0) (2025-07-17)
|
|
45
|
-
|
|
46
|
-
## [5.29.0-1](https://github.com/Infomaximum/widget-sdk/compare/v5.29.0...v5.29.0-1) (2025-07-14)
|
|
47
|
-
|
|
48
|
-
## [5.29.0-0](https://github.com/Infomaximum/widget-sdk/compare/v5.28.0...v5.29.0-0) (2025-07-10)
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
### Features
|
|
52
|
-
|
|
53
|
-
* отказ от имени процесса ([4fa01d5](https://github.com/Infomaximum/widget-sdk/commit/4fa01d5c2602211810277d0b6aef6b4d5f62e19c))
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
### Bug Fixes
|
|
57
|
-
|
|
58
|
-
* deprecated поле processName для интерфейса IProcessGraphCalculatorInput сделано необзятельным ([859f959](https://github.com/Infomaximum/widget-sdk/commit/859f959ea963ea2ed9214ccc4a4dc43a8b49142c))
|
|
59
|
-
|
|
60
|
-
## [5.30.0](https://github.com/Infomaximum/widget-sdk/compare/v5.29.0...v5.30.0) (2025-07-15)
|
|
61
|
-
|
|
62
|
-
### Features
|
|
63
|
-
|
|
64
|
-
- Изменено поле ALL_WIDGETS > ALL_VIEWS для EAutoUpdateMode ([cb9ce26](https://github.com/Infomaximum/widget-sdk/commit/cb9ce26826f1c90cbadf2dd2d25932973050873f))
|
|
65
|
-
|
|
66
|
-
## [5.29.0](https://github.com/Infomaximum/widget-sdk/compare/v5.28.1...v5.29.0) (2025-07-14)
|
|
67
|
-
|
|
68
|
-
### Features
|
|
69
|
-
|
|
70
|
-
- отказ от имени процесса ([4fa01d5](https://github.com/Infomaximum/widget-sdk/commit/4fa01d5c2602211810277d0b6aef6b4d5f62e19c))
|
|
71
|
-
|
|
72
|
-
### Bug Fixes
|
|
73
|
-
|
|
74
|
-
- deprecated поле processName для интерфейса IProcessGraphCalculatorInput сделано необзятельным ([859f959](https://github.com/Infomaximum/widget-sdk/commit/859f959ea963ea2ed9214ccc4a4dc43a8b49142c))
|
|
75
|
-
|
|
76
|
-
## [5.29.0](https://github.com/Infomaximum/widget-sdk/compare/v5.28.1...v5.29.0) (2025-07-14)
|
|
77
|
-
|
|
78
|
-
### Features
|
|
79
|
-
|
|
80
|
-
- в параметры запуска скрипта добавлены свойства onComplete и onError, а onSuccess сделан опциональным ([b989b84](https://github.com/Infomaximum/widget-sdk/commit/b989b84fe5008f6455fa7dacd51cf42beadb75dc))
|
|
81
|
-
- Для способов ввода Вручную, Динамический и Статический список добавлен флаг acceptEmptyValue ([8ad56ae](https://github.com/Infomaximum/widget-sdk/commit/8ad56ae6b3f57d06c2e1aa54f0354b25490fcf14))
|
|
82
|
-
|
|
83
|
-
## [5.29.0-0](https://github.com/Infomaximum/widget-sdk/compare/v5.28.0...v5.29.0-0) (2025-07-10)
|
|
84
|
-
|
|
85
|
-
### Features
|
|
86
|
-
|
|
87
|
-
- отказ от имени процесса ([4fa01d5](https://github.com/Infomaximum/widget-sdk/commit/4fa01d5c2602211810277d0b6aef6b4d5f62e19c))
|
|
88
|
-
|
|
89
|
-
### Bug Fixes
|
|
90
|
-
|
|
91
|
-
- deprecated поле processName для интерфейса IProcessGraphCalculatorInput сделано необзятельным ([859f959](https://github.com/Infomaximum/widget-sdk/commit/859f959ea963ea2ed9214ccc4a4dc43a8b49142c))
|
|
92
|
-
|
|
93
|
-
## [5.28.0](https://github.com/Infomaximum/widget-sdk/compare/v5.27.0...v5.28.0) (2025-07-07)
|
|
94
|
-
|
|
95
|
-
### Features
|
|
96
|
-
|
|
97
|
-
- для действия запуска скрипта добавлен blockingCondition. удалено поле actionButtons из TActionOpenIn ([920a76e](https://github.com/Infomaximum/widget-sdk/commit/920a76e8d695f73876b1d6a96f33820aad4b17c4))
|
|
98
|
-
|
|
99
|
-
## [5.27.0](https://github.com/Infomaximum/widget-sdk/compare/v5.26.1...v5.27.0) (2025-07-04)
|
|
100
|
-
|
|
101
|
-
### Features
|
|
102
|
-
|
|
103
|
-
- в интерфейс IViewAction добавлено поле, отвечающее за авто-обновление отчета после запуска действия ([5fd1371](https://github.com/Infomaximum/widget-sdk/commit/5fd1371d7699a4e36a40f735574cd7277f35a94d))
|
|
104
|
-
- добавлена возможность использовать groupSet (набор плашек) только во вкладке настроек отображения (displayRecords), не дублируя во вкладке настроек данных (dataRecords) ([72ae723](https://github.com/Infomaximum/widget-sdk/commit/72ae723d20b0e07e615b2840e514169bfe87a1ee))
|
|
105
|
-
- добавлена возможность не указывать заголовок для groupSet ([fe09052](https://github.com/Infomaximum/widget-sdk/commit/fe09052d769a380565eed6ed301870752b84499d))
|
|
106
|
-
|
|
107
|
-
### [5.26.1](https://github.com/Infomaximum/widget-sdk/compare/v5.26.0...v5.26.1) (2025-06-25)
|
|
108
|
-
|
|
109
|
-
### Bug Fixes
|
|
110
|
-
|
|
111
|
-
- изменено именование поля actinButtons > actionButtons ([8b0ddf3](https://github.com/Infomaximum/widget-sdk/commit/8b0ddf374045287a06210c19debe021fe4dbcc97))
|
|
112
|
-
|
|
113
|
-
## [5.26.0](https://github.com/Infomaximum/widget-sdk/compare/v5.25.0...v5.26.0) (2025-06-23)
|
|
114
|
-
|
|
115
|
-
### Features
|
|
116
|
-
|
|
117
|
-
- для EWidgetActionInputMethod динамический список и вводимое значение добавлено поле валидации ([cf394d3](https://github.com/Infomaximum/widget-sdk/commit/cf394d365fef5aafd8935b3516d732f7a9616bfc))
|
|
118
|
-
|
|
119
|
-
## [5.25.0](https://github.com/Infomaximum/widget-sdk/compare/v5.24.1...v5.25.0) (2025-06-19)
|
|
120
|
-
|
|
121
|
-
### Features
|
|
122
|
-
|
|
123
|
-
- ESimpleInputType расширен логическим типом ([59f9d63](https://github.com/Infomaximum/widget-sdk/commit/59f9d6372e5fc1dc38d92d6032e6d5d64699f328))
|
|
124
|
-
|
|
125
|
-
### [5.24.1](https://github.com/Infomaximum/widget-sdk/compare/v5.24.0...v5.24.1) (2025-06-17)
|
|
126
|
-
|
|
127
|
-
### Bug Fixes
|
|
128
|
-
|
|
129
|
-
- entry может не быть ([1a3ea89](https://github.com/Infomaximum/widget-sdk/commit/1a3ea894ab1c62e7e79c14ea334326aee481eeac))
|
|
130
|
-
|
|
131
|
-
## [5.24.0](https://github.com/Infomaximum/widget-sdk/compare/v5.23.0...v5.24.0) (2025-06-06)
|
|
132
|
-
|
|
133
|
-
### Features
|
|
134
|
-
|
|
135
|
-
- убрано экранирование символов ` \' из escapeSpecialCharacters ([b5020f9](https://github.com/Infomaximum/widget-sdk/commit/b5020f9a1e6532a8c3e3a0547309f98892aaf1ea))
|
|
136
|
-
|
|
137
|
-
## [5.23.0](https://github.com/Infomaximum/widget-sdk/compare/v5.22.0...v5.23.0) (2025-05-30)
|
|
138
|
-
|
|
139
|
-
### Features
|
|
140
|
-
|
|
141
|
-
- поддержан null для значения переменных ([6b2cd53](https://github.com/Infomaximum/widget-sdk/commit/6b2cd53b28b169e4a1e0500ed9e972870aa46c95))
|
|
142
|
-
|
|
143
|
-
## [5.22.0](https://github.com/Infomaximum/widget-sdk/compare/v5.21.0...v5.22.0) (2025-05-28)
|
|
144
|
-
|
|
145
|
-
### Features
|
|
146
|
-
|
|
147
|
-
- добавлена возможность управлять отображением системного индикатора загрузки через вычислитель ([400c598](https://github.com/Infomaximum/widget-sdk/commit/400c5983510d8f18d917851f4079ab63a4a580f3))
|
|
148
|
-
- обработаны одинарные кавычки при экранировании значений для sql-выражений ([27f3e49](https://github.com/Infomaximum/widget-sdk/commit/27f3e498b2400b1ecef7956b4802f4892ce91876))
|
|
149
|
-
|
|
150
|
-
## [5.21.0](https://github.com/Infomaximum/widget-sdk/compare/v5.20.0...v5.21.0) (2025-05-23)
|
|
151
|
-
|
|
152
|
-
### Features
|
|
153
|
-
|
|
154
|
-
- добавлен шаблон форматирования 'x' ([8905393](https://github.com/Infomaximum/widget-sdk/commit/890539367b03e78852e0a75096f6b56835b8ae2d))
|
|
155
|
-
- добавлена настройка 'Позиционирование по клику' ([b4107b9](https://github.com/Infomaximum/widget-sdk/commit/b4107b91cd1c00b102226a343838d6dfdf1bee29))
|
|
156
|
-
- изменены интерфейсы IPositionConfig и IClickPosition ([052ab57](https://github.com/Infomaximum/widget-sdk/commit/052ab574285887c09121b65860bf49070f757bab))
|
|
157
|
-
|
|
158
|
-
## [5.20.0](https://github.com/Infomaximum/widget-sdk/compare/v5.19.0...v5.20.0) (2025-05-22)
|
|
159
|
-
|
|
160
|
-
### Features
|
|
161
|
-
|
|
162
|
-
- в EViewOpenIn CURRENT_WINDOW и NEW_WINDOW отмечены как deprecated и добавлен WINDOW ([91db750](https://github.com/Infomaximum/widget-sdk/commit/91db750f3c16bbb7132fce2f24fa70abecdbdb09))
|
|
163
|
-
- добавлена возможность показывать каретку в кнопке опций контекстного меню ([ae2ca8d](https://github.com/Infomaximum/widget-sdk/commit/ae2ca8d0470a2d555f6a4c91d09d7864ade08a5a))
|
|
164
|
-
- добавлены типы для действий образа ([5d5942c](https://github.com/Infomaximum/widget-sdk/commit/5d5942c78f682668e5420e151da54c9b3ddac66a))
|
|
165
|
-
|
|
166
|
-
## [5.19.0](https://github.com/Infomaximum/widget-sdk/compare/v5.18.0...v5.19.0) (2025-05-19)
|
|
167
|
-
|
|
168
|
-
### Features
|
|
169
|
-
|
|
170
|
-
- добавлено поле dbDataType в настройки способов ввода ([58e9f49](https://github.com/Infomaximum/widget-sdk/commit/58e9f4994bf31c99eefe077935deb9482e68aa22))
|
|
171
|
-
|
|
172
|
-
## [5.18.0](https://github.com/Infomaximum/widget-sdk/compare/v5.18.0-0...v5.18.0) (2025-04-30)
|
|
173
|
-
|
|
174
|
-
## [5.18.0-0](https://github.com/Infomaximum/widget-sdk/compare/v5.17.0...v5.18.0-0) (2025-04-30)
|
|
175
|
-
|
|
176
|
-
### Features
|
|
177
|
-
|
|
178
|
-
- **InputNumberControl:** в props добавлена настройка layout для ориентации поля ([5545657](https://github.com/Infomaximum/widget-sdk/commit/554565767a432ef2748533c2d0b4dccb1a98c0ba))
|
|
179
|
-
- IParameterFromDynamicList расширен флагом enableCustomValue ([4ed6d23](https://github.com/Infomaximum/widget-sdk/commit/4ed6d234828c65350e24e8fee480381462304522))
|
|
180
|
-
- для переменной динамический список добавлен флаг considerFilters ([bf55aad](https://github.com/Infomaximum/widget-sdk/commit/bf55aaddc3bd2b72f5440d3071e2f30c874b05eb))
|
|
181
|
-
|
|
182
|
-
## [5.17.0](https://github.com/Infomaximum/widget-sdk/compare/v5.16.0...v5.17.0) (2025-04-23)
|
|
183
|
-
|
|
184
|
-
### Features
|
|
185
|
-
|
|
186
|
-
- в мета-описание добавлена возможность позиционирования поля относительно системных полей ([92b59c2](https://github.com/Infomaximum/widget-sdk/commit/92b59c2944121f6f211c3347ba5c4504b1f16dc6))
|
|
187
|
-
- в фильтрах по формуле поддержана возможность работы с элементами массива ([bfc6dcf](https://github.com/Infomaximum/widget-sdk/commit/bfc6dcfdae761d7c8306b250cd849ae64152b1d8))
|
|
188
|
-
- для способов ввода по формуле, агрегации и динамический список, добавлено поле considerFilters ([b7d8f72](https://github.com/Infomaximum/widget-sdk/commit/b7d8f72d417db755d506ccf29434a16041a13876))
|
|
189
|
-
|
|
190
|
-
## [5.16.0](https://github.com/Infomaximum/widget-sdk/compare/v5.12.2...v5.16.0) (2025-04-22)
|
|
191
|
-
|
|
192
|
-
## [5.15.0](https://github.com/Infomaximum/widget-sdk/compare/v5.14.0...v5.15.0) (2025-04-17)
|
|
193
|
-
|
|
194
|
-
### Features
|
|
195
|
-
|
|
196
|
-
- в IBaseWidgetSettings добавлено поле markdownTextSize ([816efbf](https://github.com/Infomaximum/widget-sdk/commit/816efbf0602c21529f3b7ffd9178904d761b8a2e))
|
|
197
|
-
- для способа ввода статический список defaultOptionIndexes изменен на defaultValue ([afff970](https://github.com/Infomaximum/widget-sdk/commit/afff9709fbab78470d3ef3a5b8b2c12e233ad613))
|
|
198
|
-
- экспортированы интерфейсы параметров ожидаемых полей действий ([473400c](https://github.com/Infomaximum/widget-sdk/commit/473400ccda532a247927f6f7d0084e91dabb83d0))
|
|
199
|
-
|
|
200
|
-
## [5.14.0](https://github.com/Infomaximum/widget-sdk/compare/v5.13.0...v5.14.0) (2025-04-16)
|
|
201
|
-
|
|
202
|
-
### Features
|
|
203
|
-
|
|
204
|
-
- добавлена возможность автоматического вызова fillSettings при изменении настройки через элемент управления ([e4fce52](https://github.com/Infomaximum/widget-sdk/commit/e4fce528b715fe5e748130402e07052b73c1a4cd))
|
|
205
|
-
|
|
206
|
-
## [5.13.0](https://github.com/Infomaximum/widget-sdk/compare/v5.12.1...v5.13.0) (2025-04-16)
|
|
207
|
-
|
|
208
|
-
### Features
|
|
209
|
-
|
|
210
|
-
- добавлен новый inputMethod DATA_MODEL ([70b3d43](https://github.com/Infomaximum/widget-sdk/commit/70b3d434778f87777acbd18336286dde44dd9814))
|
|
211
|
-
- добавлены шаблоны для фильтрации в FormulaControl [WD-1705] ([ed358c3](https://github.com/Infomaximum/widget-sdk/commit/ed358c3889aac546c481acb4f590a878ccf3d6bd))
|
|
212
|
-
- удалены интефейсы расширенных настроек, добавлено поле paddings в интерфейс базовых настроек виджетов ([d704c81](https://github.com/Infomaximum/widget-sdk/commit/d704c81aa3dbf21d62b74580c654ffd08de17907))
|
|
213
|
-
|
|
214
|
-
## [5.15.0](https://github.com/Infomaximum/widget-sdk/compare/v5.14.0...v5.15.0) (2025-04-17)
|
|
215
|
-
|
|
216
|
-
### Features
|
|
217
|
-
|
|
218
|
-
- в IBaseWidgetSettings добавлено поле markdownTextSize ([816efbf](https://github.com/Infomaximum/widget-sdk/commit/816efbf0602c21529f3b7ffd9178904d761b8a2e))
|
|
219
|
-
- для способа ввода статический список defaultOptionIndexes изменен на defaultValue ([afff970](https://github.com/Infomaximum/widget-sdk/commit/afff9709fbab78470d3ef3a5b8b2c12e233ad613))
|
|
220
|
-
- добавлены шаблоны для фильтрации в FormulaControl [WD-1705] ([ed358c3](https://github.com/Infomaximum/widget-sdk/commit/ed358c3889aac546c481acb4f590a878ccf3d6bd))
|
|
221
|
-
- экспортированы интерфейсы параметров ожидаемых полей действий ([473400c](https://github.com/Infomaximum/widget-sdk/commit/473400ccda532a247927f6f7d0084e91dabb83d0))
|
|
222
|
-
|
|
223
|
-
## [5.14.0](https://github.com/Infomaximum/widget-sdk/compare/v5.13.0...v5.14.0) (2025-04-16)
|
|
224
|
-
|
|
225
|
-
### Features
|
|
226
|
-
|
|
227
|
-
- добавлен новый inputMethod DATA_MODEL ([70b3d43](https://github.com/Infomaximum/widget-sdk/commit/70b3d434778f87777acbd18336286dde44dd9814))
|
|
228
|
-
- добавлена возможность автоматического вызова fillSettings при изменении настройки через элемент управления ([e4fce52](https://github.com/Infomaximum/widget-sdk/commit/e4fce528b715fe5e748130402e07052b73c1a4cd))
|
|
229
|
-
|
|
230
|
-
## [5.13.0](https://github.com/Infomaximum/widget-sdk/compare/v5.12.1...v5.13.0) (2025-04-16)
|
|
231
|
-
|
|
232
|
-
### Features
|
|
233
|
-
|
|
234
|
-
- удалены интефейсы расширенных настроек, добавлено поле paddings в интерфейс базовых настроек виджетов ([d704c81](https://github.com/Infomaximum/widget-sdk/commit/d704c81aa3dbf21d62b74580c654ffd08de17907))
|
|
235
|
-
|
|
236
|
-
### [5.12.2](https://github.com/Infomaximum/widget-sdk/compare/v5.12.1...v5.12.2) (2025-04-22)
|
|
237
|
-
|
|
238
|
-
### Bug Fixes
|
|
239
|
-
|
|
240
|
-
- исправленно падение фильтрации из-за комментариев в формуле ([962580c](https://github.com/Infomaximum/widget-sdk/commit/962580c0e86d6b7ebeacfef77481557add9eebf6))
|
|
241
|
-
|
|
242
|
-
### [5.12.1](https://github.com/Infomaximum/widget-sdk/compare/v5.12.0...v5.12.1) (2025-04-11)
|
|
243
|
-
|
|
244
|
-
## [5.12.0](https://github.com/Infomaximum/widget-sdk/compare/v5.11.1...v5.12.0) (2025-04-11)
|
|
245
|
-
|
|
246
|
-
### Features
|
|
247
|
-
|
|
248
|
-
- добавлена возможность кастомизировать набор форматов для разрезов и мер ([3451242](https://github.com/Infomaximum/widget-sdk/commit/345124227c09b53d824b9cb632b47e850ac85913))
|
|
249
|
-
|
|
250
|
-
### [5.11.1](https://github.com/Infomaximum/widget-sdk/compare/v5.11.0...v5.11.1) (2025-04-01)
|
|
251
|
-
|
|
252
|
-
### Bug Fixes
|
|
253
|
-
|
|
254
|
-
- для фильтра в режиме в/не в диапозоне, реализована подмена dataType c INTEGER на FLOAT ([5cccb69](https://github.com/Infomaximum/widget-sdk/commit/5cccb695c72a39bb594b0c5899fb92aa387b080c))
|
|
255
|
-
- поведение строкового фильтра по формуле приведено к поведению условия отображения ([72611bc](https://github.com/Infomaximum/widget-sdk/commit/72611bc54ebecc1402160cc876aa3252800ad218))
|
|
256
|
-
|
|
257
|
-
## [5.11.0](https://github.com/Infomaximum/widget-sdk/compare/v5.10.1...v5.11.0) (2025-03-28)
|
|
258
|
-
|
|
259
|
-
### Features
|
|
260
|
-
|
|
261
|
-
- в EFormatTypes добавлен новый тип PERCENT, удалено подкапотное умножение меры конверсия на 100 ([21a8f98](https://github.com/Infomaximum/widget-sdk/commit/21a8f9847d54992771f47abd792bd394cd013841))
|
|
262
|
-
- в getDefaultSortOrders добавлена проверка на наличии формулы ([85b2b59](https://github.com/Infomaximum/widget-sdk/commit/85b2b590c2e28e0cb52ceb473200c3ee5a1b6d6b))
|
|
263
|
-
- добавлена outerAggregation top ([0550463](https://github.com/Infomaximum/widget-sdk/commit/0550463375bc0e5b1abb2559a6da41a43cc2adb0))
|
|
264
|
-
|
|
265
|
-
### [5.10.1](https://github.com/Infomaximum/widget-sdk/compare/v5.10.0...v5.10.1) (2025-03-21)
|
|
266
|
-
|
|
267
|
-
## [5.10.0](https://github.com/Infomaximum/widget-sdk/compare/v5.9.1...v5.10.0) (2025-03-14)
|
|
268
|
-
|
|
269
|
-
### Features
|
|
270
|
-
|
|
271
|
-
- поле updateDashboard для запуска скрипта изменено с boolean на ERefreshAfterExecutionMode ([812fc42](https://github.com/Infomaximum/widget-sdk/commit/812fc423f999d89b899ff15abc6bc0c5153e6d5c))
|
|
272
|
-
- режим фильтрации MULTI помечен как deprecated ([ca06f1a](https://github.com/Infomaximum/widget-sdk/commit/ca06f1a45f09ecfe363a945d8c5961d9888f65ef))
|
|
273
|
-
|
|
274
|
-
### [5.9.1](https://github.com/Infomaximum/widget-sdk/compare/v5.9.0...v5.9.1) (2025-03-11)
|
|
275
|
-
|
|
276
|
-
### Bug Fixes
|
|
277
|
-
|
|
278
|
-
- исправлена генерация формулы меры для шаблона "Длительность" ([002562f](https://github.com/Infomaximum/widget-sdk/commit/002562f6714009464cda884b54cec97f99a0a038))
|
|
279
|
-
|
|
280
|
-
## [5.9.0](https://github.com/Infomaximum/widget-sdk/compare/v5.8.0...v5.9.0) (2025-03-03)
|
|
281
|
-
|
|
282
|
-
### Features
|
|
283
|
-
|
|
284
|
-
- добавлены шаблоны для процессных разрезов ([452af57](https://github.com/Infomaximum/widget-sdk/commit/452af57627cb34a92a6354f562d878926f443d0e))
|
|
285
|
-
|
|
286
|
-
## [5.8.0](https://github.com/Infomaximum/widget-sdk/compare/v5.7.1...v5.8.0) (2025-02-28)
|
|
287
|
-
|
|
288
|
-
### Features
|
|
289
|
-
|
|
290
|
-
- реализована возможность использовать фильтры событий для влияния на отображаемый контент в окне процессного фильтра. ([d2ccaca](https://github.com/Infomaximum/widget-sdk/commit/d2ccaca4d3a72a82f38e5773d96797b86e328527))
|
|
291
|
-
|
|
292
|
-
### [5.7.1](https://github.com/Infomaximum/widget-sdk/compare/v5.7.0...v5.7.1) (2025-02-25)
|
|
293
|
-
|
|
294
|
-
### Bug Fixes
|
|
295
|
-
|
|
296
|
-
- изменен передаваемый элемент для контекстного меню ([0edb142](https://github.com/Infomaximum/widget-sdk/commit/0edb142dc1641165a17f1ed52c7efa56801b05fc))
|
|
297
|
-
|
|
298
|
-
## [5.7.0](https://github.com/Infomaximum/widget-sdk/compare/v5.6.0...v5.7.0) (2025-02-20)
|
|
299
|
-
|
|
300
|
-
### Features
|
|
301
|
-
|
|
302
|
-
- изменено название поля с caseIdFormula в caseCaseIdFormula в режиме AGGREGATION ([44f9b9d](https://github.com/Infomaximum/widget-sdk/commit/44f9b9d965bc9548864938a2f399174de5412932))
|
|
303
|
-
|
|
304
|
-
## [5.6.0](https://github.com/Infomaximum/widget-sdk/compare/v5.5.0...v5.6.0) (2025-02-20)
|
|
305
|
-
|
|
306
|
-
### Features
|
|
307
|
-
|
|
308
|
-
- добавлен интерфейс ICollapseRecord ([3f4f926](https://github.com/Infomaximum/widget-sdk/commit/3f4f926b0ddb544b91a19b8e55ea4349f1e5c16c))
|
|
309
|
-
|
|
310
|
-
## [5.5.0](https://github.com/Infomaximum/widget-sdk/compare/v5.4.16...v5.5.0) (2025-02-20)
|
|
311
|
-
|
|
312
|
-
### Features
|
|
313
|
-
|
|
314
|
-
- во ViewContext добавлены фильтры образа ([b916db7](https://github.com/Infomaximum/widget-sdk/commit/b916db74921f7f46ca71e7984c30483e463a37c8))
|
|
315
|
-
|
|
316
|
-
### [5.4.16](https://github.com/Infomaximum/widget-sdk/compare/v5.4.15...v5.4.16) (2025-02-19)
|
|
317
|
-
|
|
318
|
-
### [5.4.15](https://github.com/Infomaximum/widget-sdk/compare/v5.4.14...v5.4.15) (2025-02-19)
|
|
319
|
-
|
|
320
|
-
### [5.4.14](https://github.com/Infomaximum/widget-sdk/compare/v5.4.13...v5.4.14) (2025-02-19)
|
|
321
|
-
|
|
322
|
-
### [5.4.13](https://github.com/Infomaximum/widget-sdk/compare/v5.4.12...v5.4.13) (2025-02-19)
|
|
323
|
-
|
|
324
|
-
### [5.4.12](https://github.com/Infomaximum/widget-sdk/compare/v5.4.11...v5.4.12) (2025-02-19)
|
|
325
|
-
|
|
326
|
-
### [5.4.11](https://github.com/Infomaximum/widget-sdk/compare/v5.4.10...v5.4.11) (2025-02-19)
|
|
327
|
-
|
|
328
|
-
### [5.4.10](https://github.com/Infomaximum/widget-sdk/compare/v5.4.9...v5.4.10) (2025-02-19)
|
|
329
|
-
|
|
330
|
-
### [5.4.9](https://github.com/Infomaximum/widget-sdk/compare/v5.4.8...v5.4.9) (2025-02-19)
|
|
331
|
-
|
|
332
|
-
### [5.4.8](https://github.com/Infomaximum/widget-sdk/compare/v5.4.7...v5.4.8) (2025-02-19)
|
|
333
|
-
|
|
334
|
-
### [5.4.7](https://github.com/Infomaximum/widget-sdk/compare/v5.4.6...v5.4.7) (2025-02-19)
|
|
335
|
-
|
|
336
|
-
### [5.4.6](https://github.com/Infomaximum/widget-sdk/compare/v5.4.5...v5.4.6) (2025-02-19)
|
|
337
|
-
|
|
338
|
-
### [5.4.5](https://github.com/Infomaximum/widget-sdk/compare/v5.4.4...v5.4.5) (2025-02-19)
|
|
339
|
-
|
|
340
|
-
### [5.4.4](https://github.com/Infomaximum/widget-sdk/compare/v5.4.3...v5.4.4) (2025-02-19)
|
|
341
|
-
|
|
342
|
-
### [5.4.3](https://github.com/Infomaximum/widget-sdk/compare/v5.4.2...v5.4.3) (2025-02-19)
|
|
343
|
-
|
|
344
|
-
### [5.4.2](https://github.com/Infomaximum/widget-sdk/compare/v5.4.1...v5.4.2) (2025-02-19)
|
|
345
|
-
|
|
346
|
-
### [5.4.1](https://github.com/Infomaximum/widget-sdk/compare/v5.4.0...v5.4.1) (2025-02-19)
|
|
347
|
-
|
|
348
|
-
## [5.4.0](https://github.com/Infomaximum/widget-sdk/compare/v5.3.0...v5.4.0) (2025-02-18)
|
|
349
|
-
|
|
350
|
-
### Features
|
|
351
|
-
|
|
352
|
-
- Добавлены типы и интерфейсы для процессных мер, добавлена функция конвертации фильтров в строку, добавлены утилитарные функции для формул ([9a3a6ed](https://github.com/Infomaximum/widget-sdk/commit/9a3a6edaf16f65fcd16c1e82fb1f387328848967))
|
|
353
|
-
|
|
354
|
-
## [5.3.0](https://github.com/Infomaximum/widget-sdk/compare/v5.2.0...v5.3.0) (2025-02-14)
|
|
355
|
-
|
|
356
|
-
### Features
|
|
357
|
-
|
|
358
|
-
- поле options переменной статический список помечено deprecated, добавлено поле labeledOptions ([264cff2](https://github.com/Infomaximum/widget-sdk/commit/264cff22c42819ff5829d6f53484d9df58993443))
|
|
359
|
-
|
|
360
|
-
## [5.2.0](https://github.com/Infomaximum/widget-sdk/compare/v5.1.0...v5.2.0) (2025-02-11)
|
|
361
|
-
|
|
362
|
-
### Features
|
|
363
|
-
|
|
364
|
-
- поле blockingCondition расширено модом по формуле и по переменной ([47fee53](https://github.com/Infomaximum/widget-sdk/commit/47fee53602c5c14efd5a3caeebeec1673aedce9d))
|
|
365
|
-
- TActionOnClickParameter расширен новыми способами ввода ([3216938](https://github.com/Infomaximum/widget-sdk/commit/3216938ebd29a35e59ae83688e1829d94a7236b3))
|
|
366
|
-
|
|
367
|
-
## [5.1.0](https://github.com/Infomaximum/widget-sdk/compare/v5.0.0...v5.1.0) (2025-01-24)
|
|
368
|
-
|
|
369
|
-
### Features
|
|
370
|
-
|
|
371
|
-
- Добавлен новый способ ввода по агрегации ([b4bffeb](https://github.com/Infomaximum/widget-sdk/commit/b4bffeb1a43029daac1d957781ee97ec83a8f578))
|
|
372
|
-
|
|
373
|
-
### Bug Fixes
|
|
374
|
-
|
|
375
|
-
- исправлено соответствие версии sdk и версии системы ([a2fc9e7](https://github.com/Infomaximum/widget-sdk/commit/a2fc9e78398f5abb4515cbeb311f44f682c6c233))
|
|
376
|
-
|
|
377
|
-
## [5.0.0](https://github.com/Infomaximum/widget-sdk/compare/v4.13.0...v5.0.0) (2025-01-16)
|
|
378
|
-
|
|
379
|
-
### ⚠ BREAKING CHANGES
|
|
380
|
-
|
|
381
|
-
- перемещены поля displayMode и filtrationMode из IGlobalContext на уровень IWidgetProps и переименованы filtrationMode в filtrationAccessibility, т.к. именование filtrationMode внутри IGlobalContext и внутри IPanelDescription обозначает разные вещи
|
|
382
|
-
- удален deprecated интерфейс TSelectFetchOptions
|
|
383
|
-
- удалены из EFormulaFilterFieldKeys поля number и duration
|
|
384
|
-
- удалены isConfigured и setConfigured из плейсхолдера виджета, вместо него нужно использовать isDisplay
|
|
385
|
-
- удалены условия отображения
|
|
386
|
-
- типы ESimpleDataType заменены на точные типы ClickHouse
|
|
387
|
-
|
|
388
|
-
### Features
|
|
389
|
-
|
|
390
|
-
- добавлен 3-й аргумент в IFillSettings с предыдущими настройками ([4e3c966](https://github.com/Infomaximum/widget-sdk/commit/4e3c966ff1c639fa3fe450c852cf1501b35cf5d5))
|
|
391
|
-
- добавлен необязательный метод getInitialSettings в интерфейс IDefinition, позволяющий получить шаблон настроек виджета, заданный пользователем ([81dba40](https://github.com/Infomaximum/widget-sdk/commit/81dba40b0eb731c1fa484e8852628356d5250838))
|
|
392
|
-
- добавлен новый тип переменной отчета "Список колонок" ([1feed0d](https://github.com/Infomaximum/widget-sdk/commit/1feed0df64570d10f2f724f48ae88dd71ce42844))
|
|
393
|
-
- добавлен экспорт типа TColorBase ([8603d04](https://github.com/Infomaximum/widget-sdk/commit/8603d047f2aee955a5a636e20d26f140f040c696))
|
|
394
|
-
- добавлено 2-й параметр с индексом индикатора ([ca23b79](https://github.com/Infomaximum/widget-sdk/commit/ca23b79307b5a973939f00f426e165c098bcc1e3))
|
|
395
|
-
- добавлено поле dbDataType в сортировки ([9ae797e](https://github.com/Infomaximum/widget-sdk/commit/9ae797e16af0caa40cc138fa5c8c4bba3fbbd74c))
|
|
396
|
-
- значения в TColumnIndicatorValue сделаны не обязательными ([a765774](https://github.com/Infomaximum/widget-sdk/commit/a765774ad0ee3e42ea4bc787ca286cf08bef6060))
|
|
397
|
-
- изменена типизация ISelectLeafOption.onSelect ([61bfbab](https://github.com/Infomaximum/widget-sdk/commit/61bfbabb4595039c05b5a196fd940cd41a773cf3))
|
|
398
|
-
- обобщенные типы ESimpleDataType заменены на точные типы ClickHouse ([8a8dc85](https://github.com/Infomaximum/widget-sdk/commit/8a8dc8547002c6562e6bb31bc92b142a6b60b93a))
|
|
399
|
-
- перемещены поля в IWidgetProps ([eba535d](https://github.com/Infomaximum/widget-sdk/commit/eba535df7545998b39c0fe4eb4442e30e17c0675))
|
|
400
|
-
- произведен отказ от условия отображения виджетов ([dc80e70](https://github.com/Infomaximum/widget-sdk/commit/dc80e701dc772388f664f07567d43a849f2368d6))
|
|
401
|
-
- расширен тип значения фильтров по формуле, получаемых виджетом, с IFormulaFilterValue до TExtendedFormulaFilterValue ([56608d3](https://github.com/Infomaximum/widget-sdk/commit/56608d3a534adc561bad77ce814d7123769c4f96))
|
|
402
|
-
- удален deprecated интерфейс ([f5d1d04](https://github.com/Infomaximum/widget-sdk/commit/f5d1d043768603c84fd70e3a511ffcd61c017b31))
|
|
403
|
-
- удалено ставшее избыточным состояние isConfigured из плейсхолдера виджета ([e105b8b](https://github.com/Infomaximum/widget-sdk/commit/e105b8b74892100d40d80745aacd3077801e7350))
|
|
404
|
-
- удалены number и duration ([8fca4cc](https://github.com/Infomaximum/widget-sdk/commit/8fca4ccd041e86ae9f64394122b903e3980ab33b))
|
|
405
|
-
|
|
406
|
-
## [4.13.0](https://github.com/Infomaximum/widget-sdk/compare/v4.11.1...v4.13.0) (2024-12-16)
|
|
407
|
-
|
|
408
|
-
## [4.12.0](https://github.com/Infomaximum/widget-sdk/compare/v4.11.0...v4.12.0) (2024-12-12)
|
|
409
|
-
|
|
410
|
-
### Features
|
|
411
|
-
|
|
412
|
-
- добавлены системные и локальные миграции виджетов ([6f2a1ec](https://github.com/Infomaximum/widget-sdk/commit/6f2a1ecd4bb04a425454699af05363e49e56f68f))
|
|
413
|
-
|
|
414
|
-
## [4.12.0](https://github.com/Infomaximum/widget-sdk/compare/v4.11.0...v4.12.0) (2024-12-12)
|
|
415
|
-
|
|
416
|
-
### Features
|
|
417
|
-
|
|
418
|
-
- добавлены системные и локальные миграции виджетов ([6f2a1ec](https://github.com/Infomaximum/widget-sdk/commit/6f2a1ecd4bb04a425454699af05363e49e56f68f))
|
|
419
|
-
|
|
420
|
-
## [4.11.0](https://github.com/Infomaximum/widget-sdk/compare/v4.10.0...v4.11.0) (2024-12-04)
|
|
421
|
-
|
|
422
|
-
### Features
|
|
423
|
-
|
|
424
|
-
- formValues и checkedValues сделаны не обязательными параметрами, убрано поле filters из настроек actions ([82e4757](https://github.com/Infomaximum/widget-sdk/commit/82e4757e68389e669e9d7afe71f32c66766966c4))
|
|
425
|
-
|
|
426
|
-
## [4.10.0](https://github.com/Infomaximum/widget-sdk/compare/v4.9.0...v4.10.0) (2024-11-27)
|
|
427
|
-
|
|
428
|
-
### Features
|
|
429
|
-
|
|
430
|
-
- TLaunchActionParams расширен методом resetAndHandleModalData ([9ef080e](https://github.com/Infomaximum/widget-sdk/commit/9ef080e1c33829ce1e593ca8b2d44bdd74e176a5))
|
|
431
|
-
|
|
432
|
-
## [4.9.0](https://github.com/Infomaximum/widget-sdk/compare/v4.8.0...v4.9.0) (2024-11-27)
|
|
433
|
-
|
|
434
|
-
### Features
|
|
435
|
-
|
|
436
|
-
- добавлено значение по умолчанию для способа ввода "Ввести вручную", переделано формирование Статического списка на yaml, добавлено поле "Отображаемый список" для способа ввода "Динамический список" ([79dda0e](https://github.com/Infomaximum/widget-sdk/commit/79dda0e7bb2269fa1390a7366cf66b2ac35f4772))
|
|
437
|
-
|
|
438
|
-
## [4.8.0](https://github.com/Infomaximum/widget-sdk/compare/v4.7.0...v4.8.0) (2024-11-22)
|
|
439
|
-
|
|
440
|
-
### Features
|
|
441
|
-
|
|
442
|
-
- добавлена возможность поиска по опциям селекта ([fa2f8d2](https://github.com/Infomaximum/widget-sdk/commit/fa2f8d2def24c8b177769a7da3b4b2f59fd0aabd))
|
|
443
|
-
|
|
444
|
-
## [4.7.0](https://github.com/Infomaximum/widget-sdk/compare/v4.6.0...v4.7.0) (2024-11-21)
|
|
445
|
-
|
|
446
|
-
### Features
|
|
447
|
-
|
|
448
|
-
- добавлена возможность фильтровать разрезы и их шаблоны по типу данных ([aa83999](https://github.com/Infomaximum/widget-sdk/commit/aa839990eb02367b7a8382c2d6ba8e2992b68d9c))
|
|
449
|
-
|
|
450
|
-
## [4.6.0](https://github.com/Infomaximum/widget-sdk/compare/v4.5.0...v4.6.0) (2024-11-20)
|
|
451
|
-
|
|
452
|
-
### Features
|
|
453
|
-
|
|
454
|
-
- Добавлено поле isValueShared для типа пользовательских переменных ([6e9137d](https://github.com/Infomaximum/widget-sdk/commit/6e9137d1962e60b573e86f9ae49ec0183fefa58f))
|
|
455
|
-
|
|
456
|
-
## [4.5.0](https://github.com/Infomaximum/widget-sdk/compare/v4.4.1...v4.5.0) (2024-11-14)
|
|
457
|
-
|
|
458
|
-
### Features
|
|
459
|
-
|
|
460
|
-
- добавлена палитра системных цветов и метод получения цвета. В IWidgetAction добавлены поля для окрашивания кнопок запуска ([f0fdedd](https://github.com/Infomaximum/widget-sdk/commit/f0fdedd0a1e8651737f0661c1637e990eac90e65))
|
|
461
|
-
|
|
462
|
-
### [4.4.1](https://github.com/Infomaximum/widget-sdk/compare/v4.4.0...v4.4.1) (2024-11-13)
|
|
463
|
-
|
|
464
|
-
## [4.4.0](https://github.com/Infomaximum/widget-sdk/compare/v4.3.1...v4.4.0) (2024-11-12)
|
|
465
|
-
|
|
466
|
-
### Features
|
|
467
|
-
|
|
468
|
-
- переработан интерфейс расширенных настроек виджетов ([cd82b1f](https://github.com/Infomaximum/widget-sdk/commit/cd82b1f17ac56bf39eb04e43f98c531c8eeaf083))
|
|
469
|
-
|
|
470
|
-
### [4.3.1](https://github.com/Infomaximum/widget-sdk/compare/v4.3.0...v4.3.1) (2024-11-05)
|
|
471
|
-
|
|
472
|
-
### Bug Fixes
|
|
473
|
-
|
|
474
|
-
- sdk_version не обязательно может быть указан в манифесте ([1d7c0a9](https://github.com/Infomaximum/widget-sdk/commit/1d7c0a976bef736ff98be2c07f457edd3bc6d46d))
|
|
475
|
-
|
|
476
|
-
## [4.3.0](https://github.com/Infomaximum/widget-sdk/compare/v4.2.1...v4.3.0) (2024-11-05)
|
|
477
|
-
|
|
478
|
-
### Features
|
|
479
|
-
|
|
480
|
-
- добавлено поле blockingCondition для IWidgetAction ([bbc05ef](https://github.com/Infomaximum/widget-sdk/commit/bbc05ef0eb14eb9612498abc29d587928b2dbbc8))
|
|
481
|
-
- упрощен метод mapSortingToInputs, добавлен фасад prepareSortOrders ([0fb7a2a](https://github.com/Infomaximum/widget-sdk/commit/0fb7a2ae04ab3da1ecfb96876aeaa5fe9ee116d0))
|
|
482
|
-
|
|
483
|
-
### [4.2.1](https://github.com/Infomaximum/widget-sdk/compare/v4.2.0...v4.2.1) (2024-11-02)
|
|
484
|
-
|
|
485
|
-
## [4.2.0](https://github.com/Infomaximum/widget-sdk/compare/v4.1.0...v4.2.0) (2024-10-29)
|
|
486
|
-
|
|
487
|
-
### Features
|
|
488
|
-
|
|
489
|
-
- добавлен новый mode "EMPTY" для открытия образа в плейсхолдере ([acfbe2d](https://github.com/Infomaximum/widget-sdk/commit/acfbe2dd63f508652ae5069572cf5207c87c5156))
|
|
490
|
-
- isExecuteScriptActionValid вынесена в систему. Функция валидации действий по клику добавлена в пропсы виджет ([0edc460](https://github.com/Infomaximum/widget-sdk/commit/0edc46014f65a4637bb7fac49f62f996f9ed4f5e))
|
|
491
|
-
|
|
492
|
-
## [4.1.0](https://github.com/Infomaximum/widget-sdk/compare/v4.0.0...v4.1.0) (2024-10-17)
|
|
493
|
-
|
|
494
|
-
### Features
|
|
495
|
-
|
|
496
|
-
- добавлен новый контрол "formatting", добавлен конфиг с форматированием "formattingConfig", вынесен ключ системного поля "formatting" в ESystemRecordKey ([89ee974](https://github.com/Infomaximum/widget-sdk/commit/89ee974f786232ad30b0bf73b6f13289c153afdf))
|
|
497
|
-
|
|
498
|
-
## [4.0.0](https://github.com/Infomaximum/widget-sdk/compare/v3.40.2...v4.0.0) (2024-10-03)
|
|
499
|
-
|
|
500
|
-
### ⚠ BREAKING CHANGES
|
|
501
|
-
|
|
502
|
-
- изменено поле интерфейса
|
|
503
|
-
- требуется поддержка в виджетах
|
|
504
|
-
- изменена структура настроек виджетов
|
|
505
|
-
- изменена структура настроек виджетов
|
|
506
|
-
- изменена структура настроек виджетов
|
|
507
|
-
- изменена структура настроек виджетов
|
|
508
|
-
- изменена структура настроек виджетов
|
|
509
|
-
- удален VARIABLE из EWidgetIndicatorType
|
|
510
|
-
- переименованы поля в настройках отвечающие за отображение хедера
|
|
511
|
-
- старая версия функции mapFormulaFiltersToInputs не сможет работать с новым форматом фильтров
|
|
512
|
-
- функция isActionValid заменена на isExecuteScriptActionValid
|
|
513
|
-
- изменен порядок аргументов
|
|
514
|
-
- переименовано поле имени переменной (name -> sourceVariable)
|
|
515
|
-
|
|
516
|
-
### Features
|
|
517
|
-
|
|
518
|
-
- добавлено поле tooltip для кастомной кнопки в контекстном меню ([af1dfa6](https://github.com/Infomaximum/widget-sdk/commit/af1dfa610673a68f47b3491dd3729f7bb877f4fe))
|
|
519
|
-
- добавлено поле tooltip для кастомной кнопки в контекстном меню ([1d7d3f2](https://github.com/Infomaximum/widget-sdk/commit/1d7d3f272fdb97a19bd7ca0a3157bd01233e2295))
|
|
520
|
-
- убрано поле onClose из корня конфига меню ([47148e3](https://github.com/Infomaximum/widget-sdk/commit/47148e38c0f7a5d5c6165be8c8ad4ba5d637961b))
|
|
521
|
-
- в интерфейс фильтра добавлен флаг isReadonly ([f928d47](https://github.com/Infomaximum/widget-sdk/commit/f928d470260df98222723bf9f3d42b3ac485d8e7))
|
|
522
|
-
- в интерфейс IWidgetColumnIndicator добавлено поле 'onclick' ([ce67458](https://github.com/Infomaximum/widget-sdk/commit/ce674580a110b089adb00474f8f9066818891d21))
|
|
523
|
-
- в ответ вычислителей добавлен тип данных показателей ([a6fbcd2](https://github.com/Infomaximum/widget-sdk/commit/a6fbcd216da9e1ef021c7b372123211656a7c983))
|
|
524
|
-
- в переменные временно добавлен guid для работы миграций ([768fbe6](https://github.com/Infomaximum/widget-sdk/commit/768fbe6e36fe728a00bb2651fae9ba15e1a85db4))
|
|
525
|
-
- в скрипт добавлен guid для работы миграций ([db9c8f3](https://github.com/Infomaximum/widget-sdk/commit/db9c8f39ff426ae707b2d1a3492042e9d17434ca))
|
|
526
|
-
- В IPanelDescription добавлены поля filtrationRecords и filtrationModes ([fe0f1e6](https://github.com/Infomaximum/widget-sdk/commit/fe0f1e626ab4d01e86998ce5d21fe00087d0bad1))
|
|
527
|
-
- в IStagesFilterItem добавлено поле id ([4e84bad](https://github.com/Infomaximum/widget-sdk/commit/4e84bad4987bcc076db05d08debdfceb63058b86))
|
|
528
|
-
- в widgetsContext добавлена информация о guid состояний и общих мер ([6b4ccac](https://github.com/Infomaximum/widget-sdk/commit/6b4ccac54820972f20d736f8a0251a43472ee899))
|
|
529
|
-
- внесены изменения по итогам ревизии системы перед выпуском 2408 ([b6a48ab](https://github.com/Infomaximum/widget-sdk/commit/b6a48ab7c949f0d1d32678d8bd838a067d8ffdca))
|
|
530
|
-
- добавлен метод для установки минимальной высоты рабочей области ([54e0967](https://github.com/Infomaximum/widget-sdk/commit/54e0967fdfa3e70eb991bdba6810963aa4ba50e6))
|
|
531
|
-
- добавлен мод EMPTY для плейсхолдеров ([f263e77](https://github.com/Infomaximum/widget-sdk/commit/f263e7798a47fb38147112a9aa9ec7fdb851b2da))
|
|
532
|
-
- добавлен параметр formatting для метода getFormattedValue ([b457240](https://github.com/Infomaximum/widget-sdk/commit/b45724048f58c011200a7b03374d5de4b100b888))
|
|
533
|
-
- добавлен core-js для запуска тестов при линковке к проекту ([958f1ac](https://github.com/Infomaximum/widget-sdk/commit/958f1aca99312d1f20ef76966e5f752fce91957f))
|
|
534
|
-
- добавлен EControlType -> size ([df2408d](https://github.com/Infomaximum/widget-sdk/commit/df2408d664ee4e9697f98167f42d7040c52e2e7a))
|
|
535
|
-
- добавлен enum EUnitType ([5cdfac9](https://github.com/Infomaximum/widget-sdk/commit/5cdfac9e0a5b192a7d21267aa1a5a429691fe6f1))
|
|
536
|
-
- добавлен viewContext в пропсы виджета ([a4402e3](https://github.com/Infomaximum/widget-sdk/commit/a4402e32fb484e6dbccacd9f3d4a2fa4f9b388de))
|
|
537
|
-
- добавлена настройка цвета и жирности заголовка ([c574704](https://github.com/Infomaximum/widget-sdk/commit/c57470443d72febdca3a48b18d411dfc511c5d1c))
|
|
538
|
-
- добавлено необязательное поле classCount для типа TColor в режиме градиент ([4b06961](https://github.com/Infomaximum/widget-sdk/commit/4b06961e0411a51647877f49ebe903dd61cfc51b))
|
|
539
|
-
- добавлено поле filtrationMode и соответствующий тип в интерфейс IWidgetComntext ([bd5fb42](https://github.com/Infomaximum/widget-sdk/commit/bd5fb426af400769002c74687d658377b67de997))
|
|
540
|
-
- добавлено поле marginTop ([496c341](https://github.com/Infomaximum/widget-sdk/commit/496c34158b2dc02d18c99da649bba461793a3703))
|
|
541
|
-
- добавлено поле offset для ITwoLimitsCalculatorInput ([a6ce920](https://github.com/Infomaximum/widget-sdk/commit/a6ce9204b2adf1dad036489167321633b4c0ef39))
|
|
542
|
-
- добавлены интерфейсы для расширенных настроек ([23bef51](https://github.com/Infomaximum/widget-sdk/commit/23bef51b1d475e1ac4693789720e3d2a357d9fc9))
|
|
543
|
-
- добавлены общие разрезы в IWidgetsContext ([d9b537a](https://github.com/Infomaximum/widget-sdk/commit/d9b537a830a4b2f6bef914ec2a0977679354ce5f))
|
|
544
|
-
- добавлены ожидаемые поля для действия 'Открытие образа' ([9b9f84d](https://github.com/Infomaximum/widget-sdk/commit/9b9f84decfb89604176a5c260c551a842fafb117))
|
|
545
|
-
- добавлены параметры кастомных контейнеров для контекстного меню ([adab413](https://github.com/Infomaximum/widget-sdk/commit/adab41383b7ace396732474c13ccadf695d9914f))
|
|
546
|
-
- добавлены системные переменные в GlobalContext и удалены не актуальные интерфейсы ICalculatorVariable, ICalculatorVariablesValues ([a6f43d9](https://github.com/Infomaximum/widget-sdk/commit/a6f43d97e175fe0239b2cf5c7d0a152387ed88ca))
|
|
547
|
-
- добавлены системные переменные в GlobalContext и удалены не актуальные интерфейсы ICalculatorVariable, ICalculatorVariablesValues ([8005a3f](https://github.com/Infomaximum/widget-sdk/commit/8005a3fb211a1528526db49b1c74ed4b96ef8d62))
|
|
548
|
-
- добавлены типы для контекстного меню виджета ([b7261d8](https://github.com/Infomaximum/widget-sdk/commit/b7261d8f901ad4fc61f9b520a24676bb90a0e93f))
|
|
549
|
-
- из вычислителей удален параметр inputVariables ([9f8e2e8](https://github.com/Infomaximum/widget-sdk/commit/9f8e2e81ee856684c33f083327f44e39ebe27e04))
|
|
550
|
-
- из settings виджета удалены поля type и apiVersion ([f526c3a](https://github.com/Infomaximum/widget-sdk/commit/f526c3a45d8cb77aa2e9b66ddfae647fae8e70f5))
|
|
551
|
-
- изменена структура действий ([92e60ff](https://github.com/Infomaximum/widget-sdk/commit/92e60ff86437f9312d10957dffb2f06a36b08630))
|
|
552
|
-
- изменена структура действия, чтобы избежать конфликта поля имени переменной с полем имени входящего значения ([92923f4](https://github.com/Infomaximum/widget-sdk/commit/92923f4a3c61ed27e375e7f9a4f71a9c962cc48f))
|
|
553
|
-
- изменена структура yaml для "Действия" и "Запуска действия по клику" ([dac352c](https://github.com/Infomaximum/widget-sdk/commit/dac352c74ee2c3fa52c02aa71840993830b408e6))
|
|
554
|
-
- отказ от ILaunchActionSubscribers ([5b91ffd](https://github.com/Infomaximum/widget-sdk/commit/5b91ffd4d6ac77626bd0027046f262ef62e54225))
|
|
555
|
-
- переименован заголовок виджета в мета-описании с header на title ([ea080c1](https://github.com/Infomaximum/widget-sdk/commit/ea080c155b40673c321548b1c40ca2b2c517ae70))
|
|
556
|
-
- переименована настройка заголовка виджета ([00c1351](https://github.com/Infomaximum/widget-sdk/commit/00c1351ccbc83ea22b3be066e8a0a2542df17992))
|
|
557
|
-
- поле viewKeyByName заменено на viewNameByKey в IWidgetsContext ([dd5215a](https://github.com/Infomaximum/widget-sdk/commit/dd5215a916d89e15cda8dcfc591fd59194e0774d))
|
|
558
|
-
- расширен интерфейсIGroupSetDescription полями isRemovable isDraggable marginTop ([6defb62](https://github.com/Infomaximum/widget-sdk/commit/6defb62db6ac572a39a202209be7e5bd56a75da4))
|
|
559
|
-
- расширен метод launchAction. Теперь он возвращает объект ILaunchActionSubscribers ([3136e82](https://github.com/Infomaximum/widget-sdk/commit/3136e82f55a8c50cff3039397e305f5a7fc686ad))
|
|
560
|
-
- расширен IMeasureMenuConfig ([9b1352c](https://github.com/Infomaximum/widget-sdk/commit/9b1352cda10f701b727316139a9ea62d6c89185b))
|
|
561
|
-
- расширена логика валидации необязательных полей скриптов ([db2ef22](https://github.com/Infomaximum/widget-sdk/commit/db2ef22bfeebab792f45f3361505ce0ddfb669fd))
|
|
562
|
-
- строковый фильтр переделан в объект ([f5bea85](https://github.com/Infomaximum/widget-sdk/commit/f5bea851b4a3e972972d93e7e914894bb66b2f99))
|
|
563
|
-
- удален VARIABLE из EWidgetIndicatorType ([e648405](https://github.com/Infomaximum/widget-sdk/commit/e648405bcb4bfcdeb5d734348681a84d92d8301b))
|
|
564
|
-
|
|
565
|
-
### Bug Fixes
|
|
566
|
-
|
|
567
|
-
- исправлен тип для options в IMeasureMenuConfig ([884c900](https://github.com/Infomaximum/widget-sdk/commit/884c9005956be2fc793914ecec1fc1b468e098d7))
|
|
568
|
-
- исправлен типы TSelectChildOptions и TSelectFetchOptions ([944e074](https://github.com/Infomaximum/widget-sdk/commit/944e0743b0e7ae096ab82854efdaff0d90e9eefb))
|
|
569
|
-
- переименовано поле onclick на onClick ([d222d35](https://github.com/Infomaximum/widget-sdk/commit/d222d35d033b94eba4a880efb97c651db0aa47a9))
|
|
570
|
-
- поле placeholderValues сделано обязательным ([97e53a1](https://github.com/Infomaximum/widget-sdk/commit/97e53a1512edf634920f30d076edc9610ea257a6))
|
|
571
|
-
- circular dependency ([9f2cc5a](https://github.com/Infomaximum/widget-sdk/commit/9f2cc5ae42a215616ac2ee11b966e3b7d6d62e04))
|
|
572
|
-
- **IGlobalContext:** исправлена стуктура мер пространства ([2e20966](https://github.com/Infomaximum/widget-sdk/commit/2e2096668cad2b6053215297e46d892ab6108f6e))
|
|
573
|
-
- **parseIndicatorLink:** поддержано удаление экранов из имен показателей ([584318d](https://github.com/Infomaximum/widget-sdk/commit/584318da3515338328326c60fc2ba672c3d566ae))
|
|
574
|
-
|
|
575
|
-
- изменен формат сортировок. ([8a0b8cd](https://github.com/Infomaximum/widget-sdk/commit/8a0b8cdada2b25541122b6da39df3c30bc7168ed))
|
|
576
|
-
- изменена структура настроек цвета ([96f9990](https://github.com/Infomaximum/widget-sdk/commit/96f9990661d337834889f8c0608ca4d58c75e3f5))
|
|
577
|
-
- изменены значения count у ETransitionMeasureTemplateNames и EEventMeasureTemplateNames ([fe3f5e7](https://github.com/Infomaximum/widget-sdk/commit/fe3f5e70e48bee300c4c8b498178b8de41a8d496))
|
|
578
|
-
- поле TUNE переименовано на CUSTOM в EFormattingPresets ([d38edc6](https://github.com/Infomaximum/widget-sdk/commit/d38edc6f34b6c9920c23ef753b0f5c37643d402b))
|
|
579
|
-
- удалено поле type у показателей и заменено поле dimensions на hierarchyDimensions у иерархий ([a5a22a7](https://github.com/Infomaximum/widget-sdk/commit/a5a22a75f46a37ada0dd8526077362c84a63d990))
|
|
580
|
-
|
|
581
|
-
## [4.0.0-beta16](https://github.com/Infomaximum/widget-sdk/compare/v4.0.0-beta14...v4.0.0-beta16) (2024-04-25)
|
|
582
|
-
|
|
583
|
-
### Features
|
|
584
|
-
|
|
585
|
-
- добавлены поля isOpenInCurrentWindow и viewKeyByName ([a9e6e77](https://github.com/Infomaximum/widget-sdk/commit/a9e6e77edd53fa15c36917fcf8e0733143aa47c5))
|
|
586
|
-
|
|
587
|
-
## [4.0.0-beta14](https://github.com/Infomaximum/widget-sdk/compare/v3.28.0...v4.0.0-beta14) (2024-04-19)
|
|
588
|
-
|
|
589
|
-
### Features
|
|
590
|
-
|
|
591
|
-
- изменена типизация для запуска действий ([1378579](https://github.com/Infomaximum/widget-sdk/commit/13785792b97f965dabf3c0771d09dba16dfd7309))
|
|
592
|
-
- поддержана завязка на name у сущностей ([a8053bd](https://github.com/Infomaximum/widget-sdk/commit/a8053bd4d1512239863428d7ea0247c6d240778a))
|
|
593
|
-
- произведен отказ от placement виджетов в пользу позиционирования на layout. ([119f7d8](https://github.com/Infomaximum/widget-sdk/commit/119f7d80ddf4100b8810a22f333474827e132390))
|
|
594
|
-
|
|
595
|
-
### [3.40.2](https://github.com/Infomaximum/widget-sdk/compare/v3.40.1...v3.40.2) (2024-09-18)
|
|
596
|
-
|
|
597
|
-
### [3.40.1](https://github.com/Infomaximum/widget-sdk/compare/v3.40.0...v3.40.1) (2024-09-18)
|
|
598
|
-
|
|
599
|
-
## [3.40.0](https://github.com/Infomaximum/widget-sdk/compare/v3.39.0...v3.40.0) (2024-09-06)
|
|
600
|
-
|
|
601
|
-
### Features
|
|
602
|
-
|
|
603
|
-
- добавлен core-js для запуска тестов при линковке к проекту ([1d29cf7](https://github.com/Infomaximum/widget-sdk/commit/1d29cf7dab9e478a91c6f553c2a474a609ddd016))
|
|
604
|
-
- добавлена логика по автосортировкам ([934123d](https://github.com/Infomaximum/widget-sdk/commit/934123d13ce57c41ed3bc9bdc846960e8055cd8a))
|
|
605
|
-
|
|
606
|
-
## [3.39.0](https://github.com/Infomaximum/widget-sdk/compare/v3.38.0...v3.39.0) (2024-07-30)
|
|
607
|
-
|
|
608
|
-
### Features
|
|
609
|
-
|
|
610
|
-
- добавлен 3-й параметр в createPanelDescription ([4fa7485](https://github.com/Infomaximum/widget-sdk/commit/4fa74856814200d30fc0d62a3775230920280504))
|
|
611
|
-
|
|
612
|
-
### Bug Fixes
|
|
613
|
-
|
|
614
|
-
- изменен тип onSelect ([bbcba71](https://github.com/Infomaximum/widget-sdk/commit/bbcba71f1ebef5ab90a54dfb8c36d1e0e05fcf8f))
|
|
615
|
-
|
|
616
|
-
## [3.38.0](https://github.com/Infomaximum/widget-sdk/compare/v3.37.1...v3.38.0) (2024-07-09)
|
|
617
|
-
|
|
618
|
-
### Features
|
|
619
|
-
|
|
620
|
-
- расширены интерфейсы процессных фильтров ([5d40ffe](https://github.com/Infomaximum/widget-sdk/commit/5d40ffe21fd474d39a21119722218976c5e21749))
|
|
621
|
-
|
|
622
|
-
### [3.37.1](https://github.com/Infomaximum/widget-sdk/compare/v3.37.0...v3.37.1) (2024-06-20)
|
|
623
|
-
|
|
624
|
-
### Bug Fixes
|
|
625
|
-
|
|
626
|
-
- поле placeholderValues сделано обязательным ([f66884b](https://github.com/Infomaximum/widget-sdk/commit/f66884bcb0be309038e48c59faa8d6bda36c6663))
|
|
627
|
-
|
|
628
|
-
## [3.37.0](https://github.com/Infomaximum/widget-sdk/compare/v3.36.0...v3.37.0) (2024-06-11)
|
|
629
|
-
|
|
630
|
-
### Features
|
|
631
|
-
|
|
632
|
-
- Добавлена типизация для кастомного показателя ([09f8a29](https://github.com/Infomaximum/widget-sdk/commit/09f8a293afdea68e28d277e733a54bf2d35ded75))
|
|
633
|
-
|
|
634
|
-
## [3.36.0](https://github.com/Infomaximum/widget-sdk/compare/v3.35.0...v3.36.0) (2024-06-07)
|
|
635
|
-
|
|
636
|
-
### Features
|
|
637
|
-
|
|
638
|
-
- добавлены фильтры для ввода из динамического списка, наименование полей действия и возможность их скрывать ([377df22](https://github.com/Infomaximum/widget-sdk/commit/377df22605c12a144e6729f21d6b3422563cf276))
|
|
639
|
-
|
|
640
|
-
## [3.35.0](https://github.com/Infomaximum/widget-sdk/compare/v3.34.2...v3.35.0) (2024-06-05)
|
|
641
|
-
|
|
642
|
-
### Features
|
|
643
|
-
|
|
644
|
-
- добавлены параметр overlay для placeholder и placeholderValues для IWidgetProps ([9b66e8f](https://github.com/Infomaximum/widget-sdk/commit/9b66e8f394469b94836e1f5d3ff607ed2ebab819))
|
|
645
|
-
|
|
646
|
-
### [3.34.2](https://github.com/Infomaximum/widget-sdk/compare/v3.34.0...v3.34.2) (2024-05-30)
|
|
647
|
-
|
|
648
|
-
## [3.34.0](https://github.com/Infomaximum/widget-sdk/compare/v3.33.0...v3.34.0) (2024-05-23)
|
|
649
|
-
|
|
650
|
-
### Features
|
|
651
|
-
|
|
652
|
-
- добавлен метод для запроса колонок по имени таблицы в widgetsContext ([dac9cd1](https://github.com/Infomaximum/widget-sdk/commit/dac9cd1a9713d9f995f98149e7111180eae4c240))
|
|
653
|
-
|
|
654
|
-
## [3.33.0](https://github.com/Infomaximum/widget-sdk/compare/v3.32.0...v3.33.0) (2024-05-16)
|
|
655
|
-
|
|
656
|
-
### Features
|
|
657
|
-
|
|
658
|
-
- в ISelectOption добавлено поле disabled ([8920d7a](https://github.com/Infomaximum/widget-sdk/commit/8920d7a5edfa968d264f3d322361ab8fecb4ddb2))
|
|
659
|
-
|
|
660
|
-
## [3.32.0](https://github.com/Infomaximum/widget-sdk/compare/v3.31.0...v3.32.0) (2024-05-15)
|
|
661
|
-
|
|
662
|
-
### Features
|
|
663
|
-
|
|
664
|
-
- в props виджета добавлен persistValue ([50b4704](https://github.com/Infomaximum/widget-sdk/commit/50b4704cfca20d40419f6d056fab4588547cc0bf))
|
|
665
|
-
|
|
666
|
-
## [3.31.0](https://github.com/Infomaximum/widget-sdk/compare/v3.30.0...v3.31.0) (2024-05-02)
|
|
667
|
-
|
|
668
|
-
### Features
|
|
669
|
-
|
|
670
|
-
- изменен интерфейс для вычислителя типа ([f6462f2](https://github.com/Infomaximum/widget-sdk/commit/f6462f2c24f970e7e194244a8af467b622e9f56a))
|
|
671
|
-
|
|
672
|
-
## [3.30.0](https://github.com/Infomaximum/widget-sdk/compare/v3.29.0...v3.30.0) (2024-04-27)
|
|
673
|
-
|
|
674
|
-
### Features
|
|
675
|
-
|
|
676
|
-
- добавлен параметр для конфигурации выпадающего меню ([369660e](https://github.com/Infomaximum/widget-sdk/commit/369660e5ca4ff05fdb2ce2eee161c6693361c0db))
|
|
677
|
-
|
|
678
|
-
## [3.29.0](https://github.com/Infomaximum/widget-sdk/compare/v3.28.0...v3.29.0) (2024-04-27)
|
|
679
|
-
|
|
680
|
-
### Features
|
|
681
|
-
|
|
682
|
-
- убрано экранирование тире в функции escapeSpecialCharacters ([b8864a1](https://github.com/Infomaximum/widget-sdk/commit/b8864a16f62cae7ebc494d0a5204fb3b3d727809))
|
|
683
|
-
|
|
684
|
-
## [3.28.0](https://github.com/Infomaximum/widget-sdk/compare/v3.27.1...v3.28.0) (2024-04-19)
|
|
685
|
-
|
|
686
|
-
### Features
|
|
687
|
-
|
|
688
|
-
- Добавлены типы для правил отображения ([fd1198f](https://github.com/Infomaximum/widget-sdk/commit/fd1198f73815ec5309468cbbaf806a76908af2e3))
|
|
689
|
-
|
|
690
|
-
### [3.27.1](https://github.com/Infomaximum/widget-sdk/compare/v3.27.0...v3.27.1) (2024-04-18)
|
|
691
|
-
|
|
692
|
-
## [3.27.0](https://github.com/Infomaximum/widget-sdk/compare/v3.26.0...v3.27.0) (2024-04-18)
|
|
693
|
-
|
|
694
|
-
### Features
|
|
695
|
-
|
|
696
|
-
- добавлена типизация для markdown виджетов ([b1de8e0](https://github.com/Infomaximum/widget-sdk/commit/b1de8e0c0cde294d0f8c1b4dcc5b61357d9f7b4e))
|
|
697
|
-
- Добавлены типы для правил отображения ([dcfe405](https://github.com/Infomaximum/widget-sdk/commit/dcfe405ee4072fad25df24d66f74e1ef01b2377c))
|
|
698
|
-
- повышена версия пакета ([382d51b](https://github.com/Infomaximum/widget-sdk/commit/382d51b34d4cb0e21e89e9e0b1864e77b174d1e9))
|
|
699
|
-
|
|
700
|
-
## [3.26.0](https://github.com/Infomaximum/widget-sdk/compare/v3.24.1...v3.26.0) (2024-04-18)
|
|
701
|
-
|
|
702
|
-
### Features
|
|
703
|
-
|
|
704
|
-
- добавлен новый EControlType ([3730334](https://github.com/Infomaximum/widget-sdk/commit/3730334a3a496d671a2636d703fe74f0fb97deb5))
|
|
705
|
-
- поддержано условие отображения сортировок для пункта "в компоненте" ([4289043](https://github.com/Infomaximum/widget-sdk/commit/4289043b5aa9388a7611e20ab6f1c84c4e9fe2ff))
|
|
706
|
-
|
|
707
|
-
### Bug Fixes
|
|
708
|
-
|
|
709
|
-
- изменена вилидация запуска скрипта со способом ввода "Из переменной" ([53b8cfb](https://github.com/Infomaximum/widget-sdk/commit/53b8cfbc23898a52d8944e87bb0542b6d571439f))
|
|
710
|
-
|
|
711
|
-
### [3.25.1](https://github.com/Infomaximum/widget-sdk/compare/v3.25.0...v3.25.1) (2024-04-11)
|
|
712
|
-
|
|
713
|
-
### Bug Fixes
|
|
714
|
-
|
|
715
|
-
- изменена вилидация запуска скрипта со способом ввода "Из переменной" ([53b8cfb](https://github.com/Infomaximum/widget-sdk/commit/53b8cfbc23898a52d8944e87bb0542b6d571439f))
|
|
716
|
-
|
|
717
|
-
## [3.25.0](https://github.com/Infomaximum/widget-sdk/compare/v3.24.1...v3.25.0) (2024-04-03)
|
|
718
|
-
|
|
719
|
-
### Features
|
|
720
|
-
|
|
721
|
-
- добавлен новый EControlType ([3730334](https://github.com/Infomaximum/widget-sdk/commit/3730334a3a496d671a2636d703fe74f0fb97deb5))
|
|
722
|
-
|
|
723
|
-
### [3.24.1](https://github.com/Infomaximum/widget-sdk/compare/v3.24.0...v3.24.1) (2024-04-02)
|
|
724
|
-
|
|
725
|
-
## [3.24.0](https://github.com/Infomaximum/widget-sdk/compare/v3.23.0...v3.24.0) (2024-04-02)
|
|
726
|
-
|
|
727
|
-
### Features
|
|
728
|
-
|
|
729
|
-
- добавлена фильтрация по этапам ([deb1d75](https://github.com/Infomaximum/widget-sdk/commit/deb1d7577b433e560713ee91a6a1d0909d295192))
|
|
730
|
-
- поддержаны значения null для checkedValues в фильтре ([1c856dd](https://github.com/Infomaximum/widget-sdk/commit/1c856ddaee1d8fba2301d00be18471e91444c4ed))
|
|
731
|
-
|
|
732
|
-
## [3.23.0](https://github.com/Infomaximum/widget-sdk/compare/v3.22.0...v3.23.0) (2024-03-28)
|
|
733
|
-
|
|
734
|
-
### Features
|
|
735
|
-
|
|
736
|
-
- Добавлен новый EControlType ([35ccdb2](https://github.com/Infomaximum/widget-sdk/commit/35ccdb27c57b21a189eabe07c2587d99d2e21264))
|
|
737
|
-
- добавлен параметр функции launchAction ([d97a8c8](https://github.com/Infomaximum/widget-sdk/commit/d97a8c895719ba1077ec6d7b9cd63570da9a4fea))
|
|
738
|
-
|
|
739
|
-
### Bug Fixes
|
|
740
|
-
|
|
741
|
-
- путь импорта ([6d945e1](https://github.com/Infomaximum/widget-sdk/commit/6d945e1c93353eefddb89a3bf86b031caf3e2eca))
|
|
742
|
-
|
|
743
|
-
## [3.22.0](https://github.com/Infomaximum/widget-sdk/compare/v3.21.0...v3.22.0) (2024-03-27)
|
|
744
|
-
|
|
745
|
-
### Features
|
|
746
|
-
|
|
747
|
-
- в ICalculatorIndicatorInput добавлено поле dataType ([3929406](https://github.com/Infomaximum/widget-sdk/commit/3929406e2bed4c6fca9b80a70367a037b824e926))
|
|
748
|
-
|
|
749
|
-
### Bug Fixes
|
|
750
|
-
|
|
751
|
-
- добавлено экранирование специальных символов при генерации формулы колонки ([a7c9b06](https://github.com/Infomaximum/widget-sdk/commit/a7c9b061a689fcd8fad289e0b22feec23b8838d4))
|
|
752
|
-
|
|
753
|
-
## [3.21.0](https://github.com/Infomaximum/widget-sdk/compare/v3.20.1...v3.21.0) (2024-03-25)
|
|
754
|
-
|
|
755
|
-
### Features
|
|
756
|
-
|
|
757
|
-
- добавлена возможность передать опции при объявлении виджета ([2f77623](https://github.com/Infomaximum/widget-sdk/commit/2f776235f8637d5f389983d5177855cfa9139f41))
|
|
758
|
-
- добавлено поле icon в интерфейс IDefinition ([e8b191c](https://github.com/Infomaximum/widget-sdk/commit/e8b191c8adb65c1e053d6cc668f48fae875c20d4))
|
|
759
|
-
|
|
760
|
-
### [3.20.1](https://github.com/Infomaximum/widget-sdk/compare/v3.20.0...v3.20.1) (2024-03-22)
|
|
761
|
-
|
|
762
|
-
## [3.20.0](https://github.com/Infomaximum/widget-sdk/compare/v3.19.1...v3.20.0) (2024-03-19)
|
|
763
|
-
|
|
764
|
-
### Features
|
|
765
|
-
|
|
766
|
-
- новый тип контрола ([2f7e7a4](https://github.com/Infomaximum/widget-sdk/commit/2f7e7a43b389c7a90764045280bb5b4ef9058e99))
|
|
767
|
-
|
|
768
|
-
### [3.19.1](https://github.com/Infomaximum/widget-sdk/compare/v3.19.0...v3.19.1) (2024-03-11)
|
|
769
|
-
|
|
770
|
-
### Bug Fixes
|
|
771
|
-
|
|
772
|
-
- исправлены условия отображения для двух и более виджетов ([0320a14](https://github.com/Infomaximum/widget-sdk/commit/0320a1432579ee6c461077530eed01a69a4085cf))
|
|
773
|
-
|
|
774
|
-
## [3.19.0](https://github.com/Infomaximum/widget-sdk/compare/v3.18.0...v3.19.0) (2024-03-07)
|
|
775
|
-
|
|
776
|
-
### Features
|
|
777
|
-
|
|
778
|
-
- добавлены новые способы форматирования для дат ([13745a3](https://github.com/Infomaximum/widget-sdk/commit/13745a38ba19926f73a0692647bc9aa7aee1cc15))
|
|
779
|
-
- поддержана фильтрация по null значениям ([f9990e4](https://github.com/Infomaximum/widget-sdk/commit/f9990e43d74335c38937e57b01d0300ffd46799f))
|
|
780
|
-
|
|
781
|
-
## [3.18.0](https://github.com/Infomaximum/widget-sdk/compare/v3.17.0...v3.18.0) (2024-03-05)
|
|
782
|
-
|
|
783
|
-
### Features
|
|
784
|
-
|
|
785
|
-
- добавлено поле currentSDKVersion, window.im.defineWidget - устарело ([11c01a2](https://github.com/Infomaximum/widget-sdk/commit/11c01a266dce54f939d270d315409f0398813194))
|
|
786
|
-
|
|
787
|
-
## [3.17.0](https://github.com/Infomaximum/widget-sdk/compare/v3.16.0...v3.17.0) (2024-03-01)
|
|
788
|
-
|
|
789
|
-
### Features
|
|
790
|
-
|
|
791
|
-
- поддержан новый тип данных Boolean ([6a10220](https://github.com/Infomaximum/widget-sdk/commit/6a10220cc662b24aaab4a042c3050fc70a696335))
|
|
792
|
-
|
|
793
|
-
## [3.16.0](https://github.com/Infomaximum/widget-sdk/compare/v3.15.1...v3.16.0) (2024-03-01)
|
|
794
|
-
|
|
795
|
-
### Features
|
|
796
|
-
|
|
797
|
-
- добавлен alias разреза в HistogramCalculatorOutput ([b635a17](https://github.com/Infomaximum/widget-sdk/commit/b635a1761171f648edf1d840c15bf2101afa5a92))
|
|
798
|
-
|
|
799
|
-
### Bug Fixes
|
|
800
|
-
|
|
801
|
-
- реэкспорт TLocalizationDescription ([dcd4c1e](https://github.com/Infomaximum/widget-sdk/commit/dcd4c1e13ddae20d4d3186728c046f80a2e69a14))
|
|
802
|
-
|
|
803
|
-
### [3.15.1](https://github.com/Infomaximum/widget-sdk/compare/v3.15.0...v3.15.1) (2024-02-22)
|
|
804
|
-
|
|
805
|
-
### Bug Fixes
|
|
806
|
-
|
|
807
|
-
- исправлено наименование функции ([7e7bb60](https://github.com/Infomaximum/widget-sdk/commit/7e7bb6056bf01871fcbba659f41345fc56dd26f8))
|
|
808
|
-
|
|
809
|
-
## [3.15.0](https://github.com/Infomaximum/widget-sdk/compare/v3.14.0...v3.15.0) (2024-02-22)
|
|
810
|
-
|
|
811
|
-
### Features
|
|
812
|
-
|
|
813
|
-
- добавлена функция getLocalized для безопасной работы с локализацией ([62ff93c](https://github.com/Infomaximum/widget-sdk/commit/62ff93c93094063bae7dcc97b2c7f317f3d878df))
|
|
814
|
-
|
|
815
|
-
## [3.13.0](https://github.com/Infomaximum/custom-widget/compare/v3.12.1...v3.13.0) (2024-02-13)
|
|
816
|
-
|
|
817
|
-
### Features
|
|
818
|
-
|
|
819
|
-
- экспорт данных для General и TwoLimits калькуляторов ([e19332a](https://github.com/Infomaximum/custom-widget/commit/e19332a72254a71ecb8f3a29c7dc5a31c06f765f))
|
|
820
|
-
|
|
821
|
-
### Bug Fixes
|
|
822
|
-
|
|
823
|
-
- изменена структура данных для таблиц в WidgetsContext ([f32c97f](https://github.com/Infomaximum/custom-widget/commit/f32c97fff1dbb4c6fc3c9d8e88512c8afed811b1))
|
|
824
|
-
- Partial<WidgetSettings> у настроек в fillSettings ([81b4631](https://github.com/Infomaximum/custom-widget/commit/81b4631beff3cc1ccae9454f7641b9d305356a69))
|
|
825
|
-
|
|
826
|
-
### [3.12.1](https://github.com/Infomaximum/custom-widget/compare/v3.12.0...v3.12.1) (2024-02-07)
|
|
827
|
-
|
|
828
|
-
### Bug Fixes
|
|
829
|
-
|
|
830
|
-
- номера версий в которых deprecated ([2d2e8df](https://github.com/Infomaximum/custom-widget/commit/2d2e8dfc4b73caaf63a087a8841ffdecc5fdf236))
|
|
831
|
-
|
|
832
|
-
## [3.12.0](https://github.com/Infomaximum/custom-widget/compare/v3.11.1...v3.12.0) (2024-02-06)
|
|
833
|
-
|
|
834
|
-
### Features
|
|
835
|
-
|
|
836
|
-
- добавлен displayMode ([a04ae93](https://github.com/Infomaximum/custom-widget/commit/a04ae936ad79003f168c1b487f108f9651f408e3))
|
|
837
|
-
|
|
838
|
-
### [3.11.1](https://github.com/Infomaximum/custom-widget/compare/v3.11.0...v3.11.1) (2024-02-05)
|
|
839
|
-
|
|
840
|
-
### Bug Fixes
|
|
841
|
-
|
|
842
|
-
- options не обязательный пропс ([2bdaa6b](https://github.com/Infomaximum/custom-widget/commit/2bdaa6b6fe0b5361ac5947499e91ea2b8df1365e))
|
|
843
|
-
|
|
844
|
-
## [3.11.0](https://github.com/Infomaximum/custom-widget/compare/v3.10.1...v3.11.0) (2024-02-02)
|
|
845
|
-
|
|
846
|
-
### Features
|
|
847
|
-
|
|
848
|
-
- добавлена поддержка запросов options ([2296030](https://github.com/Infomaximum/custom-widget/commit/22960304c57f1e104cf86575fd513f46adf80054))
|
|
849
|
-
|
|
850
|
-
### [3.10.1](https://github.com/Infomaximum/custom-widget/compare/v3.10.0...v3.10.1) (2024-02-01)
|
|
851
|
-
|
|
852
|
-
### Bug Fixes
|
|
853
|
-
|
|
854
|
-
- EControlType.filterMode -> deprecated ([c6e7b6f](https://github.com/Infomaximum/custom-widget/commit/c6e7b6f765703d3b9fa16bfe78f833b95ba8a934))
|
|
855
|
-
|
|
856
|
-
## [3.10.0](https://github.com/Infomaximum/custom-widget/compare/v3.9.0...v3.10.0) (2024-01-15)
|
|
857
|
-
|
|
858
|
-
### Features
|
|
859
|
-
|
|
860
|
-
- добавлен EControlType -> inputMarkdown ([0846695](https://github.com/Infomaximum/custom-widget/commit/0846695c8c69ede4cbffea49e14b1b62f2205182))
|
|
861
|
-
|
|
862
|
-
## [3.9.0](https://github.com/Infomaximum/custom-widget/compare/v3.8.0...v3.9.0) (2023-12-29)
|
|
863
|
-
|
|
864
|
-
### Features
|
|
865
|
-
|
|
866
|
-
- добавлен новый режим фильтрации "Отключено" ([2ff2be3](https://github.com/Infomaximum/custom-widget/commit/2ff2be377e643dc22a009f62644ff9c088b5c7db))
|
|
867
|
-
- добавлены утилиты для работы с выделением значений разрезов ([996d01f](https://github.com/Infomaximum/custom-widget/commit/996d01f56f15c356e71e5826eae199927a2a8731))
|
|
868
|
-
|
|
869
|
-
## [3.8.0](https://github.com/Infomaximum/custom-widget/compare/v3.7.0...v3.8.0) (2023-12-25)
|
|
870
|
-
|
|
871
|
-
### Features
|
|
872
|
-
|
|
873
|
-
- в базовые настройки виджета добавлены новый режим условия отображения и комментарий условия отображения ([1195de2](https://github.com/Infomaximum/custom-widget/commit/1195de24b41d0c9e77419958e1155638cc557a17))
|
|
874
|
-
|
|
875
|
-
## [3.7.0](https://github.com/Infomaximum/custom-widget/compare/v3.6.0...v3.7.0) (2023-12-22)
|
|
876
|
-
|
|
877
|
-
### Features
|
|
878
|
-
|
|
879
|
-
- добавлена функция mapSortingToInputs ([13a4e99](https://github.com/Infomaximum/custom-widget/commit/13a4e99a24c1dd5f478c94753cfbf03d7be75b03))
|
|
880
|
-
|
|
881
|
-
## [3.6.0](https://github.com/Infomaximum/custom-widget/compare/v3.5.1...v3.6.0) (2023-12-20)
|
|
882
|
-
|
|
883
|
-
### Features
|
|
884
|
-
|
|
885
|
-
- добавлены фильтры для переменной с типом 'Динамический список' ([17c9a30](https://github.com/Infomaximum/custom-widget/commit/17c9a3028902d98d4facd8074b19c92d32193bed))
|
|
886
|
-
|
|
887
|
-
### [3.5.1](https://github.com/Infomaximum/custom-widget/compare/v3.5.0...v3.5.1) (2023-12-18)
|
|
888
|
-
|
|
889
|
-
### Bug Fixes
|
|
890
|
-
|
|
891
|
-
- userLogin - deprecated ([addacb6](https://github.com/Infomaximum/custom-widget/commit/addacb682e7ff1befa3d31ac2cc516cc3fbecadd))
|
|
892
|
-
|
|
893
|
-
## [3.5.0](https://github.com/Infomaximum/custom-widget/compare/v3.3.1...v3.5.0) (2023-12-13)
|
|
894
|
-
|
|
895
|
-
## [3.4.0](https://github.com/Infomaximum/custom-widget/compare/v3.3.0...v3.4.0) (2023-12-13)
|
|
896
|
-
|
|
897
|
-
### Features
|
|
898
|
-
|
|
899
|
-
- Добавлены утилитарные функции для работы с разрезами и мерами ([ae4c396](https://github.com/Infomaximum/custom-widget/commit/ae4c3961a1a1362edf322a917138d5a3a49b9880))
|
|
900
|
-
|
|
901
|
-
## [3.4.0](https://github.com/Infomaximum/custom-widget/compare/v3.3.0...v3.4.0) (2023-12-13)
|
|
902
|
-
|
|
903
|
-
### Features
|
|
904
|
-
|
|
905
|
-
- Добавлены утилитарные функции для работы с разрезами и мерами ([ae4c396](https://github.com/Infomaximum/custom-widget/commit/ae4c3961a1a1362edf322a917138d5a3a49b9880))
|
|
906
|
-
|
|
907
|
-
## [3.3.0](https://github.com/Infomaximum/custom-widget/compare/v3.2.0...v3.3.0) (2023-12-08)
|
|
908
|
-
|
|
909
|
-
### Features
|
|
910
|
-
|
|
911
|
-
- поддержано условие отображения для разрезов ([2825a4d](https://github.com/Infomaximum/custom-widget/commit/2825a4d630d50fef41f2edeffab9baa07f1f8db6))
|
|
912
|
-
|
|
913
|
-
## [3.2.0](https://github.com/Infomaximum/custom-widget/compare/v3.1.0...v3.2.0) (2023-12-07)
|
|
914
|
-
|
|
915
|
-
### Features
|
|
916
|
-
|
|
917
|
-
- поддержаны открытые диапазоны чисел в фильтре по формуле ([0a26a41](https://github.com/Infomaximum/custom-widget/commit/0a26a416aa6c5b24483b4f28788eb8ef73c3cc5d))
|
|
918
|
-
|
|
919
|
-
## [3.1.0](https://github.com/Infomaximum/custom-widget/compare/v3.0.0...v3.1.0) (2023-12-05)
|
|
920
|
-
|
|
921
|
-
### Features
|
|
922
|
-
|
|
923
|
-
- выделен интерфейс для метода fillSettings ([66eeb9e](https://github.com/Infomaximum/custom-widget/commit/66eeb9ed5242d870a2fb3ad10a7dcc5f12f781b8))
|
|
924
|
-
- Добавлена валидация для оставшихся способов ввода ([04ba720](https://github.com/Infomaximum/custom-widget/commit/04ba7202db5ff66628f33ce7e3ff063610338220))
|
|
925
|
-
|
|
926
|
-
### Bug Fixes
|
|
927
|
-
|
|
928
|
-
- исправлен тип для статического типа ([ce5adaa](https://github.com/Infomaximum/custom-widget/commit/ce5adaad97c5483ff367f837a240808ea984b92d))
|
|
929
|
-
|
|
930
|
-
## [3.0.0](https://github.com/Infomaximum/custom-widget/compare/v2.1.0...v3.0.0) (2023-11-30)
|
|
931
|
-
|
|
932
|
-
### ⚠ BREAKING CHANGES
|
|
933
|
-
|
|
934
|
-
- удален енам EDashboardFilteringMethodValues
|
|
935
|
-
|
|
936
|
-
### Features
|
|
937
|
-
|
|
938
|
-
- добавлен режим фильтрации "Последнее время", изменены интерфейсы ([ed4eafe](https://github.com/Infomaximum/custom-widget/commit/ed4eafe47290ac117f9da9e5af04a10a277372a5))
|
|
939
|
-
|
|
940
|
-
## [1.11.0](https://github.com/Infomaximum/custom-widget/compare/v1.10.2...v1.11.0) (2023-11-15)
|
|
941
|
-
|
|
942
|
-
### Features
|
|
943
|
-
|
|
944
|
-
- добавлен интерфейс ICalculatorVariable ([848b02e](https://github.com/Infomaximum/custom-widget/commit/848b02e502ca4c5cd207624791a52e1226cdd5d9))
|