@saltcorn/data 0.9.6-beta.13 → 0.9.6-beta.15
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/actions.d.ts.map +1 -1
- package/dist/base-plugin/actions.js +11 -5
- package/dist/base-plugin/actions.js.map +1 -1
- package/dist/base-plugin/index.d.ts +16 -0
- package/dist/base-plugin/index.d.ts.map +1 -1
- package/dist/base-plugin/types.d.ts +271 -251
- package/dist/base-plugin/types.d.ts.map +1 -1
- package/dist/base-plugin/types.js +40 -0
- package/dist/base-plugin/types.js.map +1 -1
- package/dist/models/index.d.ts +1 -1
- package/dist/models/notification.d.ts +2 -0
- package/dist/models/notification.d.ts.map +1 -1
- package/dist/models/notification.js +6 -0
- package/dist/models/notification.js.map +1 -1
- package/dist/models/page.d.ts.map +1 -1
- package/dist/models/page.js +3 -9
- package/dist/models/page.js.map +1 -1
- package/dist/models/trigger.d.ts +6 -1
- package/dist/models/trigger.d.ts.map +1 -1
- package/dist/models/trigger.js +17 -2
- package/dist/models/trigger.js.map +1 -1
- package/dist/models/view.d.ts.map +1 -1
- package/dist/models/view.js +3 -10
- package/dist/models/view.js.map +1 -1
- package/dist/tests/actions.test.js +14 -4
- package/dist/tests/actions.test.js.map +1 -1
- package/dist/tests/auxtest.test.js +7 -1
- package/dist/tests/auxtest.test.js.map +1 -1
- package/dist/tests/exact_views.test.js +1 -1
- package/dist/tests/exact_views.test.js.map +1 -1
- package/dist/tests/models.test.js +1 -1
- package/dist/tests/table.test.js +10 -1
- package/dist/tests/table.test.js.map +1 -1
- package/dist/tests/view.test.js +5 -1
- package/dist/tests/view.test.js.map +1 -1
- package/dist/utils.d.ts +1 -0
- package/dist/utils.d.ts.map +1 -1
- package/dist/utils.js +12 -0
- package/dist/utils.js.map +1 -1
- package/dist/web-mobile-commons.d.ts.map +1 -1
- package/dist/web-mobile-commons.js +1 -0
- package/dist/web-mobile-commons.js.map +1 -1
- package/package.json +8 -8
|
@@ -28,59 +28,79 @@ export namespace string {
|
|
|
28
28
|
export function run_2(s: any): any;
|
|
29
29
|
export { run_2 as run };
|
|
30
30
|
}
|
|
31
|
-
export namespace
|
|
31
|
+
export namespace monospace_block {
|
|
32
32
|
const isEdit_3: boolean;
|
|
33
33
|
export { isEdit_3 as isEdit };
|
|
34
|
-
export const configFields: {
|
|
34
|
+
export const configFields: ({
|
|
35
35
|
name: string;
|
|
36
36
|
label: string;
|
|
37
|
+
sublabel: string;
|
|
37
38
|
type: string;
|
|
38
|
-
|
|
39
|
-
|
|
39
|
+
} | {
|
|
40
|
+
name: string;
|
|
41
|
+
label: string;
|
|
42
|
+
type: string;
|
|
43
|
+
sublabel?: undefined;
|
|
44
|
+
})[];
|
|
40
45
|
const description_3: string;
|
|
41
46
|
export { description_3 as description };
|
|
42
|
-
export function run_3(s: any, req: any, attrs?: {}):
|
|
47
|
+
export function run_3(s: any, req: any, attrs?: {}): any;
|
|
43
48
|
export { run_3 as run };
|
|
44
49
|
}
|
|
45
|
-
export namespace
|
|
50
|
+
export namespace ellipsize {
|
|
51
|
+
const isEdit_4: boolean;
|
|
52
|
+
export { isEdit_4 as isEdit };
|
|
46
53
|
const configFields_1: {
|
|
47
54
|
name: string;
|
|
48
55
|
label: string;
|
|
49
56
|
type: string;
|
|
50
|
-
|
|
57
|
+
default: number;
|
|
51
58
|
}[];
|
|
52
59
|
export { configFields_1 as configFields };
|
|
53
60
|
const description_4: string;
|
|
54
61
|
export { description_4 as description };
|
|
55
|
-
|
|
56
|
-
export { isEdit_4 as isEdit };
|
|
57
|
-
export function run_4(s: any, req: any, attrs?: {}): any;
|
|
62
|
+
export function run_4(s: any, req: any, attrs?: {}): string;
|
|
58
63
|
export { run_4 as run };
|
|
59
64
|
}
|
|
60
|
-
export namespace
|
|
61
|
-
const
|
|
62
|
-
|
|
65
|
+
export namespace as_link {
|
|
66
|
+
const configFields_2: {
|
|
67
|
+
name: string;
|
|
68
|
+
label: string;
|
|
69
|
+
type: string;
|
|
70
|
+
sublabel: string;
|
|
71
|
+
}[];
|
|
72
|
+
export { configFields_2 as configFields };
|
|
63
73
|
const description_5: string;
|
|
64
74
|
export { description_5 as description };
|
|
65
|
-
|
|
75
|
+
const isEdit_5: boolean;
|
|
76
|
+
export { isEdit_5 as isEdit };
|
|
77
|
+
export function run_5(s: any, req: any, attrs?: {}): any;
|
|
66
78
|
export { run_5 as run };
|
|
67
79
|
}
|
|
68
|
-
export namespace
|
|
80
|
+
export namespace img_from_url {
|
|
69
81
|
const isEdit_6: boolean;
|
|
70
82
|
export { isEdit_6 as isEdit };
|
|
71
83
|
const description_6: string;
|
|
72
84
|
export { description_6 as description };
|
|
73
|
-
export function run_6(s: any): any;
|
|
85
|
+
export function run_6(s: any, req: any, attrs: any): any;
|
|
74
86
|
export { run_6 as run };
|
|
75
87
|
}
|
|
76
|
-
export
|
|
77
|
-
export namespace edit {
|
|
88
|
+
export namespace as_header {
|
|
78
89
|
const isEdit_7: boolean;
|
|
79
90
|
export { isEdit_7 as isEdit };
|
|
80
|
-
export const blockDisplay: boolean;
|
|
81
91
|
const description_7: string;
|
|
82
92
|
export { description_7 as description };
|
|
83
|
-
export function
|
|
93
|
+
export function run_7(s: any): any;
|
|
94
|
+
export { run_7 as run };
|
|
95
|
+
}
|
|
96
|
+
export { show_with_html };
|
|
97
|
+
export namespace edit {
|
|
98
|
+
const isEdit_8: boolean;
|
|
99
|
+
export { isEdit_8 as isEdit };
|
|
100
|
+
export const blockDisplay: boolean;
|
|
101
|
+
const description_8: string;
|
|
102
|
+
export { description_8 as description };
|
|
103
|
+
export function configFields_3(field: any): ({
|
|
84
104
|
name: string;
|
|
85
105
|
label: string;
|
|
86
106
|
type: string;
|
|
@@ -102,18 +122,18 @@ export namespace string {
|
|
|
102
122
|
type?: undefined;
|
|
103
123
|
sublabel?: undefined;
|
|
104
124
|
})[];
|
|
105
|
-
export {
|
|
106
|
-
export function
|
|
107
|
-
export {
|
|
125
|
+
export { configFields_3 as configFields };
|
|
126
|
+
export function run_8(nm: any, v: any, attrs: any, cls: any, required: any, field: any): any;
|
|
127
|
+
export { run_8 as run };
|
|
108
128
|
}
|
|
109
129
|
export namespace fill_formula_btn {
|
|
110
|
-
const
|
|
111
|
-
export {
|
|
130
|
+
const isEdit_9: boolean;
|
|
131
|
+
export { isEdit_9 as isEdit };
|
|
112
132
|
const blockDisplay_1: boolean;
|
|
113
133
|
export { blockDisplay_1 as blockDisplay };
|
|
114
|
-
const
|
|
115
|
-
export {
|
|
116
|
-
const
|
|
134
|
+
const description_9: string;
|
|
135
|
+
export { description_9 as description };
|
|
136
|
+
const configFields_4: ({
|
|
117
137
|
name: string;
|
|
118
138
|
label: string;
|
|
119
139
|
type: string;
|
|
@@ -152,18 +172,18 @@ export namespace string {
|
|
|
152
172
|
type?: undefined;
|
|
153
173
|
default?: undefined;
|
|
154
174
|
})[];
|
|
155
|
-
export {
|
|
156
|
-
export function
|
|
157
|
-
export {
|
|
175
|
+
export { configFields_4 as configFields };
|
|
176
|
+
export function run_9(nm: any, v: any, attrs: any, cls: any, required: any, field: any): any;
|
|
177
|
+
export { run_9 as run };
|
|
158
178
|
}
|
|
159
179
|
export namespace make_unique {
|
|
160
|
-
const
|
|
161
|
-
export {
|
|
180
|
+
const isEdit_10: boolean;
|
|
181
|
+
export { isEdit_10 as isEdit };
|
|
162
182
|
const blockDisplay_2: boolean;
|
|
163
183
|
export { blockDisplay_2 as blockDisplay };
|
|
164
|
-
const
|
|
165
|
-
export {
|
|
166
|
-
const
|
|
184
|
+
const description_10: string;
|
|
185
|
+
export { description_10 as description };
|
|
186
|
+
const configFields_5: ({
|
|
167
187
|
name: string;
|
|
168
188
|
label: string;
|
|
169
189
|
type: string;
|
|
@@ -185,85 +205,85 @@ export namespace string {
|
|
|
185
205
|
input_type?: undefined;
|
|
186
206
|
options?: undefined;
|
|
187
207
|
})[];
|
|
188
|
-
export { configFields_4 as configFields };
|
|
189
|
-
export function run_9(nm: any, v: any, attrs: any, cls: any, required: any, field: any): any;
|
|
190
|
-
export { run_9 as run };
|
|
191
|
-
}
|
|
192
|
-
export namespace textarea {
|
|
193
|
-
const isEdit_10: boolean;
|
|
194
|
-
export { isEdit_10 as isEdit };
|
|
195
|
-
const blockDisplay_3: boolean;
|
|
196
|
-
export { blockDisplay_3 as blockDisplay };
|
|
197
|
-
const description_10: string;
|
|
198
|
-
export { description_10 as description };
|
|
199
|
-
const configFields_5: {
|
|
200
|
-
type: string;
|
|
201
|
-
name: string;
|
|
202
|
-
label: string;
|
|
203
|
-
}[];
|
|
204
208
|
export { configFields_5 as configFields };
|
|
205
209
|
export function run_10(nm: any, v: any, attrs: any, cls: any, required: any, field: any): any;
|
|
206
210
|
export { run_10 as run };
|
|
207
211
|
}
|
|
208
|
-
export namespace
|
|
212
|
+
export namespace textarea {
|
|
209
213
|
const isEdit_11: boolean;
|
|
210
214
|
export { isEdit_11 as isEdit };
|
|
211
|
-
const
|
|
212
|
-
export {
|
|
215
|
+
const blockDisplay_3: boolean;
|
|
216
|
+
export { blockDisplay_3 as blockDisplay };
|
|
213
217
|
const description_11: string;
|
|
214
218
|
export { description_11 as description };
|
|
215
219
|
const configFields_6: {
|
|
216
220
|
type: string;
|
|
217
221
|
name: string;
|
|
218
222
|
label: string;
|
|
219
|
-
required: boolean;
|
|
220
|
-
attributes: {
|
|
221
|
-
options: string[];
|
|
222
|
-
};
|
|
223
223
|
}[];
|
|
224
224
|
export { configFields_6 as configFields };
|
|
225
225
|
export function run_11(nm: any, v: any, attrs: any, cls: any, required: any, field: any): any;
|
|
226
226
|
export { run_11 as run };
|
|
227
227
|
}
|
|
228
|
-
export namespace
|
|
228
|
+
export namespace code_editor {
|
|
229
229
|
const isEdit_12: boolean;
|
|
230
230
|
export { isEdit_12 as isEdit };
|
|
231
|
+
const blockDisplay_4: boolean;
|
|
232
|
+
export { blockDisplay_4 as blockDisplay };
|
|
233
|
+
const description_12: string;
|
|
234
|
+
export { description_12 as description };
|
|
231
235
|
const configFields_7: {
|
|
232
236
|
type: string;
|
|
233
237
|
name: string;
|
|
234
238
|
label: string;
|
|
239
|
+
required: boolean;
|
|
240
|
+
attributes: {
|
|
241
|
+
options: string[];
|
|
242
|
+
};
|
|
235
243
|
}[];
|
|
236
244
|
export { configFields_7 as configFields };
|
|
237
|
-
const description_12: string;
|
|
238
|
-
export { description_12 as description };
|
|
239
245
|
export function run_12(nm: any, v: any, attrs: any, cls: any, required: any, field: any): any;
|
|
240
246
|
export { run_12 as run };
|
|
241
247
|
}
|
|
242
|
-
export namespace
|
|
248
|
+
export namespace radio_group {
|
|
243
249
|
const isEdit_13: boolean;
|
|
244
250
|
export { isEdit_13 as isEdit };
|
|
245
|
-
export const isFilter: boolean;
|
|
246
|
-
const description_13: string;
|
|
247
|
-
export { description_13 as description };
|
|
248
251
|
const configFields_8: {
|
|
249
252
|
type: string;
|
|
250
253
|
name: string;
|
|
251
254
|
label: string;
|
|
252
255
|
}[];
|
|
253
256
|
export { configFields_8 as configFields };
|
|
257
|
+
const description_13: string;
|
|
258
|
+
export { description_13 as description };
|
|
254
259
|
export function run_13(nm: any, v: any, attrs: any, cls: any, required: any, field: any): any;
|
|
255
260
|
export { run_13 as run };
|
|
256
261
|
}
|
|
257
|
-
export namespace
|
|
262
|
+
export namespace checkbox_group {
|
|
258
263
|
const isEdit_14: boolean;
|
|
259
264
|
export { isEdit_14 as isEdit };
|
|
260
|
-
const
|
|
261
|
-
export { blockDisplay_5 as blockDisplay };
|
|
265
|
+
export const isFilter: boolean;
|
|
262
266
|
const description_14: string;
|
|
263
267
|
export { description_14 as description };
|
|
268
|
+
const configFields_9: {
|
|
269
|
+
type: string;
|
|
270
|
+
name: string;
|
|
271
|
+
label: string;
|
|
272
|
+
}[];
|
|
273
|
+
export { configFields_9 as configFields };
|
|
264
274
|
export function run_14(nm: any, v: any, attrs: any, cls: any, required: any, field: any): any;
|
|
265
275
|
export { run_14 as run };
|
|
266
276
|
}
|
|
277
|
+
export namespace password {
|
|
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
|
+
export function run_15(nm: any, v: any, attrs: any, cls: any, required: any, field: any): any;
|
|
285
|
+
export { run_15 as run };
|
|
286
|
+
}
|
|
267
287
|
}
|
|
268
288
|
function read(v: any): string | undefined;
|
|
269
289
|
namespace presets {
|
|
@@ -301,66 +321,66 @@ export namespace int {
|
|
|
301
321
|
}
|
|
302
322
|
export namespace fieldviews_1 {
|
|
303
323
|
export namespace show {
|
|
304
|
-
const isEdit_15: boolean;
|
|
305
|
-
export { isEdit_15 as isEdit };
|
|
306
|
-
const description_15: string;
|
|
307
|
-
export { description_15 as description };
|
|
308
|
-
export function run_15(s: any): string;
|
|
309
|
-
export { run_15 as run };
|
|
310
|
-
}
|
|
311
|
-
export namespace edit_1 {
|
|
312
324
|
const isEdit_16: boolean;
|
|
313
325
|
export { isEdit_16 as isEdit };
|
|
314
|
-
const blockDisplay_6: boolean;
|
|
315
|
-
export { blockDisplay_6 as blockDisplay };
|
|
316
326
|
const description_16: string;
|
|
317
327
|
export { description_16 as description };
|
|
318
|
-
|
|
328
|
+
export function run_16(s: any): string;
|
|
329
|
+
export { run_16 as run };
|
|
330
|
+
}
|
|
331
|
+
export namespace edit_1 {
|
|
332
|
+
const isEdit_17: boolean;
|
|
333
|
+
export { isEdit_17 as isEdit };
|
|
334
|
+
const blockDisplay_6: boolean;
|
|
335
|
+
export { blockDisplay_6 as blockDisplay };
|
|
336
|
+
const description_17: string;
|
|
337
|
+
export { description_17 as description };
|
|
338
|
+
const configFields_10: {
|
|
319
339
|
name: string;
|
|
320
340
|
label: string;
|
|
321
341
|
type: string;
|
|
322
342
|
}[];
|
|
323
|
-
export {
|
|
324
|
-
export function
|
|
325
|
-
export {
|
|
343
|
+
export { configFields_10 as configFields };
|
|
344
|
+
export function run_17(nm: any, v: any, attrs: any, cls: any, required: any, field: any): any;
|
|
345
|
+
export { run_17 as run };
|
|
326
346
|
}
|
|
327
347
|
export { edit_1 as edit };
|
|
328
348
|
export namespace number_slider {
|
|
329
|
-
export function
|
|
349
|
+
export function configFields_11(field: any): {
|
|
330
350
|
name: string;
|
|
331
351
|
type: any;
|
|
332
352
|
required: boolean;
|
|
333
353
|
}[];
|
|
334
|
-
export {
|
|
335
|
-
const
|
|
336
|
-
export {
|
|
337
|
-
const
|
|
338
|
-
export {
|
|
354
|
+
export { configFields_11 as configFields };
|
|
355
|
+
const isEdit_18: boolean;
|
|
356
|
+
export { isEdit_18 as isEdit };
|
|
357
|
+
const description_18: string;
|
|
358
|
+
export { description_18 as description };
|
|
339
359
|
const blockDisplay_7: boolean;
|
|
340
360
|
export { blockDisplay_7 as blockDisplay };
|
|
341
|
-
export function
|
|
342
|
-
export {
|
|
361
|
+
export function run_18(nm: any, v: any, attrs: {} | undefined, cls: any, required: any, field: any): any;
|
|
362
|
+
export { run_18 as run };
|
|
343
363
|
}
|
|
344
364
|
export namespace range_interval {
|
|
345
|
-
export function
|
|
365
|
+
export function configFields_12(field: any): {
|
|
346
366
|
name: string;
|
|
347
367
|
type: any;
|
|
348
368
|
required: boolean;
|
|
349
369
|
}[];
|
|
350
|
-
export {
|
|
351
|
-
const
|
|
352
|
-
export {
|
|
370
|
+
export { configFields_12 as configFields };
|
|
371
|
+
const isEdit_19: boolean;
|
|
372
|
+
export { isEdit_19 as isEdit };
|
|
353
373
|
const isFilter_1: boolean;
|
|
354
374
|
export { isFilter_1 as isFilter };
|
|
355
375
|
const blockDisplay_8: boolean;
|
|
356
376
|
export { blockDisplay_8 as blockDisplay };
|
|
357
|
-
const
|
|
358
|
-
export {
|
|
359
|
-
export function
|
|
360
|
-
export {
|
|
377
|
+
const description_19: string;
|
|
378
|
+
export { description_19 as description };
|
|
379
|
+
export function run_19(nm: any, v: any, attrs: {} | undefined, cls: any, required: any, field: any, state?: {}): any;
|
|
380
|
+
export { run_19 as run };
|
|
361
381
|
}
|
|
362
382
|
export namespace progress_bar {
|
|
363
|
-
export function
|
|
383
|
+
export function configFields_13(field: any): ({
|
|
364
384
|
name: string;
|
|
365
385
|
type: string;
|
|
366
386
|
label: string;
|
|
@@ -399,16 +419,16 @@ export namespace int {
|
|
|
399
419
|
showIf?: undefined;
|
|
400
420
|
class?: undefined;
|
|
401
421
|
})[];
|
|
402
|
-
export {
|
|
403
|
-
const
|
|
404
|
-
export {
|
|
405
|
-
const
|
|
406
|
-
export {
|
|
407
|
-
export function
|
|
408
|
-
export {
|
|
422
|
+
export { configFields_13 as configFields };
|
|
423
|
+
const isEdit_20: boolean;
|
|
424
|
+
export { isEdit_20 as isEdit };
|
|
425
|
+
const description_20: string;
|
|
426
|
+
export { description_20 as description };
|
|
427
|
+
export function run_20(v: any, req: any, attrs?: {}): any;
|
|
428
|
+
export { run_20 as run };
|
|
409
429
|
}
|
|
410
430
|
export namespace heat_cell {
|
|
411
|
-
export function
|
|
431
|
+
export function configFields_14(field: any): ({
|
|
412
432
|
name: string;
|
|
413
433
|
type: string;
|
|
414
434
|
label: string;
|
|
@@ -460,77 +480,77 @@ export namespace int {
|
|
|
460
480
|
class?: undefined;
|
|
461
481
|
attributes?: undefined;
|
|
462
482
|
})[];
|
|
463
|
-
export {
|
|
464
|
-
const isEdit_20: boolean;
|
|
465
|
-
export { isEdit_20 as isEdit };
|
|
466
|
-
const description_20: string;
|
|
467
|
-
export { description_20 as description };
|
|
468
|
-
export function run_20(v: any, req: any, attrs?: {}): any;
|
|
469
|
-
export { run_20 as run };
|
|
470
|
-
}
|
|
471
|
-
export namespace above_input {
|
|
483
|
+
export { configFields_14 as configFields };
|
|
472
484
|
const isEdit_21: boolean;
|
|
473
485
|
export { isEdit_21 as isEdit };
|
|
486
|
+
const description_21: string;
|
|
487
|
+
export { description_21 as description };
|
|
488
|
+
export function run_21(v: any, req: any, attrs?: {}): any;
|
|
489
|
+
export { run_21 as run };
|
|
490
|
+
}
|
|
491
|
+
export namespace above_input {
|
|
492
|
+
const isEdit_22: boolean;
|
|
493
|
+
export { isEdit_22 as isEdit };
|
|
474
494
|
const isFilter_2: boolean;
|
|
475
495
|
export { isFilter_2 as isFilter };
|
|
476
496
|
const blockDisplay_9: boolean;
|
|
477
497
|
export { blockDisplay_9 as blockDisplay };
|
|
478
|
-
const
|
|
498
|
+
const configFields_15: {
|
|
479
499
|
name: string;
|
|
480
500
|
label: string;
|
|
481
501
|
type: string;
|
|
482
502
|
}[];
|
|
483
|
-
export {
|
|
484
|
-
export function
|
|
485
|
-
export {
|
|
503
|
+
export { configFields_15 as configFields };
|
|
504
|
+
export function run_22(nm: any, v: any, attrs: {} | undefined, cls: any, required: any, field: any, state?: {}): any;
|
|
505
|
+
export { run_22 as run };
|
|
486
506
|
}
|
|
487
507
|
export namespace below_input { }
|
|
488
508
|
export { show_with_html };
|
|
489
509
|
export namespace show_star_rating {
|
|
490
|
-
const
|
|
491
|
-
export {
|
|
492
|
-
export function
|
|
510
|
+
const description_22: string;
|
|
511
|
+
export { description_22 as description };
|
|
512
|
+
export function configFields_16(field: any): {
|
|
493
513
|
name: string;
|
|
494
514
|
type: string;
|
|
495
515
|
required: boolean;
|
|
496
516
|
default: number;
|
|
497
517
|
}[];
|
|
498
|
-
export {
|
|
499
|
-
const
|
|
500
|
-
export {
|
|
518
|
+
export { configFields_16 as configFields };
|
|
519
|
+
const isEdit_23: boolean;
|
|
520
|
+
export { isEdit_23 as isEdit };
|
|
501
521
|
const blockDisplay_10: boolean;
|
|
502
522
|
export { blockDisplay_10 as blockDisplay };
|
|
503
|
-
export function
|
|
504
|
-
export {
|
|
523
|
+
export function run_23(v: any, req: any, attrs?: {}): any;
|
|
524
|
+
export { run_23 as run };
|
|
505
525
|
}
|
|
506
526
|
export namespace edit_star_rating {
|
|
507
|
-
const
|
|
508
|
-
export {
|
|
509
|
-
export function
|
|
527
|
+
const description_23: string;
|
|
528
|
+
export { description_23 as description };
|
|
529
|
+
export function configFields_17(field: any): {
|
|
510
530
|
name: string;
|
|
511
531
|
type: string;
|
|
512
532
|
required: boolean;
|
|
513
533
|
default: number;
|
|
514
534
|
}[];
|
|
515
|
-
export {
|
|
516
|
-
const
|
|
517
|
-
export {
|
|
535
|
+
export { configFields_17 as configFields };
|
|
536
|
+
const isEdit_24: boolean;
|
|
537
|
+
export { isEdit_24 as isEdit };
|
|
518
538
|
const blockDisplay_11: boolean;
|
|
519
539
|
export { blockDisplay_11 as blockDisplay };
|
|
520
|
-
export function
|
|
521
|
-
export {
|
|
540
|
+
export function run_24(nm: any, v: any, attrs: {} | undefined, cls: any, required: any, field: any, state?: {}): any;
|
|
541
|
+
export { run_24 as run };
|
|
522
542
|
}
|
|
523
543
|
export { to_locale_string };
|
|
524
544
|
export namespace role_select {
|
|
525
|
-
const
|
|
526
|
-
export {
|
|
545
|
+
const isEdit_25: boolean;
|
|
546
|
+
export { isEdit_25 as isEdit };
|
|
527
547
|
const blockDisplay_12: boolean;
|
|
528
548
|
export { blockDisplay_12 as blockDisplay };
|
|
529
|
-
const
|
|
530
|
-
export {
|
|
549
|
+
const description_24: string;
|
|
550
|
+
export { description_24 as description };
|
|
531
551
|
export function fill_options(field: any): Promise<void>;
|
|
532
|
-
export function
|
|
533
|
-
export {
|
|
552
|
+
export function run_25(nm: any, v: any, attrs: any, cls: any, required: any, field: any): any;
|
|
553
|
+
export { run_25 as run };
|
|
534
554
|
}
|
|
535
555
|
}
|
|
536
556
|
export { fieldviews_1 as fieldviews };
|
|
@@ -554,36 +574,36 @@ export namespace bool {
|
|
|
554
574
|
export { contract_2 as contract };
|
|
555
575
|
export namespace fieldviews_2 {
|
|
556
576
|
export namespace show_1 {
|
|
557
|
-
const isEdit_25: boolean;
|
|
558
|
-
export { isEdit_25 as isEdit };
|
|
559
|
-
const description_24: string;
|
|
560
|
-
export { description_24 as description };
|
|
561
|
-
export function run_25(v: any, req: any): any;
|
|
562
|
-
export { run_25 as run };
|
|
563
|
-
}
|
|
564
|
-
export { show_1 as show };
|
|
565
|
-
export namespace checkboxes {
|
|
566
577
|
const isEdit_26: boolean;
|
|
567
578
|
export { isEdit_26 as isEdit };
|
|
568
579
|
const description_25: string;
|
|
569
580
|
export { description_25 as description };
|
|
570
|
-
export function run_26(v: any): any;
|
|
581
|
+
export function run_26(v: any, req: any): any;
|
|
571
582
|
export { run_26 as run };
|
|
572
583
|
}
|
|
573
|
-
export
|
|
584
|
+
export { show_1 as show };
|
|
585
|
+
export namespace checkboxes {
|
|
574
586
|
const isEdit_27: boolean;
|
|
575
587
|
export { isEdit_27 as isEdit };
|
|
576
588
|
const description_26: string;
|
|
577
589
|
export { description_26 as description };
|
|
578
|
-
export function run_27(v: any):
|
|
590
|
+
export function run_27(v: any): any;
|
|
579
591
|
export { run_27 as run };
|
|
580
592
|
}
|
|
581
|
-
export namespace
|
|
593
|
+
export namespace TrueFalse {
|
|
582
594
|
const isEdit_28: boolean;
|
|
583
595
|
export { isEdit_28 as isEdit };
|
|
584
596
|
const description_27: string;
|
|
585
597
|
export { description_27 as description };
|
|
586
|
-
|
|
598
|
+
export function run_28(v: any): "" | "True" | "False";
|
|
599
|
+
export { run_28 as run };
|
|
600
|
+
}
|
|
601
|
+
export namespace edit_2 {
|
|
602
|
+
const isEdit_29: boolean;
|
|
603
|
+
export { isEdit_29 as isEdit };
|
|
604
|
+
const description_28: string;
|
|
605
|
+
export { description_28 as description };
|
|
606
|
+
const configFields_18: ({
|
|
587
607
|
name: string;
|
|
588
608
|
label: string;
|
|
589
609
|
type: string;
|
|
@@ -596,34 +616,34 @@ export namespace bool {
|
|
|
596
616
|
type: string;
|
|
597
617
|
attributes?: undefined;
|
|
598
618
|
})[];
|
|
599
|
-
export {
|
|
600
|
-
export function run_28(nm: any, v: any, attrs: any, cls: any, required: any, field: any): any;
|
|
601
|
-
export { run_28 as run };
|
|
602
|
-
}
|
|
603
|
-
export { edit_2 as edit };
|
|
604
|
-
export namespace _switch {
|
|
605
|
-
const isEdit_29: boolean;
|
|
606
|
-
export { isEdit_29 as isEdit };
|
|
607
|
-
const description_28: string;
|
|
608
|
-
export { description_28 as description };
|
|
619
|
+
export { configFields_18 as configFields };
|
|
609
620
|
export function run_29(nm: any, v: any, attrs: any, cls: any, required: any, field: any): any;
|
|
610
621
|
export { run_29 as run };
|
|
611
622
|
}
|
|
612
|
-
export {
|
|
613
|
-
export
|
|
614
|
-
export namespace tristate {
|
|
623
|
+
export { edit_2 as edit };
|
|
624
|
+
export namespace _switch {
|
|
615
625
|
const isEdit_30: boolean;
|
|
616
626
|
export { isEdit_30 as isEdit };
|
|
617
627
|
const description_29: string;
|
|
618
628
|
export { description_29 as description };
|
|
619
|
-
|
|
629
|
+
export function run_30(nm: any, v: any, attrs: any, cls: any, required: any, field: any): any;
|
|
630
|
+
export { run_30 as run };
|
|
631
|
+
}
|
|
632
|
+
export { _switch as switch };
|
|
633
|
+
export { show_with_html };
|
|
634
|
+
export namespace tristate {
|
|
635
|
+
const isEdit_31: boolean;
|
|
636
|
+
export { isEdit_31 as isEdit };
|
|
637
|
+
const description_30: string;
|
|
638
|
+
export { description_30 as description };
|
|
639
|
+
const configFields_19: {
|
|
620
640
|
name: string;
|
|
621
641
|
label: string;
|
|
622
642
|
type: string;
|
|
623
643
|
}[];
|
|
624
|
-
export {
|
|
625
|
-
export function
|
|
626
|
-
export {
|
|
644
|
+
export { configFields_19 as configFields };
|
|
645
|
+
export function run_31(nm: any, v: any, attrs: any, cls: any, required: any, field: any): any;
|
|
646
|
+
export { run_31 as run };
|
|
627
647
|
}
|
|
628
648
|
}
|
|
629
649
|
export { fieldviews_2 as fieldviews };
|
|
@@ -650,46 +670,38 @@ export namespace date {
|
|
|
650
670
|
export { attributes_3 as attributes };
|
|
651
671
|
export namespace fieldviews_3 {
|
|
652
672
|
export namespace show_2 {
|
|
653
|
-
const isEdit_31: boolean;
|
|
654
|
-
export { isEdit_31 as isEdit };
|
|
655
|
-
const description_30: string;
|
|
656
|
-
export { description_30 as description };
|
|
657
|
-
export function run_31(d: any, req: any, attrs?: {}): any;
|
|
658
|
-
export { run_31 as run };
|
|
659
|
-
}
|
|
660
|
-
export { show_2 as show };
|
|
661
|
-
export namespace showDay {
|
|
662
673
|
const isEdit_32: boolean;
|
|
663
674
|
export { isEdit_32 as isEdit };
|
|
664
675
|
const description_31: string;
|
|
665
676
|
export { description_31 as description };
|
|
666
|
-
export function run_32(d: any, req: any): any;
|
|
677
|
+
export function run_32(d: any, req: any, attrs?: {}): any;
|
|
667
678
|
export { run_32 as run };
|
|
668
679
|
}
|
|
669
|
-
export
|
|
680
|
+
export { show_2 as show };
|
|
681
|
+
export namespace showDay {
|
|
670
682
|
const isEdit_33: boolean;
|
|
671
683
|
export { isEdit_33 as isEdit };
|
|
672
684
|
const description_32: string;
|
|
673
685
|
export { description_32 as description };
|
|
674
|
-
|
|
675
|
-
name: string;
|
|
676
|
-
label: string;
|
|
677
|
-
type: string;
|
|
678
|
-
sublabel: string;
|
|
679
|
-
}[];
|
|
680
|
-
export { configFields_19 as configFields };
|
|
681
|
-
export function run_33(d: any, req: any, options: any): any;
|
|
686
|
+
export function run_33(d: any, req: any): any;
|
|
682
687
|
export { run_33 as run };
|
|
683
688
|
}
|
|
684
|
-
export namespace
|
|
689
|
+
export namespace format {
|
|
685
690
|
const isEdit_34: boolean;
|
|
686
691
|
export { isEdit_34 as isEdit };
|
|
687
692
|
const description_33: string;
|
|
688
693
|
export { description_33 as description };
|
|
689
|
-
|
|
694
|
+
const configFields_20: {
|
|
695
|
+
name: string;
|
|
696
|
+
label: string;
|
|
697
|
+
type: string;
|
|
698
|
+
sublabel: string;
|
|
699
|
+
}[];
|
|
700
|
+
export { configFields_20 as configFields };
|
|
701
|
+
export function run_34(d: any, req: any, options: any): any;
|
|
690
702
|
export { run_34 as run };
|
|
691
703
|
}
|
|
692
|
-
export namespace
|
|
704
|
+
export namespace relative {
|
|
693
705
|
const isEdit_35: boolean;
|
|
694
706
|
export { isEdit_35 as isEdit };
|
|
695
707
|
const description_34: string;
|
|
@@ -697,28 +709,36 @@ export namespace date {
|
|
|
697
709
|
export function run_35(d: any, req: any): string;
|
|
698
710
|
export { run_35 as run };
|
|
699
711
|
}
|
|
700
|
-
export
|
|
701
|
-
export namespace edit_3 {
|
|
712
|
+
export namespace yearsAgo {
|
|
702
713
|
const isEdit_36: boolean;
|
|
703
714
|
export { isEdit_36 as isEdit };
|
|
704
|
-
const blockDisplay_13: boolean;
|
|
705
|
-
export { blockDisplay_13 as blockDisplay };
|
|
706
715
|
const description_35: string;
|
|
707
716
|
export { description_35 as description };
|
|
708
|
-
export function run_36(
|
|
717
|
+
export function run_36(d: any, req: any): string;
|
|
709
718
|
export { run_36 as run };
|
|
710
719
|
}
|
|
711
|
-
export {
|
|
712
|
-
export namespace
|
|
720
|
+
export { show_with_html };
|
|
721
|
+
export namespace edit_3 {
|
|
713
722
|
const isEdit_37: boolean;
|
|
714
723
|
export { isEdit_37 as isEdit };
|
|
715
|
-
const
|
|
716
|
-
export {
|
|
724
|
+
const blockDisplay_13: boolean;
|
|
725
|
+
export { blockDisplay_13 as blockDisplay };
|
|
717
726
|
const description_36: string;
|
|
718
727
|
export { description_36 as description };
|
|
719
728
|
export function run_37(nm: any, v: any, attrs: any, cls: any, required: any, field: any): any;
|
|
720
729
|
export { run_37 as run };
|
|
721
730
|
}
|
|
731
|
+
export { edit_3 as edit };
|
|
732
|
+
export namespace editDay {
|
|
733
|
+
const isEdit_38: boolean;
|
|
734
|
+
export { isEdit_38 as isEdit };
|
|
735
|
+
const blockDisplay_14: boolean;
|
|
736
|
+
export { blockDisplay_14 as blockDisplay };
|
|
737
|
+
const description_37: string;
|
|
738
|
+
export { description_37 as description };
|
|
739
|
+
export function run_38(nm: any, v: any, attrs: any, cls: any, required: any, field: any): any;
|
|
740
|
+
export { run_38 as run };
|
|
741
|
+
}
|
|
722
742
|
}
|
|
723
743
|
export { fieldviews_3 as fieldviews };
|
|
724
744
|
export namespace presets_1 {
|
|
@@ -753,29 +773,29 @@ export namespace float {
|
|
|
753
773
|
export { distance_operators_1 as distance_operators };
|
|
754
774
|
export namespace fieldviews_4 {
|
|
755
775
|
export namespace show_3 {
|
|
756
|
-
const
|
|
757
|
-
export {
|
|
758
|
-
const
|
|
759
|
-
export {
|
|
760
|
-
export function
|
|
761
|
-
export {
|
|
776
|
+
const isEdit_39: boolean;
|
|
777
|
+
export { isEdit_39 as isEdit };
|
|
778
|
+
const description_38: string;
|
|
779
|
+
export { description_38 as description };
|
|
780
|
+
export function run_39(s: any): string;
|
|
781
|
+
export { run_39 as run };
|
|
762
782
|
}
|
|
763
783
|
export { show_3 as show };
|
|
764
784
|
export namespace edit_4 {
|
|
765
|
-
const
|
|
766
|
-
export {
|
|
785
|
+
const isEdit_40: boolean;
|
|
786
|
+
export { isEdit_40 as isEdit };
|
|
767
787
|
const blockDisplay_15: boolean;
|
|
768
788
|
export { blockDisplay_15 as blockDisplay };
|
|
769
|
-
const
|
|
770
|
-
export {
|
|
771
|
-
const
|
|
789
|
+
const description_39: string;
|
|
790
|
+
export { description_39 as description };
|
|
791
|
+
const configFields_21: {
|
|
772
792
|
name: string;
|
|
773
793
|
label: string;
|
|
774
794
|
type: string;
|
|
775
795
|
}[];
|
|
776
|
-
export {
|
|
777
|
-
export function
|
|
778
|
-
export {
|
|
796
|
+
export { configFields_21 as configFields };
|
|
797
|
+
export function run_40(nm: any, v: any, attrs: any, cls: any, required: any, field: any): any;
|
|
798
|
+
export { run_40 as run };
|
|
779
799
|
}
|
|
780
800
|
export { edit_4 as edit };
|
|
781
801
|
export namespace number_slider_1 { }
|
|
@@ -787,14 +807,14 @@ export namespace float {
|
|
|
787
807
|
export namespace heat_cell_1 { }
|
|
788
808
|
export { heat_cell_1 as heat_cell };
|
|
789
809
|
export namespace above_input_1 {
|
|
790
|
-
const
|
|
791
|
-
export {
|
|
810
|
+
const isEdit_41: boolean;
|
|
811
|
+
export { isEdit_41 as isEdit };
|
|
792
812
|
const isFilter_3: boolean;
|
|
793
813
|
export { isFilter_3 as isFilter };
|
|
794
814
|
const blockDisplay_16: boolean;
|
|
795
815
|
export { blockDisplay_16 as blockDisplay };
|
|
796
|
-
export function
|
|
797
|
-
export {
|
|
816
|
+
export function run_41(nm: any, v: any, attrs: {} | undefined, cls: any, required: any, field: any, state?: {}): any;
|
|
817
|
+
export { run_41 as run };
|
|
798
818
|
}
|
|
799
819
|
export { above_input_1 as above_input };
|
|
800
820
|
export namespace below_input_1 { }
|
|
@@ -821,24 +841,24 @@ export namespace color {
|
|
|
821
841
|
export { contract_5 as contract };
|
|
822
842
|
export namespace fieldviews_5 {
|
|
823
843
|
export namespace show_4 {
|
|
824
|
-
const
|
|
825
|
-
export {
|
|
826
|
-
const
|
|
827
|
-
export {
|
|
828
|
-
export function
|
|
829
|
-
export {
|
|
844
|
+
const isEdit_42: boolean;
|
|
845
|
+
export { isEdit_42 as isEdit };
|
|
846
|
+
const description_40: string;
|
|
847
|
+
export { description_40 as description };
|
|
848
|
+
export function run_42(s: any): any;
|
|
849
|
+
export { run_42 as run };
|
|
830
850
|
}
|
|
831
851
|
export { show_4 as show };
|
|
832
852
|
export { show_with_html };
|
|
833
853
|
export namespace edit_5 {
|
|
834
|
-
const
|
|
835
|
-
export {
|
|
854
|
+
const isEdit_43: boolean;
|
|
855
|
+
export { isEdit_43 as isEdit };
|
|
836
856
|
const blockDisplay_17: boolean;
|
|
837
857
|
export { blockDisplay_17 as blockDisplay };
|
|
838
|
-
const
|
|
839
|
-
export {
|
|
840
|
-
export function
|
|
841
|
-
export {
|
|
858
|
+
const description_41: string;
|
|
859
|
+
export { description_41 as description };
|
|
860
|
+
export function run_43(nm: any, v: any, attrs: any, cls: any, required: any, field: any): any;
|
|
861
|
+
export { run_43 as run };
|
|
842
862
|
}
|
|
843
863
|
export { edit_5 as edit };
|
|
844
864
|
}
|
|
@@ -851,7 +871,7 @@ export namespace color {
|
|
|
851
871
|
export { validate_5 as validate };
|
|
852
872
|
}
|
|
853
873
|
declare namespace show_with_html {
|
|
854
|
-
const
|
|
874
|
+
const configFields_22: {
|
|
855
875
|
input_type: string;
|
|
856
876
|
name: string;
|
|
857
877
|
label: string;
|
|
@@ -861,18 +881,18 @@ declare namespace show_with_html {
|
|
|
861
881
|
mode: string;
|
|
862
882
|
};
|
|
863
883
|
}[];
|
|
864
|
-
export {
|
|
865
|
-
const
|
|
866
|
-
export {
|
|
867
|
-
const description_41: string;
|
|
868
|
-
export { description_41 as description };
|
|
869
|
-
export function run_43(v: any, req: any, attrs?: {}): any;
|
|
870
|
-
export { run_43 as run };
|
|
871
|
-
}
|
|
872
|
-
declare namespace to_locale_string {
|
|
884
|
+
export { configFields_22 as configFields };
|
|
885
|
+
const isEdit_44: boolean;
|
|
886
|
+
export { isEdit_44 as isEdit };
|
|
873
887
|
const description_42: string;
|
|
874
888
|
export { description_42 as description };
|
|
875
|
-
export function
|
|
889
|
+
export function run_44(v: any, req: any, attrs?: {}): any;
|
|
890
|
+
export { run_44 as run };
|
|
891
|
+
}
|
|
892
|
+
declare namespace to_locale_string {
|
|
893
|
+
const description_43: string;
|
|
894
|
+
export { description_43 as description };
|
|
895
|
+
export function configFields_23(field: any): ({
|
|
876
896
|
type: string;
|
|
877
897
|
name: string;
|
|
878
898
|
label: string;
|
|
@@ -913,11 +933,11 @@ declare namespace to_locale_string {
|
|
|
913
933
|
};
|
|
914
934
|
sublabel?: undefined;
|
|
915
935
|
})[];
|
|
916
|
-
export {
|
|
917
|
-
const
|
|
918
|
-
export {
|
|
919
|
-
export function
|
|
920
|
-
export {
|
|
936
|
+
export { configFields_23 as configFields };
|
|
937
|
+
const isEdit_45: boolean;
|
|
938
|
+
export { isEdit_45 as isEdit };
|
|
939
|
+
export function run_45(v: any, req: any, attrs?: {}): string;
|
|
940
|
+
export { run_45 as run };
|
|
921
941
|
}
|
|
922
942
|
export {};
|
|
923
943
|
//# sourceMappingURL=types.d.ts.map
|