@saltcorn/data 0.8.7-beta.3 → 0.8.7-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 +149 -79
- package/dist/base-plugin/index.d.ts.map +1 -1
- package/dist/base-plugin/types.d.ts +123 -83
- package/dist/base-plugin/types.d.ts.map +1 -1
- package/dist/base-plugin/types.js +41 -0
- package/dist/base-plugin/types.js.map +1 -1
- package/dist/base-plugin/viewtemplates/edit.d.ts.map +1 -1
- package/dist/base-plugin/viewtemplates/edit.js +22 -6
- package/dist/base-plugin/viewtemplates/edit.js.map +1 -1
- package/dist/base-plugin/viewtemplates/filter.d.ts.map +1 -1
- package/dist/base-plugin/viewtemplates/filter.js +5 -4
- package/dist/base-plugin/viewtemplates/filter.js.map +1 -1
- package/dist/base-plugin/viewtemplates/show.d.ts.map +1 -1
- package/dist/base-plugin/viewtemplates/show.js +1 -1
- package/dist/base-plugin/viewtemplates/show.js.map +1 -1
- package/dist/models/config.d.ts.map +1 -1
- package/dist/models/config.js +5 -0
- package/dist/models/config.js.map +1 -1
- package/dist/models/field.d.ts.map +1 -1
- package/dist/models/field.js +1 -1
- package/dist/models/field.js.map +1 -1
- package/dist/models/file.d.ts.map +1 -1
- package/dist/models/file.js +13 -6
- package/dist/models/file.js.map +1 -1
- package/package.json +7 -7
|
@@ -236,6 +236,41 @@ export const types: ({
|
|
|
236
236
|
isEdit: boolean;
|
|
237
237
|
run: (v: any, req: any, attrs?: {}) => any;
|
|
238
238
|
};
|
|
239
|
+
heat_cell: {
|
|
240
|
+
configFields: (field: any) => ({
|
|
241
|
+
name: string;
|
|
242
|
+
type: any;
|
|
243
|
+
required: boolean;
|
|
244
|
+
label?: undefined;
|
|
245
|
+
attributes?: undefined;
|
|
246
|
+
default?: undefined;
|
|
247
|
+
} | {
|
|
248
|
+
name: string;
|
|
249
|
+
type: string;
|
|
250
|
+
label: string;
|
|
251
|
+
required: boolean;
|
|
252
|
+
attributes: {
|
|
253
|
+
options: string[];
|
|
254
|
+
};
|
|
255
|
+
default?: undefined;
|
|
256
|
+
} | {
|
|
257
|
+
name: string;
|
|
258
|
+
type: string;
|
|
259
|
+
label: string;
|
|
260
|
+
required?: undefined;
|
|
261
|
+
attributes?: undefined;
|
|
262
|
+
default?: undefined;
|
|
263
|
+
} | {
|
|
264
|
+
name: string;
|
|
265
|
+
type: string;
|
|
266
|
+
label: string;
|
|
267
|
+
default: number;
|
|
268
|
+
required?: undefined;
|
|
269
|
+
attributes?: undefined;
|
|
270
|
+
})[];
|
|
271
|
+
isEdit: boolean;
|
|
272
|
+
run: (v: any, req: any, attrs?: {}) => any;
|
|
273
|
+
};
|
|
239
274
|
above_input: {
|
|
240
275
|
isEdit: boolean;
|
|
241
276
|
isFilter: boolean;
|
|
@@ -292,90 +327,16 @@ export const types: ({
|
|
|
292
327
|
fieldviews: {
|
|
293
328
|
show: {
|
|
294
329
|
isEdit: boolean;
|
|
295
|
-
run: (
|
|
296
|
-
};
|
|
297
|
-
checkboxes: {
|
|
298
|
-
isEdit: boolean;
|
|
299
|
-
run: (v: any) => any;
|
|
300
|
-
};
|
|
301
|
-
TrueFalse: {
|
|
302
|
-
isEdit: boolean;
|
|
303
|
-
run: (v: any) => "" | "True" | "False";
|
|
304
|
-
};
|
|
305
|
-
edit: {
|
|
306
|
-
isEdit: boolean;
|
|
307
|
-
configFields: {
|
|
308
|
-
name: string;
|
|
309
|
-
label: string;
|
|
310
|
-
type: string;
|
|
311
|
-
attributes: {
|
|
312
|
-
options: string[];
|
|
313
|
-
};
|
|
314
|
-
}[];
|
|
315
|
-
run: (nm: any, v: any, attrs: any, cls: any, required: any, field: any) => any;
|
|
316
|
-
};
|
|
317
|
-
switch: {
|
|
318
|
-
isEdit: boolean;
|
|
319
|
-
run: (nm: any, v: any, attrs: any, cls: any, required: any, field: any) => any;
|
|
320
|
-
};
|
|
321
|
-
tristate: {
|
|
322
|
-
isEdit: boolean;
|
|
323
|
-
run: (nm: any, v: any, attrs: any, cls: any, required: any, field: any) => any;
|
|
324
|
-
};
|
|
325
|
-
};
|
|
326
|
-
attributes: object[];
|
|
327
|
-
readFromFormRecord: (rec: any, name: string) => boolean | null;
|
|
328
|
-
read: (v: object) => boolean | null;
|
|
329
|
-
readFromDB: (v: object) => object;
|
|
330
|
-
listAs: (v: object) => object;
|
|
331
|
-
validate: () => boolean;
|
|
332
|
-
} | {
|
|
333
|
-
name: string;
|
|
334
|
-
sql_name: string;
|
|
335
|
-
contract: () => Function;
|
|
336
|
-
attributes: object[];
|
|
337
|
-
fieldviews: {
|
|
338
|
-
show: {
|
|
339
|
-
isEdit: boolean;
|
|
340
|
-
run: (d: any, req: any) => any;
|
|
341
|
-
};
|
|
342
|
-
showDay: {
|
|
343
|
-
isEdit: boolean;
|
|
344
|
-
run: (d: any, req: any) => any;
|
|
345
|
-
};
|
|
346
|
-
format: {
|
|
347
|
-
isEdit: boolean;
|
|
348
|
-
configFields: {
|
|
349
|
-
name: string;
|
|
350
|
-
label: string;
|
|
351
|
-
type: string;
|
|
352
|
-
sublabel: string;
|
|
353
|
-
}[];
|
|
354
|
-
run: (d: any, req: any, options: any) => any;
|
|
355
|
-
};
|
|
356
|
-
relative: {
|
|
357
|
-
isEdit: boolean;
|
|
358
|
-
run: (d: any, req: any) => string;
|
|
359
|
-
};
|
|
360
|
-
yearsAgo: {
|
|
361
|
-
isEdit: boolean;
|
|
362
|
-
run: (d: any, req: any) => string;
|
|
330
|
+
run: (s: any) => any;
|
|
363
331
|
};
|
|
364
332
|
edit: {
|
|
365
333
|
isEdit: boolean;
|
|
366
334
|
blockDisplay: boolean;
|
|
367
335
|
run: (nm: any, v: any, attrs: any, cls: any, required: any, field: any) => any;
|
|
368
336
|
};
|
|
369
|
-
editDay: {
|
|
370
|
-
isEdit: boolean;
|
|
371
|
-
blockDisplay: boolean;
|
|
372
|
-
run: (nm: any, v: any, attrs: any, cls: any, required: any, field: any) => any;
|
|
373
|
-
};
|
|
374
|
-
};
|
|
375
|
-
presets: {
|
|
376
|
-
Now: () => Date;
|
|
377
337
|
};
|
|
378
|
-
|
|
338
|
+
attributes: object[];
|
|
339
|
+
read: (v: object) => object;
|
|
379
340
|
validate: () => boolean;
|
|
380
341
|
} | {
|
|
381
342
|
name: string;
|
|
@@ -430,6 +391,41 @@ export const types: ({
|
|
|
430
391
|
isEdit: boolean;
|
|
431
392
|
run: (v: any, req: any, attrs?: {}) => any;
|
|
432
393
|
};
|
|
394
|
+
heat_cell: {
|
|
395
|
+
configFields: (field: any) => ({
|
|
396
|
+
name: string;
|
|
397
|
+
type: any;
|
|
398
|
+
required: boolean;
|
|
399
|
+
label?: undefined;
|
|
400
|
+
attributes?: undefined;
|
|
401
|
+
default?: undefined;
|
|
402
|
+
} | {
|
|
403
|
+
name: string;
|
|
404
|
+
type: string;
|
|
405
|
+
label: string;
|
|
406
|
+
required: boolean;
|
|
407
|
+
attributes: {
|
|
408
|
+
options: string[];
|
|
409
|
+
};
|
|
410
|
+
default?: undefined;
|
|
411
|
+
} | {
|
|
412
|
+
name: string;
|
|
413
|
+
type: string;
|
|
414
|
+
label: string;
|
|
415
|
+
required?: undefined;
|
|
416
|
+
attributes?: undefined;
|
|
417
|
+
default?: undefined;
|
|
418
|
+
} | {
|
|
419
|
+
name: string;
|
|
420
|
+
type: string;
|
|
421
|
+
label: string;
|
|
422
|
+
default: number;
|
|
423
|
+
required?: undefined;
|
|
424
|
+
attributes?: undefined;
|
|
425
|
+
})[];
|
|
426
|
+
isEdit: boolean;
|
|
427
|
+
run: (v: any, req: any, attrs?: {}) => any;
|
|
428
|
+
};
|
|
433
429
|
above_input: {
|
|
434
430
|
isEdit: boolean;
|
|
435
431
|
isFilter: boolean;
|
|
@@ -450,19 +446,93 @@ export const types: ({
|
|
|
450
446
|
name: string;
|
|
451
447
|
sql_name: string;
|
|
452
448
|
contract: () => Function;
|
|
449
|
+
attributes: object[];
|
|
453
450
|
fieldviews: {
|
|
454
451
|
show: {
|
|
455
452
|
isEdit: boolean;
|
|
456
|
-
run: (
|
|
453
|
+
run: (d: any, req: any) => any;
|
|
454
|
+
};
|
|
455
|
+
showDay: {
|
|
456
|
+
isEdit: boolean;
|
|
457
|
+
run: (d: any, req: any) => any;
|
|
458
|
+
};
|
|
459
|
+
format: {
|
|
460
|
+
isEdit: boolean;
|
|
461
|
+
configFields: {
|
|
462
|
+
name: string;
|
|
463
|
+
label: string;
|
|
464
|
+
type: string;
|
|
465
|
+
sublabel: string;
|
|
466
|
+
}[];
|
|
467
|
+
run: (d: any, req: any, options: any) => any;
|
|
468
|
+
};
|
|
469
|
+
relative: {
|
|
470
|
+
isEdit: boolean;
|
|
471
|
+
run: (d: any, req: any) => string;
|
|
472
|
+
};
|
|
473
|
+
yearsAgo: {
|
|
474
|
+
isEdit: boolean;
|
|
475
|
+
run: (d: any, req: any) => string;
|
|
457
476
|
};
|
|
458
477
|
edit: {
|
|
459
478
|
isEdit: boolean;
|
|
460
479
|
blockDisplay: boolean;
|
|
461
480
|
run: (nm: any, v: any, attrs: any, cls: any, required: any, field: any) => any;
|
|
462
481
|
};
|
|
482
|
+
editDay: {
|
|
483
|
+
isEdit: boolean;
|
|
484
|
+
blockDisplay: boolean;
|
|
485
|
+
run: (nm: any, v: any, attrs: any, cls: any, required: any, field: any) => any;
|
|
486
|
+
};
|
|
487
|
+
};
|
|
488
|
+
presets: {
|
|
489
|
+
Now: () => Date;
|
|
490
|
+
};
|
|
491
|
+
read: (v: object, attrs: object) => object;
|
|
492
|
+
validate: () => boolean;
|
|
493
|
+
} | {
|
|
494
|
+
name: string;
|
|
495
|
+
sql_name: string;
|
|
496
|
+
contract: () => Function;
|
|
497
|
+
fieldviews: {
|
|
498
|
+
show: {
|
|
499
|
+
isEdit: boolean;
|
|
500
|
+
run: (v: any) => any;
|
|
501
|
+
};
|
|
502
|
+
checkboxes: {
|
|
503
|
+
isEdit: boolean;
|
|
504
|
+
run: (v: any) => any;
|
|
505
|
+
};
|
|
506
|
+
TrueFalse: {
|
|
507
|
+
isEdit: boolean;
|
|
508
|
+
run: (v: any) => "" | "True" | "False";
|
|
509
|
+
};
|
|
510
|
+
edit: {
|
|
511
|
+
isEdit: boolean;
|
|
512
|
+
configFields: {
|
|
513
|
+
name: string;
|
|
514
|
+
label: string;
|
|
515
|
+
type: string;
|
|
516
|
+
attributes: {
|
|
517
|
+
options: string[];
|
|
518
|
+
};
|
|
519
|
+
}[];
|
|
520
|
+
run: (nm: any, v: any, attrs: any, cls: any, required: any, field: any) => any;
|
|
521
|
+
};
|
|
522
|
+
switch: {
|
|
523
|
+
isEdit: boolean;
|
|
524
|
+
run: (nm: any, v: any, attrs: any, cls: any, required: any, field: any) => any;
|
|
525
|
+
};
|
|
526
|
+
tristate: {
|
|
527
|
+
isEdit: boolean;
|
|
528
|
+
run: (nm: any, v: any, attrs: any, cls: any, required: any, field: any) => any;
|
|
529
|
+
};
|
|
463
530
|
};
|
|
464
531
|
attributes: object[];
|
|
465
|
-
|
|
532
|
+
readFromFormRecord: (rec: any, name: string) => boolean | null;
|
|
533
|
+
read: (v: object) => boolean | null;
|
|
534
|
+
readFromDB: (v: object) => object;
|
|
535
|
+
listAs: (v: object) => object;
|
|
466
536
|
validate: () => boolean;
|
|
467
537
|
})[];
|
|
468
538
|
export const viewtemplates: ({
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../base-plugin/index.js"],"names":[],"mappings":"AAuCA
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../base-plugin/index.js"],"names":[],"mappings":"AAuCA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KAAsD;AACtD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KAA2E;;;;4CAG9D,MAAM;yCAYN,MAAM"}
|
|
@@ -292,52 +292,90 @@ export namespace int {
|
|
|
292
292
|
export function run_17(v: any, req: any, attrs?: {}): any;
|
|
293
293
|
export { run_17 as run };
|
|
294
294
|
}
|
|
295
|
-
export namespace
|
|
295
|
+
export namespace heat_cell {
|
|
296
|
+
export function configFields_10(field: any): ({
|
|
297
|
+
name: string;
|
|
298
|
+
type: any;
|
|
299
|
+
required: boolean;
|
|
300
|
+
label?: undefined;
|
|
301
|
+
attributes?: undefined;
|
|
302
|
+
default?: undefined;
|
|
303
|
+
} | {
|
|
304
|
+
name: string;
|
|
305
|
+
type: string;
|
|
306
|
+
label: string;
|
|
307
|
+
required: boolean;
|
|
308
|
+
attributes: {
|
|
309
|
+
options: string[];
|
|
310
|
+
};
|
|
311
|
+
default?: undefined;
|
|
312
|
+
} | {
|
|
313
|
+
name: string;
|
|
314
|
+
type: string;
|
|
315
|
+
label: string;
|
|
316
|
+
required?: undefined;
|
|
317
|
+
attributes?: undefined;
|
|
318
|
+
default?: undefined;
|
|
319
|
+
} | {
|
|
320
|
+
name: string;
|
|
321
|
+
type: string;
|
|
322
|
+
label: string;
|
|
323
|
+
default: number;
|
|
324
|
+
required?: undefined;
|
|
325
|
+
attributes?: undefined;
|
|
326
|
+
})[];
|
|
327
|
+
export { configFields_10 as configFields };
|
|
296
328
|
const isEdit_18: boolean;
|
|
297
329
|
export { isEdit_18 as isEdit };
|
|
330
|
+
export function run_18(v: any, req: any, attrs?: {}): any;
|
|
331
|
+
export { run_18 as run };
|
|
332
|
+
}
|
|
333
|
+
export namespace above_input {
|
|
334
|
+
const isEdit_19: boolean;
|
|
335
|
+
export { isEdit_19 as isEdit };
|
|
298
336
|
const isFilter_2: boolean;
|
|
299
337
|
export { isFilter_2 as isFilter };
|
|
300
338
|
const blockDisplay_8: boolean;
|
|
301
339
|
export { blockDisplay_8 as blockDisplay };
|
|
302
|
-
const
|
|
340
|
+
const configFields_11: {
|
|
303
341
|
name: string;
|
|
304
342
|
label: string;
|
|
305
343
|
type: string;
|
|
306
344
|
}[];
|
|
307
|
-
export {
|
|
308
|
-
export function
|
|
309
|
-
export {
|
|
345
|
+
export { configFields_11 as configFields };
|
|
346
|
+
export function run_19(nm: any, v: any, attrs: {} | undefined, cls: any, required: any, field: any, state?: {}): any;
|
|
347
|
+
export { run_19 as run };
|
|
310
348
|
}
|
|
311
349
|
export namespace below_input { }
|
|
312
350
|
export namespace show_star_rating {
|
|
313
|
-
export function
|
|
351
|
+
export function configFields_12(field: any): {
|
|
314
352
|
name: string;
|
|
315
353
|
type: string;
|
|
316
354
|
required: boolean;
|
|
317
355
|
default: number;
|
|
318
356
|
}[];
|
|
319
|
-
export {
|
|
320
|
-
const
|
|
321
|
-
export {
|
|
357
|
+
export { configFields_12 as configFields };
|
|
358
|
+
const isEdit_20: boolean;
|
|
359
|
+
export { isEdit_20 as isEdit };
|
|
322
360
|
const blockDisplay_9: boolean;
|
|
323
361
|
export { blockDisplay_9 as blockDisplay };
|
|
324
|
-
export function
|
|
325
|
-
export {
|
|
362
|
+
export function run_20(v: any, req: any, attrs?: {}): any;
|
|
363
|
+
export { run_20 as run };
|
|
326
364
|
}
|
|
327
365
|
export namespace edit_star_rating {
|
|
328
|
-
export function
|
|
366
|
+
export function configFields_13(field: any): {
|
|
329
367
|
name: string;
|
|
330
368
|
type: string;
|
|
331
369
|
required: boolean;
|
|
332
370
|
default: number;
|
|
333
371
|
}[];
|
|
334
|
-
export {
|
|
335
|
-
const
|
|
336
|
-
export {
|
|
372
|
+
export { configFields_13 as configFields };
|
|
373
|
+
const isEdit_21: boolean;
|
|
374
|
+
export { isEdit_21 as isEdit };
|
|
337
375
|
const blockDisplay_10: boolean;
|
|
338
376
|
export { blockDisplay_10 as blockDisplay };
|
|
339
|
-
export function
|
|
340
|
-
export {
|
|
377
|
+
export function run_21(nm: any, v: any, attrs: {} | undefined, cls: any, required: any, field: any, state?: {}): any;
|
|
378
|
+
export { run_21 as run };
|
|
341
379
|
}
|
|
342
380
|
}
|
|
343
381
|
export { fieldviews_1 as fieldviews };
|
|
@@ -359,28 +397,28 @@ export namespace bool {
|
|
|
359
397
|
export { contract_2 as contract };
|
|
360
398
|
export namespace fieldviews_2 {
|
|
361
399
|
export namespace show_1 {
|
|
362
|
-
const isEdit_21: boolean;
|
|
363
|
-
export { isEdit_21 as isEdit };
|
|
364
|
-
export function run_21(v: any): any;
|
|
365
|
-
export { run_21 as run };
|
|
366
|
-
}
|
|
367
|
-
export { show_1 as show };
|
|
368
|
-
export namespace checkboxes {
|
|
369
400
|
const isEdit_22: boolean;
|
|
370
401
|
export { isEdit_22 as isEdit };
|
|
371
402
|
export function run_22(v: any): any;
|
|
372
403
|
export { run_22 as run };
|
|
373
404
|
}
|
|
374
|
-
export
|
|
405
|
+
export { show_1 as show };
|
|
406
|
+
export namespace checkboxes {
|
|
375
407
|
const isEdit_23: boolean;
|
|
376
408
|
export { isEdit_23 as isEdit };
|
|
377
|
-
export function run_23(v: any):
|
|
409
|
+
export function run_23(v: any): any;
|
|
378
410
|
export { run_23 as run };
|
|
379
411
|
}
|
|
380
|
-
export namespace
|
|
412
|
+
export namespace TrueFalse {
|
|
381
413
|
const isEdit_24: boolean;
|
|
382
414
|
export { isEdit_24 as isEdit };
|
|
383
|
-
|
|
415
|
+
export function run_24(v: any): "" | "True" | "False";
|
|
416
|
+
export { run_24 as run };
|
|
417
|
+
}
|
|
418
|
+
export namespace edit_2 {
|
|
419
|
+
const isEdit_25: boolean;
|
|
420
|
+
export { isEdit_25 as isEdit };
|
|
421
|
+
const configFields_14: {
|
|
384
422
|
name: string;
|
|
385
423
|
label: string;
|
|
386
424
|
type: string;
|
|
@@ -388,24 +426,24 @@ export namespace bool {
|
|
|
388
426
|
options: string[];
|
|
389
427
|
};
|
|
390
428
|
}[];
|
|
391
|
-
export {
|
|
392
|
-
export function run_24(nm: any, v: any, attrs: any, cls: any, required: any, field: any): any;
|
|
393
|
-
export { run_24 as run };
|
|
394
|
-
}
|
|
395
|
-
export { edit_2 as edit };
|
|
396
|
-
export namespace _switch {
|
|
397
|
-
const isEdit_25: boolean;
|
|
398
|
-
export { isEdit_25 as isEdit };
|
|
429
|
+
export { configFields_14 as configFields };
|
|
399
430
|
export function run_25(nm: any, v: any, attrs: any, cls: any, required: any, field: any): any;
|
|
400
431
|
export { run_25 as run };
|
|
401
432
|
}
|
|
402
|
-
export {
|
|
403
|
-
export namespace
|
|
433
|
+
export { edit_2 as edit };
|
|
434
|
+
export namespace _switch {
|
|
404
435
|
const isEdit_26: boolean;
|
|
405
436
|
export { isEdit_26 as isEdit };
|
|
406
437
|
export function run_26(nm: any, v: any, attrs: any, cls: any, required: any, field: any): any;
|
|
407
438
|
export { run_26 as run };
|
|
408
439
|
}
|
|
440
|
+
export { _switch as switch };
|
|
441
|
+
export namespace tristate {
|
|
442
|
+
const isEdit_27: boolean;
|
|
443
|
+
export { isEdit_27 as isEdit };
|
|
444
|
+
export function run_27(nm: any, v: any, attrs: any, cls: any, required: any, field: any): any;
|
|
445
|
+
export { run_27 as run };
|
|
446
|
+
}
|
|
409
447
|
}
|
|
410
448
|
export { fieldviews_2 as fieldviews };
|
|
411
449
|
const attributes_2: object[];
|
|
@@ -429,59 +467,59 @@ export namespace date {
|
|
|
429
467
|
export { attributes_3 as attributes };
|
|
430
468
|
export namespace fieldviews_3 {
|
|
431
469
|
export namespace show_2 {
|
|
432
|
-
const isEdit_27: boolean;
|
|
433
|
-
export { isEdit_27 as isEdit };
|
|
434
|
-
export function run_27(d: any, req: any): any;
|
|
435
|
-
export { run_27 as run };
|
|
436
|
-
}
|
|
437
|
-
export { show_2 as show };
|
|
438
|
-
export namespace showDay {
|
|
439
470
|
const isEdit_28: boolean;
|
|
440
471
|
export { isEdit_28 as isEdit };
|
|
441
472
|
export function run_28(d: any, req: any): any;
|
|
442
473
|
export { run_28 as run };
|
|
443
474
|
}
|
|
444
|
-
export
|
|
475
|
+
export { show_2 as show };
|
|
476
|
+
export namespace showDay {
|
|
445
477
|
const isEdit_29: boolean;
|
|
446
478
|
export { isEdit_29 as isEdit };
|
|
447
|
-
|
|
479
|
+
export function run_29(d: any, req: any): any;
|
|
480
|
+
export { run_29 as run };
|
|
481
|
+
}
|
|
482
|
+
export namespace format {
|
|
483
|
+
const isEdit_30: boolean;
|
|
484
|
+
export { isEdit_30 as isEdit };
|
|
485
|
+
const configFields_15: {
|
|
448
486
|
name: string;
|
|
449
487
|
label: string;
|
|
450
488
|
type: string;
|
|
451
489
|
sublabel: string;
|
|
452
490
|
}[];
|
|
453
|
-
export {
|
|
454
|
-
export function
|
|
455
|
-
export { run_29 as run };
|
|
456
|
-
}
|
|
457
|
-
export namespace relative {
|
|
458
|
-
const isEdit_30: boolean;
|
|
459
|
-
export { isEdit_30 as isEdit };
|
|
460
|
-
export function run_30(d: any, req: any): string;
|
|
491
|
+
export { configFields_15 as configFields };
|
|
492
|
+
export function run_30(d: any, req: any, options: any): any;
|
|
461
493
|
export { run_30 as run };
|
|
462
494
|
}
|
|
463
|
-
export namespace
|
|
495
|
+
export namespace relative {
|
|
464
496
|
const isEdit_31: boolean;
|
|
465
497
|
export { isEdit_31 as isEdit };
|
|
466
498
|
export function run_31(d: any, req: any): string;
|
|
467
499
|
export { run_31 as run };
|
|
468
500
|
}
|
|
469
|
-
export namespace
|
|
501
|
+
export namespace yearsAgo {
|
|
470
502
|
const isEdit_32: boolean;
|
|
471
503
|
export { isEdit_32 as isEdit };
|
|
504
|
+
export function run_32(d: any, req: any): string;
|
|
505
|
+
export { run_32 as run };
|
|
506
|
+
}
|
|
507
|
+
export namespace edit_3 {
|
|
508
|
+
const isEdit_33: boolean;
|
|
509
|
+
export { isEdit_33 as isEdit };
|
|
472
510
|
const blockDisplay_11: boolean;
|
|
473
511
|
export { blockDisplay_11 as blockDisplay };
|
|
474
|
-
export function
|
|
475
|
-
export {
|
|
512
|
+
export function run_33(nm: any, v: any, attrs: any, cls: any, required: any, field: any): any;
|
|
513
|
+
export { run_33 as run };
|
|
476
514
|
}
|
|
477
515
|
export { edit_3 as edit };
|
|
478
516
|
export namespace editDay {
|
|
479
|
-
const
|
|
480
|
-
export {
|
|
517
|
+
const isEdit_34: boolean;
|
|
518
|
+
export { isEdit_34 as isEdit };
|
|
481
519
|
const blockDisplay_12: boolean;
|
|
482
520
|
export { blockDisplay_12 as blockDisplay };
|
|
483
|
-
export function
|
|
484
|
-
export {
|
|
521
|
+
export function run_34(nm: any, v: any, attrs: any, cls: any, required: any, field: any): any;
|
|
522
|
+
export { run_34 as run };
|
|
485
523
|
}
|
|
486
524
|
}
|
|
487
525
|
export { fieldviews_3 as fieldviews };
|
|
@@ -506,19 +544,19 @@ export namespace float {
|
|
|
506
544
|
export { contract_4 as contract };
|
|
507
545
|
export namespace fieldviews_4 {
|
|
508
546
|
export namespace show_3 {
|
|
509
|
-
const
|
|
510
|
-
export {
|
|
511
|
-
export function
|
|
512
|
-
export {
|
|
547
|
+
const isEdit_35: boolean;
|
|
548
|
+
export { isEdit_35 as isEdit };
|
|
549
|
+
export function run_35(s: any): string;
|
|
550
|
+
export { run_35 as run };
|
|
513
551
|
}
|
|
514
552
|
export { show_3 as show };
|
|
515
553
|
export namespace edit_4 {
|
|
516
|
-
const
|
|
517
|
-
export {
|
|
554
|
+
const isEdit_36: boolean;
|
|
555
|
+
export { isEdit_36 as isEdit };
|
|
518
556
|
const blockDisplay_13: boolean;
|
|
519
557
|
export { blockDisplay_13 as blockDisplay };
|
|
520
|
-
export function
|
|
521
|
-
export {
|
|
558
|
+
export function run_36(nm: any, v: any, attrs: any, cls: any, required: any, field: any): any;
|
|
559
|
+
export { run_36 as run };
|
|
522
560
|
}
|
|
523
561
|
export { edit_4 as edit };
|
|
524
562
|
export namespace number_slider_1 { }
|
|
@@ -527,15 +565,17 @@ export namespace float {
|
|
|
527
565
|
export { range_interval_1 as range_interval };
|
|
528
566
|
export namespace progress_bar_1 { }
|
|
529
567
|
export { progress_bar_1 as progress_bar };
|
|
568
|
+
export namespace heat_cell_1 { }
|
|
569
|
+
export { heat_cell_1 as heat_cell };
|
|
530
570
|
export namespace above_input_1 {
|
|
531
|
-
const
|
|
532
|
-
export {
|
|
571
|
+
const isEdit_37: boolean;
|
|
572
|
+
export { isEdit_37 as isEdit };
|
|
533
573
|
const isFilter_3: boolean;
|
|
534
574
|
export { isFilter_3 as isFilter };
|
|
535
575
|
const blockDisplay_14: boolean;
|
|
536
576
|
export { blockDisplay_14 as blockDisplay };
|
|
537
|
-
export function
|
|
538
|
-
export {
|
|
577
|
+
export function run_37(nm: any, v: any, attrs: {} | undefined, cls: any, required: any, field: any, state?: {}): any;
|
|
578
|
+
export { run_37 as run };
|
|
539
579
|
}
|
|
540
580
|
export { above_input_1 as above_input };
|
|
541
581
|
export namespace below_input_1 { }
|
|
@@ -558,19 +598,19 @@ export namespace color {
|
|
|
558
598
|
export { contract_5 as contract };
|
|
559
599
|
export namespace fieldviews_5 {
|
|
560
600
|
export namespace show_4 {
|
|
561
|
-
const
|
|
562
|
-
export {
|
|
563
|
-
export function
|
|
564
|
-
export {
|
|
601
|
+
const isEdit_38: boolean;
|
|
602
|
+
export { isEdit_38 as isEdit };
|
|
603
|
+
export function run_38(s: any): any;
|
|
604
|
+
export { run_38 as run };
|
|
565
605
|
}
|
|
566
606
|
export { show_4 as show };
|
|
567
607
|
export namespace edit_5 {
|
|
568
|
-
const
|
|
569
|
-
export {
|
|
608
|
+
const isEdit_39: boolean;
|
|
609
|
+
export { isEdit_39 as isEdit };
|
|
570
610
|
const blockDisplay_15: boolean;
|
|
571
611
|
export { blockDisplay_15 as blockDisplay };
|
|
572
|
-
export function
|
|
573
|
-
export {
|
|
612
|
+
export function run_39(nm: any, v: any, attrs: any, cls: any, required: any, field: any): any;
|
|
613
|
+
export { run_39 as run };
|
|
574
614
|
}
|
|
575
615
|
export { edit_5 as edit };
|
|
576
616
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../base-plugin/types.js"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../base-plugin/types.js"],"names":[],"mappings":";gBA+Va,MAAM;oBAEN,MAAM;IAML,+CA6EX;IAMS;;gBAK+D;;;;YAYxC,6BAAyB;;;;;YAGjD,mCACiE;;;;;;YAIjE,mCAA+C;;;;;;;;;;;;YAiB/C,yDAGG;;;;;;YASH,yDAAmE;;;;;;YAOzC,mCAA6B;;;;;;;YAU9C;;;;;;;;;;;;;;;;;;;;;iBA8Bb;;YACI,6FAsEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;YAiDH,6FAyCF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;YAyCE,6FAqBF;;;;;;;;YAWE,6FAeF;;;;;;;;;;;;YAgBE,8FAcyB;;;;;;;;;;;;;YAYzB,8FAYoB;;;;;;;;YAWpB,8FAWD;;;;IAOF,0CAQL;;QAYK;;mBAAmB;QAMZ;;mBAAyD;;IAOpE,+FAYC;IAMkB,iFAEwB;;;kBAuBlC,MAAM;;sBAEN,MAAM;;IAQP;;;gBAAoD;;;;;;;;;YAahC,uCAAc;;;;;;;;;;;;;;YAYnC,8FAuBJ;;;;;YAr8BS;;;;gBAOb;;;;;;YAGI,yGAmBD;;;;YAGU;;;;gBAOb;;;;;;;;YAKI,qHAmCJ;;;;YAaa;;;;;;;;;;iBAUb;;;;YAEI,0DAgBF;;;;YAIW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAgBb;;;;YAEI,0DAoBJ;;;;;;;;;;;;;;;;YAUI,qHA6BJ;;;;;YAqwBiB;;;;;gBAOb;;;;;;YAGI,0DAWF;;;;YAGW;;;;;gBAOb;;;;;;YAGI,qHAsBJ;;;;;wBAGM,MAAM,EAAE;;IASE,qEACoB;;IAKnC,0CAWL;;IAMC,0DAKC;;;;kBAuZQ,MAAM;;sBAEN,MAAM;;IAKP,uCAAa;;;;;;YAcd,oCASG;;;;;;;YASH,oCAKG;;;;;;YASH,sDAAyD;;;;;;;;;;;;;;;YAmBzD,8FAgBJ;;;;;;;YAII,8FAoBJ;;;;;;;YASI,8FAqBE;;;;;wBAGA,MAAM,EAAE;;IAOC,2EAKnB;IAKK,kDAUL;;IAKW,8CAAU;IAKd,0CAAwB;IAItB,sCAAiB;;;;kBA9XhB,MAAM;;sBAEN,MAAM;;IAKP,uCAAa;;wBACZ,MAAM,EAAE;;;;;;YAeV,8CAKG;;;;;;;YASH,8CAKG;;;;;;;;;;;;;YAiBH,4DAWJ;;;;;;YASI,iDAKJ;;;;;;YASI,iDAGJ;;;;;;;;YAWI,8FAkBD;;;;;;;;;YAWC,8FAkBD;;;;;;QASD,qBAAgB;;;IAOjB,yDAWL;;IAKS,sCAA2C;;;;kBAlT1C,MAAM;;sBAEN,MAAM;;IAQP;;;iBAAmD;;;;;;YAY/B,uCAAc;;;;;;;;;YAUnC,8FAiBD;;;;;;;;;;;;;;;;;;;YA1+BH,qHAaD;;;;;;;;wBAs+BO,MAAM,EAAE;;IAWb,+DAYL;;IAMC,mEAKC;;;;kBA7KQ,MAAM;;sBAEN,MAAM;;IAKP,uCAAY;;;;;;YAcb,oCAMG;;;;;;;;;YAWH,8FAWD;;;;;;wBAGG,MAAM,EAAE;;IAMb,0CAOL;;IAIS,sCAET"}
|