@ix_waterford/lib 1.0.11 → 1.0.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (38) hide show
  1. package/dist/components.html +1 -0
  2. package/dist/components.js +22877 -0
  3. package/dist/components.js.map +1 -0
  4. package/dist/hooks.html +1 -0
  5. package/dist/hooks.js +1373 -0
  6. package/dist/hooks.js.map +1 -0
  7. package/dist/index.js +19968 -141590
  8. package/dist/index.js.map +1 -1
  9. package/dist/static/css/components.css +633 -0
  10. package/dist/static/css/components.css.map +1 -0
  11. package/dist/types/assets/svg/columSettingsIcon.d.ts +2 -0
  12. package/dist/types/assets/svg/columSettingsIcon.d.ts.map +1 -0
  13. package/dist/types/assets/svg/index.d.ts +3 -3
  14. package/dist/types/assets/svg/index.d.ts.map +1 -1
  15. package/dist/types/assets/svg/listIcon.d.ts +2 -0
  16. package/dist/types/assets/svg/listIcon.d.ts.map +1 -0
  17. package/dist/types/assets/svg/tileIcon.d.ts +2 -0
  18. package/dist/types/assets/svg/tileIcon.d.ts.map +1 -0
  19. package/dist/types/components/button/style.d.ts +1 -0
  20. package/dist/types/components/button/style.d.ts.map +1 -1
  21. package/dist/types/components/select/multiSelect.d.ts +2 -3
  22. package/dist/types/components/select/multiSelect.d.ts.map +1 -1
  23. package/dist/types/components/select/select.d.ts +2 -3
  24. package/dist/types/components/select/select.d.ts.map +1 -1
  25. package/dist/types/components/select/style.d.ts +5 -0
  26. package/dist/types/components/select/style.d.ts.map +1 -0
  27. package/dist/types/index.d.ts +1 -0
  28. package/dist/types/index.d.ts.map +1 -1
  29. package/dist/utils.html +1 -0
  30. package/dist/utils.js +1565 -0
  31. package/dist/utils.js.map +1 -0
  32. package/package.json +1 -1
  33. package/dist/types/assets/svg/viewColumnIcon.d.ts +0 -3
  34. package/dist/types/assets/svg/viewColumnIcon.d.ts.map +0 -1
  35. package/dist/types/assets/svg/viewListIcon.d.ts +0 -3
  36. package/dist/types/assets/svg/viewListIcon.d.ts.map +0 -1
  37. package/dist/types/assets/svg/viewModuleIcon.d.ts +0 -3
  38. package/dist/types/assets/svg/viewModuleIcon.d.ts.map +0 -1
@@ -0,0 +1,633 @@
1
+ .editor-input {
2
+ outline: none;
3
+ min-height: 200px;
4
+ padding: 12px;
5
+ font-size: 16px;
6
+ line-height: 1.5;
7
+ }
8
+
9
+ .editor-placeholder {
10
+ color: #aaa;
11
+ pointer-events: none;
12
+ padding: 12px;
13
+ position: absolute;
14
+ }
15
+
16
+ .editor-textBold {
17
+ font-weight: bold;
18
+ }
19
+
20
+ .editor-textItalic {
21
+ font-style: italic;
22
+ }
23
+
24
+ .editor-textUnderline {
25
+ text-decoration: underline;
26
+ }
27
+
28
+ .editor-textStrikethrough {
29
+ text-decoration: line-through;
30
+ }
31
+
32
+ .editor-textSubscript {
33
+ vertical-align: sub;
34
+ font-size: .8em;
35
+ }
36
+
37
+ .editor-textSuperscript {
38
+ vertical-align: super;
39
+ font-size: .8em;
40
+ }
41
+
42
+ .editor-heading-h1 {
43
+ margin: .67em 0;
44
+ font-size: 2em;
45
+ font-weight: bold;
46
+ }
47
+
48
+ .editor-heading-h2 {
49
+ margin: .75em 0;
50
+ font-size: 1.75em;
51
+ font-weight: bold;
52
+ }
53
+
54
+ .editor-heading-h3 {
55
+ margin: .83em 0;
56
+ font-size: 1.5em;
57
+ font-weight: bold;
58
+ }
59
+
60
+ .editor-heading-h4 {
61
+ margin: 1em 0;
62
+ font-size: 1.25em;
63
+ font-weight: bold;
64
+ }
65
+
66
+ .editor-heading-h5 {
67
+ margin: 1.17em 0;
68
+ font-size: 1.1em;
69
+ font-weight: bold;
70
+ }
71
+
72
+ .editor-heading-h6 {
73
+ margin: 1.33em 0;
74
+ font-size: 1em;
75
+ font-weight: bold;
76
+ }
77
+
78
+ .editor-list-ol, .editor-list-ul {
79
+ margin: .5em 0;
80
+ padding-left: 30px;
81
+ }
82
+
83
+ .editor-list-item {
84
+ margin: .25em 0;
85
+ }
86
+
87
+ .editor-quote {
88
+ color: #666;
89
+ border-left: 4px solid #ccc;
90
+ margin: 0;
91
+ padding-left: 20px;
92
+ font-style: italic;
93
+ }
94
+
95
+ :root {
96
+ --swiper-theme-color: #007aff;
97
+ }
98
+
99
+ :host {
100
+ z-index: 1;
101
+ margin-left: auto;
102
+ margin-right: auto;
103
+ display: block;
104
+ position: relative;
105
+ }
106
+
107
+ .swiper {
108
+ z-index: 1;
109
+ margin-left: auto;
110
+ margin-right: auto;
111
+ padding: 0;
112
+ list-style: none;
113
+ display: block;
114
+ position: relative;
115
+ overflow: hidden;
116
+ }
117
+
118
+ .swiper-vertical > .swiper-wrapper {
119
+ flex-direction: column;
120
+ }
121
+
122
+ .swiper-wrapper {
123
+ z-index: 1;
124
+ width: 100%;
125
+ height: 100%;
126
+ transition-property: transform;
127
+ transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
128
+ box-sizing: content-box;
129
+ display: flex;
130
+ position: relative;
131
+ }
132
+
133
+ .swiper-android .swiper-slide, .swiper-ios .swiper-slide, .swiper-wrapper {
134
+ transform: translate3d(0, 0, 0);
135
+ }
136
+
137
+ .swiper-horizontal {
138
+ touch-action: pan-y;
139
+ }
140
+
141
+ .swiper-vertical {
142
+ touch-action: pan-x;
143
+ }
144
+
145
+ .swiper-slide {
146
+ flex-shrink: 0;
147
+ width: 100%;
148
+ height: 100%;
149
+ transition-property: transform;
150
+ display: block;
151
+ position: relative;
152
+ }
153
+
154
+ .swiper-slide-invisible-blank {
155
+ visibility: hidden;
156
+ }
157
+
158
+ .swiper-autoheight, .swiper-autoheight .swiper-slide {
159
+ height: auto;
160
+ }
161
+
162
+ .swiper-autoheight .swiper-wrapper {
163
+ align-items: flex-start;
164
+ transition-property: transform, height;
165
+ }
166
+
167
+ .swiper-backface-hidden .swiper-slide {
168
+ -webkit-backface-visibility: hidden;
169
+ backface-visibility: hidden;
170
+ transform: translateZ(0);
171
+ }
172
+
173
+ .swiper-3d.swiper-css-mode .swiper-wrapper {
174
+ perspective: 1200px;
175
+ }
176
+
177
+ .swiper-3d .swiper-wrapper {
178
+ transform-style: preserve-3d;
179
+ }
180
+
181
+ .swiper-3d {
182
+ perspective: 1200px;
183
+ }
184
+
185
+ .swiper-3d .swiper-slide {
186
+ transform-style: preserve-3d;
187
+ }
188
+
189
+ .swiper-3d .swiper-cube-shadow {
190
+ transform-style: preserve-3d;
191
+ }
192
+
193
+ .swiper-css-mode > .swiper-wrapper {
194
+ scrollbar-width: none;
195
+ -ms-overflow-style: none;
196
+ overflow: auto;
197
+ }
198
+
199
+ .swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
200
+ display: none;
201
+ }
202
+
203
+ .swiper-css-mode > .swiper-wrapper > .swiper-slide {
204
+ scroll-snap-align: start start;
205
+ }
206
+
207
+ .swiper-css-mode.swiper-horizontal > .swiper-wrapper {
208
+ scroll-snap-type: x mandatory;
209
+ }
210
+
211
+ .swiper-css-mode.swiper-vertical > .swiper-wrapper {
212
+ scroll-snap-type: y mandatory;
213
+ }
214
+
215
+ .swiper-css-mode.swiper-free-mode > .swiper-wrapper {
216
+ scroll-snap-type: none;
217
+ }
218
+
219
+ .swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
220
+ scroll-snap-align: none;
221
+ }
222
+
223
+ .swiper-css-mode.swiper-centered > .swiper-wrapper:before {
224
+ content: "";
225
+ flex-shrink: 0;
226
+ order: 9999;
227
+ }
228
+
229
+ .swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
230
+ scroll-snap-align: center center;
231
+ scroll-snap-stop: always;
232
+ }
233
+
234
+ .swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
235
+ margin-inline-start: var(--swiper-centered-offset-before);
236
+ }
237
+
238
+ .swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper:before {
239
+ height: 100%;
240
+ min-height: 1px;
241
+ width: var(--swiper-centered-offset-after);
242
+ }
243
+
244
+ .swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
245
+ margin-block-start: var(--swiper-centered-offset-before);
246
+ }
247
+
248
+ .swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper:before {
249
+ width: 100%;
250
+ min-width: 1px;
251
+ height: var(--swiper-centered-offset-after);
252
+ }
253
+
254
+ .swiper-3d .swiper-slide-shadow {
255
+ pointer-events: none;
256
+ z-index: 10;
257
+ width: 100%;
258
+ height: 100%;
259
+ position: absolute;
260
+ top: 0;
261
+ left: 0;
262
+ }
263
+
264
+ .swiper-3d .swiper-slide-shadow-left {
265
+ pointer-events: none;
266
+ z-index: 10;
267
+ width: 100%;
268
+ height: 100%;
269
+ position: absolute;
270
+ top: 0;
271
+ left: 0;
272
+ }
273
+
274
+ .swiper-3d .swiper-slide-shadow-right {
275
+ pointer-events: none;
276
+ z-index: 10;
277
+ width: 100%;
278
+ height: 100%;
279
+ position: absolute;
280
+ top: 0;
281
+ left: 0;
282
+ }
283
+
284
+ .swiper-3d .swiper-slide-shadow-top {
285
+ pointer-events: none;
286
+ z-index: 10;
287
+ width: 100%;
288
+ height: 100%;
289
+ position: absolute;
290
+ top: 0;
291
+ left: 0;
292
+ }
293
+
294
+ .swiper-3d .swiper-slide-shadow-bottom {
295
+ pointer-events: none;
296
+ z-index: 10;
297
+ width: 100%;
298
+ height: 100%;
299
+ position: absolute;
300
+ top: 0;
301
+ left: 0;
302
+ }
303
+
304
+ .swiper-3d .swiper-slide-shadow {
305
+ pointer-events: none;
306
+ z-index: 10;
307
+ width: 100%;
308
+ height: 100%;
309
+ position: absolute;
310
+ top: 0;
311
+ left: 0;
312
+ }
313
+
314
+ .swiper-3d .swiper-slide-shadow-left {
315
+ pointer-events: none;
316
+ z-index: 10;
317
+ width: 100%;
318
+ height: 100%;
319
+ position: absolute;
320
+ top: 0;
321
+ left: 0;
322
+ }
323
+
324
+ .swiper-3d .swiper-slide-shadow-right {
325
+ pointer-events: none;
326
+ z-index: 10;
327
+ width: 100%;
328
+ height: 100%;
329
+ position: absolute;
330
+ top: 0;
331
+ left: 0;
332
+ }
333
+
334
+ .swiper-3d .swiper-slide-shadow-top {
335
+ pointer-events: none;
336
+ z-index: 10;
337
+ width: 100%;
338
+ height: 100%;
339
+ position: absolute;
340
+ top: 0;
341
+ left: 0;
342
+ }
343
+
344
+ .swiper-3d .swiper-slide-shadow-bottom {
345
+ pointer-events: none;
346
+ z-index: 10;
347
+ width: 100%;
348
+ height: 100%;
349
+ position: absolute;
350
+ top: 0;
351
+ left: 0;
352
+ }
353
+
354
+ .swiper-3d .swiper-slide-shadow {
355
+ background: #00000026;
356
+ }
357
+
358
+ .swiper-3d .swiper-slide-shadow-left {
359
+ background-image: linear-gradient(to left, #00000080, #0000);
360
+ }
361
+
362
+ .swiper-3d .swiper-slide-shadow-right {
363
+ background-image: linear-gradient(to right, #00000080, #0000);
364
+ }
365
+
366
+ .swiper-3d .swiper-slide-shadow-top {
367
+ background-image: linear-gradient(to top, #00000080, #0000);
368
+ }
369
+
370
+ .swiper-3d .swiper-slide-shadow-bottom {
371
+ background-image: linear-gradient(#00000080, #0000);
372
+ }
373
+
374
+ .swiper-lazy-preloader {
375
+ z-index: 10;
376
+ transform-origin: 50%;
377
+ box-sizing: border-box;
378
+ border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
379
+ border-top-color: #0000;
380
+ border-radius: 50%;
381
+ width: 42px;
382
+ height: 42px;
383
+ margin-top: -21px;
384
+ margin-left: -21px;
385
+ position: absolute;
386
+ top: 50%;
387
+ left: 50%;
388
+ }
389
+
390
+ :is(.swiper:not(.swiper-watch-progress), .swiper-watch-progress .swiper-slide-visible) .swiper-lazy-preloader {
391
+ animation: 1s linear infinite swiper-preloader-spin;
392
+ }
393
+
394
+ .swiper-lazy-preloader-white {
395
+ --swiper-preloader-color: #fff;
396
+ }
397
+
398
+ .swiper-lazy-preloader-black {
399
+ --swiper-preloader-color: #000;
400
+ }
401
+
402
+ @keyframes swiper-preloader-spin {
403
+ 0% {
404
+ transform: rotate(0);
405
+ }
406
+
407
+ 100% {
408
+ transform: rotate(360deg);
409
+ }
410
+ }
411
+
412
+
413
+
414
+ .swiper-pagination {
415
+ text-align: center;
416
+ z-index: 10;
417
+ transition: opacity .3s;
418
+ position: absolute;
419
+ transform: translate3d(0, 0, 0);
420
+ }
421
+
422
+ .swiper-pagination.swiper-pagination-hidden {
423
+ opacity: 0;
424
+ }
425
+
426
+ .swiper-pagination-disabled > .swiper-pagination {
427
+ display: none !important;
428
+ }
429
+
430
+ .swiper-pagination.swiper-pagination-disabled {
431
+ display: none !important;
432
+ }
433
+
434
+ .swiper-pagination-fraction, .swiper-pagination-custom, .swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal {
435
+ bottom: var(--swiper-pagination-bottom, 8px);
436
+ top: var(--swiper-pagination-top, auto);
437
+ width: 100%;
438
+ left: 0;
439
+ }
440
+
441
+ .swiper-pagination-bullets-dynamic {
442
+ font-size: 0;
443
+ overflow: hidden;
444
+ }
445
+
446
+ .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
447
+ position: relative;
448
+ transform: scale(.33);
449
+ }
450
+
451
+ .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
452
+ transform: scale(1);
453
+ }
454
+
455
+ .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
456
+ transform: scale(1);
457
+ }
458
+
459
+ .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
460
+ transform: scale(.66);
461
+ }
462
+
463
+ .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
464
+ transform: scale(.33);
465
+ }
466
+
467
+ .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
468
+ transform: scale(.66);
469
+ }
470
+
471
+ .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
472
+ transform: scale(.33);
473
+ }
474
+
475
+ .swiper-pagination-bullet {
476
+ width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
477
+ height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
478
+ border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
479
+ background: var(--swiper-pagination-bullet-inactive-color, #000);
480
+ opacity: var(--swiper-pagination-bullet-inactive-opacity, .2);
481
+ display: inline-block;
482
+ }
483
+
484
+ button.swiper-pagination-bullet {
485
+ box-shadow: none;
486
+ -webkit-appearance: none;
487
+ -moz-appearance: none;
488
+ appearance: none;
489
+ border: none;
490
+ margin: 0;
491
+ padding: 0;
492
+ }
493
+
494
+ .swiper-pagination-clickable .swiper-pagination-bullet {
495
+ cursor: pointer;
496
+ }
497
+
498
+ .swiper-pagination-bullet:only-child {
499
+ display: none !important;
500
+ }
501
+
502
+ .swiper-pagination-bullet-active {
503
+ opacity: var(--swiper-pagination-bullet-opacity, 1);
504
+ background: var(--swiper-pagination-color, var(--swiper-theme-color));
505
+ }
506
+
507
+ .swiper-vertical > .swiper-pagination-bullets, .swiper-pagination-vertical.swiper-pagination-bullets {
508
+ right: var(--swiper-pagination-right, 8px);
509
+ left: var(--swiper-pagination-left, auto);
510
+ top: 50%;
511
+ transform: translate3d(0, -50%, 0);
512
+ }
513
+
514
+ :is(.swiper-vertical > .swiper-pagination-bullets, .swiper-pagination-vertical.swiper-pagination-bullets) .swiper-pagination-bullet {
515
+ margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
516
+ display: block;
517
+ }
518
+
519
+ :is(.swiper-vertical > .swiper-pagination-bullets, .swiper-pagination-vertical.swiper-pagination-bullets).swiper-pagination-bullets-dynamic {
520
+ width: 8px;
521
+ top: 50%;
522
+ transform: translateY(-50%);
523
+ }
524
+
525
+ :is(.swiper-vertical > .swiper-pagination-bullets, .swiper-pagination-vertical.swiper-pagination-bullets).swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
526
+ transition: transform .2s, top .2s;
527
+ display: inline-block;
528
+ }
529
+
530
+ :is(.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-horizontal.swiper-pagination-bullets) .swiper-pagination-bullet {
531
+ margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
532
+ }
533
+
534
+ :is(.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-horizontal.swiper-pagination-bullets).swiper-pagination-bullets-dynamic {
535
+ white-space: nowrap;
536
+ left: 50%;
537
+ transform: translateX(-50%);
538
+ }
539
+
540
+ :is(.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-horizontal.swiper-pagination-bullets).swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
541
+ transition: transform .2s, left .2s;
542
+ }
543
+
544
+ .swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
545
+ transition: transform .2s, right .2s;
546
+ }
547
+
548
+ .swiper-pagination-fraction {
549
+ color: var(--swiper-pagination-fraction-color, inherit);
550
+ }
551
+
552
+ .swiper-pagination-progressbar {
553
+ background: var(--swiper-pagination-progressbar-bg-color, #00000040);
554
+ position: absolute;
555
+ }
556
+
557
+ .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
558
+ background: var(--swiper-pagination-color, var(--swiper-theme-color));
559
+ transform-origin: 0 0;
560
+ width: 100%;
561
+ height: 100%;
562
+ position: absolute;
563
+ top: 0;
564
+ left: 0;
565
+ transform: scale(0);
566
+ }
567
+
568
+ .swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
569
+ transform-origin: 100% 0;
570
+ }
571
+
572
+ .swiper-horizontal > .swiper-pagination-progressbar {
573
+ width: 100%;
574
+ height: var(--swiper-pagination-progressbar-size, 4px);
575
+ top: 0;
576
+ left: 0;
577
+ }
578
+
579
+ .swiper-pagination-progressbar.swiper-pagination-horizontal {
580
+ width: 100%;
581
+ height: var(--swiper-pagination-progressbar-size, 4px);
582
+ top: 0;
583
+ left: 0;
584
+ }
585
+
586
+ .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
587
+ width: 100%;
588
+ height: var(--swiper-pagination-progressbar-size, 4px);
589
+ top: 0;
590
+ left: 0;
591
+ }
592
+
593
+ .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
594
+ width: 100%;
595
+ height: var(--swiper-pagination-progressbar-size, 4px);
596
+ top: 0;
597
+ left: 0;
598
+ }
599
+
600
+ .swiper-vertical > .swiper-pagination-progressbar {
601
+ width: var(--swiper-pagination-progressbar-size, 4px);
602
+ height: 100%;
603
+ top: 0;
604
+ left: 0;
605
+ }
606
+
607
+ .swiper-pagination-progressbar.swiper-pagination-vertical {
608
+ width: var(--swiper-pagination-progressbar-size, 4px);
609
+ height: 100%;
610
+ top: 0;
611
+ left: 0;
612
+ }
613
+
614
+ .swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
615
+ width: var(--swiper-pagination-progressbar-size, 4px);
616
+ height: 100%;
617
+ top: 0;
618
+ left: 0;
619
+ }
620
+
621
+ .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
622
+ width: var(--swiper-pagination-progressbar-size, 4px);
623
+ height: 100%;
624
+ top: 0;
625
+ left: 0;
626
+ }
627
+
628
+ .swiper-pagination-lock {
629
+ display: none;
630
+ }
631
+
632
+
633
+ /*# sourceMappingURL=components.css.map*/
@@ -0,0 +1 @@
1
+ {"version":3,"file":"static/css/components.css","sources":["/Users/kirubakaran.r/Documents/projects/hub/components/waterford_library/src/components/textEditor/lexicalStyles.css","/Users/kirubakaran.r/Documents/projects/hub/components/waterford_library/node_modules/swiper/swiper.css","/Users/kirubakaran.r/Documents/projects/hub/components/waterford_library/node_modules/swiper/modules/pagination.css"],"sourcesContent":[".editor-input {\n min-height: 200px;\n padding: 12px;\n outline: none;\n font-size: 16px;\n line-height: 1.5;\n }\n \n.editor-placeholder {\n color: #aaa;\n padding: 12px;\n position: absolute;\n pointer-events: none;\n}\n\n.editor-textBold {\n font-weight: bold;\n}\n\n.editor-textItalic {\n font-style: italic;\n}\n\n.editor-textUnderline {\n text-decoration: underline;\n}\n\n.editor-textStrikethrough {\n text-decoration: line-through;\n}\n\n.editor-textSubscript {\n vertical-align: sub;\n font-size: 0.8em;\n}\n\n.editor-textSuperscript {\n vertical-align: super;\n font-size: 0.8em;\n}\n\n.editor-heading-h1 {\n font-size: 2em;\n font-weight: bold;\n margin: 0.67em 0;\n}\n\n.editor-heading-h2 {\n font-size: 1.75em;\n font-weight: bold;\n margin: 0.75em 0;\n}\n\n.editor-heading-h3 {\n font-size: 1.5em;\n font-weight: bold;\n margin: 0.83em 0;\n}\n\n.editor-heading-h4 {\n font-size: 1.25em;\n font-weight: bold;\n margin: 1em 0;\n}\n\n.editor-heading-h5 {\n font-size: 1.1em;\n font-weight: bold;\n margin: 1.17em 0;\n}\n\n.editor-heading-h6 {\n font-size: 1em;\n font-weight: bold;\n margin: 1.33em 0;\n}\n\n.editor-list-ol {\n padding-left: 30px;\n margin: 0.5em 0;\n}\n\n.editor-list-ul {\n padding-left: 30px;\n margin: 0.5em 0;\n}\n\n.editor-list-item {\n margin: 0.25em 0;\n}\n\n.editor-quote {\n margin: 0;\n padding-left: 20px;\n border-left: 4px solid #ccc;\n color: #666;\n font-style: italic;\n}\n","/**\n * Swiper 12.0.3\n * Most modern mobile touch slider and framework with hardware accelerated transitions\n * https://swiperjs.com\n *\n * Copyright 2014-2025 Vladimir Kharlampidi\n *\n * Released under the MIT License\n *\n * Released on: October 21, 2025\n */\n\n:root {\n --swiper-theme-color: #007aff;\n /*\n --swiper-preloader-color: var(--swiper-theme-color);\n --swiper-wrapper-transition-timing-function: initial;\n */\n}\n:host {\n position: relative;\n display: block;\n margin-left: auto;\n margin-right: auto;\n z-index: 1;\n}\n.swiper {\n margin-left: auto;\n margin-right: auto;\n position: relative;\n overflow: hidden;\n list-style: none;\n padding: 0;\n /* Fix of Webkit flickering */\n z-index: 1;\n display: block;\n}\n.swiper-vertical > .swiper-wrapper {\n flex-direction: column;\n}\n.swiper-wrapper {\n position: relative;\n width: 100%;\n height: 100%;\n z-index: 1;\n display: flex;\n transition-property: transform;\n transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);\n box-sizing: content-box;\n}\n.swiper-android .swiper-slide,\n.swiper-ios .swiper-slide,\n.swiper-wrapper {\n transform: translate3d(0px, 0, 0);\n}\n.swiper-horizontal {\n touch-action: pan-y;\n}\n.swiper-vertical {\n touch-action: pan-x;\n}\n.swiper-slide {\n flex-shrink: 0;\n width: 100%;\n height: 100%;\n position: relative;\n transition-property: transform;\n display: block;\n}\n.swiper-slide-invisible-blank {\n visibility: hidden;\n}\n/* Auto Height */\n.swiper-autoheight,\n.swiper-autoheight .swiper-slide {\n height: auto;\n}\n.swiper-autoheight .swiper-wrapper {\n align-items: flex-start;\n transition-property: transform, height;\n}\n.swiper-backface-hidden .swiper-slide {\n transform: translateZ(0);\n backface-visibility: hidden;\n}\n/* 3D Effects */\n.swiper-3d.swiper-css-mode .swiper-wrapper {\n perspective: 1200px;\n}\n.swiper-3d .swiper-wrapper {\n transform-style: preserve-3d;\n}\n.swiper-3d {\n perspective: 1200px;\n .swiper-slide,\n .swiper-cube-shadow {\n transform-style: preserve-3d;\n }\n}\n\n/* CSS Mode */\n.swiper-css-mode {\n > .swiper-wrapper {\n overflow: auto;\n scrollbar-width: none; /* For Firefox */\n -ms-overflow-style: none; /* For Internet Explorer and Edge */\n &::-webkit-scrollbar {\n display: none;\n }\n }\n > .swiper-wrapper > .swiper-slide {\n scroll-snap-align: start start;\n }\n &.swiper-horizontal {\n > .swiper-wrapper {\n scroll-snap-type: x mandatory;\n }\n }\n &.swiper-vertical {\n > .swiper-wrapper {\n scroll-snap-type: y mandatory;\n }\n }\n &.swiper-free-mode {\n > .swiper-wrapper {\n scroll-snap-type: none;\n }\n > .swiper-wrapper > .swiper-slide {\n scroll-snap-align: none;\n }\n }\n &.swiper-centered {\n > .swiper-wrapper::before {\n content: '';\n flex-shrink: 0;\n order: 9999;\n }\n > .swiper-wrapper > .swiper-slide {\n scroll-snap-align: center center;\n scroll-snap-stop: always;\n }\n }\n &.swiper-centered.swiper-horizontal {\n > .swiper-wrapper > .swiper-slide:first-child {\n margin-inline-start: var(--swiper-centered-offset-before);\n }\n > .swiper-wrapper::before {\n height: 100%;\n min-height: 1px;\n width: var(--swiper-centered-offset-after);\n }\n }\n &.swiper-centered.swiper-vertical {\n > .swiper-wrapper > .swiper-slide:first-child {\n margin-block-start: var(--swiper-centered-offset-before);\n }\n > .swiper-wrapper::before {\n width: 100%;\n min-width: 1px;\n height: var(--swiper-centered-offset-after);\n }\n }\n}\n\n/* Slide styles start */\n/* 3D Shadows */\n.swiper-3d {\n .swiper-slide-shadow,\n .swiper-slide-shadow-left,\n .swiper-slide-shadow-right,\n .swiper-slide-shadow-top,\n .swiper-slide-shadow-bottom,\n .swiper-slide-shadow,\n .swiper-slide-shadow-left,\n .swiper-slide-shadow-right,\n .swiper-slide-shadow-top,\n .swiper-slide-shadow-bottom {\n position: absolute;\n left: 0;\n top: 0;\n width: 100%;\n height: 100%;\n pointer-events: none;\n z-index: 10;\n }\n .swiper-slide-shadow {\n background: rgba(0, 0, 0, 0.15);\n }\n .swiper-slide-shadow-left {\n background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));\n }\n .swiper-slide-shadow-right {\n background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));\n }\n .swiper-slide-shadow-top {\n background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));\n }\n .swiper-slide-shadow-bottom {\n background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));\n }\n}\n.swiper-lazy-preloader {\n width: 42px;\n height: 42px;\n position: absolute;\n left: 50%;\n top: 50%;\n margin-left: -21px;\n margin-top: -21px;\n z-index: 10;\n transform-origin: 50%;\n box-sizing: border-box;\n border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));\n border-radius: 50%;\n border-top-color: transparent;\n}\n.swiper:not(.swiper-watch-progress),\n.swiper-watch-progress .swiper-slide-visible {\n .swiper-lazy-preloader {\n animation: swiper-preloader-spin 1s infinite linear;\n }\n}\n.swiper-lazy-preloader-white {\n --swiper-preloader-color: #fff;\n}\n.swiper-lazy-preloader-black {\n --swiper-preloader-color: #000;\n}\n@keyframes swiper-preloader-spin {\n 0% {\n transform: rotate(0deg);\n }\n 100% {\n transform: rotate(360deg);\n }\n}\n/* Slide styles end */\n",":root {\n /*\n --swiper-pagination-color: var(--swiper-theme-color);\n --swiper-pagination-left: auto;\n --swiper-pagination-right: 8px;\n --swiper-pagination-bottom: 8px;\n --swiper-pagination-top: auto;\n --swiper-pagination-fraction-color: inherit;\n --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);\n --swiper-pagination-progressbar-size: 4px;\n --swiper-pagination-bullet-size: 8px;\n --swiper-pagination-bullet-width: 8px;\n --swiper-pagination-bullet-height: 8px;\n --swiper-pagination-bullet-border-radius: 50%;\n --swiper-pagination-bullet-inactive-color: #000;\n --swiper-pagination-bullet-inactive-opacity: 0.2;\n --swiper-pagination-bullet-opacity: 1;\n --swiper-pagination-bullet-horizontal-gap: 4px;\n --swiper-pagination-bullet-vertical-gap: 6px;\n */\n}\n.swiper-pagination {\n position: absolute;\n text-align: center;\n transition: 300ms opacity;\n transform: translate3d(0, 0, 0);\n z-index: 10;\n &.swiper-pagination-hidden {\n opacity: 0;\n }\n .swiper-pagination-disabled > &,\n &.swiper-pagination-disabled {\n display: none !important;\n }\n}\n/* Common Styles */\n.swiper-pagination-fraction,\n.swiper-pagination-custom,\n.swiper-horizontal > .swiper-pagination-bullets,\n.swiper-pagination-bullets.swiper-pagination-horizontal {\n bottom: var(--swiper-pagination-bottom, 8px);\n top: var(--swiper-pagination-top, auto);\n left: 0;\n width: 100%;\n}\n/* Bullets */\n.swiper-pagination-bullets-dynamic {\n overflow: hidden;\n font-size: 0;\n .swiper-pagination-bullet {\n transform: scale(0.33);\n position: relative;\n }\n .swiper-pagination-bullet-active {\n transform: scale(1);\n }\n .swiper-pagination-bullet-active-main {\n transform: scale(1);\n }\n .swiper-pagination-bullet-active-prev {\n transform: scale(0.66);\n }\n .swiper-pagination-bullet-active-prev-prev {\n transform: scale(0.33);\n }\n .swiper-pagination-bullet-active-next {\n transform: scale(0.66);\n }\n .swiper-pagination-bullet-active-next-next {\n transform: scale(0.33);\n }\n}\n.swiper-pagination-bullet {\n width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));\n height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));\n display: inline-block;\n border-radius: var(--swiper-pagination-bullet-border-radius, 50%);\n background: var(--swiper-pagination-bullet-inactive-color, #000);\n opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);\n button& {\n border: none;\n margin: 0;\n padding: 0;\n box-shadow: none;\n appearance: none;\n }\n .swiper-pagination-clickable & {\n cursor: pointer;\n }\n\n &:only-child {\n display: none !important;\n }\n}\n.swiper-pagination-bullet-active {\n opacity: var(--swiper-pagination-bullet-opacity, 1);\n background: var(--swiper-pagination-color, var(--swiper-theme-color));\n}\n\n.swiper-vertical > .swiper-pagination-bullets,\n.swiper-pagination-vertical.swiper-pagination-bullets {\n right: var(--swiper-pagination-right, 8px);\n left: var(--swiper-pagination-left, auto);\n top: 50%;\n transform: translate3d(0px, -50%, 0);\n .swiper-pagination-bullet {\n margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;\n display: block;\n }\n &.swiper-pagination-bullets-dynamic {\n top: 50%;\n transform: translateY(-50%);\n width: 8px;\n .swiper-pagination-bullet {\n display: inline-block;\n transition:\n 200ms transform,\n 200ms top;\n }\n }\n}\n.swiper-horizontal > .swiper-pagination-bullets,\n.swiper-pagination-horizontal.swiper-pagination-bullets {\n .swiper-pagination-bullet {\n margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);\n }\n &.swiper-pagination-bullets-dynamic {\n left: 50%;\n transform: translateX(-50%);\n white-space: nowrap;\n .swiper-pagination-bullet {\n transition:\n 200ms transform,\n 200ms left;\n }\n }\n}\n.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {\n transition:\n 200ms transform,\n 200ms right;\n}\n/* Fraction */\n.swiper-pagination-fraction {\n color: var(--swiper-pagination-fraction-color, inherit);\n}\n/* Progress */\n.swiper-pagination-progressbar {\n background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));\n position: absolute;\n .swiper-pagination-progressbar-fill {\n background: var(--swiper-pagination-color, var(--swiper-theme-color));\n position: absolute;\n left: 0;\n top: 0;\n width: 100%;\n height: 100%;\n transform: scale(0);\n transform-origin: left top;\n }\n .swiper-rtl & .swiper-pagination-progressbar-fill {\n transform-origin: right top;\n }\n .swiper-horizontal > &,\n &.swiper-pagination-horizontal,\n .swiper-vertical > &.swiper-pagination-progressbar-opposite,\n &.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {\n width: 100%;\n height: var(--swiper-pagination-progressbar-size, 4px);\n left: 0;\n top: 0;\n }\n .swiper-vertical > &,\n &.swiper-pagination-vertical,\n .swiper-horizontal > &.swiper-pagination-progressbar-opposite,\n &.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {\n width: var(--swiper-pagination-progressbar-size, 4px);\n height: 100%;\n left: 0;\n top: 0;\n }\n}\n.swiper-pagination-lock {\n display: none;\n}\n"],"names":[],"mappings":"AADA;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;ACjFA;AAVA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;;;ACvSA;AAnBA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA"}
@@ -0,0 +1,2 @@
1
+ export declare const ColumnSettingsIcon: () => import("react/jsx-runtime").JSX.Element;
2
+ //# sourceMappingURL=columSettingsIcon.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"columSettingsIcon.d.ts","sourceRoot":"","sources":["../../../../src/assets/svg/columSettingsIcon.tsx"],"names":[],"mappings":"AAAA,eAAO,MAAM,kBAAkB,+CAM9B,CAAC"}
@@ -6,7 +6,7 @@ export { MoreIcon } from './moreIcon';
6
6
  export { AddIcon } from './addIcon';
7
7
  export { DownloadIcon } from './downloadIcon';
8
8
  export { ClearFilterIcon } from './clearFilterIcon';
9
- export { ViewColumnIcon } from './viewColumnIcon';
10
- export { ViewListIcon } from './viewListIcon';
11
- export { ViewModuleIcon } from './viewModuleIcon';
9
+ export { ColumnSettingsIcon } from './columSettingsIcon';
10
+ export { TileViewIcon } from './tileIcon';
11
+ export { ListViewIcon } from './listIcon';
12
12
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/assets/svg/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AACxC,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC1C,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAC5C,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAClD,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AACtC,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACpC,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAC9C,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;AACpD,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAClD,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAC9C,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/assets/svg/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AACxC,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC1C,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAC5C,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAClD,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AACtC,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACpC,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAC9C,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;AACpD,OAAO,EAAE,kBAAkB,EAAE,MAAM,qBAAqB,CAAC;AACzD,OAAO,EAAE,YAAY,EAAE,MAAM,YAAY,CAAC;AAC1C,OAAO,EAAE,YAAY,EAAE,MAAM,YAAY,CAAC"}
@@ -0,0 +1,2 @@
1
+ export declare const ListViewIcon: () => import("react/jsx-runtime").JSX.Element;
2
+ //# sourceMappingURL=listIcon.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"listIcon.d.ts","sourceRoot":"","sources":["../../../../src/assets/svg/listIcon.tsx"],"names":[],"mappings":"AAAA,eAAO,MAAM,YAAY,+CAiCxB,CAAC"}
@@ -0,0 +1,2 @@
1
+ export declare const TileViewIcon: () => import("react/jsx-runtime").JSX.Element;
2
+ //# sourceMappingURL=tileIcon.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"tileIcon.d.ts","sourceRoot":"","sources":["../../../../src/assets/svg/tileIcon.tsx"],"names":[],"mappings":"AAAA,eAAO,MAAM,YAAY,+CAWxB,CAAC"}