@win2win/shared 1.0.193 → 1.0.194
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.
|
@@ -216,6 +216,11 @@ export interface SortingParams {
|
|
|
216
216
|
by: string | null;
|
|
217
217
|
order: "ASC" | "DESC";
|
|
218
218
|
}
|
|
219
|
+
export interface SectionTextLine {
|
|
220
|
+
text: string;
|
|
221
|
+
class?: string;
|
|
222
|
+
style?: string;
|
|
223
|
+
}
|
|
219
224
|
export interface SectionParams {
|
|
220
225
|
title?: string;
|
|
221
226
|
subtitle?: string;
|
|
@@ -243,6 +248,7 @@ export interface SectionParams {
|
|
|
243
248
|
params?: Record<string, any>;
|
|
244
249
|
custom?: Record<string, any>;
|
|
245
250
|
code?: string;
|
|
251
|
+
text_lines?: SectionTextLine[];
|
|
246
252
|
}
|
|
247
253
|
export type SectionParam = keyof Partial<SectionParams>;
|
|
248
254
|
export type SectionParamValue = SectionParams[SectionParam];
|
package/package.json
CHANGED