aboutsummaryrefslogtreecommitdiff
path: root/api/alltypes/index.html
blob: 028c4c66bdd2aa1cf6fa8609aaaf85d97759e01a (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
<HTML>
<HEAD>
<meta charset="UTF-8">
<title>alltypes - kvision</title>
<link rel="stylesheet" href="../../style.css">
</HEAD>
<BODY>
<p>KVision - object oriented Web UI framework for Kotlin/JS.</p>
<h3>All Types</h3>
<table>
<tbody>
<tr>
<td>
<a href="../pl.treksoft.kvision.form.text/-abstract-text/index.html">pl.treksoft.kvision.form.text.AbstractText</a></td>
<td>
<p>Base class for form field text components.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.form.text/-abstract-text-input/index.html">pl.treksoft.kvision.form.text.AbstractTextInput</a></td>
<td>
<p>Base class for basic text components.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.form.select/-ajax-options/index.html">pl.treksoft.kvision.form.select.AjaxOptions</a></td>
<td>
<p>Data class for AJAX options.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.modal/-alert/index.html">pl.treksoft.kvision.modal.Alert</a></td>
<td>
<p>Alert window based on Bootstrap modal.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.html/-align/index.html">pl.treksoft.kvision.html.Align</a></td>
<td>
<p>CSS align attributes.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.hmr/-application-base/index.html">pl.treksoft.kvision.hmr.ApplicationBase</a></td>
<td>
<p>Base interface for applications.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.core/-background/index.html">pl.treksoft.kvision.core.Background</a></td>
<td>
<p>Type-safe definition of CSS background.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.data/-base-data-component/index.html">pl.treksoft.kvision.data.BaseDataComponent</a></td>
<td>
<p>Base abstract class for creating observable data model.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.core/-bg-attach/index.html">pl.treksoft.kvision.core.BgAttach</a></td>
<td>
<p>Definitions of CSS background attachment options.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.core/-bg-clip/index.html">pl.treksoft.kvision.core.BgClip</a></td>
<td>
<p>Definitions of CSS background clipping options.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.core/-bg-origin/index.html">pl.treksoft.kvision.core.BgOrigin</a></td>
<td>
<p>Definitions of CSS background origin options.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.core/-bg-repeat/index.html">pl.treksoft.kvision.core.BgRepeat</a></td>
<td>
<p>Definitions of CSS background repeat options.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.core/-bg-size/index.html">pl.treksoft.kvision.core.BgSize</a></td>
<td>
<p>Definitions of CSS background size.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.form/-bool-form-control/index.html">pl.treksoft.kvision.form.BoolFormControl</a></td>
<td>
<p>Base interface of a form control with a boolean value.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.core/-border/index.html">pl.treksoft.kvision.core.Border</a></td>
<td>
<p>Type-safe definition of CSS border.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.core/-border-style/index.html">pl.treksoft.kvision.core.BorderStyle</a></td>
<td>
<p>Definitions of CSS border styles.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.html/-button/index.html">pl.treksoft.kvision.html.Button</a></td>
<td>
<p>Button component.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.toolbar/-button-group/index.html">pl.treksoft.kvision.toolbar.ButtonGroup</a></td>
<td>
<p>The Bootstrap button group.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.toolbar/-button-group-size/index.html">pl.treksoft.kvision.toolbar.ButtonGroupSize</a></td>
<td>
<p>Button group sizes.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.toolbar/-button-group-style/index.html">pl.treksoft.kvision.toolbar.ButtonGroupStyle</a></td>
<td>
<p>Button group styles.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.html/-button-size/index.html">pl.treksoft.kvision.html.ButtonSize</a></td>
<td>
<p>Button sizes.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.html/-button-style/index.html">pl.treksoft.kvision.html.ButtonStyle</a></td>
<td>
<p>Button styles.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.html/-button-type/index.html">pl.treksoft.kvision.html.ButtonType</a></td>
<td>
<p>Button types.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.form.spinner/-buttons-type/index.html">pl.treksoft.kvision.form.spinner.ButtonsType</a></td>
<td>
<p>Spinner buttons layout types.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.table/-cell/index.html">pl.treksoft.kvision.table.Cell</a></td>
<td>
<p>HTML table cell component.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.form.check/-check-box/index.html">pl.treksoft.kvision.form.check.CheckBox</a></td>
<td>
<p>The form field component rendered as HTML <em>input type="checkbox"</em>.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.form.check/-check-box-style/index.html">pl.treksoft.kvision.form.check.CheckBoxStyle</a></td>
<td>
<p>Checkbox style options.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.form.check/-check-input/index.html">pl.treksoft.kvision.form.check.CheckInput</a></td>
<td>
<p>The basic input component rendered as HTML <em>input type="checkbox"</em> or <em>input type="radio"</em>.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.form.check/-check-input-type/index.html">pl.treksoft.kvision.form.check.CheckInputType</a></td>
<td>
<p>Type of the check input control (checkbox or radio).</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.core/-clear/index.html">pl.treksoft.kvision.core.Clear</a></td>
<td>
<p>Definitions of CSS clear options.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.modal/-close-icon/index.html">pl.treksoft.kvision.modal.CloseIcon</a></td>
<td>
<p>Helper class for close icon component.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.core/-col/index.html">pl.treksoft.kvision.core.Col</a></td>
<td>
<p>Definitions of CSS color names.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.core/-color/index.html">pl.treksoft.kvision.core.Color</a></td>
<td>
<p>Type-safe definition of CSS color.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.core/-component/index.html">pl.treksoft.kvision.core.Component</a></td>
<td>
<p>Base interface for all components.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.modal/-confirm/index.html">pl.treksoft.kvision.modal.Confirm</a></td>
<td>
<p>Confirm window based on Bootstrap modal.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.core/-container/index.html">pl.treksoft.kvision.core.Container</a></td>
<td>
<p>Base interface for all containers.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.dropdown/-context-menu/index.html">pl.treksoft.kvision.dropdown.ContextMenu</a></td>
<td>
<p>Context menu component.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.core/-css-size.html">pl.treksoft.kvision.core.CssSize</a></td>
<td>
<p>This type is used for defining CSS dimensions (width, heights, margins, paddings, etc.).</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.dropdown/-d-d/index.html">pl.treksoft.kvision.dropdown.DD</a></td>
<td>
<p>Useful options for use in DropDown's <em>elements</em> parameter.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.data/-data-component.html">pl.treksoft.kvision.data.DataComponent</a></td>
<td>
<p>Base interface for observable data model.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.data/-data-container/index.html">pl.treksoft.kvision.data.DataContainer</a></td>
<td>
<p>A container class with support for observable data model.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.form.select/-data-type/index.html">pl.treksoft.kvision.form.select.DataType</a></td>
<td>
<p>Data type for the AJAX call.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.data/-data-updatable/index.html">pl.treksoft.kvision.data.DataUpdatable</a></td>
<td>
<p>Interface for updatable container.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.utils/kotlin.js.-date/index.html">kotlin.js.Date</a> (extensions in package pl.treksoft.kvision.utils)</td>
<td>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.form/-date-form-control/index.html">pl.treksoft.kvision.form.DateFormControl</a></td>
<td>
<p>Base interface of a form control with a date value.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.form.time/-date-time/index.html">pl.treksoft.kvision.form.time.DateTime</a></td>
<td>
<p>Form field date/time chooser component.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.form.time/-date-time-input/index.html">pl.treksoft.kvision.form.time.DateTimeInput</a></td>
<td>
<p>Basic date/time chooser component.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.core/-direction/index.html">pl.treksoft.kvision.core.Direction</a></td>
<td>
<p>Definitions of CSS text direction options.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.panel/-direction/index.html">pl.treksoft.kvision.panel.Direction</a></td>
<td>
<p>Split panel direction.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.core/-display/index.html">pl.treksoft.kvision.core.Display</a></td>
<td>
<p>Definitions of CSS display options.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.html/-div/index.html">pl.treksoft.kvision.html.Div</a></td>
<td>
<p>Simple component rendered as <em>div</em>.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.panel/-dock-panel/index.html">pl.treksoft.kvision.panel.DockPanel</a></td>
<td>
<p>The container with dock layout (up, down, left, right and center positions).</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.dropdown/-drop-down/index.html">pl.treksoft.kvision.dropdown.DropDown</a></td>
<td>
<p>Bootstrap dropdown component.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.form/-field-label/index.html">pl.treksoft.kvision.form.FieldLabel</a></td>
<td>
<p>Helper class for HTML label element.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.utils/org.w3c.files.-file/index.html">org.w3c.files.File</a> (extensions in package pl.treksoft.kvision.utils)</td>
<td>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.form/-files-form-control/index.html">pl.treksoft.kvision.form.FilesFormControl</a></td>
<td>
<p>Base interface of a form control with a list of files value.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.panel/-flex-align-content/index.html">pl.treksoft.kvision.panel.FlexAlignContent</a></td>
<td>
<p>CSS flexbox content alignment options.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.panel/-flex-align-items/index.html">pl.treksoft.kvision.panel.FlexAlignItems</a></td>
<td>
<p>CSS flexbox alignments options.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.panel/-flex-dir/index.html">pl.treksoft.kvision.panel.FlexDir</a></td>
<td>
<p>CSS flexbox directions.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.panel/-flex-justify/index.html">pl.treksoft.kvision.panel.FlexJustify</a></td>
<td>
<p>CSS flexbox justification options.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.panel/-flex-panel/index.html">pl.treksoft.kvision.panel.FlexPanel</a></td>
<td>
<p>The container with CSS flexbox layout support.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.panel/-flex-wrap/index.html">pl.treksoft.kvision.panel.FlexWrap</a></td>
<td>
<p>CSS flexbox wrap modes.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.core/-font-style/index.html">pl.treksoft.kvision.core.FontStyle</a></td>
<td>
<p>Definitions of CSS font style options.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.core/-font-variant/index.html">pl.treksoft.kvision.core.FontVariant</a></td>
<td>
<p>Definitions of CSS font variant options.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.core/-font-weight/index.html">pl.treksoft.kvision.core.FontWeight</a></td>
<td>
<p>Definitions of CSS font weight options.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.form.spinner/-force-type/index.html">pl.treksoft.kvision.form.spinner.ForceType</a></td>
<td>
<p>Spinner force rounding types.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.form/-form/index.html">pl.treksoft.kvision.form.Form</a></td>
<td>
<p>The form definition class. Can be used directly or indirectly inside a <a href="../pl.treksoft.kvision.form/-form-panel/index.html">FormPanel</a>.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.form/-form-control/index.html">pl.treksoft.kvision.form.FormControl</a></td>
<td>
<p>Base interface of a form control.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.form/-form-enctype/index.html">pl.treksoft.kvision.form.FormEnctype</a></td>
<td>
<p>Form encoding types.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.form/-form-input/index.html">pl.treksoft.kvision.form.FormInput</a></td>
<td>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.form/-form-method/index.html">pl.treksoft.kvision.form.FormMethod</a></td>
<td>
<p>Form methods.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.form/-form-panel/index.html">pl.treksoft.kvision.form.FormPanel</a></td>
<td>
<p>Bootstrap form component.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.form/-form-target/index.html">pl.treksoft.kvision.form.FormTarget</a></td>
<td>
<p>Form targets.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.form/-form-type/index.html">pl.treksoft.kvision.form.FormType</a></td>
<td>
<p>Bootstrap form layout options.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.panel/-grid-align/index.html">pl.treksoft.kvision.panel.GridAlign</a></td>
<td>
<p>CSS grid alignment options.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.panel/-grid-align-content/index.html">pl.treksoft.kvision.panel.GridAlignContent</a></td>
<td>
<p>CSS grid content alignment options.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.panel/-grid-flow/index.html">pl.treksoft.kvision.panel.GridFlow</a></td>
<td>
<p>CSS grid flow options.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.panel/-grid-justify/index.html">pl.treksoft.kvision.panel.GridJustify</a></td>
<td>
<p>CSS grid justification options.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.panel/-grid-justify-content/index.html">pl.treksoft.kvision.panel.GridJustifyContent</a></td>
<td>
<p>CSS grid content justification options.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.panel/-grid-panel/index.html">pl.treksoft.kvision.panel.GridPanel</a></td>
<td>
<p>The container with CSS grid layout support.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.panel/-grid-size/index.html">pl.treksoft.kvision.panel.GridSize</a></td>
<td>
<p>Bootstrap grid sizes.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.panel/-grid-wrapper/index.html">pl.treksoft.kvision.panel.GridWrapper</a></td>
<td>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.panel/-h-panel/index.html">pl.treksoft.kvision.panel.HPanel</a></td>
<td>
<p>The container with horizontal layout.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.dropdown/-header/index.html">pl.treksoft.kvision.dropdown.Header</a></td>
<td>
<p>Menu header component.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.table/-header-cell/index.html">pl.treksoft.kvision.table.HeaderCell</a></td>
<td>
<p>HTML table header cell component.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.form/-help-block/index.html">pl.treksoft.kvision.form.HelpBlock</a></td>
<td>
<p>Helper class for Bootstrap help block element.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.hmr/-hot/index.html">pl.treksoft.kvision.hmr.Hot</a></td>
<td>
<p>Helper interface for Hot Module Replacement (HMR).</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.form.select/-http-type/index.html">pl.treksoft.kvision.form.select.HttpType</a></td>
<td>
<p>HTTP protocol type for the AJAX call.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.html/-icon/index.html">pl.treksoft.kvision.html.Icon</a></td>
<td>
<p>Icon component with support for FontAwesome and Bootstrap glyphicons.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.html/-iframe/index.html">pl.treksoft.kvision.html.Iframe</a></td>
<td>
<p>Iframe component.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.html/-image/index.html">pl.treksoft.kvision.html.Image</a></td>
<td>
<p>Image component.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.html/-image-shape/index.html">pl.treksoft.kvision.html.ImageShape</a></td>
<td>
<p>Image shapes.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.form/-input-size/index.html">pl.treksoft.kvision.form.InputSize</a></td>
<td>
<p>Input controls sizes.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.utils/kotlin.-int/index.html">kotlin.Int</a> (extensions in package pl.treksoft.kvision.utils)</td>
<td>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.form/kotlin.js.-json/index.html">kotlin.js.Json</a> (extensions in package pl.treksoft.kvision.form)</td>
<td>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.utils/-kv-event/index.html">pl.treksoft.kvision.utils.KvEvent</a></td>
<td>
<p>Helper class for defining custom events.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.html/-label/index.html">pl.treksoft.kvision.html.Label</a></td>
<td>
<p>Simple label component rendered as <em>span</em>.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.html/-link/index.html">pl.treksoft.kvision.html.Link</a></td>
<td>
<p>Link component.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.html/-list-tag/index.html">pl.treksoft.kvision.html.ListTag</a></td>
<td>
<p>HTML list component.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.html/-list-type/index.html">pl.treksoft.kvision.html.ListType</a></td>
<td>
<p>HTML list types.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.form/kotlin.collections.-map/index.html">kotlin.collections.Map</a> (extensions in package pl.treksoft.kvision.form)</td>
<td>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.modal/-modal/index.html">pl.treksoft.kvision.modal.Modal</a></td>
<td>
<p>Configurable modal window based on Bootstrap modal.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.modal/-modal-size/index.html">pl.treksoft.kvision.modal.ModalSize</a></td>
<td>
<p>Modal window sizes.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.hmr/-module/index.html">pl.treksoft.kvision.hmr.Module</a></td>
<td>
<p>Helper interface for Hot Module Replacement (HMR).</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.navbar/-nav/index.html">pl.treksoft.kvision.navbar.Nav</a></td>
<td>
<p>The Bootstrap Nav container.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.navbar/-nav-form/index.html">pl.treksoft.kvision.navbar.NavForm</a></td>
<td>
<p>The Bootstrap Nav form container.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.navbar/-navbar/index.html">pl.treksoft.kvision.navbar.Navbar</a></td>
<td>
<p>The Bootstrap Navbar container.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.navbar/-navbar-type/index.html">pl.treksoft.kvision.navbar.NavbarType</a></td>
<td>
<p>Navbar types.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.form/-number-form-control/index.html">pl.treksoft.kvision.form.NumberFormControl</a></td>
<td>
<p>Base interface of a form control with a numeric value.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.utils/-object/index.html">pl.treksoft.kvision.utils.Object</a></td>
<td>
<p>JavaScript Object type</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.core/-overflow/index.html">pl.treksoft.kvision.core.Overflow</a></td>
<td>
<p>Definitions of CSS overflow options.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.utils/kotlin.-pair/index.html">kotlin.Pair</a> (extensions in package pl.treksoft.kvision.utils)</td>
<td>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.form.text/-password/index.html">pl.treksoft.kvision.form.text.Password</a></td>
<td>
<p>Form field password component.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.core/-pos-float/index.html">pl.treksoft.kvision.core.PosFloat</a></td>
<td>
<p>Definitions of CSS float options.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.core/-position/index.html">pl.treksoft.kvision.core.Position</a></td>
<td>
<p>Definitions of CSS position options.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.progress/-progress-bar/index.html">pl.treksoft.kvision.progress.ProgressBar</a></td>
<td>
<p>The Bootstrap progress bar.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.progress/-progress-bar-style/index.html">pl.treksoft.kvision.progress.ProgressBarStyle</a></td>
<td>
<p>Progress bar styles.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.form.check/-radio/index.html">pl.treksoft.kvision.form.check.Radio</a></td>
<td>
<p>The form field component rendered as HTML <em>input type="radio"</em>.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.form.check/-radio-group/index.html">pl.treksoft.kvision.form.check.RadioGroup</a></td>
<td>
<p>The form field component rendered as a group of HTML <em>input type="radio"</em> elements with the same name attribute.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.form.check/-radio-style/index.html">pl.treksoft.kvision.form.check.RadioStyle</a></td>
<td>
<p>Radio style options.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.core/-res-string.html">pl.treksoft.kvision.core.ResString</a></td>
<td>
<p>This type is used for accessing resources with CommonJS <strong>require</strong> function.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.core/-resize/index.html">pl.treksoft.kvision.core.Resize</a></td>
<td>
<p>Definitions of CSS resize options.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.panel/-responsive-grid-panel/index.html">pl.treksoft.kvision.panel.ResponsiveGridPanel</a></td>
<td>
<p>The container with support for Bootstrap responsive grid layout.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.form.text/-rich-text/index.html">pl.treksoft.kvision.form.text.RichText</a></td>
<td>
<p>Form field rich text component.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.form.text/-rich-text-input/index.html">pl.treksoft.kvision.form.text.RichTextInput</a></td>
<td>
<p>Basic rich text component.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.panel/-root/index.html">pl.treksoft.kvision.panel.Root</a></td>
<td>
<p>Root container.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.routing/-routing/index.html">pl.treksoft.kvision.routing.Routing</a></td>
<td>
<p>A helper class for Navigo JavaScript router.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.table/-row/index.html">pl.treksoft.kvision.table.Row</a></td>
<td>
<p>HTML table row component.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.html/-sandbox/index.html">pl.treksoft.kvision.html.Sandbox</a></td>
<td>
<p>Iframe sandbox options.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.form.select/-select/index.html">pl.treksoft.kvision.form.select.Select</a></td>
<td>
<p>The form field component for Select control.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.form.select/-select-input/index.html">pl.treksoft.kvision.form.select.SelectInput</a></td>
<td>
<p>The basic component for Select control.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.form.select/-select-opt-group/index.html">pl.treksoft.kvision.form.select.SelectOptGroup</a></td>
<td>
<p>The helper container for adding option groups to <a href="../pl.treksoft.kvision.form.select/-select/index.html">Select</a>.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.form.select/-select-option/index.html">pl.treksoft.kvision.form.select.SelectOption</a></td>
<td>
<p>The helper component for adding options to <a href="../pl.treksoft.kvision.form.select/-select/index.html">Select</a> or <a href="../pl.treksoft.kvision.form.select/-select-opt-group/index.html">SelectOptGroup</a>.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.form.select/-select-width-type/index.html">pl.treksoft.kvision.form.select.SelectWidthType</a></td>
<td>
<p>Select width types. See <a href="http://silviomoreto.github.io/bootstrap-select/examples/#width">Bootstrap Select width</a>.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.dropdown/-separator/index.html">pl.treksoft.kvision.dropdown.Separator</a></td>
<td>
<p>Menu separator component.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.panel/-side/index.html">pl.treksoft.kvision.panel.Side</a></td>
<td>
<p>Dock layout directions.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.panel/-simple-panel/index.html">pl.treksoft.kvision.panel.SimplePanel</a></td>
<td>
<p>Basic container class, rendered as a DIV element with all children directly within.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.form.spinner/-spinner/index.html">pl.treksoft.kvision.form.spinner.Spinner</a></td>
<td>
<p>The form field component for spinner control.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.form.spinner/-spinner-input/index.html">pl.treksoft.kvision.form.spinner.SpinnerInput</a></td>
<td>
<p>The basic component for spinner control.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.panel/-split-panel/index.html">pl.treksoft.kvision.panel.SplitPanel</a></td>
<td>
<p>The container with draggable splitter.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.panel/-stack-panel/index.html">pl.treksoft.kvision.panel.StackPanel</a></td>
<td>
<p>The container with only one active (visible) child at any moment.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.utils/kotlin.-string/index.html">kotlin.String</a> (extensions in package pl.treksoft.kvision.utils)</td>
<td>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.core/-string-bool-pair.html">pl.treksoft.kvision.core.StringBoolPair</a></td>
<td>
<p>Helper type used to define CSS classes.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.form/-string-form-control/index.html">pl.treksoft.kvision.form.StringFormControl</a></td>
<td>
<p>Base interface of a form control with a text value.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.core/-string-pair.html">pl.treksoft.kvision.core.StringPair</a></td>
<td>
<p>Helper type used to define CSS style attributes.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.core/-styled-component/index.html">pl.treksoft.kvision.core.StyledComponent</a></td>
<td>
<p>Base class for components supporting CSS styling.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.html/-t-a-g/index.html">pl.treksoft.kvision.html.TAG</a></td>
<td>
<p>HTML tags.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.panel/-tab-panel/index.html">pl.treksoft.kvision.panel.TabPanel</a></td>
<td>
<p>The container rendering it's children as tabs.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.table/-table/index.html">pl.treksoft.kvision.table.Table</a></td>
<td>
<p>HTML table component.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.table/-table-type/index.html">pl.treksoft.kvision.table.TableType</a></td>
<td>
<p>HTML table types.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.html/-tag/index.html">pl.treksoft.kvision.html.Tag</a></td>
<td>
<p>HTML tag component.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.html/-template/index.html">pl.treksoft.kvision.html.Template</a></td>
<td>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.form.text/-text/index.html">pl.treksoft.kvision.form.text.Text</a></td>
<td>
<p>Form field text component.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.core/-text-align/index.html">pl.treksoft.kvision.core.TextAlign</a></td>
<td>
<p>Definitions of CSS text align options.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.form.text/-text-area/index.html">pl.treksoft.kvision.form.text.TextArea</a></td>
<td>
<p>Form field textarea component.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.form.text/-text-area-input/index.html">pl.treksoft.kvision.form.text.TextAreaInput</a></td>
<td>
<p>Basic textarea component.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.core/-text-decoration/index.html">pl.treksoft.kvision.core.TextDecoration</a></td>
<td>
<p>Type-safe definition of CSS text decoration.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.core/-text-decoration-line/index.html">pl.treksoft.kvision.core.TextDecorationLine</a></td>
<td>
<p>Definitions of CSS text decoration line options.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.core/-text-decoration-style/index.html">pl.treksoft.kvision.core.TextDecorationStyle</a></td>
<td>
<p>Definitions of CSS text decoration style options.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.form.text/-text-input/index.html">pl.treksoft.kvision.form.text.TextInput</a></td>
<td>
<p>Basic text component.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.form.text/-text-input-type/index.html">pl.treksoft.kvision.form.text.TextInputType</a></td>
<td>
<p>Text input types.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.core/-text-overflow/index.html">pl.treksoft.kvision.core.TextOverflow</a></td>
<td>
<p>Definitions of CSS text overflow options.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.core/-text-shadow/index.html">pl.treksoft.kvision.core.TextShadow</a></td>
<td>
<p>Type-safe definition of CSS text shadow.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.core/-text-transform/index.html">pl.treksoft.kvision.core.TextTransform</a></td>
<td>
<p>Definitions of CSS text transform options.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.toolbar/-toolbar/index.html">pl.treksoft.kvision.toolbar.Toolbar</a></td>
<td>
<p>The Bootstrap toolbar.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.core/-u-n-i-t/index.html">pl.treksoft.kvision.core.UNIT</a></td>
<td>
<p>Definitions of CSS units.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.core/-unicode-bidi/index.html">pl.treksoft.kvision.core.UnicodeBidi</a></td>
<td>
<p>Definitions of CSS unicode-bidi options.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.form.upload/-upload/index.html">pl.treksoft.kvision.form.upload.Upload</a></td>
<td>
<p>The form field file upload component.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.form.upload/-upload-input/index.html">pl.treksoft.kvision.form.upload.UploadInput</a></td>
<td>
<p>The file upload component.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.panel/-v-panel/index.html">pl.treksoft.kvision.panel.VPanel</a></td>
<td>
<p>The container with vertical layout.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.core/-vertical-align/index.html">pl.treksoft.kvision.core.VerticalAlign</a></td>
<td>
<p>Definitions of CSS vertical align options.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.core/-white-space/index.html">pl.treksoft.kvision.core.WhiteSpace</a></td>
<td>
<p>Definitions of CSS white space options.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.core/-widget/index.html">pl.treksoft.kvision.core.Widget</a></td>
<td>
<p>Base widget class. The parent of all component classes.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.core/-widget-wrapper/index.html">pl.treksoft.kvision.core.WidgetWrapper</a></td>
<td>
<p>This class allows to wrap a component into separately styled DIV element.</p>
</td>
</tr>
<tr>
<td>
<a href="../pl.treksoft.kvision.window/-window/index.html">pl.treksoft.kvision.window.Window</a></td>
<td>
<p>Floating window container.</p>
</td>
</tr>
</tbody>
</table>
</BODY>
</HTML>