@saltcorn/data 0.9.0-beta.2 → 0.9.0-beta.4
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/index.d.ts +14 -2
- package/dist/base-plugin/index.d.ts.map +1 -1
- package/dist/base-plugin/types.d.ts +220 -205
- package/dist/base-plugin/types.d.ts.map +1 -1
- package/dist/base-plugin/types.js +19 -0
- 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 +3 -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 +2 -1
- package/dist/db/state.d.ts.map +1 -1
- package/dist/db/state.js +9 -2
- package/dist/db/state.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 +30 -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
|
@@ -28,43 +28,58 @@ export namespace string {
|
|
|
28
28
|
export function run_2(s: any): any;
|
|
29
29
|
export { run_2 as run };
|
|
30
30
|
}
|
|
31
|
-
namespace
|
|
31
|
+
namespace ellipsize {
|
|
32
|
+
const isEdit_3: boolean;
|
|
33
|
+
export { isEdit_3 as isEdit };
|
|
32
34
|
export const configFields: {
|
|
33
35
|
name: string;
|
|
34
36
|
label: string;
|
|
35
37
|
type: string;
|
|
36
|
-
|
|
38
|
+
default: number;
|
|
37
39
|
}[];
|
|
38
40
|
const description_3: string;
|
|
39
41
|
export { description_3 as description };
|
|
40
|
-
|
|
41
|
-
export { isEdit_3 as isEdit };
|
|
42
|
-
export function run_3(s: any, req: any, attrs?: {}): any;
|
|
42
|
+
export function run_3(s: any, req: any, attrs?: {}): string;
|
|
43
43
|
export { run_3 as run };
|
|
44
44
|
}
|
|
45
|
-
namespace
|
|
46
|
-
const
|
|
47
|
-
|
|
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 };
|
|
48
53
|
const description_4: string;
|
|
49
54
|
export { description_4 as description };
|
|
50
|
-
|
|
55
|
+
const isEdit_4: boolean;
|
|
56
|
+
export { isEdit_4 as isEdit };
|
|
57
|
+
export function run_4(s: any, req: any, attrs?: {}): any;
|
|
51
58
|
export { run_4 as run };
|
|
52
59
|
}
|
|
53
|
-
namespace
|
|
60
|
+
namespace img_from_url {
|
|
54
61
|
const isEdit_5: boolean;
|
|
55
62
|
export { isEdit_5 as isEdit };
|
|
56
63
|
const description_5: string;
|
|
57
64
|
export { description_5 as description };
|
|
58
|
-
export function run_5(s: any): any;
|
|
65
|
+
export function run_5(s: any, req: any, attrs: any): any;
|
|
59
66
|
export { run_5 as run };
|
|
60
67
|
}
|
|
61
|
-
namespace
|
|
68
|
+
namespace as_header {
|
|
62
69
|
const isEdit_6: boolean;
|
|
63
70
|
export { isEdit_6 as isEdit };
|
|
64
|
-
export const blockDisplay: boolean;
|
|
65
71
|
const description_6: string;
|
|
66
72
|
export { description_6 as description };
|
|
67
|
-
export function
|
|
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 };
|
|
79
|
+
export const blockDisplay: boolean;
|
|
80
|
+
const description_7: string;
|
|
81
|
+
export { description_7 as description };
|
|
82
|
+
export function configFields_2(field: any): ({
|
|
68
83
|
name: string;
|
|
69
84
|
label: string;
|
|
70
85
|
type: string;
|
|
@@ -86,18 +101,18 @@ export namespace string {
|
|
|
86
101
|
type?: undefined;
|
|
87
102
|
sublabel?: undefined;
|
|
88
103
|
})[];
|
|
89
|
-
export {
|
|
90
|
-
export function
|
|
91
|
-
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 };
|
|
92
107
|
}
|
|
93
108
|
namespace fill_formula_btn {
|
|
94
|
-
const
|
|
95
|
-
export {
|
|
109
|
+
const isEdit_8: boolean;
|
|
110
|
+
export { isEdit_8 as isEdit };
|
|
96
111
|
const blockDisplay_1: boolean;
|
|
97
112
|
export { blockDisplay_1 as blockDisplay };
|
|
98
|
-
const
|
|
99
|
-
export {
|
|
100
|
-
const
|
|
113
|
+
const description_8: string;
|
|
114
|
+
export { description_8 as description };
|
|
115
|
+
const configFields_3: ({
|
|
101
116
|
name: string;
|
|
102
117
|
label: string;
|
|
103
118
|
type: string;
|
|
@@ -136,18 +151,18 @@ export namespace string {
|
|
|
136
151
|
type?: undefined;
|
|
137
152
|
default?: undefined;
|
|
138
153
|
})[];
|
|
139
|
-
export {
|
|
140
|
-
export function
|
|
141
|
-
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 };
|
|
142
157
|
}
|
|
143
158
|
namespace make_unique {
|
|
144
|
-
const
|
|
145
|
-
export {
|
|
159
|
+
const isEdit_9: boolean;
|
|
160
|
+
export { isEdit_9 as isEdit };
|
|
146
161
|
const blockDisplay_2: boolean;
|
|
147
162
|
export { blockDisplay_2 as blockDisplay };
|
|
148
|
-
const
|
|
149
|
-
export {
|
|
150
|
-
const
|
|
163
|
+
const description_9: string;
|
|
164
|
+
export { description_9 as description };
|
|
165
|
+
const configFields_4: ({
|
|
151
166
|
name: string;
|
|
152
167
|
label: string;
|
|
153
168
|
type: string;
|
|
@@ -169,59 +184,59 @@ export namespace string {
|
|
|
169
184
|
input_type?: undefined;
|
|
170
185
|
options?: undefined;
|
|
171
186
|
})[];
|
|
172
|
-
export {
|
|
173
|
-
export function run_8(nm: any, v: any, attrs: any, cls: any, required: any, field: any): any;
|
|
174
|
-
export { run_8 as run };
|
|
175
|
-
}
|
|
176
|
-
namespace textarea {
|
|
177
|
-
const isEdit_9: boolean;
|
|
178
|
-
export { isEdit_9 as isEdit };
|
|
179
|
-
const blockDisplay_3: boolean;
|
|
180
|
-
export { blockDisplay_3 as blockDisplay };
|
|
181
|
-
const description_9: string;
|
|
182
|
-
export { description_9 as description };
|
|
187
|
+
export { configFields_4 as configFields };
|
|
183
188
|
export function run_9(nm: any, v: any, attrs: any, cls: any, required: any, field: any): any;
|
|
184
189
|
export { run_9 as run };
|
|
185
190
|
}
|
|
186
|
-
namespace
|
|
191
|
+
namespace textarea {
|
|
187
192
|
const isEdit_10: boolean;
|
|
188
193
|
export { isEdit_10 as isEdit };
|
|
189
|
-
const
|
|
190
|
-
|
|
191
|
-
name: string;
|
|
192
|
-
label: string;
|
|
193
|
-
}[];
|
|
194
|
-
export { configFields_4 as configFields };
|
|
194
|
+
const blockDisplay_3: boolean;
|
|
195
|
+
export { blockDisplay_3 as blockDisplay };
|
|
195
196
|
const description_10: string;
|
|
196
197
|
export { description_10 as description };
|
|
197
198
|
export function run_10(nm: any, v: any, attrs: any, cls: any, required: any, field: any): any;
|
|
198
199
|
export { run_10 as run };
|
|
199
200
|
}
|
|
200
|
-
namespace
|
|
201
|
+
namespace radio_group {
|
|
201
202
|
const isEdit_11: boolean;
|
|
202
203
|
export { isEdit_11 as isEdit };
|
|
203
|
-
export const isFilter: boolean;
|
|
204
|
-
const description_11: string;
|
|
205
|
-
export { description_11 as description };
|
|
206
204
|
const configFields_5: {
|
|
207
205
|
type: string;
|
|
208
206
|
name: string;
|
|
209
207
|
label: string;
|
|
210
208
|
}[];
|
|
211
209
|
export { configFields_5 as configFields };
|
|
210
|
+
const description_11: string;
|
|
211
|
+
export { description_11 as description };
|
|
212
212
|
export function run_11(nm: any, v: any, attrs: any, cls: any, required: any, field: any): any;
|
|
213
213
|
export { run_11 as run };
|
|
214
214
|
}
|
|
215
|
-
namespace
|
|
215
|
+
namespace checkbox_group {
|
|
216
216
|
const isEdit_12: boolean;
|
|
217
217
|
export { isEdit_12 as isEdit };
|
|
218
|
-
const
|
|
219
|
-
export { blockDisplay_4 as blockDisplay };
|
|
218
|
+
export const isFilter: boolean;
|
|
220
219
|
const description_12: string;
|
|
221
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 };
|
|
222
227
|
export function run_12(nm: any, v: any, attrs: any, cls: any, required: any, field: any): any;
|
|
223
228
|
export { run_12 as run };
|
|
224
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
|
+
}
|
|
225
240
|
}
|
|
226
241
|
function read(v: any): string | undefined;
|
|
227
242
|
namespace presets {
|
|
@@ -252,66 +267,66 @@ export namespace int {
|
|
|
252
267
|
}
|
|
253
268
|
export namespace fieldviews_1 {
|
|
254
269
|
export namespace show {
|
|
255
|
-
const isEdit_13: boolean;
|
|
256
|
-
export { isEdit_13 as isEdit };
|
|
257
|
-
const description_13: string;
|
|
258
|
-
export { description_13 as description };
|
|
259
|
-
export function run_13(s: any): string;
|
|
260
|
-
export { run_13 as run };
|
|
261
|
-
}
|
|
262
|
-
export namespace edit_1 {
|
|
263
270
|
const isEdit_14: boolean;
|
|
264
271
|
export { isEdit_14 as isEdit };
|
|
265
|
-
const blockDisplay_5: boolean;
|
|
266
|
-
export { blockDisplay_5 as blockDisplay };
|
|
267
272
|
const description_14: string;
|
|
268
273
|
export { description_14 as description };
|
|
269
|
-
|
|
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 };
|
|
280
|
+
const blockDisplay_5: boolean;
|
|
281
|
+
export { blockDisplay_5 as blockDisplay };
|
|
282
|
+
const description_15: string;
|
|
283
|
+
export { description_15 as description };
|
|
284
|
+
const configFields_7: {
|
|
270
285
|
name: string;
|
|
271
286
|
label: string;
|
|
272
287
|
type: string;
|
|
273
288
|
}[];
|
|
274
|
-
export {
|
|
275
|
-
export function
|
|
276
|
-
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 };
|
|
277
292
|
}
|
|
278
293
|
export { edit_1 as edit };
|
|
279
294
|
export namespace number_slider {
|
|
280
|
-
export function
|
|
295
|
+
export function configFields_8(field: any): {
|
|
281
296
|
name: string;
|
|
282
297
|
type: any;
|
|
283
298
|
required: boolean;
|
|
284
299
|
}[];
|
|
285
|
-
export {
|
|
286
|
-
const
|
|
287
|
-
export {
|
|
288
|
-
const
|
|
289
|
-
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 };
|
|
290
305
|
const blockDisplay_6: boolean;
|
|
291
306
|
export { blockDisplay_6 as blockDisplay };
|
|
292
|
-
export function
|
|
293
|
-
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 };
|
|
294
309
|
}
|
|
295
310
|
export namespace range_interval {
|
|
296
|
-
export function
|
|
311
|
+
export function configFields_9(field: any): {
|
|
297
312
|
name: string;
|
|
298
313
|
type: any;
|
|
299
314
|
required: boolean;
|
|
300
315
|
}[];
|
|
301
|
-
export {
|
|
302
|
-
const
|
|
303
|
-
export {
|
|
316
|
+
export { configFields_9 as configFields };
|
|
317
|
+
const isEdit_17: boolean;
|
|
318
|
+
export { isEdit_17 as isEdit };
|
|
304
319
|
const isFilter_1: boolean;
|
|
305
320
|
export { isFilter_1 as isFilter };
|
|
306
321
|
const blockDisplay_7: boolean;
|
|
307
322
|
export { blockDisplay_7 as blockDisplay };
|
|
308
|
-
const
|
|
309
|
-
export {
|
|
310
|
-
export function
|
|
311
|
-
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 };
|
|
312
327
|
}
|
|
313
328
|
export namespace progress_bar {
|
|
314
|
-
export function
|
|
329
|
+
export function configFields_10(field: any): ({
|
|
315
330
|
name: string;
|
|
316
331
|
type: any;
|
|
317
332
|
required: boolean;
|
|
@@ -322,16 +337,16 @@ export namespace int {
|
|
|
322
337
|
label: string;
|
|
323
338
|
required?: undefined;
|
|
324
339
|
})[];
|
|
325
|
-
export {
|
|
326
|
-
const
|
|
327
|
-
export {
|
|
328
|
-
const
|
|
329
|
-
export {
|
|
330
|
-
export function
|
|
331
|
-
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 };
|
|
332
347
|
}
|
|
333
348
|
export namespace heat_cell {
|
|
334
|
-
export function
|
|
349
|
+
export function configFields_11(field: any): ({
|
|
335
350
|
name: string;
|
|
336
351
|
type: any;
|
|
337
352
|
required: boolean;
|
|
@@ -362,64 +377,64 @@ export namespace int {
|
|
|
362
377
|
required?: undefined;
|
|
363
378
|
attributes?: undefined;
|
|
364
379
|
})[];
|
|
365
|
-
export {
|
|
366
|
-
const isEdit_18: boolean;
|
|
367
|
-
export { isEdit_18 as isEdit };
|
|
368
|
-
const description_18: string;
|
|
369
|
-
export { description_18 as description };
|
|
370
|
-
export function run_18(v: any, req: any, attrs?: {}): any;
|
|
371
|
-
export { run_18 as run };
|
|
372
|
-
}
|
|
373
|
-
export namespace above_input {
|
|
380
|
+
export { configFields_11 as configFields };
|
|
374
381
|
const isEdit_19: boolean;
|
|
375
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 };
|
|
376
391
|
const isFilter_2: boolean;
|
|
377
392
|
export { isFilter_2 as isFilter };
|
|
378
393
|
const blockDisplay_8: boolean;
|
|
379
394
|
export { blockDisplay_8 as blockDisplay };
|
|
380
|
-
const
|
|
395
|
+
const configFields_12: {
|
|
381
396
|
name: string;
|
|
382
397
|
label: string;
|
|
383
398
|
type: string;
|
|
384
399
|
}[];
|
|
385
|
-
export {
|
|
386
|
-
export function
|
|
387
|
-
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 };
|
|
388
403
|
}
|
|
389
404
|
export namespace below_input { }
|
|
390
405
|
export namespace show_star_rating {
|
|
391
|
-
const
|
|
392
|
-
export {
|
|
393
|
-
export function
|
|
406
|
+
const description_20: string;
|
|
407
|
+
export { description_20 as description };
|
|
408
|
+
export function configFields_13(field: any): {
|
|
394
409
|
name: string;
|
|
395
410
|
type: string;
|
|
396
411
|
required: boolean;
|
|
397
412
|
default: number;
|
|
398
413
|
}[];
|
|
399
|
-
export {
|
|
400
|
-
const
|
|
401
|
-
export {
|
|
414
|
+
export { configFields_13 as configFields };
|
|
415
|
+
const isEdit_21: boolean;
|
|
416
|
+
export { isEdit_21 as isEdit };
|
|
402
417
|
const blockDisplay_9: boolean;
|
|
403
418
|
export { blockDisplay_9 as blockDisplay };
|
|
404
|
-
export function
|
|
405
|
-
export {
|
|
419
|
+
export function run_21(v: any, req: any, attrs?: {}): any;
|
|
420
|
+
export { run_21 as run };
|
|
406
421
|
}
|
|
407
422
|
export namespace edit_star_rating {
|
|
408
|
-
const
|
|
409
|
-
export {
|
|
410
|
-
export function
|
|
423
|
+
const description_21: string;
|
|
424
|
+
export { description_21 as description };
|
|
425
|
+
export function configFields_14(field: any): {
|
|
411
426
|
name: string;
|
|
412
427
|
type: string;
|
|
413
428
|
required: boolean;
|
|
414
429
|
default: number;
|
|
415
430
|
}[];
|
|
416
|
-
export {
|
|
417
|
-
const
|
|
418
|
-
export {
|
|
431
|
+
export { configFields_14 as configFields };
|
|
432
|
+
const isEdit_22: boolean;
|
|
433
|
+
export { isEdit_22 as isEdit };
|
|
419
434
|
const blockDisplay_10: boolean;
|
|
420
435
|
export { blockDisplay_10 as blockDisplay };
|
|
421
|
-
export function
|
|
422
|
-
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 };
|
|
423
438
|
}
|
|
424
439
|
}
|
|
425
440
|
export { fieldviews_1 as fieldviews };
|
|
@@ -443,15 +458,6 @@ export namespace bool {
|
|
|
443
458
|
export { contract_2 as contract };
|
|
444
459
|
export namespace fieldviews_2 {
|
|
445
460
|
export namespace show_1 {
|
|
446
|
-
const isEdit_22: boolean;
|
|
447
|
-
export { isEdit_22 as isEdit };
|
|
448
|
-
const description_21: string;
|
|
449
|
-
export { description_21 as description };
|
|
450
|
-
export function run_22(v: any): any;
|
|
451
|
-
export { run_22 as run };
|
|
452
|
-
}
|
|
453
|
-
export { show_1 as show };
|
|
454
|
-
export namespace checkboxes {
|
|
455
461
|
const isEdit_23: boolean;
|
|
456
462
|
export { isEdit_23 as isEdit };
|
|
457
463
|
const description_22: string;
|
|
@@ -459,20 +465,29 @@ export namespace bool {
|
|
|
459
465
|
export function run_23(v: any): any;
|
|
460
466
|
export { run_23 as run };
|
|
461
467
|
}
|
|
462
|
-
export
|
|
468
|
+
export { show_1 as show };
|
|
469
|
+
export namespace checkboxes {
|
|
463
470
|
const isEdit_24: boolean;
|
|
464
471
|
export { isEdit_24 as isEdit };
|
|
465
472
|
const description_23: string;
|
|
466
473
|
export { description_23 as description };
|
|
467
|
-
export function run_24(v: any):
|
|
474
|
+
export function run_24(v: any): any;
|
|
468
475
|
export { run_24 as run };
|
|
469
476
|
}
|
|
470
|
-
export namespace
|
|
477
|
+
export namespace TrueFalse {
|
|
471
478
|
const isEdit_25: boolean;
|
|
472
479
|
export { isEdit_25 as isEdit };
|
|
473
480
|
const description_24: string;
|
|
474
481
|
export { description_24 as description };
|
|
475
|
-
|
|
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: {
|
|
476
491
|
name: string;
|
|
477
492
|
label: string;
|
|
478
493
|
type: string;
|
|
@@ -480,21 +495,12 @@ export namespace bool {
|
|
|
480
495
|
options: string[];
|
|
481
496
|
};
|
|
482
497
|
}[];
|
|
483
|
-
export {
|
|
484
|
-
export function run_25(nm: any, v: any, attrs: any, cls: any, required: any, field: any): any;
|
|
485
|
-
export { run_25 as run };
|
|
486
|
-
}
|
|
487
|
-
export { edit_2 as edit };
|
|
488
|
-
export namespace _switch {
|
|
489
|
-
const isEdit_26: boolean;
|
|
490
|
-
export { isEdit_26 as isEdit };
|
|
491
|
-
const description_25: string;
|
|
492
|
-
export { description_25 as description };
|
|
498
|
+
export { configFields_15 as configFields };
|
|
493
499
|
export function run_26(nm: any, v: any, attrs: any, cls: any, required: any, field: any): any;
|
|
494
500
|
export { run_26 as run };
|
|
495
501
|
}
|
|
496
|
-
export {
|
|
497
|
-
export namespace
|
|
502
|
+
export { edit_2 as edit };
|
|
503
|
+
export namespace _switch {
|
|
498
504
|
const isEdit_27: boolean;
|
|
499
505
|
export { isEdit_27 as isEdit };
|
|
500
506
|
const description_26: string;
|
|
@@ -502,6 +508,15 @@ export namespace bool {
|
|
|
502
508
|
export function run_27(nm: any, v: any, attrs: any, cls: any, required: any, field: any): any;
|
|
503
509
|
export { run_27 as run };
|
|
504
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
|
+
}
|
|
505
520
|
}
|
|
506
521
|
export { fieldviews_2 as fieldviews };
|
|
507
522
|
const attributes_2: object[];
|
|
@@ -527,15 +542,6 @@ export namespace date {
|
|
|
527
542
|
export { attributes_3 as attributes };
|
|
528
543
|
export namespace fieldviews_3 {
|
|
529
544
|
export namespace show_2 {
|
|
530
|
-
const isEdit_28: boolean;
|
|
531
|
-
export { isEdit_28 as isEdit };
|
|
532
|
-
const description_27: string;
|
|
533
|
-
export { description_27 as description };
|
|
534
|
-
export function run_28(d: any, req: any): any;
|
|
535
|
-
export { run_28 as run };
|
|
536
|
-
}
|
|
537
|
-
export { show_2 as show };
|
|
538
|
-
export namespace showDay {
|
|
539
545
|
const isEdit_29: boolean;
|
|
540
546
|
export { isEdit_29 as isEdit };
|
|
541
547
|
const description_28: string;
|
|
@@ -543,30 +549,31 @@ export namespace date {
|
|
|
543
549
|
export function run_29(d: any, req: any): any;
|
|
544
550
|
export { run_29 as run };
|
|
545
551
|
}
|
|
546
|
-
export
|
|
552
|
+
export { show_2 as show };
|
|
553
|
+
export namespace showDay {
|
|
547
554
|
const isEdit_30: boolean;
|
|
548
555
|
export { isEdit_30 as isEdit };
|
|
549
556
|
const description_29: string;
|
|
550
557
|
export { description_29 as description };
|
|
551
|
-
|
|
552
|
-
name: string;
|
|
553
|
-
label: string;
|
|
554
|
-
type: string;
|
|
555
|
-
sublabel: string;
|
|
556
|
-
}[];
|
|
557
|
-
export { configFields_15 as configFields };
|
|
558
|
-
export function run_30(d: any, req: any, options: any): any;
|
|
558
|
+
export function run_30(d: any, req: any): any;
|
|
559
559
|
export { run_30 as run };
|
|
560
560
|
}
|
|
561
|
-
export namespace
|
|
561
|
+
export namespace format {
|
|
562
562
|
const isEdit_31: boolean;
|
|
563
563
|
export { isEdit_31 as isEdit };
|
|
564
564
|
const description_30: string;
|
|
565
565
|
export { description_30 as description };
|
|
566
|
-
|
|
566
|
+
const configFields_16: {
|
|
567
|
+
name: string;
|
|
568
|
+
label: string;
|
|
569
|
+
type: string;
|
|
570
|
+
sublabel: string;
|
|
571
|
+
}[];
|
|
572
|
+
export { configFields_16 as configFields };
|
|
573
|
+
export function run_31(d: any, req: any, options: any): any;
|
|
567
574
|
export { run_31 as run };
|
|
568
575
|
}
|
|
569
|
-
export namespace
|
|
576
|
+
export namespace relative {
|
|
570
577
|
const isEdit_32: boolean;
|
|
571
578
|
export { isEdit_32 as isEdit };
|
|
572
579
|
const description_31: string;
|
|
@@ -574,27 +581,35 @@ export namespace date {
|
|
|
574
581
|
export function run_32(d: any, req: any): string;
|
|
575
582
|
export { run_32 as run };
|
|
576
583
|
}
|
|
577
|
-
export namespace
|
|
584
|
+
export namespace yearsAgo {
|
|
578
585
|
const isEdit_33: boolean;
|
|
579
586
|
export { isEdit_33 as isEdit };
|
|
580
|
-
const blockDisplay_11: boolean;
|
|
581
|
-
export { blockDisplay_11 as blockDisplay };
|
|
582
587
|
const description_32: string;
|
|
583
588
|
export { description_32 as description };
|
|
584
|
-
export function run_33(
|
|
589
|
+
export function run_33(d: any, req: any): string;
|
|
585
590
|
export { run_33 as run };
|
|
586
591
|
}
|
|
587
|
-
export
|
|
588
|
-
export namespace editDay {
|
|
592
|
+
export namespace edit_3 {
|
|
589
593
|
const isEdit_34: boolean;
|
|
590
594
|
export { isEdit_34 as isEdit };
|
|
591
|
-
const
|
|
592
|
-
export {
|
|
595
|
+
const blockDisplay_11: boolean;
|
|
596
|
+
export { blockDisplay_11 as blockDisplay };
|
|
593
597
|
const description_33: string;
|
|
594
598
|
export { description_33 as description };
|
|
595
599
|
export function run_34(nm: any, v: any, attrs: any, cls: any, required: any, field: any): any;
|
|
596
600
|
export { run_34 as run };
|
|
597
601
|
}
|
|
602
|
+
export { edit_3 as edit };
|
|
603
|
+
export namespace editDay {
|
|
604
|
+
const isEdit_35: boolean;
|
|
605
|
+
export { isEdit_35 as isEdit };
|
|
606
|
+
const blockDisplay_12: boolean;
|
|
607
|
+
export { blockDisplay_12 as blockDisplay };
|
|
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 };
|
|
612
|
+
}
|
|
598
613
|
}
|
|
599
614
|
export { fieldviews_3 as fieldviews };
|
|
600
615
|
export namespace presets_1 {
|
|
@@ -620,24 +635,24 @@ export namespace float {
|
|
|
620
635
|
export { contract_4 as contract };
|
|
621
636
|
export namespace fieldviews_4 {
|
|
622
637
|
export namespace show_3 {
|
|
623
|
-
const isEdit_35: boolean;
|
|
624
|
-
export { isEdit_35 as isEdit };
|
|
625
|
-
const description_34: string;
|
|
626
|
-
export { description_34 as description };
|
|
627
|
-
export function run_35(s: any): string;
|
|
628
|
-
export { run_35 as run };
|
|
629
|
-
}
|
|
630
|
-
export { show_3 as show };
|
|
631
|
-
export namespace edit_4 {
|
|
632
638
|
const isEdit_36: boolean;
|
|
633
639
|
export { isEdit_36 as isEdit };
|
|
634
|
-
const blockDisplay_13: boolean;
|
|
635
|
-
export { blockDisplay_13 as blockDisplay };
|
|
636
640
|
const description_35: string;
|
|
637
641
|
export { description_35 as description };
|
|
638
|
-
export function run_36(
|
|
642
|
+
export function run_36(s: any): string;
|
|
639
643
|
export { run_36 as run };
|
|
640
644
|
}
|
|
645
|
+
export { show_3 as show };
|
|
646
|
+
export namespace edit_4 {
|
|
647
|
+
const isEdit_37: boolean;
|
|
648
|
+
export { isEdit_37 as isEdit };
|
|
649
|
+
const blockDisplay_13: boolean;
|
|
650
|
+
export { blockDisplay_13 as blockDisplay };
|
|
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 };
|
|
655
|
+
}
|
|
641
656
|
export { edit_4 as edit };
|
|
642
657
|
export namespace number_slider_1 { }
|
|
643
658
|
export { number_slider_1 as number_slider };
|
|
@@ -648,14 +663,14 @@ export namespace float {
|
|
|
648
663
|
export namespace heat_cell_1 { }
|
|
649
664
|
export { heat_cell_1 as heat_cell };
|
|
650
665
|
export namespace above_input_1 {
|
|
651
|
-
const
|
|
652
|
-
export {
|
|
666
|
+
const isEdit_38: boolean;
|
|
667
|
+
export { isEdit_38 as isEdit };
|
|
653
668
|
const isFilter_3: boolean;
|
|
654
669
|
export { isFilter_3 as isFilter };
|
|
655
670
|
const blockDisplay_14: boolean;
|
|
656
671
|
export { blockDisplay_14 as blockDisplay };
|
|
657
|
-
export function
|
|
658
|
-
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 };
|
|
659
674
|
}
|
|
660
675
|
export { above_input_1 as above_input };
|
|
661
676
|
export namespace below_input_1 { }
|
|
@@ -680,24 +695,24 @@ export namespace color {
|
|
|
680
695
|
export { contract_5 as contract };
|
|
681
696
|
export namespace fieldviews_5 {
|
|
682
697
|
export namespace show_4 {
|
|
683
|
-
const isEdit_38: boolean;
|
|
684
|
-
export { isEdit_38 as isEdit };
|
|
685
|
-
const description_36: string;
|
|
686
|
-
export { description_36 as description };
|
|
687
|
-
export function run_38(s: any): any;
|
|
688
|
-
export { run_38 as run };
|
|
689
|
-
}
|
|
690
|
-
export { show_4 as show };
|
|
691
|
-
export namespace edit_5 {
|
|
692
698
|
const isEdit_39: boolean;
|
|
693
699
|
export { isEdit_39 as isEdit };
|
|
694
|
-
const blockDisplay_15: boolean;
|
|
695
|
-
export { blockDisplay_15 as blockDisplay };
|
|
696
700
|
const description_37: string;
|
|
697
701
|
export { description_37 as description };
|
|
698
|
-
export function run_39(
|
|
702
|
+
export function run_39(s: any): any;
|
|
699
703
|
export { run_39 as run };
|
|
700
704
|
}
|
|
705
|
+
export { show_4 as show };
|
|
706
|
+
export namespace edit_5 {
|
|
707
|
+
const isEdit_40: boolean;
|
|
708
|
+
export { isEdit_40 as isEdit };
|
|
709
|
+
const blockDisplay_15: boolean;
|
|
710
|
+
export { blockDisplay_15 as blockDisplay };
|
|
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 };
|
|
715
|
+
}
|
|
701
716
|
export { edit_5 as edit };
|
|
702
717
|
}
|
|
703
718
|
export { fieldviews_5 as fieldviews };
|