@infomaximum/widget-sdk 4.3.0-BI-13455-1 → 4.3.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 +1 -7
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -997,8 +997,6 @@ type TWidgetVariable = {
|
|
|
997
997
|
defaultValue: string;
|
|
998
998
|
/** Тип данных */
|
|
999
999
|
dataType: ESimpleDataType;
|
|
1000
|
-
/** Общее значения */
|
|
1001
|
-
isValueShared: boolean;
|
|
1002
1000
|
/** @deprecated */
|
|
1003
1001
|
guid: string;
|
|
1004
1002
|
} | {
|
|
@@ -1016,8 +1014,6 @@ type TWidgetVariable = {
|
|
|
1016
1014
|
dataType: ESimpleDataType.STRING;
|
|
1017
1015
|
/** Множественный выбор */
|
|
1018
1016
|
multipleChoice: boolean;
|
|
1019
|
-
/** Общее значения */
|
|
1020
|
-
isValueShared: boolean;
|
|
1021
1017
|
/** @deprecated */
|
|
1022
1018
|
guid: string;
|
|
1023
1019
|
} | {
|
|
@@ -1035,8 +1031,6 @@ type TWidgetVariable = {
|
|
|
1035
1031
|
dataType: ESimpleDataType;
|
|
1036
1032
|
/** Множественный выбор */
|
|
1037
1033
|
multipleChoice: boolean;
|
|
1038
|
-
/** Общее значения */
|
|
1039
|
-
isValueShared: boolean;
|
|
1040
1034
|
/** Фильтры */
|
|
1041
1035
|
filters: TExtendedFormulaFilterValue[];
|
|
1042
1036
|
/** @deprecated */
|
|
@@ -1729,7 +1723,7 @@ interface IWidgetManifest {
|
|
|
1729
1723
|
en: string;
|
|
1730
1724
|
}>;
|
|
1731
1725
|
/** Мажорная версия widget-sdk, использованная при разработке виджета */
|
|
1732
|
-
sdk_version
|
|
1726
|
+
sdk_version?: number;
|
|
1733
1727
|
/** Путь до js-файла, который является входной точкой виджета */
|
|
1734
1728
|
entry: string;
|
|
1735
1729
|
/** Путь до иконки(svg или png) */
|