@infomaximum/widget-sdk 7.0.0-27 → 7.0.0-29

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 CHANGED
@@ -203,6 +203,7 @@ declare const ParameterFromColumnSchema: TVersionedSchema<{
203
203
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
204
204
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
205
205
  dbDataType: zod.ZodOptional<zod.ZodString>;
206
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
206
207
  }, zod_v4_core.$strip>;
207
208
  }, "17">;
208
209
  declare const ParameterFromVariableSchema: TVersionedSchema<{
@@ -341,6 +342,16 @@ declare const ParameterFromDataModelSchema: TVersionedSchema<{
341
342
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
342
343
  }, zod_v4_core.$strip>;
343
344
  }, "17">;
345
+ /**
346
+ * Значение берётся из редактируемого текста виджета в момент сохранения.
347
+ * Используется только в `onSave` виджета `editable-text-widget`.
348
+ */
349
+ declare const ParameterFromEditableTextValueSchema: TVersionedSchema<{
350
+ "17": (z: TZod) => zod.ZodObject<{
351
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
352
+ value: zod.ZodOptional<zod.ZodString>;
353
+ }, zod_v4_core.$strip>;
354
+ }, "17">;
344
355
  declare const ActionOnClickParameterSchema: TVersionedSchema<{
345
356
  "17": (z: TZod) => zod.ZodIntersection<zod.ZodObject<{
346
357
  id: zod.ZodPipe<zod.ZodDefault<zod.ZodNumber>, zod.ZodTransform<number, number>>;
@@ -350,6 +361,7 @@ declare const ActionOnClickParameterSchema: TVersionedSchema<{
350
361
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
351
362
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
352
363
  dbDataType: zod.ZodOptional<zod.ZodString>;
364
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
353
365
  }, zod_v4_core.$strip>, zod.ZodObject<{
354
366
  inputMethod: zod.ZodLiteral<"VARIABLE">;
355
367
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -456,6 +468,9 @@ declare const ActionOnClickParameterSchema: TVersionedSchema<{
456
468
  readonly COLUMN_LIST: "COLUMN_LIST";
457
469
  }>>;
458
470
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
471
+ }, zod_v4_core.$strip>, zod.ZodObject<{
472
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
473
+ value: zod.ZodOptional<zod.ZodString>;
459
474
  }, zod_v4_core.$strip>], "inputMethod">>;
460
475
  }, "17">;
461
476
  declare const ActionDrillDownSchema: TVersionedSchema<{
@@ -471,6 +486,7 @@ declare const ActionDrillDownSchema: TVersionedSchema<{
471
486
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
472
487
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
473
488
  dbDataType: zod.ZodOptional<zod.ZodString>;
489
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
474
490
  }, zod_v4_core.$strip>, zod.ZodObject<{
475
491
  inputMethod: zod.ZodLiteral<"VARIABLE">;
476
492
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -577,6 +593,9 @@ declare const ActionDrillDownSchema: TVersionedSchema<{
577
593
  readonly COLUMN_LIST: "COLUMN_LIST";
578
594
  }>>;
579
595
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
596
+ }, zod_v4_core.$strip>, zod.ZodObject<{
597
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
598
+ value: zod.ZodOptional<zod.ZodString>;
580
599
  }, zod_v4_core.$strip>], "inputMethod">>>>;
581
600
  }, zod_v4_core.$strip>;
582
601
  }, "17">;
@@ -595,6 +614,7 @@ declare const ActionGoToURLSchema: TVersionedSchema<{
595
614
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
596
615
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
597
616
  dbDataType: zod.ZodOptional<zod.ZodString>;
617
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
598
618
  }, zod_v4_core.$strip>, zod.ZodObject<{
599
619
  inputMethod: zod.ZodLiteral<"VARIABLE">;
600
620
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -701,6 +721,9 @@ declare const ActionGoToURLSchema: TVersionedSchema<{
701
721
  readonly COLUMN_LIST: "COLUMN_LIST";
702
722
  }>>;
703
723
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
724
+ }, zod_v4_core.$strip>, zod.ZodObject<{
725
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
726
+ value: zod.ZodOptional<zod.ZodString>;
704
727
  }, zod_v4_core.$strip>], "inputMethod">>>>;
705
728
  }, zod_v4_core.$strip>;
706
729
  }, "17">;
@@ -717,6 +740,7 @@ declare const ActionRunScriptSchema: TVersionedSchema<{
717
740
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
718
741
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
719
742
  dbDataType: zod.ZodOptional<zod.ZodString>;
743
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
720
744
  }, zod_v4_core.$strip>, zod.ZodObject<{
721
745
  inputMethod: zod.ZodLiteral<"VARIABLE">;
722
746
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -823,6 +847,9 @@ declare const ActionRunScriptSchema: TVersionedSchema<{
823
847
  readonly COLUMN_LIST: "COLUMN_LIST";
824
848
  }>>;
825
849
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
850
+ }, zod_v4_core.$strip>, zod.ZodObject<{
851
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
852
+ value: zod.ZodOptional<zod.ZodString>;
826
853
  }, zod_v4_core.$strip>], "inputMethod">>>>;
827
854
  scriptKey: zod.ZodString;
828
855
  autoUpdate: zod.ZodDefault<zod.ZodEnum<{
@@ -848,6 +875,7 @@ declare const ActionRunScriptSchema: TVersionedSchema<{
848
875
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
849
876
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
850
877
  dbDataType: zod.ZodOptional<zod.ZodString>;
878
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
851
879
  }, zod_v4_core.$strip>, zod.ZodObject<{
852
880
  inputMethod: zod.ZodLiteral<"VARIABLE">;
853
881
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -954,6 +982,9 @@ declare const ActionRunScriptSchema: TVersionedSchema<{
954
982
  readonly COLUMN_LIST: "COLUMN_LIST";
955
983
  }>>;
956
984
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
985
+ }, zod_v4_core.$strip>, zod.ZodObject<{
986
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
987
+ value: zod.ZodOptional<zod.ZodString>;
957
988
  }, zod_v4_core.$strip>], "inputMethod">>>>;
958
989
  runButtonText: zod.ZodDefault<zod.ZodString>;
959
990
  }, zod_v4_core.$strip>;
@@ -971,6 +1002,7 @@ declare const ActionUpdateVariableSchema: TVersionedSchema<{
971
1002
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
972
1003
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
973
1004
  dbDataType: zod.ZodOptional<zod.ZodString>;
1005
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
974
1006
  }, zod_v4_core.$strip>, zod.ZodObject<{
975
1007
  inputMethod: zod.ZodLiteral<"VARIABLE">;
976
1008
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -1077,6 +1109,9 @@ declare const ActionUpdateVariableSchema: TVersionedSchema<{
1077
1109
  readonly COLUMN_LIST: "COLUMN_LIST";
1078
1110
  }>>;
1079
1111
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
1112
+ }, zod_v4_core.$strip>, zod.ZodObject<{
1113
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
1114
+ value: zod.ZodOptional<zod.ZodString>;
1080
1115
  }, zod_v4_core.$strip>], "inputMethod">>>>;
1081
1116
  }, zod_v4_core.$strip>;
1082
1117
  }, "17">;
@@ -1114,6 +1149,7 @@ declare const ActionOpenViewSchema: TVersionedSchema<{
1114
1149
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
1115
1150
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
1116
1151
  dbDataType: zod.ZodOptional<zod.ZodString>;
1152
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
1117
1153
  }, zod_v4_core.$strip>, zod.ZodObject<{
1118
1154
  inputMethod: zod.ZodLiteral<"VARIABLE">;
1119
1155
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -1220,6 +1256,9 @@ declare const ActionOpenViewSchema: TVersionedSchema<{
1220
1256
  readonly COLUMN_LIST: "COLUMN_LIST";
1221
1257
  }>>;
1222
1258
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
1259
+ }, zod_v4_core.$strip>, zod.ZodObject<{
1260
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
1261
+ value: zod.ZodOptional<zod.ZodString>;
1223
1262
  }, zod_v4_core.$strip>], "inputMethod">>>>;
1224
1263
  mode: zod.ZodLiteral<"GENERATED_BY_SCRIPT">;
1225
1264
  scriptKey: zod.ZodOptional<zod.ZodString>;
@@ -1231,6 +1270,7 @@ declare const ActionOpenViewSchema: TVersionedSchema<{
1231
1270
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
1232
1271
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
1233
1272
  dbDataType: zod.ZodOptional<zod.ZodString>;
1273
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
1234
1274
  }, zod_v4_core.$strip>, zod.ZodObject<{
1235
1275
  inputMethod: zod.ZodLiteral<"VARIABLE">;
1236
1276
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -1337,6 +1377,9 @@ declare const ActionOpenViewSchema: TVersionedSchema<{
1337
1377
  readonly COLUMN_LIST: "COLUMN_LIST";
1338
1378
  }>>;
1339
1379
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
1380
+ }, zod_v4_core.$strip>, zod.ZodObject<{
1381
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
1382
+ value: zod.ZodOptional<zod.ZodString>;
1340
1383
  }, zod_v4_core.$strip>], "inputMethod">>>>;
1341
1384
  displayName: zod.ZodDefault<zod.ZodString>;
1342
1385
  }, zod_v4_core.$strip>, zod.ZodObject<{
@@ -1351,6 +1394,7 @@ declare const ActionOpenViewSchema: TVersionedSchema<{
1351
1394
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
1352
1395
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
1353
1396
  dbDataType: zod.ZodOptional<zod.ZodString>;
1397
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
1354
1398
  }, zod_v4_core.$strip>, zod.ZodObject<{
1355
1399
  inputMethod: zod.ZodLiteral<"VARIABLE">;
1356
1400
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -1457,6 +1501,9 @@ declare const ActionOpenViewSchema: TVersionedSchema<{
1457
1501
  readonly COLUMN_LIST: "COLUMN_LIST";
1458
1502
  }>>;
1459
1503
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
1504
+ }, zod_v4_core.$strip>, zod.ZodObject<{
1505
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
1506
+ value: zod.ZodOptional<zod.ZodString>;
1460
1507
  }, zod_v4_core.$strip>], "inputMethod">>>>;
1461
1508
  mode: zod.ZodLiteral<"EXISTED_VIEW">;
1462
1509
  viewKey: zod.ZodOptional<zod.ZodString>;
@@ -1468,6 +1515,7 @@ declare const ActionOpenViewSchema: TVersionedSchema<{
1468
1515
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
1469
1516
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
1470
1517
  dbDataType: zod.ZodOptional<zod.ZodString>;
1518
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
1471
1519
  }, zod_v4_core.$strip>, zod.ZodObject<{
1472
1520
  inputMethod: zod.ZodLiteral<"VARIABLE">;
1473
1521
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -1574,6 +1622,9 @@ declare const ActionOpenViewSchema: TVersionedSchema<{
1574
1622
  readonly COLUMN_LIST: "COLUMN_LIST";
1575
1623
  }>>;
1576
1624
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
1625
+ }, zod_v4_core.$strip>, zod.ZodObject<{
1626
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
1627
+ value: zod.ZodOptional<zod.ZodString>;
1577
1628
  }, zod_v4_core.$strip>], "inputMethod">>>>;
1578
1629
  }, zod_v4_core.$strip>, zod.ZodObject<{
1579
1630
  id: zod.ZodPipe<zod.ZodDefault<zod.ZodNumber>, zod.ZodTransform<number, number>>;
@@ -1587,6 +1638,7 @@ declare const ActionOpenViewSchema: TVersionedSchema<{
1587
1638
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
1588
1639
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
1589
1640
  dbDataType: zod.ZodOptional<zod.ZodString>;
1641
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
1590
1642
  }, zod_v4_core.$strip>, zod.ZodObject<{
1591
1643
  inputMethod: zod.ZodLiteral<"VARIABLE">;
1592
1644
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -1693,6 +1745,9 @@ declare const ActionOpenViewSchema: TVersionedSchema<{
1693
1745
  readonly COLUMN_LIST: "COLUMN_LIST";
1694
1746
  }>>;
1695
1747
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
1748
+ }, zod_v4_core.$strip>, zod.ZodObject<{
1749
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
1750
+ value: zod.ZodOptional<zod.ZodString>;
1696
1751
  }, zod_v4_core.$strip>], "inputMethod">>>>;
1697
1752
  mode: zod.ZodLiteral<"EMPTY">;
1698
1753
  placeholderName: zod.ZodOptional<zod.ZodString>;
@@ -1732,6 +1787,7 @@ declare const ActionsOnClickSchema: TVersionedSchema<{
1732
1787
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
1733
1788
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
1734
1789
  dbDataType: zod.ZodOptional<zod.ZodString>;
1790
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
1735
1791
  }, zod_v4_core.$strip>, zod.ZodObject<{
1736
1792
  inputMethod: zod.ZodLiteral<"VARIABLE">;
1737
1793
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -1838,6 +1894,9 @@ declare const ActionsOnClickSchema: TVersionedSchema<{
1838
1894
  readonly COLUMN_LIST: "COLUMN_LIST";
1839
1895
  }>>;
1840
1896
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
1897
+ }, zod_v4_core.$strip>, zod.ZodObject<{
1898
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
1899
+ value: zod.ZodOptional<zod.ZodString>;
1841
1900
  }, zod_v4_core.$strip>], "inputMethod">>>>;
1842
1901
  }, zod_v4_core.$strip>, zod.ZodObject<{
1843
1902
  id: zod.ZodPipe<zod.ZodDefault<zod.ZodNumber>, zod.ZodTransform<number, number>>;
@@ -1851,6 +1910,7 @@ declare const ActionsOnClickSchema: TVersionedSchema<{
1851
1910
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
1852
1911
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
1853
1912
  dbDataType: zod.ZodOptional<zod.ZodString>;
1913
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
1854
1914
  }, zod_v4_core.$strip>, zod.ZodObject<{
1855
1915
  inputMethod: zod.ZodLiteral<"VARIABLE">;
1856
1916
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -1957,6 +2017,9 @@ declare const ActionsOnClickSchema: TVersionedSchema<{
1957
2017
  readonly COLUMN_LIST: "COLUMN_LIST";
1958
2018
  }>>;
1959
2019
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
2020
+ }, zod_v4_core.$strip>, zod.ZodObject<{
2021
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
2022
+ value: zod.ZodOptional<zod.ZodString>;
1960
2023
  }, zod_v4_core.$strip>], "inputMethod">>>>;
1961
2024
  scriptKey: zod.ZodString;
1962
2025
  autoUpdate: zod.ZodDefault<zod.ZodEnum<{
@@ -1982,6 +2045,7 @@ declare const ActionsOnClickSchema: TVersionedSchema<{
1982
2045
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
1983
2046
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
1984
2047
  dbDataType: zod.ZodOptional<zod.ZodString>;
2048
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
1985
2049
  }, zod_v4_core.$strip>, zod.ZodObject<{
1986
2050
  inputMethod: zod.ZodLiteral<"VARIABLE">;
1987
2051
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -2088,6 +2152,9 @@ declare const ActionsOnClickSchema: TVersionedSchema<{
2088
2152
  readonly COLUMN_LIST: "COLUMN_LIST";
2089
2153
  }>>;
2090
2154
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
2155
+ }, zod_v4_core.$strip>, zod.ZodObject<{
2156
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
2157
+ value: zod.ZodOptional<zod.ZodString>;
2091
2158
  }, zod_v4_core.$strip>], "inputMethod">>>>;
2092
2159
  runButtonText: zod.ZodDefault<zod.ZodString>;
2093
2160
  }, zod_v4_core.$strip>, zod.ZodObject<{
@@ -2102,6 +2169,7 @@ declare const ActionsOnClickSchema: TVersionedSchema<{
2102
2169
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
2103
2170
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
2104
2171
  dbDataType: zod.ZodOptional<zod.ZodString>;
2172
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
2105
2173
  }, zod_v4_core.$strip>, zod.ZodObject<{
2106
2174
  inputMethod: zod.ZodLiteral<"VARIABLE">;
2107
2175
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -2208,6 +2276,9 @@ declare const ActionsOnClickSchema: TVersionedSchema<{
2208
2276
  readonly COLUMN_LIST: "COLUMN_LIST";
2209
2277
  }>>;
2210
2278
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
2279
+ }, zod_v4_core.$strip>, zod.ZodObject<{
2280
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
2281
+ value: zod.ZodOptional<zod.ZodString>;
2211
2282
  }, zod_v4_core.$strip>], "inputMethod">>>>;
2212
2283
  }, zod_v4_core.$strip>, zod.ZodIntersection<zod.ZodDiscriminatedUnion<[zod.ZodObject<{
2213
2284
  id: zod.ZodPipe<zod.ZodDefault<zod.ZodNumber>, zod.ZodTransform<number, number>>;
@@ -2221,6 +2292,7 @@ declare const ActionsOnClickSchema: TVersionedSchema<{
2221
2292
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
2222
2293
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
2223
2294
  dbDataType: zod.ZodOptional<zod.ZodString>;
2295
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
2224
2296
  }, zod_v4_core.$strip>, zod.ZodObject<{
2225
2297
  inputMethod: zod.ZodLiteral<"VARIABLE">;
2226
2298
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -2327,6 +2399,9 @@ declare const ActionsOnClickSchema: TVersionedSchema<{
2327
2399
  readonly COLUMN_LIST: "COLUMN_LIST";
2328
2400
  }>>;
2329
2401
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
2402
+ }, zod_v4_core.$strip>, zod.ZodObject<{
2403
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
2404
+ value: zod.ZodOptional<zod.ZodString>;
2330
2405
  }, zod_v4_core.$strip>], "inputMethod">>>>;
2331
2406
  mode: zod.ZodLiteral<"GENERATED_BY_SCRIPT">;
2332
2407
  scriptKey: zod.ZodOptional<zod.ZodString>;
@@ -2338,6 +2413,7 @@ declare const ActionsOnClickSchema: TVersionedSchema<{
2338
2413
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
2339
2414
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
2340
2415
  dbDataType: zod.ZodOptional<zod.ZodString>;
2416
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
2341
2417
  }, zod_v4_core.$strip>, zod.ZodObject<{
2342
2418
  inputMethod: zod.ZodLiteral<"VARIABLE">;
2343
2419
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -2444,6 +2520,9 @@ declare const ActionsOnClickSchema: TVersionedSchema<{
2444
2520
  readonly COLUMN_LIST: "COLUMN_LIST";
2445
2521
  }>>;
2446
2522
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
2523
+ }, zod_v4_core.$strip>, zod.ZodObject<{
2524
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
2525
+ value: zod.ZodOptional<zod.ZodString>;
2447
2526
  }, zod_v4_core.$strip>], "inputMethod">>>>;
2448
2527
  displayName: zod.ZodDefault<zod.ZodString>;
2449
2528
  }, zod_v4_core.$strip>, zod.ZodObject<{
@@ -2458,6 +2537,7 @@ declare const ActionsOnClickSchema: TVersionedSchema<{
2458
2537
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
2459
2538
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
2460
2539
  dbDataType: zod.ZodOptional<zod.ZodString>;
2540
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
2461
2541
  }, zod_v4_core.$strip>, zod.ZodObject<{
2462
2542
  inputMethod: zod.ZodLiteral<"VARIABLE">;
2463
2543
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -2564,6 +2644,9 @@ declare const ActionsOnClickSchema: TVersionedSchema<{
2564
2644
  readonly COLUMN_LIST: "COLUMN_LIST";
2565
2645
  }>>;
2566
2646
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
2647
+ }, zod_v4_core.$strip>, zod.ZodObject<{
2648
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
2649
+ value: zod.ZodOptional<zod.ZodString>;
2567
2650
  }, zod_v4_core.$strip>], "inputMethod">>>>;
2568
2651
  mode: zod.ZodLiteral<"EXISTED_VIEW">;
2569
2652
  viewKey: zod.ZodOptional<zod.ZodString>;
@@ -2575,6 +2658,7 @@ declare const ActionsOnClickSchema: TVersionedSchema<{
2575
2658
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
2576
2659
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
2577
2660
  dbDataType: zod.ZodOptional<zod.ZodString>;
2661
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
2578
2662
  }, zod_v4_core.$strip>, zod.ZodObject<{
2579
2663
  inputMethod: zod.ZodLiteral<"VARIABLE">;
2580
2664
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -2681,6 +2765,9 @@ declare const ActionsOnClickSchema: TVersionedSchema<{
2681
2765
  readonly COLUMN_LIST: "COLUMN_LIST";
2682
2766
  }>>;
2683
2767
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
2768
+ }, zod_v4_core.$strip>, zod.ZodObject<{
2769
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
2770
+ value: zod.ZodOptional<zod.ZodString>;
2684
2771
  }, zod_v4_core.$strip>], "inputMethod">>>>;
2685
2772
  }, zod_v4_core.$strip>, zod.ZodObject<{
2686
2773
  id: zod.ZodPipe<zod.ZodDefault<zod.ZodNumber>, zod.ZodTransform<number, number>>;
@@ -2694,6 +2781,7 @@ declare const ActionsOnClickSchema: TVersionedSchema<{
2694
2781
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
2695
2782
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
2696
2783
  dbDataType: zod.ZodOptional<zod.ZodString>;
2784
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
2697
2785
  }, zod_v4_core.$strip>, zod.ZodObject<{
2698
2786
  inputMethod: zod.ZodLiteral<"VARIABLE">;
2699
2787
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -2800,6 +2888,9 @@ declare const ActionsOnClickSchema: TVersionedSchema<{
2800
2888
  readonly COLUMN_LIST: "COLUMN_LIST";
2801
2889
  }>>;
2802
2890
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
2891
+ }, zod_v4_core.$strip>, zod.ZodObject<{
2892
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
2893
+ value: zod.ZodOptional<zod.ZodString>;
2803
2894
  }, zod_v4_core.$strip>], "inputMethod">>>>;
2804
2895
  mode: zod.ZodLiteral<"EMPTY">;
2805
2896
  placeholderName: zod.ZodOptional<zod.ZodString>;
@@ -2834,6 +2925,7 @@ declare const ActionsOnClickSchema: TVersionedSchema<{
2834
2925
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
2835
2926
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
2836
2927
  dbDataType: zod.ZodOptional<zod.ZodString>;
2928
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
2837
2929
  }, zod_v4_core.$strip>, zod.ZodObject<{
2838
2930
  inputMethod: zod.ZodLiteral<"VARIABLE">;
2839
2931
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -2940,6 +3032,9 @@ declare const ActionsOnClickSchema: TVersionedSchema<{
2940
3032
  readonly COLUMN_LIST: "COLUMN_LIST";
2941
3033
  }>>;
2942
3034
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
3035
+ }, zod_v4_core.$strip>, zod.ZodObject<{
3036
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
3037
+ value: zod.ZodOptional<zod.ZodString>;
2943
3038
  }, zod_v4_core.$strip>], "inputMethod">>>>;
2944
3039
  }, zod_v4_core.$strip>]>;
2945
3040
  }, "17">;
@@ -2954,6 +3049,7 @@ declare const WidgetActionParameterSchema: TVersionedSchema<{
2954
3049
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
2955
3050
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
2956
3051
  dbDataType: zod.ZodOptional<zod.ZodString>;
3052
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
2957
3053
  }, zod_v4_core.$strip>, zod.ZodObject<{
2958
3054
  inputMethod: zod.ZodLiteral<"VARIABLE">;
2959
3055
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -3070,6 +3166,7 @@ declare const WidgetActionSchema: TVersionedSchema<{
3070
3166
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
3071
3167
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
3072
3168
  dbDataType: zod.ZodOptional<zod.ZodString>;
3169
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
3073
3170
  }, zod_v4_core.$strip>, zod.ZodObject<{
3074
3171
  inputMethod: zod.ZodLiteral<"VARIABLE">;
3075
3172
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -3199,6 +3296,7 @@ declare const WidgetActionSchema: TVersionedSchema<{
3199
3296
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
3200
3297
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
3201
3298
  dbDataType: zod.ZodOptional<zod.ZodString>;
3299
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
3202
3300
  }, zod_v4_core.$strip>, zod.ZodObject<{
3203
3301
  inputMethod: zod.ZodLiteral<"VARIABLE">;
3204
3302
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -3357,6 +3455,7 @@ declare const ActionSchema: TVersionedSchema<{
3357
3455
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
3358
3456
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
3359
3457
  dbDataType: zod.ZodOptional<zod.ZodString>;
3458
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
3360
3459
  }, zod_v4_core.$strip>, zod.ZodObject<{
3361
3460
  inputMethod: zod.ZodLiteral<"VARIABLE">;
3362
3461
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -3486,6 +3585,7 @@ declare const ActionSchema: TVersionedSchema<{
3486
3585
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
3487
3586
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
3488
3587
  dbDataType: zod.ZodOptional<zod.ZodString>;
3588
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
3489
3589
  }, zod_v4_core.$strip>, zod.ZodObject<{
3490
3590
  inputMethod: zod.ZodLiteral<"VARIABLE">;
3491
3591
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -3602,6 +3702,7 @@ declare const ActionSchema: TVersionedSchema<{
3602
3702
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
3603
3703
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
3604
3704
  dbDataType: zod.ZodOptional<zod.ZodString>;
3705
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
3605
3706
  }, zod_v4_core.$strip>, zod.ZodObject<{
3606
3707
  inputMethod: zod.ZodLiteral<"VARIABLE">;
3607
3708
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -3708,6 +3809,9 @@ declare const ActionSchema: TVersionedSchema<{
3708
3809
  readonly COLUMN_LIST: "COLUMN_LIST";
3709
3810
  }>>;
3710
3811
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
3812
+ }, zod_v4_core.$strip>, zod.ZodObject<{
3813
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
3814
+ value: zod.ZodOptional<zod.ZodString>;
3711
3815
  }, zod_v4_core.$strip>], "inputMethod">>>>;
3712
3816
  }, zod_v4_core.$strip>, zod.ZodObject<{
3713
3817
  id: zod.ZodPipe<zod.ZodDefault<zod.ZodNumber>, zod.ZodTransform<number, number>>;
@@ -3721,6 +3825,7 @@ declare const ActionSchema: TVersionedSchema<{
3721
3825
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
3722
3826
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
3723
3827
  dbDataType: zod.ZodOptional<zod.ZodString>;
3828
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
3724
3829
  }, zod_v4_core.$strip>, zod.ZodObject<{
3725
3830
  inputMethod: zod.ZodLiteral<"VARIABLE">;
3726
3831
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -3827,6 +3932,9 @@ declare const ActionSchema: TVersionedSchema<{
3827
3932
  readonly COLUMN_LIST: "COLUMN_LIST";
3828
3933
  }>>;
3829
3934
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
3935
+ }, zod_v4_core.$strip>, zod.ZodObject<{
3936
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
3937
+ value: zod.ZodOptional<zod.ZodString>;
3830
3938
  }, zod_v4_core.$strip>], "inputMethod">>>>;
3831
3939
  scriptKey: zod.ZodString;
3832
3940
  autoUpdate: zod.ZodDefault<zod.ZodEnum<{
@@ -3852,6 +3960,7 @@ declare const ActionSchema: TVersionedSchema<{
3852
3960
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
3853
3961
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
3854
3962
  dbDataType: zod.ZodOptional<zod.ZodString>;
3963
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
3855
3964
  }, zod_v4_core.$strip>, zod.ZodObject<{
3856
3965
  inputMethod: zod.ZodLiteral<"VARIABLE">;
3857
3966
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -3958,6 +4067,9 @@ declare const ActionSchema: TVersionedSchema<{
3958
4067
  readonly COLUMN_LIST: "COLUMN_LIST";
3959
4068
  }>>;
3960
4069
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
4070
+ }, zod_v4_core.$strip>, zod.ZodObject<{
4071
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
4072
+ value: zod.ZodOptional<zod.ZodString>;
3961
4073
  }, zod_v4_core.$strip>], "inputMethod">>>>;
3962
4074
  runButtonText: zod.ZodDefault<zod.ZodString>;
3963
4075
  }, zod_v4_core.$strip>, zod.ZodObject<{
@@ -3972,6 +4084,7 @@ declare const ActionSchema: TVersionedSchema<{
3972
4084
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
3973
4085
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
3974
4086
  dbDataType: zod.ZodOptional<zod.ZodString>;
4087
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
3975
4088
  }, zod_v4_core.$strip>, zod.ZodObject<{
3976
4089
  inputMethod: zod.ZodLiteral<"VARIABLE">;
3977
4090
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -4078,6 +4191,9 @@ declare const ActionSchema: TVersionedSchema<{
4078
4191
  readonly COLUMN_LIST: "COLUMN_LIST";
4079
4192
  }>>;
4080
4193
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
4194
+ }, zod_v4_core.$strip>, zod.ZodObject<{
4195
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
4196
+ value: zod.ZodOptional<zod.ZodString>;
4081
4197
  }, zod_v4_core.$strip>], "inputMethod">>>>;
4082
4198
  }, zod_v4_core.$strip>, zod.ZodIntersection<zod.ZodDiscriminatedUnion<[zod.ZodObject<{
4083
4199
  id: zod.ZodPipe<zod.ZodDefault<zod.ZodNumber>, zod.ZodTransform<number, number>>;
@@ -4091,6 +4207,7 @@ declare const ActionSchema: TVersionedSchema<{
4091
4207
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
4092
4208
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
4093
4209
  dbDataType: zod.ZodOptional<zod.ZodString>;
4210
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
4094
4211
  }, zod_v4_core.$strip>, zod.ZodObject<{
4095
4212
  inputMethod: zod.ZodLiteral<"VARIABLE">;
4096
4213
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -4197,6 +4314,9 @@ declare const ActionSchema: TVersionedSchema<{
4197
4314
  readonly COLUMN_LIST: "COLUMN_LIST";
4198
4315
  }>>;
4199
4316
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
4317
+ }, zod_v4_core.$strip>, zod.ZodObject<{
4318
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
4319
+ value: zod.ZodOptional<zod.ZodString>;
4200
4320
  }, zod_v4_core.$strip>], "inputMethod">>>>;
4201
4321
  mode: zod.ZodLiteral<"GENERATED_BY_SCRIPT">;
4202
4322
  scriptKey: zod.ZodOptional<zod.ZodString>;
@@ -4208,6 +4328,7 @@ declare const ActionSchema: TVersionedSchema<{
4208
4328
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
4209
4329
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
4210
4330
  dbDataType: zod.ZodOptional<zod.ZodString>;
4331
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
4211
4332
  }, zod_v4_core.$strip>, zod.ZodObject<{
4212
4333
  inputMethod: zod.ZodLiteral<"VARIABLE">;
4213
4334
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -4314,6 +4435,9 @@ declare const ActionSchema: TVersionedSchema<{
4314
4435
  readonly COLUMN_LIST: "COLUMN_LIST";
4315
4436
  }>>;
4316
4437
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
4438
+ }, zod_v4_core.$strip>, zod.ZodObject<{
4439
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
4440
+ value: zod.ZodOptional<zod.ZodString>;
4317
4441
  }, zod_v4_core.$strip>], "inputMethod">>>>;
4318
4442
  displayName: zod.ZodDefault<zod.ZodString>;
4319
4443
  }, zod_v4_core.$strip>, zod.ZodObject<{
@@ -4328,6 +4452,7 @@ declare const ActionSchema: TVersionedSchema<{
4328
4452
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
4329
4453
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
4330
4454
  dbDataType: zod.ZodOptional<zod.ZodString>;
4455
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
4331
4456
  }, zod_v4_core.$strip>, zod.ZodObject<{
4332
4457
  inputMethod: zod.ZodLiteral<"VARIABLE">;
4333
4458
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -4434,6 +4559,9 @@ declare const ActionSchema: TVersionedSchema<{
4434
4559
  readonly COLUMN_LIST: "COLUMN_LIST";
4435
4560
  }>>;
4436
4561
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
4562
+ }, zod_v4_core.$strip>, zod.ZodObject<{
4563
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
4564
+ value: zod.ZodOptional<zod.ZodString>;
4437
4565
  }, zod_v4_core.$strip>], "inputMethod">>>>;
4438
4566
  mode: zod.ZodLiteral<"EXISTED_VIEW">;
4439
4567
  viewKey: zod.ZodOptional<zod.ZodString>;
@@ -4445,6 +4573,7 @@ declare const ActionSchema: TVersionedSchema<{
4445
4573
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
4446
4574
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
4447
4575
  dbDataType: zod.ZodOptional<zod.ZodString>;
4576
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
4448
4577
  }, zod_v4_core.$strip>, zod.ZodObject<{
4449
4578
  inputMethod: zod.ZodLiteral<"VARIABLE">;
4450
4579
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -4551,6 +4680,9 @@ declare const ActionSchema: TVersionedSchema<{
4551
4680
  readonly COLUMN_LIST: "COLUMN_LIST";
4552
4681
  }>>;
4553
4682
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
4683
+ }, zod_v4_core.$strip>, zod.ZodObject<{
4684
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
4685
+ value: zod.ZodOptional<zod.ZodString>;
4554
4686
  }, zod_v4_core.$strip>], "inputMethod">>>>;
4555
4687
  }, zod_v4_core.$strip>, zod.ZodObject<{
4556
4688
  id: zod.ZodPipe<zod.ZodDefault<zod.ZodNumber>, zod.ZodTransform<number, number>>;
@@ -4564,6 +4696,7 @@ declare const ActionSchema: TVersionedSchema<{
4564
4696
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
4565
4697
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
4566
4698
  dbDataType: zod.ZodOptional<zod.ZodString>;
4699
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
4567
4700
  }, zod_v4_core.$strip>, zod.ZodObject<{
4568
4701
  inputMethod: zod.ZodLiteral<"VARIABLE">;
4569
4702
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -4670,6 +4803,9 @@ declare const ActionSchema: TVersionedSchema<{
4670
4803
  readonly COLUMN_LIST: "COLUMN_LIST";
4671
4804
  }>>;
4672
4805
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
4806
+ }, zod_v4_core.$strip>, zod.ZodObject<{
4807
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
4808
+ value: zod.ZodOptional<zod.ZodString>;
4673
4809
  }, zod_v4_core.$strip>], "inputMethod">>>>;
4674
4810
  mode: zod.ZodLiteral<"EMPTY">;
4675
4811
  placeholderName: zod.ZodOptional<zod.ZodString>;
@@ -4704,6 +4840,7 @@ declare const ActionSchema: TVersionedSchema<{
4704
4840
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
4705
4841
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
4706
4842
  dbDataType: zod.ZodOptional<zod.ZodString>;
4843
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
4707
4844
  }, zod_v4_core.$strip>, zod.ZodObject<{
4708
4845
  inputMethod: zod.ZodLiteral<"VARIABLE">;
4709
4846
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -4810,6 +4947,9 @@ declare const ActionSchema: TVersionedSchema<{
4810
4947
  readonly COLUMN_LIST: "COLUMN_LIST";
4811
4948
  }>>;
4812
4949
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
4950
+ }, zod_v4_core.$strip>, zod.ZodObject<{
4951
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
4952
+ value: zod.ZodOptional<zod.ZodString>;
4813
4953
  }, zod_v4_core.$strip>], "inputMethod">>>>;
4814
4954
  }, zod_v4_core.$strip>]>, zod.ZodObject<{
4815
4955
  id: zod.ZodPipe<zod.ZodDefault<zod.ZodNumber>, zod.ZodTransform<number, number>>;
@@ -4853,6 +4993,7 @@ declare const ActionButtonSchema: TVersionedSchema<{
4853
4993
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
4854
4994
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
4855
4995
  dbDataType: zod.ZodOptional<zod.ZodString>;
4996
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
4856
4997
  }, zod_v4_core.$strip>, zod.ZodObject<{
4857
4998
  inputMethod: zod.ZodLiteral<"VARIABLE">;
4858
4999
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -4982,6 +5123,7 @@ declare const ActionButtonSchema: TVersionedSchema<{
4982
5123
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
4983
5124
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
4984
5125
  dbDataType: zod.ZodOptional<zod.ZodString>;
5126
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
4985
5127
  }, zod_v4_core.$strip>, zod.ZodObject<{
4986
5128
  inputMethod: zod.ZodLiteral<"VARIABLE">;
4987
5129
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -5133,6 +5275,10 @@ declare const ActionButtonSchema: TVersionedSchema<{
5133
5275
  formula: zod.ZodDefault<zod.ZodString>;
5134
5276
  }, zod_v4_core.$strip>]>;
5135
5277
  }, zod_v4_core.$strip>>>;
5278
+ }, zod_v4_core.$strip>, zod.ZodObject<{
5279
+ mode: zod.ZodLiteral<"RANGES">;
5280
+ colors: zod.ZodDefault<zod.ZodArray<zod.ZodString>>;
5281
+ limits: zod.ZodDefault<zod.ZodArray<zod.ZodNumber>>;
5136
5282
  }, zod_v4_core.$strip>], "mode">>;
5137
5283
  borderColor: zod.ZodDefault<zod.ZodDiscriminatedUnion<[zod.ZodObject<{
5138
5284
  mode: zod.ZodLiteral<"AUTO">;
@@ -5177,6 +5323,10 @@ declare const ActionButtonSchema: TVersionedSchema<{
5177
5323
  formula: zod.ZodDefault<zod.ZodString>;
5178
5324
  }, zod_v4_core.$strip>]>;
5179
5325
  }, zod_v4_core.$strip>>>;
5326
+ }, zod_v4_core.$strip>, zod.ZodObject<{
5327
+ mode: zod.ZodLiteral<"RANGES">;
5328
+ colors: zod.ZodDefault<zod.ZodArray<zod.ZodString>>;
5329
+ limits: zod.ZodDefault<zod.ZodArray<zod.ZodNumber>>;
5180
5330
  }, zod_v4_core.$strip>], "mode">>;
5181
5331
  color: zod.ZodDefault<zod.ZodDiscriminatedUnion<[zod.ZodObject<{
5182
5332
  mode: zod.ZodLiteral<"AUTO">;
@@ -5221,6 +5371,10 @@ declare const ActionButtonSchema: TVersionedSchema<{
5221
5371
  formula: zod.ZodDefault<zod.ZodString>;
5222
5372
  }, zod_v4_core.$strip>]>;
5223
5373
  }, zod_v4_core.$strip>>>;
5374
+ }, zod_v4_core.$strip>, zod.ZodObject<{
5375
+ mode: zod.ZodLiteral<"RANGES">;
5376
+ colors: zod.ZodDefault<zod.ZodArray<zod.ZodString>>;
5377
+ limits: zod.ZodDefault<zod.ZodArray<zod.ZodNumber>>;
5224
5378
  }, zod_v4_core.$strip>], "mode">>;
5225
5379
  hint: zod.ZodDefault<zod.ZodString>;
5226
5380
  }, zod_v4_core.$strip>;
@@ -5239,6 +5393,8 @@ declare const EWidgetActionInputMethod: TVersionedEnum<{
5239
5393
  readonly FINISH_EVENT: "FINISH_EVENT";
5240
5394
  readonly AGGREGATION: "AGGREGATION";
5241
5395
  readonly DATA_MODEL: "DATA_MODEL";
5396
+ /** Значение берётся из редактируемого текста виджета в момент сохранения */
5397
+ readonly EDITABLE_TEXT_VALUE: "EDITABLE_TEXT_VALUE";
5242
5398
  };
5243
5399
  }, "17">;
5244
5400
  type TWidgetActionInputMethod = TVersionedEnumValues<typeof EWidgetActionInputMethod>;
@@ -5311,6 +5467,8 @@ interface IParameterFromStaticList extends TSchemaType<typeof ParameterFromStati
5311
5467
  }
5312
5468
  interface IParameterFromDynamicList extends TSchemaType<typeof ParameterFromDynamicListSchema> {
5313
5469
  }
5470
+ interface IParameterFromEditableTextValue extends TSchemaType<typeof ParameterFromEditableTextValueSchema> {
5471
+ }
5314
5472
  type TParameterFromDataModel = TSchemaType<typeof ParameterFromDataModelSchema>;
5315
5473
  type TWidgetActionParameter = TSchemaType<typeof WidgetActionParameterSchema>;
5316
5474
  type TActionOnClickParameter = TSchemaType<typeof ActionOnClickParameterSchema>;
@@ -6291,6 +6449,7 @@ declare const WidgetColumnIndicatorSchema: TVersionedSchema<{
6291
6449
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
6292
6450
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
6293
6451
  dbDataType: zod.ZodOptional<zod.ZodString>;
6452
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
6294
6453
  }, zod_v4_core.$strip>, zod.ZodObject<{
6295
6454
  inputMethod: zod.ZodLiteral<"VARIABLE">;
6296
6455
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -6397,6 +6556,9 @@ declare const WidgetColumnIndicatorSchema: TVersionedSchema<{
6397
6556
  readonly COLUMN_LIST: "COLUMN_LIST";
6398
6557
  }>>;
6399
6558
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
6559
+ }, zod_v4_core.$strip>, zod.ZodObject<{
6560
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
6561
+ value: zod.ZodOptional<zod.ZodString>;
6400
6562
  }, zod_v4_core.$strip>], "inputMethod">>>>;
6401
6563
  }, zod_v4_core.$strip>, zod.ZodObject<{
6402
6564
  id: zod.ZodPipe<zod.ZodDefault<zod.ZodNumber>, zod.ZodTransform<number, number>>;
@@ -6410,6 +6572,7 @@ declare const WidgetColumnIndicatorSchema: TVersionedSchema<{
6410
6572
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
6411
6573
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
6412
6574
  dbDataType: zod.ZodOptional<zod.ZodString>;
6575
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
6413
6576
  }, zod_v4_core.$strip>, zod.ZodObject<{
6414
6577
  inputMethod: zod.ZodLiteral<"VARIABLE">;
6415
6578
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -6516,6 +6679,9 @@ declare const WidgetColumnIndicatorSchema: TVersionedSchema<{
6516
6679
  readonly COLUMN_LIST: "COLUMN_LIST";
6517
6680
  }>>;
6518
6681
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
6682
+ }, zod_v4_core.$strip>, zod.ZodObject<{
6683
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
6684
+ value: zod.ZodOptional<zod.ZodString>;
6519
6685
  }, zod_v4_core.$strip>], "inputMethod">>>>;
6520
6686
  scriptKey: zod.ZodString;
6521
6687
  autoUpdate: zod.ZodDefault<zod.ZodEnum<{
@@ -6541,6 +6707,7 @@ declare const WidgetColumnIndicatorSchema: TVersionedSchema<{
6541
6707
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
6542
6708
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
6543
6709
  dbDataType: zod.ZodOptional<zod.ZodString>;
6710
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
6544
6711
  }, zod_v4_core.$strip>, zod.ZodObject<{
6545
6712
  inputMethod: zod.ZodLiteral<"VARIABLE">;
6546
6713
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -6647,6 +6814,9 @@ declare const WidgetColumnIndicatorSchema: TVersionedSchema<{
6647
6814
  readonly COLUMN_LIST: "COLUMN_LIST";
6648
6815
  }>>;
6649
6816
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
6817
+ }, zod_v4_core.$strip>, zod.ZodObject<{
6818
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
6819
+ value: zod.ZodOptional<zod.ZodString>;
6650
6820
  }, zod_v4_core.$strip>], "inputMethod">>>>;
6651
6821
  runButtonText: zod.ZodDefault<zod.ZodString>;
6652
6822
  }, zod_v4_core.$strip>, zod.ZodObject<{
@@ -6661,6 +6831,7 @@ declare const WidgetColumnIndicatorSchema: TVersionedSchema<{
6661
6831
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
6662
6832
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
6663
6833
  dbDataType: zod.ZodOptional<zod.ZodString>;
6834
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
6664
6835
  }, zod_v4_core.$strip>, zod.ZodObject<{
6665
6836
  inputMethod: zod.ZodLiteral<"VARIABLE">;
6666
6837
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -6767,6 +6938,9 @@ declare const WidgetColumnIndicatorSchema: TVersionedSchema<{
6767
6938
  readonly COLUMN_LIST: "COLUMN_LIST";
6768
6939
  }>>;
6769
6940
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
6941
+ }, zod_v4_core.$strip>, zod.ZodObject<{
6942
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
6943
+ value: zod.ZodOptional<zod.ZodString>;
6770
6944
  }, zod_v4_core.$strip>], "inputMethod">>>>;
6771
6945
  }, zod_v4_core.$strip>, zod.ZodIntersection<zod.ZodDiscriminatedUnion<[zod.ZodObject<{
6772
6946
  id: zod.ZodPipe<zod.ZodDefault<zod.ZodNumber>, zod.ZodTransform<number, number>>;
@@ -6780,6 +6954,7 @@ declare const WidgetColumnIndicatorSchema: TVersionedSchema<{
6780
6954
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
6781
6955
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
6782
6956
  dbDataType: zod.ZodOptional<zod.ZodString>;
6957
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
6783
6958
  }, zod_v4_core.$strip>, zod.ZodObject<{
6784
6959
  inputMethod: zod.ZodLiteral<"VARIABLE">;
6785
6960
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -6886,6 +7061,9 @@ declare const WidgetColumnIndicatorSchema: TVersionedSchema<{
6886
7061
  readonly COLUMN_LIST: "COLUMN_LIST";
6887
7062
  }>>;
6888
7063
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
7064
+ }, zod_v4_core.$strip>, zod.ZodObject<{
7065
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
7066
+ value: zod.ZodOptional<zod.ZodString>;
6889
7067
  }, zod_v4_core.$strip>], "inputMethod">>>>;
6890
7068
  mode: zod.ZodLiteral<"GENERATED_BY_SCRIPT">;
6891
7069
  scriptKey: zod.ZodOptional<zod.ZodString>;
@@ -6897,6 +7075,7 @@ declare const WidgetColumnIndicatorSchema: TVersionedSchema<{
6897
7075
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
6898
7076
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
6899
7077
  dbDataType: zod.ZodOptional<zod.ZodString>;
7078
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
6900
7079
  }, zod_v4_core.$strip>, zod.ZodObject<{
6901
7080
  inputMethod: zod.ZodLiteral<"VARIABLE">;
6902
7081
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -7003,6 +7182,9 @@ declare const WidgetColumnIndicatorSchema: TVersionedSchema<{
7003
7182
  readonly COLUMN_LIST: "COLUMN_LIST";
7004
7183
  }>>;
7005
7184
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
7185
+ }, zod_v4_core.$strip>, zod.ZodObject<{
7186
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
7187
+ value: zod.ZodOptional<zod.ZodString>;
7006
7188
  }, zod_v4_core.$strip>], "inputMethod">>>>;
7007
7189
  displayName: zod.ZodDefault<zod.ZodString>;
7008
7190
  }, zod_v4_core.$strip>, zod.ZodObject<{
@@ -7017,6 +7199,7 @@ declare const WidgetColumnIndicatorSchema: TVersionedSchema<{
7017
7199
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
7018
7200
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
7019
7201
  dbDataType: zod.ZodOptional<zod.ZodString>;
7202
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
7020
7203
  }, zod_v4_core.$strip>, zod.ZodObject<{
7021
7204
  inputMethod: zod.ZodLiteral<"VARIABLE">;
7022
7205
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -7123,6 +7306,9 @@ declare const WidgetColumnIndicatorSchema: TVersionedSchema<{
7123
7306
  readonly COLUMN_LIST: "COLUMN_LIST";
7124
7307
  }>>;
7125
7308
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
7309
+ }, zod_v4_core.$strip>, zod.ZodObject<{
7310
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
7311
+ value: zod.ZodOptional<zod.ZodString>;
7126
7312
  }, zod_v4_core.$strip>], "inputMethod">>>>;
7127
7313
  mode: zod.ZodLiteral<"EXISTED_VIEW">;
7128
7314
  viewKey: zod.ZodOptional<zod.ZodString>;
@@ -7134,6 +7320,7 @@ declare const WidgetColumnIndicatorSchema: TVersionedSchema<{
7134
7320
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
7135
7321
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
7136
7322
  dbDataType: zod.ZodOptional<zod.ZodString>;
7323
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
7137
7324
  }, zod_v4_core.$strip>, zod.ZodObject<{
7138
7325
  inputMethod: zod.ZodLiteral<"VARIABLE">;
7139
7326
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -7240,6 +7427,9 @@ declare const WidgetColumnIndicatorSchema: TVersionedSchema<{
7240
7427
  readonly COLUMN_LIST: "COLUMN_LIST";
7241
7428
  }>>;
7242
7429
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
7430
+ }, zod_v4_core.$strip>, zod.ZodObject<{
7431
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
7432
+ value: zod.ZodOptional<zod.ZodString>;
7243
7433
  }, zod_v4_core.$strip>], "inputMethod">>>>;
7244
7434
  }, zod_v4_core.$strip>, zod.ZodObject<{
7245
7435
  id: zod.ZodPipe<zod.ZodDefault<zod.ZodNumber>, zod.ZodTransform<number, number>>;
@@ -7253,6 +7443,7 @@ declare const WidgetColumnIndicatorSchema: TVersionedSchema<{
7253
7443
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
7254
7444
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
7255
7445
  dbDataType: zod.ZodOptional<zod.ZodString>;
7446
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
7256
7447
  }, zod_v4_core.$strip>, zod.ZodObject<{
7257
7448
  inputMethod: zod.ZodLiteral<"VARIABLE">;
7258
7449
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -7359,6 +7550,9 @@ declare const WidgetColumnIndicatorSchema: TVersionedSchema<{
7359
7550
  readonly COLUMN_LIST: "COLUMN_LIST";
7360
7551
  }>>;
7361
7552
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
7553
+ }, zod_v4_core.$strip>, zod.ZodObject<{
7554
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
7555
+ value: zod.ZodOptional<zod.ZodString>;
7362
7556
  }, zod_v4_core.$strip>], "inputMethod">>>>;
7363
7557
  mode: zod.ZodLiteral<"EMPTY">;
7364
7558
  placeholderName: zod.ZodOptional<zod.ZodString>;
@@ -7393,6 +7587,7 @@ declare const WidgetColumnIndicatorSchema: TVersionedSchema<{
7393
7587
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
7394
7588
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
7395
7589
  dbDataType: zod.ZodOptional<zod.ZodString>;
7590
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
7396
7591
  }, zod_v4_core.$strip>, zod.ZodObject<{
7397
7592
  inputMethod: zod.ZodLiteral<"VARIABLE">;
7398
7593
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -7499,6 +7694,9 @@ declare const WidgetColumnIndicatorSchema: TVersionedSchema<{
7499
7694
  readonly COLUMN_LIST: "COLUMN_LIST";
7500
7695
  }>>;
7501
7696
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
7697
+ }, zod_v4_core.$strip>, zod.ZodObject<{
7698
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
7699
+ value: zod.ZodOptional<zod.ZodString>;
7502
7700
  }, zod_v4_core.$strip>], "inputMethod">>>>;
7503
7701
  }, zod_v4_core.$strip>]>>>>;
7504
7702
  }, zod_v4_core.$strip>;
@@ -7803,6 +8001,7 @@ declare const WidgetDimensionSchema: TVersionedSchema<{
7803
8001
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
7804
8002
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
7805
8003
  dbDataType: zod.ZodOptional<zod.ZodString>;
8004
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
7806
8005
  }, zod_v4_core.$strip>, zod.ZodObject<{
7807
8006
  inputMethod: zod.ZodLiteral<"VARIABLE">;
7808
8007
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -7909,6 +8108,9 @@ declare const WidgetDimensionSchema: TVersionedSchema<{
7909
8108
  readonly COLUMN_LIST: "COLUMN_LIST";
7910
8109
  }>>;
7911
8110
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
8111
+ }, zod_v4_core.$strip>, zod.ZodObject<{
8112
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
8113
+ value: zod.ZodOptional<zod.ZodString>;
7912
8114
  }, zod_v4_core.$strip>], "inputMethod">>>>;
7913
8115
  }, zod_v4_core.$strip>, zod.ZodObject<{
7914
8116
  id: zod.ZodPipe<zod.ZodDefault<zod.ZodNumber>, zod.ZodTransform<number, number>>;
@@ -7922,6 +8124,7 @@ declare const WidgetDimensionSchema: TVersionedSchema<{
7922
8124
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
7923
8125
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
7924
8126
  dbDataType: zod.ZodOptional<zod.ZodString>;
8127
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
7925
8128
  }, zod_v4_core.$strip>, zod.ZodObject<{
7926
8129
  inputMethod: zod.ZodLiteral<"VARIABLE">;
7927
8130
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -8028,6 +8231,9 @@ declare const WidgetDimensionSchema: TVersionedSchema<{
8028
8231
  readonly COLUMN_LIST: "COLUMN_LIST";
8029
8232
  }>>;
8030
8233
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
8234
+ }, zod_v4_core.$strip>, zod.ZodObject<{
8235
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
8236
+ value: zod.ZodOptional<zod.ZodString>;
8031
8237
  }, zod_v4_core.$strip>], "inputMethod">>>>;
8032
8238
  scriptKey: zod.ZodString;
8033
8239
  autoUpdate: zod.ZodDefault<zod.ZodEnum<{
@@ -8053,6 +8259,7 @@ declare const WidgetDimensionSchema: TVersionedSchema<{
8053
8259
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
8054
8260
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
8055
8261
  dbDataType: zod.ZodOptional<zod.ZodString>;
8262
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
8056
8263
  }, zod_v4_core.$strip>, zod.ZodObject<{
8057
8264
  inputMethod: zod.ZodLiteral<"VARIABLE">;
8058
8265
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -8159,6 +8366,9 @@ declare const WidgetDimensionSchema: TVersionedSchema<{
8159
8366
  readonly COLUMN_LIST: "COLUMN_LIST";
8160
8367
  }>>;
8161
8368
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
8369
+ }, zod_v4_core.$strip>, zod.ZodObject<{
8370
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
8371
+ value: zod.ZodOptional<zod.ZodString>;
8162
8372
  }, zod_v4_core.$strip>], "inputMethod">>>>;
8163
8373
  runButtonText: zod.ZodDefault<zod.ZodString>;
8164
8374
  }, zod_v4_core.$strip>, zod.ZodObject<{
@@ -8173,6 +8383,7 @@ declare const WidgetDimensionSchema: TVersionedSchema<{
8173
8383
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
8174
8384
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
8175
8385
  dbDataType: zod.ZodOptional<zod.ZodString>;
8386
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
8176
8387
  }, zod_v4_core.$strip>, zod.ZodObject<{
8177
8388
  inputMethod: zod.ZodLiteral<"VARIABLE">;
8178
8389
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -8279,6 +8490,9 @@ declare const WidgetDimensionSchema: TVersionedSchema<{
8279
8490
  readonly COLUMN_LIST: "COLUMN_LIST";
8280
8491
  }>>;
8281
8492
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
8493
+ }, zod_v4_core.$strip>, zod.ZodObject<{
8494
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
8495
+ value: zod.ZodOptional<zod.ZodString>;
8282
8496
  }, zod_v4_core.$strip>], "inputMethod">>>>;
8283
8497
  }, zod_v4_core.$strip>, zod.ZodIntersection<zod.ZodDiscriminatedUnion<[zod.ZodObject<{
8284
8498
  id: zod.ZodPipe<zod.ZodDefault<zod.ZodNumber>, zod.ZodTransform<number, number>>;
@@ -8292,6 +8506,7 @@ declare const WidgetDimensionSchema: TVersionedSchema<{
8292
8506
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
8293
8507
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
8294
8508
  dbDataType: zod.ZodOptional<zod.ZodString>;
8509
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
8295
8510
  }, zod_v4_core.$strip>, zod.ZodObject<{
8296
8511
  inputMethod: zod.ZodLiteral<"VARIABLE">;
8297
8512
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -8398,6 +8613,9 @@ declare const WidgetDimensionSchema: TVersionedSchema<{
8398
8613
  readonly COLUMN_LIST: "COLUMN_LIST";
8399
8614
  }>>;
8400
8615
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
8616
+ }, zod_v4_core.$strip>, zod.ZodObject<{
8617
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
8618
+ value: zod.ZodOptional<zod.ZodString>;
8401
8619
  }, zod_v4_core.$strip>], "inputMethod">>>>;
8402
8620
  mode: zod.ZodLiteral<"GENERATED_BY_SCRIPT">;
8403
8621
  scriptKey: zod.ZodOptional<zod.ZodString>;
@@ -8409,6 +8627,7 @@ declare const WidgetDimensionSchema: TVersionedSchema<{
8409
8627
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
8410
8628
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
8411
8629
  dbDataType: zod.ZodOptional<zod.ZodString>;
8630
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
8412
8631
  }, zod_v4_core.$strip>, zod.ZodObject<{
8413
8632
  inputMethod: zod.ZodLiteral<"VARIABLE">;
8414
8633
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -8515,6 +8734,9 @@ declare const WidgetDimensionSchema: TVersionedSchema<{
8515
8734
  readonly COLUMN_LIST: "COLUMN_LIST";
8516
8735
  }>>;
8517
8736
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
8737
+ }, zod_v4_core.$strip>, zod.ZodObject<{
8738
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
8739
+ value: zod.ZodOptional<zod.ZodString>;
8518
8740
  }, zod_v4_core.$strip>], "inputMethod">>>>;
8519
8741
  displayName: zod.ZodDefault<zod.ZodString>;
8520
8742
  }, zod_v4_core.$strip>, zod.ZodObject<{
@@ -8529,6 +8751,7 @@ declare const WidgetDimensionSchema: TVersionedSchema<{
8529
8751
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
8530
8752
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
8531
8753
  dbDataType: zod.ZodOptional<zod.ZodString>;
8754
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
8532
8755
  }, zod_v4_core.$strip>, zod.ZodObject<{
8533
8756
  inputMethod: zod.ZodLiteral<"VARIABLE">;
8534
8757
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -8635,6 +8858,9 @@ declare const WidgetDimensionSchema: TVersionedSchema<{
8635
8858
  readonly COLUMN_LIST: "COLUMN_LIST";
8636
8859
  }>>;
8637
8860
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
8861
+ }, zod_v4_core.$strip>, zod.ZodObject<{
8862
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
8863
+ value: zod.ZodOptional<zod.ZodString>;
8638
8864
  }, zod_v4_core.$strip>], "inputMethod">>>>;
8639
8865
  mode: zod.ZodLiteral<"EXISTED_VIEW">;
8640
8866
  viewKey: zod.ZodOptional<zod.ZodString>;
@@ -8646,6 +8872,7 @@ declare const WidgetDimensionSchema: TVersionedSchema<{
8646
8872
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
8647
8873
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
8648
8874
  dbDataType: zod.ZodOptional<zod.ZodString>;
8875
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
8649
8876
  }, zod_v4_core.$strip>, zod.ZodObject<{
8650
8877
  inputMethod: zod.ZodLiteral<"VARIABLE">;
8651
8878
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -8752,6 +8979,9 @@ declare const WidgetDimensionSchema: TVersionedSchema<{
8752
8979
  readonly COLUMN_LIST: "COLUMN_LIST";
8753
8980
  }>>;
8754
8981
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
8982
+ }, zod_v4_core.$strip>, zod.ZodObject<{
8983
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
8984
+ value: zod.ZodOptional<zod.ZodString>;
8755
8985
  }, zod_v4_core.$strip>], "inputMethod">>>>;
8756
8986
  }, zod_v4_core.$strip>, zod.ZodObject<{
8757
8987
  id: zod.ZodPipe<zod.ZodDefault<zod.ZodNumber>, zod.ZodTransform<number, number>>;
@@ -8765,6 +8995,7 @@ declare const WidgetDimensionSchema: TVersionedSchema<{
8765
8995
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
8766
8996
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
8767
8997
  dbDataType: zod.ZodOptional<zod.ZodString>;
8998
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
8768
8999
  }, zod_v4_core.$strip>, zod.ZodObject<{
8769
9000
  inputMethod: zod.ZodLiteral<"VARIABLE">;
8770
9001
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -8871,6 +9102,9 @@ declare const WidgetDimensionSchema: TVersionedSchema<{
8871
9102
  readonly COLUMN_LIST: "COLUMN_LIST";
8872
9103
  }>>;
8873
9104
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
9105
+ }, zod_v4_core.$strip>, zod.ZodObject<{
9106
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
9107
+ value: zod.ZodOptional<zod.ZodString>;
8874
9108
  }, zod_v4_core.$strip>], "inputMethod">>>>;
8875
9109
  mode: zod.ZodLiteral<"EMPTY">;
8876
9110
  placeholderName: zod.ZodOptional<zod.ZodString>;
@@ -8905,6 +9139,7 @@ declare const WidgetDimensionSchema: TVersionedSchema<{
8905
9139
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
8906
9140
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
8907
9141
  dbDataType: zod.ZodOptional<zod.ZodString>;
9142
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
8908
9143
  }, zod_v4_core.$strip>, zod.ZodObject<{
8909
9144
  inputMethod: zod.ZodLiteral<"VARIABLE">;
8910
9145
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -9011,6 +9246,9 @@ declare const WidgetDimensionSchema: TVersionedSchema<{
9011
9246
  readonly COLUMN_LIST: "COLUMN_LIST";
9012
9247
  }>>;
9013
9248
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
9249
+ }, zod_v4_core.$strip>, zod.ZodObject<{
9250
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
9251
+ value: zod.ZodOptional<zod.ZodString>;
9014
9252
  }, zod_v4_core.$strip>], "inputMethod">>>>;
9015
9253
  }, zod_v4_core.$strip>]>>>>;
9016
9254
  value: zod.ZodOptional<zod.ZodDiscriminatedUnion<[zod.ZodDiscriminatedUnion<[zod.ZodObject<{
@@ -9181,6 +9419,7 @@ declare const WidgetDimensionSchema: TVersionedSchema<{
9181
9419
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
9182
9420
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
9183
9421
  dbDataType: zod.ZodOptional<zod.ZodString>;
9422
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
9184
9423
  }, zod_v4_core.$strip>, zod.ZodObject<{
9185
9424
  inputMethod: zod.ZodLiteral<"VARIABLE">;
9186
9425
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -9287,6 +9526,9 @@ declare const WidgetDimensionSchema: TVersionedSchema<{
9287
9526
  readonly COLUMN_LIST: "COLUMN_LIST";
9288
9527
  }>>;
9289
9528
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
9529
+ }, zod_v4_core.$strip>, zod.ZodObject<{
9530
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
9531
+ value: zod.ZodOptional<zod.ZodString>;
9290
9532
  }, zod_v4_core.$strip>], "inputMethod">>>>;
9291
9533
  }, zod_v4_core.$strip>, zod.ZodObject<{
9292
9534
  id: zod.ZodPipe<zod.ZodDefault<zod.ZodNumber>, zod.ZodTransform<number, number>>;
@@ -9300,6 +9542,7 @@ declare const WidgetDimensionSchema: TVersionedSchema<{
9300
9542
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
9301
9543
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
9302
9544
  dbDataType: zod.ZodOptional<zod.ZodString>;
9545
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
9303
9546
  }, zod_v4_core.$strip>, zod.ZodObject<{
9304
9547
  inputMethod: zod.ZodLiteral<"VARIABLE">;
9305
9548
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -9406,6 +9649,9 @@ declare const WidgetDimensionSchema: TVersionedSchema<{
9406
9649
  readonly COLUMN_LIST: "COLUMN_LIST";
9407
9650
  }>>;
9408
9651
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
9652
+ }, zod_v4_core.$strip>, zod.ZodObject<{
9653
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
9654
+ value: zod.ZodOptional<zod.ZodString>;
9409
9655
  }, zod_v4_core.$strip>], "inputMethod">>>>;
9410
9656
  scriptKey: zod.ZodString;
9411
9657
  autoUpdate: zod.ZodDefault<zod.ZodEnum<{
@@ -9431,6 +9677,7 @@ declare const WidgetDimensionSchema: TVersionedSchema<{
9431
9677
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
9432
9678
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
9433
9679
  dbDataType: zod.ZodOptional<zod.ZodString>;
9680
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
9434
9681
  }, zod_v4_core.$strip>, zod.ZodObject<{
9435
9682
  inputMethod: zod.ZodLiteral<"VARIABLE">;
9436
9683
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -9537,6 +9784,9 @@ declare const WidgetDimensionSchema: TVersionedSchema<{
9537
9784
  readonly COLUMN_LIST: "COLUMN_LIST";
9538
9785
  }>>;
9539
9786
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
9787
+ }, zod_v4_core.$strip>, zod.ZodObject<{
9788
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
9789
+ value: zod.ZodOptional<zod.ZodString>;
9540
9790
  }, zod_v4_core.$strip>], "inputMethod">>>>;
9541
9791
  runButtonText: zod.ZodDefault<zod.ZodString>;
9542
9792
  }, zod_v4_core.$strip>, zod.ZodObject<{
@@ -9551,6 +9801,7 @@ declare const WidgetDimensionSchema: TVersionedSchema<{
9551
9801
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
9552
9802
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
9553
9803
  dbDataType: zod.ZodOptional<zod.ZodString>;
9804
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
9554
9805
  }, zod_v4_core.$strip>, zod.ZodObject<{
9555
9806
  inputMethod: zod.ZodLiteral<"VARIABLE">;
9556
9807
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -9657,6 +9908,9 @@ declare const WidgetDimensionSchema: TVersionedSchema<{
9657
9908
  readonly COLUMN_LIST: "COLUMN_LIST";
9658
9909
  }>>;
9659
9910
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
9911
+ }, zod_v4_core.$strip>, zod.ZodObject<{
9912
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
9913
+ value: zod.ZodOptional<zod.ZodString>;
9660
9914
  }, zod_v4_core.$strip>], "inputMethod">>>>;
9661
9915
  }, zod_v4_core.$strip>, zod.ZodIntersection<zod.ZodDiscriminatedUnion<[zod.ZodObject<{
9662
9916
  id: zod.ZodPipe<zod.ZodDefault<zod.ZodNumber>, zod.ZodTransform<number, number>>;
@@ -9670,6 +9924,7 @@ declare const WidgetDimensionSchema: TVersionedSchema<{
9670
9924
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
9671
9925
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
9672
9926
  dbDataType: zod.ZodOptional<zod.ZodString>;
9927
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
9673
9928
  }, zod_v4_core.$strip>, zod.ZodObject<{
9674
9929
  inputMethod: zod.ZodLiteral<"VARIABLE">;
9675
9930
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -9776,6 +10031,9 @@ declare const WidgetDimensionSchema: TVersionedSchema<{
9776
10031
  readonly COLUMN_LIST: "COLUMN_LIST";
9777
10032
  }>>;
9778
10033
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
10034
+ }, zod_v4_core.$strip>, zod.ZodObject<{
10035
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
10036
+ value: zod.ZodOptional<zod.ZodString>;
9779
10037
  }, zod_v4_core.$strip>], "inputMethod">>>>;
9780
10038
  mode: zod.ZodLiteral<"GENERATED_BY_SCRIPT">;
9781
10039
  scriptKey: zod.ZodOptional<zod.ZodString>;
@@ -9787,6 +10045,7 @@ declare const WidgetDimensionSchema: TVersionedSchema<{
9787
10045
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
9788
10046
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
9789
10047
  dbDataType: zod.ZodOptional<zod.ZodString>;
10048
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
9790
10049
  }, zod_v4_core.$strip>, zod.ZodObject<{
9791
10050
  inputMethod: zod.ZodLiteral<"VARIABLE">;
9792
10051
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -9893,6 +10152,9 @@ declare const WidgetDimensionSchema: TVersionedSchema<{
9893
10152
  readonly COLUMN_LIST: "COLUMN_LIST";
9894
10153
  }>>;
9895
10154
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
10155
+ }, zod_v4_core.$strip>, zod.ZodObject<{
10156
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
10157
+ value: zod.ZodOptional<zod.ZodString>;
9896
10158
  }, zod_v4_core.$strip>], "inputMethod">>>>;
9897
10159
  displayName: zod.ZodDefault<zod.ZodString>;
9898
10160
  }, zod_v4_core.$strip>, zod.ZodObject<{
@@ -9907,6 +10169,7 @@ declare const WidgetDimensionSchema: TVersionedSchema<{
9907
10169
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
9908
10170
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
9909
10171
  dbDataType: zod.ZodOptional<zod.ZodString>;
10172
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
9910
10173
  }, zod_v4_core.$strip>, zod.ZodObject<{
9911
10174
  inputMethod: zod.ZodLiteral<"VARIABLE">;
9912
10175
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -10013,6 +10276,9 @@ declare const WidgetDimensionSchema: TVersionedSchema<{
10013
10276
  readonly COLUMN_LIST: "COLUMN_LIST";
10014
10277
  }>>;
10015
10278
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
10279
+ }, zod_v4_core.$strip>, zod.ZodObject<{
10280
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
10281
+ value: zod.ZodOptional<zod.ZodString>;
10016
10282
  }, zod_v4_core.$strip>], "inputMethod">>>>;
10017
10283
  mode: zod.ZodLiteral<"EXISTED_VIEW">;
10018
10284
  viewKey: zod.ZodOptional<zod.ZodString>;
@@ -10024,6 +10290,7 @@ declare const WidgetDimensionSchema: TVersionedSchema<{
10024
10290
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
10025
10291
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
10026
10292
  dbDataType: zod.ZodOptional<zod.ZodString>;
10293
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
10027
10294
  }, zod_v4_core.$strip>, zod.ZodObject<{
10028
10295
  inputMethod: zod.ZodLiteral<"VARIABLE">;
10029
10296
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -10130,6 +10397,9 @@ declare const WidgetDimensionSchema: TVersionedSchema<{
10130
10397
  readonly COLUMN_LIST: "COLUMN_LIST";
10131
10398
  }>>;
10132
10399
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
10400
+ }, zod_v4_core.$strip>, zod.ZodObject<{
10401
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
10402
+ value: zod.ZodOptional<zod.ZodString>;
10133
10403
  }, zod_v4_core.$strip>], "inputMethod">>>>;
10134
10404
  }, zod_v4_core.$strip>, zod.ZodObject<{
10135
10405
  id: zod.ZodPipe<zod.ZodDefault<zod.ZodNumber>, zod.ZodTransform<number, number>>;
@@ -10143,6 +10413,7 @@ declare const WidgetDimensionSchema: TVersionedSchema<{
10143
10413
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
10144
10414
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
10145
10415
  dbDataType: zod.ZodOptional<zod.ZodString>;
10416
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
10146
10417
  }, zod_v4_core.$strip>, zod.ZodObject<{
10147
10418
  inputMethod: zod.ZodLiteral<"VARIABLE">;
10148
10419
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -10249,6 +10520,9 @@ declare const WidgetDimensionSchema: TVersionedSchema<{
10249
10520
  readonly COLUMN_LIST: "COLUMN_LIST";
10250
10521
  }>>;
10251
10522
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
10523
+ }, zod_v4_core.$strip>, zod.ZodObject<{
10524
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
10525
+ value: zod.ZodOptional<zod.ZodString>;
10252
10526
  }, zod_v4_core.$strip>], "inputMethod">>>>;
10253
10527
  mode: zod.ZodLiteral<"EMPTY">;
10254
10528
  placeholderName: zod.ZodOptional<zod.ZodString>;
@@ -10283,6 +10557,7 @@ declare const WidgetDimensionSchema: TVersionedSchema<{
10283
10557
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
10284
10558
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
10285
10559
  dbDataType: zod.ZodOptional<zod.ZodString>;
10560
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
10286
10561
  }, zod_v4_core.$strip>, zod.ZodObject<{
10287
10562
  inputMethod: zod.ZodLiteral<"VARIABLE">;
10288
10563
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -10389,6 +10664,9 @@ declare const WidgetDimensionSchema: TVersionedSchema<{
10389
10664
  readonly COLUMN_LIST: "COLUMN_LIST";
10390
10665
  }>>;
10391
10666
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
10667
+ }, zod_v4_core.$strip>, zod.ZodObject<{
10668
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
10669
+ value: zod.ZodOptional<zod.ZodString>;
10392
10670
  }, zod_v4_core.$strip>], "inputMethod">>>>;
10393
10671
  }, zod_v4_core.$strip>]>>>>;
10394
10672
  value: zod.ZodOptional<zod.ZodDiscriminatedUnion<[zod.ZodDiscriminatedUnion<[zod.ZodObject<{
@@ -10674,6 +10952,7 @@ declare const WidgetDimensionInHierarchySchema: TVersionedSchema<{
10674
10952
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
10675
10953
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
10676
10954
  dbDataType: zod.ZodOptional<zod.ZodString>;
10955
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
10677
10956
  }, zod_v4_core.$strip>, zod.ZodObject<{
10678
10957
  inputMethod: zod.ZodLiteral<"VARIABLE">;
10679
10958
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -10780,6 +11059,9 @@ declare const WidgetDimensionInHierarchySchema: TVersionedSchema<{
10780
11059
  readonly COLUMN_LIST: "COLUMN_LIST";
10781
11060
  }>>;
10782
11061
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
11062
+ }, zod_v4_core.$strip>, zod.ZodObject<{
11063
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
11064
+ value: zod.ZodOptional<zod.ZodString>;
10783
11065
  }, zod_v4_core.$strip>], "inputMethod">>>>;
10784
11066
  }, zod_v4_core.$strip>, zod.ZodObject<{
10785
11067
  id: zod.ZodPipe<zod.ZodDefault<zod.ZodNumber>, zod.ZodTransform<number, number>>;
@@ -10793,6 +11075,7 @@ declare const WidgetDimensionInHierarchySchema: TVersionedSchema<{
10793
11075
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
10794
11076
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
10795
11077
  dbDataType: zod.ZodOptional<zod.ZodString>;
11078
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
10796
11079
  }, zod_v4_core.$strip>, zod.ZodObject<{
10797
11080
  inputMethod: zod.ZodLiteral<"VARIABLE">;
10798
11081
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -10899,6 +11182,9 @@ declare const WidgetDimensionInHierarchySchema: TVersionedSchema<{
10899
11182
  readonly COLUMN_LIST: "COLUMN_LIST";
10900
11183
  }>>;
10901
11184
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
11185
+ }, zod_v4_core.$strip>, zod.ZodObject<{
11186
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
11187
+ value: zod.ZodOptional<zod.ZodString>;
10902
11188
  }, zod_v4_core.$strip>], "inputMethod">>>>;
10903
11189
  scriptKey: zod.ZodString;
10904
11190
  autoUpdate: zod.ZodDefault<zod.ZodEnum<{
@@ -10924,6 +11210,7 @@ declare const WidgetDimensionInHierarchySchema: TVersionedSchema<{
10924
11210
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
10925
11211
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
10926
11212
  dbDataType: zod.ZodOptional<zod.ZodString>;
11213
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
10927
11214
  }, zod_v4_core.$strip>, zod.ZodObject<{
10928
11215
  inputMethod: zod.ZodLiteral<"VARIABLE">;
10929
11216
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -11030,6 +11317,9 @@ declare const WidgetDimensionInHierarchySchema: TVersionedSchema<{
11030
11317
  readonly COLUMN_LIST: "COLUMN_LIST";
11031
11318
  }>>;
11032
11319
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
11320
+ }, zod_v4_core.$strip>, zod.ZodObject<{
11321
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
11322
+ value: zod.ZodOptional<zod.ZodString>;
11033
11323
  }, zod_v4_core.$strip>], "inputMethod">>>>;
11034
11324
  runButtonText: zod.ZodDefault<zod.ZodString>;
11035
11325
  }, zod_v4_core.$strip>, zod.ZodObject<{
@@ -11044,6 +11334,7 @@ declare const WidgetDimensionInHierarchySchema: TVersionedSchema<{
11044
11334
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
11045
11335
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
11046
11336
  dbDataType: zod.ZodOptional<zod.ZodString>;
11337
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
11047
11338
  }, zod_v4_core.$strip>, zod.ZodObject<{
11048
11339
  inputMethod: zod.ZodLiteral<"VARIABLE">;
11049
11340
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -11150,6 +11441,9 @@ declare const WidgetDimensionInHierarchySchema: TVersionedSchema<{
11150
11441
  readonly COLUMN_LIST: "COLUMN_LIST";
11151
11442
  }>>;
11152
11443
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
11444
+ }, zod_v4_core.$strip>, zod.ZodObject<{
11445
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
11446
+ value: zod.ZodOptional<zod.ZodString>;
11153
11447
  }, zod_v4_core.$strip>], "inputMethod">>>>;
11154
11448
  }, zod_v4_core.$strip>, zod.ZodIntersection<zod.ZodDiscriminatedUnion<[zod.ZodObject<{
11155
11449
  id: zod.ZodPipe<zod.ZodDefault<zod.ZodNumber>, zod.ZodTransform<number, number>>;
@@ -11163,6 +11457,7 @@ declare const WidgetDimensionInHierarchySchema: TVersionedSchema<{
11163
11457
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
11164
11458
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
11165
11459
  dbDataType: zod.ZodOptional<zod.ZodString>;
11460
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
11166
11461
  }, zod_v4_core.$strip>, zod.ZodObject<{
11167
11462
  inputMethod: zod.ZodLiteral<"VARIABLE">;
11168
11463
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -11269,6 +11564,9 @@ declare const WidgetDimensionInHierarchySchema: TVersionedSchema<{
11269
11564
  readonly COLUMN_LIST: "COLUMN_LIST";
11270
11565
  }>>;
11271
11566
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
11567
+ }, zod_v4_core.$strip>, zod.ZodObject<{
11568
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
11569
+ value: zod.ZodOptional<zod.ZodString>;
11272
11570
  }, zod_v4_core.$strip>], "inputMethod">>>>;
11273
11571
  mode: zod.ZodLiteral<"GENERATED_BY_SCRIPT">;
11274
11572
  scriptKey: zod.ZodOptional<zod.ZodString>;
@@ -11280,6 +11578,7 @@ declare const WidgetDimensionInHierarchySchema: TVersionedSchema<{
11280
11578
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
11281
11579
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
11282
11580
  dbDataType: zod.ZodOptional<zod.ZodString>;
11581
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
11283
11582
  }, zod_v4_core.$strip>, zod.ZodObject<{
11284
11583
  inputMethod: zod.ZodLiteral<"VARIABLE">;
11285
11584
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -11386,6 +11685,9 @@ declare const WidgetDimensionInHierarchySchema: TVersionedSchema<{
11386
11685
  readonly COLUMN_LIST: "COLUMN_LIST";
11387
11686
  }>>;
11388
11687
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
11688
+ }, zod_v4_core.$strip>, zod.ZodObject<{
11689
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
11690
+ value: zod.ZodOptional<zod.ZodString>;
11389
11691
  }, zod_v4_core.$strip>], "inputMethod">>>>;
11390
11692
  displayName: zod.ZodDefault<zod.ZodString>;
11391
11693
  }, zod_v4_core.$strip>, zod.ZodObject<{
@@ -11400,6 +11702,7 @@ declare const WidgetDimensionInHierarchySchema: TVersionedSchema<{
11400
11702
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
11401
11703
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
11402
11704
  dbDataType: zod.ZodOptional<zod.ZodString>;
11705
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
11403
11706
  }, zod_v4_core.$strip>, zod.ZodObject<{
11404
11707
  inputMethod: zod.ZodLiteral<"VARIABLE">;
11405
11708
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -11506,6 +11809,9 @@ declare const WidgetDimensionInHierarchySchema: TVersionedSchema<{
11506
11809
  readonly COLUMN_LIST: "COLUMN_LIST";
11507
11810
  }>>;
11508
11811
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
11812
+ }, zod_v4_core.$strip>, zod.ZodObject<{
11813
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
11814
+ value: zod.ZodOptional<zod.ZodString>;
11509
11815
  }, zod_v4_core.$strip>], "inputMethod">>>>;
11510
11816
  mode: zod.ZodLiteral<"EXISTED_VIEW">;
11511
11817
  viewKey: zod.ZodOptional<zod.ZodString>;
@@ -11517,6 +11823,7 @@ declare const WidgetDimensionInHierarchySchema: TVersionedSchema<{
11517
11823
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
11518
11824
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
11519
11825
  dbDataType: zod.ZodOptional<zod.ZodString>;
11826
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
11520
11827
  }, zod_v4_core.$strip>, zod.ZodObject<{
11521
11828
  inputMethod: zod.ZodLiteral<"VARIABLE">;
11522
11829
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -11623,6 +11930,9 @@ declare const WidgetDimensionInHierarchySchema: TVersionedSchema<{
11623
11930
  readonly COLUMN_LIST: "COLUMN_LIST";
11624
11931
  }>>;
11625
11932
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
11933
+ }, zod_v4_core.$strip>, zod.ZodObject<{
11934
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
11935
+ value: zod.ZodOptional<zod.ZodString>;
11626
11936
  }, zod_v4_core.$strip>], "inputMethod">>>>;
11627
11937
  }, zod_v4_core.$strip>, zod.ZodObject<{
11628
11938
  id: zod.ZodPipe<zod.ZodDefault<zod.ZodNumber>, zod.ZodTransform<number, number>>;
@@ -11636,6 +11946,7 @@ declare const WidgetDimensionInHierarchySchema: TVersionedSchema<{
11636
11946
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
11637
11947
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
11638
11948
  dbDataType: zod.ZodOptional<zod.ZodString>;
11949
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
11639
11950
  }, zod_v4_core.$strip>, zod.ZodObject<{
11640
11951
  inputMethod: zod.ZodLiteral<"VARIABLE">;
11641
11952
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -11742,6 +12053,9 @@ declare const WidgetDimensionInHierarchySchema: TVersionedSchema<{
11742
12053
  readonly COLUMN_LIST: "COLUMN_LIST";
11743
12054
  }>>;
11744
12055
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
12056
+ }, zod_v4_core.$strip>, zod.ZodObject<{
12057
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
12058
+ value: zod.ZodOptional<zod.ZodString>;
11745
12059
  }, zod_v4_core.$strip>], "inputMethod">>>>;
11746
12060
  mode: zod.ZodLiteral<"EMPTY">;
11747
12061
  placeholderName: zod.ZodOptional<zod.ZodString>;
@@ -11776,6 +12090,7 @@ declare const WidgetDimensionInHierarchySchema: TVersionedSchema<{
11776
12090
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
11777
12091
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
11778
12092
  dbDataType: zod.ZodOptional<zod.ZodString>;
12093
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
11779
12094
  }, zod_v4_core.$strip>, zod.ZodObject<{
11780
12095
  inputMethod: zod.ZodLiteral<"VARIABLE">;
11781
12096
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -11882,6 +12197,9 @@ declare const WidgetDimensionInHierarchySchema: TVersionedSchema<{
11882
12197
  readonly COLUMN_LIST: "COLUMN_LIST";
11883
12198
  }>>;
11884
12199
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
12200
+ }, zod_v4_core.$strip>, zod.ZodObject<{
12201
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
12202
+ value: zod.ZodOptional<zod.ZodString>;
11885
12203
  }, zod_v4_core.$strip>], "inputMethod">>>>;
11886
12204
  }, zod_v4_core.$strip>]>>>>;
11887
12205
  formatting: zod.ZodOptional<zod.ZodDefault<zod.ZodDiscriminatedUnion<[zod.ZodObject<{
@@ -12042,6 +12360,7 @@ declare const WidgetDimensionInHierarchySchema: TVersionedSchema<{
12042
12360
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
12043
12361
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
12044
12362
  dbDataType: zod.ZodOptional<zod.ZodString>;
12363
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
12045
12364
  }, zod_v4_core.$strip>, zod.ZodObject<{
12046
12365
  inputMethod: zod.ZodLiteral<"VARIABLE">;
12047
12366
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -12148,6 +12467,9 @@ declare const WidgetDimensionInHierarchySchema: TVersionedSchema<{
12148
12467
  readonly COLUMN_LIST: "COLUMN_LIST";
12149
12468
  }>>;
12150
12469
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
12470
+ }, zod_v4_core.$strip>, zod.ZodObject<{
12471
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
12472
+ value: zod.ZodOptional<zod.ZodString>;
12151
12473
  }, zod_v4_core.$strip>], "inputMethod">>>>;
12152
12474
  }, zod_v4_core.$strip>, zod.ZodObject<{
12153
12475
  id: zod.ZodPipe<zod.ZodDefault<zod.ZodNumber>, zod.ZodTransform<number, number>>;
@@ -12161,6 +12483,7 @@ declare const WidgetDimensionInHierarchySchema: TVersionedSchema<{
12161
12483
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
12162
12484
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
12163
12485
  dbDataType: zod.ZodOptional<zod.ZodString>;
12486
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
12164
12487
  }, zod_v4_core.$strip>, zod.ZodObject<{
12165
12488
  inputMethod: zod.ZodLiteral<"VARIABLE">;
12166
12489
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -12267,6 +12590,9 @@ declare const WidgetDimensionInHierarchySchema: TVersionedSchema<{
12267
12590
  readonly COLUMN_LIST: "COLUMN_LIST";
12268
12591
  }>>;
12269
12592
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
12593
+ }, zod_v4_core.$strip>, zod.ZodObject<{
12594
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
12595
+ value: zod.ZodOptional<zod.ZodString>;
12270
12596
  }, zod_v4_core.$strip>], "inputMethod">>>>;
12271
12597
  scriptKey: zod.ZodString;
12272
12598
  autoUpdate: zod.ZodDefault<zod.ZodEnum<{
@@ -12292,6 +12618,7 @@ declare const WidgetDimensionInHierarchySchema: TVersionedSchema<{
12292
12618
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
12293
12619
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
12294
12620
  dbDataType: zod.ZodOptional<zod.ZodString>;
12621
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
12295
12622
  }, zod_v4_core.$strip>, zod.ZodObject<{
12296
12623
  inputMethod: zod.ZodLiteral<"VARIABLE">;
12297
12624
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -12398,6 +12725,9 @@ declare const WidgetDimensionInHierarchySchema: TVersionedSchema<{
12398
12725
  readonly COLUMN_LIST: "COLUMN_LIST";
12399
12726
  }>>;
12400
12727
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
12728
+ }, zod_v4_core.$strip>, zod.ZodObject<{
12729
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
12730
+ value: zod.ZodOptional<zod.ZodString>;
12401
12731
  }, zod_v4_core.$strip>], "inputMethod">>>>;
12402
12732
  runButtonText: zod.ZodDefault<zod.ZodString>;
12403
12733
  }, zod_v4_core.$strip>, zod.ZodObject<{
@@ -12412,6 +12742,7 @@ declare const WidgetDimensionInHierarchySchema: TVersionedSchema<{
12412
12742
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
12413
12743
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
12414
12744
  dbDataType: zod.ZodOptional<zod.ZodString>;
12745
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
12415
12746
  }, zod_v4_core.$strip>, zod.ZodObject<{
12416
12747
  inputMethod: zod.ZodLiteral<"VARIABLE">;
12417
12748
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -12518,6 +12849,9 @@ declare const WidgetDimensionInHierarchySchema: TVersionedSchema<{
12518
12849
  readonly COLUMN_LIST: "COLUMN_LIST";
12519
12850
  }>>;
12520
12851
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
12852
+ }, zod_v4_core.$strip>, zod.ZodObject<{
12853
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
12854
+ value: zod.ZodOptional<zod.ZodString>;
12521
12855
  }, zod_v4_core.$strip>], "inputMethod">>>>;
12522
12856
  }, zod_v4_core.$strip>, zod.ZodIntersection<zod.ZodDiscriminatedUnion<[zod.ZodObject<{
12523
12857
  id: zod.ZodPipe<zod.ZodDefault<zod.ZodNumber>, zod.ZodTransform<number, number>>;
@@ -12531,6 +12865,7 @@ declare const WidgetDimensionInHierarchySchema: TVersionedSchema<{
12531
12865
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
12532
12866
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
12533
12867
  dbDataType: zod.ZodOptional<zod.ZodString>;
12868
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
12534
12869
  }, zod_v4_core.$strip>, zod.ZodObject<{
12535
12870
  inputMethod: zod.ZodLiteral<"VARIABLE">;
12536
12871
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -12637,6 +12972,9 @@ declare const WidgetDimensionInHierarchySchema: TVersionedSchema<{
12637
12972
  readonly COLUMN_LIST: "COLUMN_LIST";
12638
12973
  }>>;
12639
12974
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
12975
+ }, zod_v4_core.$strip>, zod.ZodObject<{
12976
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
12977
+ value: zod.ZodOptional<zod.ZodString>;
12640
12978
  }, zod_v4_core.$strip>], "inputMethod">>>>;
12641
12979
  mode: zod.ZodLiteral<"GENERATED_BY_SCRIPT">;
12642
12980
  scriptKey: zod.ZodOptional<zod.ZodString>;
@@ -12648,6 +12986,7 @@ declare const WidgetDimensionInHierarchySchema: TVersionedSchema<{
12648
12986
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
12649
12987
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
12650
12988
  dbDataType: zod.ZodOptional<zod.ZodString>;
12989
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
12651
12990
  }, zod_v4_core.$strip>, zod.ZodObject<{
12652
12991
  inputMethod: zod.ZodLiteral<"VARIABLE">;
12653
12992
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -12754,6 +13093,9 @@ declare const WidgetDimensionInHierarchySchema: TVersionedSchema<{
12754
13093
  readonly COLUMN_LIST: "COLUMN_LIST";
12755
13094
  }>>;
12756
13095
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
13096
+ }, zod_v4_core.$strip>, zod.ZodObject<{
13097
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
13098
+ value: zod.ZodOptional<zod.ZodString>;
12757
13099
  }, zod_v4_core.$strip>], "inputMethod">>>>;
12758
13100
  displayName: zod.ZodDefault<zod.ZodString>;
12759
13101
  }, zod_v4_core.$strip>, zod.ZodObject<{
@@ -12768,6 +13110,7 @@ declare const WidgetDimensionInHierarchySchema: TVersionedSchema<{
12768
13110
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
12769
13111
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
12770
13112
  dbDataType: zod.ZodOptional<zod.ZodString>;
13113
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
12771
13114
  }, zod_v4_core.$strip>, zod.ZodObject<{
12772
13115
  inputMethod: zod.ZodLiteral<"VARIABLE">;
12773
13116
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -12874,6 +13217,9 @@ declare const WidgetDimensionInHierarchySchema: TVersionedSchema<{
12874
13217
  readonly COLUMN_LIST: "COLUMN_LIST";
12875
13218
  }>>;
12876
13219
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
13220
+ }, zod_v4_core.$strip>, zod.ZodObject<{
13221
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
13222
+ value: zod.ZodOptional<zod.ZodString>;
12877
13223
  }, zod_v4_core.$strip>], "inputMethod">>>>;
12878
13224
  mode: zod.ZodLiteral<"EXISTED_VIEW">;
12879
13225
  viewKey: zod.ZodOptional<zod.ZodString>;
@@ -12885,6 +13231,7 @@ declare const WidgetDimensionInHierarchySchema: TVersionedSchema<{
12885
13231
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
12886
13232
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
12887
13233
  dbDataType: zod.ZodOptional<zod.ZodString>;
13234
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
12888
13235
  }, zod_v4_core.$strip>, zod.ZodObject<{
12889
13236
  inputMethod: zod.ZodLiteral<"VARIABLE">;
12890
13237
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -12991,6 +13338,9 @@ declare const WidgetDimensionInHierarchySchema: TVersionedSchema<{
12991
13338
  readonly COLUMN_LIST: "COLUMN_LIST";
12992
13339
  }>>;
12993
13340
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
13341
+ }, zod_v4_core.$strip>, zod.ZodObject<{
13342
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
13343
+ value: zod.ZodOptional<zod.ZodString>;
12994
13344
  }, zod_v4_core.$strip>], "inputMethod">>>>;
12995
13345
  }, zod_v4_core.$strip>, zod.ZodObject<{
12996
13346
  id: zod.ZodPipe<zod.ZodDefault<zod.ZodNumber>, zod.ZodTransform<number, number>>;
@@ -13004,6 +13354,7 @@ declare const WidgetDimensionInHierarchySchema: TVersionedSchema<{
13004
13354
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
13005
13355
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
13006
13356
  dbDataType: zod.ZodOptional<zod.ZodString>;
13357
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
13007
13358
  }, zod_v4_core.$strip>, zod.ZodObject<{
13008
13359
  inputMethod: zod.ZodLiteral<"VARIABLE">;
13009
13360
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -13110,6 +13461,9 @@ declare const WidgetDimensionInHierarchySchema: TVersionedSchema<{
13110
13461
  readonly COLUMN_LIST: "COLUMN_LIST";
13111
13462
  }>>;
13112
13463
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
13464
+ }, zod_v4_core.$strip>, zod.ZodObject<{
13465
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
13466
+ value: zod.ZodOptional<zod.ZodString>;
13113
13467
  }, zod_v4_core.$strip>], "inputMethod">>>>;
13114
13468
  mode: zod.ZodLiteral<"EMPTY">;
13115
13469
  placeholderName: zod.ZodOptional<zod.ZodString>;
@@ -13144,6 +13498,7 @@ declare const WidgetDimensionInHierarchySchema: TVersionedSchema<{
13144
13498
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
13145
13499
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
13146
13500
  dbDataType: zod.ZodOptional<zod.ZodString>;
13501
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
13147
13502
  }, zod_v4_core.$strip>, zod.ZodObject<{
13148
13503
  inputMethod: zod.ZodLiteral<"VARIABLE">;
13149
13504
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -13250,6 +13605,9 @@ declare const WidgetDimensionInHierarchySchema: TVersionedSchema<{
13250
13605
  readonly COLUMN_LIST: "COLUMN_LIST";
13251
13606
  }>>;
13252
13607
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
13608
+ }, zod_v4_core.$strip>, zod.ZodObject<{
13609
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
13610
+ value: zod.ZodOptional<zod.ZodString>;
13253
13611
  }, zod_v4_core.$strip>], "inputMethod">>>>;
13254
13612
  }, zod_v4_core.$strip>]>>>>;
13255
13613
  formatting: zod.ZodOptional<zod.ZodDefault<zod.ZodDiscriminatedUnion<[zod.ZodObject<{
@@ -13365,6 +13723,7 @@ declare const WidgetDimensionHierarchySchema: TVersionedSchema<{
13365
13723
  tableName: string | null;
13366
13724
  columnName: string | null;
13367
13725
  dbDataType?: string | undefined;
13726
+ value?: string | null | undefined;
13368
13727
  } | {
13369
13728
  inputMethod: "VARIABLE";
13370
13729
  sourceVariable: string | null;
@@ -13437,6 +13796,9 @@ declare const WidgetDimensionHierarchySchema: TVersionedSchema<{
13437
13796
  formula: string;
13438
13797
  dbDataType?: string | undefined;
13439
13798
  } | undefined;
13799
+ } | {
13800
+ inputMethod: "EDITABLE_TEXT_VALUE";
13801
+ value?: string | undefined;
13440
13802
  } | {
13441
13803
  inputMethod: "DATA_MODEL";
13442
13804
  option: "TABLE_LIST" | "COLUMN_LIST";
@@ -13454,6 +13816,7 @@ declare const WidgetDimensionHierarchySchema: TVersionedSchema<{
13454
13816
  tableName: string | null;
13455
13817
  columnName: string | null;
13456
13818
  dbDataType?: string | undefined;
13819
+ value?: string | null | undefined;
13457
13820
  } | {
13458
13821
  inputMethod: "VARIABLE";
13459
13822
  sourceVariable: string | null;
@@ -13526,6 +13889,9 @@ declare const WidgetDimensionHierarchySchema: TVersionedSchema<{
13526
13889
  formula: string;
13527
13890
  dbDataType?: string | undefined;
13528
13891
  } | undefined;
13892
+ } | {
13893
+ inputMethod: "EDITABLE_TEXT_VALUE";
13894
+ value?: string | undefined;
13529
13895
  } | {
13530
13896
  inputMethod: "DATA_MODEL";
13531
13897
  option: "TABLE_LIST" | "COLUMN_LIST";
@@ -13543,6 +13909,7 @@ declare const WidgetDimensionHierarchySchema: TVersionedSchema<{
13543
13909
  tableName: string | null;
13544
13910
  columnName: string | null;
13545
13911
  dbDataType?: string | undefined;
13912
+ value?: string | null | undefined;
13546
13913
  } | {
13547
13914
  inputMethod: "VARIABLE";
13548
13915
  sourceVariable: string | null;
@@ -13615,6 +13982,9 @@ declare const WidgetDimensionHierarchySchema: TVersionedSchema<{
13615
13982
  formula: string;
13616
13983
  dbDataType?: string | undefined;
13617
13984
  } | undefined;
13985
+ } | {
13986
+ inputMethod: "EDITABLE_TEXT_VALUE";
13987
+ value?: string | undefined;
13618
13988
  } | {
13619
13989
  inputMethod: "DATA_MODEL";
13620
13990
  option: "TABLE_LIST" | "COLUMN_LIST";
@@ -13640,6 +14010,7 @@ declare const WidgetDimensionHierarchySchema: TVersionedSchema<{
13640
14010
  tableName: string | null;
13641
14011
  columnName: string | null;
13642
14012
  dbDataType?: string | undefined;
14013
+ value?: string | null | undefined;
13643
14014
  } | {
13644
14015
  inputMethod: "VARIABLE";
13645
14016
  sourceVariable: string | null;
@@ -13712,6 +14083,9 @@ declare const WidgetDimensionHierarchySchema: TVersionedSchema<{
13712
14083
  formula: string;
13713
14084
  dbDataType?: string | undefined;
13714
14085
  } | undefined;
14086
+ } | {
14087
+ inputMethod: "EDITABLE_TEXT_VALUE";
14088
+ value?: string | undefined;
13715
14089
  } | {
13716
14090
  inputMethod: "DATA_MODEL";
13717
14091
  option: "TABLE_LIST" | "COLUMN_LIST";
@@ -13730,6 +14104,7 @@ declare const WidgetDimensionHierarchySchema: TVersionedSchema<{
13730
14104
  tableName: string | null;
13731
14105
  columnName: string | null;
13732
14106
  dbDataType?: string | undefined;
14107
+ value?: string | null | undefined;
13733
14108
  } | {
13734
14109
  inputMethod: "VARIABLE";
13735
14110
  sourceVariable: string | null;
@@ -13802,6 +14177,9 @@ declare const WidgetDimensionHierarchySchema: TVersionedSchema<{
13802
14177
  formula: string;
13803
14178
  dbDataType?: string | undefined;
13804
14179
  } | undefined;
14180
+ } | {
14181
+ inputMethod: "EDITABLE_TEXT_VALUE";
14182
+ value?: string | undefined;
13805
14183
  } | {
13806
14184
  inputMethod: "DATA_MODEL";
13807
14185
  option: "TABLE_LIST" | "COLUMN_LIST";
@@ -13819,6 +14197,7 @@ declare const WidgetDimensionHierarchySchema: TVersionedSchema<{
13819
14197
  tableName: string | null;
13820
14198
  columnName: string | null;
13821
14199
  dbDataType?: string | undefined;
14200
+ value?: string | null | undefined;
13822
14201
  } | {
13823
14202
  inputMethod: "VARIABLE";
13824
14203
  sourceVariable: string | null;
@@ -13891,6 +14270,9 @@ declare const WidgetDimensionHierarchySchema: TVersionedSchema<{
13891
14270
  formula: string;
13892
14271
  dbDataType?: string | undefined;
13893
14272
  } | undefined;
14273
+ } | {
14274
+ inputMethod: "EDITABLE_TEXT_VALUE";
14275
+ value?: string | undefined;
13894
14276
  } | {
13895
14277
  inputMethod: "DATA_MODEL";
13896
14278
  option: "TABLE_LIST" | "COLUMN_LIST";
@@ -13905,6 +14287,7 @@ declare const WidgetDimensionHierarchySchema: TVersionedSchema<{
13905
14287
  tableName: string | null;
13906
14288
  columnName: string | null;
13907
14289
  dbDataType?: string | undefined;
14290
+ value?: string | null | undefined;
13908
14291
  } | {
13909
14292
  inputMethod: "VARIABLE";
13910
14293
  sourceVariable: string | null;
@@ -13977,6 +14360,9 @@ declare const WidgetDimensionHierarchySchema: TVersionedSchema<{
13977
14360
  formula: string;
13978
14361
  dbDataType?: string | undefined;
13979
14362
  } | undefined;
14363
+ } | {
14364
+ inputMethod: "EDITABLE_TEXT_VALUE";
14365
+ value?: string | undefined;
13980
14366
  } | {
13981
14367
  inputMethod: "DATA_MODEL";
13982
14368
  option: "TABLE_LIST" | "COLUMN_LIST";
@@ -14000,6 +14386,7 @@ declare const WidgetDimensionHierarchySchema: TVersionedSchema<{
14000
14386
  tableName: string | null;
14001
14387
  columnName: string | null;
14002
14388
  dbDataType?: string | undefined;
14389
+ value?: string | null | undefined;
14003
14390
  } | {
14004
14391
  inputMethod: "VARIABLE";
14005
14392
  sourceVariable: string | null;
@@ -14072,6 +14459,9 @@ declare const WidgetDimensionHierarchySchema: TVersionedSchema<{
14072
14459
  formula: string;
14073
14460
  dbDataType?: string | undefined;
14074
14461
  } | undefined;
14462
+ } | {
14463
+ inputMethod: "EDITABLE_TEXT_VALUE";
14464
+ value?: string | undefined;
14075
14465
  } | {
14076
14466
  inputMethod: "DATA_MODEL";
14077
14467
  option: "TABLE_LIST" | "COLUMN_LIST";
@@ -14086,6 +14476,7 @@ declare const WidgetDimensionHierarchySchema: TVersionedSchema<{
14086
14476
  tableName: string | null;
14087
14477
  columnName: string | null;
14088
14478
  dbDataType?: string | undefined;
14479
+ value?: string | null | undefined;
14089
14480
  } | {
14090
14481
  inputMethod: "VARIABLE";
14091
14482
  sourceVariable: string | null;
@@ -14158,6 +14549,9 @@ declare const WidgetDimensionHierarchySchema: TVersionedSchema<{
14158
14549
  formula: string;
14159
14550
  dbDataType?: string | undefined;
14160
14551
  } | undefined;
14552
+ } | {
14553
+ inputMethod: "EDITABLE_TEXT_VALUE";
14554
+ value?: string | undefined;
14161
14555
  } | {
14162
14556
  inputMethod: "DATA_MODEL";
14163
14557
  option: "TABLE_LIST" | "COLUMN_LIST";
@@ -14180,6 +14574,7 @@ declare const WidgetDimensionHierarchySchema: TVersionedSchema<{
14180
14574
  tableName: string | null;
14181
14575
  columnName: string | null;
14182
14576
  dbDataType?: string | undefined;
14577
+ value?: string | null | undefined;
14183
14578
  } | {
14184
14579
  inputMethod: "VARIABLE";
14185
14580
  sourceVariable: string | null;
@@ -14252,6 +14647,9 @@ declare const WidgetDimensionHierarchySchema: TVersionedSchema<{
14252
14647
  formula: string;
14253
14648
  dbDataType?: string | undefined;
14254
14649
  } | undefined;
14650
+ } | {
14651
+ inputMethod: "EDITABLE_TEXT_VALUE";
14652
+ value?: string | undefined;
14255
14653
  } | {
14256
14654
  inputMethod: "DATA_MODEL";
14257
14655
  option: "TABLE_LIST" | "COLUMN_LIST";
@@ -14266,6 +14664,7 @@ declare const WidgetDimensionHierarchySchema: TVersionedSchema<{
14266
14664
  tableName: string | null;
14267
14665
  columnName: string | null;
14268
14666
  dbDataType?: string | undefined;
14667
+ value?: string | null | undefined;
14269
14668
  } | {
14270
14669
  inputMethod: "VARIABLE";
14271
14670
  sourceVariable: string | null;
@@ -14338,6 +14737,9 @@ declare const WidgetDimensionHierarchySchema: TVersionedSchema<{
14338
14737
  formula: string;
14339
14738
  dbDataType?: string | undefined;
14340
14739
  } | undefined;
14740
+ } | {
14741
+ inputMethod: "EDITABLE_TEXT_VALUE";
14742
+ value?: string | undefined;
14341
14743
  } | {
14342
14744
  inputMethod: "DATA_MODEL";
14343
14745
  option: "TABLE_LIST" | "COLUMN_LIST";
@@ -14361,6 +14763,7 @@ declare const WidgetDimensionHierarchySchema: TVersionedSchema<{
14361
14763
  tableName: string | null;
14362
14764
  columnName: string | null;
14363
14765
  dbDataType?: string | undefined;
14766
+ value?: string | null | undefined;
14364
14767
  } | {
14365
14768
  inputMethod: "VARIABLE";
14366
14769
  sourceVariable: string | null;
@@ -14433,6 +14836,9 @@ declare const WidgetDimensionHierarchySchema: TVersionedSchema<{
14433
14836
  formula: string;
14434
14837
  dbDataType?: string | undefined;
14435
14838
  } | undefined;
14839
+ } | {
14840
+ inputMethod: "EDITABLE_TEXT_VALUE";
14841
+ value?: string | undefined;
14436
14842
  } | {
14437
14843
  inputMethod: "DATA_MODEL";
14438
14844
  option: "TABLE_LIST" | "COLUMN_LIST";
@@ -14447,6 +14853,7 @@ declare const WidgetDimensionHierarchySchema: TVersionedSchema<{
14447
14853
  tableName: string | null;
14448
14854
  columnName: string | null;
14449
14855
  dbDataType?: string | undefined;
14856
+ value?: string | null | undefined;
14450
14857
  } | {
14451
14858
  inputMethod: "VARIABLE";
14452
14859
  sourceVariable: string | null;
@@ -14519,6 +14926,9 @@ declare const WidgetDimensionHierarchySchema: TVersionedSchema<{
14519
14926
  formula: string;
14520
14927
  dbDataType?: string | undefined;
14521
14928
  } | undefined;
14929
+ } | {
14930
+ inputMethod: "EDITABLE_TEXT_VALUE";
14931
+ value?: string | undefined;
14522
14932
  } | {
14523
14933
  inputMethod: "DATA_MODEL";
14524
14934
  option: "TABLE_LIST" | "COLUMN_LIST";
@@ -14542,6 +14952,7 @@ declare const WidgetDimensionHierarchySchema: TVersionedSchema<{
14542
14952
  tableName: string | null;
14543
14953
  columnName: string | null;
14544
14954
  dbDataType?: string | undefined;
14955
+ value?: string | null | undefined;
14545
14956
  } | {
14546
14957
  inputMethod: "VARIABLE";
14547
14958
  sourceVariable: string | null;
@@ -14614,6 +15025,9 @@ declare const WidgetDimensionHierarchySchema: TVersionedSchema<{
14614
15025
  formula: string;
14615
15026
  dbDataType?: string | undefined;
14616
15027
  } | undefined;
15028
+ } | {
15029
+ inputMethod: "EDITABLE_TEXT_VALUE";
15030
+ value?: string | undefined;
14617
15031
  } | {
14618
15032
  inputMethod: "DATA_MODEL";
14619
15033
  option: "TABLE_LIST" | "COLUMN_LIST";
@@ -14628,6 +15042,7 @@ declare const WidgetDimensionHierarchySchema: TVersionedSchema<{
14628
15042
  tableName: string | null;
14629
15043
  columnName: string | null;
14630
15044
  dbDataType?: string | undefined;
15045
+ value?: string | null | undefined;
14631
15046
  } | {
14632
15047
  inputMethod: "VARIABLE";
14633
15048
  sourceVariable: string | null;
@@ -14700,6 +15115,9 @@ declare const WidgetDimensionHierarchySchema: TVersionedSchema<{
14700
15115
  formula: string;
14701
15116
  dbDataType?: string | undefined;
14702
15117
  } | undefined;
15118
+ } | {
15119
+ inputMethod: "EDITABLE_TEXT_VALUE";
15120
+ value?: string | undefined;
14703
15121
  } | {
14704
15122
  inputMethod: "DATA_MODEL";
14705
15123
  option: "TABLE_LIST" | "COLUMN_LIST";
@@ -14722,6 +15140,7 @@ declare const WidgetDimensionHierarchySchema: TVersionedSchema<{
14722
15140
  tableName: string | null;
14723
15141
  columnName: string | null;
14724
15142
  dbDataType?: string | undefined;
15143
+ value?: string | null | undefined;
14725
15144
  } | {
14726
15145
  inputMethod: "VARIABLE";
14727
15146
  sourceVariable: string | null;
@@ -14794,6 +15213,9 @@ declare const WidgetDimensionHierarchySchema: TVersionedSchema<{
14794
15213
  formula: string;
14795
15214
  dbDataType?: string | undefined;
14796
15215
  } | undefined;
15216
+ } | {
15217
+ inputMethod: "EDITABLE_TEXT_VALUE";
15218
+ value?: string | undefined;
14797
15219
  } | {
14798
15220
  inputMethod: "DATA_MODEL";
14799
15221
  option: "TABLE_LIST" | "COLUMN_LIST";
@@ -14808,6 +15230,7 @@ declare const WidgetDimensionHierarchySchema: TVersionedSchema<{
14808
15230
  tableName: string | null;
14809
15231
  columnName: string | null;
14810
15232
  dbDataType?: string | undefined;
15233
+ value?: string | null | undefined;
14811
15234
  } | {
14812
15235
  inputMethod: "VARIABLE";
14813
15236
  sourceVariable: string | null;
@@ -14880,6 +15303,9 @@ declare const WidgetDimensionHierarchySchema: TVersionedSchema<{
14880
15303
  formula: string;
14881
15304
  dbDataType?: string | undefined;
14882
15305
  } | undefined;
15306
+ } | {
15307
+ inputMethod: "EDITABLE_TEXT_VALUE";
15308
+ value?: string | undefined;
14883
15309
  } | {
14884
15310
  inputMethod: "DATA_MODEL";
14885
15311
  option: "TABLE_LIST" | "COLUMN_LIST";
@@ -14901,6 +15327,7 @@ declare const WidgetDimensionHierarchySchema: TVersionedSchema<{
14901
15327
  tableName: string | null;
14902
15328
  columnName: string | null;
14903
15329
  dbDataType?: string | undefined;
15330
+ value?: string | null | undefined;
14904
15331
  } | {
14905
15332
  inputMethod: "VARIABLE";
14906
15333
  sourceVariable: string | null;
@@ -14973,6 +15400,9 @@ declare const WidgetDimensionHierarchySchema: TVersionedSchema<{
14973
15400
  formula: string;
14974
15401
  dbDataType?: string | undefined;
14975
15402
  } | undefined;
15403
+ } | {
15404
+ inputMethod: "EDITABLE_TEXT_VALUE";
15405
+ value?: string | undefined;
14976
15406
  } | {
14977
15407
  inputMethod: "DATA_MODEL";
14978
15408
  option: "TABLE_LIST" | "COLUMN_LIST";
@@ -14987,6 +15417,7 @@ declare const WidgetDimensionHierarchySchema: TVersionedSchema<{
14987
15417
  tableName: string | null;
14988
15418
  columnName: string | null;
14989
15419
  dbDataType?: string | undefined;
15420
+ value?: string | null | undefined;
14990
15421
  } | {
14991
15422
  inputMethod: "VARIABLE";
14992
15423
  sourceVariable: string | null;
@@ -15059,6 +15490,9 @@ declare const WidgetDimensionHierarchySchema: TVersionedSchema<{
15059
15490
  formula: string;
15060
15491
  dbDataType?: string | undefined;
15061
15492
  } | undefined;
15493
+ } | {
15494
+ inputMethod: "EDITABLE_TEXT_VALUE";
15495
+ value?: string | undefined;
15062
15496
  } | {
15063
15497
  inputMethod: "DATA_MODEL";
15064
15498
  option: "TABLE_LIST" | "COLUMN_LIST";
@@ -15081,6 +15515,7 @@ declare const WidgetDimensionHierarchySchema: TVersionedSchema<{
15081
15515
  tableName: string | null;
15082
15516
  columnName: string | null;
15083
15517
  dbDataType?: string | undefined;
15518
+ value?: string | null | undefined;
15084
15519
  } | {
15085
15520
  inputMethod: "VARIABLE";
15086
15521
  sourceVariable: string | null;
@@ -15153,6 +15588,9 @@ declare const WidgetDimensionHierarchySchema: TVersionedSchema<{
15153
15588
  formula: string;
15154
15589
  dbDataType?: string | undefined;
15155
15590
  } | undefined;
15591
+ } | {
15592
+ inputMethod: "EDITABLE_TEXT_VALUE";
15593
+ value?: string | undefined;
15156
15594
  } | {
15157
15595
  inputMethod: "DATA_MODEL";
15158
15596
  option: "TABLE_LIST" | "COLUMN_LIST";
@@ -15167,6 +15605,7 @@ declare const WidgetDimensionHierarchySchema: TVersionedSchema<{
15167
15605
  tableName: string | null;
15168
15606
  columnName: string | null;
15169
15607
  dbDataType?: string | undefined;
15608
+ value?: string | null | undefined;
15170
15609
  } | {
15171
15610
  inputMethod: "VARIABLE";
15172
15611
  sourceVariable: string | null;
@@ -15239,6 +15678,9 @@ declare const WidgetDimensionHierarchySchema: TVersionedSchema<{
15239
15678
  formula: string;
15240
15679
  dbDataType?: string | undefined;
15241
15680
  } | undefined;
15681
+ } | {
15682
+ inputMethod: "EDITABLE_TEXT_VALUE";
15683
+ value?: string | undefined;
15242
15684
  } | {
15243
15685
  inputMethod: "DATA_MODEL";
15244
15686
  option: "TABLE_LIST" | "COLUMN_LIST";
@@ -15261,6 +15703,7 @@ declare const WidgetDimensionHierarchySchema: TVersionedSchema<{
15261
15703
  tableName: string | null;
15262
15704
  columnName: string | null;
15263
15705
  dbDataType?: string | undefined;
15706
+ value?: string | null | undefined;
15264
15707
  } | {
15265
15708
  inputMethod: "VARIABLE";
15266
15709
  sourceVariable: string | null;
@@ -15333,6 +15776,9 @@ declare const WidgetDimensionHierarchySchema: TVersionedSchema<{
15333
15776
  formula: string;
15334
15777
  dbDataType?: string | undefined;
15335
15778
  } | undefined;
15779
+ } | {
15780
+ inputMethod: "EDITABLE_TEXT_VALUE";
15781
+ value?: string | undefined;
15336
15782
  } | {
15337
15783
  inputMethod: "DATA_MODEL";
15338
15784
  option: "TABLE_LIST" | "COLUMN_LIST";
@@ -15464,6 +15910,7 @@ declare const WidgetDimensionHierarchySchema: TVersionedSchema<{
15464
15910
  tableName: string | null;
15465
15911
  columnName: string | null;
15466
15912
  dbDataType?: string | undefined;
15913
+ value?: string | null | undefined;
15467
15914
  } | {
15468
15915
  inputMethod: "VARIABLE";
15469
15916
  sourceVariable: string | null;
@@ -15536,6 +15983,9 @@ declare const WidgetDimensionHierarchySchema: TVersionedSchema<{
15536
15983
  formula: string;
15537
15984
  dbDataType?: string | undefined;
15538
15985
  } | undefined;
15986
+ } | {
15987
+ inputMethod: "EDITABLE_TEXT_VALUE";
15988
+ value?: string | undefined;
15539
15989
  } | {
15540
15990
  inputMethod: "DATA_MODEL";
15541
15991
  option: "TABLE_LIST" | "COLUMN_LIST";
@@ -15553,6 +16003,7 @@ declare const WidgetDimensionHierarchySchema: TVersionedSchema<{
15553
16003
  tableName: string | null;
15554
16004
  columnName: string | null;
15555
16005
  dbDataType?: string | undefined;
16006
+ value?: string | null | undefined;
15556
16007
  } | {
15557
16008
  inputMethod: "VARIABLE";
15558
16009
  sourceVariable: string | null;
@@ -15625,6 +16076,9 @@ declare const WidgetDimensionHierarchySchema: TVersionedSchema<{
15625
16076
  formula: string;
15626
16077
  dbDataType?: string | undefined;
15627
16078
  } | undefined;
16079
+ } | {
16080
+ inputMethod: "EDITABLE_TEXT_VALUE";
16081
+ value?: string | undefined;
15628
16082
  } | {
15629
16083
  inputMethod: "DATA_MODEL";
15630
16084
  option: "TABLE_LIST" | "COLUMN_LIST";
@@ -15642,6 +16096,7 @@ declare const WidgetDimensionHierarchySchema: TVersionedSchema<{
15642
16096
  tableName: string | null;
15643
16097
  columnName: string | null;
15644
16098
  dbDataType?: string | undefined;
16099
+ value?: string | null | undefined;
15645
16100
  } | {
15646
16101
  inputMethod: "VARIABLE";
15647
16102
  sourceVariable: string | null;
@@ -15714,6 +16169,9 @@ declare const WidgetDimensionHierarchySchema: TVersionedSchema<{
15714
16169
  formula: string;
15715
16170
  dbDataType?: string | undefined;
15716
16171
  } | undefined;
16172
+ } | {
16173
+ inputMethod: "EDITABLE_TEXT_VALUE";
16174
+ value?: string | undefined;
15717
16175
  } | {
15718
16176
  inputMethod: "DATA_MODEL";
15719
16177
  option: "TABLE_LIST" | "COLUMN_LIST";
@@ -15739,6 +16197,7 @@ declare const WidgetDimensionHierarchySchema: TVersionedSchema<{
15739
16197
  tableName: string | null;
15740
16198
  columnName: string | null;
15741
16199
  dbDataType?: string | undefined;
16200
+ value?: string | null | undefined;
15742
16201
  } | {
15743
16202
  inputMethod: "VARIABLE";
15744
16203
  sourceVariable: string | null;
@@ -15811,6 +16270,9 @@ declare const WidgetDimensionHierarchySchema: TVersionedSchema<{
15811
16270
  formula: string;
15812
16271
  dbDataType?: string | undefined;
15813
16272
  } | undefined;
16273
+ } | {
16274
+ inputMethod: "EDITABLE_TEXT_VALUE";
16275
+ value?: string | undefined;
15814
16276
  } | {
15815
16277
  inputMethod: "DATA_MODEL";
15816
16278
  option: "TABLE_LIST" | "COLUMN_LIST";
@@ -15829,6 +16291,7 @@ declare const WidgetDimensionHierarchySchema: TVersionedSchema<{
15829
16291
  tableName: string | null;
15830
16292
  columnName: string | null;
15831
16293
  dbDataType?: string | undefined;
16294
+ value?: string | null | undefined;
15832
16295
  } | {
15833
16296
  inputMethod: "VARIABLE";
15834
16297
  sourceVariable: string | null;
@@ -15901,6 +16364,9 @@ declare const WidgetDimensionHierarchySchema: TVersionedSchema<{
15901
16364
  formula: string;
15902
16365
  dbDataType?: string | undefined;
15903
16366
  } | undefined;
16367
+ } | {
16368
+ inputMethod: "EDITABLE_TEXT_VALUE";
16369
+ value?: string | undefined;
15904
16370
  } | {
15905
16371
  inputMethod: "DATA_MODEL";
15906
16372
  option: "TABLE_LIST" | "COLUMN_LIST";
@@ -15918,6 +16384,7 @@ declare const WidgetDimensionHierarchySchema: TVersionedSchema<{
15918
16384
  tableName: string | null;
15919
16385
  columnName: string | null;
15920
16386
  dbDataType?: string | undefined;
16387
+ value?: string | null | undefined;
15921
16388
  } | {
15922
16389
  inputMethod: "VARIABLE";
15923
16390
  sourceVariable: string | null;
@@ -15990,6 +16457,9 @@ declare const WidgetDimensionHierarchySchema: TVersionedSchema<{
15990
16457
  formula: string;
15991
16458
  dbDataType?: string | undefined;
15992
16459
  } | undefined;
16460
+ } | {
16461
+ inputMethod: "EDITABLE_TEXT_VALUE";
16462
+ value?: string | undefined;
15993
16463
  } | {
15994
16464
  inputMethod: "DATA_MODEL";
15995
16465
  option: "TABLE_LIST" | "COLUMN_LIST";
@@ -16004,6 +16474,7 @@ declare const WidgetDimensionHierarchySchema: TVersionedSchema<{
16004
16474
  tableName: string | null;
16005
16475
  columnName: string | null;
16006
16476
  dbDataType?: string | undefined;
16477
+ value?: string | null | undefined;
16007
16478
  } | {
16008
16479
  inputMethod: "VARIABLE";
16009
16480
  sourceVariable: string | null;
@@ -16076,6 +16547,9 @@ declare const WidgetDimensionHierarchySchema: TVersionedSchema<{
16076
16547
  formula: string;
16077
16548
  dbDataType?: string | undefined;
16078
16549
  } | undefined;
16550
+ } | {
16551
+ inputMethod: "EDITABLE_TEXT_VALUE";
16552
+ value?: string | undefined;
16079
16553
  } | {
16080
16554
  inputMethod: "DATA_MODEL";
16081
16555
  option: "TABLE_LIST" | "COLUMN_LIST";
@@ -16099,6 +16573,7 @@ declare const WidgetDimensionHierarchySchema: TVersionedSchema<{
16099
16573
  tableName: string | null;
16100
16574
  columnName: string | null;
16101
16575
  dbDataType?: string | undefined;
16576
+ value?: string | null | undefined;
16102
16577
  } | {
16103
16578
  inputMethod: "VARIABLE";
16104
16579
  sourceVariable: string | null;
@@ -16171,6 +16646,9 @@ declare const WidgetDimensionHierarchySchema: TVersionedSchema<{
16171
16646
  formula: string;
16172
16647
  dbDataType?: string | undefined;
16173
16648
  } | undefined;
16649
+ } | {
16650
+ inputMethod: "EDITABLE_TEXT_VALUE";
16651
+ value?: string | undefined;
16174
16652
  } | {
16175
16653
  inputMethod: "DATA_MODEL";
16176
16654
  option: "TABLE_LIST" | "COLUMN_LIST";
@@ -16185,6 +16663,7 @@ declare const WidgetDimensionHierarchySchema: TVersionedSchema<{
16185
16663
  tableName: string | null;
16186
16664
  columnName: string | null;
16187
16665
  dbDataType?: string | undefined;
16666
+ value?: string | null | undefined;
16188
16667
  } | {
16189
16668
  inputMethod: "VARIABLE";
16190
16669
  sourceVariable: string | null;
@@ -16257,6 +16736,9 @@ declare const WidgetDimensionHierarchySchema: TVersionedSchema<{
16257
16736
  formula: string;
16258
16737
  dbDataType?: string | undefined;
16259
16738
  } | undefined;
16739
+ } | {
16740
+ inputMethod: "EDITABLE_TEXT_VALUE";
16741
+ value?: string | undefined;
16260
16742
  } | {
16261
16743
  inputMethod: "DATA_MODEL";
16262
16744
  option: "TABLE_LIST" | "COLUMN_LIST";
@@ -16279,6 +16761,7 @@ declare const WidgetDimensionHierarchySchema: TVersionedSchema<{
16279
16761
  tableName: string | null;
16280
16762
  columnName: string | null;
16281
16763
  dbDataType?: string | undefined;
16764
+ value?: string | null | undefined;
16282
16765
  } | {
16283
16766
  inputMethod: "VARIABLE";
16284
16767
  sourceVariable: string | null;
@@ -16351,6 +16834,9 @@ declare const WidgetDimensionHierarchySchema: TVersionedSchema<{
16351
16834
  formula: string;
16352
16835
  dbDataType?: string | undefined;
16353
16836
  } | undefined;
16837
+ } | {
16838
+ inputMethod: "EDITABLE_TEXT_VALUE";
16839
+ value?: string | undefined;
16354
16840
  } | {
16355
16841
  inputMethod: "DATA_MODEL";
16356
16842
  option: "TABLE_LIST" | "COLUMN_LIST";
@@ -16365,6 +16851,7 @@ declare const WidgetDimensionHierarchySchema: TVersionedSchema<{
16365
16851
  tableName: string | null;
16366
16852
  columnName: string | null;
16367
16853
  dbDataType?: string | undefined;
16854
+ value?: string | null | undefined;
16368
16855
  } | {
16369
16856
  inputMethod: "VARIABLE";
16370
16857
  sourceVariable: string | null;
@@ -16437,6 +16924,9 @@ declare const WidgetDimensionHierarchySchema: TVersionedSchema<{
16437
16924
  formula: string;
16438
16925
  dbDataType?: string | undefined;
16439
16926
  } | undefined;
16927
+ } | {
16928
+ inputMethod: "EDITABLE_TEXT_VALUE";
16929
+ value?: string | undefined;
16440
16930
  } | {
16441
16931
  inputMethod: "DATA_MODEL";
16442
16932
  option: "TABLE_LIST" | "COLUMN_LIST";
@@ -16460,6 +16950,7 @@ declare const WidgetDimensionHierarchySchema: TVersionedSchema<{
16460
16950
  tableName: string | null;
16461
16951
  columnName: string | null;
16462
16952
  dbDataType?: string | undefined;
16953
+ value?: string | null | undefined;
16463
16954
  } | {
16464
16955
  inputMethod: "VARIABLE";
16465
16956
  sourceVariable: string | null;
@@ -16532,6 +17023,9 @@ declare const WidgetDimensionHierarchySchema: TVersionedSchema<{
16532
17023
  formula: string;
16533
17024
  dbDataType?: string | undefined;
16534
17025
  } | undefined;
17026
+ } | {
17027
+ inputMethod: "EDITABLE_TEXT_VALUE";
17028
+ value?: string | undefined;
16535
17029
  } | {
16536
17030
  inputMethod: "DATA_MODEL";
16537
17031
  option: "TABLE_LIST" | "COLUMN_LIST";
@@ -16546,6 +17040,7 @@ declare const WidgetDimensionHierarchySchema: TVersionedSchema<{
16546
17040
  tableName: string | null;
16547
17041
  columnName: string | null;
16548
17042
  dbDataType?: string | undefined;
17043
+ value?: string | null | undefined;
16549
17044
  } | {
16550
17045
  inputMethod: "VARIABLE";
16551
17046
  sourceVariable: string | null;
@@ -16618,6 +17113,9 @@ declare const WidgetDimensionHierarchySchema: TVersionedSchema<{
16618
17113
  formula: string;
16619
17114
  dbDataType?: string | undefined;
16620
17115
  } | undefined;
17116
+ } | {
17117
+ inputMethod: "EDITABLE_TEXT_VALUE";
17118
+ value?: string | undefined;
16621
17119
  } | {
16622
17120
  inputMethod: "DATA_MODEL";
16623
17121
  option: "TABLE_LIST" | "COLUMN_LIST";
@@ -16641,6 +17139,7 @@ declare const WidgetDimensionHierarchySchema: TVersionedSchema<{
16641
17139
  tableName: string | null;
16642
17140
  columnName: string | null;
16643
17141
  dbDataType?: string | undefined;
17142
+ value?: string | null | undefined;
16644
17143
  } | {
16645
17144
  inputMethod: "VARIABLE";
16646
17145
  sourceVariable: string | null;
@@ -16713,6 +17212,9 @@ declare const WidgetDimensionHierarchySchema: TVersionedSchema<{
16713
17212
  formula: string;
16714
17213
  dbDataType?: string | undefined;
16715
17214
  } | undefined;
17215
+ } | {
17216
+ inputMethod: "EDITABLE_TEXT_VALUE";
17217
+ value?: string | undefined;
16716
17218
  } | {
16717
17219
  inputMethod: "DATA_MODEL";
16718
17220
  option: "TABLE_LIST" | "COLUMN_LIST";
@@ -16727,6 +17229,7 @@ declare const WidgetDimensionHierarchySchema: TVersionedSchema<{
16727
17229
  tableName: string | null;
16728
17230
  columnName: string | null;
16729
17231
  dbDataType?: string | undefined;
17232
+ value?: string | null | undefined;
16730
17233
  } | {
16731
17234
  inputMethod: "VARIABLE";
16732
17235
  sourceVariable: string | null;
@@ -16799,6 +17302,9 @@ declare const WidgetDimensionHierarchySchema: TVersionedSchema<{
16799
17302
  formula: string;
16800
17303
  dbDataType?: string | undefined;
16801
17304
  } | undefined;
17305
+ } | {
17306
+ inputMethod: "EDITABLE_TEXT_VALUE";
17307
+ value?: string | undefined;
16802
17308
  } | {
16803
17309
  inputMethod: "DATA_MODEL";
16804
17310
  option: "TABLE_LIST" | "COLUMN_LIST";
@@ -16821,6 +17327,7 @@ declare const WidgetDimensionHierarchySchema: TVersionedSchema<{
16821
17327
  tableName: string | null;
16822
17328
  columnName: string | null;
16823
17329
  dbDataType?: string | undefined;
17330
+ value?: string | null | undefined;
16824
17331
  } | {
16825
17332
  inputMethod: "VARIABLE";
16826
17333
  sourceVariable: string | null;
@@ -16893,6 +17400,9 @@ declare const WidgetDimensionHierarchySchema: TVersionedSchema<{
16893
17400
  formula: string;
16894
17401
  dbDataType?: string | undefined;
16895
17402
  } | undefined;
17403
+ } | {
17404
+ inputMethod: "EDITABLE_TEXT_VALUE";
17405
+ value?: string | undefined;
16896
17406
  } | {
16897
17407
  inputMethod: "DATA_MODEL";
16898
17408
  option: "TABLE_LIST" | "COLUMN_LIST";
@@ -16907,6 +17417,7 @@ declare const WidgetDimensionHierarchySchema: TVersionedSchema<{
16907
17417
  tableName: string | null;
16908
17418
  columnName: string | null;
16909
17419
  dbDataType?: string | undefined;
17420
+ value?: string | null | undefined;
16910
17421
  } | {
16911
17422
  inputMethod: "VARIABLE";
16912
17423
  sourceVariable: string | null;
@@ -16979,6 +17490,9 @@ declare const WidgetDimensionHierarchySchema: TVersionedSchema<{
16979
17490
  formula: string;
16980
17491
  dbDataType?: string | undefined;
16981
17492
  } | undefined;
17493
+ } | {
17494
+ inputMethod: "EDITABLE_TEXT_VALUE";
17495
+ value?: string | undefined;
16982
17496
  } | {
16983
17497
  inputMethod: "DATA_MODEL";
16984
17498
  option: "TABLE_LIST" | "COLUMN_LIST";
@@ -17000,6 +17514,7 @@ declare const WidgetDimensionHierarchySchema: TVersionedSchema<{
17000
17514
  tableName: string | null;
17001
17515
  columnName: string | null;
17002
17516
  dbDataType?: string | undefined;
17517
+ value?: string | null | undefined;
17003
17518
  } | {
17004
17519
  inputMethod: "VARIABLE";
17005
17520
  sourceVariable: string | null;
@@ -17072,6 +17587,9 @@ declare const WidgetDimensionHierarchySchema: TVersionedSchema<{
17072
17587
  formula: string;
17073
17588
  dbDataType?: string | undefined;
17074
17589
  } | undefined;
17590
+ } | {
17591
+ inputMethod: "EDITABLE_TEXT_VALUE";
17592
+ value?: string | undefined;
17075
17593
  } | {
17076
17594
  inputMethod: "DATA_MODEL";
17077
17595
  option: "TABLE_LIST" | "COLUMN_LIST";
@@ -17086,6 +17604,7 @@ declare const WidgetDimensionHierarchySchema: TVersionedSchema<{
17086
17604
  tableName: string | null;
17087
17605
  columnName: string | null;
17088
17606
  dbDataType?: string | undefined;
17607
+ value?: string | null | undefined;
17089
17608
  } | {
17090
17609
  inputMethod: "VARIABLE";
17091
17610
  sourceVariable: string | null;
@@ -17158,6 +17677,9 @@ declare const WidgetDimensionHierarchySchema: TVersionedSchema<{
17158
17677
  formula: string;
17159
17678
  dbDataType?: string | undefined;
17160
17679
  } | undefined;
17680
+ } | {
17681
+ inputMethod: "EDITABLE_TEXT_VALUE";
17682
+ value?: string | undefined;
17161
17683
  } | {
17162
17684
  inputMethod: "DATA_MODEL";
17163
17685
  option: "TABLE_LIST" | "COLUMN_LIST";
@@ -17180,6 +17702,7 @@ declare const WidgetDimensionHierarchySchema: TVersionedSchema<{
17180
17702
  tableName: string | null;
17181
17703
  columnName: string | null;
17182
17704
  dbDataType?: string | undefined;
17705
+ value?: string | null | undefined;
17183
17706
  } | {
17184
17707
  inputMethod: "VARIABLE";
17185
17708
  sourceVariable: string | null;
@@ -17252,6 +17775,9 @@ declare const WidgetDimensionHierarchySchema: TVersionedSchema<{
17252
17775
  formula: string;
17253
17776
  dbDataType?: string | undefined;
17254
17777
  } | undefined;
17778
+ } | {
17779
+ inputMethod: "EDITABLE_TEXT_VALUE";
17780
+ value?: string | undefined;
17255
17781
  } | {
17256
17782
  inputMethod: "DATA_MODEL";
17257
17783
  option: "TABLE_LIST" | "COLUMN_LIST";
@@ -17266,6 +17792,7 @@ declare const WidgetDimensionHierarchySchema: TVersionedSchema<{
17266
17792
  tableName: string | null;
17267
17793
  columnName: string | null;
17268
17794
  dbDataType?: string | undefined;
17795
+ value?: string | null | undefined;
17269
17796
  } | {
17270
17797
  inputMethod: "VARIABLE";
17271
17798
  sourceVariable: string | null;
@@ -17338,6 +17865,9 @@ declare const WidgetDimensionHierarchySchema: TVersionedSchema<{
17338
17865
  formula: string;
17339
17866
  dbDataType?: string | undefined;
17340
17867
  } | undefined;
17868
+ } | {
17869
+ inputMethod: "EDITABLE_TEXT_VALUE";
17870
+ value?: string | undefined;
17341
17871
  } | {
17342
17872
  inputMethod: "DATA_MODEL";
17343
17873
  option: "TABLE_LIST" | "COLUMN_LIST";
@@ -17360,6 +17890,7 @@ declare const WidgetDimensionHierarchySchema: TVersionedSchema<{
17360
17890
  tableName: string | null;
17361
17891
  columnName: string | null;
17362
17892
  dbDataType?: string | undefined;
17893
+ value?: string | null | undefined;
17363
17894
  } | {
17364
17895
  inputMethod: "VARIABLE";
17365
17896
  sourceVariable: string | null;
@@ -17432,6 +17963,9 @@ declare const WidgetDimensionHierarchySchema: TVersionedSchema<{
17432
17963
  formula: string;
17433
17964
  dbDataType?: string | undefined;
17434
17965
  } | undefined;
17966
+ } | {
17967
+ inputMethod: "EDITABLE_TEXT_VALUE";
17968
+ value?: string | undefined;
17435
17969
  } | {
17436
17970
  inputMethod: "DATA_MODEL";
17437
17971
  option: "TABLE_LIST" | "COLUMN_LIST";
@@ -17735,6 +18269,7 @@ declare const WidgetMeasureSchema: TVersionedSchema<{
17735
18269
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
17736
18270
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
17737
18271
  dbDataType: zod.ZodOptional<zod.ZodString>;
18272
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
17738
18273
  }, zod_v4_core.$strip>, zod.ZodObject<{
17739
18274
  inputMethod: zod.ZodLiteral<"VARIABLE">;
17740
18275
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -17841,6 +18376,9 @@ declare const WidgetMeasureSchema: TVersionedSchema<{
17841
18376
  readonly COLUMN_LIST: "COLUMN_LIST";
17842
18377
  }>>;
17843
18378
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
18379
+ }, zod_v4_core.$strip>, zod.ZodObject<{
18380
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
18381
+ value: zod.ZodOptional<zod.ZodString>;
17844
18382
  }, zod_v4_core.$strip>], "inputMethod">>>>;
17845
18383
  }, zod_v4_core.$strip>, zod.ZodObject<{
17846
18384
  id: zod.ZodPipe<zod.ZodDefault<zod.ZodNumber>, zod.ZodTransform<number, number>>;
@@ -17854,6 +18392,7 @@ declare const WidgetMeasureSchema: TVersionedSchema<{
17854
18392
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
17855
18393
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
17856
18394
  dbDataType: zod.ZodOptional<zod.ZodString>;
18395
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
17857
18396
  }, zod_v4_core.$strip>, zod.ZodObject<{
17858
18397
  inputMethod: zod.ZodLiteral<"VARIABLE">;
17859
18398
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -17960,6 +18499,9 @@ declare const WidgetMeasureSchema: TVersionedSchema<{
17960
18499
  readonly COLUMN_LIST: "COLUMN_LIST";
17961
18500
  }>>;
17962
18501
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
18502
+ }, zod_v4_core.$strip>, zod.ZodObject<{
18503
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
18504
+ value: zod.ZodOptional<zod.ZodString>;
17963
18505
  }, zod_v4_core.$strip>], "inputMethod">>>>;
17964
18506
  scriptKey: zod.ZodString;
17965
18507
  autoUpdate: zod.ZodDefault<zod.ZodEnum<{
@@ -17985,6 +18527,7 @@ declare const WidgetMeasureSchema: TVersionedSchema<{
17985
18527
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
17986
18528
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
17987
18529
  dbDataType: zod.ZodOptional<zod.ZodString>;
18530
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
17988
18531
  }, zod_v4_core.$strip>, zod.ZodObject<{
17989
18532
  inputMethod: zod.ZodLiteral<"VARIABLE">;
17990
18533
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -18091,6 +18634,9 @@ declare const WidgetMeasureSchema: TVersionedSchema<{
18091
18634
  readonly COLUMN_LIST: "COLUMN_LIST";
18092
18635
  }>>;
18093
18636
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
18637
+ }, zod_v4_core.$strip>, zod.ZodObject<{
18638
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
18639
+ value: zod.ZodOptional<zod.ZodString>;
18094
18640
  }, zod_v4_core.$strip>], "inputMethod">>>>;
18095
18641
  runButtonText: zod.ZodDefault<zod.ZodString>;
18096
18642
  }, zod_v4_core.$strip>, zod.ZodObject<{
@@ -18105,6 +18651,7 @@ declare const WidgetMeasureSchema: TVersionedSchema<{
18105
18651
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
18106
18652
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
18107
18653
  dbDataType: zod.ZodOptional<zod.ZodString>;
18654
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
18108
18655
  }, zod_v4_core.$strip>, zod.ZodObject<{
18109
18656
  inputMethod: zod.ZodLiteral<"VARIABLE">;
18110
18657
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -18211,6 +18758,9 @@ declare const WidgetMeasureSchema: TVersionedSchema<{
18211
18758
  readonly COLUMN_LIST: "COLUMN_LIST";
18212
18759
  }>>;
18213
18760
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
18761
+ }, zod_v4_core.$strip>, zod.ZodObject<{
18762
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
18763
+ value: zod.ZodOptional<zod.ZodString>;
18214
18764
  }, zod_v4_core.$strip>], "inputMethod">>>>;
18215
18765
  }, zod_v4_core.$strip>, zod.ZodIntersection<zod.ZodDiscriminatedUnion<[zod.ZodObject<{
18216
18766
  id: zod.ZodPipe<zod.ZodDefault<zod.ZodNumber>, zod.ZodTransform<number, number>>;
@@ -18224,6 +18774,7 @@ declare const WidgetMeasureSchema: TVersionedSchema<{
18224
18774
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
18225
18775
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
18226
18776
  dbDataType: zod.ZodOptional<zod.ZodString>;
18777
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
18227
18778
  }, zod_v4_core.$strip>, zod.ZodObject<{
18228
18779
  inputMethod: zod.ZodLiteral<"VARIABLE">;
18229
18780
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -18330,6 +18881,9 @@ declare const WidgetMeasureSchema: TVersionedSchema<{
18330
18881
  readonly COLUMN_LIST: "COLUMN_LIST";
18331
18882
  }>>;
18332
18883
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
18884
+ }, zod_v4_core.$strip>, zod.ZodObject<{
18885
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
18886
+ value: zod.ZodOptional<zod.ZodString>;
18333
18887
  }, zod_v4_core.$strip>], "inputMethod">>>>;
18334
18888
  mode: zod.ZodLiteral<"GENERATED_BY_SCRIPT">;
18335
18889
  scriptKey: zod.ZodOptional<zod.ZodString>;
@@ -18341,6 +18895,7 @@ declare const WidgetMeasureSchema: TVersionedSchema<{
18341
18895
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
18342
18896
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
18343
18897
  dbDataType: zod.ZodOptional<zod.ZodString>;
18898
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
18344
18899
  }, zod_v4_core.$strip>, zod.ZodObject<{
18345
18900
  inputMethod: zod.ZodLiteral<"VARIABLE">;
18346
18901
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -18447,6 +19002,9 @@ declare const WidgetMeasureSchema: TVersionedSchema<{
18447
19002
  readonly COLUMN_LIST: "COLUMN_LIST";
18448
19003
  }>>;
18449
19004
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
19005
+ }, zod_v4_core.$strip>, zod.ZodObject<{
19006
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
19007
+ value: zod.ZodOptional<zod.ZodString>;
18450
19008
  }, zod_v4_core.$strip>], "inputMethod">>>>;
18451
19009
  displayName: zod.ZodDefault<zod.ZodString>;
18452
19010
  }, zod_v4_core.$strip>, zod.ZodObject<{
@@ -18461,6 +19019,7 @@ declare const WidgetMeasureSchema: TVersionedSchema<{
18461
19019
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
18462
19020
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
18463
19021
  dbDataType: zod.ZodOptional<zod.ZodString>;
19022
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
18464
19023
  }, zod_v4_core.$strip>, zod.ZodObject<{
18465
19024
  inputMethod: zod.ZodLiteral<"VARIABLE">;
18466
19025
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -18567,6 +19126,9 @@ declare const WidgetMeasureSchema: TVersionedSchema<{
18567
19126
  readonly COLUMN_LIST: "COLUMN_LIST";
18568
19127
  }>>;
18569
19128
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
19129
+ }, zod_v4_core.$strip>, zod.ZodObject<{
19130
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
19131
+ value: zod.ZodOptional<zod.ZodString>;
18570
19132
  }, zod_v4_core.$strip>], "inputMethod">>>>;
18571
19133
  mode: zod.ZodLiteral<"EXISTED_VIEW">;
18572
19134
  viewKey: zod.ZodOptional<zod.ZodString>;
@@ -18578,6 +19140,7 @@ declare const WidgetMeasureSchema: TVersionedSchema<{
18578
19140
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
18579
19141
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
18580
19142
  dbDataType: zod.ZodOptional<zod.ZodString>;
19143
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
18581
19144
  }, zod_v4_core.$strip>, zod.ZodObject<{
18582
19145
  inputMethod: zod.ZodLiteral<"VARIABLE">;
18583
19146
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -18684,6 +19247,9 @@ declare const WidgetMeasureSchema: TVersionedSchema<{
18684
19247
  readonly COLUMN_LIST: "COLUMN_LIST";
18685
19248
  }>>;
18686
19249
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
19250
+ }, zod_v4_core.$strip>, zod.ZodObject<{
19251
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
19252
+ value: zod.ZodOptional<zod.ZodString>;
18687
19253
  }, zod_v4_core.$strip>], "inputMethod">>>>;
18688
19254
  }, zod_v4_core.$strip>, zod.ZodObject<{
18689
19255
  id: zod.ZodPipe<zod.ZodDefault<zod.ZodNumber>, zod.ZodTransform<number, number>>;
@@ -18697,6 +19263,7 @@ declare const WidgetMeasureSchema: TVersionedSchema<{
18697
19263
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
18698
19264
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
18699
19265
  dbDataType: zod.ZodOptional<zod.ZodString>;
19266
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
18700
19267
  }, zod_v4_core.$strip>, zod.ZodObject<{
18701
19268
  inputMethod: zod.ZodLiteral<"VARIABLE">;
18702
19269
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -18803,6 +19370,9 @@ declare const WidgetMeasureSchema: TVersionedSchema<{
18803
19370
  readonly COLUMN_LIST: "COLUMN_LIST";
18804
19371
  }>>;
18805
19372
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
19373
+ }, zod_v4_core.$strip>, zod.ZodObject<{
19374
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
19375
+ value: zod.ZodOptional<zod.ZodString>;
18806
19376
  }, zod_v4_core.$strip>], "inputMethod">>>>;
18807
19377
  mode: zod.ZodLiteral<"EMPTY">;
18808
19378
  placeholderName: zod.ZodOptional<zod.ZodString>;
@@ -18837,6 +19407,7 @@ declare const WidgetMeasureSchema: TVersionedSchema<{
18837
19407
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
18838
19408
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
18839
19409
  dbDataType: zod.ZodOptional<zod.ZodString>;
19410
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
18840
19411
  }, zod_v4_core.$strip>, zod.ZodObject<{
18841
19412
  inputMethod: zod.ZodLiteral<"VARIABLE">;
18842
19413
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -18943,6 +19514,9 @@ declare const WidgetMeasureSchema: TVersionedSchema<{
18943
19514
  readonly COLUMN_LIST: "COLUMN_LIST";
18944
19515
  }>>;
18945
19516
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
19517
+ }, zod_v4_core.$strip>, zod.ZodObject<{
19518
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
19519
+ value: zod.ZodOptional<zod.ZodString>;
18946
19520
  }, zod_v4_core.$strip>], "inputMethod">>>>;
18947
19521
  }, zod_v4_core.$strip>]>>>>;
18948
19522
  value: zod.ZodOptional<zod.ZodDiscriminatedUnion<[zod.ZodDiscriminatedUnion<[zod.ZodObject<{
@@ -19291,6 +19865,7 @@ declare const MarkdownMeasureSchema: TVersionedSchema<{
19291
19865
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
19292
19866
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
19293
19867
  dbDataType: zod.ZodOptional<zod.ZodString>;
19868
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
19294
19869
  }, zod_v4_core.$strip>, zod.ZodObject<{
19295
19870
  inputMethod: zod.ZodLiteral<"VARIABLE">;
19296
19871
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -19397,6 +19972,9 @@ declare const MarkdownMeasureSchema: TVersionedSchema<{
19397
19972
  readonly COLUMN_LIST: "COLUMN_LIST";
19398
19973
  }>>;
19399
19974
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
19975
+ }, zod_v4_core.$strip>, zod.ZodObject<{
19976
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
19977
+ value: zod.ZodOptional<zod.ZodString>;
19400
19978
  }, zod_v4_core.$strip>], "inputMethod">>>>;
19401
19979
  }, zod_v4_core.$strip>, zod.ZodObject<{
19402
19980
  id: zod.ZodPipe<zod.ZodDefault<zod.ZodNumber>, zod.ZodTransform<number, number>>;
@@ -19410,6 +19988,7 @@ declare const MarkdownMeasureSchema: TVersionedSchema<{
19410
19988
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
19411
19989
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
19412
19990
  dbDataType: zod.ZodOptional<zod.ZodString>;
19991
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
19413
19992
  }, zod_v4_core.$strip>, zod.ZodObject<{
19414
19993
  inputMethod: zod.ZodLiteral<"VARIABLE">;
19415
19994
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -19516,6 +20095,9 @@ declare const MarkdownMeasureSchema: TVersionedSchema<{
19516
20095
  readonly COLUMN_LIST: "COLUMN_LIST";
19517
20096
  }>>;
19518
20097
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
20098
+ }, zod_v4_core.$strip>, zod.ZodObject<{
20099
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
20100
+ value: zod.ZodOptional<zod.ZodString>;
19519
20101
  }, zod_v4_core.$strip>], "inputMethod">>>>;
19520
20102
  scriptKey: zod.ZodString;
19521
20103
  autoUpdate: zod.ZodDefault<zod.ZodEnum<{
@@ -19541,6 +20123,7 @@ declare const MarkdownMeasureSchema: TVersionedSchema<{
19541
20123
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
19542
20124
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
19543
20125
  dbDataType: zod.ZodOptional<zod.ZodString>;
20126
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
19544
20127
  }, zod_v4_core.$strip>, zod.ZodObject<{
19545
20128
  inputMethod: zod.ZodLiteral<"VARIABLE">;
19546
20129
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -19647,6 +20230,9 @@ declare const MarkdownMeasureSchema: TVersionedSchema<{
19647
20230
  readonly COLUMN_LIST: "COLUMN_LIST";
19648
20231
  }>>;
19649
20232
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
20233
+ }, zod_v4_core.$strip>, zod.ZodObject<{
20234
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
20235
+ value: zod.ZodOptional<zod.ZodString>;
19650
20236
  }, zod_v4_core.$strip>], "inputMethod">>>>;
19651
20237
  runButtonText: zod.ZodDefault<zod.ZodString>;
19652
20238
  }, zod_v4_core.$strip>, zod.ZodObject<{
@@ -19661,6 +20247,7 @@ declare const MarkdownMeasureSchema: TVersionedSchema<{
19661
20247
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
19662
20248
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
19663
20249
  dbDataType: zod.ZodOptional<zod.ZodString>;
20250
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
19664
20251
  }, zod_v4_core.$strip>, zod.ZodObject<{
19665
20252
  inputMethod: zod.ZodLiteral<"VARIABLE">;
19666
20253
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -19767,6 +20354,9 @@ declare const MarkdownMeasureSchema: TVersionedSchema<{
19767
20354
  readonly COLUMN_LIST: "COLUMN_LIST";
19768
20355
  }>>;
19769
20356
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
20357
+ }, zod_v4_core.$strip>, zod.ZodObject<{
20358
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
20359
+ value: zod.ZodOptional<zod.ZodString>;
19770
20360
  }, zod_v4_core.$strip>], "inputMethod">>>>;
19771
20361
  }, zod_v4_core.$strip>, zod.ZodIntersection<zod.ZodDiscriminatedUnion<[zod.ZodObject<{
19772
20362
  id: zod.ZodPipe<zod.ZodDefault<zod.ZodNumber>, zod.ZodTransform<number, number>>;
@@ -19780,6 +20370,7 @@ declare const MarkdownMeasureSchema: TVersionedSchema<{
19780
20370
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
19781
20371
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
19782
20372
  dbDataType: zod.ZodOptional<zod.ZodString>;
20373
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
19783
20374
  }, zod_v4_core.$strip>, zod.ZodObject<{
19784
20375
  inputMethod: zod.ZodLiteral<"VARIABLE">;
19785
20376
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -19886,6 +20477,9 @@ declare const MarkdownMeasureSchema: TVersionedSchema<{
19886
20477
  readonly COLUMN_LIST: "COLUMN_LIST";
19887
20478
  }>>;
19888
20479
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
20480
+ }, zod_v4_core.$strip>, zod.ZodObject<{
20481
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
20482
+ value: zod.ZodOptional<zod.ZodString>;
19889
20483
  }, zod_v4_core.$strip>], "inputMethod">>>>;
19890
20484
  mode: zod.ZodLiteral<"GENERATED_BY_SCRIPT">;
19891
20485
  scriptKey: zod.ZodOptional<zod.ZodString>;
@@ -19897,6 +20491,7 @@ declare const MarkdownMeasureSchema: TVersionedSchema<{
19897
20491
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
19898
20492
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
19899
20493
  dbDataType: zod.ZodOptional<zod.ZodString>;
20494
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
19900
20495
  }, zod_v4_core.$strip>, zod.ZodObject<{
19901
20496
  inputMethod: zod.ZodLiteral<"VARIABLE">;
19902
20497
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -20003,6 +20598,9 @@ declare const MarkdownMeasureSchema: TVersionedSchema<{
20003
20598
  readonly COLUMN_LIST: "COLUMN_LIST";
20004
20599
  }>>;
20005
20600
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
20601
+ }, zod_v4_core.$strip>, zod.ZodObject<{
20602
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
20603
+ value: zod.ZodOptional<zod.ZodString>;
20006
20604
  }, zod_v4_core.$strip>], "inputMethod">>>>;
20007
20605
  displayName: zod.ZodDefault<zod.ZodString>;
20008
20606
  }, zod_v4_core.$strip>, zod.ZodObject<{
@@ -20017,6 +20615,7 @@ declare const MarkdownMeasureSchema: TVersionedSchema<{
20017
20615
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
20018
20616
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
20019
20617
  dbDataType: zod.ZodOptional<zod.ZodString>;
20618
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
20020
20619
  }, zod_v4_core.$strip>, zod.ZodObject<{
20021
20620
  inputMethod: zod.ZodLiteral<"VARIABLE">;
20022
20621
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -20123,6 +20722,9 @@ declare const MarkdownMeasureSchema: TVersionedSchema<{
20123
20722
  readonly COLUMN_LIST: "COLUMN_LIST";
20124
20723
  }>>;
20125
20724
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
20725
+ }, zod_v4_core.$strip>, zod.ZodObject<{
20726
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
20727
+ value: zod.ZodOptional<zod.ZodString>;
20126
20728
  }, zod_v4_core.$strip>], "inputMethod">>>>;
20127
20729
  mode: zod.ZodLiteral<"EXISTED_VIEW">;
20128
20730
  viewKey: zod.ZodOptional<zod.ZodString>;
@@ -20134,6 +20736,7 @@ declare const MarkdownMeasureSchema: TVersionedSchema<{
20134
20736
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
20135
20737
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
20136
20738
  dbDataType: zod.ZodOptional<zod.ZodString>;
20739
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
20137
20740
  }, zod_v4_core.$strip>, zod.ZodObject<{
20138
20741
  inputMethod: zod.ZodLiteral<"VARIABLE">;
20139
20742
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -20240,6 +20843,9 @@ declare const MarkdownMeasureSchema: TVersionedSchema<{
20240
20843
  readonly COLUMN_LIST: "COLUMN_LIST";
20241
20844
  }>>;
20242
20845
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
20846
+ }, zod_v4_core.$strip>, zod.ZodObject<{
20847
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
20848
+ value: zod.ZodOptional<zod.ZodString>;
20243
20849
  }, zod_v4_core.$strip>], "inputMethod">>>>;
20244
20850
  }, zod_v4_core.$strip>, zod.ZodObject<{
20245
20851
  id: zod.ZodPipe<zod.ZodDefault<zod.ZodNumber>, zod.ZodTransform<number, number>>;
@@ -20253,6 +20859,7 @@ declare const MarkdownMeasureSchema: TVersionedSchema<{
20253
20859
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
20254
20860
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
20255
20861
  dbDataType: zod.ZodOptional<zod.ZodString>;
20862
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
20256
20863
  }, zod_v4_core.$strip>, zod.ZodObject<{
20257
20864
  inputMethod: zod.ZodLiteral<"VARIABLE">;
20258
20865
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -20359,6 +20966,9 @@ declare const MarkdownMeasureSchema: TVersionedSchema<{
20359
20966
  readonly COLUMN_LIST: "COLUMN_LIST";
20360
20967
  }>>;
20361
20968
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
20969
+ }, zod_v4_core.$strip>, zod.ZodObject<{
20970
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
20971
+ value: zod.ZodOptional<zod.ZodString>;
20362
20972
  }, zod_v4_core.$strip>], "inputMethod">>>>;
20363
20973
  mode: zod.ZodLiteral<"EMPTY">;
20364
20974
  placeholderName: zod.ZodOptional<zod.ZodString>;
@@ -20393,6 +21003,7 @@ declare const MarkdownMeasureSchema: TVersionedSchema<{
20393
21003
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
20394
21004
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
20395
21005
  dbDataType: zod.ZodOptional<zod.ZodString>;
21006
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
20396
21007
  }, zod_v4_core.$strip>, zod.ZodObject<{
20397
21008
  inputMethod: zod.ZodLiteral<"VARIABLE">;
20398
21009
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -20499,6 +21110,9 @@ declare const MarkdownMeasureSchema: TVersionedSchema<{
20499
21110
  readonly COLUMN_LIST: "COLUMN_LIST";
20500
21111
  }>>;
20501
21112
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
21113
+ }, zod_v4_core.$strip>, zod.ZodObject<{
21114
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
21115
+ value: zod.ZodOptional<zod.ZodString>;
20502
21116
  }, zod_v4_core.$strip>], "inputMethod">>>>;
20503
21117
  }, zod_v4_core.$strip>]>>>>;
20504
21118
  value: zod.ZodOptional<zod.ZodDiscriminatedUnion<[zod.ZodDiscriminatedUnion<[zod.ZodObject<{
@@ -21175,6 +21789,7 @@ declare const EMeasureTemplateNames: TVersionedEnum<{
21175
21789
  readonly min: "min";
21176
21790
  readonly max: "max";
21177
21791
  readonly sum: "sum";
21792
+ readonly any: "any";
21178
21793
  };
21179
21794
  }, "17">;
21180
21795
  type TMeasureTemplateNames = TVersionedEnumValues<typeof EMeasureTemplateNames>;
@@ -21194,6 +21809,7 @@ declare const measureTemplateFormulas: {
21194
21809
  readonly min: "min({columnFormula})";
21195
21810
  readonly max: "max({columnFormula})";
21196
21811
  readonly sum: "sum({columnFormula})";
21812
+ readonly any: "any({columnFormula})";
21197
21813
  };
21198
21814
  declare const measureInnerTemplateFormulas: {
21199
21815
  readonly begin: "begin({columnFormula})";
@@ -21209,6 +21825,7 @@ declare const EMeasureAggregationTemplateName: TVersionedEnum<{
21209
21825
  readonly minIf: "minIf";
21210
21826
  readonly maxIf: "maxIf";
21211
21827
  readonly sumIf: "sumIf";
21828
+ readonly anyIf: "anyIf";
21212
21829
  readonly top: "top";
21213
21830
  readonly firstValue: "firstValue";
21214
21831
  readonly lastValue: "lastValue";
@@ -21333,6 +21950,13 @@ declare const ColorByDimensionSchema: TVersionedSchema<{
21333
21950
  }, zod_v4_core.$strip>>>;
21334
21951
  }, zod_v4_core.$strip>;
21335
21952
  }, "17">;
21953
+ declare const ColorRangesSchema: TVersionedSchema<{
21954
+ "17": (z: TZod) => zod.ZodObject<{
21955
+ mode: zod.ZodLiteral<"RANGES">;
21956
+ colors: zod.ZodDefault<zod.ZodArray<zod.ZodString>>;
21957
+ limits: zod.ZodDefault<zod.ZodArray<zod.ZodNumber>>;
21958
+ }, zod_v4_core.$strip>;
21959
+ }, "17">;
21336
21960
  declare const ColoredValueSchema: TVersionedSchema<{
21337
21961
  "17": (z: TZod) => zod.ZodObject<{
21338
21962
  value: zod.ZodString;
@@ -21389,6 +22013,10 @@ declare const ColorSchema: TVersionedSchema<{
21389
22013
  formula: zod.ZodDefault<zod.ZodString>;
21390
22014
  }, zod_v4_core.$strip>]>;
21391
22015
  }, zod_v4_core.$strip>>>;
22016
+ }, zod_v4_core.$strip>, zod.ZodObject<{
22017
+ mode: zod.ZodLiteral<"RANGES">;
22018
+ colors: zod.ZodDefault<zod.ZodArray<zod.ZodString>>;
22019
+ limits: zod.ZodDefault<zod.ZodArray<zod.ZodNumber>>;
21392
22020
  }, zod_v4_core.$strip>], "mode">>;
21393
22021
  }, "17">;
21394
22022
 
@@ -21410,6 +22038,8 @@ declare const EColorMode: TVersionedEnum<{
21410
22038
  readonly VALUES: "VALUES";
21411
22039
  /** Задать цвет конкретным значениям общего разреза. Режим используется только для настроек правила отображения */
21412
22040
  readonly BY_DIMENSION: "BY_DIMENSION";
22041
+ /** Окрашивание по числовым диапазонам меры: colors[n] + limits[n-1] */
22042
+ readonly RANGES: "RANGES";
21413
22043
  };
21414
22044
  }, "17">;
21415
22045
  type TColorMode = TVersionedEnumValues<typeof EColorMode>;
@@ -21678,6 +22308,10 @@ declare const BaseWidgetSettingsSchema: TVersionedSchema<{
21678
22308
  formula: string;
21679
22309
  };
21680
22310
  }[];
22311
+ } | {
22312
+ mode: "RANGES";
22313
+ colors: string[];
22314
+ limits: number[];
21681
22315
  }, unknown, zod_v4_core.$ZodTypeInternals<{
21682
22316
  mode: "AUTO";
21683
22317
  } | {
@@ -21721,6 +22355,10 @@ declare const BaseWidgetSettingsSchema: TVersionedSchema<{
21721
22355
  formula: string;
21722
22356
  };
21723
22357
  }[];
22358
+ } | {
22359
+ mode: "RANGES";
22360
+ colors: string[];
22361
+ limits: number[];
21724
22362
  }, unknown>>;
21725
22363
  titleWeight: zod.ZodType<TFontWeight, unknown, zod_v4_core.$ZodTypeInternals<TFontWeight, unknown>>;
21726
22364
  stateName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -21767,6 +22405,7 @@ declare const BaseWidgetSettingsSchema: TVersionedSchema<{
21767
22405
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
21768
22406
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
21769
22407
  dbDataType: zod.ZodOptional<zod.ZodString>;
22408
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
21770
22409
  }, zod_v4_core.$strip>, zod.ZodObject<{
21771
22410
  inputMethod: zod.ZodLiteral<"VARIABLE">;
21772
22411
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -21873,6 +22512,9 @@ declare const BaseWidgetSettingsSchema: TVersionedSchema<{
21873
22512
  readonly COLUMN_LIST: "COLUMN_LIST";
21874
22513
  }>>;
21875
22514
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
22515
+ }, zod_v4_core.$strip>, zod.ZodObject<{
22516
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
22517
+ value: zod.ZodOptional<zod.ZodString>;
21876
22518
  }, zod_v4_core.$strip>], "inputMethod">>>>;
21877
22519
  }, zod_v4_core.$strip>, zod.ZodObject<{
21878
22520
  id: zod.ZodPipe<zod.ZodDefault<zod.ZodNumber>, zod.ZodTransform<number, number>>;
@@ -21886,6 +22528,7 @@ declare const BaseWidgetSettingsSchema: TVersionedSchema<{
21886
22528
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
21887
22529
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
21888
22530
  dbDataType: zod.ZodOptional<zod.ZodString>;
22531
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
21889
22532
  }, zod_v4_core.$strip>, zod.ZodObject<{
21890
22533
  inputMethod: zod.ZodLiteral<"VARIABLE">;
21891
22534
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -21992,6 +22635,9 @@ declare const BaseWidgetSettingsSchema: TVersionedSchema<{
21992
22635
  readonly COLUMN_LIST: "COLUMN_LIST";
21993
22636
  }>>;
21994
22637
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
22638
+ }, zod_v4_core.$strip>, zod.ZodObject<{
22639
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
22640
+ value: zod.ZodOptional<zod.ZodString>;
21995
22641
  }, zod_v4_core.$strip>], "inputMethod">>>>;
21996
22642
  scriptKey: zod.ZodString;
21997
22643
  autoUpdate: zod.ZodDefault<zod.ZodEnum<{
@@ -22017,6 +22663,7 @@ declare const BaseWidgetSettingsSchema: TVersionedSchema<{
22017
22663
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
22018
22664
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
22019
22665
  dbDataType: zod.ZodOptional<zod.ZodString>;
22666
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
22020
22667
  }, zod_v4_core.$strip>, zod.ZodObject<{
22021
22668
  inputMethod: zod.ZodLiteral<"VARIABLE">;
22022
22669
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -22123,6 +22770,9 @@ declare const BaseWidgetSettingsSchema: TVersionedSchema<{
22123
22770
  readonly COLUMN_LIST: "COLUMN_LIST";
22124
22771
  }>>;
22125
22772
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
22773
+ }, zod_v4_core.$strip>, zod.ZodObject<{
22774
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
22775
+ value: zod.ZodOptional<zod.ZodString>;
22126
22776
  }, zod_v4_core.$strip>], "inputMethod">>>>;
22127
22777
  runButtonText: zod.ZodDefault<zod.ZodString>;
22128
22778
  }, zod_v4_core.$strip>, zod.ZodObject<{
@@ -22137,6 +22787,7 @@ declare const BaseWidgetSettingsSchema: TVersionedSchema<{
22137
22787
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
22138
22788
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
22139
22789
  dbDataType: zod.ZodOptional<zod.ZodString>;
22790
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
22140
22791
  }, zod_v4_core.$strip>, zod.ZodObject<{
22141
22792
  inputMethod: zod.ZodLiteral<"VARIABLE">;
22142
22793
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -22243,6 +22894,9 @@ declare const BaseWidgetSettingsSchema: TVersionedSchema<{
22243
22894
  readonly COLUMN_LIST: "COLUMN_LIST";
22244
22895
  }>>;
22245
22896
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
22897
+ }, zod_v4_core.$strip>, zod.ZodObject<{
22898
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
22899
+ value: zod.ZodOptional<zod.ZodString>;
22246
22900
  }, zod_v4_core.$strip>], "inputMethod">>>>;
22247
22901
  }, zod_v4_core.$strip>, zod.ZodIntersection<zod.ZodDiscriminatedUnion<[zod.ZodObject<{
22248
22902
  id: zod.ZodPipe<zod.ZodDefault<zod.ZodNumber>, zod.ZodTransform<number, number>>;
@@ -22256,6 +22910,7 @@ declare const BaseWidgetSettingsSchema: TVersionedSchema<{
22256
22910
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
22257
22911
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
22258
22912
  dbDataType: zod.ZodOptional<zod.ZodString>;
22913
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
22259
22914
  }, zod_v4_core.$strip>, zod.ZodObject<{
22260
22915
  inputMethod: zod.ZodLiteral<"VARIABLE">;
22261
22916
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -22362,6 +23017,9 @@ declare const BaseWidgetSettingsSchema: TVersionedSchema<{
22362
23017
  readonly COLUMN_LIST: "COLUMN_LIST";
22363
23018
  }>>;
22364
23019
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
23020
+ }, zod_v4_core.$strip>, zod.ZodObject<{
23021
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
23022
+ value: zod.ZodOptional<zod.ZodString>;
22365
23023
  }, zod_v4_core.$strip>], "inputMethod">>>>;
22366
23024
  mode: zod.ZodLiteral<"GENERATED_BY_SCRIPT">;
22367
23025
  scriptKey: zod.ZodOptional<zod.ZodString>;
@@ -22373,6 +23031,7 @@ declare const BaseWidgetSettingsSchema: TVersionedSchema<{
22373
23031
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
22374
23032
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
22375
23033
  dbDataType: zod.ZodOptional<zod.ZodString>;
23034
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
22376
23035
  }, zod_v4_core.$strip>, zod.ZodObject<{
22377
23036
  inputMethod: zod.ZodLiteral<"VARIABLE">;
22378
23037
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -22479,6 +23138,9 @@ declare const BaseWidgetSettingsSchema: TVersionedSchema<{
22479
23138
  readonly COLUMN_LIST: "COLUMN_LIST";
22480
23139
  }>>;
22481
23140
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
23141
+ }, zod_v4_core.$strip>, zod.ZodObject<{
23142
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
23143
+ value: zod.ZodOptional<zod.ZodString>;
22482
23144
  }, zod_v4_core.$strip>], "inputMethod">>>>;
22483
23145
  displayName: zod.ZodDefault<zod.ZodString>;
22484
23146
  }, zod_v4_core.$strip>, zod.ZodObject<{
@@ -22493,6 +23155,7 @@ declare const BaseWidgetSettingsSchema: TVersionedSchema<{
22493
23155
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
22494
23156
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
22495
23157
  dbDataType: zod.ZodOptional<zod.ZodString>;
23158
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
22496
23159
  }, zod_v4_core.$strip>, zod.ZodObject<{
22497
23160
  inputMethod: zod.ZodLiteral<"VARIABLE">;
22498
23161
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -22599,6 +23262,9 @@ declare const BaseWidgetSettingsSchema: TVersionedSchema<{
22599
23262
  readonly COLUMN_LIST: "COLUMN_LIST";
22600
23263
  }>>;
22601
23264
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
23265
+ }, zod_v4_core.$strip>, zod.ZodObject<{
23266
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
23267
+ value: zod.ZodOptional<zod.ZodString>;
22602
23268
  }, zod_v4_core.$strip>], "inputMethod">>>>;
22603
23269
  mode: zod.ZodLiteral<"EXISTED_VIEW">;
22604
23270
  viewKey: zod.ZodOptional<zod.ZodString>;
@@ -22610,6 +23276,7 @@ declare const BaseWidgetSettingsSchema: TVersionedSchema<{
22610
23276
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
22611
23277
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
22612
23278
  dbDataType: zod.ZodOptional<zod.ZodString>;
23279
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
22613
23280
  }, zod_v4_core.$strip>, zod.ZodObject<{
22614
23281
  inputMethod: zod.ZodLiteral<"VARIABLE">;
22615
23282
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -22716,6 +23383,9 @@ declare const BaseWidgetSettingsSchema: TVersionedSchema<{
22716
23383
  readonly COLUMN_LIST: "COLUMN_LIST";
22717
23384
  }>>;
22718
23385
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
23386
+ }, zod_v4_core.$strip>, zod.ZodObject<{
23387
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
23388
+ value: zod.ZodOptional<zod.ZodString>;
22719
23389
  }, zod_v4_core.$strip>], "inputMethod">>>>;
22720
23390
  }, zod_v4_core.$strip>, zod.ZodObject<{
22721
23391
  id: zod.ZodPipe<zod.ZodDefault<zod.ZodNumber>, zod.ZodTransform<number, number>>;
@@ -22729,6 +23399,7 @@ declare const BaseWidgetSettingsSchema: TVersionedSchema<{
22729
23399
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
22730
23400
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
22731
23401
  dbDataType: zod.ZodOptional<zod.ZodString>;
23402
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
22732
23403
  }, zod_v4_core.$strip>, zod.ZodObject<{
22733
23404
  inputMethod: zod.ZodLiteral<"VARIABLE">;
22734
23405
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -22835,6 +23506,9 @@ declare const BaseWidgetSettingsSchema: TVersionedSchema<{
22835
23506
  readonly COLUMN_LIST: "COLUMN_LIST";
22836
23507
  }>>;
22837
23508
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
23509
+ }, zod_v4_core.$strip>, zod.ZodObject<{
23510
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
23511
+ value: zod.ZodOptional<zod.ZodString>;
22838
23512
  }, zod_v4_core.$strip>], "inputMethod">>>>;
22839
23513
  mode: zod.ZodLiteral<"EMPTY">;
22840
23514
  placeholderName: zod.ZodOptional<zod.ZodString>;
@@ -22869,6 +23543,7 @@ declare const BaseWidgetSettingsSchema: TVersionedSchema<{
22869
23543
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
22870
23544
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
22871
23545
  dbDataType: zod.ZodOptional<zod.ZodString>;
23546
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
22872
23547
  }, zod_v4_core.$strip>, zod.ZodObject<{
22873
23548
  inputMethod: zod.ZodLiteral<"VARIABLE">;
22874
23549
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -22975,6 +23650,9 @@ declare const BaseWidgetSettingsSchema: TVersionedSchema<{
22975
23650
  readonly COLUMN_LIST: "COLUMN_LIST";
22976
23651
  }>>;
22977
23652
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
23653
+ }, zod_v4_core.$strip>, zod.ZodObject<{
23654
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
23655
+ value: zod.ZodOptional<zod.ZodString>;
22978
23656
  }, zod_v4_core.$strip>], "inputMethod">>>>;
22979
23657
  }, zod_v4_core.$strip>]>>>>;
22980
23658
  value: zod.ZodOptional<zod.ZodDiscriminatedUnion<[zod.ZodDiscriminatedUnion<[zod.ZodObject<{
@@ -23285,6 +23963,7 @@ declare const BaseWidgetSettingsSchema: TVersionedSchema<{
23285
23963
  }, zod_v4_core.$strip>>>;
23286
23964
  markdownText: zod.ZodDefault<zod.ZodString>;
23287
23965
  markdownTextSize: zod.ZodDefault<zod.ZodNumber>;
23966
+ customNoDataHint: zod.ZodDefault<zod.ZodString>;
23288
23967
  filters: zod.ZodDefault<zod.ZodArray<zod.ZodUnion<readonly [zod.ZodObject<{
23289
23968
  value: zod.ZodUnion<readonly [zod.ZodObject<{
23290
23969
  mode: zod.ZodLiteral<"AGGREGATION">;
@@ -23587,6 +24266,7 @@ declare const BaseWidgetSettingsSchema: TVersionedSchema<{
23587
24266
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
23588
24267
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
23589
24268
  dbDataType: zod.ZodOptional<zod.ZodString>;
24269
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
23590
24270
  }, zod_v4_core.$strip>, zod.ZodObject<{
23591
24271
  inputMethod: zod.ZodLiteral<"VARIABLE">;
23592
24272
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -23716,6 +24396,7 @@ declare const BaseWidgetSettingsSchema: TVersionedSchema<{
23716
24396
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
23717
24397
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
23718
24398
  dbDataType: zod.ZodOptional<zod.ZodString>;
24399
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
23719
24400
  }, zod_v4_core.$strip>, zod.ZodObject<{
23720
24401
  inputMethod: zod.ZodLiteral<"VARIABLE">;
23721
24402
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -23867,6 +24548,10 @@ declare const BaseWidgetSettingsSchema: TVersionedSchema<{
23867
24548
  formula: zod.ZodDefault<zod.ZodString>;
23868
24549
  }, zod_v4_core.$strip>]>;
23869
24550
  }, zod_v4_core.$strip>>>;
24551
+ }, zod_v4_core.$strip>, zod.ZodObject<{
24552
+ mode: zod.ZodLiteral<"RANGES">;
24553
+ colors: zod.ZodDefault<zod.ZodArray<zod.ZodString>>;
24554
+ limits: zod.ZodDefault<zod.ZodArray<zod.ZodNumber>>;
23870
24555
  }, zod_v4_core.$strip>], "mode">>;
23871
24556
  borderColor: zod.ZodDefault<zod.ZodDiscriminatedUnion<[zod.ZodObject<{
23872
24557
  mode: zod.ZodLiteral<"AUTO">;
@@ -23911,6 +24596,10 @@ declare const BaseWidgetSettingsSchema: TVersionedSchema<{
23911
24596
  formula: zod.ZodDefault<zod.ZodString>;
23912
24597
  }, zod_v4_core.$strip>]>;
23913
24598
  }, zod_v4_core.$strip>>>;
24599
+ }, zod_v4_core.$strip>, zod.ZodObject<{
24600
+ mode: zod.ZodLiteral<"RANGES">;
24601
+ colors: zod.ZodDefault<zod.ZodArray<zod.ZodString>>;
24602
+ limits: zod.ZodDefault<zod.ZodArray<zod.ZodNumber>>;
23914
24603
  }, zod_v4_core.$strip>], "mode">>;
23915
24604
  color: zod.ZodDefault<zod.ZodDiscriminatedUnion<[zod.ZodObject<{
23916
24605
  mode: zod.ZodLiteral<"AUTO">;
@@ -23955,6 +24644,10 @@ declare const BaseWidgetSettingsSchema: TVersionedSchema<{
23955
24644
  formula: zod.ZodDefault<zod.ZodString>;
23956
24645
  }, zod_v4_core.$strip>]>;
23957
24646
  }, zod_v4_core.$strip>>>;
24647
+ }, zod_v4_core.$strip>, zod.ZodObject<{
24648
+ mode: zod.ZodLiteral<"RANGES">;
24649
+ colors: zod.ZodDefault<zod.ZodArray<zod.ZodString>>;
24650
+ limits: zod.ZodDefault<zod.ZodArray<zod.ZodNumber>>;
23958
24651
  }, zod_v4_core.$strip>], "mode">>;
23959
24652
  hint: zod.ZodDefault<zod.ZodString>;
23960
24653
  }, zod_v4_core.$strip>>>;
@@ -24286,6 +24979,10 @@ declare const BaseWidgetSettingsSchema: TVersionedSchema<{
24286
24979
  formula: string;
24287
24980
  };
24288
24981
  }[];
24982
+ } | {
24983
+ mode: "RANGES";
24984
+ colors: string[];
24985
+ limits: number[];
24289
24986
  }, unknown, zod_v4_core.$ZodTypeInternals<{
24290
24987
  mode: "AUTO";
24291
24988
  } | {
@@ -24329,6 +25026,10 @@ declare const BaseWidgetSettingsSchema: TVersionedSchema<{
24329
25026
  formula: string;
24330
25027
  };
24331
25028
  }[];
25029
+ } | {
25030
+ mode: "RANGES";
25031
+ colors: string[];
25032
+ limits: number[];
24332
25033
  }, unknown>>;
24333
25034
  titleWeight: zod.ZodType<TFontWeight, unknown, zod_v4_core.$ZodTypeInternals<TFontWeight, unknown>>;
24334
25035
  stateName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -24375,6 +25076,7 @@ declare const BaseWidgetSettingsSchema: TVersionedSchema<{
24375
25076
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
24376
25077
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
24377
25078
  dbDataType: zod.ZodOptional<zod.ZodString>;
25079
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
24378
25080
  }, zod_v4_core.$strip>, zod.ZodObject<{
24379
25081
  inputMethod: zod.ZodLiteral<"VARIABLE">;
24380
25082
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -24481,6 +25183,9 @@ declare const BaseWidgetSettingsSchema: TVersionedSchema<{
24481
25183
  readonly COLUMN_LIST: "COLUMN_LIST";
24482
25184
  }>>;
24483
25185
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
25186
+ }, zod_v4_core.$strip>, zod.ZodObject<{
25187
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
25188
+ value: zod.ZodOptional<zod.ZodString>;
24484
25189
  }, zod_v4_core.$strip>], "inputMethod">>>>;
24485
25190
  }, zod_v4_core.$strip>, zod.ZodObject<{
24486
25191
  id: zod.ZodPipe<zod.ZodDefault<zod.ZodNumber>, zod.ZodTransform<number, number>>;
@@ -24494,6 +25199,7 @@ declare const BaseWidgetSettingsSchema: TVersionedSchema<{
24494
25199
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
24495
25200
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
24496
25201
  dbDataType: zod.ZodOptional<zod.ZodString>;
25202
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
24497
25203
  }, zod_v4_core.$strip>, zod.ZodObject<{
24498
25204
  inputMethod: zod.ZodLiteral<"VARIABLE">;
24499
25205
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -24600,6 +25306,9 @@ declare const BaseWidgetSettingsSchema: TVersionedSchema<{
24600
25306
  readonly COLUMN_LIST: "COLUMN_LIST";
24601
25307
  }>>;
24602
25308
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
25309
+ }, zod_v4_core.$strip>, zod.ZodObject<{
25310
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
25311
+ value: zod.ZodOptional<zod.ZodString>;
24603
25312
  }, zod_v4_core.$strip>], "inputMethod">>>>;
24604
25313
  scriptKey: zod.ZodString;
24605
25314
  autoUpdate: zod.ZodDefault<zod.ZodEnum<{
@@ -24625,6 +25334,7 @@ declare const BaseWidgetSettingsSchema: TVersionedSchema<{
24625
25334
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
24626
25335
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
24627
25336
  dbDataType: zod.ZodOptional<zod.ZodString>;
25337
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
24628
25338
  }, zod_v4_core.$strip>, zod.ZodObject<{
24629
25339
  inputMethod: zod.ZodLiteral<"VARIABLE">;
24630
25340
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -24731,6 +25441,9 @@ declare const BaseWidgetSettingsSchema: TVersionedSchema<{
24731
25441
  readonly COLUMN_LIST: "COLUMN_LIST";
24732
25442
  }>>;
24733
25443
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
25444
+ }, zod_v4_core.$strip>, zod.ZodObject<{
25445
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
25446
+ value: zod.ZodOptional<zod.ZodString>;
24734
25447
  }, zod_v4_core.$strip>], "inputMethod">>>>;
24735
25448
  runButtonText: zod.ZodDefault<zod.ZodString>;
24736
25449
  }, zod_v4_core.$strip>, zod.ZodObject<{
@@ -24745,6 +25458,7 @@ declare const BaseWidgetSettingsSchema: TVersionedSchema<{
24745
25458
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
24746
25459
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
24747
25460
  dbDataType: zod.ZodOptional<zod.ZodString>;
25461
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
24748
25462
  }, zod_v4_core.$strip>, zod.ZodObject<{
24749
25463
  inputMethod: zod.ZodLiteral<"VARIABLE">;
24750
25464
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -24851,6 +25565,9 @@ declare const BaseWidgetSettingsSchema: TVersionedSchema<{
24851
25565
  readonly COLUMN_LIST: "COLUMN_LIST";
24852
25566
  }>>;
24853
25567
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
25568
+ }, zod_v4_core.$strip>, zod.ZodObject<{
25569
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
25570
+ value: zod.ZodOptional<zod.ZodString>;
24854
25571
  }, zod_v4_core.$strip>], "inputMethod">>>>;
24855
25572
  }, zod_v4_core.$strip>, zod.ZodIntersection<zod.ZodDiscriminatedUnion<[zod.ZodObject<{
24856
25573
  id: zod.ZodPipe<zod.ZodDefault<zod.ZodNumber>, zod.ZodTransform<number, number>>;
@@ -24864,6 +25581,7 @@ declare const BaseWidgetSettingsSchema: TVersionedSchema<{
24864
25581
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
24865
25582
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
24866
25583
  dbDataType: zod.ZodOptional<zod.ZodString>;
25584
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
24867
25585
  }, zod_v4_core.$strip>, zod.ZodObject<{
24868
25586
  inputMethod: zod.ZodLiteral<"VARIABLE">;
24869
25587
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -24970,6 +25688,9 @@ declare const BaseWidgetSettingsSchema: TVersionedSchema<{
24970
25688
  readonly COLUMN_LIST: "COLUMN_LIST";
24971
25689
  }>>;
24972
25690
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
25691
+ }, zod_v4_core.$strip>, zod.ZodObject<{
25692
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
25693
+ value: zod.ZodOptional<zod.ZodString>;
24973
25694
  }, zod_v4_core.$strip>], "inputMethod">>>>;
24974
25695
  mode: zod.ZodLiteral<"GENERATED_BY_SCRIPT">;
24975
25696
  scriptKey: zod.ZodOptional<zod.ZodString>;
@@ -24981,6 +25702,7 @@ declare const BaseWidgetSettingsSchema: TVersionedSchema<{
24981
25702
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
24982
25703
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
24983
25704
  dbDataType: zod.ZodOptional<zod.ZodString>;
25705
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
24984
25706
  }, zod_v4_core.$strip>, zod.ZodObject<{
24985
25707
  inputMethod: zod.ZodLiteral<"VARIABLE">;
24986
25708
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -25087,6 +25809,9 @@ declare const BaseWidgetSettingsSchema: TVersionedSchema<{
25087
25809
  readonly COLUMN_LIST: "COLUMN_LIST";
25088
25810
  }>>;
25089
25811
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
25812
+ }, zod_v4_core.$strip>, zod.ZodObject<{
25813
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
25814
+ value: zod.ZodOptional<zod.ZodString>;
25090
25815
  }, zod_v4_core.$strip>], "inputMethod">>>>;
25091
25816
  displayName: zod.ZodDefault<zod.ZodString>;
25092
25817
  }, zod_v4_core.$strip>, zod.ZodObject<{
@@ -25101,6 +25826,7 @@ declare const BaseWidgetSettingsSchema: TVersionedSchema<{
25101
25826
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
25102
25827
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
25103
25828
  dbDataType: zod.ZodOptional<zod.ZodString>;
25829
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
25104
25830
  }, zod_v4_core.$strip>, zod.ZodObject<{
25105
25831
  inputMethod: zod.ZodLiteral<"VARIABLE">;
25106
25832
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -25207,6 +25933,9 @@ declare const BaseWidgetSettingsSchema: TVersionedSchema<{
25207
25933
  readonly COLUMN_LIST: "COLUMN_LIST";
25208
25934
  }>>;
25209
25935
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
25936
+ }, zod_v4_core.$strip>, zod.ZodObject<{
25937
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
25938
+ value: zod.ZodOptional<zod.ZodString>;
25210
25939
  }, zod_v4_core.$strip>], "inputMethod">>>>;
25211
25940
  mode: zod.ZodLiteral<"EXISTED_VIEW">;
25212
25941
  viewKey: zod.ZodOptional<zod.ZodString>;
@@ -25218,6 +25947,7 @@ declare const BaseWidgetSettingsSchema: TVersionedSchema<{
25218
25947
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
25219
25948
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
25220
25949
  dbDataType: zod.ZodOptional<zod.ZodString>;
25950
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
25221
25951
  }, zod_v4_core.$strip>, zod.ZodObject<{
25222
25952
  inputMethod: zod.ZodLiteral<"VARIABLE">;
25223
25953
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -25324,6 +26054,9 @@ declare const BaseWidgetSettingsSchema: TVersionedSchema<{
25324
26054
  readonly COLUMN_LIST: "COLUMN_LIST";
25325
26055
  }>>;
25326
26056
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
26057
+ }, zod_v4_core.$strip>, zod.ZodObject<{
26058
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
26059
+ value: zod.ZodOptional<zod.ZodString>;
25327
26060
  }, zod_v4_core.$strip>], "inputMethod">>>>;
25328
26061
  }, zod_v4_core.$strip>, zod.ZodObject<{
25329
26062
  id: zod.ZodPipe<zod.ZodDefault<zod.ZodNumber>, zod.ZodTransform<number, number>>;
@@ -25337,6 +26070,7 @@ declare const BaseWidgetSettingsSchema: TVersionedSchema<{
25337
26070
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
25338
26071
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
25339
26072
  dbDataType: zod.ZodOptional<zod.ZodString>;
26073
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
25340
26074
  }, zod_v4_core.$strip>, zod.ZodObject<{
25341
26075
  inputMethod: zod.ZodLiteral<"VARIABLE">;
25342
26076
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -25443,6 +26177,9 @@ declare const BaseWidgetSettingsSchema: TVersionedSchema<{
25443
26177
  readonly COLUMN_LIST: "COLUMN_LIST";
25444
26178
  }>>;
25445
26179
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
26180
+ }, zod_v4_core.$strip>, zod.ZodObject<{
26181
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
26182
+ value: zod.ZodOptional<zod.ZodString>;
25446
26183
  }, zod_v4_core.$strip>], "inputMethod">>>>;
25447
26184
  mode: zod.ZodLiteral<"EMPTY">;
25448
26185
  placeholderName: zod.ZodOptional<zod.ZodString>;
@@ -25477,6 +26214,7 @@ declare const BaseWidgetSettingsSchema: TVersionedSchema<{
25477
26214
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
25478
26215
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
25479
26216
  dbDataType: zod.ZodOptional<zod.ZodString>;
26217
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
25480
26218
  }, zod_v4_core.$strip>, zod.ZodObject<{
25481
26219
  inputMethod: zod.ZodLiteral<"VARIABLE">;
25482
26220
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -25583,6 +26321,9 @@ declare const BaseWidgetSettingsSchema: TVersionedSchema<{
25583
26321
  readonly COLUMN_LIST: "COLUMN_LIST";
25584
26322
  }>>;
25585
26323
  parent: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
26324
+ }, zod_v4_core.$strip>, zod.ZodObject<{
26325
+ inputMethod: zod.ZodLiteral<"EDITABLE_TEXT_VALUE">;
26326
+ value: zod.ZodOptional<zod.ZodString>;
25586
26327
  }, zod_v4_core.$strip>], "inputMethod">>>>;
25587
26328
  }, zod_v4_core.$strip>]>>>>;
25588
26329
  value: zod.ZodOptional<zod.ZodDiscriminatedUnion<[zod.ZodDiscriminatedUnion<[zod.ZodObject<{
@@ -25893,6 +26634,7 @@ declare const BaseWidgetSettingsSchema: TVersionedSchema<{
25893
26634
  }, zod_v4_core.$strip>>>;
25894
26635
  markdownText: zod.ZodDefault<zod.ZodString>;
25895
26636
  markdownTextSize: zod.ZodDefault<zod.ZodNumber>;
26637
+ customNoDataHint: zod.ZodDefault<zod.ZodString>;
25896
26638
  actionButtons: zod.ZodDefault<zod.ZodArray<zod.ZodObject<{
25897
26639
  id: zod.ZodPipe<zod.ZodDefault<zod.ZodNumber>, zod.ZodTransform<number, number>>;
25898
26640
  name: zod.ZodString;
@@ -25909,6 +26651,7 @@ declare const BaseWidgetSettingsSchema: TVersionedSchema<{
25909
26651
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
25910
26652
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
25911
26653
  dbDataType: zod.ZodOptional<zod.ZodString>;
26654
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
25912
26655
  }, zod_v4_core.$strip>, zod.ZodObject<{
25913
26656
  inputMethod: zod.ZodLiteral<"VARIABLE">;
25914
26657
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -26038,6 +26781,7 @@ declare const BaseWidgetSettingsSchema: TVersionedSchema<{
26038
26781
  tableName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
26039
26782
  columnName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
26040
26783
  dbDataType: zod.ZodOptional<zod.ZodString>;
26784
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
26041
26785
  }, zod_v4_core.$strip>, zod.ZodObject<{
26042
26786
  inputMethod: zod.ZodLiteral<"VARIABLE">;
26043
26787
  sourceVariable: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -26189,6 +26933,10 @@ declare const BaseWidgetSettingsSchema: TVersionedSchema<{
26189
26933
  formula: zod.ZodDefault<zod.ZodString>;
26190
26934
  }, zod_v4_core.$strip>]>;
26191
26935
  }, zod_v4_core.$strip>>>;
26936
+ }, zod_v4_core.$strip>, zod.ZodObject<{
26937
+ mode: zod.ZodLiteral<"RANGES">;
26938
+ colors: zod.ZodDefault<zod.ZodArray<zod.ZodString>>;
26939
+ limits: zod.ZodDefault<zod.ZodArray<zod.ZodNumber>>;
26192
26940
  }, zod_v4_core.$strip>], "mode">>;
26193
26941
  borderColor: zod.ZodDefault<zod.ZodDiscriminatedUnion<[zod.ZodObject<{
26194
26942
  mode: zod.ZodLiteral<"AUTO">;
@@ -26233,6 +26981,10 @@ declare const BaseWidgetSettingsSchema: TVersionedSchema<{
26233
26981
  formula: zod.ZodDefault<zod.ZodString>;
26234
26982
  }, zod_v4_core.$strip>]>;
26235
26983
  }, zod_v4_core.$strip>>>;
26984
+ }, zod_v4_core.$strip>, zod.ZodObject<{
26985
+ mode: zod.ZodLiteral<"RANGES">;
26986
+ colors: zod.ZodDefault<zod.ZodArray<zod.ZodString>>;
26987
+ limits: zod.ZodDefault<zod.ZodArray<zod.ZodNumber>>;
26236
26988
  }, zod_v4_core.$strip>], "mode">>;
26237
26989
  color: zod.ZodDefault<zod.ZodDiscriminatedUnion<[zod.ZodObject<{
26238
26990
  mode: zod.ZodLiteral<"AUTO">;
@@ -26277,6 +27029,10 @@ declare const BaseWidgetSettingsSchema: TVersionedSchema<{
26277
27029
  formula: zod.ZodDefault<zod.ZodString>;
26278
27030
  }, zod_v4_core.$strip>]>;
26279
27031
  }, zod_v4_core.$strip>>>;
27032
+ }, zod_v4_core.$strip>, zod.ZodObject<{
27033
+ mode: zod.ZodLiteral<"RANGES">;
27034
+ colors: zod.ZodDefault<zod.ZodArray<zod.ZodString>>;
27035
+ limits: zod.ZodDefault<zod.ZodArray<zod.ZodNumber>>;
26280
27036
  }, zod_v4_core.$strip>], "mode">>;
26281
27037
  hint: zod.ZodDefault<zod.ZodString>;
26282
27038
  }, zod_v4_core.$strip>>>;
@@ -27461,6 +28217,21 @@ interface IActionOnClickControl {
27461
28217
  * @default {defaultActionsConfig}
27462
28218
  */
27463
28219
  actionsConfig?: TActionsConfig;
28220
+ /**
28221
+ * Максимальное количество действий в списке.
28222
+ * При достижении лимита кнопка добавления скрывается.
28223
+ */
28224
+ maxItems?: number;
28225
+ /**
28226
+ * Разрешить удаление действий из списка.
28227
+ * @default true
28228
+ */
28229
+ deletable?: boolean;
28230
+ /**
28231
+ * Показывать поле "Название" в dive-панели действия.
28232
+ * @default true
28233
+ */
28234
+ showActionName?: boolean;
27464
28235
  };
27465
28236
  }
27466
28237
  interface IFilterControl {
@@ -27540,12 +28311,15 @@ interface IWidgetPlaceholderController {
27540
28311
  setDisplay(value: boolean): void;
27541
28312
  setEmpty(value: boolean): void;
27542
28313
  setOverlay(value: boolean): void;
28314
+ setCustomEmptyTexts(noFilter: string | null, withFilter: string | null): void;
27543
28315
  }
27544
28316
  interface IWidgetPlaceholderValues {
27545
28317
  error: Error | null;
27546
28318
  isDisplay: boolean | undefined;
27547
28319
  isEmpty: boolean;
27548
28320
  isOverlay: boolean;
28321
+ emptyText: string | null;
28322
+ emptyWithFilterText: string | null;
27549
28323
  }
27550
28324
 
27551
28325
  interface IWidgetFormatting {
@@ -27836,6 +28610,12 @@ type TLaunchActionParams = {
27836
28610
  eventNames?: [string] | [string, string];
27837
28611
  /** Callback вызывается при успешном открытии модального окна подтверждения или при прерывании открытия */
27838
28612
  onConfirmationOpenSettled?: () => void;
28613
+ /**
28614
+ * Режим запуска действия:
28615
+ * - "id" (по умолчанию) — действие ищется по id в preparedSettings виджета, чтобы получить свежие значения переменных
28616
+ * - "inline" — действие используется из params.action как есть, без поиска по id. Применяется когда виджет сам разрешает значения параметров перед вызовом
28617
+ */
28618
+ actionMode?: "id" | "inline";
27839
28619
  };
27840
28620
  type TWidgetContainer = {
27841
28621
  /** Имеет ли контейнер виджета ограниченную максимальную высоту */
@@ -28068,6 +28848,10 @@ declare const WidgetPresetSettingsSchema: TVersionedSchema<{
28068
28848
  formula: string;
28069
28849
  };
28070
28850
  }[];
28851
+ } | {
28852
+ mode: "RANGES";
28853
+ colors: string[];
28854
+ limits: number[];
28071
28855
  }, unknown, zod_v4_core.$ZodTypeInternals<{
28072
28856
  mode: "AUTO";
28073
28857
  } | {
@@ -28111,6 +28895,10 @@ declare const WidgetPresetSettingsSchema: TVersionedSchema<{
28111
28895
  formula: string;
28112
28896
  };
28113
28897
  }[];
28898
+ } | {
28899
+ mode: "RANGES";
28900
+ colors: string[];
28901
+ limits: number[];
28114
28902
  }, unknown>>;
28115
28903
  titleWeight: zod.ZodType<TFontWeight, unknown, zod_v4_core.$ZodTypeInternals<TFontWeight, unknown>>;
28116
28904
  stateName: zod.ZodDefault<zod.ZodNullable<zod.ZodString>>;
@@ -28343,4 +29131,4 @@ declare global {
28343
29131
  }
28344
29132
  }
28345
29133
 
28346
- export { ActionButtonSchema, ActionDrillDownSchema, ActionGoToURLSchema, ActionOnClickParameterSchema, ActionOpenInSchema, ActionOpenViewSchema, ActionRunScriptSchema, ActionSchema, ActionUpdateVariableSchema, ActionsOnClickSchema, AutoIdentifiedArrayItemSchema, BaseWidgetSettingsSchema, ColorAutoSchema, ColorBaseSchema, ColorByDimensionSchema, ColorDisabledSchema, ColorFormulaSchema, ColorGradientSchema, ColorRuleSchema, ColorSchema, ColorValuesSchema, ColoredValueSchema, ColumnIndicatorValueSchema, DimensionProcessFilterSchema, DimensionValueSchema, DisplayConditionSchema, EActionButtonsTypes, EActionTypes, EActivateConditionMode, EAutoUpdateMode, ECalculatorFilterMethods, EClickHouseBaseTypes, EColorMode, EControlType, ECustomSelectTemplates, EDataModelOption, EDimensionAggregationTemplateName, EDimensionProcessFilterTimeUnit, EDimensionTemplateNames, EDisplayConditionMode, EDrawerPlacement, EDurationTemplateName, EDurationUnit, EEventAppearances, EEventMeasureTemplateNames, EExpectedFieldTypes, EFontWeight, EFormatOrFormattingMode, EFormulaFilterFieldKeys, EHeightMode, EIgnoreFilterMode, EIndicatorType, ELastTimeUnit, EMarkdownDisplayMode, EMeasureAggregationTemplateName, EMeasureInnerTemplateNames, EMeasureTemplateNames, EOuterAggregation, EProcessFilterNames, ESelectOptionTypes, ESettingsSchemaMetaKey, ESimpleDataType, ESimpleInputType, ESortDirection, ESortingMode, ESortingValueModes, ESystemRecordKey, ETransitionMeasureTemplateNames, EUnitMode, EViewMode, EViewOpenIn, EWidgetActionInputMethod, EWidgetFilterMode, EWidgetIgnoreFilterMode, EWidgetIndicatorType, EWidgetIndicatorValueModes, ExtendedFormulaFilterValueSchema, FormatSchema, FormattingSchema, FormulaFilterValueSchema, FormulaNullableSchema, FormulaSchema, type IActionButton, type IActionDrillDown, type IActionGoToUrl, type IActionOnClickControl, type IActionRunScript, type IActionScript, type IActionUpdateVariable, type IAddButtonSelectOption, type IAddDurationOfTransitionFilter, type IAddPresenceOfEventFilter, type IAddPresenceOfTransitionFilter, type IAddRepetitionOfEventFilter, type IAutoIdentifiedArrayItem, type IBaseDimensionsAndMeasuresCalculator, type IBaseDimensionsAndMeasuresCalculatorInput, type IBaseDimensionsAndMeasuresCalculatorOutput, type IBaseWidgetSettings, type ICalculator, type ICalculatorDimensionInput, type ICalculatorDimensionOutput, type ICalculatorFactory, type ICalculatorFilter, type ICalculatorIndicatorInput, type ICalculatorIndicatorOutput, type ICalculatorMeasureInput, type ICalculatorMeasureOutput, type ICalculatorOptions, type ICollapseRecord, type IColorPickerControl, type IColoredValue, type ICommonDimensions, type ICommonMeasures, type ICommonState, type IControlProps, type IControlRecord, type ICustomAddButtonProps, type ICustomWidgetProps, type IDefinition, type IDimensionAddButtonProps, type IDimensionProcessFilter, type IDimensionSelection, type IDimensionSelectionByFormula, type IDisplayConditionControl, type IDisplayPredicate, type IDisplayRule, type IDivePanelDescription, type IDividerRecord, type IEdge, type IEventsColorControl, type IEventsPickerControl, type IExportColumnOrder, type IFillSettings, type IFilterControl, type IFormattingControl, type IFormattingTemplateControl, type IFormulaControl, type IFormulaFilterValue, type IGeneralCalculator, type IGeneralCalculatorExportInput, type IGeneralCalculatorInput, type IGeneralCalculatorOutput, type IGlobalContext, type IGradient, type IGraphElement, type IGroupSetDescription, type IGroupSetRecord, type IGroupSettings, type IHintTooltipProps, type IHistogramBin, type IHistogramCalculator, type IHistogramCalculatorInput, type IHistogramCalculatorOutput, type IHistoricalSchemaDefinition, type IIndicatorLink, type IInitialSettings, type IInputControl, type IInputMarkdownControl, type IInputNumberControl, type IInputRangeControl, type IInputTemplatedControl, type ILens, type ILifecycleRuntime, type ILifecycleRuntimeFactory, type IMarkdownMeasure, type IMeasureAddButtonProps, type IMigrateContext, type IPanelDescription, type IPanelDescriptionCreator, type IParameterFromAggregation, type IParameterFromColumn, type IParameterFromDynamicList, type IParameterFromEndEvent, type IParameterFromEvent, type IParameterFromFormula, type IParameterFromManualInput, type IParameterFromStartEvent, type IParameterFromStaticList, type IParameterFromVariable, type IPieCalculator, type IPieCalculatorInput, type IPieCalculatorOutput, type IProcessEventFilterValue, type IProcessEventIndicator, type IProcessFilterPreviewParams, type IProcessGraphCalculator, type IProcessGraphCalculatorInput, type IProcessGraphCalculatorOutput, type IProcessIndicator, type IProcessTransitionFilterValue, type IProcessTransitionIndicator, type IRadioIconGroupControl, type IRange, type ISchemaContext, type ISchemaFactory, type ISelectBranchOption, type ISelectControl, type ISelectDividerOption, type ISelectGroupOption, type ISelectLeafOption, type ISelectNode, type ISelectOption, type ISelectSystemOption, type ISizeControl, type ISortOrder, type ISortingAddButtonProps, type ISortingControl, type IStagesFilterValue, type IStaticListLabeledOption, type ISwitchControl, type ITagSetControl, type ITheme, type ITwoLimitsCalculator, type ITwoLimitsCalculatorExportInput, type ITwoLimitsCalculatorInput, type ITwoLimitsCalculatorOutput, type ITypeCalculator, type ITypeCalculatorInput, type ITypeCalculatorOutput, type ITypeCalculatorOutputItem, type ITypedFormulaControl, type IVersionedEnumBuildParams, type IVertex, type IViewAction, type IViewContext, type IWidget, type IWidgetAction, type IWidgetColumnIndicator, type IWidgetColumnListVariable, type IWidgetDimension, type IWidgetDimensionHierarchy, type IWidgetDimensionInHierarchy, type IWidgetDynamicListVariable, type IWidgetEntity, type IWidgetFilter, type IWidgetFiltration, type IWidgetFormatting, type IWidgetIndicator, type IWidgetIndicatorAddButtonProps, type IWidgetManifest, type IWidgetMeasure, type IWidgetMigrator, type IWidgetPersistValue, type IWidgetPlaceholderController, type IWidgetPlaceholderValues, type IWidgetProcess, type IWidgetProps, type IWidgetSortingIndicator, type IWidgetStaticListVariable, type IWidgetStaticVariable, type IWidgetStruct, type IWidgetTable, type IWidgetTableColumn, KeyNullableSchema, MarkdownMeasureSchema, MeasureValueSchema, NameNullableSchema, OuterAggregation, ParameterFromAggregationSchema, ParameterFromColumnSchema, ParameterFromDataModelSchema, ParameterFromDynamicListSchema, ParameterFromEndEventSchema, ParameterFromEventSchema, ParameterFromFormulaSchema, ParameterFromManualInputSchema, ParameterFromStartEventSchema, ParameterFromStaticListSchema, ParameterFromVariableSchema, ProcessIndicatorSchema, ProcessIndicatorValueSchema, RangeSchema, SchemaRegistryReader, SettingsFilterSchema, SortDirectionSchema, SortOrderSchema, SortingValueSchema, type TAction, type TActionButtonsTypes, type TActionOnClickParameter, type TActionOpenView, type TActionTypes, type TActionValidator, type TActionsConfig, type TActionsOnClick, type TActivateConditionMode, type TAddButton, type TAddButtonProps, type TApiVersion, type TAutoUpdateMode, type TBoundedContentWithIndicator, type TCalculatorFilterMethods, type TClickHouseBaseTypes, type TColor, type TColorBase, type TColorMode, type TColorRule, type TColumnIndicatorValue, type TConditionalDimensionInHierarchy, type TContextMenu, type TContextMenuButton, type TContextMenuButtonActions, type TContextMenuButtonApply, type TContextMenuButtonClose, type TContextMenuButtonCustom, type TContextMenuButtonGroup, type TContextMenuButtonOptions, type TContextMenuList, type TContextMenuPositionUnit, type TContextMenuRow, type TControlType, type TControlUnion, type TControlsSpecMap, type TCustomAddButtonSelectOption, type TCustomControlFactories, type TCustomSelectTemplates, type TDataModelOption, type TDefineWidgetOptions, type TDimensionAggregationTemplateName, type TDimensionProcessFilterTimeUnit, type TDimensionTemplateNames, type TDisplayCondition, type TDisplayConditionMode, type TDisplayMode, type TDrawerPlacement, type TDurationTemplateName, type TDurationUnit, type TEmptyRecord, type TEventAppearances, type TEventMeasureTemplateNames, type TExtendedFormulaFilterValue, type TFiltrationAccessibility, type TFontWeight, type TFormatOrFormattingMode, type TFormulaFilterFieldKeys, type TGradientsSetValue, type TGroupLevelRecord, type THSLTuple, type THeightMode, type THintPlacement, type TIgnoreFilterMode, type TIndicatorType, type TLastTimeUnit, type TLaunchActionParams, type TLimitedColor, type TMarkdownDisplayMode, type TMeasureAddButtonSelectOption, type TMeasureAggregationTemplateName, type TMeasureInnerTemplateNames, type TMeasureTemplateNames, type TMigrateProcessor, type TMigrationStruct, type TOuterAggregation, type TOuterAggregationIf, type TParameterFromDataModel, type TProcessFilterNames, type TProcessIndicatorValue, type TRGBTuple, type TRecordAccessor, type TSchemaType, type TSchemaTypeForVersion, type TSelectChildOptions, type TSelectFetchNodes, type TSelectOptionTypes, type TSelectivePartial, type TSettingsFilter, type TSettingsOf, type TSettingsSchemaMetaKey, type TSimpleDataType, type TSimpleInputType, type TSortDirection, type TSortDirectionEnum, type TSortingMode, type TSortingValue, type TSortingValueModes, type TSystemRecordKey, type TTabsHorizontalAlignment, type TTransitionMeasureTemplateNames, type TUnitMode, type TUpdateSelection, type TValuePath, type TVersion, type TVersionedEnum, type TVersionedEnumValues, type TViewActionParameter, type TViewMode, type TViewOpenIn, type TWidgetActionInputMethod, type TWidgetActionParameter, type TWidgetContainer, type TWidgetDimensionData, type TWidgetDimensionUnion, type TWidgetFilterMode, type TWidgetFilterValue, type TWidgetFiltering, type TWidgetIgnoreFilterMode, type TWidgetIndicatorAggregationValue, type TWidgetIndicatorConversionValue, type TWidgetIndicatorDurationValue, type TWidgetIndicatorTimeValue, type TWidgetIndicatorType, type TWidgetIndicatorValueModes, type TWidgetLevelRecord, type TWidgetMeasureData, type TWidgetMigrateStruct, type TWidgetSortingValue, type TWidgetVariable, type TWidgetsPaletteValue, type TZod, VersionedEnum, VersionedSchemaFactory, ViewActionParameterSchema, ViewActionSchema, WidgetActionParameterSchema, WidgetActionSchema, WidgetColumnIndicatorSchema, WidgetDimensionHierarchySchema, WidgetDimensionInHierarchySchema, WidgetDimensionSchema, WidgetFilterModeSchema, WidgetIgnoreFilterModeSchema, WidgetIndicatorAggregationValueSchema, WidgetIndicatorConversionValueSchema, WidgetIndicatorDurationValueSchema, WidgetIndicatorFormulaValueSchema, WidgetIndicatorSchema, WidgetIndicatorTemplateValueSchema, WidgetIndicatorTimeValueSchema, WidgetMeasureAggregationValueSchema, WidgetMeasureSchema, WidgetPresetSettingsSchema, WidgetSortingIndicatorSchema, WidgetSortingValueSchema, apiVersion, apiVersions, applyIndexToArrayFormula, availableFormatsBySimpleType, bindContentWithIndicator, bindContentsWithIndicators, checkDisplayCondition, clearMultiLineComments, clearSingleLineComments, colors, conversionTemplate, convertFiltersToFormula, convertToFormulasChain, countExecutionsTemplate, createEscaper, createAggregationTemplate as createMeasureAggregationTemplate, curlyBracketsContentPattern, dashboardLinkRegExp, defaultActionsConfig, dimensionAggregationTemplates, dimensionTemplateFormulas, displayConditionTemplate, doubleQuoteContentPattern, durationTemplates, escapeCurlyBracketLinkName, escapeDoubleQuoteLinkName, eventMeasureTemplateFormulas, extendWithMeta, fillTemplateSql, formulaFilterMethods, generateColumnFormula, getColorByIndex, getDefaultSortOrders, getDimensionFormula, getDisplayConditionFormula, getEventMeasureFormula, getMeasureFormula, getParentMeta, getProcessDimensionValueFormula, getRuleColor, getTransitionMeasureFormula, hasInMetaChain, hexToRgb, inheritDisplayConditionFromHierarchy, interpolateHexColor, isDimensionProcessFilter, isDimensionsHierarchy, isFormulaFilterValue, isValidColor, mapDimensionsToInputs, mapEventMeasuresToInputs, mapFormulaFilterToCalculatorInput, mapFormulaFiltersToInputs, mapMeasuresToInputs, mapSettingsFiltersToInputs, mapSortingToInputs, mapTransitionMeasuresToInputs, measureInnerTemplateFormulas, measureTemplateFormulas, omitWithMeta, parseClickHouseType, parseIndicatorLink, prepareConversionParams, prepareDimensionAggregationParams, prepareDurationParams, prepareFormulaForSql, prepareMeasureAggregationParams, prepareSortOrders, prepareTimeParams, prepareValuesForSql, replaceDisplayCondition, replaceFiltersBySelection, replaceHierarchiesWithDimensions, selectDimensionFromHierarchy, themed, timeTemplates, transitionMeasureTemplateFormulas, unescapeSpecialCharacters, updateDefaultModeSelection, updateSingleModeSelection, versionedEnumValues, workspaceLinkRegExp, zodEnumLike };
29134
+ export { ActionButtonSchema, ActionDrillDownSchema, ActionGoToURLSchema, ActionOnClickParameterSchema, ActionOpenInSchema, ActionOpenViewSchema, ActionRunScriptSchema, ActionSchema, ActionUpdateVariableSchema, ActionsOnClickSchema, AutoIdentifiedArrayItemSchema, BaseWidgetSettingsSchema, ColorAutoSchema, ColorBaseSchema, ColorByDimensionSchema, ColorDisabledSchema, ColorFormulaSchema, ColorGradientSchema, ColorRangesSchema, ColorRuleSchema, ColorSchema, ColorValuesSchema, ColoredValueSchema, ColumnIndicatorValueSchema, DimensionProcessFilterSchema, DimensionValueSchema, DisplayConditionSchema, EActionButtonsTypes, EActionTypes, EActivateConditionMode, EAutoUpdateMode, ECalculatorFilterMethods, EClickHouseBaseTypes, EColorMode, EControlType, ECustomSelectTemplates, EDataModelOption, EDimensionAggregationTemplateName, EDimensionProcessFilterTimeUnit, EDimensionTemplateNames, EDisplayConditionMode, EDrawerPlacement, EDurationTemplateName, EDurationUnit, EEventAppearances, EEventMeasureTemplateNames, EExpectedFieldTypes, EFontWeight, EFormatOrFormattingMode, EFormulaFilterFieldKeys, EHeightMode, EIgnoreFilterMode, EIndicatorType, ELastTimeUnit, EMarkdownDisplayMode, EMeasureAggregationTemplateName, EMeasureInnerTemplateNames, EMeasureTemplateNames, EOuterAggregation, EProcessFilterNames, ESelectOptionTypes, ESettingsSchemaMetaKey, ESimpleDataType, ESimpleInputType, ESortDirection, ESortingMode, ESortingValueModes, ESystemRecordKey, ETransitionMeasureTemplateNames, EUnitMode, EViewMode, EViewOpenIn, EWidgetActionInputMethod, EWidgetFilterMode, EWidgetIgnoreFilterMode, EWidgetIndicatorType, EWidgetIndicatorValueModes, ExtendedFormulaFilterValueSchema, FormatSchema, FormattingSchema, FormulaFilterValueSchema, FormulaNullableSchema, FormulaSchema, type IActionButton, type IActionDrillDown, type IActionGoToUrl, type IActionOnClickControl, type IActionRunScript, type IActionScript, type IActionUpdateVariable, type IAddButtonSelectOption, type IAddDurationOfTransitionFilter, type IAddPresenceOfEventFilter, type IAddPresenceOfTransitionFilter, type IAddRepetitionOfEventFilter, type IAutoIdentifiedArrayItem, type IBaseDimensionsAndMeasuresCalculator, type IBaseDimensionsAndMeasuresCalculatorInput, type IBaseDimensionsAndMeasuresCalculatorOutput, type IBaseWidgetSettings, type ICalculator, type ICalculatorDimensionInput, type ICalculatorDimensionOutput, type ICalculatorFactory, type ICalculatorFilter, type ICalculatorIndicatorInput, type ICalculatorIndicatorOutput, type ICalculatorMeasureInput, type ICalculatorMeasureOutput, type ICalculatorOptions, type ICollapseRecord, type IColorPickerControl, type IColoredValue, type ICommonDimensions, type ICommonMeasures, type ICommonState, type IControlProps, type IControlRecord, type ICustomAddButtonProps, type ICustomWidgetProps, type IDefinition, type IDimensionAddButtonProps, type IDimensionProcessFilter, type IDimensionSelection, type IDimensionSelectionByFormula, type IDisplayConditionControl, type IDisplayPredicate, type IDisplayRule, type IDivePanelDescription, type IDividerRecord, type IEdge, type IEventsColorControl, type IEventsPickerControl, type IExportColumnOrder, type IFillSettings, type IFilterControl, type IFormattingControl, type IFormattingTemplateControl, type IFormulaControl, type IFormulaFilterValue, type IGeneralCalculator, type IGeneralCalculatorExportInput, type IGeneralCalculatorInput, type IGeneralCalculatorOutput, type IGlobalContext, type IGradient, type IGraphElement, type IGroupSetDescription, type IGroupSetRecord, type IGroupSettings, type IHintTooltipProps, type IHistogramBin, type IHistogramCalculator, type IHistogramCalculatorInput, type IHistogramCalculatorOutput, type IHistoricalSchemaDefinition, type IIndicatorLink, type IInitialSettings, type IInputControl, type IInputMarkdownControl, type IInputNumberControl, type IInputRangeControl, type IInputTemplatedControl, type ILens, type ILifecycleRuntime, type ILifecycleRuntimeFactory, type IMarkdownMeasure, type IMeasureAddButtonProps, type IMigrateContext, type IPanelDescription, type IPanelDescriptionCreator, type IParameterFromAggregation, type IParameterFromColumn, type IParameterFromDynamicList, type IParameterFromEditableTextValue, type IParameterFromEndEvent, type IParameterFromEvent, type IParameterFromFormula, type IParameterFromManualInput, type IParameterFromStartEvent, type IParameterFromStaticList, type IParameterFromVariable, type IPieCalculator, type IPieCalculatorInput, type IPieCalculatorOutput, type IProcessEventFilterValue, type IProcessEventIndicator, type IProcessFilterPreviewParams, type IProcessGraphCalculator, type IProcessGraphCalculatorInput, type IProcessGraphCalculatorOutput, type IProcessIndicator, type IProcessTransitionFilterValue, type IProcessTransitionIndicator, type IRadioIconGroupControl, type IRange, type ISchemaContext, type ISchemaFactory, type ISelectBranchOption, type ISelectControl, type ISelectDividerOption, type ISelectGroupOption, type ISelectLeafOption, type ISelectNode, type ISelectOption, type ISelectSystemOption, type ISizeControl, type ISortOrder, type ISortingAddButtonProps, type ISortingControl, type IStagesFilterValue, type IStaticListLabeledOption, type ISwitchControl, type ITagSetControl, type ITheme, type ITwoLimitsCalculator, type ITwoLimitsCalculatorExportInput, type ITwoLimitsCalculatorInput, type ITwoLimitsCalculatorOutput, type ITypeCalculator, type ITypeCalculatorInput, type ITypeCalculatorOutput, type ITypeCalculatorOutputItem, type ITypedFormulaControl, type IVersionedEnumBuildParams, type IVertex, type IViewAction, type IViewContext, type IWidget, type IWidgetAction, type IWidgetColumnIndicator, type IWidgetColumnListVariable, type IWidgetDimension, type IWidgetDimensionHierarchy, type IWidgetDimensionInHierarchy, type IWidgetDynamicListVariable, type IWidgetEntity, type IWidgetFilter, type IWidgetFiltration, type IWidgetFormatting, type IWidgetIndicator, type IWidgetIndicatorAddButtonProps, type IWidgetManifest, type IWidgetMeasure, type IWidgetMigrator, type IWidgetPersistValue, type IWidgetPlaceholderController, type IWidgetPlaceholderValues, type IWidgetProcess, type IWidgetProps, type IWidgetSortingIndicator, type IWidgetStaticListVariable, type IWidgetStaticVariable, type IWidgetStruct, type IWidgetTable, type IWidgetTableColumn, KeyNullableSchema, MarkdownMeasureSchema, MeasureValueSchema, NameNullableSchema, OuterAggregation, ParameterFromAggregationSchema, ParameterFromColumnSchema, ParameterFromDataModelSchema, ParameterFromDynamicListSchema, ParameterFromEditableTextValueSchema, ParameterFromEndEventSchema, ParameterFromEventSchema, ParameterFromFormulaSchema, ParameterFromManualInputSchema, ParameterFromStartEventSchema, ParameterFromStaticListSchema, ParameterFromVariableSchema, ProcessIndicatorSchema, ProcessIndicatorValueSchema, RangeSchema, SchemaRegistryReader, SettingsFilterSchema, SortDirectionSchema, SortOrderSchema, SortingValueSchema, type TAction, type TActionButtonsTypes, type TActionOnClickParameter, type TActionOpenView, type TActionTypes, type TActionValidator, type TActionsConfig, type TActionsOnClick, type TActivateConditionMode, type TAddButton, type TAddButtonProps, type TApiVersion, type TAutoUpdateMode, type TBoundedContentWithIndicator, type TCalculatorFilterMethods, type TClickHouseBaseTypes, type TColor, type TColorBase, type TColorMode, type TColorRule, type TColumnIndicatorValue, type TConditionalDimensionInHierarchy, type TContextMenu, type TContextMenuButton, type TContextMenuButtonActions, type TContextMenuButtonApply, type TContextMenuButtonClose, type TContextMenuButtonCustom, type TContextMenuButtonGroup, type TContextMenuButtonOptions, type TContextMenuList, type TContextMenuPositionUnit, type TContextMenuRow, type TControlType, type TControlUnion, type TControlsSpecMap, type TCustomAddButtonSelectOption, type TCustomControlFactories, type TCustomSelectTemplates, type TDataModelOption, type TDefineWidgetOptions, type TDimensionAggregationTemplateName, type TDimensionProcessFilterTimeUnit, type TDimensionTemplateNames, type TDisplayCondition, type TDisplayConditionMode, type TDisplayMode, type TDrawerPlacement, type TDurationTemplateName, type TDurationUnit, type TEmptyRecord, type TEventAppearances, type TEventMeasureTemplateNames, type TExtendedFormulaFilterValue, type TFiltrationAccessibility, type TFontWeight, type TFormatOrFormattingMode, type TFormulaFilterFieldKeys, type TGradientsSetValue, type TGroupLevelRecord, type THSLTuple, type THeightMode, type THintPlacement, type TIgnoreFilterMode, type TIndicatorType, type TLastTimeUnit, type TLaunchActionParams, type TLimitedColor, type TMarkdownDisplayMode, type TMeasureAddButtonSelectOption, type TMeasureAggregationTemplateName, type TMeasureInnerTemplateNames, type TMeasureTemplateNames, type TMigrateProcessor, type TMigrationStruct, type TOuterAggregation, type TOuterAggregationIf, type TParameterFromDataModel, type TProcessFilterNames, type TProcessIndicatorValue, type TRGBTuple, type TRecordAccessor, type TSchemaType, type TSchemaTypeForVersion, type TSelectChildOptions, type TSelectFetchNodes, type TSelectOptionTypes, type TSelectivePartial, type TSettingsFilter, type TSettingsOf, type TSettingsSchemaMetaKey, type TSimpleDataType, type TSimpleInputType, type TSortDirection, type TSortDirectionEnum, type TSortingMode, type TSortingValue, type TSortingValueModes, type TSystemRecordKey, type TTabsHorizontalAlignment, type TTransitionMeasureTemplateNames, type TUnitMode, type TUpdateSelection, type TValuePath, type TVersion, type TVersionedEnum, type TVersionedEnumValues, type TViewActionParameter, type TViewMode, type TViewOpenIn, type TWidgetActionInputMethod, type TWidgetActionParameter, type TWidgetContainer, type TWidgetDimensionData, type TWidgetDimensionUnion, type TWidgetFilterMode, type TWidgetFilterValue, type TWidgetFiltering, type TWidgetIgnoreFilterMode, type TWidgetIndicatorAggregationValue, type TWidgetIndicatorConversionValue, type TWidgetIndicatorDurationValue, type TWidgetIndicatorTimeValue, type TWidgetIndicatorType, type TWidgetIndicatorValueModes, type TWidgetLevelRecord, type TWidgetMeasureData, type TWidgetMigrateStruct, type TWidgetSortingValue, type TWidgetVariable, type TWidgetsPaletteValue, type TZod, VersionedEnum, VersionedSchemaFactory, ViewActionParameterSchema, ViewActionSchema, WidgetActionParameterSchema, WidgetActionSchema, WidgetColumnIndicatorSchema, WidgetDimensionHierarchySchema, WidgetDimensionInHierarchySchema, WidgetDimensionSchema, WidgetFilterModeSchema, WidgetIgnoreFilterModeSchema, WidgetIndicatorAggregationValueSchema, WidgetIndicatorConversionValueSchema, WidgetIndicatorDurationValueSchema, WidgetIndicatorFormulaValueSchema, WidgetIndicatorSchema, WidgetIndicatorTemplateValueSchema, WidgetIndicatorTimeValueSchema, WidgetMeasureAggregationValueSchema, WidgetMeasureSchema, WidgetPresetSettingsSchema, WidgetSortingIndicatorSchema, WidgetSortingValueSchema, apiVersion, apiVersions, applyIndexToArrayFormula, availableFormatsBySimpleType, bindContentWithIndicator, bindContentsWithIndicators, checkDisplayCondition, clearMultiLineComments, clearSingleLineComments, colors, conversionTemplate, convertFiltersToFormula, convertToFormulasChain, countExecutionsTemplate, createEscaper, createAggregationTemplate as createMeasureAggregationTemplate, curlyBracketsContentPattern, dashboardLinkRegExp, defaultActionsConfig, dimensionAggregationTemplates, dimensionTemplateFormulas, displayConditionTemplate, doubleQuoteContentPattern, durationTemplates, escapeCurlyBracketLinkName, escapeDoubleQuoteLinkName, eventMeasureTemplateFormulas, extendWithMeta, fillTemplateSql, formulaFilterMethods, generateColumnFormula, getColorByIndex, getDefaultSortOrders, getDimensionFormula, getDisplayConditionFormula, getEventMeasureFormula, getMeasureFormula, getParentMeta, getProcessDimensionValueFormula, getRuleColor, getTransitionMeasureFormula, hasInMetaChain, hexToRgb, inheritDisplayConditionFromHierarchy, interpolateHexColor, isDimensionProcessFilter, isDimensionsHierarchy, isFormulaFilterValue, isValidColor, mapDimensionsToInputs, mapEventMeasuresToInputs, mapFormulaFilterToCalculatorInput, mapFormulaFiltersToInputs, mapMeasuresToInputs, mapSettingsFiltersToInputs, mapSortingToInputs, mapTransitionMeasuresToInputs, measureInnerTemplateFormulas, measureTemplateFormulas, omitWithMeta, parseClickHouseType, parseIndicatorLink, prepareConversionParams, prepareDimensionAggregationParams, prepareDurationParams, prepareFormulaForSql, prepareMeasureAggregationParams, prepareSortOrders, prepareTimeParams, prepareValuesForSql, replaceDisplayCondition, replaceFiltersBySelection, replaceHierarchiesWithDimensions, selectDimensionFromHierarchy, themed, timeTemplates, transitionMeasureTemplateFormulas, unescapeSpecialCharacters, updateDefaultModeSelection, updateSingleModeSelection, versionedEnumValues, workspaceLinkRegExp, zodEnumLike };