-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1345 lines (1325 loc) · 54.9 KB
/
index.html
File metadata and controls
1345 lines (1325 loc) · 54.9 KB
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
<!DOCTYPE html>
<html lang="en" data-bs-theme="dark">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bootstrap Enhanced Components</title>
<link href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.3.8/css/bootstrap.min.css" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-icons/1.11.3/font/bootstrap-icons.min.css"
rel="stylesheet">
<style>
:root {
--bs-code-color: #e83e8c;
}
.hero-section {
background: linear-gradient(135deg, var(--bs-primary), var(--bs-secondary));
color: white;
}
.component-card {
transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
border: 1px solid var(--bs-border-color);
}
.component-card:hover {
transform: translateY(-2px);
box-shadow: 0 8px 25px rgba(0, 0, 0, .15);
}
.status-badge {
font-size: 0.75rem;
font-weight: 600;
}
.nav-tabs .nav-link {
color: var(--bs-secondary-color);
border: 1px solid transparent;
}
.nav-tabs .nav-link.active {
color: var(--bs-primary);
border-color: var(--bs-border-color) var(--bs-border-color) var(--bs-body-bg);
}
.code-block {
background: var(--bs-gray-900);
border: 1px solid var(--bs-border-color);
border-radius: 0.375rem;
}
.feature-icon {
width: 2.5rem;
height: 2.5rem;
display: flex;
align-items: center;
justify-content: center;
background: var(--bs-primary);
color: white;
border-radius: 0.5rem;
}
.sidebar {
height: calc(100vh - 56px);
overflow-y: auto;
position: sticky;
top: 56px;
}
.toc-link {
color: var(--bs-secondary-color);
text-decoration: none;
padding: 0.25rem 0.75rem;
display: block;
border-radius: 0.25rem;
transition: all 0.15s ease-in-out;
}
.toc-link:hover,
.toc-link.active {
color: var(--bs-primary);
background-color: var(--bs-primary-bg-subtle);
}
</style>
</head>
<body>
<!-- Navigation -->
<nav class="navbar navbar-expand-lg navbar-dark sticky-top bg-gradient bg-body-tertiary">
<div class="container-fluid">
<a class="navbar-brand fw-bold" href="#overview">
<i class="bi bi-bootstrap-fill me-2"></i> Bootstrap Enhanced Components </a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ms-auto">
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false">
Demos </a>
<ul class="dropdown-menu pt-0">
<li>
<h5 class="px-3 py-2 text-nowrap text-primary border-bottom border-primary bg-dark-subtle rounded-top">
Production Ready </h5>
</li>
<li>
<a class="dropdown-item" href="https://yohn.github.io/Bootstrap-Enhanced-Components/AjaxForm/Example.html">
AJAX Form & Submit </a>
</li>
<li>
<a class="dropdown-item" href="https://yohn.github.io/Bootstrap-Enhanced-Components/JsonTable/Example.html">
JSON Table (like Data Tables) </a>
</li>
<li>
<a class="dropdown-item"
href="https://yohn.github.io/Bootstrap-Enhanced-Components/HtmlTable/Example.html"> HTML Table
</a>
</li>
<li>
<a class="dropdown-item" href="https://yohn.github.io/Bootstrap-Enhanced-Components/YoBox/Example.html">
YoBox </a>
</li>
<li>
<a class="dropdown-item"
href="https://yohn.github.io/Bootstrap-Enhanced-Components/AutoTextarea/Example.html"> Auto Textarea
</a>
</li>
<li>
<a class="dropdown-item"
href="https://yohn.github.io/Bootstrap-Enhanced-Components/InputMask/Example.html"> Input Mask </a>
</li>
<li>
<a class="dropdown-item"
href="https://yohn.github.io/Bootstrap-Enhanced-Components/MultiSelect/Example.html"> Multi Select
</a>
</li>
<li>
<a class="dropdown-item"
href="https://yohn.github.io/Bootstrap-Enhanced-Components/FileUploadPreview/Example.html"> File
Upload Preview </a>
</li>
<li>
<a class="dropdown-item"
href="https://yohn.github.io/Bootstrap-Enhanced-Components/WysiwygEditor/Example.html"> Wysiwyg Editor
</a>
</li>
<li>
<a class="dropdown-item"
href="https://yohn.github.io/Bootstrap-Enhanced-Components/ToastAlerts/Example.html"> Toast Alerts
</a>
</li>
<li>
<a class="dropdown-item"
href="https://yohn.github.io/Bootstrap-Enhanced-Components/SimpleLightbox/Example.html"> Simple
Lightbox </a>
</li>
<li>
<a class="dropdown-item"
href="https://yohn.github.io/Bootstrap-Enhanced-Components/ContextMenu/Example.html"> Context Menu
</a>
</li>
<li>
<hr class="dropdown-divider">
</li>
<li>
<h5 class="px-3 py-2 text-nowrap text-primary border-bottom border-primary bg-dark-subtle"> Needs
Testing </h5>
</li>
<li>
<a class="dropdown-item"
href="https://yohn.github.io/Bootstrap-Enhanced-Components/BehaviorTracker/HumanVerified.html"> Human
Verified </a>
</li>
<li>
<a class="dropdown-item"
href="https://yohn.github.io/Bootstrap-Enhanced-Components/BehaviorTracker/Example.html"> Behavior
Tracker </a>
</li>
<li>
<a class="dropdown-item"
href="https://yohn.github.io/Bootstrap-Enhanced-Components/MultiLevelDropdown/Example.html"> Multi
Level Dropdown </a>
</li>
<li>
<a class="dropdown-item"
href="https://yohn.github.io/Bootstrap-Enhanced-Components/OnboardingTour/Example.html"> Onboarding
Tour </a>
</li>
<li>
<hr class="dropdown-divider">
</li>
<li>
<h5 class="px-3 py-2 text-nowrap text-primary border-bottom border-primary bg-dark-subtle rounded-top">
Needs Improvements </h5>
</li>
<li>
<a class="dropdown-item"
href="https://yohn.github.io/Bootstrap-Enhanced-Components/RateLimiter/Example.html"> Rate Limiter
</a>
</li>
<li>
<a class="dropdown-item"
href="https://yohn.github.io/Bootstrap-Enhanced-Components/ImageLightbox/Example.html"> Image Lightbox
</a>
</li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link" href="#components">Components</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#architecture">Architecture</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#quick-start">Quick Start</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://github.com/Yohn/Bootstrap-Enhanced-Components" target="_blank">
<i class="bi bi-github"></i> GitHub </a>
</li>
</ul>
</div>
</div>
</nav>
<div class="container-fluid">
<div class="row">
<!-- Sidebar Table of Contents -->
<div class="col-lg-3 col-xl-2 d-none d-lg-block">
<div class="sidebar bg-body-tertiary p-3">
<h6 class="text-muted text-uppercase fw-bold mb-3">Contents</h6>
<nav class="nav flex-column">
<a href="#overview" class="toc-link">Overview</a>
<a href="#components" class="toc-link">Components</a>
<div class="ms-3">
<a href="#working" class="toc-link small">Working</a>
<a href="#testing" class="toc-link small">Needs Testing</a>
<a href="#fixing" class="toc-link small">Needs Fixing</a>
</div>
<a href="#architecture" class="toc-link">Architecture</a>
<a href="#quick-start" class="toc-link">Quick Start</a>
<a href="#theming" class="toc-link">Theming</a>
<a href="#accessibility" class="toc-link">Accessibility</a>
<a href="#support" class="toc-link">Browser Support</a>
<a href="#contributing" class="toc-link">Contributing</a>
<a href="#roadmap" class="toc-link">Roadmap</a>
</nav>
</div>
</div>
<!-- Main Content -->
<div class="col-lg-9 col-xl-10">
<!-- Hero Section -->
<section id="overview" class="hero-section p-5 rounded-3 mb-5 mt-4">
<div class="container-fluid">
<h1 class="display-4 fw-bold mb-3">Bootstrap Enhanced Components</h1>
<p class="lead mb-4">A comprehensive collection of advanced Bootstrap 5.3 components and enhancements built
with modern JavaScript, providing production-ready solutions for common web development needs.</p>
<div class="d-flex flex-wrap gap-3">
<a href="#components" class="btn btn-light btn-lg">
<i class="bi bi-grid-3x3-gap me-2"></i>View Components </a>
<a href="#quick-start" class="btn btn-outline-light btn-lg">
<i class="bi bi-rocket me-2"></i>Quick Start </a>
<a href="https://github.com/Yohn/Bootstrap-Enhanced-Components" class="btn btn-outline-light btn-lg"
target="_blank">
<i class="bi bi-github me-2"></i>GitHub </a>
</div>
</div>
</section>
<!-- Overview -->
<section class="mb-5">
<div class="row">
<div class="col-md-8">
<p class="fs-5">This project extends Bootstrap 5.3.8 with custom components that maintain full
compatibility with Bootstrap's design system while adding powerful functionality. All components are
built using object-oriented JavaScript with customizable JSON configurations, following Bootstrap's
conventions and accessibility standards.</p>
</div>
<div class="col-md-4">
<div class="card bg-primary-subtle">
<div class="card-body text-center">
<h5 class="card-title">
<i class="bi bi-check-circle-fill text-success me-2"></i> Production Ready
</h5>
<p class="card-text small">12 components ready for production use with full documentation</p>
</div>
</div>
</div>
</div>
</section>
<!-- Components Section -->
<section id="components" class="mb-5">
<h2 class="display-6 fw-bold mb-4">📦 Components Status</h2>
<!-- Tabs for component categories -->
<ul class="nav nav-tabs mb-4" id="componentTabs" role="tablist">
<li class="nav-item" role="presentation">
<button class="nav-link active" id="working-tab" data-bs-toggle="tab" data-bs-target="#working"
type="button" role="tab">
<i class="bi bi-check-circle-fill text-success me-2"></i> Working (12) </button>
</li>
<li class="nav-item" role="presentation">
<button class="nav-link" id="testing-tab" data-bs-toggle="tab" data-bs-target="#testing" type="button"
role="tab">
<i class="bi bi-exclamation-triangle-fill text-warning me-2"></i> Needs Testing (4) </button>
</li>
<li class="nav-item" role="presentation">
<button class="nav-link" id="fixing-tab" data-bs-toggle="tab" data-bs-target="#fixing" type="button"
role="tab">
<i class="bi bi-tools text-danger me-2"></i> Needs Fixing (2) </button>
</li>
</ul>
<div class="tab-content" id="componentTabsContent">
<!-- Working Components -->
<div class="tab-pane fade show active" id="working" role="tabpanel">
<div class="row g-4">
<!-- Ajax Form -->
<div class="col-lg-6">
<div class="card component-card h-100">
<div class="card-header d-flex justify-content-between align-items-center">
<h5 class="card-title mb-0">Ajax Form</h5>
<span class="badge bg-success status-badge">PRODUCTION</span>
</div>
<div class="card-body">
<p class="card-text text-muted mb-3">Vanilla JavaScript drop-in replacement for jQuery ajaxForm()
</p>
<p class="small">Pure JavaScript form submission handler with file upload support (including
multiple files) and real-time progress tracking. No jQuery dependency.</p>
</div>
<div class="card-footer bg-transparent">
<div class="d-flex gap-2">
<a href="AjaxForm/Example.html" class="btn btn-success btn-sm">
<i class="bi bi-eye me-1"></i>Demo </a>
<a href="https://github.com/Yohn/Bootstrap-Enhanced-Components/tree/main/AjaxForm/README.md"
class="btn btn-outline-secondary btn-sm">
<i class="bi bi-book me-1"></i>Docs </a>
</div>
</div>
</div>
</div>
<!-- JSON Table -->
<div class="col-lg-6">
<div class="card component-card h-100">
<div class="card-header d-flex justify-content-between align-items-center">
<h5 class="card-title mb-0">JSON Table</h5>
<span class="badge bg-success status-badge">PRODUCTION</span>
</div>
<div class="card-body">
<p class="card-text text-muted mb-3">Advanced data tables without jQuery - sorting, filtering,
pagination, and inline editing</p>
<p class="small">A lightweight yet powerful data table implementation that rivals DataTables
functionality with pure vanilla JavaScript. Features global search, column-specific filtering,
sortable columns, customizable pagination, and built-in row editing capabilities.</p>
<div class="mb-3">
<h6 class="small fw-bold text-muted">KEY FEATURES</h6>
<ul class="small mb-0">
<li>JSON data loading & global/column search</li>
<li>Custom sort functions for dates/currency</li>
<li>Inline editing with floating labels</li>
<li>Toast notifications & event system</li>
<li>Less than 600 lines, zero dependencies</li>
</ul>
</div>
</div>
<div class="card-footer bg-transparent">
<div class="d-flex gap-2">
<a href="JsonTable/Example.html" class="btn btn-success btn-sm">
<i class="bi bi-eye me-1"></i>Demo </a>
<a href="https://github.com/Yohn/Bootstrap-Enhanced-Components/tree/main/JsonTable/README.md"
class="btn btn-outline-secondary btn-sm">
<i class="bi bi-book me-1"></i>Docs </a>
</div>
</div>
</div>
</div>
<!-- HTML Table -->
<div class="col-lg-6">
<div class="card component-card h-100">
<div class="card-header d-flex justify-content-between align-items-center">
<h5 class="card-title mb-0">HTML Table</h5>
<span class="badge bg-success status-badge">PRODUCTION</span>
</div>
<div class="card-body">
<p class="card-text text-muted mb-3">Enhanced HTML table with sorting, filtering, and pagination</p>
<p class="small">Transform existing HTML tables into dynamic, interactive tables with column-specific search, global search, sorting, pagination, and column visibility controls.</p>
</div>
<div class="card-footer bg-transparent">
<div class="d-flex gap-2">
<a href="HtmlTable/Example.html" class="btn btn-success btn-sm">
<i class="bi bi-eye me-1"></i>Demo
</a>
<a href="https://github.com/Yohn/Bootstrap-Enhanced-Components/tree/main/HtmlTable/README.md"
class="btn btn-outline-secondary btn-sm">
<i class="bi bi-book me-1"></i>Docs
</a>
</div>
</div>
</div>
</div>
<!-- WYSIWYG Editor -->
<div class="col-lg-6">
<div class="card component-card h-100">
<div class="card-header d-flex justify-content-between align-items-center">
<h5 class="card-title mb-0">WYSIWYG Editor</h5>
<span class="badge bg-success status-badge">PRODUCTION</span>
</div>
<div class="card-body">
<p class="card-text text-muted mb-3">Customizable rich text editor with full Bootstrap 5.3
integration</p>
<p class="small">A fully-featured, modular WYSIWYG editor built with vanilla JavaScript. Provides
rich text editing, media support, autosave, and advanced security features with seamless
Bootstrap integration.</p>
<div class="mb-3">
<h6 class="small fw-bold text-muted">KEY FEATURES</h6>
<ul class="small mb-0">
<li>Rich text editing with formatting preservation</li>
<li>Tables, media embedding, and code view</li>
<li>Autosave, draft recovery, and version control</li>
<li>HTML sanitization and XSS protection</li>
<li>Fullscreen, history, and cross-tab sync</li>
</ul>
</div>
</div>
<div class="card-footer bg-transparent">
<div class="d-flex gap-2">
<a href="WysiwygEditor/Example.html" class="btn btn-primary btn-sm">
<i class="bi bi-eye me-1"></i>Demo </a>
<a href="https://github.com/Yohn/Bootstrap-Enhanced-Components/tree/main/WysiwygEditor/README.md"
class="btn btn-outline-secondary btn-sm">
<i class="bi bi-book me-1"></i>Docs </a>
</div>
</div>
</div>
</div>
<!-- Auto Textarea -->
<div class="col-lg-6">
<div class="card component-card h-100">
<div class="card-header d-flex justify-content-between align-items-center">
<h5 class="card-title mb-0">Auto Textarea</h5>
<span class="badge bg-success status-badge">PRODUCTION</span>
</div>
<div class="card-body">
<p class="card-text text-muted mb-3">Automatically adjusts textarea height based on content</p>
<p class="small">Smart textarea component that dynamically resizes as users type, providing a
better user experience for content input. Features smooth animations, configurable constraints,
and full Bootstrap integration.</p>
<div class="mb-3">
<h6 class="small fw-bold text-muted">KEY FEATURES</h6>
<ul class="small mb-0">
<li>Auto-resizing with smooth animations</li>
<li>Min/max height limits</li>
<li>Form validation integration</li>
</ul>
</div>
</div>
<div class="card-footer bg-transparent">
<div class="d-flex gap-2">
<a href="AutoTextarea/Example.html" class="btn btn-primary btn-sm">
<i class="bi bi-eye me-1"></i>Demo </a>
<a href="https://github.com/Yohn/Bootstrap-Enhanced-Components/\1/README.md"
class="btn btn-outline-secondary btn-sm">
<i class="bi bi-book me-1"></i>Docs </a>
</div>
</div>
</div>
</div>
<!-- alert, confirm, and prompt replacements -->
<div class="col-lg-6">
<div class="card component-card h-100">
<div class="card-header d-flex justify-content-between align-items-center">
<h5 class="card-title mb-0">YoBox Modals</h5>
<span class="badge bg-success status-badge">PRODUCTION</span>
</div>
<div class="card-body">
<p class="card-text text-muted mb-3">Modern Bootstrap 5.3+ modal dialogs without jQuery</p>
<p class="small">Vanilla JavaScript replacement for Bootbox providing alert, confirm, and prompt
dialogs with extensive customization. Features multiple input types, validation, localization
support, and seamless Bootstrap theming integration.</p>
<div class="mb-3">
<h6 class="small fw-bold text-muted">KEY FEATURES</h6>
<ul class="small mb-0">
<li>No jQuery dependency - pure vanilla JS</li>
<li>Full Bootstrap 5.3 modal integration</li>
<li>10+ input types with validation</li>
<li>Custom buttons and callbacks</li>
<li>Internationalization (i18n) support</li>
<li>Dark/light theme compatibility</li>
</ul>
</div>
</div>
<div class="card-footer bg-transparent">
<div class="d-flex gap-2">
<a href="YoBox/Example.html" class="btn btn-primary btn-sm">
<i class="bi bi-eye me-1"></i>Demo </a>
<a href="https://github.com/Yohn/Bootstrap-Enhanced-Components/tree/main/YoBox/README.md"
class="btn btn-outline-secondary btn-sm">
<i class="bi bi-book me-1"></i>Docs </a>
</div>
</div>
</div>
</div>
<!-- Toast Alerts -->
<div class="col-lg-6">
<div class="card component-card h-100">
<div class="card-header d-flex justify-content-between align-items-center">
<h5 class="card-title mb-0">Toast Alerts</h5>
<span class="badge bg-success status-badge">PRODUCTION</span>
</div>
<div class="card-body">
<p class="card-text text-muted mb-3">Advanced toast notification system with dynamic creation and
queue management</p>
<p class="small">Comprehensive toast notification system that extends Bootstrap's native toasts
with dynamic creation, intelligent queueing, multiple positioning options, and advanced
interaction features.</p>
<div class="mb-3">
<h6 class="small fw-bold text-muted">KEY FEATURES</h6>
<ul class="small mb-0">
<li>Dynamic creation & priority queueing</li>
<li>7 position options</li>
<li>Touch gestures & progress indicators</li>
</ul>
</div>
</div>
<div class="card-footer bg-transparent">
<div class="d-flex gap-2">
<a href="ToastAlerts/Example.html" class="btn btn-primary btn-sm">
<i class="bi bi-eye me-1"></i>Demo </a>
<a href="https://github.com/Yohn/Bootstrap-Enhanced-Components/tree/main/ToastAlerts/README.md"
class="btn btn-outline-secondary btn-sm">
<i class="bi bi-book me-1"></i>Docs </a>
</div>
</div>
</div>
</div>
<!-- Input Mask -->
<div class="col-lg-6">
<div class="card component-card h-100">
<div class="card-header d-flex justify-content-between align-items-center">
<h5 class="card-title mb-0">Input Mask</h5>
<span class="badge bg-success status-badge">PRODUCTION</span>
</div>
<div class="card-body">
<p class="card-text text-muted mb-3">Real-time input formatting with pattern validation</p>
<p class="small">Powerful input masking component that formats user input in real-time with
customizable patterns, built-in presets for common formats, and comprehensive validation
features.</p>
<div class="mb-3">
<h6 class="small fw-bold text-muted">KEY FEATURES</h6>
<ul class="small mb-0">
<li>Real-time formatting</li>
<li>Built-in patterns (phone, SSN, credit card)</li>
<li>Custom validation & Bootstrap integration</li>
</ul>
</div>
</div>
<div class="card-footer bg-transparent">
<div class="d-flex gap-2">
<a href="InputMask/Example.html" class="btn btn-primary btn-sm">
<i class="bi bi-eye me-1"></i>Demo </a>
<a href="https://github.com/Yohn/Bootstrap-Enhanced-Components/tree/main/InputMask/README.md"
class="btn btn-outline-secondary btn-sm">
<i class="bi bi-book me-1"></i>Docs </a>
</div>
</div>
</div>
</div>
<!-- Simple Lightbox -->
<div class="col-lg-6">
<div class="card component-card h-100">
<div class="card-header d-flex justify-content-between align-items-center">
<h5 class="card-title mb-0">Simple Lightbox</h5>
<span class="badge bg-success status-badge">PRODUCTION</span>
</div>
<div class="card-body">
<p class="card-text text-muted mb-3">Lightweight image lightbox with gallery support</p>
<p class="small">Feature-rich yet lightweight image lightbox component with gallery support, zoom
functionality, and mobile-friendly touch interactions for showcasing images.</p>
<div class="mb-3">
<h6 class="small fw-bold text-muted">KEY FEATURES</h6>
<ul class="small mb-0">
<li>Gallery support & zoom functionality</li>
<li>Touch/swipe gestures</li>
<li>Keyboard navigation & responsive design</li>
</ul>
</div>
</div>
<div class="card-footer bg-transparent">
<div class="d-flex gap-2">
<a href="SimpleLightbox/Example.html" class="btn btn-primary btn-sm">
<i class="bi bi-eye me-1"></i>Demo </a>
<a href="https://github.com/Yohn/Bootstrap-Enhanced-Components/tree/main/SimpleLightbox/README.md"
class="btn btn-outline-secondary btn-sm">
<i class="bi bi-book me-1"></i>Docs </a>
</div>
</div>
</div>
</div>
<!-- Context Menu -->
<div class="col-lg-6">
<div class="card component-card h-100">
<div class="card-header d-flex justify-content-between align-items-center">
<h5 class="card-title mb-0">Context Menu</h5>
<span class="badge bg-success status-badge">PRODUCTION</span>
</div>
<div class="card-body">
<p class="card-text text-muted mb-3">Feature-rich right-click context menus with submenu support
</p>
<p class="small">Flexible context menu component that supports right-click, click, and hover
triggers. Features nested submenus, dynamic content generation, conditional rendering, and
seamless Bootstrap 5.3 integration with dark mode support.</p>
<div class="mb-3">
<h6 class="small fw-bold text-muted">KEY FEATURES</h6>
<ul class="small mb-0">
<li>Multiple trigger events (click, right-click, hover)</li>
<li>Nested submenu support with unlimited depth</li>
<li>Dynamic menu items with conditional rendering</li>
<li>Element-specific data fetching</li>
<li>Font Awesome icon integration</li>
<li>Bootstrap 5.3 dark mode compatible</li>
</ul>
</div>
</div>
<div class="card-footer bg-transparent">
<div class="d-flex gap-2">
<a href="ContextMenu/Example.html" class="btn btn-primary btn-sm">
<i class="bi bi-eye me-1"></i>Demo </a>
<a href="https://github.com/Yohn/Bootstrap-Enhanced-Components/tree/main/ContextMenu/README.md"
class="btn btn-outline-secondary btn-sm">
<i class="bi bi-book me-1"></i>Docs </a>
</div>
</div>
</div>
</div>
<!-- Multi Select -->
<div class="col-lg-6">
<div class="card component-card h-100">
<div class="card-header d-flex justify-content-between align-items-center">
<h5 class="card-title mb-0">Multi Select</h5>
<span class="badge bg-success status-badge">PRODUCTION</span>
</div>
<div class="card-body">
<p class="card-text text-muted mb-3">Advanced multi-selection dropdown with search and grouping
</p>
<p class="small">Sophisticated multi-select dropdown component with search functionality, option
grouping, custom rendering, and extensive customization options for complex selection
interfaces.</p>
<div class="mb-3">
<h6 class="small fw-bold text-muted">KEY FEATURES</h6>
<ul class="small mb-0">
<li>Search filtering & option grouping</li>
<li>Custom renderers & tag display</li>
<li>Bulk operations</li>
</ul>
</div>
</div>
<div class="card-footer bg-transparent">
<div class="d-flex gap-2">
<a href="MultiSelect/Example.html" class="btn btn-primary btn-sm">
<i class="bi bi-eye me-1"></i>Demo </a>
<a href="https://github.com/Yohn/Bootstrap-Enhanced-Components/tree/main/MultiSelect/README.md"
class="btn btn-outline-secondary btn-sm">
<i class="bi bi-book me-1"></i>Docs </a>
</div>
</div>
</div>
</div>
<!-- File Upload Preview -->
<div class="col-lg-6">
<div class="card component-card h-100">
<div class="card-header d-flex justify-content-between align-items-center">
<h5 class="card-title mb-0">File Upload Preview</h5>
<span class="badge bg-success status-badge">PRODUCTION</span>
</div>
<div class="card-body">
<p class="card-text text-muted mb-3">Enhanced file upload with visual previews and validation</p>
<p class="small">Comprehensive file upload enhancement that provides visual previews for images
and videos, file validation, and management capabilities with full Bootstrap integration.</p>
</div>
<div class="card-footer bg-transparent">
<div class="d-flex gap-2">
<a href="FileUploadPreview/Example.html" class="btn btn-primary btn-sm">
<i class="bi bi-eye me-1"></i>Demo </a>
<a href="https://github.com/Yohn/Bootstrap-Enhanced-Components/tree/main/FileUploadPreview/README.md"
class="btn btn-outline-secondary btn-sm">
<i class="bi bi-book me-1"></i>Docs </a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Needs Testing Components -->
<div class="tab-pane fade" id="testing" role="tabpanel">
<div class="alert alert-warning" role="alert">
<i class="bi bi-info-circle me-2"></i>
<strong>Beta Components:</strong> These components are feature-complete but need more extensive testing
across different environments.
</div>
<div class="row g-4">
<!-- Behavior Tracker -->
<div class="col-lg-6">
<div class="card component-card h-100">
<div class="card-header d-flex justify-content-between align-items-center">
<h5 class="card-title mb-0">Behavior Tracker</h5>
<span class="badge bg-warning status-badge">BETA</span>
</div>
<div class="card-body">
<p class="card-text text-muted mb-3">Advanced user behavior tracking and analytics</p>
<p class="small">Comprehensive behavior tracking system that monitors user interactions, form
engagement, and page analytics with built-in bot detection and human verification capabilities.
</p>
</div>
<div class="card-footer bg-transparent">
<div class="d-flex gap-2">
<a href="BehaviorTracker/Example.html" class="btn btn-warning btn-sm">
<i class="bi bi-eye me-1"></i>Demo </a>
<a href="https://github.com/Yohn/Bootstrap-Enhanced-Components/tree/main/BehaviorTracker/README.md"
class="btn btn-outline-secondary btn-sm">
<i class="bi bi-book me-1"></i>Docs </a>
</div>
</div>
</div>
</div>
<!-- Multi Level Dropdown -->
<div class="col-lg-6">
<div class="card component-card h-100">
<div class="card-header d-flex justify-content-between align-items-center">
<h5 class="card-title mb-0">Multi Level Dropdown</h5>
<span class="badge bg-warning status-badge">BETA</span>
</div>
<div class="card-body">
<p class="card-text text-muted mb-3">Bootstrap-compatible multi-level dropdown navigation</p>
<p class="card-text small text-warning mb-3">Needs to enable a auto placement to move the menu
back in the viewport if screen resolution is small.</p>
<p class="small">Advanced dropdown component that extends Bootstrap's dropdown with multi-level
navigation support, responsive behavior, and intelligent positioning.</p>
</div>
<div class="card-footer bg-transparent">
<div class="d-flex gap-2">
<a href="MultiLevelDropdown/Example.html" class="btn btn-warning btn-sm">
<i class="bi bi-eye me-1"></i>Demo </a>
<a href="https://github.com/Yohn/Bootstrap-Enhanced-Components/tree/main/MultiLevelDropdown/README.md"
class="btn btn-outline-secondary btn-sm">
<i class="bi bi-book me-1"></i>Docs </a>
</div>
</div>
</div>
</div>
<!-- Onboarding Tour -->
<div class="col-lg-6">
<div class="card component-card h-100">
<div class="card-header d-flex justify-content-between align-items-center">
<h5 class="card-title mb-0">Onboarding Tour</h5>
<span class="badge bg-warning status-badge">BETA</span>
</div>
<div class="card-body">
<p class="card-text text-muted mb-3">Interactive user onboarding and feature tours</p>
<p class="small">Comprehensive onboarding tour system with multi-page support, form integration,
and customizable styling to guide users through applications and features.</p>
</div>
<div class="card-footer bg-transparent">
<div class="d-flex gap-2">
<a href="OnboardingTour/Example.html" class="btn btn-warning btn-sm">
<i class="bi bi-eye me-1"></i>Demo </a>
<a href="https://github.com/Yohn/Bootstrap-Enhanced-Components/tree/main/OnboardingTour/README.md"
class="btn btn-outline-secondary btn-sm">
<i class="bi bi-book me-1"></i>Docs </a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Needs Fixing Components -->
<div class="tab-pane fade" id="fixing" role="tabpanel">
<div class="alert alert-danger" role="alert">
<i class="bi bi-exclamation-triangle me-2"></i>
<strong>Development Status:</strong> These components are under active development and may have known
issues.
</div>
<div class="row g-4">
<!-- Rate Limiter -->
<div class="col-lg-6">
<div class="card component-card h-100">
<div class="card-header d-flex justify-content-between align-items-center">
<h5 class="card-title mb-0">Rate Limiter</h5>
<span class="badge bg-danger status-badge">DEVELOPMENT</span>
</div>
<div class="card-body">
<p class="card-text text-muted mb-3">Client-side rate limiting for API calls</p>
<p class="small">Client-side rate limiting system with queue management, backoff strategies, and
priority handling for API calls and form submissions.</p>
<div class="alert alert-warning small mt-3">
<i class="bi bi-tools me-1"></i> Status: API refinements needed
</div>
</div>
<div class="card-footer bg-transparent">
<div class="d-flex gap-2">
<a href="RateLimiter/Example.html" class="btn btn-danger btn-sm">
<i class="bi bi-eye me-1"></i>Demo </a>
<a href="https://github.com/Yohn/Bootstrap-Enhanced-Components/tree/main/RateLimiter/README.md"
class="btn btn-outline-secondary btn-sm">
<i class="bi bi-book me-1"></i>Docs </a>
</div>
</div>
</div>
</div>
<!-- Image Lightbox -->
<div class="col-lg-6">
<div class="card component-card h-100">
<div class="card-header d-flex justify-content-between align-items-center">
<h5 class="card-title mb-0">Image Lightbox</h5>
<span class="badge bg-danger status-badge">DEVELOPMENT</span>
</div>
<div class="card-body">
<p class="card-text text-muted mb-3">Advanced image lightbox with zoom and slideshow</p>
<p class="small">Feature-rich image lightbox with advanced zoom functionality, slideshow
capabilities, and extensive customization options.</p>
<div class="alert alert-warning small mt-3">
<i class="bi bi-tools me-1"></i> Status: Performance optimizations needed
</div>
</div>
<div class="card-footer bg-transparent">
<div class="d-flex gap-2">
<a href="ImageLightbox/Example.html" class="btn btn-danger btn-sm">
<i class="bi bi-eye me-1"></i>Demo </a>
<a href="https://github.com/Yohn/Bootstrap-Enhanced-Components/tree/main/ImageLightbox/README.md"
class="btn btn-outline-secondary btn-sm">
<i class="bi bi-book me-1"></i>Docs </a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Architecture Section -->
<section id="architecture" class="mb-5">
<h2 class="display-6 fw-bold mb-4">🏗️ Architecture</h2>
<div class="row g-4 mb-4">
<div class="col-md-6">
<div class="card h-100">
<div class="card-body">
<div class="d-flex align-items-center mb-3">
<div class="feature-icon me-3">
<i class="bi bi-gear-fill"></i>
</div>
<h5 class="card-title mb-0">Design Principles</h5>
</div>
<ul class="list-unstyled">
<li class="mb-2"><i class="bi bi-check-circle-fill text-success me-2"></i><strong>Tab
Indentation:</strong> Consistent formatting</li>
<li class="mb-2"><i class="bi bi-check-circle-fill text-success me-2"></i><strong>OOP
Design:</strong> Clean class-based architecture</li>
<li class="mb-2"><i class="bi bi-check-circle-fill text-success me-2"></i><strong>JSON
Configuration:</strong> Easy integration</li>
<li class="mb-2"><i class="bi bi-check-circle-fill text-success me-2"></i><strong>Bootstrap
Integration:</strong> Seamless theming</li>
<li class="mb-2"><i class="bi bi-check-circle-fill text-success me-2"></i><strong>Accessibility
First:</strong> WCAG 2.1 compliant</li>
<li class="mb-0"><i class="bi bi-check-circle-fill text-success me-2"></i><strong>Performance
Optimized:</strong> Efficient DOM handling</li>
</ul>
</div>
</div>
</div>
<div class="col-md-6">
<div class="card h-100">
<div class="card-body">
<div class="d-flex align-items-center mb-3">
<div class="feature-icon me-3">
<i class="bi bi-folder-fill"></i>
</div>
<h5 class="card-title mb-0">Project Structure</h5>
</div>
<div class="code-block p-3">
<code class="text-light small">
ComponentName/<br>
├── README.md<br>
├── Example.html<br>
├── js/<br>
│ └── ComponentName.js<br>
├── scss/<br>
│ └── _component.scss<br>
└── ExampleJS/<br>
└── demo.js
</code>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Quick Start Section -->
<section id="quick-start" class="mb-5">
<h2 class="display-6 fw-bold mb-4">🚀 Quick Start</h2>
<div class="row g-4">
<div class="col-lg-8">
<h4>Basic Installation</h4>
<div class="mb-4">
<h6 class="fw-bold">1. Include Bootstrap 5.3.8:</h6>
<div class="code-block p-3">
<code class="text-light small">
<link href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.3.8/css/bootstrap.min.css" rel="stylesheet"><br>
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.3.8/js/bootstrap.bundle.min.js"></script>
</code>
</div>
</div>
<div class="mb-4">
<h6 class="fw-bold">2. Include Component Files:</h6>
<div class="code-block p-3">
<code class="text-light small">
<!-- Component CSS --><br>
<link href="ComponentName/scss/_component.css" rel="stylesheet"><br><br>
<!-- Component JavaScript --><br>
<script src="ComponentName/js/ComponentName.js"></script>
</code>
</div>
</div>
<div class="mb-4">
<h6 class="fw-bold">3. Initialize Component:</h6>
<div class="code-block p-3">
<code class="text-light small">
// Basic initialization<br>
const component = new ComponentName('#element');<br><br>
// With custom options<br>
const component = new ComponentName('#element', {<br>
option1: 'value1',<br>
option2: true,<br>
callbacks: {<br>
onEvent: (data) => console.log(data)<br>
}<br>
});
</code>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="card bg-success-subtle">
<div class="card-body">
<h5 class="card-title">
<i class="bi bi-lightbulb-fill text-warning me-2"></i> Configuration Pattern
</h5>
<p class="card-text small">All components follow a consistent configuration pattern with JSON options,
making them easy to customize and integrate.</p>
<div class="code-block p-2 mt-3">
<code class="text-light small">
{<br>
enabled: true,<br>
theme: 'default',<br>
callbacks: {<br>
onInit: null<br>
}<br>
}
</code>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Theming Section -->
<section id="theming" class="mb-5">
<h2 class="display-6 fw-bold mb-4">🎨 Theming</h2>
<div class="row g-4">
<div class="col-md-6">
<div class="card h-100">
<div class="card-body">
<h5 class="card-title">
<i class="bi bi-palette-fill text-primary me-2"></i> Bootstrap Integration
</h5>
<p class="card-text">Components seamlessly integrate with Bootstrap's theming system:</p>
<ul class="list-unstyled">
<li class="mb-2"><i class="bi bi-check text-success me-2"></i>CSS Variables support</li>
<li class="mb-2"><i class="bi bi-check text-success me-2"></i>Full dark mode compatibility</li>
<li class="mb-2"><i class="bi bi-check text-success me-2"></i>Consistent color palette</li>
<li class="mb-0"><i class="bi bi-check text-success me-2"></i>Responsive breakpoints</li>
</ul>
</div>
</div>
</div>
<div class="col-md-6">
<div class="card h-100">
<div class="card-body">
<h5 class="card-title">
<i class="bi bi-brush-fill text-info me-2"></i> Custom Themes
</h5>
<p class="card-text">Create custom themes by overriding CSS variables:</p>
<div class="code-block p-3">
<code class="text-light small">
:root {<br>
--bs-primary: #your-color;<br>
--bs-secondary: #your-color;<br>
--component-bg: var(--bs-body-bg);<br>
--component-border: var(--bs-border-color);<br>
}
</code>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Accessibility Section -->