generated from kbysiec/vite-vanilla-ts-lib-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
828 lines (802 loc) · 27.6 KB
/
index.html
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>EzyTable Demo</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body>
<div id="app">
<table id="ezy-table">
<thead>
<tr>
<th data-name="name" data-label="Name"></th>
<th data-name="description" data-label="Description"></th>
<th data-name="status" data-label="Status"></th>
<th data-name="date" data-label="Date"></th>
</tr>
</thead>
<tbody></tbody>
</table>
<div class="px-4 sm:px-6 lg:px-8">
<div class="sm:flex sm:items-center">
<div class="sm:flex-auto">
<h1 class="text-base font-semibold leading-6 text-gray-900">
Users
</h1>
<p class="mt-2 text-sm text-gray-700">
A list of all the users in your account including their name,
title, email and role.
</p>
</div>
<div class="mt-4 sm:ml-16 sm:mt-0 sm:flex-none">
<button
type="button"
class="block rounded-md bg-indigo-600 px-3 py-2 text-center text-sm font-semibold text-white shadow-sm hover:bg-indigo-500 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-indigo-600"
>
Add user
</button>
</div>
</div>
<div class="mt-8 flow-root">
<div class="-mx-4 -my-2 overflow-x-auto sm:-mx-6 lg:-mx-8">
<div
class="inline-block min-w-full py-2 align-middle sm:px-6 lg:px-8"
>
<div
class="overflow-hidden shadow ring-1 ring-black ring-opacity-5 sm:rounded-lg"
>
<table
id="ezy-table-2"
class="min-w-full divide-y divide-gray-300"
>
<thead class="bg-gray-50">
<tr>
<th
scope="col"
class="py-3.5 pl-4 pr-3 text-left text-sm font-semibold text-gray-900 sm:pl-6"
>
Name
</th>
<th
scope="col"
class="px-3 py-3.5 text-left text-sm font-semibold text-gray-900"
>
Title
</th>
<th
scope="col"
class="px-3 py-3.5 text-left text-sm font-semibold text-gray-900"
>
Email
</th>
<th
scope="col"
class="px-3 py-3.5 text-left text-sm font-semibold text-gray-900"
>
Role
</th>
<th scope="col" class="relative py-3.5 pl-3 pr-4 sm:pr-6">
<span class="sr-only">Edit</span>
</th>
</tr>
</thead>
<tbody class="divide-y divide-gray-200 bg-white">
<tr>
<td
class="whitespace-nowrap py-4 pl-4 pr-3 text-sm font-medium text-gray-900 sm:pl-6"
>
Lindsay Walton
</td>
<td
class="whitespace-nowrap px-3 py-4 text-sm text-gray-500"
>
Front-end Developer
</td>
<td
class="whitespace-nowrap px-3 py-4 text-sm text-gray-500"
>
</td>
<td
class="whitespace-nowrap px-3 py-4 text-sm text-gray-500"
>
Member
</td>
<td
class="relative whitespace-nowrap py-4 pl-3 pr-4 text-right text-sm font-medium sm:pr-6"
>
<a
href="#"
class="text-indigo-600 hover:text-indigo-900"
>Edit<span class="sr-only">, Lindsay Walton</span></a
>
</td>
</tr>
<!-- More people... -->
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="p-4">
<table id="programs" class="min-w-full divide-y divide-gray-300">
<thead>
<tr>
<th
scope="col"
data-name="program_name"
data-label="Program Name"
class="hidden px-3 py-3.5 text-left text-sm font-semibold text-gray-900 sm:table-cell"
>
Program Name
</th>
<th
scope="col"
data-name="department"
data-label="Department"
class="hidden px-3 py-3.5 text-left text-sm font-semibold text-gray-900 lg:table-cell"
>
Department
</th>
<th
scope="col"
data-name="total_courses"
data-label="Total Courses"
class="hidden px-3 py-3.5 text-left text-sm font-semibold text-gray-900 lg:table-cell"
>
Total Courses
</th>
<th
scope="col"
data-name="actions"
data-label="Actions"
class="px-3 py-3.5 text-left text-sm font-semibold text-gray-900"
>
Actions
</th>
</tr>
</thead>
<tbody class="divide-y divide-gray-200 bg-white">
<tr>
<td
class="whitespace-wrap hidden px-3 py-4 text-sm text-gray-500 sm:table-cell"
>
A.A. Degree/Elementary Education
</td>
<td
class="whitespace-wrap hidden px-3 py-4 text-sm text-gray-500 lg:table-cell"
>
A.A. Degree/Elementary Education Department - SMPU
</td>
<td
class="hidden whitespace-nowrap px-3 py-4 text-sm text-gray-500 lg:table-cell"
>
0
</td>
<td
class="whitespace-nowrap px-3 py-4 text-center text-sm text-gray-500"
>
<a
href="/admission/programs/A.A. Degree/Elementary Education"
class="text-indigo-600 hover:text-indigo-900"
>View</a
>
</td>
</tr>
<tr>
<td
class="whitespace-wrap hidden px-3 py-4 text-sm text-gray-500 sm:table-cell"
>
Accounting
</td>
<td
class="whitespace-wrap hidden px-3 py-4 text-sm text-gray-500 lg:table-cell"
>
Accounting Department - SMPU
</td>
<td
class="hidden whitespace-nowrap px-3 py-4 text-sm text-gray-500 lg:table-cell"
>
4
</td>
<td
class="whitespace-nowrap px-3 py-4 text-center text-sm text-gray-500"
>
<a
href="/admission/programs/Accounting"
class="text-indigo-600 hover:text-indigo-900"
>View</a
>
</td>
</tr>
<tr>
<td
class="whitespace-wrap hidden px-3 py-4 text-sm text-gray-500 sm:table-cell"
>
Agriculture
</td>
<td
class="whitespace-wrap hidden px-3 py-4 text-sm text-gray-500 lg:table-cell"
>
Agriculture Department - SMPU
</td>
<td
class="hidden whitespace-nowrap px-3 py-4 text-sm text-gray-500 lg:table-cell"
>
0
</td>
<td
class="whitespace-nowrap px-3 py-4 text-center text-sm text-gray-500"
>
<a
href="/admission/programs/Agriculture"
class="text-indigo-600 hover:text-indigo-900"
>View</a
>
</td>
</tr>
<tr>
<td
class="whitespace-wrap hidden px-3 py-4 text-sm text-gray-500 sm:table-cell"
>
Architectural Engineering
</td>
<td
class="whitespace-wrap hidden px-3 py-4 text-sm text-gray-500 lg:table-cell"
>
Architectural Engineering Department - SMPU
</td>
<td
class="hidden whitespace-nowrap px-3 py-4 text-sm text-gray-500 lg:table-cell"
>
0
</td>
<td
class="whitespace-nowrap px-3 py-4 text-center text-sm text-gray-500"
>
<a
href="/admission/programs/Architectural Engineering"
class="text-indigo-600 hover:text-indigo-900"
>View</a
>
</td>
</tr>
<tr>
<td
class="whitespace-wrap hidden px-3 py-4 text-sm text-gray-500 sm:table-cell"
>
B-Certificate in Elementary Education
</td>
<td
class="whitespace-wrap hidden px-3 py-4 text-sm text-gray-500 lg:table-cell"
>
B-Certificate in Elementary Education Department - SMPU
</td>
<td
class="hidden whitespace-nowrap px-3 py-4 text-sm text-gray-500 lg:table-cell"
>
0
</td>
<td
class="whitespace-nowrap px-3 py-4 text-center text-sm text-gray-500"
>
<a
href="/admission/programs/B-Certificate in Elementary Education"
class="text-indigo-600 hover:text-indigo-900"
>View</a
>
</td>
</tr>
<tr>
<td
class="whitespace-wrap hidden px-3 py-4 text-sm text-gray-500 sm:table-cell"
>
B.Sc. Degree/General Education
</td>
<td
class="whitespace-wrap hidden px-3 py-4 text-sm text-gray-500 lg:table-cell"
>
B.Sc. Degree/General Education Department - SMPU
</td>
<td
class="hidden whitespace-nowrap px-3 py-4 text-sm text-gray-500 lg:table-cell"
>
0
</td>
<td
class="whitespace-nowrap px-3 py-4 text-center text-sm text-gray-500"
>
<a
href="/admission/programs/B.Sc. Degree/General Education"
class="text-indigo-600 hover:text-indigo-900"
>View</a
>
</td>
</tr>
<tr>
<td
class="whitespace-wrap hidden px-3 py-4 text-sm text-gray-500 sm:table-cell"
>
Biology
</td>
<td
class="whitespace-wrap hidden px-3 py-4 text-sm text-gray-500 lg:table-cell"
>
Mother Patern College of Health Sciences (MPCHS) - SMPU
</td>
<td
class="hidden whitespace-nowrap px-3 py-4 text-sm text-gray-500 lg:table-cell"
>
5
</td>
<td
class="whitespace-nowrap px-3 py-4 text-center text-sm text-gray-500"
>
<a
href="/admission/programs/Biology"
class="text-indigo-600 hover:text-indigo-900"
>View</a
>
</td>
</tr>
<tr>
<td
class="whitespace-wrap hidden px-3 py-4 text-sm text-gray-500 sm:table-cell"
>
Building Construction Technology
</td>
<td
class="whitespace-wrap hidden px-3 py-4 text-sm text-gray-500 lg:table-cell"
>
Building Construction Technology Department - SMPU
</td>
<td
class="hidden whitespace-nowrap px-3 py-4 text-sm text-gray-500 lg:table-cell"
>
0
</td>
<td
class="whitespace-nowrap px-3 py-4 text-center text-sm text-gray-500"
>
<a
href="/admission/programs/Building Construction Technology"
class="text-indigo-600 hover:text-indigo-900"
>View</a
>
</td>
</tr>
<tr>
<td
class="whitespace-wrap hidden px-3 py-4 text-sm text-gray-500 sm:table-cell"
>
C-Certificate in Elementary Education
</td>
<td
class="whitespace-wrap hidden px-3 py-4 text-sm text-gray-500 lg:table-cell"
>
C-Certificate in Elementary Education Department - SMPU
</td>
<td
class="hidden whitespace-nowrap px-3 py-4 text-sm text-gray-500 lg:table-cell"
>
0
</td>
<td
class="whitespace-nowrap px-3 py-4 text-center text-sm text-gray-500"
>
<a
href="/admission/programs/C-Certificate in Elementary Education"
class="text-indigo-600 hover:text-indigo-900"
>View</a
>
</td>
</tr>
<tr>
<td
class="whitespace-wrap hidden px-3 py-4 text-sm text-gray-500 sm:table-cell"
>
Civil Engineering
</td>
<td
class="whitespace-wrap hidden px-3 py-4 text-sm text-gray-500 lg:table-cell"
>
Civil Engineering Department - SMPU
</td>
<td
class="hidden whitespace-nowrap px-3 py-4 text-sm text-gray-500 lg:table-cell"
>
28
</td>
<td
class="whitespace-nowrap px-3 py-4 text-center text-sm text-gray-500"
>
<a
href="/admission/programs/Civil Engineering"
class="text-indigo-600 hover:text-indigo-900"
>View</a
>
</td>
</tr>
<tr>
<td
class="whitespace-wrap hidden px-3 py-4 text-sm text-gray-500 sm:table-cell"
>
Economics
</td>
<td
class="whitespace-wrap hidden px-3 py-4 text-sm text-gray-500 lg:table-cell"
>
Economics Department - SMPU
</td>
<td
class="hidden whitespace-nowrap px-3 py-4 text-sm text-gray-500 lg:table-cell"
>
0
</td>
<td
class="whitespace-nowrap px-3 py-4 text-center text-sm text-gray-500"
>
<a
href="/admission/programs/Economics"
class="text-indigo-600 hover:text-indigo-900"
>View</a
>
</td>
</tr>
<tr>
<td
class="whitespace-wrap hidden px-3 py-4 text-sm text-gray-500 sm:table-cell"
>
Electrical Engineering
</td>
<td
class="whitespace-wrap hidden px-3 py-4 text-sm text-gray-500 lg:table-cell"
>
Electrical Engineering Department - SMPU
</td>
<td
class="hidden whitespace-nowrap px-3 py-4 text-sm text-gray-500 lg:table-cell"
>
0
</td>
<td
class="whitespace-nowrap px-3 py-4 text-center text-sm text-gray-500"
>
<a
href="/admission/programs/Electrical Engineering"
class="text-indigo-600 hover:text-indigo-900"
>View</a
>
</td>
</tr>
<tr>
<td
class="whitespace-wrap hidden px-3 py-4 text-sm text-gray-500 sm:table-cell"
>
Electronics Engineering
</td>
<td
class="whitespace-wrap hidden px-3 py-4 text-sm text-gray-500 lg:table-cell"
>
Electronics Engineering Department - SMPU
</td>
<td
class="hidden whitespace-nowrap px-3 py-4 text-sm text-gray-500 lg:table-cell"
>
0
</td>
<td
class="whitespace-nowrap px-3 py-4 text-center text-sm text-gray-500"
>
<a
href="/admission/programs/Electronics Engineering"
class="text-indigo-600 hover:text-indigo-900"
>View</a
>
</td>
</tr>
<tr>
<td
class="whitespace-wrap hidden px-3 py-4 text-sm text-gray-500 sm:table-cell"
>
Environmental Science
</td>
<td
class="whitespace-wrap hidden px-3 py-4 text-sm text-gray-500 lg:table-cell"
>
Environmental Science Department - SMPU
</td>
<td
class="hidden whitespace-nowrap px-3 py-4 text-sm text-gray-500 lg:table-cell"
>
0
</td>
<td
class="whitespace-nowrap px-3 py-4 text-center text-sm text-gray-500"
>
<a
href="/admission/programs/Environmental Science"
class="text-indigo-600 hover:text-indigo-900"
>View</a
>
</td>
</tr>
<tr>
<td
class="whitespace-wrap hidden px-3 py-4 text-sm text-gray-500 sm:table-cell"
>
Management
</td>
<td
class="whitespace-wrap hidden px-3 py-4 text-sm text-gray-500 lg:table-cell"
>
Management Department - SMPU
</td>
<td
class="hidden whitespace-nowrap px-3 py-4 text-sm text-gray-500 lg:table-cell"
>
0
</td>
<td
class="whitespace-nowrap px-3 py-4 text-center text-sm text-gray-500"
>
<a
href="/admission/programs/Management"
class="text-indigo-600 hover:text-indigo-900"
>View</a
>
</td>
</tr>
<tr>
<td
class="whitespace-wrap hidden px-3 py-4 text-sm text-gray-500 sm:table-cell"
>
MBA - Finance
</td>
<td
class="whitespace-wrap hidden px-3 py-4 text-sm text-gray-500 lg:table-cell"
>
Graduate School - SMPU
</td>
<td
class="hidden whitespace-nowrap px-3 py-4 text-sm text-gray-500 lg:table-cell"
>
12
</td>
<td
class="whitespace-nowrap px-3 py-4 text-center text-sm text-gray-500"
>
<a
href="/admission/programs/MBA - Finance"
class="text-indigo-600 hover:text-indigo-900"
>View</a
>
</td>
</tr>
<tr>
<td
class="whitespace-wrap hidden px-3 py-4 text-sm text-gray-500 sm:table-cell"
>
MBA - Human Resources
</td>
<td
class="whitespace-wrap hidden px-3 py-4 text-sm text-gray-500 lg:table-cell"
>
Graduate School - SMPU
</td>
<td
class="hidden whitespace-nowrap px-3 py-4 text-sm text-gray-500 lg:table-cell"
>
12
</td>
<td
class="whitespace-nowrap px-3 py-4 text-center text-sm text-gray-500"
>
<a
href="/admission/programs/MBA - Human Resources"
class="text-indigo-600 hover:text-indigo-900"
>View</a
>
</td>
</tr>
<tr>
<td
class="whitespace-wrap hidden px-3 py-4 text-sm text-gray-500 sm:table-cell"
>
MBA - Marketing
</td>
<td
class="whitespace-wrap hidden px-3 py-4 text-sm text-gray-500 lg:table-cell"
>
Graduate School - SMPU
</td>
<td
class="hidden whitespace-nowrap px-3 py-4 text-sm text-gray-500 lg:table-cell"
>
12
</td>
<td
class="whitespace-nowrap px-3 py-4 text-center text-sm text-gray-500"
>
<a
href="/admission/programs/MBA - Marketing"
class="text-indigo-600 hover:text-indigo-900"
>View</a
>
</td>
</tr>
<tr>
<td
class="whitespace-wrap hidden px-3 py-4 text-sm text-gray-500 sm:table-cell"
>
MSN
</td>
<td
class="whitespace-wrap hidden px-3 py-4 text-sm text-gray-500 lg:table-cell"
>
Graduate School - SMPU
</td>
<td
class="hidden whitespace-nowrap px-3 py-4 text-sm text-gray-500 lg:table-cell"
>
0
</td>
<td
class="whitespace-nowrap px-3 py-4 text-center text-sm text-gray-500"
>
<a
href="/admission/programs/MSN"
class="text-indigo-600 hover:text-indigo-900"
>View</a
>
</td>
</tr>
<tr>
<td
class="whitespace-wrap hidden px-3 py-4 text-sm text-gray-500 sm:table-cell"
>
MSW
</td>
<td
class="whitespace-wrap hidden px-3 py-4 text-sm text-gray-500 lg:table-cell"
>
Graduate School - SMPU
</td>
<td
class="hidden whitespace-nowrap px-3 py-4 text-sm text-gray-500 lg:table-cell"
>
0
</td>
<td
class="whitespace-nowrap px-3 py-4 text-center text-sm text-gray-500"
>
<a
href="/admission/programs/MSW"
class="text-indigo-600 hover:text-indigo-900"
>View</a
>
</td>
</tr>
</tbody>
</table>
</div>
<script type="module">
import { EzyTables } from "./src/index.ts";
const data = [
{
name: "John Brown",
description:
"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec auctor, nisl eget ultricies aliquam, nunc nisl aliquet nunc, vitae aliquam nisl nunc eu nisi. Sed vitae nisl eget nisl aliquam aliquet. Sed vitae nisl eget nisl aliquam aliquet.",
status: "Active",
date: "2020-01-01",
},
{
name: "Jane Abram",
description:
"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec auctor, nisl eget ultricies aliquam, nunc nisl aliquet nunc, vitae aliquam nisl nunc eu nisi. Sed vitae nisl eget nisl aliquam aliquet. Sed vitae nisl eget nisl aliquam aliquet.",
status: "Active",
date: "2022-01-01",
},
{
name: "Sam Smith",
description:
"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec auctor, nisl eget ultricies aliquam, nunc nisl aliquet nunc, vitae aliquam nisl nunc eu nisi. Sed vitae nisl eget nisl aliquam aliquet. Sed vitae nisl eget nisl aliquam aliquet.",
status: "Active",
date: "2024-01-01",
},
{
name: "Ekaterina Tankova",
description:
"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec auctor, nisl eget ultricies aliquam, nunc nisl aliquet nunc, vitae aliquam nisl nunc eu nisi. Sed vitae nisl eget nisl aliquam aliquet. Sed vitae nisl eget nisl aliquam aliquet.",
status: "Active",
date: "2023-01-01",
},
{
name: "Luisa Hanes",
description:
"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec auctor, nisl eget ultricies aliquam, nunc nisl aliquet nunc, vitae aliquam nisl nunc eu nisi. Sed vitae nisl eget nisl aliquam aliquet. Sed vitae nisl eget nisl aliquam aliquet.",
status: "Active",
date: "2020-01-01",
},
];
const dateFormatPlugin = {
name: "dateFormat",
field: "date",
transform: dateString => {
const date = new Date(dateString);
return date.toLocaleDateString("en-US", {
weekday: "short",
year: "numeric",
month: "long",
day: "numeric",
});
},
};
// const easyTable = new EzyTables({
// target: "#ezy-table",
// classes: {
// container: "max-w-6xl bg-gray-100 shadow rounded-lg p-4 mx-auto my-8",
// table: {
// container: "min-w-full divide-y divide-gray-300",
// thead: {
// container: "bg-gray-50",
// th: "py-3.5 pl-4 pr-3 text-left text-sm font-semibold text-gray-900",
// },
// tbody: {
// container: "divide-y divide-gray-200 bg-white",
// td: "whitespace-wrap py-4 pl-4 pr-3 text-sm font-medium text-gray-900 sm:pl-6",
// },
// },
// },
// data,
// plugins: [dateFormatPlugin],
// });
// const easyTable2 = new EzyTables({
// target: "#ezy-table-2",
// classes: {
// container:
// "overflow-hidden shadow ring-1 ring-black ring-opacity-5 sm:rounded-lg",
// table: {
// container: "min-w-full divide-y divide-gray-300",
// thead: {
// container: "bg-gray-50",
// th: "py-3.5 pl-4 pr-3 text-left text-sm font-semibold text-gray-900",
// },
// tbody: {
// container: "divide-y divide-gray-200 bg-white",
// td: "whitespace-wrap py-4 pl-4 pr-3 text-sm font-medium text-gray-900 sm:pl-6",
// },
// },
// },
// // data,
// // plugins: [dateFormatPlugin],
// });
const easyTable3 = new EzyTables({
target: "#programs",
classes: {
container:
"bg-white shadow overflow-x-auto rounded-lg p-4 mx-auto my-8",
table: {
container: "min-w-full divide-y divide-gray-300",
thead: {
// container: "bg-gray-50",
th: "px-3 py-3.5 text-left text-sm font-semibold text-gray-900 sm:table-cell",
},
tbody: {
container: "divide-y divide-gray-200 bg-white",
td: "whitespace-wrap px-3 py-4 text-sm text-gray-500 sm:table-cell",
},
},
},
// data: fees,
// plugins: [dateFormatPlugin],
});
</script>
</body>
</html>