@saltcorn/data 0.9.0-beta.1 → 0.9.0-beta.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/base-plugin/fieldviews.d.ts +9 -0
- package/dist/base-plugin/fieldviews.d.ts.map +1 -1
- package/dist/base-plugin/fieldviews.js +10 -0
- package/dist/base-plugin/fieldviews.js.map +1 -1
- package/dist/base-plugin/fileviews.d.ts +8 -0
- package/dist/base-plugin/fileviews.js +8 -0
- package/dist/base-plugin/fileviews.js.map +1 -1
- package/dist/base-plugin/index.d.ts +376 -322
- package/dist/base-plugin/index.d.ts.map +1 -1
- package/dist/base-plugin/types.d.ts +252 -162
- package/dist/base-plugin/types.d.ts.map +1 -1
- package/dist/base-plugin/types.js +73 -4
- package/dist/base-plugin/types.js.map +1 -1
- package/dist/base-plugin/viewtemplates/feed.d.ts +1 -1
- package/dist/base-plugin/viewtemplates/feed.d.ts.map +1 -1
- package/dist/base-plugin/viewtemplates/feed.js +24 -4
- package/dist/base-plugin/viewtemplates/feed.js.map +1 -1
- package/dist/base-plugin/viewtemplates/show.d.ts +2 -1
- package/dist/base-plugin/viewtemplates/show.d.ts.map +1 -1
- package/dist/base-plugin/viewtemplates/show.js +9 -1
- package/dist/base-plugin/viewtemplates/show.js.map +1 -1
- package/dist/base-plugin/viewtemplates/viewable_fields.d.ts +2 -2
- package/dist/base-plugin/viewtemplates/viewable_fields.d.ts.map +1 -1
- package/dist/base-plugin/viewtemplates/viewable_fields.js +12 -10
- package/dist/base-plugin/viewtemplates/viewable_fields.js.map +1 -1
- package/dist/db/state.d.ts +4 -1
- package/dist/db/state.d.ts.map +1 -1
- package/dist/db/state.js +6 -0
- package/dist/db/state.js.map +1 -1
- package/dist/diagram/node_extract_utils.d.ts.map +1 -1
- package/dist/diagram/node_extract_utils.js +3 -1
- package/dist/diagram/node_extract_utils.js.map +1 -1
- package/dist/models/table.js +1 -1
- package/dist/models/table.js.map +1 -1
- package/dist/models/workflow.js +1 -1
- package/dist/models/workflow.js.map +1 -1
- package/dist/plugin-helper.d.ts.map +1 -1
- package/dist/plugin-helper.js +40 -0
- package/dist/plugin-helper.js.map +1 -1
- package/dist/tests/exact_views.test.js +1 -1
- package/dist/tests/exact_views.test.js.map +1 -1
- package/package.json +7 -7
|
@@ -9,49 +9,77 @@ export namespace string {
|
|
|
9
9
|
namespace fieldviews {
|
|
10
10
|
namespace as_text {
|
|
11
11
|
const isEdit: boolean;
|
|
12
|
+
const description: string;
|
|
12
13
|
function run(s: any): string;
|
|
13
14
|
}
|
|
14
15
|
namespace preFormatted {
|
|
15
16
|
const isEdit_1: boolean;
|
|
16
17
|
export { isEdit_1 as isEdit };
|
|
18
|
+
const description_1: string;
|
|
19
|
+
export { description_1 as description };
|
|
17
20
|
export function run_1(s: any): any;
|
|
18
21
|
export { run_1 as run };
|
|
19
22
|
}
|
|
20
23
|
namespace code {
|
|
21
24
|
const isEdit_2: boolean;
|
|
22
25
|
export { isEdit_2 as isEdit };
|
|
26
|
+
const description_2: string;
|
|
27
|
+
export { description_2 as description };
|
|
23
28
|
export function run_2(s: any): any;
|
|
24
29
|
export { run_2 as run };
|
|
25
30
|
}
|
|
26
|
-
namespace
|
|
31
|
+
namespace ellipsize {
|
|
32
|
+
const isEdit_3: boolean;
|
|
33
|
+
export { isEdit_3 as isEdit };
|
|
27
34
|
export const configFields: {
|
|
28
35
|
name: string;
|
|
29
36
|
label: string;
|
|
30
37
|
type: string;
|
|
31
|
-
|
|
38
|
+
default: number;
|
|
32
39
|
}[];
|
|
33
|
-
const
|
|
34
|
-
export {
|
|
35
|
-
export function run_3(s: any, req: any, attrs?: {}):
|
|
40
|
+
const description_3: string;
|
|
41
|
+
export { description_3 as description };
|
|
42
|
+
export function run_3(s: any, req: any, attrs?: {}): string;
|
|
36
43
|
export { run_3 as run };
|
|
37
44
|
}
|
|
38
|
-
namespace
|
|
45
|
+
namespace as_link {
|
|
46
|
+
const configFields_1: {
|
|
47
|
+
name: string;
|
|
48
|
+
label: string;
|
|
49
|
+
type: string;
|
|
50
|
+
sublabel: string;
|
|
51
|
+
}[];
|
|
52
|
+
export { configFields_1 as configFields };
|
|
53
|
+
const description_4: string;
|
|
54
|
+
export { description_4 as description };
|
|
39
55
|
const isEdit_4: boolean;
|
|
40
56
|
export { isEdit_4 as isEdit };
|
|
41
|
-
export function run_4(s: any, req: any, attrs
|
|
57
|
+
export function run_4(s: any, req: any, attrs?: {}): any;
|
|
42
58
|
export { run_4 as run };
|
|
43
59
|
}
|
|
44
|
-
namespace
|
|
60
|
+
namespace img_from_url {
|
|
45
61
|
const isEdit_5: boolean;
|
|
46
62
|
export { isEdit_5 as isEdit };
|
|
47
|
-
|
|
63
|
+
const description_5: string;
|
|
64
|
+
export { description_5 as description };
|
|
65
|
+
export function run_5(s: any, req: any, attrs: any): any;
|
|
48
66
|
export { run_5 as run };
|
|
49
67
|
}
|
|
50
|
-
namespace
|
|
68
|
+
namespace as_header {
|
|
51
69
|
const isEdit_6: boolean;
|
|
52
70
|
export { isEdit_6 as isEdit };
|
|
71
|
+
const description_6: string;
|
|
72
|
+
export { description_6 as description };
|
|
73
|
+
export function run_6(s: any): any;
|
|
74
|
+
export { run_6 as run };
|
|
75
|
+
}
|
|
76
|
+
namespace edit {
|
|
77
|
+
const isEdit_7: boolean;
|
|
78
|
+
export { isEdit_7 as isEdit };
|
|
53
79
|
export const blockDisplay: boolean;
|
|
54
|
-
|
|
80
|
+
const description_7: string;
|
|
81
|
+
export { description_7 as description };
|
|
82
|
+
export function configFields_2(field: any): ({
|
|
55
83
|
name: string;
|
|
56
84
|
label: string;
|
|
57
85
|
type: string;
|
|
@@ -73,16 +101,18 @@ export namespace string {
|
|
|
73
101
|
type?: undefined;
|
|
74
102
|
sublabel?: undefined;
|
|
75
103
|
})[];
|
|
76
|
-
export {
|
|
77
|
-
export function
|
|
78
|
-
export {
|
|
104
|
+
export { configFields_2 as configFields };
|
|
105
|
+
export function run_7(nm: any, v: any, attrs: any, cls: any, required: any, field: any): any;
|
|
106
|
+
export { run_7 as run };
|
|
79
107
|
}
|
|
80
108
|
namespace fill_formula_btn {
|
|
81
|
-
const
|
|
82
|
-
export {
|
|
109
|
+
const isEdit_8: boolean;
|
|
110
|
+
export { isEdit_8 as isEdit };
|
|
83
111
|
const blockDisplay_1: boolean;
|
|
84
112
|
export { blockDisplay_1 as blockDisplay };
|
|
85
|
-
const
|
|
113
|
+
const description_8: string;
|
|
114
|
+
export { description_8 as description };
|
|
115
|
+
const configFields_3: ({
|
|
86
116
|
name: string;
|
|
87
117
|
label: string;
|
|
88
118
|
type: string;
|
|
@@ -121,16 +151,18 @@ export namespace string {
|
|
|
121
151
|
type?: undefined;
|
|
122
152
|
default?: undefined;
|
|
123
153
|
})[];
|
|
124
|
-
export {
|
|
125
|
-
export function
|
|
126
|
-
export {
|
|
154
|
+
export { configFields_3 as configFields };
|
|
155
|
+
export function run_8(nm: any, v: any, attrs: any, cls: any, required: any, field: any): any;
|
|
156
|
+
export { run_8 as run };
|
|
127
157
|
}
|
|
128
158
|
namespace make_unique {
|
|
129
|
-
const
|
|
130
|
-
export {
|
|
159
|
+
const isEdit_9: boolean;
|
|
160
|
+
export { isEdit_9 as isEdit };
|
|
131
161
|
const blockDisplay_2: boolean;
|
|
132
162
|
export { blockDisplay_2 as blockDisplay };
|
|
133
|
-
const
|
|
163
|
+
const description_9: string;
|
|
164
|
+
export { description_9 as description };
|
|
165
|
+
const configFields_4: ({
|
|
134
166
|
name: string;
|
|
135
167
|
label: string;
|
|
136
168
|
type: string;
|
|
@@ -152,51 +184,59 @@ export namespace string {
|
|
|
152
184
|
input_type?: undefined;
|
|
153
185
|
options?: undefined;
|
|
154
186
|
})[];
|
|
155
|
-
export {
|
|
156
|
-
export function run_8(nm: any, v: any, attrs: any, cls: any, required: any, field: any): any;
|
|
157
|
-
export { run_8 as run };
|
|
158
|
-
}
|
|
159
|
-
namespace textarea {
|
|
160
|
-
const isEdit_9: boolean;
|
|
161
|
-
export { isEdit_9 as isEdit };
|
|
162
|
-
const blockDisplay_3: boolean;
|
|
163
|
-
export { blockDisplay_3 as blockDisplay };
|
|
187
|
+
export { configFields_4 as configFields };
|
|
164
188
|
export function run_9(nm: any, v: any, attrs: any, cls: any, required: any, field: any): any;
|
|
165
189
|
export { run_9 as run };
|
|
166
190
|
}
|
|
167
|
-
namespace
|
|
191
|
+
namespace textarea {
|
|
168
192
|
const isEdit_10: boolean;
|
|
169
193
|
export { isEdit_10 as isEdit };
|
|
170
|
-
const
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
}[];
|
|
175
|
-
export { configFields_4 as configFields };
|
|
194
|
+
const blockDisplay_3: boolean;
|
|
195
|
+
export { blockDisplay_3 as blockDisplay };
|
|
196
|
+
const description_10: string;
|
|
197
|
+
export { description_10 as description };
|
|
176
198
|
export function run_10(nm: any, v: any, attrs: any, cls: any, required: any, field: any): any;
|
|
177
199
|
export { run_10 as run };
|
|
178
200
|
}
|
|
179
|
-
namespace
|
|
201
|
+
namespace radio_group {
|
|
180
202
|
const isEdit_11: boolean;
|
|
181
203
|
export { isEdit_11 as isEdit };
|
|
182
|
-
export const isFilter: boolean;
|
|
183
204
|
const configFields_5: {
|
|
184
205
|
type: string;
|
|
185
206
|
name: string;
|
|
186
207
|
label: string;
|
|
187
208
|
}[];
|
|
188
209
|
export { configFields_5 as configFields };
|
|
210
|
+
const description_11: string;
|
|
211
|
+
export { description_11 as description };
|
|
189
212
|
export function run_11(nm: any, v: any, attrs: any, cls: any, required: any, field: any): any;
|
|
190
213
|
export { run_11 as run };
|
|
191
214
|
}
|
|
192
|
-
namespace
|
|
215
|
+
namespace checkbox_group {
|
|
193
216
|
const isEdit_12: boolean;
|
|
194
217
|
export { isEdit_12 as isEdit };
|
|
195
|
-
const
|
|
196
|
-
|
|
218
|
+
export const isFilter: boolean;
|
|
219
|
+
const description_12: string;
|
|
220
|
+
export { description_12 as description };
|
|
221
|
+
const configFields_6: {
|
|
222
|
+
type: string;
|
|
223
|
+
name: string;
|
|
224
|
+
label: string;
|
|
225
|
+
}[];
|
|
226
|
+
export { configFields_6 as configFields };
|
|
197
227
|
export function run_12(nm: any, v: any, attrs: any, cls: any, required: any, field: any): any;
|
|
198
228
|
export { run_12 as run };
|
|
199
229
|
}
|
|
230
|
+
namespace password {
|
|
231
|
+
const isEdit_13: boolean;
|
|
232
|
+
export { isEdit_13 as isEdit };
|
|
233
|
+
const blockDisplay_4: boolean;
|
|
234
|
+
export { blockDisplay_4 as blockDisplay };
|
|
235
|
+
const description_13: string;
|
|
236
|
+
export { description_13 as description };
|
|
237
|
+
export function run_13(nm: any, v: any, attrs: any, cls: any, required: any, field: any): any;
|
|
238
|
+
export { run_13 as run };
|
|
239
|
+
}
|
|
200
240
|
}
|
|
201
241
|
function read(v: any): string | undefined;
|
|
202
242
|
namespace presets {
|
|
@@ -227,58 +267,66 @@ export namespace int {
|
|
|
227
267
|
}
|
|
228
268
|
export namespace fieldviews_1 {
|
|
229
269
|
export namespace show {
|
|
230
|
-
const isEdit_13: boolean;
|
|
231
|
-
export { isEdit_13 as isEdit };
|
|
232
|
-
export function run_13(s: any): string;
|
|
233
|
-
export { run_13 as run };
|
|
234
|
-
}
|
|
235
|
-
export namespace edit_1 {
|
|
236
270
|
const isEdit_14: boolean;
|
|
237
271
|
export { isEdit_14 as isEdit };
|
|
272
|
+
const description_14: string;
|
|
273
|
+
export { description_14 as description };
|
|
274
|
+
export function run_14(s: any): string;
|
|
275
|
+
export { run_14 as run };
|
|
276
|
+
}
|
|
277
|
+
export namespace edit_1 {
|
|
278
|
+
const isEdit_15: boolean;
|
|
279
|
+
export { isEdit_15 as isEdit };
|
|
238
280
|
const blockDisplay_5: boolean;
|
|
239
281
|
export { blockDisplay_5 as blockDisplay };
|
|
240
|
-
const
|
|
282
|
+
const description_15: string;
|
|
283
|
+
export { description_15 as description };
|
|
284
|
+
const configFields_7: {
|
|
241
285
|
name: string;
|
|
242
286
|
label: string;
|
|
243
287
|
type: string;
|
|
244
288
|
}[];
|
|
245
|
-
export {
|
|
246
|
-
export function
|
|
247
|
-
export {
|
|
289
|
+
export { configFields_7 as configFields };
|
|
290
|
+
export function run_15(nm: any, v: any, attrs: any, cls: any, required: any, field: any): any;
|
|
291
|
+
export { run_15 as run };
|
|
248
292
|
}
|
|
249
293
|
export { edit_1 as edit };
|
|
250
294
|
export namespace number_slider {
|
|
251
|
-
export function
|
|
295
|
+
export function configFields_8(field: any): {
|
|
252
296
|
name: string;
|
|
253
297
|
type: any;
|
|
254
298
|
required: boolean;
|
|
255
299
|
}[];
|
|
256
|
-
export {
|
|
257
|
-
const
|
|
258
|
-
export {
|
|
300
|
+
export { configFields_8 as configFields };
|
|
301
|
+
const isEdit_16: boolean;
|
|
302
|
+
export { isEdit_16 as isEdit };
|
|
303
|
+
const description_16: string;
|
|
304
|
+
export { description_16 as description };
|
|
259
305
|
const blockDisplay_6: boolean;
|
|
260
306
|
export { blockDisplay_6 as blockDisplay };
|
|
261
|
-
export function
|
|
262
|
-
export {
|
|
307
|
+
export function run_16(nm: any, v: any, attrs: {} | undefined, cls: any, required: any, field: any): any;
|
|
308
|
+
export { run_16 as run };
|
|
263
309
|
}
|
|
264
310
|
export namespace range_interval {
|
|
265
|
-
export function
|
|
311
|
+
export function configFields_9(field: any): {
|
|
266
312
|
name: string;
|
|
267
313
|
type: any;
|
|
268
314
|
required: boolean;
|
|
269
315
|
}[];
|
|
270
|
-
export {
|
|
271
|
-
const
|
|
272
|
-
export {
|
|
316
|
+
export { configFields_9 as configFields };
|
|
317
|
+
const isEdit_17: boolean;
|
|
318
|
+
export { isEdit_17 as isEdit };
|
|
273
319
|
const isFilter_1: boolean;
|
|
274
320
|
export { isFilter_1 as isFilter };
|
|
275
321
|
const blockDisplay_7: boolean;
|
|
276
322
|
export { blockDisplay_7 as blockDisplay };
|
|
277
|
-
|
|
278
|
-
export {
|
|
323
|
+
const description_17: string;
|
|
324
|
+
export { description_17 as description };
|
|
325
|
+
export function run_17(nm: any, v: any, attrs: {} | undefined, cls: any, required: any, field: any, state?: {}): any;
|
|
326
|
+
export { run_17 as run };
|
|
279
327
|
}
|
|
280
328
|
export namespace progress_bar {
|
|
281
|
-
export function
|
|
329
|
+
export function configFields_10(field: any): ({
|
|
282
330
|
name: string;
|
|
283
331
|
type: any;
|
|
284
332
|
required: boolean;
|
|
@@ -289,14 +337,16 @@ export namespace int {
|
|
|
289
337
|
label: string;
|
|
290
338
|
required?: undefined;
|
|
291
339
|
})[];
|
|
292
|
-
export {
|
|
293
|
-
const
|
|
294
|
-
export {
|
|
295
|
-
|
|
296
|
-
export {
|
|
340
|
+
export { configFields_10 as configFields };
|
|
341
|
+
const isEdit_18: boolean;
|
|
342
|
+
export { isEdit_18 as isEdit };
|
|
343
|
+
const description_18: string;
|
|
344
|
+
export { description_18 as description };
|
|
345
|
+
export function run_18(v: any, req: any, attrs?: {}): any;
|
|
346
|
+
export { run_18 as run };
|
|
297
347
|
}
|
|
298
348
|
export namespace heat_cell {
|
|
299
|
-
export function
|
|
349
|
+
export function configFields_11(field: any): ({
|
|
300
350
|
name: string;
|
|
301
351
|
type: any;
|
|
302
352
|
required: boolean;
|
|
@@ -327,58 +377,64 @@ export namespace int {
|
|
|
327
377
|
required?: undefined;
|
|
328
378
|
attributes?: undefined;
|
|
329
379
|
})[];
|
|
330
|
-
export {
|
|
331
|
-
const isEdit_18: boolean;
|
|
332
|
-
export { isEdit_18 as isEdit };
|
|
333
|
-
export function run_18(v: any, req: any, attrs?: {}): any;
|
|
334
|
-
export { run_18 as run };
|
|
335
|
-
}
|
|
336
|
-
export namespace above_input {
|
|
380
|
+
export { configFields_11 as configFields };
|
|
337
381
|
const isEdit_19: boolean;
|
|
338
382
|
export { isEdit_19 as isEdit };
|
|
383
|
+
const description_19: string;
|
|
384
|
+
export { description_19 as description };
|
|
385
|
+
export function run_19(v: any, req: any, attrs?: {}): any;
|
|
386
|
+
export { run_19 as run };
|
|
387
|
+
}
|
|
388
|
+
export namespace above_input {
|
|
389
|
+
const isEdit_20: boolean;
|
|
390
|
+
export { isEdit_20 as isEdit };
|
|
339
391
|
const isFilter_2: boolean;
|
|
340
392
|
export { isFilter_2 as isFilter };
|
|
341
393
|
const blockDisplay_8: boolean;
|
|
342
394
|
export { blockDisplay_8 as blockDisplay };
|
|
343
|
-
const
|
|
395
|
+
const configFields_12: {
|
|
344
396
|
name: string;
|
|
345
397
|
label: string;
|
|
346
398
|
type: string;
|
|
347
399
|
}[];
|
|
348
|
-
export {
|
|
349
|
-
export function
|
|
350
|
-
export {
|
|
400
|
+
export { configFields_12 as configFields };
|
|
401
|
+
export function run_20(nm: any, v: any, attrs: {} | undefined, cls: any, required: any, field: any, state?: {}): any;
|
|
402
|
+
export { run_20 as run };
|
|
351
403
|
}
|
|
352
404
|
export namespace below_input { }
|
|
353
405
|
export namespace show_star_rating {
|
|
354
|
-
|
|
406
|
+
const description_20: string;
|
|
407
|
+
export { description_20 as description };
|
|
408
|
+
export function configFields_13(field: any): {
|
|
355
409
|
name: string;
|
|
356
410
|
type: string;
|
|
357
411
|
required: boolean;
|
|
358
412
|
default: number;
|
|
359
413
|
}[];
|
|
360
|
-
export {
|
|
361
|
-
const
|
|
362
|
-
export {
|
|
414
|
+
export { configFields_13 as configFields };
|
|
415
|
+
const isEdit_21: boolean;
|
|
416
|
+
export { isEdit_21 as isEdit };
|
|
363
417
|
const blockDisplay_9: boolean;
|
|
364
418
|
export { blockDisplay_9 as blockDisplay };
|
|
365
|
-
export function
|
|
366
|
-
export {
|
|
419
|
+
export function run_21(v: any, req: any, attrs?: {}): any;
|
|
420
|
+
export { run_21 as run };
|
|
367
421
|
}
|
|
368
422
|
export namespace edit_star_rating {
|
|
369
|
-
|
|
423
|
+
const description_21: string;
|
|
424
|
+
export { description_21 as description };
|
|
425
|
+
export function configFields_14(field: any): {
|
|
370
426
|
name: string;
|
|
371
427
|
type: string;
|
|
372
428
|
required: boolean;
|
|
373
429
|
default: number;
|
|
374
430
|
}[];
|
|
375
|
-
export {
|
|
376
|
-
const
|
|
377
|
-
export {
|
|
431
|
+
export { configFields_14 as configFields };
|
|
432
|
+
const isEdit_22: boolean;
|
|
433
|
+
export { isEdit_22 as isEdit };
|
|
378
434
|
const blockDisplay_10: boolean;
|
|
379
435
|
export { blockDisplay_10 as blockDisplay };
|
|
380
|
-
export function
|
|
381
|
-
export {
|
|
436
|
+
export function run_22(nm: any, v: any, attrs: {} | undefined, cls: any, required: any, field: any, state?: {}): any;
|
|
437
|
+
export { run_22 as run };
|
|
382
438
|
}
|
|
383
439
|
}
|
|
384
440
|
export { fieldviews_1 as fieldviews };
|
|
@@ -402,28 +458,36 @@ export namespace bool {
|
|
|
402
458
|
export { contract_2 as contract };
|
|
403
459
|
export namespace fieldviews_2 {
|
|
404
460
|
export namespace show_1 {
|
|
405
|
-
const isEdit_22: boolean;
|
|
406
|
-
export { isEdit_22 as isEdit };
|
|
407
|
-
export function run_22(v: any): any;
|
|
408
|
-
export { run_22 as run };
|
|
409
|
-
}
|
|
410
|
-
export { show_1 as show };
|
|
411
|
-
export namespace checkboxes {
|
|
412
461
|
const isEdit_23: boolean;
|
|
413
462
|
export { isEdit_23 as isEdit };
|
|
463
|
+
const description_22: string;
|
|
464
|
+
export { description_22 as description };
|
|
414
465
|
export function run_23(v: any): any;
|
|
415
466
|
export { run_23 as run };
|
|
416
467
|
}
|
|
417
|
-
export
|
|
468
|
+
export { show_1 as show };
|
|
469
|
+
export namespace checkboxes {
|
|
418
470
|
const isEdit_24: boolean;
|
|
419
471
|
export { isEdit_24 as isEdit };
|
|
420
|
-
|
|
472
|
+
const description_23: string;
|
|
473
|
+
export { description_23 as description };
|
|
474
|
+
export function run_24(v: any): any;
|
|
421
475
|
export { run_24 as run };
|
|
422
476
|
}
|
|
423
|
-
export namespace
|
|
477
|
+
export namespace TrueFalse {
|
|
424
478
|
const isEdit_25: boolean;
|
|
425
479
|
export { isEdit_25 as isEdit };
|
|
426
|
-
const
|
|
480
|
+
const description_24: string;
|
|
481
|
+
export { description_24 as description };
|
|
482
|
+
export function run_25(v: any): "" | "True" | "False";
|
|
483
|
+
export { run_25 as run };
|
|
484
|
+
}
|
|
485
|
+
export namespace edit_2 {
|
|
486
|
+
const isEdit_26: boolean;
|
|
487
|
+
export { isEdit_26 as isEdit };
|
|
488
|
+
const description_25: string;
|
|
489
|
+
export { description_25 as description };
|
|
490
|
+
const configFields_15: {
|
|
427
491
|
name: string;
|
|
428
492
|
label: string;
|
|
429
493
|
type: string;
|
|
@@ -431,24 +495,28 @@ export namespace bool {
|
|
|
431
495
|
options: string[];
|
|
432
496
|
};
|
|
433
497
|
}[];
|
|
434
|
-
export {
|
|
435
|
-
export function run_25(nm: any, v: any, attrs: any, cls: any, required: any, field: any): any;
|
|
436
|
-
export { run_25 as run };
|
|
437
|
-
}
|
|
438
|
-
export { edit_2 as edit };
|
|
439
|
-
export namespace _switch {
|
|
440
|
-
const isEdit_26: boolean;
|
|
441
|
-
export { isEdit_26 as isEdit };
|
|
498
|
+
export { configFields_15 as configFields };
|
|
442
499
|
export function run_26(nm: any, v: any, attrs: any, cls: any, required: any, field: any): any;
|
|
443
500
|
export { run_26 as run };
|
|
444
501
|
}
|
|
445
|
-
export {
|
|
446
|
-
export namespace
|
|
502
|
+
export { edit_2 as edit };
|
|
503
|
+
export namespace _switch {
|
|
447
504
|
const isEdit_27: boolean;
|
|
448
505
|
export { isEdit_27 as isEdit };
|
|
506
|
+
const description_26: string;
|
|
507
|
+
export { description_26 as description };
|
|
449
508
|
export function run_27(nm: any, v: any, attrs: any, cls: any, required: any, field: any): any;
|
|
450
509
|
export { run_27 as run };
|
|
451
510
|
}
|
|
511
|
+
export { _switch as switch };
|
|
512
|
+
export namespace tristate {
|
|
513
|
+
const isEdit_28: boolean;
|
|
514
|
+
export { isEdit_28 as isEdit };
|
|
515
|
+
const description_27: string;
|
|
516
|
+
export { description_27 as description };
|
|
517
|
+
export function run_28(nm: any, v: any, attrs: any, cls: any, required: any, field: any): any;
|
|
518
|
+
export { run_28 as run };
|
|
519
|
+
}
|
|
452
520
|
}
|
|
453
521
|
export { fieldviews_2 as fieldviews };
|
|
454
522
|
const attributes_2: object[];
|
|
@@ -474,59 +542,73 @@ export namespace date {
|
|
|
474
542
|
export { attributes_3 as attributes };
|
|
475
543
|
export namespace fieldviews_3 {
|
|
476
544
|
export namespace show_2 {
|
|
477
|
-
const isEdit_28: boolean;
|
|
478
|
-
export { isEdit_28 as isEdit };
|
|
479
|
-
export function run_28(d: any, req: any): any;
|
|
480
|
-
export { run_28 as run };
|
|
481
|
-
}
|
|
482
|
-
export { show_2 as show };
|
|
483
|
-
export namespace showDay {
|
|
484
545
|
const isEdit_29: boolean;
|
|
485
546
|
export { isEdit_29 as isEdit };
|
|
547
|
+
const description_28: string;
|
|
548
|
+
export { description_28 as description };
|
|
486
549
|
export function run_29(d: any, req: any): any;
|
|
487
550
|
export { run_29 as run };
|
|
488
551
|
}
|
|
489
|
-
export
|
|
552
|
+
export { show_2 as show };
|
|
553
|
+
export namespace showDay {
|
|
490
554
|
const isEdit_30: boolean;
|
|
491
555
|
export { isEdit_30 as isEdit };
|
|
492
|
-
const
|
|
556
|
+
const description_29: string;
|
|
557
|
+
export { description_29 as description };
|
|
558
|
+
export function run_30(d: any, req: any): any;
|
|
559
|
+
export { run_30 as run };
|
|
560
|
+
}
|
|
561
|
+
export namespace format {
|
|
562
|
+
const isEdit_31: boolean;
|
|
563
|
+
export { isEdit_31 as isEdit };
|
|
564
|
+
const description_30: string;
|
|
565
|
+
export { description_30 as description };
|
|
566
|
+
const configFields_16: {
|
|
493
567
|
name: string;
|
|
494
568
|
label: string;
|
|
495
569
|
type: string;
|
|
496
570
|
sublabel: string;
|
|
497
571
|
}[];
|
|
498
|
-
export {
|
|
499
|
-
export function
|
|
500
|
-
export { run_30 as run };
|
|
501
|
-
}
|
|
502
|
-
export namespace relative {
|
|
503
|
-
const isEdit_31: boolean;
|
|
504
|
-
export { isEdit_31 as isEdit };
|
|
505
|
-
export function run_31(d: any, req: any): string;
|
|
572
|
+
export { configFields_16 as configFields };
|
|
573
|
+
export function run_31(d: any, req: any, options: any): any;
|
|
506
574
|
export { run_31 as run };
|
|
507
575
|
}
|
|
508
|
-
export namespace
|
|
576
|
+
export namespace relative {
|
|
509
577
|
const isEdit_32: boolean;
|
|
510
578
|
export { isEdit_32 as isEdit };
|
|
579
|
+
const description_31: string;
|
|
580
|
+
export { description_31 as description };
|
|
511
581
|
export function run_32(d: any, req: any): string;
|
|
512
582
|
export { run_32 as run };
|
|
513
583
|
}
|
|
514
|
-
export namespace
|
|
584
|
+
export namespace yearsAgo {
|
|
515
585
|
const isEdit_33: boolean;
|
|
516
586
|
export { isEdit_33 as isEdit };
|
|
587
|
+
const description_32: string;
|
|
588
|
+
export { description_32 as description };
|
|
589
|
+
export function run_33(d: any, req: any): string;
|
|
590
|
+
export { run_33 as run };
|
|
591
|
+
}
|
|
592
|
+
export namespace edit_3 {
|
|
593
|
+
const isEdit_34: boolean;
|
|
594
|
+
export { isEdit_34 as isEdit };
|
|
517
595
|
const blockDisplay_11: boolean;
|
|
518
596
|
export { blockDisplay_11 as blockDisplay };
|
|
519
|
-
|
|
520
|
-
export {
|
|
597
|
+
const description_33: string;
|
|
598
|
+
export { description_33 as description };
|
|
599
|
+
export function run_34(nm: any, v: any, attrs: any, cls: any, required: any, field: any): any;
|
|
600
|
+
export { run_34 as run };
|
|
521
601
|
}
|
|
522
602
|
export { edit_3 as edit };
|
|
523
603
|
export namespace editDay {
|
|
524
|
-
const
|
|
525
|
-
export {
|
|
604
|
+
const isEdit_35: boolean;
|
|
605
|
+
export { isEdit_35 as isEdit };
|
|
526
606
|
const blockDisplay_12: boolean;
|
|
527
607
|
export { blockDisplay_12 as blockDisplay };
|
|
528
|
-
|
|
529
|
-
export {
|
|
608
|
+
const description_34: string;
|
|
609
|
+
export { description_34 as description };
|
|
610
|
+
export function run_35(nm: any, v: any, attrs: any, cls: any, required: any, field: any): any;
|
|
611
|
+
export { run_35 as run };
|
|
530
612
|
}
|
|
531
613
|
}
|
|
532
614
|
export { fieldviews_3 as fieldviews };
|
|
@@ -553,19 +635,23 @@ export namespace float {
|
|
|
553
635
|
export { contract_4 as contract };
|
|
554
636
|
export namespace fieldviews_4 {
|
|
555
637
|
export namespace show_3 {
|
|
556
|
-
const
|
|
557
|
-
export {
|
|
558
|
-
|
|
559
|
-
export {
|
|
638
|
+
const isEdit_36: boolean;
|
|
639
|
+
export { isEdit_36 as isEdit };
|
|
640
|
+
const description_35: string;
|
|
641
|
+
export { description_35 as description };
|
|
642
|
+
export function run_36(s: any): string;
|
|
643
|
+
export { run_36 as run };
|
|
560
644
|
}
|
|
561
645
|
export { show_3 as show };
|
|
562
646
|
export namespace edit_4 {
|
|
563
|
-
const
|
|
564
|
-
export {
|
|
647
|
+
const isEdit_37: boolean;
|
|
648
|
+
export { isEdit_37 as isEdit };
|
|
565
649
|
const blockDisplay_13: boolean;
|
|
566
650
|
export { blockDisplay_13 as blockDisplay };
|
|
567
|
-
|
|
568
|
-
export {
|
|
651
|
+
const description_36: string;
|
|
652
|
+
export { description_36 as description };
|
|
653
|
+
export function run_37(nm: any, v: any, attrs: any, cls: any, required: any, field: any): any;
|
|
654
|
+
export { run_37 as run };
|
|
569
655
|
}
|
|
570
656
|
export { edit_4 as edit };
|
|
571
657
|
export namespace number_slider_1 { }
|
|
@@ -577,14 +663,14 @@ export namespace float {
|
|
|
577
663
|
export namespace heat_cell_1 { }
|
|
578
664
|
export { heat_cell_1 as heat_cell };
|
|
579
665
|
export namespace above_input_1 {
|
|
580
|
-
const
|
|
581
|
-
export {
|
|
666
|
+
const isEdit_38: boolean;
|
|
667
|
+
export { isEdit_38 as isEdit };
|
|
582
668
|
const isFilter_3: boolean;
|
|
583
669
|
export { isFilter_3 as isFilter };
|
|
584
670
|
const blockDisplay_14: boolean;
|
|
585
671
|
export { blockDisplay_14 as blockDisplay };
|
|
586
|
-
export function
|
|
587
|
-
export {
|
|
672
|
+
export function run_38(nm: any, v: any, attrs: {} | undefined, cls: any, required: any, field: any, state?: {}): any;
|
|
673
|
+
export { run_38 as run };
|
|
588
674
|
}
|
|
589
675
|
export { above_input_1 as above_input };
|
|
590
676
|
export namespace below_input_1 { }
|
|
@@ -609,19 +695,23 @@ export namespace color {
|
|
|
609
695
|
export { contract_5 as contract };
|
|
610
696
|
export namespace fieldviews_5 {
|
|
611
697
|
export namespace show_4 {
|
|
612
|
-
const
|
|
613
|
-
export {
|
|
614
|
-
|
|
615
|
-
export {
|
|
698
|
+
const isEdit_39: boolean;
|
|
699
|
+
export { isEdit_39 as isEdit };
|
|
700
|
+
const description_37: string;
|
|
701
|
+
export { description_37 as description };
|
|
702
|
+
export function run_39(s: any): any;
|
|
703
|
+
export { run_39 as run };
|
|
616
704
|
}
|
|
617
705
|
export { show_4 as show };
|
|
618
706
|
export namespace edit_5 {
|
|
619
|
-
const
|
|
620
|
-
export {
|
|
707
|
+
const isEdit_40: boolean;
|
|
708
|
+
export { isEdit_40 as isEdit };
|
|
621
709
|
const blockDisplay_15: boolean;
|
|
622
710
|
export { blockDisplay_15 as blockDisplay };
|
|
623
|
-
|
|
624
|
-
export {
|
|
711
|
+
const description_38: string;
|
|
712
|
+
export { description_38 as description };
|
|
713
|
+
export function run_40(nm: any, v: any, attrs: any, cls: any, required: any, field: any): any;
|
|
714
|
+
export { run_40 as run };
|
|
625
715
|
}
|
|
626
716
|
export { edit_5 as edit };
|
|
627
717
|
}
|