-
Notifications
You must be signed in to change notification settings - Fork 0
/
calcit.cirru
5853 lines (5852 loc) · 496 KB
/
calcit.cirru
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{}
:users $ {}
|rJG4IHzWf $ {} (:id |rJG4IHzWf) (:name |chen) (:nickname |chen) (:password |d41d8cd98f00b204e9800998ecf8427e) (:avatar nil) (:theme :star-trail)
|root $ {} (:id |root) (:name |root) (:nickname |root) (:password |d41d8cd98f00b204e9800998ecf8427e) (:avatar nil) (:theme :star-trail)
:ir $ {} (:package |respo-alerts)
:files $ {}
|respo-alerts.comp.container $ {}
:ns $ {} (:type :expr) (:at 1499755354983)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |ns)
|j $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |respo-alerts.comp.container)
|v $ {} (:type :expr) (:at 1499755354983)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |:require)
|yr $ {} (:type :expr) (:by |root) (:at 1528046388897)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528046389226) (:text |[])
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572780507556) (:text |respo-alerts.core)
|r $ {} (:type :leaf) (:by |root) (:at 1528046393355) (:text |:refer)
|v $ {} (:type :expr) (:by |root) (:at 1528046393530)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528046393723) (:text |[])
|yr $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584861737518) (:text |use-confirm)
|yT $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572887228743) (:text |comp-modal-menu)
|j $ {} (:type :leaf) (:by |root) (:at 1528046397532) (:text |comp-alert)
|x $ {} (:type :leaf) (:by |root) (:at 1534181533679) (:text |comp-select)
|v $ {} (:type :leaf) (:by |root) (:at 1528047230716) (:text |comp-prompt)
|yj $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584861562854) (:text |use-alert)
|yx $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1590941698856) (:text |use-modal)
|r $ {} (:type :leaf) (:by |root) (:at 1528046950398) (:text |comp-confirm)
|y $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572781113437) (:text |comp-modal)
|yy $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1590941704098) (:text |use-modal-menu)
|yv $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584861739869) (:text |use-prompt)
|yT $ {} (:type :expr) (:by |root) (:at 1519699088529)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1519699088805) (:text |[])
|j $ {} (:type :leaf) (:by |root) (:at 1519699092590) (:text |respo-md.comp.md)
|r $ {} (:type :leaf) (:by |root) (:at 1519699093410) (:text |:refer)
|v $ {} (:type :expr) (:by |root) (:at 1519699093683)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1519699093922) (:text |[])
|j $ {} (:type :leaf) (:by |root) (:at 1519699096732) (:text |comp-md)
|j $ {} (:type :expr) (:at 1499755354983)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |[])
|j $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |hsl.core)
|r $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |:refer)
|v $ {} (:type :expr) (:at 1499755354983)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |[])
|j $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |hsl)
|x $ {} (:type :expr) (:at 1499755354983)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |[])
|j $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |respo.comp.space)
|r $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |:refer)
|v $ {} (:type :expr) (:at 1499755354983)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |[])
|j $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |=<)
|v $ {} (:type :expr) (:at 1499755354983)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |[])
|j $ {} (:type :leaf) (:by |root) (:at 1540958513787) (:text |respo.core)
|r $ {} (:type :leaf) (:by |root) (:at 1508946162679) (:text |:refer)
|v $ {} (:type :expr) (:at 1499755354983)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |[])
|n $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584782090500) (:text |>>)
|j $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |defcomp)
|x $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |button)
|v $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |div)
|r $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |<>)
|y $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |span)
|xT $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1512359490531) (:text |textarea)
|yj $ {} (:type :expr) (:by |root) (:at 1521954061310)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1521954061645) (:text |[])
|j $ {} (:type :leaf) (:by |root) (:at 1528011501932) (:text |respo-alerts.config)
|r $ {} (:type :leaf) (:by |root) (:at 1521954064826) (:text |:refer)
|v $ {} (:type :expr) (:by |root) (:at 1521954065004)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1521954065219) (:text |[])
|j $ {} (:type :leaf) (:by |root) (:at 1521954067604) (:text |dev?)
|yx $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1534869224871)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1534869225200) (:text |[])
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1534869240208) (:text |respo-alerts.style)
|r $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1534869229688) (:text |:as)
|v $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1534869230486) (:text |style)
|yyT $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1558754784789)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1558754785115) (:text |[])
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1558754789629) (:text |cljs.reader)
|r $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1558754790293) (:text |:refer)
|v $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1558754790531)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1558754790949) (:text |[])
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1558754792799) (:text |read-string)
|r $ {} (:type :expr) (:at 1499755354983)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |[])
|j $ {} (:type :leaf) (:by |root) (:at 1516527080962) (:text |respo-ui.core)
|r $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |:as)
|v $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |ui)
|y $ {} (:type :expr) (:by |root) (:at 1507461845717)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1507461846175) (:text |[])
|j $ {} (:type :leaf) (:by |root) (:at 1507461855480) (:text |reel.comp.reel)
|r $ {} (:type :leaf) (:by |root) (:at 1507461856264) (:text |:refer)
|v $ {} (:type :expr) (:by |root) (:at 1507461856484)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1507461856706) (:text |[])
|j $ {} (:type :leaf) (:by |root) (:at 1507461858342) (:text |comp-reel)
|yy $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1558754461691)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1558754462694) (:text |[])
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1558754464857) (:text |clojure.string)
|r $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1558754465224) (:text |:as)
|v $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1558754466218) (:text |string)
|yv $ {} (:type :expr) (:by |root) (:at 1528046426765)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528046427077) (:text |[])
|j $ {} (:type :leaf) (:by |root) (:at 1528046431144) (:text |respo.comp.inspect)
|r $ {} (:type :leaf) (:by |root) (:at 1528046431994) (:text |:refer)
|v $ {} (:type :expr) (:by |root) (:at 1528046432205)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528046432474) (:text |[])
|j $ {} (:type :leaf) (:by |root) (:at 1528046434619) (:text |comp-inspect)
:defs $ {}
|comp-button $ {} (:type :expr) (:by |root) (:at 1528217262292)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528217265888) (:text |defcomp)
|j $ {} (:type :leaf) (:by |root) (:at 1528217262292) (:text |comp-button)
|n $ {} (:type :expr) (:by |root) (:at 1528217267201)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528217268013) (:text |text)
|r $ {} (:type :expr) (:by |root) (:at 1528217262292)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1530811728407) (:text |button)
|j $ {} (:type :expr) (:by |root) (:at 1528217262292)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528217262292) (:text |{})
|j $ {} (:type :expr) (:by |root) (:at 1528217262292)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528217262292) (:text |:style)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1534869221325) (:text |style/button)
|r $ {} (:type :expr) (:by |root) (:at 1528217262292)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528217262292) (:text |<>)
|j $ {} (:type :leaf) (:by |root) (:at 1528217270966) (:text |text)
|comp-container $ {} (:type :expr) (:at 1499755354983)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |defcomp)
|j $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |comp-container)
|r $ {} (:type :expr) (:at 1499755354983)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1507461830530) (:text |reel)
|v $ {} (:type :expr) (:by |root) (:at 1507461832154)
:data $ {}
|D $ {} (:type :leaf) (:by |root) (:at 1507461833421) (:text |let)
|L $ {} (:type :expr) (:by |root) (:at 1507461834351)
:data $ {}
|T $ {} (:type :expr) (:by |root) (:at 1507461834650)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1507461835738) (:text |store)
|j $ {} (:type :expr) (:by |root) (:at 1507461836110)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1507461837276) (:text |:store)
|j $ {} (:type :leaf) (:by |root) (:at 1507461838285) (:text |reel)
|j $ {} (:type :expr) (:by |root) (:at 1509727104820)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1509727105928) (:text |states)
|j $ {} (:type :expr) (:by |root) (:at 1509727106316)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1509727107223) (:text |:states)
|j $ {} (:type :leaf) (:by |root) (:at 1509727108033) (:text |store)
|r $ {} (:type :expr) (:by |root) (:at 1534183165726)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1534183167689) (:text |state)
|j $ {} (:type :expr) (:by |root) (:at 1534183168813)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1534183169398) (:text |or)
|b $ {} (:type :expr) (:by |root) (:at 1534183177853)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1534183178622) (:text |:data)
|j $ {} (:type :leaf) (:by |root) (:at 1534183180157) (:text |states)
|j $ {} (:type :expr) (:by |root) (:at 1534183175323)
:data $ {}
|D $ {} (:type :leaf) (:by |root) (:at 1534183176314) (:text |{})
|T $ {} (:type :expr) (:by |root) (:at 1534183169624)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1534183173022) (:text |:selected)
|j $ {} (:type :leaf) (:by |root) (:at 1534183173368) (:text "|\"")
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572781022204)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572781024399) (:text |:show-modal?)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572781025348) (:text |false)
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572887182110)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572887186121) (:text |:show-modal-menu?)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572887186756) (:text |false)
|T $ {} (:type :expr) (:at 1499755354983)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |div)
|j $ {} (:type :expr) (:at 1499755354983)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |{})
|j $ {} (:type :expr) (:at 1499755354983)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |:style)
|j $ {} (:type :expr) (:at 1499755354983)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |merge)
|j $ {} (:type :leaf) (:by |root) (:at 1521129814235) (:text |ui/global)
|v $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1534869572538) (:text |ui/fullscreen)
|w $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572781153170) (:text |ui/column)
|x $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1534869828159)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1534869828557) (:text |{})
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584861389609)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584861391929) (:text |:padding)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584861397893) (:text |20)
|q $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572968824916)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |comp-stateful-actions)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584782095868)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968832986) (:text |states)
|D $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584782096795) (:text |>>)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584782097537) (:text |:stateful)
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572968824916)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584861508823) (:text |comp-hooks-usages)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584782101423)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968832986) (:text |states)
|D $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584782102176) (:text |>>)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584861514036) (:text |:hooks)
|s $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572968956989)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968944093) (:text |comp-controlled-modals)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584782107230)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968965028) (:text |states)
|D $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584782107937) (:text |>>)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584782108991) (:text |:controlled)
|v $ {} (:type :expr) (:by |root) (:at 1528046410123)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528046411967) (:text |when)
|j $ {} (:type :leaf) (:by |root) (:at 1528046453319) (:text |dev?)
|r $ {} (:type :expr) (:by |root) (:at 1528046415771)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1528046418148) (:text |comp-inspect)
|b $ {} (:type :leaf) (:by |root) (:at 1528217164431) (:text "|\"states")
|j $ {} (:type :leaf) (:by |root) (:at 1528217162732) (:text |states)
|r $ {} (:type :expr) (:by |root) (:at 1530555034768)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1530555036708) (:text |{})
|j $ {} (:type :expr) (:by |root) (:at 1530555037048)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1530555039987) (:text |:bottom)
|j $ {} (:type :leaf) (:by |root) (:at 1530555041304) (:text |0)
|x $ {} (:type :expr) (:by |root) (:at 1521954055333)
:data $ {}
|D $ {} (:type :leaf) (:by |root) (:at 1521954057510) (:text |when)
|L $ {} (:type :leaf) (:by |root) (:at 1521954059290) (:text |dev?)
|T $ {} (:type :expr) (:by |root) (:at 1507461809635)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1507461815046) (:text |comp-reel)
|b $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584782115579)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1509727101297) (:text |states)
|D $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584782117148) (:text |>>)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584782118078) (:text |:reel)
|j $ {} (:type :leaf) (:by |root) (:at 1507461840459) (:text |reel)
|r $ {} (:type :expr) (:by |root) (:at 1507461840980)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1507461841342) (:text |{})
|rT $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572968824916)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572969025265) (:text |comp-select-actions)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584782101423)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968832986) (:text |states)
|D $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584782102176) (:text |>>)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584782102905) (:text |:select)
|comp-controlled-modals $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572968944093)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968945519) (:text |defcomp)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968944093) (:text |comp-controlled-modals)
|n $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572968946455)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968948916) (:text |states)
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572968949881)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968953214) (:text |let)
|b $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572968978863)
:data $ {}
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584848175146)
:data $ {}
|T $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584848020826)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848020826) (:text |use-modal)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584848020826)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848020826) (:text |{})
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584848020826)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848020826) (:text |:title)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848020826) (:text "|\"demo")
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584848020826)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848020826) (:text |:style)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584848020826)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848020826) (:text |{})
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584848020826)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848020826) (:text |:width)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848020826) (:text |400)
|v $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584848020826)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848020826) (:text |:container-style)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584848020826)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848020826) (:text |{})
|x $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584848020826)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1591519391257) (:text |:render)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584848020826)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848020826) (:text |fn)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584848020826)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1591205304270) (:text |on-close)
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584848020826)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848020826) (:text |div)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584848020826)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848020826) (:text |{})
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584848020826)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848020826) (:text |<>)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848020826) (:text "|\"Place for child content")
|v $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1591205306073)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1591205308180) (:text |button)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1591205308507)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1591205308844) (:text |{})
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1591205309324)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1591205310219) (:text |:style)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1591205311543) (:text |ui/button)
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1591205314281)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1591205316343) (:text |:inner-text)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1591205317966) (:text "|\"Close")
|v $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1591205318487)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1591205320135) (:text |:on-click)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1591205320404)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1591205320694) (:text |fn)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1591205320956)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1591205321180) (:text |e)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1591205321653) (:text |d!)
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1591205322542)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1591205325417) (:text |on-close)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1591205325979) (:text |d!)
|b $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584848048396)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848047826) (:text |>>)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848050217) (:text |states)
|r $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848410600) (:text |:modal)
|D $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848189123) (:text |demo-modal)
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584848384602)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848688291) (:text |demo-modal-menu)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584848387256)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848390559) (:text |use-modal-menu)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584848391727)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848392159) (:text |>>)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848393602) (:text |states)
|r $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848413146) (:text |:modal-menu)
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584848432344)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848432344) (:text |{})
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584848432344)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848432344) (:text |:title)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848432344) (:text "|\"Demo")
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584848432344)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848432344) (:text |:style)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584848432344)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848432344) (:text |{})
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584848432344)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848432344) (:text |:width)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848432344) (:text |300)
|v $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584848438405)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848441868) (:text |:items)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584848442366)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848442366) (:text |[])
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584848442366)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848442366) (:text |{})
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584848442366)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848442366) (:text |:value)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848442366) (:text "|\"a")
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584848442366)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848442366) (:text |:display)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848442366) (:text "|\"A")
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584848442366)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848442366) (:text |{})
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584848442366)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848442366) (:text |:value)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848442366) (:text "|\"b")
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584848442366)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848442366) (:text |:display)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584848442366)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848442366) (:text |div)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584848442366)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848442366) (:text |{})
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584848442366)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848442366) (:text |<>)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848442366) (:text "|\"B")
|x $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584848618360)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848624863) (:text |:on-result)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584848625080)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848625369) (:text |fn)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584848625627)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848629260) (:text |result)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848629939) (:text |d!)
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584848631112)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848631944) (:text |println)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848636500) (:text "|\"got result")
|r $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848637570) (:text |result)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584861371775)
:data $ {}
|T $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584848204348)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848204839) (:text |div)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584848204980)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848205330) (:text |{})
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584848849731)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848850560) (:text |:style)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584848850729)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848853254) (:text |{})
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584848853899)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848855280) (:text |:padding)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848864572) (:text "|\"8px 16px")
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584848212417)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848215392) (:text |:ui)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848216586) (:text |demo-modal)
|n $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584848221047)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848225095) (:text |button)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584848225317)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848225660) (:text |{})
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584848225866)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848228733) (:text |:inner-text)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848230365) (:text "|\"show modal")
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584848231958)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848235887) (:text |:on-click)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584848236224)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848236503) (:text |fn)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584848236712)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848237763) (:text |e)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848239547) (:text |d!)
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584848239954)
:data $ {}
|T $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584848241832)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848796382) (:text |:show)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848248516) (:text |demo-modal)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848250116) (:text |d!)
|n $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584848261852)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848263125) (:text |:style)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848264888) (:text |ui/button)
|v $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584848680050)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848832551) (:text |:ui)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848684509) (:text |demo-modal-menu)
|p $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584848221047)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848225095) (:text |button)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584848225317)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848225660) (:text |{})
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584848225866)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848228733) (:text |:inner-text)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848747068) (:text "|\"show modal menu")
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584848231958)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848235887) (:text |:on-click)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584848236224)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848236503) (:text |fn)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584848236712)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848237763) (:text |e)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848239547) (:text |d!)
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584848239954)
:data $ {}
|T $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584848241832)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848797829) (:text |:show)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848802473) (:text |demo-modal-menu)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848250116) (:text |d!)
|n $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584848261852)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848263125) (:text |:style)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848264888) (:text |ui/button)
|o $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584848846388)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848847501) (:text |=<)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848847867) (:text |8)
|r $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584848848379) (:text |nil)
|D $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584861373250) (:text |div)
|L $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584861373491)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584861373851) (:text |{})
|P $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584861375097)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584861375734) (:text |div)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584861375960)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584861376317) (:text |{})
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584861376735)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584861378109) (:text |<>)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584861382530) (:text "|\"Hooks Modal usage")
|comp-select-actions $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572969028287)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572969030267) (:text |defcomp)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572969028287) (:text |comp-select-actions)
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572969028287)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572969032823) (:text |states)
|v $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572969050322)
:data $ {}
|D $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572969050998) (:text |let)
|L $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572969052495)
:data $ {}
|T $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572969051578)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572969051578) (:text |state)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572969051578)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572969051578) (:text |or)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572969051578)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572969051578) (:text |:data)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572969051578) (:text |states)
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572969051578)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572969051578) (:text |{})
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572969051578)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572969051578) (:text |:selected)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572969051578) (:text "|\"")
|D $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584782687043)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584782688306) (:text |cursor)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584782688542)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584782691107) (:text |:cursor)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584782691821) (:text |states)
|T $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584861358982)
:data $ {}
|T $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572969058402)
:data $ {}
|D $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572969060084) (:text |div)
|L $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572969060524)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572969060913) (:text |{})
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572969061214)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572969065843) (:text |:style)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572969066097)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572969066498) (:text |{})
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572969066756)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572969067740) (:text |:padding)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572969068201) (:text |16)
|T $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572969039163)
:data $ {}
|r $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572969039163) (:text |comp-select)
|v $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584782700701)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572969039163) (:text |states)
|D $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584782702141) (:text |>>)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584782702948) (:text |:select)
|x $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572969039163)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572969039163) (:text |:selected)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572969039163) (:text |state)
|y $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572969039163)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572969039163) (:text |[])
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572969039163)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572969039163) (:text |{})
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572969039163)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572969039163) (:text |:value)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572969039163) (:text "|\"haskell")
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572969039163)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572969039163) (:text |:display)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572969039163) (:text "|\"Haskell")
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572969039163)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572969039163) (:text |{})
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572969039163)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572969039163) (:text |:value)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572969039163) (:text "|\"clojure")
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572969039163)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572969039163) (:text |:display)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572969039163) (:text "|\"Clojure")
|v $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572969039163)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572969039163) (:text |{})
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572969039163)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572969039163) (:text |:value)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572969039163) (:text "|\"elixir")
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572969039163)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572969039163) (:text |:display)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572969039163) (:text "|\"Elixir")
|yT $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572969039163)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572969039163) (:text |{})
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572969039163)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572969039163) (:text |:style-trigger)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572969039163)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572969039163) (:text |{})
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572969039163)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572969039163) (:text |:border)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572969039163) (:text "|\"1px solid #ddd")
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572969039163)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572969039163) (:text |:padding)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572969039163) (:text "|\"0 8px")
|v $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572969039163)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572969039163) (:text |:line-height)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572969039163) (:text "|\"32px")
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572969039163)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572969039163) (:text |:text)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572969039163) (:text "|\"Select a item from:")
|yj $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572969039163)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572969039163) (:text |fn)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572969039163)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572969039163) (:text |result)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572969039163) (:text |d!)
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572969039163)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572969039163) (:text |println)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572969039163) (:text "|\"finish selecting!")
|r $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572969039163) (:text |result)
|v $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572969039163)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584782693651) (:text |d!)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584782695678) (:text |cursor)
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572969039163)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572969039163) (:text |assoc)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572969039163) (:text |state)
|r $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572969039163) (:text |:selected)
|v $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572969039163) (:text |result)
|D $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584861360473) (:text |div)
|L $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584861360717)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584861361057) (:text |{})
|P $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584861362345)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584861362799) (:text |div)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584861363023)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584861363388) (:text |{})
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584861364598)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584861365488) (:text |<>)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584861367049) (:text "|\"Select")
|comp-stateful-actions $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572968809617)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968811558) (:text |defcomp)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |comp-stateful-actions)
|n $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572968812404)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968815206) (:text |states)
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584861343474)
:data $ {}
|T $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572968809617)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |div)
|yr $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572968809617)
:data $ {}
|r $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |comp-prompt)
|v $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584782173958)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |states)
|D $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584782175036) (:text |>>)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584782175790) (:text |:prompt-multiline)
|x $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572968809617)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |{})
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572968809617)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |:trigger)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572968809617)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |comp-button)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text "|\"Prompt multiline")
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572968809617)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |:text)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text "|\"This would be a very long content of alerts, like some prompt... write multiple lines:")
|v $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572968809617)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |:initial)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572968809617)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |str)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572968809617)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |rand-int)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |100)
|x $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572968809617)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |:style)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572968809617)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |{})
|y $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572968809617)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |:input-style)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572968809617)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |{})
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572968809617)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |:font-family)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |ui/font-code)
|yT $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572968809617)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |:multiline?)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |true)
|y $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572968809617)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |fn)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572968809617)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |result)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |d!)
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572968809617)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |println)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text "|\"finish editing!")
|r $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |result)
|yT $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572968809617)
:data $ {}
|r $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |comp-prompt)
|v $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584782163869)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |states)
|D $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584782164620) (:text |>>)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584782165790) (:text |:prompt)
|x $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572968809617)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |{})
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572968809617)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |:trigger)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572968809617)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |comp-button)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text "|\"Prompt")
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572968809617)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |:text)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text "|\"This would be a very long content of alerts, like some prompt... pick number:")
|v $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572968809617)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |:initial)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572968809617)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |str)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572968809617)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |rand-int)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |100)
|x $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572968809617)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |:style)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572968809617)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |{})
|y $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572968809617)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |:placeholder)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text "|\"input demo")
|yT $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572968809617)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |:button-text)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text "|\"Finish and submit")
|y $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572968809617)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |fn)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572968809617)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |result)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |d!)
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572968809617)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |println)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text "|\"finish editing!")
|r $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |result)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572968809617)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |{})
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572968809617)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |:style)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572968809617)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |merge)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |ui/row)
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572968809617)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |{})
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572968809617)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |:padding)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |16)
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572968809617)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |:align-items)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |:flex-start)
|x $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572968809617)
:data $ {}
|r $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |comp-confirm)
|v $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584782155154)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |states)
|D $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584782155882) (:text |>>)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584782156657) (:text |:confirm)
|x $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572968809617)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |{})
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572968809617)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |:style)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572968809617)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |{})
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572968809617)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |:trigger)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572968809617)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |comp-button)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text "|\"Confirm")
|v $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572968809617)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |:text)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text "|\"This would be a very long content of alerts, like some confirmation...")
|y $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572968809617)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |fn)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572968809617)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |e)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |d!)
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572968809617)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |println)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text "|\"confirmed!")
|v $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572968809617)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |=<)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |8)
|r $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |nil)
|yj $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572968809617)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |=<)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |8)
|r $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |nil)
|yx $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572968809617)
:data $ {}
|r $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |comp-prompt)
|v $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584782182202)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |states)
|D $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584782183083) (:text |>>)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584782183800) (:text |:prompt-validator)
|x $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572968809617)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |{})
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572968809617)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |:trigger)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572968809617)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |comp-button)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text "|\"Prompt validator")
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572968809617)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |:text)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text "|\"This would be a very long content of alerts, like some prompt... write multiple lines:")
|v $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572968809617)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |:initial)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572968809617)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |str)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572968809617)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |rand-int)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |100)
|x $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572968809617)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |:style)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572968809617)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |{})
|y $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572968809617)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |:input-style)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572968809617)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |{})
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572968809617)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |:font-family)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |ui/font-code)
|yT $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572968809617)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |:multiline?)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |true)
|yj $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572968809617)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |:validator)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572968809617)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |fn)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572968809617)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |x)
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1572968809617)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1572968809617) (:text |try)