@saltcorn/data 1.6.0-beta.7 → 1.6.0-beta.8

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.
Files changed (40) hide show
  1. package/dist/base-plugin/actions.d.ts +189 -62
  2. package/dist/base-plugin/actions.d.ts.map +1 -1
  3. package/dist/base-plugin/actions.js +151 -58
  4. package/dist/base-plugin/actions.js.map +1 -1
  5. package/dist/base-plugin/index.d.ts +189 -62
  6. package/dist/base-plugin/index.d.ts.map +1 -1
  7. package/dist/base-plugin/viewtemplates/list.d.ts.map +1 -1
  8. package/dist/base-plugin/viewtemplates/list.js +1 -0
  9. package/dist/base-plugin/viewtemplates/list.js.map +1 -1
  10. package/dist/db/state.d.ts.map +1 -1
  11. package/dist/db/state.js +9 -0
  12. package/dist/db/state.js.map +1 -1
  13. package/dist/models/expression.d.ts.map +1 -1
  14. package/dist/models/expression.js +6 -6
  15. package/dist/models/expression.js.map +1 -1
  16. package/dist/models/field.d.ts.map +1 -1
  17. package/dist/models/field.js +5 -2
  18. package/dist/models/field.js.map +1 -1
  19. package/dist/models/plugin.d.ts.map +1 -1
  20. package/dist/models/plugin.js +4 -1
  21. package/dist/models/plugin.js.map +1 -1
  22. package/dist/models/table.d.ts.map +1 -1
  23. package/dist/models/table.js +2 -1
  24. package/dist/models/table.js.map +1 -1
  25. package/dist/models/trigger.d.ts +1 -0
  26. package/dist/models/trigger.d.ts.map +1 -1
  27. package/dist/models/trigger.js +9 -0
  28. package/dist/models/trigger.js.map +1 -1
  29. package/dist/models/workflow_run.d.ts.map +1 -1
  30. package/dist/models/workflow_run.js +2 -1
  31. package/dist/models/workflow_run.js.map +1 -1
  32. package/dist/models/workflow_step.d.ts +1 -1
  33. package/dist/models/workflow_step.d.ts.map +1 -1
  34. package/dist/models/workflow_step.js +2 -1
  35. package/dist/models/workflow_step.js.map +1 -1
  36. package/dist/utils.d.ts +2 -0
  37. package/dist/utils.d.ts.map +1 -1
  38. package/dist/utils.js +12 -0
  39. package/dist/utils.js.map +1 -1
  40. package/package.json +8 -8
@@ -1849,34 +1849,79 @@ declare const _default: {
1849
1849
  };
1850
1850
  emit_event: {
1851
1851
  description: string;
1852
- configFields: () => ({
1852
+ configFields: ({ table }: {
1853
+ table: import("../models").Table;
1854
+ }) => Promise<({
1853
1855
  name: string;
1854
1856
  label: string;
1855
1857
  required: boolean;
1856
1858
  input_type: string;
1857
1859
  options: string[];
1858
1860
  type?: undefined;
1859
- fieldview?: undefined;
1861
+ showIf?: undefined;
1862
+ help?: undefined;
1863
+ attributes?: undefined;
1860
1864
  sublabel?: undefined;
1861
1865
  } | {
1862
1866
  name: string;
1863
1867
  label: string;
1864
1868
  type: string;
1865
- fieldview: string;
1869
+ showIf: {
1870
+ eventType: string[];
1871
+ };
1872
+ help: {
1873
+ topic: string;
1874
+ };
1866
1875
  required?: undefined;
1867
1876
  input_type?: undefined;
1868
1877
  options?: undefined;
1878
+ attributes?: undefined;
1869
1879
  sublabel?: undefined;
1870
1880
  } | {
1871
1881
  name: string;
1872
1882
  label: string;
1873
- sublabel: string;
1874
1883
  type: string;
1875
- fieldview: string;
1876
- required?: undefined;
1884
+ showIf: {
1885
+ eventType: string[];
1886
+ };
1887
+ required: boolean;
1888
+ attributes: {
1889
+ options: string[];
1890
+ mode?: undefined;
1891
+ compact?: undefined;
1892
+ expression_type?: undefined;
1893
+ table?: undefined;
1894
+ nojoins?: undefined;
1895
+ user?: undefined;
1896
+ };
1897
+ help: {
1898
+ topic: string;
1899
+ };
1877
1900
  input_type?: undefined;
1878
1901
  options?: undefined;
1879
- })[];
1902
+ sublabel?: undefined;
1903
+ } | {
1904
+ name: string;
1905
+ label: string;
1906
+ sublabel: string;
1907
+ input_type: string;
1908
+ attributes: {
1909
+ mode: string;
1910
+ compact: boolean;
1911
+ expression_type: string;
1912
+ table: string;
1913
+ nojoins: boolean;
1914
+ user: boolean;
1915
+ options?: undefined;
1916
+ };
1917
+ help: {
1918
+ topic: string;
1919
+ };
1920
+ required?: undefined;
1921
+ options?: undefined;
1922
+ type?: undefined;
1923
+ showIf?: undefined;
1924
+ })[]>;
1880
1925
  run: ({ row, configuration: { eventType, channel, payload }, user, }: {
1881
1926
  row: import("@saltcorn/db-common/dbtypes").Row;
1882
1927
  configuration: {
@@ -1996,8 +2041,8 @@ declare const _default: {
1996
2041
  sublabel: string;
1997
2042
  required?: undefined;
1998
2043
  attributes?: undefined;
1999
- fieldview?: undefined;
2000
2044
  showIf?: undefined;
2045
+ input_type?: undefined;
2001
2046
  } | {
2002
2047
  name: string;
2003
2048
  label: string;
@@ -2005,32 +2050,52 @@ declare const _default: {
2005
2050
  required: boolean;
2006
2051
  attributes: {
2007
2052
  options: string[];
2053
+ mode?: undefined;
2054
+ compact?: undefined;
2055
+ expression_type?: undefined;
2056
+ table?: undefined;
2057
+ nojoins?: undefined;
2058
+ user?: undefined;
2008
2059
  };
2009
2060
  sublabel?: undefined;
2010
- fieldview?: undefined;
2011
2061
  showIf?: undefined;
2062
+ input_type?: undefined;
2012
2063
  } | {
2013
2064
  name: string;
2014
2065
  label: string;
2015
- sublabel: string;
2016
- type: string;
2017
- fieldview: string;
2018
2066
  showIf: {
2019
2067
  method: string[];
2020
2068
  };
2069
+ sublabel: string;
2070
+ input_type: string;
2071
+ attributes: {
2072
+ mode: string;
2073
+ compact: boolean;
2074
+ expression_type: string;
2075
+ table: string;
2076
+ nojoins: boolean;
2077
+ user: boolean;
2078
+ options?: undefined;
2079
+ };
2080
+ type?: undefined;
2021
2081
  required?: undefined;
2022
- attributes?: undefined;
2023
2082
  } | {
2024
2083
  name: string;
2025
2084
  label: string;
2026
2085
  type: string;
2027
2086
  attributes: {
2028
2087
  options: string[];
2088
+ mode?: undefined;
2089
+ compact?: undefined;
2090
+ expression_type?: undefined;
2091
+ table?: undefined;
2092
+ nojoins?: undefined;
2093
+ user?: undefined;
2029
2094
  };
2030
2095
  sublabel?: undefined;
2031
2096
  required?: undefined;
2032
- fieldview?: undefined;
2033
2097
  showIf?: undefined;
2098
+ input_type?: undefined;
2034
2099
  })[]>;
2035
2100
  run: ({ row, user, table, configuration: { url, body, authorization, response_field, response_var, method, }, }: {
2036
2101
  row?: import("@saltcorn/db-common/dbtypes").Row;
@@ -2353,6 +2418,7 @@ declare const _default: {
2353
2418
  sublabel: string;
2354
2419
  input_type: string;
2355
2420
  attributes: {
2421
+ table?: any;
2356
2422
  mode: string;
2357
2423
  singleline: boolean;
2358
2424
  expression_type: string;
@@ -2377,28 +2443,29 @@ declare const _default: {
2377
2443
  };
2378
2444
  insert_any_row: {
2379
2445
  description: string;
2380
- configFields: ({ mode }: any) => Promise<({
2446
+ configFields: ({ mode, table }: any) => Promise<({
2381
2447
  name: string;
2382
2448
  label: string;
2383
2449
  sublabel: string;
2384
2450
  input_type: string;
2385
2451
  options: string[];
2386
- type?: undefined;
2387
- fieldview?: undefined;
2388
- class?: undefined;
2389
2452
  attributes?: undefined;
2453
+ type?: undefined;
2390
2454
  } | {
2391
2455
  name: string;
2392
2456
  label: string;
2393
2457
  sublabel: string;
2394
- type: string;
2395
- fieldview: string;
2396
- class: string;
2458
+ input_type: string;
2397
2459
  attributes: {
2398
- spellcheck: boolean;
2460
+ mode: string;
2461
+ compact: boolean;
2462
+ expression_type: string;
2463
+ table: any;
2464
+ nojoins: boolean;
2465
+ user: boolean;
2399
2466
  };
2400
- input_type?: undefined;
2401
2467
  options?: undefined;
2468
+ type?: undefined;
2402
2469
  } | {
2403
2470
  name: string;
2404
2471
  label: string;
@@ -2406,8 +2473,6 @@ declare const _default: {
2406
2473
  type: string;
2407
2474
  input_type?: undefined;
2408
2475
  options?: undefined;
2409
- fieldview?: undefined;
2410
- class?: undefined;
2411
2476
  attributes?: undefined;
2412
2477
  })[]>;
2413
2478
  run: ({ row, table, configuration, user, referrer, ...rest }: {
@@ -2426,9 +2491,10 @@ declare const _default: {
2426
2491
  };
2427
2492
  modify_row: {
2428
2493
  description: string;
2429
- configFields: ({ mode, when_trigger, }: {
2494
+ configFields: ({ mode, when_trigger, table, }: {
2430
2495
  mode: string;
2431
2496
  when_trigger: string;
2497
+ table: import("../models").Table;
2432
2498
  }) => Promise<({
2433
2499
  name: string;
2434
2500
  label: string;
@@ -2438,6 +2504,9 @@ declare const _default: {
2438
2504
  mode: string;
2439
2505
  compact: boolean;
2440
2506
  expression_type: string;
2507
+ table: string;
2508
+ nojoins: boolean;
2509
+ user: boolean;
2441
2510
  options?: undefined;
2442
2511
  showIf?: undefined;
2443
2512
  singleline?: undefined;
@@ -2455,6 +2524,9 @@ declare const _default: {
2455
2524
  mode?: undefined;
2456
2525
  compact?: undefined;
2457
2526
  expression_type?: undefined;
2527
+ table?: undefined;
2528
+ nojoins?: undefined;
2529
+ user?: undefined;
2458
2530
  showIf?: undefined;
2459
2531
  singleline?: undefined;
2460
2532
  };
@@ -2474,6 +2546,9 @@ declare const _default: {
2474
2546
  mode?: undefined;
2475
2547
  compact?: undefined;
2476
2548
  expression_type?: undefined;
2549
+ table?: undefined;
2550
+ nojoins?: undefined;
2551
+ user?: undefined;
2477
2552
  singleline?: undefined;
2478
2553
  };
2479
2554
  sublabel?: undefined;
@@ -2488,6 +2563,9 @@ declare const _default: {
2488
2563
  singleline: boolean;
2489
2564
  expression_type: string;
2490
2565
  compact?: undefined;
2566
+ table?: undefined;
2567
+ nojoins?: undefined;
2568
+ user?: undefined;
2491
2569
  options?: undefined;
2492
2570
  showIf?: undefined;
2493
2571
  };
@@ -2517,7 +2595,7 @@ declare const _default: {
2517
2595
  };
2518
2596
  delete_rows: {
2519
2597
  description: string;
2520
- configFields: ({ mode, when_trigger }: any) => Promise<({
2598
+ configFields: ({ mode, table, when_trigger }: any) => Promise<({
2521
2599
  name: string;
2522
2600
  label: string;
2523
2601
  type: string;
@@ -2525,8 +2603,8 @@ declare const _default: {
2525
2603
  input_type?: undefined;
2526
2604
  showIf?: undefined;
2527
2605
  options?: undefined;
2606
+ attributes?: undefined;
2528
2607
  required?: undefined;
2529
- class?: undefined;
2530
2608
  } | {
2531
2609
  name: string;
2532
2610
  label: string;
@@ -2537,19 +2615,24 @@ declare const _default: {
2537
2615
  } | undefined;
2538
2616
  options: string[];
2539
2617
  type?: undefined;
2618
+ attributes?: undefined;
2540
2619
  required?: undefined;
2541
- class?: undefined;
2542
2620
  } | {
2543
2621
  name: string;
2544
2622
  label: string;
2545
- type: string;
2623
+ input_type: string;
2624
+ attributes: {
2625
+ table?: any;
2626
+ mode: string;
2627
+ singleline: boolean;
2628
+ expression_type: string;
2629
+ };
2546
2630
  sublabel: string;
2547
2631
  required: boolean;
2548
- class: string;
2549
2632
  showIf: {
2550
2633
  delete_triggering_row: boolean;
2551
2634
  } | undefined;
2552
- input_type?: undefined;
2635
+ type?: undefined;
2553
2636
  options?: undefined;
2554
2637
  })[]>;
2555
2638
  run: ({ row, table, configuration: { delete_triggering_row, delete_where, table_name }, user, ...rest }: {
@@ -2567,7 +2650,9 @@ declare const _default: {
2567
2650
  };
2568
2651
  navigate: {
2569
2652
  description: string;
2570
- configFields: () => Promise<({
2653
+ configFields: ({ table }: {
2654
+ table: import("../models").Table;
2655
+ }) => Promise<({
2571
2656
  name: string;
2572
2657
  label: string;
2573
2658
  type: string;
@@ -2576,9 +2661,10 @@ declare const _default: {
2576
2661
  options: string[];
2577
2662
  };
2578
2663
  showIf?: undefined;
2664
+ sublabel?: undefined;
2579
2665
  input_type?: undefined;
2580
2666
  options?: undefined;
2581
- class?: undefined;
2667
+ help?: undefined;
2582
2668
  } | {
2583
2669
  name: string;
2584
2670
  label: string;
@@ -2587,10 +2673,11 @@ declare const _default: {
2587
2673
  showIf: {
2588
2674
  nav_action: string[];
2589
2675
  };
2676
+ sublabel: string;
2590
2677
  attributes?: undefined;
2591
2678
  input_type?: undefined;
2592
2679
  options?: undefined;
2593
- class?: undefined;
2680
+ help?: undefined;
2594
2681
  } | {
2595
2682
  name: string;
2596
2683
  label: string;
@@ -2602,18 +2689,34 @@ declare const _default: {
2602
2689
  type?: undefined;
2603
2690
  required?: undefined;
2604
2691
  attributes?: undefined;
2605
- class?: undefined;
2692
+ sublabel?: undefined;
2693
+ help?: undefined;
2606
2694
  } | {
2607
2695
  name: string;
2608
2696
  label: string;
2609
- type: string;
2610
- class: string;
2697
+ input_type: string;
2698
+ attributes: {
2699
+ table?: string | undefined;
2700
+ mode: string;
2701
+ singleline: boolean;
2702
+ expression_type: string;
2703
+ options?: undefined;
2704
+ };
2611
2705
  showIf: {
2612
2706
  nav_action: string[];
2613
2707
  };
2708
+ sublabel: string;
2709
+ help: {
2710
+ topic: string;
2711
+ context: {
2712
+ srcTable: string;
2713
+ } | {
2714
+ srcTable?: undefined;
2715
+ };
2716
+ dynContext: string[];
2717
+ };
2718
+ type?: undefined;
2614
2719
  required?: undefined;
2615
- attributes?: undefined;
2616
- input_type?: undefined;
2617
2720
  options?: undefined;
2618
2721
  } | {
2619
2722
  name: string;
@@ -2624,9 +2727,10 @@ declare const _default: {
2624
2727
  };
2625
2728
  required?: undefined;
2626
2729
  attributes?: undefined;
2730
+ sublabel?: undefined;
2627
2731
  input_type?: undefined;
2628
2732
  options?: undefined;
2629
- class?: undefined;
2733
+ help?: undefined;
2630
2734
  })[]>;
2631
2735
  run: ({ row, user, configuration: { nav_action, url, state_formula, new_tab, view, page, in_popup, }, req, }: {
2632
2736
  row?: import("@saltcorn/db-common/dbtypes").Row;
@@ -2711,11 +2815,19 @@ declare const _default: {
2711
2815
  configFields: {
2712
2816
  name: string;
2713
2817
  label: string;
2714
- type: string;
2818
+ input_type: string;
2715
2819
  required: boolean;
2716
2820
  attributes: {
2717
- options: string[];
2821
+ explainers: {
2822
+ RequestSubmit: string;
2823
+ Submit: string;
2824
+ Save: string;
2825
+ Reset: string;
2826
+ "Submit with Ajax": string;
2827
+ "Ajax Save Form Data": string;
2828
+ };
2718
2829
  };
2830
+ options: string[];
2719
2831
  }[];
2720
2832
  run: ({ row, table, user, req, configuration: { form_action }, ...rest }: {
2721
2833
  row?: import("@saltcorn/db-common/dbtypes").Row;
@@ -2783,13 +2895,13 @@ declare const _default: {
2783
2895
  label: string;
2784
2896
  type: string;
2785
2897
  required: boolean;
2898
+ sublabel: string;
2786
2899
  attributes?: undefined;
2787
- sublabel?: undefined;
2788
2900
  } | {
2789
2901
  name: string;
2790
2902
  label: string;
2791
- sublabel: string;
2792
2903
  type: string;
2904
+ sublabel: string;
2793
2905
  required?: undefined;
2794
2906
  attributes?: undefined;
2795
2907
  } | {
@@ -3095,7 +3207,9 @@ declare const _default: {
3095
3207
  };
3096
3208
  reload_embedded_view: {
3097
3209
  description: string;
3098
- configFields: () => Promise<({
3210
+ configFields: ({ table }: {
3211
+ table: import("../models").Table;
3212
+ }) => Promise<({
3099
3213
  name: string;
3100
3214
  label: string;
3101
3215
  class: string;
@@ -3104,15 +3218,33 @@ declare const _default: {
3104
3218
  attributes: {
3105
3219
  options: any[];
3106
3220
  };
3221
+ input_type?: undefined;
3107
3222
  sublabel?: undefined;
3223
+ help?: undefined;
3108
3224
  } | {
3109
3225
  name: string;
3110
3226
  label: string;
3111
- type: string;
3112
- class: string;
3227
+ input_type: string;
3228
+ attributes: {
3229
+ table?: string | undefined;
3230
+ mode: string;
3231
+ singleline: boolean;
3232
+ expression_type: string;
3233
+ options?: undefined;
3234
+ };
3235
+ sublabel: string;
3236
+ help: {
3237
+ topic: string;
3238
+ context: {
3239
+ srcTable: string;
3240
+ } | {
3241
+ srcTable?: undefined;
3242
+ };
3243
+ dynContext: string[];
3244
+ };
3245
+ class?: undefined;
3246
+ type?: undefined;
3113
3247
  required?: undefined;
3114
- attributes?: undefined;
3115
- sublabel?: undefined;
3116
3248
  } | {
3117
3249
  name: string;
3118
3250
  label: string;
@@ -3121,6 +3253,8 @@ declare const _default: {
3121
3253
  class?: undefined;
3122
3254
  required?: undefined;
3123
3255
  attributes?: undefined;
3256
+ input_type?: undefined;
3257
+ help?: undefined;
3124
3258
  })[]>;
3125
3259
  run: ({ row, user, configuration: { view, new_state_fml, interval }, }: {
3126
3260
  row?: import("@saltcorn/db-common/dbtypes").Row;
@@ -3186,18 +3320,7 @@ declare const _default: {
3186
3320
  close: boolean;
3187
3321
  blocking?: undefined;
3188
3322
  };
3189
- sublabel?: undefined;
3190
- class?: undefined;
3191
- required?: undefined;
3192
- } | {
3193
- name: string;
3194
- label: string;
3195
- type: string;
3196
3323
  sublabel: string;
3197
- showIf: {
3198
- close: boolean;
3199
- blocking?: undefined;
3200
- };
3201
3324
  class?: undefined;
3202
3325
  required?: undefined;
3203
3326
  })[];
@@ -3267,16 +3390,20 @@ declare const _default: {
3267
3390
  };
3268
3391
  notify_user: {
3269
3392
  description: string;
3270
- configFields: () => ({
3393
+ configFields: ({ table }: {
3394
+ table: import("../models").Table;
3395
+ }) => ({
3271
3396
  name: string;
3272
3397
  label: string;
3273
3398
  type: string;
3399
+ sublabel: string;
3274
3400
  required?: undefined;
3275
3401
  } | {
3276
3402
  name: string;
3277
3403
  label: string;
3278
3404
  required: boolean;
3279
3405
  type: string;
3406
+ sublabel: string;
3280
3407
  })[];
3281
3408
  run: ({ row, user, configuration: { title, body, link, user_spec }, }: {
3282
3409
  row?: import("@saltcorn/db-common/dbtypes").Row;
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../base-plugin/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../base-plugin/index.ts"],"names":[],"mappings":"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"}
@@ -1 +1 @@
1
- {"version":3,"file":"list.d.ts","sourceRoot":"","sources":["../../../base-plugin/viewtemplates/list.ts"],"names":[],"mappings":"AASA,OAAO,QAAQ,MAAM,uBAAuB,CAAC;AAK7C,OAAO,EAAE,MAAM,EAAE,MAAM,8BAA8B,CAAC;AAEtD,OAAO,EAAkB,GAAG,EAAE,GAAG,EAAE,MAAM,4BAA4B,CAAC;AA2CtE,OAAO,EAAmB,GAAG,EAAE,MAAM,6BAA6B,CAAC;;;;kCAqE9B,GAAG;oBA83B5B,MAAM,GAAG,MAAM,YACf,MAAM,8KAYb,MAAM,eACI,MAAM,aACR;QAAE,GAAG,EAAE,GAAG,CAAC;QAAC,GAAG,EAAE,GAAG,CAAC;QAAC,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAA;KAAE,iBACtC,MAAM;;iCAtGX,MAAM,GAAG,MAAM,YACf,MAAM,eACH,MAAM;kDAoCsC,MAAM;;;;;;;0BA/1BrD,MAAM,GAAG,MAAM,YACf,MAAM,qBACG,MAAM;;+BA44Cf,MAAM,GAAG,MAAM,YACf,MAAM,sCACoB,MAAM,QACpC,MAAM,gBACE;YAAE,GAAG,EAAE,GAAG,CAAC;YAAC,GAAG,EAAE,GAAG,CAAA;SAAE,mBACnB,MAAM;;4CAuPiB,MAAM;8DAyCY,MAAM;8FAlO/D,MAAM;0GA4PJ,MAAM;yBACgB,MAAM,aAAa,MAAM;;;;wBA0I1B,GAAG;;wBAmBD,MAAM;sCAGQ,MAAM;;AA/OhD,kBAsPE"}
1
+ {"version":3,"file":"list.d.ts","sourceRoot":"","sources":["../../../base-plugin/viewtemplates/list.ts"],"names":[],"mappings":"AASA,OAAO,QAAQ,MAAM,uBAAuB,CAAC;AAK7C,OAAO,EAAE,MAAM,EAAE,MAAM,8BAA8B,CAAC;AAEtD,OAAO,EAAkB,GAAG,EAAE,GAAG,EAAE,MAAM,4BAA4B,CAAC;AA2CtE,OAAO,EAAmB,GAAG,EAAE,MAAM,6BAA6B,CAAC;;;;kCAqE9B,GAAG;oBA+3B5B,MAAM,GAAG,MAAM,YACf,MAAM,8KAYb,MAAM,eACI,MAAM,aACR;QAAE,GAAG,EAAE,GAAG,CAAC;QAAC,GAAG,EAAE,GAAG,CAAC;QAAC,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAA;KAAE,iBACtC,MAAM;;iCAtGX,MAAM,GAAG,MAAM,YACf,MAAM,eACH,MAAM;kDAoCsC,MAAM;;;;;;;0BAh2BrD,MAAM,GAAG,MAAM,YACf,MAAM,qBACG,MAAM;;+BA64Cf,MAAM,GAAG,MAAM,YACf,MAAM,sCACoB,MAAM,QACpC,MAAM,gBACE;YAAE,GAAG,EAAE,GAAG,CAAC;YAAC,GAAG,EAAE,GAAG,CAAA;SAAE,mBACnB,MAAM;;4CAuPiB,MAAM;8DAyCY,MAAM;8FAlO/D,MAAM;0GA4PJ,MAAM;yBACgB,MAAM,aAAa,MAAM;;;;wBA0I1B,GAAG;;wBAmBD,MAAM;sCAGQ,MAAM;;AA/OhD,kBAsPE"}
@@ -518,6 +518,7 @@ const configuration_workflow = (req) => new workflow_1.default({
518
518
  user: true,
519
519
  expression_type: "value",
520
520
  },
521
+ help: { topic: "Group by formula" },
521
522
  sublabel: "Formula for the group headings",
522
523
  class: "validate-expression",
523
524
  });