@tachybase/plugin-field-formula 0.23.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,645 @@
1
+ import { CollectionFieldInterface } from '@tachybase/client';
2
+ export declare class FormulaFieldInterface extends CollectionFieldInterface {
3
+ name: string;
4
+ type: string;
5
+ group: string;
6
+ order: number;
7
+ title: string;
8
+ description: string;
9
+ sortable: boolean;
10
+ default: {
11
+ type: string;
12
+ uiSchema: {
13
+ type: string;
14
+ 'x-component': string;
15
+ 'x-component-props': {
16
+ stringMode: boolean;
17
+ step: string;
18
+ };
19
+ 'x-read-pretty': boolean;
20
+ };
21
+ };
22
+ properties: {
23
+ engine: {
24
+ type: string;
25
+ title: string;
26
+ 'x-decorator': string;
27
+ 'x-component': string;
28
+ enum: any[];
29
+ required: boolean;
30
+ default: string;
31
+ };
32
+ expression: {
33
+ type: string;
34
+ title: string;
35
+ required: boolean;
36
+ 'x-component': string;
37
+ 'x-decorator': string;
38
+ 'x-component-props': {
39
+ supports: string[];
40
+ useCurrentFields: string;
41
+ };
42
+ 'x-reactions': {
43
+ dependencies: string[];
44
+ fulfill: {
45
+ schema: {
46
+ description: string;
47
+ };
48
+ };
49
+ };
50
+ "x-validator"(value: any, rules: any, { form }: {
51
+ form: any;
52
+ }): string;
53
+ };
54
+ 'uiSchema.x-component-props.dateFormat': {
55
+ 'x-reactions': {
56
+ dependencies: string[];
57
+ fulfill: {
58
+ state: {
59
+ display: string;
60
+ };
61
+ };
62
+ }[];
63
+ version?: string | (string & {});
64
+ name?: import("packages/schema/lib").SchemaKey | (string & {});
65
+ title?: any;
66
+ description?: any;
67
+ default?: any;
68
+ readOnly?: boolean | (string & {});
69
+ writeOnly?: boolean | (string & {});
70
+ type?: import("packages/schema/lib").SchemaTypes;
71
+ enum?: (string & {}) | import("packages/schema/lib").SchemaEnum<any>;
72
+ const?: any;
73
+ multipleOf?: number | (string & {});
74
+ maximum?: number | (string & {});
75
+ exclusiveMaximum?: number | (string & {});
76
+ minimum?: number | (string & {});
77
+ exclusiveMinimum?: number | (string & {});
78
+ maxLength?: number | (string & {});
79
+ minLength?: number | (string & {});
80
+ pattern?: string | RegExp | (string & {});
81
+ maxItems?: number | (string & {});
82
+ minItems?: number | (string & {});
83
+ uniqueItems?: boolean | (string & {});
84
+ maxProperties?: number | (string & {});
85
+ minProperties?: number | (string & {});
86
+ required?: string | boolean | string[] | (string & {});
87
+ format?: string | (string & {});
88
+ $ref?: string | (string & {});
89
+ $namespace?: string | (string & {});
90
+ definitions?: (string & {}) | import("packages/schema/lib").SchemaProperties<any, any, any, any, any, any, any, any>;
91
+ properties?: (string & {}) | import("packages/schema/lib").SchemaProperties<any, any, any, any, any, any, any, any>;
92
+ items?: (string & {}) | import("packages/schema/lib").SchemaItems<any, any, any, any, any, any, any, any>;
93
+ additionalItems?: (string & {}) | import("packages/schema/lib").Stringify<{
94
+ [key: symbol]: any;
95
+ [key: `x-${string}`]: any;
96
+ [key: `x-${number}`]: any;
97
+ version?: string;
98
+ name?: import("packages/schema/lib").SchemaKey;
99
+ title?: any;
100
+ description?: any;
101
+ default?: any;
102
+ readOnly?: boolean;
103
+ writeOnly?: boolean;
104
+ type?: import("packages/schema/lib").SchemaTypes;
105
+ enum?: import("packages/schema/lib").SchemaEnum<any>;
106
+ const?: any;
107
+ multipleOf?: number;
108
+ maximum?: number;
109
+ exclusiveMaximum?: number;
110
+ minimum?: number;
111
+ exclusiveMinimum?: number;
112
+ maxLength?: number;
113
+ minLength?: number;
114
+ pattern?: string | RegExp;
115
+ maxItems?: number;
116
+ minItems?: number;
117
+ uniqueItems?: boolean;
118
+ maxProperties?: number;
119
+ minProperties?: number;
120
+ required?: string[] | boolean | string;
121
+ format?: string;
122
+ $ref?: string;
123
+ $namespace?: string;
124
+ definitions?: import("packages/schema/lib").SchemaProperties<any, any, any, any, any, any, any, any>;
125
+ properties?: import("packages/schema/lib").SchemaProperties<any, any, any, any, any, any, any, any>;
126
+ items?: import("packages/schema/lib").SchemaItems<any, any, any, any, any, any, any, any>;
127
+ additionalItems?: import("packages/schema/lib").Stringify</*elided*/ any>;
128
+ patternProperties?: import("packages/schema/lib").SchemaProperties<any, any, any, any, any, any, any, any>;
129
+ additionalProperties?: import("packages/schema/lib").Stringify</*elided*/ any>;
130
+ "x-value"?: any;
131
+ "x-index"?: number;
132
+ "x-pattern"?: any;
133
+ "x-display"?: any;
134
+ "x-validator"?: any;
135
+ "x-decorator"?: any;
136
+ "x-decorator-props"?: any;
137
+ "x-component"?: any;
138
+ "x-component-props"?: any;
139
+ "x-reactions"?: import("packages/schema/lib").SchemaReactions<any>;
140
+ "x-content"?: any;
141
+ "x-data"?: any;
142
+ "x-visible"?: boolean;
143
+ "x-hidden"?: boolean;
144
+ "x-disabled"?: boolean;
145
+ "x-editable"?: boolean;
146
+ "x-read-only"?: boolean;
147
+ "x-read-pretty"?: boolean;
148
+ "x-compile-omitted"?: string[];
149
+ }>;
150
+ patternProperties?: (string & {}) | import("packages/schema/lib").SchemaProperties<any, any, any, any, any, any, any, any>;
151
+ additionalProperties?: (string & {}) | import("packages/schema/lib").Stringify<{
152
+ [key: symbol]: any;
153
+ [key: `x-${string}`]: any;
154
+ [key: `x-${number}`]: any;
155
+ version?: string;
156
+ name?: import("packages/schema/lib").SchemaKey;
157
+ title?: any;
158
+ description?: any;
159
+ default?: any;
160
+ readOnly?: boolean;
161
+ writeOnly?: boolean;
162
+ type?: import("packages/schema/lib").SchemaTypes;
163
+ enum?: import("packages/schema/lib").SchemaEnum<any>;
164
+ const?: any;
165
+ multipleOf?: number;
166
+ maximum?: number;
167
+ exclusiveMaximum?: number;
168
+ minimum?: number;
169
+ exclusiveMinimum?: number;
170
+ maxLength?: number;
171
+ minLength?: number;
172
+ pattern?: string | RegExp;
173
+ maxItems?: number;
174
+ minItems?: number;
175
+ uniqueItems?: boolean;
176
+ maxProperties?: number;
177
+ minProperties?: number;
178
+ required?: string[] | boolean | string;
179
+ format?: string;
180
+ $ref?: string;
181
+ $namespace?: string;
182
+ definitions?: import("packages/schema/lib").SchemaProperties<any, any, any, any, any, any, any, any>;
183
+ properties?: import("packages/schema/lib").SchemaProperties<any, any, any, any, any, any, any, any>;
184
+ items?: import("packages/schema/lib").SchemaItems<any, any, any, any, any, any, any, any>;
185
+ additionalItems?: import("packages/schema/lib").Stringify</*elided*/ any>;
186
+ patternProperties?: import("packages/schema/lib").SchemaProperties<any, any, any, any, any, any, any, any>;
187
+ additionalProperties?: import("packages/schema/lib").Stringify</*elided*/ any>;
188
+ "x-value"?: any;
189
+ "x-index"?: number;
190
+ "x-pattern"?: any;
191
+ "x-display"?: any;
192
+ "x-validator"?: any;
193
+ "x-decorator"?: any;
194
+ "x-decorator-props"?: any;
195
+ "x-component"?: any;
196
+ "x-component-props"?: any;
197
+ "x-reactions"?: import("packages/schema/lib").SchemaReactions<any>;
198
+ "x-content"?: any;
199
+ "x-data"?: any;
200
+ "x-visible"?: boolean;
201
+ "x-hidden"?: boolean;
202
+ "x-disabled"?: boolean;
203
+ "x-editable"?: boolean;
204
+ "x-read-only"?: boolean;
205
+ "x-read-pretty"?: boolean;
206
+ "x-compile-omitted"?: string[];
207
+ }>;
208
+ "x-value"?: any;
209
+ "x-index"?: number | (string & {});
210
+ "x-pattern"?: any;
211
+ "x-display"?: any;
212
+ "x-validator"?: any;
213
+ "x-decorator"?: any;
214
+ "x-decorator-props"?: any;
215
+ "x-component"?: any;
216
+ "x-component-props"?: any;
217
+ "x-content"?: any;
218
+ "x-data"?: any;
219
+ "x-visible"?: boolean | (string & {});
220
+ "x-hidden"?: boolean | (string & {});
221
+ "x-disabled"?: boolean | (string & {});
222
+ "x-editable"?: boolean | (string & {});
223
+ "x-read-only"?: boolean | (string & {});
224
+ "x-read-pretty"?: boolean | (string & {});
225
+ "x-compile-omitted"?: string[] | (string & {});
226
+ };
227
+ 'uiSchema.x-component-props.showTime': {
228
+ 'x-reactions': (string | {
229
+ dependencies: string[];
230
+ fulfill: {
231
+ state: {
232
+ display: string;
233
+ };
234
+ };
235
+ })[];
236
+ version?: string | (string & {});
237
+ name?: import("packages/schema/lib").SchemaKey | (string & {});
238
+ title?: any;
239
+ description?: any;
240
+ default?: any;
241
+ readOnly?: boolean | (string & {});
242
+ writeOnly?: boolean | (string & {});
243
+ type?: import("packages/schema/lib").SchemaTypes;
244
+ enum?: (string & {}) | import("packages/schema/lib").SchemaEnum<any>;
245
+ const?: any;
246
+ multipleOf?: number | (string & {});
247
+ maximum?: number | (string & {});
248
+ exclusiveMaximum?: number | (string & {});
249
+ minimum?: number | (string & {});
250
+ exclusiveMinimum?: number | (string & {});
251
+ maxLength?: number | (string & {});
252
+ minLength?: number | (string & {});
253
+ pattern?: string | RegExp | (string & {});
254
+ maxItems?: number | (string & {});
255
+ minItems?: number | (string & {});
256
+ uniqueItems?: boolean | (string & {});
257
+ maxProperties?: number | (string & {});
258
+ minProperties?: number | (string & {});
259
+ required?: string | boolean | string[] | (string & {});
260
+ format?: string | (string & {});
261
+ $ref?: string | (string & {});
262
+ $namespace?: string | (string & {});
263
+ definitions?: (string & {}) | import("packages/schema/lib").SchemaProperties<any, any, any, any, any, any, any, any>;
264
+ properties?: (string & {}) | import("packages/schema/lib").SchemaProperties<any, any, any, any, any, any, any, any>;
265
+ items?: (string & {}) | import("packages/schema/lib").SchemaItems<any, any, any, any, any, any, any, any>;
266
+ additionalItems?: (string & {}) | import("packages/schema/lib").Stringify<{
267
+ [key: symbol]: any;
268
+ [key: `x-${string}`]: any;
269
+ [key: `x-${number}`]: any;
270
+ version?: string;
271
+ name?: import("packages/schema/lib").SchemaKey;
272
+ title?: any;
273
+ description?: any;
274
+ default?: any;
275
+ readOnly?: boolean;
276
+ writeOnly?: boolean;
277
+ type?: import("packages/schema/lib").SchemaTypes;
278
+ enum?: import("packages/schema/lib").SchemaEnum<any>;
279
+ const?: any;
280
+ multipleOf?: number;
281
+ maximum?: number;
282
+ exclusiveMaximum?: number;
283
+ minimum?: number;
284
+ exclusiveMinimum?: number;
285
+ maxLength?: number;
286
+ minLength?: number;
287
+ pattern?: string | RegExp;
288
+ maxItems?: number;
289
+ minItems?: number;
290
+ uniqueItems?: boolean;
291
+ maxProperties?: number;
292
+ minProperties?: number;
293
+ required?: string[] | boolean | string;
294
+ format?: string;
295
+ $ref?: string;
296
+ $namespace?: string;
297
+ definitions?: import("packages/schema/lib").SchemaProperties<any, any, any, any, any, any, any, any>;
298
+ properties?: import("packages/schema/lib").SchemaProperties<any, any, any, any, any, any, any, any>;
299
+ items?: import("packages/schema/lib").SchemaItems<any, any, any, any, any, any, any, any>;
300
+ additionalItems?: import("packages/schema/lib").Stringify</*elided*/ any>;
301
+ patternProperties?: import("packages/schema/lib").SchemaProperties<any, any, any, any, any, any, any, any>;
302
+ additionalProperties?: import("packages/schema/lib").Stringify</*elided*/ any>;
303
+ "x-value"?: any;
304
+ "x-index"?: number;
305
+ "x-pattern"?: any;
306
+ "x-display"?: any;
307
+ "x-validator"?: any;
308
+ "x-decorator"?: any;
309
+ "x-decorator-props"?: any;
310
+ "x-component"?: any;
311
+ "x-component-props"?: any;
312
+ "x-reactions"?: import("packages/schema/lib").SchemaReactions<any>;
313
+ "x-content"?: any;
314
+ "x-data"?: any;
315
+ "x-visible"?: boolean;
316
+ "x-hidden"?: boolean;
317
+ "x-disabled"?: boolean;
318
+ "x-editable"?: boolean;
319
+ "x-read-only"?: boolean;
320
+ "x-read-pretty"?: boolean;
321
+ "x-compile-omitted"?: string[];
322
+ }>;
323
+ patternProperties?: (string & {}) | import("packages/schema/lib").SchemaProperties<any, any, any, any, any, any, any, any>;
324
+ additionalProperties?: (string & {}) | import("packages/schema/lib").Stringify<{
325
+ [key: symbol]: any;
326
+ [key: `x-${string}`]: any;
327
+ [key: `x-${number}`]: any;
328
+ version?: string;
329
+ name?: import("packages/schema/lib").SchemaKey;
330
+ title?: any;
331
+ description?: any;
332
+ default?: any;
333
+ readOnly?: boolean;
334
+ writeOnly?: boolean;
335
+ type?: import("packages/schema/lib").SchemaTypes;
336
+ enum?: import("packages/schema/lib").SchemaEnum<any>;
337
+ const?: any;
338
+ multipleOf?: number;
339
+ maximum?: number;
340
+ exclusiveMaximum?: number;
341
+ minimum?: number;
342
+ exclusiveMinimum?: number;
343
+ maxLength?: number;
344
+ minLength?: number;
345
+ pattern?: string | RegExp;
346
+ maxItems?: number;
347
+ minItems?: number;
348
+ uniqueItems?: boolean;
349
+ maxProperties?: number;
350
+ minProperties?: number;
351
+ required?: string[] | boolean | string;
352
+ format?: string;
353
+ $ref?: string;
354
+ $namespace?: string;
355
+ definitions?: import("packages/schema/lib").SchemaProperties<any, any, any, any, any, any, any, any>;
356
+ properties?: import("packages/schema/lib").SchemaProperties<any, any, any, any, any, any, any, any>;
357
+ items?: import("packages/schema/lib").SchemaItems<any, any, any, any, any, any, any, any>;
358
+ additionalItems?: import("packages/schema/lib").Stringify</*elided*/ any>;
359
+ patternProperties?: import("packages/schema/lib").SchemaProperties<any, any, any, any, any, any, any, any>;
360
+ additionalProperties?: import("packages/schema/lib").Stringify</*elided*/ any>;
361
+ "x-value"?: any;
362
+ "x-index"?: number;
363
+ "x-pattern"?: any;
364
+ "x-display"?: any;
365
+ "x-validator"?: any;
366
+ "x-decorator"?: any;
367
+ "x-decorator-props"?: any;
368
+ "x-component"?: any;
369
+ "x-component-props"?: any;
370
+ "x-reactions"?: import("packages/schema/lib").SchemaReactions<any>;
371
+ "x-content"?: any;
372
+ "x-data"?: any;
373
+ "x-visible"?: boolean;
374
+ "x-hidden"?: boolean;
375
+ "x-disabled"?: boolean;
376
+ "x-editable"?: boolean;
377
+ "x-read-only"?: boolean;
378
+ "x-read-pretty"?: boolean;
379
+ "x-compile-omitted"?: string[];
380
+ }>;
381
+ "x-value"?: any;
382
+ "x-index"?: number | (string & {});
383
+ "x-pattern"?: any;
384
+ "x-display"?: any;
385
+ "x-validator"?: any;
386
+ "x-decorator"?: any;
387
+ "x-decorator-props"?: any;
388
+ "x-component"?: any;
389
+ "x-component-props"?: any;
390
+ "x-content"?: any;
391
+ "x-data"?: any;
392
+ "x-visible"?: boolean | (string & {});
393
+ "x-hidden"?: boolean | (string & {});
394
+ "x-disabled"?: boolean | (string & {});
395
+ "x-editable"?: boolean | (string & {});
396
+ "x-read-only"?: boolean | (string & {});
397
+ "x-read-pretty"?: boolean | (string & {});
398
+ "x-compile-omitted"?: string[] | (string & {});
399
+ };
400
+ 'uiSchema.x-component-props.timeFormat': {
401
+ [x: symbol]: any;
402
+ [x: `x-${string}`]: any;
403
+ [x: `x-${number}`]: any;
404
+ version?: string | (string & {});
405
+ name?: import("packages/schema/lib").SchemaKey | (string & {});
406
+ title?: any;
407
+ description?: any;
408
+ default?: any;
409
+ readOnly?: boolean | (string & {});
410
+ writeOnly?: boolean | (string & {});
411
+ type?: import("packages/schema/lib").SchemaTypes;
412
+ enum?: (string & {}) | import("packages/schema/lib").SchemaEnum<any>;
413
+ const?: any;
414
+ multipleOf?: number | (string & {});
415
+ maximum?: number | (string & {});
416
+ exclusiveMaximum?: number | (string & {});
417
+ minimum?: number | (string & {});
418
+ exclusiveMinimum?: number | (string & {});
419
+ maxLength?: number | (string & {});
420
+ minLength?: number | (string & {});
421
+ pattern?: string | RegExp | (string & {});
422
+ maxItems?: number | (string & {});
423
+ minItems?: number | (string & {});
424
+ uniqueItems?: boolean | (string & {});
425
+ maxProperties?: number | (string & {});
426
+ minProperties?: number | (string & {});
427
+ required?: string | boolean | string[] | (string & {});
428
+ format?: string | (string & {});
429
+ $ref?: string | (string & {});
430
+ $namespace?: string | (string & {});
431
+ definitions?: (string & {}) | import("packages/schema/lib").SchemaProperties<any, any, any, any, any, any, any, any>;
432
+ properties?: (string & {}) | import("packages/schema/lib").SchemaProperties<any, any, any, any, any, any, any, any>;
433
+ items?: (string & {}) | import("packages/schema/lib").SchemaItems<any, any, any, any, any, any, any, any>;
434
+ additionalItems?: (string & {}) | import("packages/schema/lib").Stringify<{
435
+ [key: symbol]: any;
436
+ [key: `x-${string}`]: any;
437
+ [key: `x-${number}`]: any;
438
+ version?: string;
439
+ name?: import("packages/schema/lib").SchemaKey;
440
+ title?: any;
441
+ description?: any;
442
+ default?: any;
443
+ readOnly?: boolean;
444
+ writeOnly?: boolean;
445
+ type?: import("packages/schema/lib").SchemaTypes;
446
+ enum?: import("packages/schema/lib").SchemaEnum<any>;
447
+ const?: any;
448
+ multipleOf?: number;
449
+ maximum?: number;
450
+ exclusiveMaximum?: number;
451
+ minimum?: number;
452
+ exclusiveMinimum?: number;
453
+ maxLength?: number;
454
+ minLength?: number;
455
+ pattern?: string | RegExp;
456
+ maxItems?: number;
457
+ minItems?: number;
458
+ uniqueItems?: boolean;
459
+ maxProperties?: number;
460
+ minProperties?: number;
461
+ required?: string[] | boolean | string;
462
+ format?: string;
463
+ $ref?: string;
464
+ $namespace?: string;
465
+ definitions?: import("packages/schema/lib").SchemaProperties<any, any, any, any, any, any, any, any>;
466
+ properties?: import("packages/schema/lib").SchemaProperties<any, any, any, any, any, any, any, any>;
467
+ items?: import("packages/schema/lib").SchemaItems<any, any, any, any, any, any, any, any>;
468
+ additionalItems?: import("packages/schema/lib").Stringify</*elided*/ any>;
469
+ patternProperties?: import("packages/schema/lib").SchemaProperties<any, any, any, any, any, any, any, any>;
470
+ additionalProperties?: import("packages/schema/lib").Stringify</*elided*/ any>;
471
+ "x-value"?: any;
472
+ "x-index"?: number;
473
+ "x-pattern"?: any;
474
+ "x-display"?: any;
475
+ "x-validator"?: any;
476
+ "x-decorator"?: any;
477
+ "x-decorator-props"?: any;
478
+ "x-component"?: any;
479
+ "x-component-props"?: any;
480
+ "x-reactions"?: import("packages/schema/lib").SchemaReactions<any>;
481
+ "x-content"?: any;
482
+ "x-data"?: any;
483
+ "x-visible"?: boolean;
484
+ "x-hidden"?: boolean;
485
+ "x-disabled"?: boolean;
486
+ "x-editable"?: boolean;
487
+ "x-read-only"?: boolean;
488
+ "x-read-pretty"?: boolean;
489
+ "x-compile-omitted"?: string[];
490
+ }>;
491
+ patternProperties?: (string & {}) | import("packages/schema/lib").SchemaProperties<any, any, any, any, any, any, any, any>;
492
+ additionalProperties?: (string & {}) | import("packages/schema/lib").Stringify<{
493
+ [key: symbol]: any;
494
+ [key: `x-${string}`]: any;
495
+ [key: `x-${number}`]: any;
496
+ version?: string;
497
+ name?: import("packages/schema/lib").SchemaKey;
498
+ title?: any;
499
+ description?: any;
500
+ default?: any;
501
+ readOnly?: boolean;
502
+ writeOnly?: boolean;
503
+ type?: import("packages/schema/lib").SchemaTypes;
504
+ enum?: import("packages/schema/lib").SchemaEnum<any>;
505
+ const?: any;
506
+ multipleOf?: number;
507
+ maximum?: number;
508
+ exclusiveMaximum?: number;
509
+ minimum?: number;
510
+ exclusiveMinimum?: number;
511
+ maxLength?: number;
512
+ minLength?: number;
513
+ pattern?: string | RegExp;
514
+ maxItems?: number;
515
+ minItems?: number;
516
+ uniqueItems?: boolean;
517
+ maxProperties?: number;
518
+ minProperties?: number;
519
+ required?: string[] | boolean | string;
520
+ format?: string;
521
+ $ref?: string;
522
+ $namespace?: string;
523
+ definitions?: import("packages/schema/lib").SchemaProperties<any, any, any, any, any, any, any, any>;
524
+ properties?: import("packages/schema/lib").SchemaProperties<any, any, any, any, any, any, any, any>;
525
+ items?: import("packages/schema/lib").SchemaItems<any, any, any, any, any, any, any, any>;
526
+ additionalItems?: import("packages/schema/lib").Stringify</*elided*/ any>;
527
+ patternProperties?: import("packages/schema/lib").SchemaProperties<any, any, any, any, any, any, any, any>;
528
+ additionalProperties?: import("packages/schema/lib").Stringify</*elided*/ any>;
529
+ "x-value"?: any;
530
+ "x-index"?: number;
531
+ "x-pattern"?: any;
532
+ "x-display"?: any;
533
+ "x-validator"?: any;
534
+ "x-decorator"?: any;
535
+ "x-decorator-props"?: any;
536
+ "x-component"?: any;
537
+ "x-component-props"?: any;
538
+ "x-reactions"?: import("packages/schema/lib").SchemaReactions<any>;
539
+ "x-content"?: any;
540
+ "x-data"?: any;
541
+ "x-visible"?: boolean;
542
+ "x-hidden"?: boolean;
543
+ "x-disabled"?: boolean;
544
+ "x-editable"?: boolean;
545
+ "x-read-only"?: boolean;
546
+ "x-read-pretty"?: boolean;
547
+ "x-compile-omitted"?: string[];
548
+ }>;
549
+ "x-value"?: any;
550
+ "x-index"?: number | (string & {});
551
+ "x-pattern"?: any;
552
+ "x-display"?: any;
553
+ "x-validator"?: any;
554
+ "x-decorator"?: any;
555
+ "x-decorator-props"?: any;
556
+ "x-component"?: any;
557
+ "x-component-props"?: any;
558
+ "x-reactions"?: (string & {}) | import("packages/schema/lib").SchemaReactions<any>;
559
+ "x-content"?: any;
560
+ "x-data"?: any;
561
+ "x-visible"?: boolean | (string & {});
562
+ "x-hidden"?: boolean | (string & {});
563
+ "x-disabled"?: boolean | (string & {});
564
+ "x-editable"?: boolean | (string & {});
565
+ "x-read-only"?: boolean | (string & {});
566
+ "x-read-pretty"?: boolean | (string & {});
567
+ "x-compile-omitted"?: string[] | (string & {});
568
+ };
569
+ dataType: {
570
+ type: string;
571
+ title: string;
572
+ 'x-decorator': string;
573
+ 'x-component': string;
574
+ 'x-disabled': string;
575
+ enum: {
576
+ value: string;
577
+ label: string;
578
+ }[];
579
+ required: boolean;
580
+ default: string;
581
+ };
582
+ 'uiSchema.x-component-props.addonAfter': {
583
+ type: string;
584
+ title: string;
585
+ 'x-decorator': string;
586
+ 'x-component': string;
587
+ };
588
+ 'uiSchema.x-component-props.step': {
589
+ type: string;
590
+ title: string;
591
+ 'x-component': string;
592
+ 'x-decorator': string;
593
+ required: boolean;
594
+ default: string;
595
+ enum: {
596
+ value: string;
597
+ label: string;
598
+ }[];
599
+ 'x-reactions': {
600
+ dependencies: string[];
601
+ fulfill: {
602
+ state: {
603
+ display: string;
604
+ };
605
+ };
606
+ }[];
607
+ };
608
+ 'uiSchema.title': {
609
+ type: string;
610
+ title: string;
611
+ required: boolean;
612
+ "x-decorator": string;
613
+ "x-component": string;
614
+ };
615
+ name: {
616
+ type: string;
617
+ title: string;
618
+ required: boolean;
619
+ "x-disabled": string;
620
+ "x-decorator": string;
621
+ "x-component": string;
622
+ "x-validator": string;
623
+ description: string;
624
+ };
625
+ };
626
+ filterable: {
627
+ operators: ({
628
+ label: string;
629
+ value: string;
630
+ selected: boolean;
631
+ noValue?: undefined;
632
+ } | {
633
+ label: string;
634
+ value: string;
635
+ selected?: undefined;
636
+ noValue?: undefined;
637
+ } | {
638
+ label: string;
639
+ value: string;
640
+ noValue: boolean;
641
+ selected?: undefined;
642
+ })[];
643
+ };
644
+ titleUsable: boolean;
645
+ }
@@ -0,0 +1,3 @@
1
+ export declare const NAMESPACE = "field-formula";
2
+ export declare function lang(key: string, options?: {}): string;
3
+ export declare function usePluginTranslation(): import("react-i18next").UseTranslationResponse<"field-formula", undefined>;
@@ -0,0 +1,2 @@
1
+ import React from 'react';
2
+ export declare function renderExpressionDescription(key: string): React.JSX.Element;
@@ -0,0 +1,10 @@
1
+ module.exports = {
2
+ "@tachybase/client": "0.23.8",
3
+ "react": "18.3.1",
4
+ "@tachybase/evaluators": "0.23.8",
5
+ "@tachybase/utils": "0.23.8",
6
+ "@tachybase/database": "0.23.8",
7
+ "@tachybase/server": "0.23.8",
8
+ "react-i18next": "15.2.0",
9
+ "@tachybase/schema": "0.23.8"
10
+ };
@@ -0,0 +1,2 @@
1
+ export * from './server';
2
+ export { default } from './server';