@infomaximum/widget-sdk 6.0.0-10 → 6.0.0-12

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 CHANGED
@@ -2,6 +2,20 @@
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
+ ## [6.0.0-12](https://github.com/Infomaximum/widget-sdk/compare/v6.0.0-11...v6.0.0-12) (2025-09-29)
6
+
7
+
8
+ ### Features
9
+
10
+ * для параметров действий образа добавлен id ([4b92d35](https://github.com/Infomaximum/widget-sdk/commit/4b92d3547a6048b8326db94ec360515d99e17b1a))
11
+
12
+ ## [6.0.0-11](https://github.com/Infomaximum/widget-sdk/compare/v6.0.0-10...v6.0.0-11) (2025-09-23)
13
+
14
+
15
+ ### Features
16
+
17
+ * удален флаг isBordered для IInputControl [BI-15461] ([d60c32d](https://github.com/Infomaximum/widget-sdk/commit/d60c32d02134c10b1aa799dc5a45e2656fe5aefd))
18
+
5
19
  ## [6.0.0-10](https://github.com/Infomaximum/widget-sdk/compare/v6.0.0-2508.1...v6.0.0-10) (2025-09-12)
6
20
 
7
21
  ## [6.0.0-9](https://github.com/Infomaximum/widget-sdk/compare/v6.0.0-8...v6.0.0-9) (2025-09-12)
package/dist/index.d.ts CHANGED
@@ -1142,7 +1142,7 @@ interface IActionButton extends IAutoIdentifiedArrayItem {
1142
1142
  color: TColor;
1143
1143
  hint?: string;
1144
1144
  }
1145
- type TViewActionParameter = (IParameterFromAggregation | IParameterFromVariable) & {
1145
+ type TViewActionParameter = (IParameterFromAggregation | IParameterFromVariable) & IAutoIdentifiedArrayItem & {
1146
1146
  name: string;
1147
1147
  };
1148
1148
  interface IViewAction {
@@ -1333,7 +1333,6 @@ interface IInputControl {
1333
1333
  type: EControlType.input;
1334
1334
  value: string;
1335
1335
  props: {
1336
- isBordered?: boolean;
1337
1336
  placeholder?: string;
1338
1337
  /** Максимальное количество символов которое можно ввести в поле */
1339
1338
  maxLength?: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@infomaximum/widget-sdk",
3
- "version": "6.0.0-10",
3
+ "version": "6.0.0-12",
4
4
  "main": "./dist/index.js",
5
5
  "module": "./dist/index.esm.js",
6
6
  "types": "./dist/index.d.ts",