@capillarytech/blaze-ui 5.4.1 → 5.6.0

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,1654 @@
1
+ /**
2
+ * CapExpressionEditor - Expression editor with grammar validation and autocomplete
3
+ */
4
+ import React from 'react';
5
+ import type { CapExpressionEditorProps } from './types';
6
+ interface CapExpressionEditorState {
7
+ expressionJSON: Record<string, unknown>;
8
+ expression: string;
9
+ isError: boolean;
10
+ refTargetId: string;
11
+ }
12
+ declare class CapExpressionEditor extends React.Component<CapExpressionEditorProps, CapExpressionEditorState> {
13
+ static displayName: string;
14
+ static defaultProps: {
15
+ grammar: {
16
+ types: {
17
+ date: {
18
+ form: string;
19
+ properties: {};
20
+ methods: {
21
+ dateDiff: {
22
+ def: {
23
+ form: string;
24
+ returnType: string;
25
+ params: {
26
+ type: string;
27
+ }[];
28
+ };
29
+ };
30
+ isNotNull: {
31
+ def: {
32
+ form: string;
33
+ returnType: string;
34
+ params: never[];
35
+ };
36
+ };
37
+ year: {
38
+ def: {
39
+ form: string;
40
+ returnType: string;
41
+ params: never[];
42
+ };
43
+ };
44
+ isValid: {
45
+ def: {
46
+ form: string;
47
+ returnType: string;
48
+ params: never[];
49
+ };
50
+ };
51
+ isHourBetween: {
52
+ def: {
53
+ form: string;
54
+ returnType: string;
55
+ params: {
56
+ type: string;
57
+ }[];
58
+ };
59
+ };
60
+ daysDiffFromString: {
61
+ def: {
62
+ form: string;
63
+ returnType: string;
64
+ params: {
65
+ type: string;
66
+ }[];
67
+ };
68
+ };
69
+ isWeekend: {
70
+ def: {
71
+ form: string;
72
+ returnType: string;
73
+ params: never[];
74
+ };
75
+ };
76
+ isTimeBetween: {
77
+ def: {
78
+ form: string;
79
+ returnType: string;
80
+ params: {
81
+ type: string;
82
+ }[];
83
+ };
84
+ };
85
+ isWeekday: {
86
+ def: {
87
+ form: string;
88
+ returnType: string;
89
+ params: never[];
90
+ };
91
+ };
92
+ month: {
93
+ def: {
94
+ form: string;
95
+ returnType: string;
96
+ params: never[];
97
+ };
98
+ };
99
+ dayOfMonth: {
100
+ def: {
101
+ form: string;
102
+ returnType: string;
103
+ params: never[];
104
+ };
105
+ };
106
+ isNull: {
107
+ def: {
108
+ form: string;
109
+ returnType: string;
110
+ params: never[];
111
+ };
112
+ };
113
+ day: {
114
+ def: {
115
+ form: string;
116
+ returnType: string;
117
+ params: never[];
118
+ };
119
+ };
120
+ isAfter: {
121
+ def: {
122
+ form: string;
123
+ returnType: string;
124
+ params: {
125
+ type: string;
126
+ }[];
127
+ };
128
+ };
129
+ daysDiff: {
130
+ def: {
131
+ form: string;
132
+ returnType: string;
133
+ params: {
134
+ type: string;
135
+ }[];
136
+ };
137
+ };
138
+ };
139
+ };
140
+ EEnum__ECustomerProfileSourceType: {
141
+ form: string;
142
+ values: string[];
143
+ };
144
+ string: {
145
+ form: string;
146
+ properties: {};
147
+ methods: {
148
+ isNotNull: {
149
+ def: {
150
+ form: string;
151
+ returnType: string;
152
+ params: never[];
153
+ };
154
+ };
155
+ contains: {
156
+ def: {
157
+ form: string;
158
+ returnType: string;
159
+ params: {
160
+ type: string;
161
+ }[];
162
+ };
163
+ };
164
+ isNull: {
165
+ def: {
166
+ form: string;
167
+ returnType: string;
168
+ params: never[];
169
+ };
170
+ };
171
+ notExists: {
172
+ def: {
173
+ form: string;
174
+ returnType: string;
175
+ params: never[];
176
+ };
177
+ };
178
+ isEmpty: {
179
+ def: {
180
+ form: string;
181
+ returnType: string;
182
+ params: never[];
183
+ };
184
+ };
185
+ exists: {
186
+ def: {
187
+ form: string;
188
+ returnType: string;
189
+ params: never[];
190
+ };
191
+ };
192
+ isValidDate: {
193
+ def: {
194
+ form: string;
195
+ returnType: string;
196
+ params: never[];
197
+ };
198
+ };
199
+ matches: {
200
+ def: {
201
+ form: string;
202
+ returnType: string;
203
+ params: {
204
+ type: string;
205
+ }[];
206
+ };
207
+ };
208
+ };
209
+ };
210
+ tx: {
211
+ form: string;
212
+ properties: {
213
+ date: {
214
+ returnType: string;
215
+ };
216
+ notes: {
217
+ returnType: string;
218
+ };
219
+ extField_store_associate_id: {
220
+ returnType: string;
221
+ };
222
+ totalQty: {
223
+ returnType: string;
224
+ };
225
+ extField_external_coupon_title: {
226
+ returnType: string;
227
+ };
228
+ extField_ship_phone: {
229
+ returnType: string;
230
+ };
231
+ discount: {
232
+ returnType: string;
233
+ };
234
+ basketAmountSum: {
235
+ returnType: string;
236
+ };
237
+ extField_cashier_name: {
238
+ returnType: string;
239
+ };
240
+ extField_delivery_date_time: {
241
+ returnType: string;
242
+ };
243
+ extField_ship_city: {
244
+ returnType: string;
245
+ };
246
+ points: {
247
+ returnType: string;
248
+ };
249
+ number: {
250
+ returnType: string;
251
+ };
252
+ basketDiscountSum: {
253
+ returnType: string;
254
+ };
255
+ extField_membership_card_swiped: {
256
+ returnType: string;
257
+ };
258
+ extField_jewellery_type: {
259
+ returnType: string;
260
+ };
261
+ extField_NPS: {
262
+ returnType: string;
263
+ };
264
+ extField_gst_number: {
265
+ returnType: string;
266
+ };
267
+ extField_ship_last_name: {
268
+ returnType: string;
269
+ };
270
+ extField_card_number: {
271
+ returnType: string;
272
+ };
273
+ "extField_delivery_staff_id ": {
274
+ returnType: string;
275
+ };
276
+ grossAmount: {
277
+ returnType: string;
278
+ };
279
+ extField_order_channel: {
280
+ returnType: string;
281
+ };
282
+ basketSize: {
283
+ returnType: string;
284
+ };
285
+ extField_coupon_discount: {
286
+ returnType: string;
287
+ };
288
+ extField_StateGST: {
289
+ returnType: string;
290
+ };
291
+ extField_GrossWeight: {
292
+ returnType: string;
293
+ };
294
+ extField_ship_email: {
295
+ returnType: string;
296
+ };
297
+ extField_ship_address_line1: {
298
+ returnType: string;
299
+ };
300
+ extField_CentralGST: {
301
+ returnType: string;
302
+ };
303
+ extField_ship_address_line2: {
304
+ returnType: string;
305
+ };
306
+ extField_delivery_date: {
307
+ returnType: string;
308
+ };
309
+ extField_cashier_id: {
310
+ returnType: string;
311
+ };
312
+ extField_ship_zip: {
313
+ returnType: string;
314
+ };
315
+ extField_ship_date: {
316
+ returnType: string;
317
+ };
318
+ extField_external_coupon_code: {
319
+ returnType: string;
320
+ };
321
+ basketAmountSumNonDiscounted: {
322
+ returnType: string;
323
+ };
324
+ extField_MetalPurity: {
325
+ returnType: string;
326
+ };
327
+ extField_additional_discount: {
328
+ returnType: string;
329
+ };
330
+ value: {
331
+ returnType: string;
332
+ };
333
+ extField_delivery_fee: {
334
+ returnType: string;
335
+ };
336
+ extField_cod_charges: {
337
+ returnType: string;
338
+ };
339
+ extField_ship_first_name: {
340
+ returnType: string;
341
+ };
342
+ extField_delivery_charges: {
343
+ returnType: string;
344
+ };
345
+ extField_ship_state: {
346
+ returnType: string;
347
+ };
348
+ extField_booking_type: {
349
+ returnType: string;
350
+ };
351
+ extField_point_discount: {
352
+ returnType: string;
353
+ };
354
+ extField_tax_amount: {
355
+ returnType: string;
356
+ };
357
+ extField_ship_country: {
358
+ returnType: string;
359
+ };
360
+ extField_IntegratedGST: {
361
+ returnType: string;
362
+ };
363
+ extField_order_date_time: {
364
+ returnType: string;
365
+ };
366
+ };
367
+ methods: {
368
+ basketQtyRegexBrand: {
369
+ def: {
370
+ form: string;
371
+ returnType: string;
372
+ params: {
373
+ type: string;
374
+ }[];
375
+ };
376
+ };
377
+ basketItemDiscountSum: {
378
+ def: {
379
+ form: string;
380
+ returnType: string;
381
+ params: {
382
+ type: string;
383
+ }[];
384
+ };
385
+ };
386
+ tenderCombinationRegexSum: {
387
+ def: {
388
+ form: string;
389
+ returnType: string;
390
+ params: {
391
+ type: string;
392
+ }[];
393
+ };
394
+ };
395
+ basketCountRegexBrand: {
396
+ def: {
397
+ form: string;
398
+ returnType: string;
399
+ params: {
400
+ type: string;
401
+ }[];
402
+ };
403
+ };
404
+ basketQtyRegexCategory: {
405
+ def: {
406
+ form: string;
407
+ returnType: string;
408
+ params: {
409
+ type: string;
410
+ }[];
411
+ };
412
+ };
413
+ basketCountRegexCategory: {
414
+ def: {
415
+ form: string;
416
+ returnType: string;
417
+ params: {
418
+ type: string;
419
+ }[];
420
+ };
421
+ };
422
+ basketCount: {
423
+ def: {
424
+ form: string;
425
+ returnType: string;
426
+ params: {
427
+ type: string;
428
+ }[];
429
+ };
430
+ };
431
+ basketExcludesRegex: {
432
+ def: {
433
+ form: string;
434
+ returnType: string;
435
+ params: {
436
+ type: string;
437
+ }[];
438
+ };
439
+ };
440
+ basketSumRegexCategory: {
441
+ def: {
442
+ form: string;
443
+ returnType: string;
444
+ params: {
445
+ type: string;
446
+ }[];
447
+ };
448
+ };
449
+ customFieldValueIncludes: {
450
+ def: {
451
+ form: string;
452
+ returnType: string;
453
+ params: {
454
+ type: string;
455
+ }[];
456
+ };
457
+ };
458
+ basketIncludes: {
459
+ def: {
460
+ form: string;
461
+ returnType: string;
462
+ params: {
463
+ type: string;
464
+ }[];
465
+ };
466
+ };
467
+ basketQty: {
468
+ def: {
469
+ form: string;
470
+ returnType: string;
471
+ params: {
472
+ type: string;
473
+ }[];
474
+ };
475
+ };
476
+ basketExcludes: {
477
+ def: {
478
+ form: string;
479
+ returnType: string;
480
+ params: {
481
+ type: string;
482
+ }[];
483
+ };
484
+ };
485
+ basketIncludesRegex: {
486
+ def: {
487
+ form: string;
488
+ returnType: string;
489
+ params: {
490
+ type: string;
491
+ }[];
492
+ };
493
+ };
494
+ customFieldValueExcludes: {
495
+ def: {
496
+ form: string;
497
+ returnType: string;
498
+ params: {
499
+ type: string;
500
+ }[];
501
+ };
502
+ };
503
+ basketIncludesRegexBrand: {
504
+ def: {
505
+ form: string;
506
+ returnType: string;
507
+ params: {
508
+ type: string;
509
+ }[];
510
+ };
511
+ };
512
+ basketItemDiscountSumRegex: {
513
+ def: {
514
+ form: string;
515
+ returnType: string;
516
+ params: {
517
+ type: string;
518
+ }[];
519
+ };
520
+ };
521
+ basketCountRegex: {
522
+ def: {
523
+ form: string;
524
+ returnType: string;
525
+ params: {
526
+ type: string;
527
+ }[];
528
+ };
529
+ };
530
+ basketSum: {
531
+ def: {
532
+ form: string;
533
+ returnType: string;
534
+ params: {
535
+ type: string;
536
+ }[];
537
+ };
538
+ };
539
+ basketSumRegexBrand: {
540
+ def: {
541
+ form: string;
542
+ returnType: string;
543
+ params: {
544
+ type: string;
545
+ }[];
546
+ };
547
+ };
548
+ tenderCombinationIncludes: {
549
+ def: {
550
+ form: string;
551
+ returnType: string;
552
+ params: {
553
+ type: string;
554
+ }[];
555
+ };
556
+ };
557
+ tenderCombinationExcludes: {
558
+ def: {
559
+ form: string;
560
+ returnType: string;
561
+ params: {
562
+ type: string;
563
+ }[];
564
+ };
565
+ };
566
+ basketSumRegex: {
567
+ def: {
568
+ form: string;
569
+ returnType: string;
570
+ params: {
571
+ type: string;
572
+ }[];
573
+ };
574
+ };
575
+ basketQtyRegex: {
576
+ def: {
577
+ form: string;
578
+ returnType: string;
579
+ params: {
580
+ type: string;
581
+ }[];
582
+ };
583
+ };
584
+ basketIncludesRegexCategory: {
585
+ def: {
586
+ form: string;
587
+ returnType: string;
588
+ params: {
589
+ type: string;
590
+ }[];
591
+ };
592
+ };
593
+ };
594
+ };
595
+ "customer.tracker": {
596
+ form: string;
597
+ properties: {};
598
+ methods: {};
599
+ };
600
+ integer: {
601
+ form: string;
602
+ properties: {};
603
+ methods: {
604
+ isNotNull: {
605
+ def: {
606
+ form: string;
607
+ returnType: string;
608
+ params: never[];
609
+ };
610
+ };
611
+ isNull: {
612
+ def: {
613
+ form: string;
614
+ returnType: string;
615
+ params: never[];
616
+ };
617
+ };
618
+ };
619
+ };
620
+ number: {
621
+ form: string;
622
+ };
623
+ "org.program": {
624
+ form: string;
625
+ properties: {};
626
+ methods: {};
627
+ };
628
+ "customer.trackerCondition": {
629
+ form: string;
630
+ properties: {
631
+ numberOfVisits: {
632
+ returnType: string;
633
+ };
634
+ trackerConditionPeriod: {
635
+ returnType: string;
636
+ };
637
+ trackerPrevAggr: {
638
+ returnType: string;
639
+ };
640
+ trackerName: {
641
+ returnType: string;
642
+ };
643
+ trackedValue: {
644
+ returnType: string;
645
+ };
646
+ trackerInitialPrevAggr: {
647
+ returnType: string;
648
+ };
649
+ trackerConditionName: {
650
+ returnType: string;
651
+ };
652
+ trackerCurrAggr: {
653
+ returnType: string;
654
+ };
655
+ };
656
+ methods: {};
657
+ };
658
+ EEnum__CustomerCluster: {
659
+ form: string;
660
+ values: string[];
661
+ };
662
+ function: {
663
+ form: string;
664
+ };
665
+ paymentMode: {
666
+ form: string;
667
+ properties: {
668
+ amount: {
669
+ returnType: string;
670
+ };
671
+ code: {
672
+ returnType: string;
673
+ };
674
+ notes: {
675
+ returnType: string;
676
+ };
677
+ };
678
+ methods: {};
679
+ };
680
+ org: {
681
+ form: string;
682
+ properties: {};
683
+ methods: {};
684
+ };
685
+ EEnum__CustomerCustomField: {
686
+ form: string;
687
+ values: string[];
688
+ };
689
+ EEnum__CustomerRegistrationOrgEntity: {
690
+ form: string;
691
+ values: string[];
692
+ };
693
+ collection: {
694
+ form: string;
695
+ };
696
+ real: {
697
+ form: string;
698
+ properties: {};
699
+ methods: {
700
+ isNotNull: {
701
+ def: {
702
+ form: string;
703
+ returnType: string;
704
+ params: never[];
705
+ };
706
+ };
707
+ isNull: {
708
+ def: {
709
+ form: string;
710
+ returnType: string;
711
+ params: never[];
712
+ };
713
+ };
714
+ interval: {
715
+ def: {
716
+ form: string;
717
+ returnType: string;
718
+ params: {
719
+ type: string;
720
+ }[];
721
+ };
722
+ };
723
+ };
724
+ };
725
+ store: {
726
+ form: string;
727
+ properties: {
728
+ name: {
729
+ returnType: string;
730
+ };
731
+ code: {
732
+ returnType: string;
733
+ };
734
+ };
735
+ methods: {};
736
+ };
737
+ enum: {
738
+ form: string;
739
+ };
740
+ enumset: {
741
+ form: string;
742
+ valueType: string;
743
+ };
744
+ "tx.item": {
745
+ form: string;
746
+ properties: {
747
+ extField_diamond_clarity: {
748
+ returnType: string;
749
+ };
750
+ extField_store_associate_id: {
751
+ returnType: string;
752
+ };
753
+ extField_external_coupon_title: {
754
+ returnType: string;
755
+ };
756
+ discount: {
757
+ returnType: string;
758
+ };
759
+ extField_tmall_sku_id: {
760
+ returnType: string;
761
+ };
762
+ extField_special_lineitem_type: {
763
+ returnType: string;
764
+ };
765
+ extField_discount_description: {
766
+ returnType: string;
767
+ };
768
+ extField_item_order_status: {
769
+ returnType: string;
770
+ };
771
+ extField_return_reason: {
772
+ returnType: string;
773
+ };
774
+ extField_DesignCode: {
775
+ returnType: string;
776
+ };
777
+ extField_jewellery_type: {
778
+ returnType: string;
779
+ };
780
+ extField_cashier_discount_reason: {
781
+ returnType: string;
782
+ };
783
+ extField_MetalWeight: {
784
+ returnType: string;
785
+ };
786
+ extField_vat_tax_percentage: {
787
+ returnType: string;
788
+ };
789
+ extField_delivery_staff_id: {
790
+ returnType: string;
791
+ };
792
+ extField_stone_weight: {
793
+ returnType: string;
794
+ };
795
+ extField_SupplierCode: {
796
+ returnType: string;
797
+ };
798
+ extField_uuid: {
799
+ returnType: string;
800
+ };
801
+ extField_vat_amount: {
802
+ returnType: string;
803
+ };
804
+ extField_imei_number: {
805
+ returnType: string;
806
+ };
807
+ extField_StoneCharge: {
808
+ returnType: string;
809
+ };
810
+ extField_diamond_color: {
811
+ returnType: string;
812
+ };
813
+ qty: {
814
+ returnType: string;
815
+ };
816
+ extField_total_unit_cost: {
817
+ returnType: string;
818
+ };
819
+ extField_coupon_discount: {
820
+ returnType: string;
821
+ };
822
+ extField_service_tax_amount: {
823
+ returnType: string;
824
+ };
825
+ extField_StateGST: {
826
+ returnType: string;
827
+ };
828
+ extField_GrossWeight: {
829
+ returnType: string;
830
+ };
831
+ extField_discounted_making_charge: {
832
+ returnType: string;
833
+ };
834
+ extField_inseam: {
835
+ returnType: string;
836
+ };
837
+ extField_delivered_from: {
838
+ returnType: string;
839
+ };
840
+ code: {
841
+ returnType: string;
842
+ };
843
+ extField_CentralGST: {
844
+ returnType: string;
845
+ };
846
+ extField_items_in_product_set: {
847
+ returnType: string;
848
+ };
849
+ description: {
850
+ returnType: string;
851
+ };
852
+ extField_cashier_id: {
853
+ returnType: string;
854
+ };
855
+ extField_external_coupon_code: {
856
+ returnType: string;
857
+ };
858
+ extField_discount_type: {
859
+ returnType: string;
860
+ };
861
+ extField_tmall_sku_name: {
862
+ returnType: string;
863
+ };
864
+ extField_MetalRate: {
865
+ returnType: string;
866
+ };
867
+ rate: {
868
+ returnType: string;
869
+ };
870
+ extField_MakingCharge: {
871
+ returnType: string;
872
+ };
873
+ extField_MetalPurity: {
874
+ returnType: string;
875
+ };
876
+ extField_additional_discount: {
877
+ returnType: string;
878
+ };
879
+ value: {
880
+ returnType: string;
881
+ };
882
+ extField_unit_margin: {
883
+ returnType: string;
884
+ };
885
+ extField_serial_number: {
886
+ returnType: string;
887
+ };
888
+ extField_tax_code: {
889
+ returnType: string;
890
+ };
891
+ extField_size: {
892
+ returnType: string;
893
+ };
894
+ extField_promotion_code: {
895
+ returnType: string;
896
+ };
897
+ extField_purity: {
898
+ returnType: string;
899
+ };
900
+ discPercentage: {
901
+ returnType: string;
902
+ };
903
+ extField_buyer_type: {
904
+ returnType: string;
905
+ };
906
+ extField_is_addon_removed: {
907
+ returnType: string;
908
+ };
909
+ extField_booking_type: {
910
+ returnType: string;
911
+ };
912
+ extField_point_discount: {
913
+ returnType: string;
914
+ };
915
+ extField_Unit: {
916
+ returnType: string;
917
+ };
918
+ extField_tmall_order_title: {
919
+ returnType: string;
920
+ };
921
+ extField_discounted_stone_charge: {
922
+ returnType: string;
923
+ };
924
+ extField_service_tax_percentage: {
925
+ returnType: string;
926
+ };
927
+ extField_IntegratedGST: {
928
+ returnType: string;
929
+ };
930
+ };
931
+ methods: {
932
+ doesItemMatch: {
933
+ def: {
934
+ form: string;
935
+ returnType: string;
936
+ params: {
937
+ type: string;
938
+ }[];
939
+ };
940
+ };
941
+ doesBrandRegexMatch: {
942
+ def: {
943
+ form: string;
944
+ returnType: string;
945
+ params: {
946
+ type: string;
947
+ }[];
948
+ };
949
+ };
950
+ doesCategoryRegexMatch: {
951
+ def: {
952
+ form: string;
953
+ returnType: string;
954
+ params: {
955
+ type: string;
956
+ }[];
957
+ };
958
+ };
959
+ };
960
+ };
961
+ boolean: {
962
+ form: string;
963
+ properties: {};
964
+ methods: {
965
+ isNotNull: {
966
+ def: {
967
+ form: string;
968
+ returnType: string;
969
+ params: never[];
970
+ };
971
+ };
972
+ isNull: {
973
+ def: {
974
+ form: string;
975
+ returnType: string;
976
+ params: never[];
977
+ };
978
+ };
979
+ };
980
+ };
981
+ referral: {
982
+ form: string;
983
+ properties: {
984
+ refereeRegCount: {
985
+ returnType: string;
986
+ };
987
+ refereeTxnCount: {
988
+ returnType: string;
989
+ };
990
+ };
991
+ methods: {};
992
+ };
993
+ EEnum__TxCustomField: {
994
+ form: string;
995
+ values: string[];
996
+ };
997
+ EEnum__InvAttr: {
998
+ form: string;
999
+ values: string[];
1000
+ };
1001
+ transactionAddEvent: {
1002
+ form: string;
1003
+ properties: {
1004
+ numberOfVisits: {
1005
+ returnType: string;
1006
+ };
1007
+ currentUserSource: {
1008
+ returnType: string;
1009
+ };
1010
+ isGroupMemberTransaction: {
1011
+ returnType: string;
1012
+ };
1013
+ eventType: {
1014
+ returnType: string;
1015
+ };
1016
+ ignorePoints: {
1017
+ returnType: string;
1018
+ };
1019
+ };
1020
+ methods: {};
1021
+ };
1022
+ object: {
1023
+ form: string;
1024
+ };
1025
+ customer: {
1026
+ form: string;
1027
+ properties: {
1028
+ extField_farm_size: {
1029
+ returnType: string;
1030
+ };
1031
+ initialCurrentPoints: {
1032
+ returnType: string;
1033
+ };
1034
+ extField_card_cash_balance: {
1035
+ returnType: string;
1036
+ };
1037
+ lifetimePurchase: {
1038
+ returnType: string;
1039
+ };
1040
+ extField_nationality: {
1041
+ returnType: string;
1042
+ };
1043
+ extField_age_group: {
1044
+ returnType: string;
1045
+ };
1046
+ extField_webengage_batch_creation_time: {
1047
+ returnType: string;
1048
+ };
1049
+ extField_point_bal_update_date: {
1050
+ returnType: string;
1051
+ };
1052
+ extField_nature_of_profession: {
1053
+ returnType: string;
1054
+ };
1055
+ extField_member_type: {
1056
+ returnType: string;
1057
+ };
1058
+ extField_kid_two_birth_cpn_ex: {
1059
+ returnType: string;
1060
+ };
1061
+ extField_verification_date: {
1062
+ returnType: string;
1063
+ };
1064
+ extField_purchase_consideration: {
1065
+ returnType: string;
1066
+ };
1067
+ extField_exercise_frequency: {
1068
+ returnType: string;
1069
+ };
1070
+ hasWeChatProfile: {
1071
+ returnType: string;
1072
+ };
1073
+ extField_webengage_last_update_batch_process_time: {
1074
+ returnType: string;
1075
+ };
1076
+ extField_dob: {
1077
+ returnType: string;
1078
+ };
1079
+ extField_shoe_size: {
1080
+ returnType: string;
1081
+ };
1082
+ slabChangeDate: {
1083
+ returnType: string;
1084
+ };
1085
+ extField_no_of_boys: {
1086
+ returnType: string;
1087
+ };
1088
+ extField_age_range_one: {
1089
+ returnType: string;
1090
+ };
1091
+ extField_expect_child_in_mth: {
1092
+ returnType: string;
1093
+ };
1094
+ numberOfTxns: {
1095
+ returnType: string;
1096
+ };
1097
+ extField_kid_six_birth_cpn_ex: {
1098
+ returnType: string;
1099
+ };
1100
+ extField_sleep_quality: {
1101
+ returnType: string;
1102
+ };
1103
+ slabNumber: {
1104
+ returnType: string;
1105
+ };
1106
+ initialLifetimePurchase: {
1107
+ returnType: string;
1108
+ };
1109
+ lastname: {
1110
+ returnType: string;
1111
+ };
1112
+ extField_purchase_decision_role: {
1113
+ returnType: string;
1114
+ };
1115
+ extField_child2_gender: {
1116
+ returnType: string;
1117
+ };
1118
+ extField_mobile_operator: {
1119
+ returnType: string;
1120
+ };
1121
+ extField_card_issual_date: {
1122
+ returnType: string;
1123
+ };
1124
+ extField_child4_gender: {
1125
+ returnType: string;
1126
+ };
1127
+ extField_primary_crop: {
1128
+ returnType: string;
1129
+ };
1130
+ extField_upper_cloth_size: {
1131
+ returnType: string;
1132
+ };
1133
+ extField_test_date_type: {
1134
+ returnType: string;
1135
+ };
1136
+ extField_child6_gender: {
1137
+ returnType: string;
1138
+ };
1139
+ extField_webengage_batch_code: {
1140
+ returnType: string;
1141
+ };
1142
+ extField_preferred_language: {
1143
+ returnType: string;
1144
+ };
1145
+ lifetimePoints: {
1146
+ returnType: string;
1147
+ };
1148
+ extField_living_condition: {
1149
+ returnType: string;
1150
+ };
1151
+ extField_customer_category_7: {
1152
+ returnType: string;
1153
+ };
1154
+ extField_child6_dob: {
1155
+ returnType: string;
1156
+ };
1157
+ extField_customer_category_6: {
1158
+ returnType: string;
1159
+ };
1160
+ extField_monthly_income: {
1161
+ returnType: string;
1162
+ };
1163
+ extField_vip_pre_end_date: {
1164
+ returnType: string;
1165
+ };
1166
+ extField_customer_category_9: {
1167
+ returnType: string;
1168
+ };
1169
+ extField_customer_category_8: {
1170
+ returnType: string;
1171
+ };
1172
+ extField_kid_status: {
1173
+ returnType: string;
1174
+ };
1175
+ extField_preferred_store: {
1176
+ returnType: string;
1177
+ };
1178
+ extField_kid_three_birth_cpn_ex: {
1179
+ returnType: string;
1180
+ };
1181
+ extField_health_issue: {
1182
+ returnType: string;
1183
+ };
1184
+ extField_zip: {
1185
+ returnType: string;
1186
+ };
1187
+ lifetimeAllPoints: {
1188
+ returnType: string;
1189
+ };
1190
+ initialLifetimePoints: {
1191
+ returnType: string;
1192
+ };
1193
+ isGroupMember: {
1194
+ returnType: string;
1195
+ };
1196
+ extField_membership_card: {
1197
+ returnType: string;
1198
+ };
1199
+ extField_child2_agegroup: {
1200
+ returnType: string;
1201
+ };
1202
+ extField_point: {
1203
+ returnType: string;
1204
+ };
1205
+ extField_city: {
1206
+ returnType: string;
1207
+ };
1208
+ extField_preferred_socail_event: {
1209
+ returnType: string;
1210
+ };
1211
+ extField_customer_category_1: {
1212
+ returnType: string;
1213
+ };
1214
+ extField_customer_category_3: {
1215
+ returnType: string;
1216
+ };
1217
+ extField_customer_category_2: {
1218
+ returnType: string;
1219
+ };
1220
+ email: {
1221
+ returnType: string;
1222
+ };
1223
+ extField_customer_category_5: {
1224
+ returnType: string;
1225
+ };
1226
+ extField_verification_status: {
1227
+ returnType: string;
1228
+ };
1229
+ extField_customer_category_4: {
1230
+ returnType: string;
1231
+ };
1232
+ numberOfVisits: {
1233
+ returnType: string;
1234
+ };
1235
+ extField_residential_status: {
1236
+ returnType: string;
1237
+ };
1238
+ extField_vip_start_date: {
1239
+ returnType: string;
1240
+ };
1241
+ extField_age: {
1242
+ returnType: string;
1243
+ };
1244
+ extField_child4_dob: {
1245
+ returnType: string;
1246
+ };
1247
+ extField_no_of_kids: {
1248
+ returnType: string;
1249
+ };
1250
+ extField_card_bonus_balance: {
1251
+ returnType: string;
1252
+ };
1253
+ extField_gender: {
1254
+ returnType: string;
1255
+ };
1256
+ extField_religion: {
1257
+ returnType: string;
1258
+ };
1259
+ extField_area: {
1260
+ returnType: string;
1261
+ };
1262
+ extField_spouse_dob: {
1263
+ returnType: string;
1264
+ };
1265
+ extField_webengage_last_update_batch_code: {
1266
+ returnType: string;
1267
+ };
1268
+ initialSlabName: {
1269
+ returnType: string;
1270
+ };
1271
+ extField_child2_dob: {
1272
+ returnType: string;
1273
+ };
1274
+ isTest: {
1275
+ returnType: string;
1276
+ };
1277
+ extField_child1_gender: {
1278
+ returnType: string;
1279
+ };
1280
+ extField_child5_gender: {
1281
+ returnType: string;
1282
+ };
1283
+ extField_favorite_activity: {
1284
+ returnType: string;
1285
+ };
1286
+ extField_vip_startdate: {
1287
+ returnType: string;
1288
+ };
1289
+ extField_vip_pre_start_date: {
1290
+ returnType: string;
1291
+ };
1292
+ extField_child1_dob: {
1293
+ returnType: string;
1294
+ };
1295
+ extField_marital_status: {
1296
+ returnType: string;
1297
+ };
1298
+ extField_sub_area: {
1299
+ returnType: string;
1300
+ };
1301
+ extField_state: {
1302
+ returnType: string;
1303
+ };
1304
+ currentNonRedeemablePoints: {
1305
+ returnType: string;
1306
+ };
1307
+ extField_kid_five_birth_cpn_ex: {
1308
+ returnType: string;
1309
+ };
1310
+ extField_preferred_promotion: {
1311
+ returnType: string;
1312
+ };
1313
+ extField_preferred_communication_channel: {
1314
+ returnType: string;
1315
+ };
1316
+ joinDate: {
1317
+ returnType: string;
1318
+ };
1319
+ extField_webengage_last_update_batch_creation_time: {
1320
+ returnType: string;
1321
+ };
1322
+ extField_ssnNumber: {
1323
+ returnType: string;
1324
+ };
1325
+ extField_membership_expiry_date: {
1326
+ returnType: string;
1327
+ };
1328
+ extField_vip_enddate: {
1329
+ returnType: string;
1330
+ };
1331
+ extField_preferred_cashier: {
1332
+ returnType: string;
1333
+ };
1334
+ extField_external_loyalty_points: {
1335
+ returnType: string;
1336
+ };
1337
+ extField_secondary_crop: {
1338
+ returnType: string;
1339
+ };
1340
+ hasInstoreProfile: {
1341
+ returnType: string;
1342
+ };
1343
+ extField_country_of_residence: {
1344
+ returnType: string;
1345
+ };
1346
+ extField_binding_date: {
1347
+ returnType: string;
1348
+ };
1349
+ extField_sales_staff: {
1350
+ returnType: string;
1351
+ };
1352
+ extField_ethnicity: {
1353
+ returnType: string;
1354
+ };
1355
+ currentAllPoints: {
1356
+ returnType: string;
1357
+ };
1358
+ extField_preferred_store_3: {
1359
+ returnType: string;
1360
+ };
1361
+ extField_preferred_store_2: {
1362
+ returnType: string;
1363
+ };
1364
+ lifetimeNonRedeemablePoints: {
1365
+ returnType: string;
1366
+ };
1367
+ extField_preferred_product: {
1368
+ returnType: string;
1369
+ };
1370
+ name: {
1371
+ returnType: string;
1372
+ };
1373
+ extField_scheme_tier: {
1374
+ returnType: string;
1375
+ };
1376
+ extField_kid_one_birth_cpn_ex: {
1377
+ returnType: string;
1378
+ };
1379
+ slabExpiryDate: {
1380
+ returnType: string;
1381
+ };
1382
+ slabName: {
1383
+ returnType: string;
1384
+ };
1385
+ extField_household_size: {
1386
+ returnType: string;
1387
+ };
1388
+ extField_expiry_point_bal: {
1389
+ returnType: string;
1390
+ };
1391
+ firstname: {
1392
+ returnType: string;
1393
+ };
1394
+ initialSlabNumber: {
1395
+ returnType: string;
1396
+ };
1397
+ numberOfTxnsToday: {
1398
+ returnType: string;
1399
+ };
1400
+ extField_scheme_registration_date: {
1401
+ returnType: string;
1402
+ };
1403
+ extField_create_date: {
1404
+ returnType: string;
1405
+ };
1406
+ extField_favorite_topic: {
1407
+ returnType: string;
1408
+ };
1409
+ extField_pre_vip_startdate: {
1410
+ returnType: string;
1411
+ };
1412
+ extField_valuable_life_aspect: {
1413
+ returnType: string;
1414
+ };
1415
+ extField_kid_four_birth_cpn_ex: {
1416
+ returnType: string;
1417
+ };
1418
+ extField_recommended_customer_type: {
1419
+ returnType: string;
1420
+ };
1421
+ extField_acquisition_channel: {
1422
+ returnType: string;
1423
+ };
1424
+ isPrimary: {
1425
+ returnType: string;
1426
+ };
1427
+ extField_wedding_date: {
1428
+ returnType: string;
1429
+ };
1430
+ extField_preferred_payment_mode: {
1431
+ returnType: string;
1432
+ };
1433
+ extField_customer_category: {
1434
+ returnType: string;
1435
+ };
1436
+ extField_child5_dob: {
1437
+ returnType: string;
1438
+ };
1439
+ extField_child1_agegroup: {
1440
+ returnType: string;
1441
+ };
1442
+ extField_customer_status: {
1443
+ returnType: string;
1444
+ };
1445
+ extField_webengage_batch_process_time: {
1446
+ returnType: string;
1447
+ };
1448
+ mobile: {
1449
+ returnType: string;
1450
+ };
1451
+ externalId: {
1452
+ returnType: string;
1453
+ };
1454
+ extField_no_of_girls: {
1455
+ returnType: string;
1456
+ };
1457
+ isSecondary: {
1458
+ returnType: string;
1459
+ };
1460
+ extField_born_in: {
1461
+ returnType: string;
1462
+ };
1463
+ extField_pre_vip_enddate: {
1464
+ returnType: string;
1465
+ };
1466
+ currentPoints: {
1467
+ returnType: string;
1468
+ };
1469
+ extField_distance_from_nearest_store: {
1470
+ returnType: string;
1471
+ };
1472
+ extField_due_date: {
1473
+ returnType: string;
1474
+ };
1475
+ extField_preferred_currency: {
1476
+ returnType: string;
1477
+ };
1478
+ extField_child3_gender: {
1479
+ returnType: string;
1480
+ };
1481
+ avgBasketSize: {
1482
+ returnType: string;
1483
+ };
1484
+ initialCurrentAllPoints: {
1485
+ returnType: string;
1486
+ };
1487
+ isLoyal: {
1488
+ returnType: string;
1489
+ };
1490
+ extField_profession: {
1491
+ returnType: string;
1492
+ };
1493
+ isControl: {
1494
+ returnType: string;
1495
+ };
1496
+ extField_vip_end_date: {
1497
+ returnType: string;
1498
+ };
1499
+ extField_child3_dob: {
1500
+ returnType: string;
1501
+ };
1502
+ extField_points_expiry_date: {
1503
+ returnType: string;
1504
+ };
1505
+ avgSpendPerVisit: {
1506
+ returnType: string;
1507
+ };
1508
+ };
1509
+ methods: {
1510
+ customFieldValueExcludes: {
1511
+ def: {
1512
+ form: string;
1513
+ returnType: string;
1514
+ params: {
1515
+ type: string;
1516
+ }[];
1517
+ };
1518
+ };
1519
+ includesLabelRegex: {
1520
+ def: {
1521
+ form: string;
1522
+ returnType: string;
1523
+ params: {
1524
+ type: string;
1525
+ }[];
1526
+ };
1527
+ };
1528
+ clusterValueExcludes: {
1529
+ def: {
1530
+ form: string;
1531
+ returnType: string;
1532
+ params: {
1533
+ type: string;
1534
+ }[];
1535
+ };
1536
+ };
1537
+ isRegisteredOn: {
1538
+ def: {
1539
+ form: string;
1540
+ returnType: string;
1541
+ params: {
1542
+ type: string;
1543
+ }[];
1544
+ };
1545
+ };
1546
+ clusterValueIncludes: {
1547
+ def: {
1548
+ form: string;
1549
+ returnType: string;
1550
+ params: {
1551
+ type: string;
1552
+ }[];
1553
+ };
1554
+ };
1555
+ customFieldValueIncludes: {
1556
+ def: {
1557
+ form: string;
1558
+ returnType: string;
1559
+ params: {
1560
+ type: string;
1561
+ }[];
1562
+ };
1563
+ };
1564
+ doesProfileExists: {
1565
+ def: {
1566
+ form: string;
1567
+ returnType: string;
1568
+ params: {
1569
+ type: string;
1570
+ }[];
1571
+ };
1572
+ };
1573
+ customFieldValueExists: {
1574
+ def: {
1575
+ form: string;
1576
+ returnType: string;
1577
+ params: {
1578
+ type: string;
1579
+ }[];
1580
+ };
1581
+ };
1582
+ };
1583
+ };
1584
+ };
1585
+ operators: {
1586
+ symbol: string;
1587
+ operandTypes: string[];
1588
+ type: string;
1589
+ }[];
1590
+ identifiers: {
1591
+ currentEvent: {
1592
+ returnType: string;
1593
+ desc: string;
1594
+ };
1595
+ currentTrackerCondition: {
1596
+ returnType: string;
1597
+ desc: string;
1598
+ };
1599
+ tenderProfile: {
1600
+ returnType: string;
1601
+ desc: string;
1602
+ };
1603
+ currentTracker: {
1604
+ returnType: string;
1605
+ desc: string;
1606
+ };
1607
+ currentCustomer: {
1608
+ returnType: string;
1609
+ desc: string;
1610
+ };
1611
+ groupPrimaryCustomer: {
1612
+ returnType: string;
1613
+ desc: string;
1614
+ };
1615
+ currentTxn: {
1616
+ returnType: string;
1617
+ desc: string;
1618
+ };
1619
+ currentLineItem: {
1620
+ returnType: string;
1621
+ desc: string;
1622
+ };
1623
+ organization: {
1624
+ returnType: string;
1625
+ desc: string;
1626
+ };
1627
+ referrerCode: {
1628
+ returnType: string;
1629
+ desc: string;
1630
+ };
1631
+ program: {
1632
+ returnType: string;
1633
+ desc: string;
1634
+ };
1635
+ currentStore: {
1636
+ returnType: string;
1637
+ desc: string;
1638
+ };
1639
+ };
1640
+ };
1641
+ expected: string[];
1642
+ delims: string[];
1643
+ };
1644
+ private $expressionEditorContainer;
1645
+ private $expressionEditor;
1646
+ constructor(props: CapExpressionEditorProps);
1647
+ uniqueId(): string;
1648
+ componentDidMount(): void;
1649
+ onChange: () => void;
1650
+ render(): import("react/jsx-runtime").JSX.Element;
1651
+ }
1652
+ export default CapExpressionEditor;
1653
+ export type { CapExpressionEditorProps } from './types';
1654
+ //# sourceMappingURL=index.d.ts.map