@infomaximum/widget-sdk 5.24.1 → 5.25.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/CHANGELOG.md +7 -0
- package/dist/index.d.ts +3 -1
- package/dist/index.esm.js +2 -0
- package/dist/index.js +2 -0
- 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
|
+
## [5.25.0](https://github.com/Infomaximum/widget-sdk/compare/v5.24.1...v5.25.0) (2025-06-19)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* ESimpleInputType расширен логическим типом ([59f9d63](https://github.com/Infomaximum/widget-sdk/commit/59f9d6372e5fc1dc38d92d6032e6d5d64699f328))
|
|
11
|
+
|
|
5
12
|
### [5.24.1](https://github.com/Infomaximum/widget-sdk/compare/v5.24.0...v5.24.1) (2025-06-17)
|
|
6
13
|
|
|
7
14
|
|
package/dist/index.d.ts
CHANGED
|
@@ -655,7 +655,9 @@ declare enum ESimpleInputType {
|
|
|
655
655
|
/** Дата (точность Date) */
|
|
656
656
|
DATE = "DATE",
|
|
657
657
|
/** Дата и время (точность DateTime64) */
|
|
658
|
-
DATE_AND_TIME = "DATETIME"
|
|
658
|
+
DATE_AND_TIME = "DATETIME",
|
|
659
|
+
/** Логический тип */
|
|
660
|
+
BOOLEAN = "BOOLEAN"
|
|
659
661
|
}
|
|
660
662
|
interface IWidgetStaticVariable extends IBaseWidgetVariable {
|
|
661
663
|
/** Тип переменной */
|
package/dist/index.esm.js
CHANGED
|
@@ -717,6 +717,8 @@ var ESimpleInputType;
|
|
|
717
717
|
ESimpleInputType["DATE"] = "DATE";
|
|
718
718
|
/** Дата и время (точность DateTime64) */
|
|
719
719
|
ESimpleInputType["DATE_AND_TIME"] = "DATETIME";
|
|
720
|
+
/** Логический тип */
|
|
721
|
+
ESimpleInputType["BOOLEAN"] = "BOOLEAN";
|
|
720
722
|
})(ESimpleInputType || (ESimpleInputType = {}));
|
|
721
723
|
function isDimensionsHierarchy(indicator) {
|
|
722
724
|
return "hierarchyDimensions" in indicator;
|
package/dist/index.js
CHANGED
|
@@ -718,6 +718,8 @@ exports.ESimpleInputType = void 0;
|
|
|
718
718
|
ESimpleInputType["DATE"] = "DATE";
|
|
719
719
|
/** Дата и время (точность DateTime64) */
|
|
720
720
|
ESimpleInputType["DATE_AND_TIME"] = "DATETIME";
|
|
721
|
+
/** Логический тип */
|
|
722
|
+
ESimpleInputType["BOOLEAN"] = "BOOLEAN";
|
|
721
723
|
})(exports.ESimpleInputType || (exports.ESimpleInputType = {}));
|
|
722
724
|
function isDimensionsHierarchy(indicator) {
|
|
723
725
|
return "hierarchyDimensions" in indicator;
|