@infomaximum/widget-sdk 4.5.0 → 4.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +6 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1016,6 +1016,8 @@ type TWidgetVariable = {
|
|
|
1016
1016
|
defaultValue: string;
|
|
1017
1017
|
/** Тип данных */
|
|
1018
1018
|
dataType: ESimpleDataType;
|
|
1019
|
+
/** Общее значения */
|
|
1020
|
+
isValueShared: boolean;
|
|
1019
1021
|
/** @deprecated */
|
|
1020
1022
|
guid: string;
|
|
1021
1023
|
} | {
|
|
@@ -1033,6 +1035,8 @@ type TWidgetVariable = {
|
|
|
1033
1035
|
dataType: ESimpleDataType.STRING;
|
|
1034
1036
|
/** Множественный выбор */
|
|
1035
1037
|
multipleChoice: boolean;
|
|
1038
|
+
/** Общее значения */
|
|
1039
|
+
isValueShared: boolean;
|
|
1036
1040
|
/** @deprecated */
|
|
1037
1041
|
guid: string;
|
|
1038
1042
|
} | {
|
|
@@ -1050,6 +1054,8 @@ type TWidgetVariable = {
|
|
|
1050
1054
|
dataType: ESimpleDataType;
|
|
1051
1055
|
/** Множественный выбор */
|
|
1052
1056
|
multipleChoice: boolean;
|
|
1057
|
+
/** Общее значения */
|
|
1058
|
+
isValueShared: boolean;
|
|
1053
1059
|
/** Фильтры */
|
|
1054
1060
|
filters: TExtendedFormulaFilterValue[];
|
|
1055
1061
|
/** @deprecated */
|