@infomaximum/widget-sdk 4.0.0-beta49 → 4.0.0-beta50
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 +4 -1
- package/dist/index.esm.js +1 -0
- package/dist/index.js +1 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -35,7 +35,8 @@ declare enum EControlType {
|
|
|
35
35
|
inputMarkdown = "inputMarkdown",
|
|
36
36
|
filter = "filter",
|
|
37
37
|
actionOnClick = "actionOnClick",
|
|
38
|
-
eventsPicker = "eventsPicker"
|
|
38
|
+
eventsPicker = "eventsPicker",
|
|
39
|
+
size = "size"
|
|
39
40
|
}
|
|
40
41
|
/** Конфигурация элемента управления настройкой */
|
|
41
42
|
interface IControlRecord<Settings extends object, Value, ControlType = EControlType> {
|
|
@@ -1133,6 +1134,8 @@ interface ITwoLimitsCalculatorInput {
|
|
|
1133
1134
|
limit?: number;
|
|
1134
1135
|
/** Второй лимит */
|
|
1135
1136
|
secondLimit?: number;
|
|
1137
|
+
/** Смещение при выборе строк */
|
|
1138
|
+
offset?: number;
|
|
1136
1139
|
}
|
|
1137
1140
|
interface ITwoLimitsCalculatorExportInput extends ITwoLimitsCalculatorInput {
|
|
1138
1141
|
fileName: string;
|
package/dist/index.esm.js
CHANGED
|
@@ -965,6 +965,7 @@ var EControlType;
|
|
|
965
965
|
EControlType["filter"] = "filter";
|
|
966
966
|
EControlType["actionOnClick"] = "actionOnClick";
|
|
967
967
|
EControlType["eventsPicker"] = "eventsPicker";
|
|
968
|
+
EControlType["size"] = "size";
|
|
968
969
|
})(EControlType || (EControlType = {}));
|
|
969
970
|
|
|
970
971
|
var ESelectOptionTypes;
|
package/dist/index.js
CHANGED
|
@@ -966,6 +966,7 @@ exports.EControlType = void 0;
|
|
|
966
966
|
EControlType["filter"] = "filter";
|
|
967
967
|
EControlType["actionOnClick"] = "actionOnClick";
|
|
968
968
|
EControlType["eventsPicker"] = "eventsPicker";
|
|
969
|
+
EControlType["size"] = "size";
|
|
969
970
|
})(exports.EControlType || (exports.EControlType = {}));
|
|
970
971
|
|
|
971
972
|
exports.ESelectOptionTypes = void 0;
|