@infomaximum/widget-sdk 7.0.0-new-layout.1 → 7.0.0-new-layout.3
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 +14 -0
- package/dist/index.d.ts +1 -2
- package/dist/index.esm.js +1 -0
- package/dist/index.js +1 -0
- package/package.json +1 -1
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
|
+
## [7.0.0-new-layout.3](https://github.com/Infomaximum/widget-sdk/compare/v7.0.0-new-layout.2...v7.0.0-new-layout.3) (2026-02-27)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* отказ от настроек backgroundInEdit и spacing в темах ([ae5dc49](https://github.com/Infomaximum/widget-sdk/commit/ae5dc49bede1aefcd4f65692cb596810a2692a69))
|
|
11
|
+
|
|
12
|
+
## [7.0.0-new-layout.2](https://github.com/Infomaximum/widget-sdk/compare/v7.0.0-new-layout.1...v7.0.0-new-layout.2) (2026-02-20)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
* в настройки виджета добавлен цвет фона ([00ad777](https://github.com/Infomaximum/widget-sdk/commit/00ad7777d201918048b0610016751acf7b5c28e2))
|
|
18
|
+
|
|
5
19
|
## [7.0.0-new-layout.1](https://github.com/Infomaximum/widget-sdk/compare/v7.0.0-12...v7.0.0-new-layout.1) (2026-02-20)
|
|
6
20
|
|
|
7
21
|
|
package/dist/index.d.ts
CHANGED
|
@@ -11135,6 +11135,7 @@ declare const BaseWidgetSettingsSchema: (z: TZod) => zod.ZodObject<{
|
|
|
11135
11135
|
hint: zod.ZodDefault<zod.ZodString>;
|
|
11136
11136
|
}, zod_v4_core.$strip>>>;
|
|
11137
11137
|
viewTheme: zod.ZodDefault<zod.ZodBoolean>;
|
|
11138
|
+
backgroundColor: zod.ZodType<string, unknown, zod_v4_core.$ZodTypeInternals<string, unknown>>;
|
|
11138
11139
|
}, zod_v4_core.$strip>;
|
|
11139
11140
|
|
|
11140
11141
|
interface IAutoIdentifiedArrayItem extends TSchemaType<typeof AutoIdentifiedArrayItemSchema> {
|
|
@@ -17418,8 +17419,6 @@ interface ITheme {
|
|
|
17418
17419
|
value?: number;
|
|
17419
17420
|
};
|
|
17420
17421
|
backgroundColor: string;
|
|
17421
|
-
backgroundInEdit: boolean;
|
|
17422
|
-
spacing: boolean;
|
|
17423
17422
|
widgets: {
|
|
17424
17423
|
/** @remarks Заложено для будущего использования */
|
|
17425
17424
|
color: string;
|
package/dist/index.esm.js
CHANGED
|
@@ -138,6 +138,7 @@ var BaseWidgetSettingsSchema = function (z) {
|
|
|
138
138
|
sorting: z.array(WidgetSortingIndicatorSchema(z)).default([]),
|
|
139
139
|
actionButtons: z.array(ActionButtonSchema(z)).default([]),
|
|
140
140
|
viewTheme: z.boolean().default(false),
|
|
141
|
+
backgroundColor: themed(z.string().default("#FFFFFF"), function (theme) { return theme.widgets.color; }),
|
|
141
142
|
});
|
|
142
143
|
};
|
|
143
144
|
|
package/dist/index.js
CHANGED
|
@@ -139,6 +139,7 @@ var BaseWidgetSettingsSchema = function (z) {
|
|
|
139
139
|
sorting: z.array(WidgetSortingIndicatorSchema(z)).default([]),
|
|
140
140
|
actionButtons: z.array(ActionButtonSchema(z)).default([]),
|
|
141
141
|
viewTheme: z.boolean().default(false),
|
|
142
|
+
backgroundColor: themed(z.string().default("#FFFFFF"), function (theme) { return theme.widgets.color; }),
|
|
142
143
|
});
|
|
143
144
|
};
|
|
144
145
|
|