@shohojdhara/atomix 0.1.24 → 0.1.26

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 (69) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/dist/js/atomix.react.cjs.js +1 -1
  3. package/dist/js/atomix.react.esm.js +1 -1
  4. package/dist/js/atomix.react.umd.js +1 -1
  5. package/dist/types/components/Breadcrumb/Breadcrumb.d.ts +4 -0
  6. package/dist/types/layouts/Grid/Container.d.ts +39 -0
  7. package/dist/types/layouts/Grid/Grid.d.ts +38 -0
  8. package/dist/types/layouts/Grid/GridCol.d.ts +65 -0
  9. package/dist/types/layouts/Grid/Row.d.ts +39 -0
  10. package/dist/types/layouts/Grid/index.d.ts +8 -0
  11. package/dist/types/layouts/MasonryGrid/MasonryGrid.d.ts +72 -0
  12. package/dist/types/layouts/MasonryGrid/MasonryGridItem.d.ts +25 -0
  13. package/dist/types/layouts/MasonryGrid/index.d.ts +4 -0
  14. package/dist/types/layouts/index.d.ts +2 -0
  15. package/dist/types/lib/composables/index.d.ts +30 -0
  16. package/dist/types/lib/composables/useAccordion.d.ts +30 -0
  17. package/dist/types/lib/composables/useBadge.d.ts +10 -0
  18. package/dist/types/lib/composables/useBreadcrumb.d.ts +13 -0
  19. package/dist/types/lib/composables/useButton.d.ts +11 -0
  20. package/dist/types/lib/composables/useCallout.d.ts +11 -0
  21. package/dist/types/lib/composables/useCard.d.ts +8 -0
  22. package/dist/types/lib/composables/useCheckbox.d.ts +11 -0
  23. package/dist/types/lib/composables/useDataTable.d.ts +66 -0
  24. package/dist/types/lib/composables/useDatePicker.d.ts +91 -0
  25. package/dist/types/lib/composables/useDropdown.d.ts +26 -0
  26. package/dist/types/lib/composables/useEdgePanel.d.ts +15 -0
  27. package/dist/types/lib/composables/useForm.d.ts +12 -0
  28. package/dist/types/lib/composables/useFormGroup.d.ts +10 -0
  29. package/dist/types/lib/composables/useHero.d.ts +53 -0
  30. package/dist/types/lib/composables/useInput.d.ts +12 -0
  31. package/dist/types/lib/composables/useMessages.d.ts +38 -0
  32. package/dist/types/lib/composables/useModal.d.ts +40 -0
  33. package/dist/types/lib/composables/useNavbar.d.ts +59 -0
  34. package/dist/types/lib/composables/usePagination.d.ts +13 -0
  35. package/dist/types/lib/composables/usePhotoViewer.d.ts +57 -0
  36. package/dist/types/lib/composables/usePopover.d.ts +30 -0
  37. package/dist/types/lib/composables/useProgress.d.ts +38 -0
  38. package/dist/types/lib/composables/useRadio.d.ts +10 -0
  39. package/dist/types/lib/composables/useRating.d.ts +52 -0
  40. package/dist/types/lib/composables/useRiver.d.ts +107 -0
  41. package/dist/types/lib/composables/useSelect.d.ts +10 -0
  42. package/dist/types/lib/composables/useSideMenu.d.ts +28 -0
  43. package/dist/types/lib/composables/useSpinner.d.ts +10 -0
  44. package/dist/types/lib/composables/useTextarea.d.ts +10 -0
  45. package/dist/types/lib/composables/useTodo.d.ts +18 -0
  46. package/dist/types/lib/constants/components.d.ts +993 -0
  47. package/dist/types/lib/constants/index.d.ts +1 -0
  48. package/dist/types/lib/index.d.ts +6 -0
  49. package/dist/types/lib/types/components.d.ts +2062 -0
  50. package/dist/types/lib/types/index.d.ts +1 -0
  51. package/dist/types/lib/utils/dom.d.ts +26 -0
  52. package/dist/types/lib/utils/icons.d.ts +20 -0
  53. package/dist/types/lib/utils/index.d.ts +3 -0
  54. package/dist/types/lib/utils/useForkRef.d.ts +10 -0
  55. package/package.json +11 -3
  56. package/src/components/Breadcrumb/Breadcrumb.tsx +17 -3
  57. package/src/components/Dropdown/Dropdown.tsx +21 -11
  58. package/src/components/Navigation/Nav/NavItem.tsx +18 -11
  59. package/src/components/Navigation/SideMenu/SideMenuItem.tsx +20 -12
  60. package/src/components/index.ts +42 -117
  61. package/src/layouts/Grid/Container.tsx +2 -0
  62. package/src/layouts/Grid/Grid.tsx +1 -0
  63. package/src/layouts/Grid/GridCol.tsx +1 -0
  64. package/src/layouts/Grid/Row.tsx +2 -0
  65. package/src/layouts/MasonryGrid/MasonryGrid.tsx +2 -0
  66. package/src/layouts/MasonryGrid/MasonryGridItem.tsx +2 -0
  67. package/src/layouts/index.ts +1 -6
  68. package/src/lib/types/components.ts +15 -0
  69. package/src/htmlComponentsEntry.ts +0 -318
@@ -0,0 +1,993 @@
1
+ import { ThemeColor, Size } from '../types/components';
2
+ /**
3
+ * Default theme colors for components
4
+ */
5
+ export declare const THEME_COLORS: ThemeColor[];
6
+ /**
7
+ * Default sizes for components
8
+ */
9
+ export declare const SIZES: Size[];
10
+ /**
11
+ * CSS class prefixes
12
+ */
13
+ export declare const CLASS_PREFIX: {
14
+ COMPONENT: string;
15
+ UTILITY: string;
16
+ LAYOUT: string;
17
+ OBJECT: string;
18
+ };
19
+ /**
20
+ * Button-specific constants
21
+ */
22
+ export declare const BUTTON: {
23
+ BASE_CLASS: string;
24
+ ICON_CLASS: string;
25
+ VARIANT_PREFIX: string;
26
+ };
27
+ /**
28
+ * Callout-specific constants
29
+ */
30
+ export declare const CALLOUT: {
31
+ BASE_CLASS: string;
32
+ CONTENT_CLASS: string;
33
+ ICON_CLASS: string;
34
+ MESSAGE_CLASS: string;
35
+ TITLE_CLASS: string;
36
+ TEXT_CLASS: string;
37
+ ACTIONS_CLASS: string;
38
+ CLOSE_BTN_CLASS: string;
39
+ VARIANT_PREFIX: string;
40
+ CLASSES: {
41
+ ONELINE: string;
42
+ TOAST: string;
43
+ HIDE: string;
44
+ };
45
+ };
46
+ /**
47
+ * Accordion-specific constants
48
+ */
49
+ export declare const ACCORDION: {
50
+ SELECTORS: {
51
+ ACCORDION: string;
52
+ HEADER: string;
53
+ PANEL: string;
54
+ BODY: string;
55
+ };
56
+ CLASSES: {
57
+ IS_OPEN: string;
58
+ IS_ANIMATING: string;
59
+ IS_DISABLED: string;
60
+ };
61
+ ATTRIBUTES: {
62
+ ARIA_EXPANDED: string;
63
+ ARIA_CONTROLS: string;
64
+ ARIA_HIDDEN: string;
65
+ ROLE: string;
66
+ };
67
+ CSS_VARS: {
68
+ PANEL_HEIGHT: string;
69
+ };
70
+ };
71
+ /**
72
+ * Badge-specific constants
73
+ */
74
+ export declare const BADGE: {
75
+ BASE_CLASS: string;
76
+ ICON_CLASS: string;
77
+ VARIANT_PREFIX: string;
78
+ SIZE_PREFIX: string;
79
+ };
80
+ /**
81
+ * List-specific constants
82
+ */
83
+ export declare const LIST: {
84
+ BASE_CLASS: string;
85
+ ITEM_CLASS: string;
86
+ VARIANT_PREFIX: string;
87
+ SIZE_PREFIX: string;
88
+ CLASSES: {
89
+ ORDERED: string;
90
+ INLINE: string;
91
+ };
92
+ };
93
+ /**
94
+ * List Group-specific constants
95
+ */
96
+ export declare const LIST_GROUP: {
97
+ BASE_CLASS: string;
98
+ ITEM_CLASS: string;
99
+ VARIANT_PREFIX: string;
100
+ SIZE_PREFIX: string;
101
+ };
102
+ /**
103
+ * Breadcrumb-specific constants
104
+ */
105
+ export declare const BREADCRUMB: {
106
+ SELECTORS: {
107
+ BREADCRUMB: string;
108
+ ITEM: string;
109
+ LINK: string;
110
+ };
111
+ CLASSES: {
112
+ BASE: string;
113
+ ITEM: string;
114
+ LINK: string;
115
+ ACTIVE: string;
116
+ };
117
+ DEFAULTS: {
118
+ DIVIDER: string;
119
+ };
120
+ };
121
+ /**
122
+ * Countdown-specific constants
123
+ */
124
+ export declare const COUNTDOWN: {
125
+ SELECTORS: {
126
+ COUNTDOWN: string;
127
+ TIME: string;
128
+ TIME_COUNT: string;
129
+ TIME_LABEL: string;
130
+ SEPARATOR: string;
131
+ };
132
+ CLASSES: {
133
+ BASE: string;
134
+ FOCUSED: string;
135
+ };
136
+ DEFAULTS: {
137
+ SEPARATOR: string;
138
+ SHOW: string[];
139
+ };
140
+ };
141
+ /**
142
+ * Hero-specific constants
143
+ */
144
+ export declare const HERO: {
145
+ SELECTORS: {
146
+ HERO: string;
147
+ CONTAINER: string;
148
+ GRID: string;
149
+ CONTENT: string;
150
+ SUBTITLE: string;
151
+ TITLE: string;
152
+ TEXT: string;
153
+ ACTIONS: string;
154
+ IMAGE: string;
155
+ BG: string;
156
+ BG_IMAGE: string;
157
+ OVERLAY: string;
158
+ IMAGE_WRAPPER: string;
159
+ };
160
+ CLASSES: {
161
+ CENTER: string;
162
+ RIGHT: string;
163
+ LEFT: string;
164
+ FULL_VH: string;
165
+ };
166
+ };
167
+ /**
168
+ * Tooltip-specific constants
169
+ */
170
+ export declare const TOOLTIP: {
171
+ SELECTORS: {
172
+ TOOLTIP: string;
173
+ TRIGGER: string;
174
+ CONTENT: string;
175
+ ARROW: string;
176
+ };
177
+ CLASSES: {
178
+ IS_ACTIVE: string;
179
+ TOP: string;
180
+ BOTTOM: string;
181
+ LEFT: string;
182
+ RIGHT: string;
183
+ TOP_LEFT: string;
184
+ TOP_RIGHT: string;
185
+ BOTTOM_LEFT: string;
186
+ BOTTOM_RIGHT: string;
187
+ };
188
+ ATTRIBUTES: {
189
+ POSITION: string;
190
+ TRIGGER: string;
191
+ CONTENT_ID: string;
192
+ };
193
+ DEFAULTS: {
194
+ TRIGGER: string;
195
+ POSITION: string;
196
+ OFFSET: number;
197
+ DELAY: number;
198
+ };
199
+ };
200
+ /**
201
+ * Popover-specific constants
202
+ */
203
+ export declare const POPOVER: {
204
+ SELECTORS: {
205
+ POPOVER: string;
206
+ TRIGGER: string;
207
+ CONTENT: string;
208
+ CONTENT_INNER: string;
209
+ ARROW: string;
210
+ };
211
+ CLASSES: {
212
+ IS_OPEN: string;
213
+ TOP: string;
214
+ BOTTOM: string;
215
+ LEFT: string;
216
+ RIGHT: string;
217
+ AUTO: string;
218
+ };
219
+ ATTRIBUTES: {
220
+ POSITION: string;
221
+ TRIGGER: string;
222
+ CONTENT_ID: string;
223
+ };
224
+ DEFAULTS: {
225
+ TRIGGER: string;
226
+ POSITION: string;
227
+ OFFSET: number;
228
+ DELAY: number;
229
+ };
230
+ };
231
+ /**
232
+ * Toggle-specific constants
233
+ */
234
+ export declare const TOGGLE: {
235
+ SELECTORS: {
236
+ TOGGLE: string;
237
+ };
238
+ CLASSES: {
239
+ IS_ON: string;
240
+ };
241
+ };
242
+ /**
243
+ * Tab-specific constants
244
+ */
245
+ export declare const TAB: {
246
+ SELECTORS: {
247
+ TAB: string;
248
+ NAV_ITEMS: string;
249
+ NAV_BTN: string;
250
+ PANELS: string;
251
+ PANEL_BODIES: string;
252
+ };
253
+ CLASSES: {
254
+ ACTIVE: string;
255
+ };
256
+ DEFAULTS: {
257
+ ACTIVE_INDEX: number;
258
+ };
259
+ };
260
+ /**
261
+ * Steps-specific constants
262
+ */
263
+ export declare const STEPS: {
264
+ SELECTORS: {
265
+ STEPS: string;
266
+ ITEM: string;
267
+ LINE: string;
268
+ CONTENT: string;
269
+ NUMBER: string;
270
+ TEXT: string;
271
+ };
272
+ CLASSES: {
273
+ ACTIVE: string;
274
+ VERTICAL: string;
275
+ COMPLETED: string;
276
+ };
277
+ };
278
+ /**
279
+ * Testimonial-specific constants
280
+ */
281
+ export declare const TESTIMONIAL: {
282
+ SELECTORS: {
283
+ TESTIMONIAL: string;
284
+ QUOTE: string;
285
+ AUTHOR: string;
286
+ AUTHOR_AVATAR: string;
287
+ AUTHOR_INFO: string;
288
+ AUTHOR_NAME: string;
289
+ AUTHOR_ROLE: string;
290
+ };
291
+ CLASSES: {
292
+ SMALL: string;
293
+ LARGE: string;
294
+ };
295
+ };
296
+ /**
297
+ * Spinner-specific constants
298
+ */
299
+ export declare const SPINNER: {
300
+ SELECTORS: {
301
+ SPINNER: string;
302
+ };
303
+ CLASSES: {
304
+ PRIMARY: string;
305
+ SECONDARY: string;
306
+ SUCCESS: string;
307
+ INFO: string;
308
+ WARNING: string;
309
+ DANGER: string;
310
+ LIGHT: string;
311
+ DARK: string;
312
+ SMALL: string;
313
+ LARGE: string;
314
+ };
315
+ VISUALLY_HIDDEN: string;
316
+ };
317
+ /**
318
+ * SectionIntro-specific constants
319
+ */
320
+ export declare const SECTION_INTRO: {
321
+ SELECTORS: {
322
+ SECTION_INTRO: string;
323
+ LABEL: string;
324
+ TITLE: string;
325
+ TEXT: string;
326
+ ACTIONS: string;
327
+ };
328
+ CLASSES: {
329
+ CENTER: string;
330
+ LARGE: string;
331
+ SMALL: string;
332
+ };
333
+ };
334
+ /**
335
+ * River-specific constants
336
+ */
337
+ export declare const RIVER: {
338
+ SELECTORS: {
339
+ RIVER: string;
340
+ CONTAINER: string;
341
+ ROW: string;
342
+ CONTENT: string;
343
+ CONTENT_COL: string;
344
+ CONTENT_COL_TITLE: string;
345
+ CONTENT_COL_TEXT: string;
346
+ TITLE: string;
347
+ TEXT: string;
348
+ ACTIONS: string;
349
+ VISUAL: string;
350
+ IMAGE_WRAPPER: string;
351
+ IMAGE: string;
352
+ BG: string;
353
+ BG_IMAGE: string;
354
+ OVERLAY: string;
355
+ };
356
+ CLASSES: {
357
+ CENTER: string;
358
+ BREAKOUT: string;
359
+ REVERSE: string;
360
+ };
361
+ ATTRIBUTES: {
362
+ CONTENT_WIDTH: string;
363
+ };
364
+ };
365
+ /**
366
+ * Upload-specific constants
367
+ */
368
+ export declare const UPLOAD: {
369
+ SELECTORS: {
370
+ UPLOAD: string;
371
+ INNER: string;
372
+ ICON: string;
373
+ TITLE: string;
374
+ TEXT: string;
375
+ BUTTON: string;
376
+ HELPER_TEXT: string;
377
+ LOADER: string;
378
+ LOADER_STATUS: string;
379
+ LOADER_TITLE: string;
380
+ LOADER_PROGRESS: string;
381
+ LOADER_PAR: string;
382
+ LOADER_TIME: string;
383
+ LOADER_CONTROL: string;
384
+ LOADER_BAR: string;
385
+ LOADER_CLOSE: string;
386
+ };
387
+ CLASSES: {
388
+ DISABLED: string;
389
+ ERROR: string;
390
+ SUCCESS: string;
391
+ LOADING: string;
392
+ DRAGGING: string;
393
+ };
394
+ ATTRIBUTES: {
395
+ PERCENTAGE: string;
396
+ };
397
+ };
398
+ /**
399
+ * Navbar-specific constants
400
+ */
401
+ export declare const NAVBAR: {
402
+ SELECTORS: {
403
+ NAVBAR: string;
404
+ CONTAINER: string;
405
+ BRAND: string;
406
+ COLLAPSE: string;
407
+ TOGGLER: string;
408
+ TOGGLER_ICON: string;
409
+ };
410
+ CLASSES: {
411
+ BASE: string;
412
+ CONTAINER: string;
413
+ BRAND: string;
414
+ COLLAPSE: string;
415
+ TOGGLER: string;
416
+ TOGGLER_ICON: string;
417
+ FIXED: string;
418
+ FIXED_BOTTOM: string;
419
+ COLLAPSIBLE: string;
420
+ EXPANDED: string;
421
+ BACKDROP: string;
422
+ };
423
+ ATTRIBUTES: {
424
+ NAVBAR: string;
425
+ COLLAPSIBLE: string;
426
+ EXPANDED: string;
427
+ POSITION: string;
428
+ BACKDROP: string;
429
+ AUTO_CLOSE: string;
430
+ KEYBOARD: string;
431
+ };
432
+ DEFAULTS: {
433
+ POSITION: string;
434
+ COLLAPSIBLE: boolean;
435
+ EXPANDED: boolean;
436
+ BACKDROP: boolean;
437
+ AUTO_CLOSE: boolean;
438
+ KEYBOARD: boolean;
439
+ ARIA_LABEL: string;
440
+ };
441
+ };
442
+ /**
443
+ * Nav-specific constants
444
+ */
445
+ export declare const NAV: {
446
+ SELECTORS: {
447
+ NAV: string;
448
+ ITEM: string;
449
+ LINK: string;
450
+ DROPDOWN: string;
451
+ DROPDOWN_MENU: string;
452
+ MEGA_MENU: string;
453
+ ICON: string;
454
+ };
455
+ CLASSES: {
456
+ END: string;
457
+ CENTER: string;
458
+ ACTIVE: string;
459
+ DISABLED: string;
460
+ };
461
+ };
462
+ /**
463
+ * SideMenu-specific constants
464
+ */
465
+ export declare const SIDE_MENU: {
466
+ SELECTORS: {
467
+ SIDE_MENU: string;
468
+ WRAPPER: string;
469
+ INNER: string;
470
+ TITLE: string;
471
+ TOGGLER: string;
472
+ TOGGLER_ICON: string;
473
+ LIST: string;
474
+ ITEM: string;
475
+ LINK: string;
476
+ LINK_ICON: string;
477
+ LINK_TEXT: string;
478
+ };
479
+ CLASSES: {
480
+ BASE: string;
481
+ WRAPPER: string;
482
+ INNER: string;
483
+ TITLE: string;
484
+ TOGGLER: string;
485
+ TOGGLER_ICON: string;
486
+ LIST: string;
487
+ ITEM: string;
488
+ LINK: string;
489
+ LINK_ICON: string;
490
+ LINK_TEXT: string;
491
+ IS_OPEN: string;
492
+ ACTIVE: string;
493
+ DISABLED: string;
494
+ };
495
+ ATTRIBUTES: {
496
+ SIDE_MENU: string;
497
+ COLLAPSIBLE: string;
498
+ OPEN: string;
499
+ TITLE: string;
500
+ };
501
+ DEFAULTS: {
502
+ COLLAPSIBLE: boolean;
503
+ OPEN: boolean;
504
+ TOGGLE_ICON: string;
505
+ };
506
+ };
507
+ /**
508
+ * EdgePanel-specific constants
509
+ */
510
+ /**
511
+ * Rating-specific constants
512
+ */
513
+ export declare const RATING: {
514
+ SELECTORS: {
515
+ RATING: string;
516
+ STAR: string;
517
+ STAR_FULL: string;
518
+ STAR_HALF: string;
519
+ };
520
+ CLASSES: {
521
+ FULL: string;
522
+ HALF: string;
523
+ SMALL: string;
524
+ LARGE: string;
525
+ };
526
+ ATTRIBUTES: {
527
+ READONLY: string;
528
+ VALUE: string;
529
+ };
530
+ };
531
+ export declare const EDGE_PANEL: {
532
+ SELECTORS: {
533
+ PANEL: string;
534
+ BACKDROP: string;
535
+ CONTAINER: string;
536
+ HEADER: string;
537
+ BODY: string;
538
+ CLOSE: string;
539
+ };
540
+ CLASSES: {
541
+ BASE: string;
542
+ START: string;
543
+ END: string;
544
+ TOP: string;
545
+ BOTTOM: string;
546
+ IS_OPEN: string;
547
+ };
548
+ TRANSFORM_VALUES: {
549
+ start: string;
550
+ end: string;
551
+ top: string;
552
+ bottom: string;
553
+ };
554
+ ANIMATION_DURATION: number;
555
+ };
556
+ /**
557
+ * DataTable-specific constants
558
+ */
559
+ export declare const DATA_TABLE_CLASSES: {
560
+ base: string;
561
+ container: string;
562
+ tableWrapper: string;
563
+ header: string;
564
+ headerCell: string;
565
+ headerContent: string;
566
+ sortable: string;
567
+ sortIcon: string;
568
+ row: string;
569
+ cell: string;
570
+ loadingCell: string;
571
+ loadingIndicator: string;
572
+ emptyCell: string;
573
+ toolbar: string;
574
+ search: string;
575
+ searchInput: string;
576
+ pagination: string;
577
+ striped: string;
578
+ bordered: string;
579
+ dense: string;
580
+ loading: string;
581
+ open: string;
582
+ };
583
+ /**
584
+ * DataTable-specific selectors
585
+ */
586
+ export declare const DATA_TABLE_SELECTORS: {
587
+ TABLE: string;
588
+ HEADER: string;
589
+ HEADER_CELL: string;
590
+ ROW: string;
591
+ CELL: string;
592
+ PAGINATION: string;
593
+ PAGINATION_BUTTON: string;
594
+ SEARCH_INPUT: string;
595
+ };
596
+ /**
597
+ * Pagination-specific constants
598
+ */
599
+ export declare const PAGINATION_DEFAULTS: {
600
+ currentPage: number;
601
+ totalPages: number;
602
+ siblingCount: number;
603
+ showFirstLastButtons: boolean;
604
+ showPrevNextButtons: boolean;
605
+ size: Size;
606
+ };
607
+ /**
608
+ * Todo-specific constants
609
+ */
610
+ export declare const TODO: {
611
+ SELECTORS: {
612
+ TODO: string;
613
+ TITLE: string;
614
+ LIST: string;
615
+ ITEM: string;
616
+ ITEM_CONTENT: string;
617
+ ITEM_TEXT: string;
618
+ ITEM_ACTIONS: string;
619
+ CHECKBOX: string;
620
+ DELETE_BUTTON: string;
621
+ FORM: string;
622
+ INPUT: string;
623
+ ADD_BUTTON: string;
624
+ };
625
+ CLASSES: {
626
+ BASE: string;
627
+ ITEM: string;
628
+ COMPLETED: string;
629
+ SMALL: string;
630
+ LARGE: string;
631
+ };
632
+ };
633
+ /**
634
+ * Form-specific constants
635
+ */
636
+ export declare const FORM: {
637
+ SELECTORS: {
638
+ FORM: string;
639
+ GROUP: string;
640
+ LABEL: string;
641
+ HELPER: string;
642
+ FIELD: string;
643
+ REQUIRED: string;
644
+ };
645
+ CLASSES: {
646
+ BASE: string;
647
+ DISABLED: string;
648
+ };
649
+ };
650
+ /**
651
+ * Form Group-specific constants
652
+ */
653
+ export declare const FORM_GROUP: {
654
+ SELECTORS: {
655
+ GROUP: string;
656
+ LABEL: string;
657
+ FIELD: string;
658
+ HELPER: string;
659
+ REQUIRED: string;
660
+ };
661
+ CLASSES: {
662
+ BASE: string;
663
+ SMALL: string;
664
+ LARGE: string;
665
+ INVALID: string;
666
+ VALID: string;
667
+ DISABLED: string;
668
+ };
669
+ };
670
+ /**
671
+ * Input-specific constants
672
+ */
673
+ export declare const INPUT: {
674
+ SELECTORS: {
675
+ INPUT: string;
676
+ };
677
+ CLASSES: {
678
+ BASE: string;
679
+ SMALL: string;
680
+ LARGE: string;
681
+ INVALID: string;
682
+ VALID: string;
683
+ DISABLED: string;
684
+ };
685
+ };
686
+ /**
687
+ * Radio-specific constants
688
+ */
689
+ export declare const RADIO: {
690
+ SELECTORS: {
691
+ RADIO: string;
692
+ INPUT: string;
693
+ LABEL: string;
694
+ };
695
+ CLASSES: {
696
+ BASE: string;
697
+ INVALID: string;
698
+ VALID: string;
699
+ DISABLED: string;
700
+ };
701
+ };
702
+ /**
703
+ * Checkbox-specific constants - extend existing checkbox constants
704
+ */
705
+ /**
706
+ * Card-specific constants
707
+ */
708
+ export declare const CARD: {
709
+ SELECTORS: {
710
+ CARD: string;
711
+ HEADER: string;
712
+ BODY: string;
713
+ IMAGE: string;
714
+ TITLE: string;
715
+ TEXT: string;
716
+ ACTIONS: string;
717
+ ICON: string;
718
+ FOOTER: string;
719
+ };
720
+ CLASSES: {
721
+ BASE: string;
722
+ ROW: string;
723
+ FLAT: string;
724
+ ACTIVE: string;
725
+ FLIPPED: string;
726
+ FOCUSED: string;
727
+ CLICKABLE: string;
728
+ };
729
+ DEFAULTS: {
730
+ HOVER: boolean;
731
+ };
732
+ };
733
+ /**
734
+ * Select-specific constants
735
+ */
736
+ export declare const SELECT: {
737
+ SELECTORS: {
738
+ SELECT: string;
739
+ SELECTED: string;
740
+ SELECT_BODY: string;
741
+ SELECT_PANEL: string;
742
+ SELECT_ITEMS: string;
743
+ SELECT_ITEM: string;
744
+ ITEM_LABEL: string;
745
+ ITEM_INPUT: string;
746
+ OPTION: string;
747
+ };
748
+ CLASSES: {
749
+ BASE: string;
750
+ SELECTED: string;
751
+ SELECT_BODY: string;
752
+ SELECT_PANEL: string;
753
+ SELECT_ITEMS: string;
754
+ SELECT_ITEM: string;
755
+ TOGGLE_ICON: string;
756
+ ICON_CARET: string;
757
+ SMALL: string;
758
+ LARGE: string;
759
+ INVALID: string;
760
+ VALID: string;
761
+ DISABLED: string;
762
+ IS_OPEN: string;
763
+ };
764
+ };
765
+ /**
766
+ * Textarea-specific constants
767
+ */
768
+ export declare const TEXTAREA: {
769
+ SELECTORS: {
770
+ TEXTAREA: string;
771
+ };
772
+ CLASSES: {
773
+ BASE: string;
774
+ SMALL: string;
775
+ LARGE: string;
776
+ INVALID: string;
777
+ VALID: string;
778
+ DISABLED: string;
779
+ };
780
+ };
781
+ /**
782
+ * Avatar-specific constants
783
+ */
784
+ export declare const AVATAR: {
785
+ SELECTORS: {
786
+ AVATAR: string;
787
+ IMAGE: string;
788
+ INITIALS: string;
789
+ ICON: string;
790
+ };
791
+ CLASSES: {
792
+ BASE: string;
793
+ XS: string;
794
+ SM: string;
795
+ MD: string;
796
+ LG: string;
797
+ XL: string;
798
+ CIRCLE: string;
799
+ };
800
+ };
801
+ /**
802
+ * Avatar Group-specific constants
803
+ */
804
+ export declare const AVATAR_GROUP: {
805
+ SELECTORS: {
806
+ GROUP: string;
807
+ MORE: string;
808
+ };
809
+ CLASSES: {
810
+ BASE: string;
811
+ STACKED: string;
812
+ MORE: string;
813
+ };
814
+ };
815
+ /**
816
+ * Modal component constants
817
+ */
818
+ export declare const MODAL: {
819
+ SELECTORS: {
820
+ MODAL: string;
821
+ OPEN_BUTTON: string;
822
+ CLOSE_BUTTONS: string;
823
+ DIALOG: string;
824
+ BACKDROP: string;
825
+ };
826
+ CLASSES: {
827
+ IS_OPEN: string;
828
+ };
829
+ DEFAULT_OPTIONS: {
830
+ openELm: string;
831
+ closeELms: string;
832
+ modalDialogELm: string;
833
+ backdropELm: string;
834
+ backdrop: boolean;
835
+ keyboard: boolean;
836
+ };
837
+ };
838
+ /**
839
+ * Messages-specific constants
840
+ */
841
+ export declare const MESSAGES: {
842
+ SELECTORS: {
843
+ MESSAGES: string;
844
+ BODY: string;
845
+ CONTENT: string;
846
+ AVATAR: string;
847
+ ITEMS: string;
848
+ TEXT: string;
849
+ FILE: string;
850
+ IMAGE: string;
851
+ FORM: string;
852
+ INPUT: string;
853
+ };
854
+ CLASSES: {
855
+ BASE: string;
856
+ BODY: string;
857
+ CONTENT: string;
858
+ CONTENT_SELF: string;
859
+ AVATAR: string;
860
+ ITEMS: string;
861
+ NAME: string;
862
+ TEXT: string;
863
+ TIME: string;
864
+ FILE: string;
865
+ FILE_ICON: string;
866
+ FILE_DETAILS: string;
867
+ FILE_NAME: string;
868
+ FILE_SIZE: string;
869
+ IMAGE: string;
870
+ FORM: string;
871
+ INPUT_GROUP: string;
872
+ INPUT: string;
873
+ OPTIONS: string;
874
+ OPTION: string;
875
+ OPTION_ICON: string;
876
+ SUBMIT: string;
877
+ };
878
+ };
879
+ /**
880
+ * Dropdown-specific constants
881
+ */
882
+ export declare const DROPDOWN: {
883
+ SELECTORS: {
884
+ DROPDOWN: string;
885
+ TOGGLE: string;
886
+ MENU: string;
887
+ MENU_WRAPPER: string;
888
+ MENU_INNER: string;
889
+ MENU_ITEM: string;
890
+ DIVIDER: string;
891
+ HEADER: string;
892
+ };
893
+ CLASSES: {
894
+ IS_OPEN: string;
895
+ IS_ACTIVE: string;
896
+ IS_DISABLED: string;
897
+ };
898
+ DEFAULTS: {
899
+ PLACEMENT: string;
900
+ TRIGGER: string;
901
+ OFFSET: number;
902
+ MIN_WIDTH: number;
903
+ ANIMATION_DURATION: string;
904
+ ANIMATION_TIMING: string;
905
+ };
906
+ };
907
+ /**
908
+ * DatePicker-specific constants
909
+ */
910
+ /**
911
+ * Progress-specific constants
912
+ */
913
+ export declare const PROGRESS: {
914
+ SELECTORS: {
915
+ PROGRESS: string;
916
+ BAR: string;
917
+ };
918
+ CLASSES: {
919
+ BASE: string;
920
+ BAR: string;
921
+ SM: string;
922
+ MD: string;
923
+ LG: string;
924
+ };
925
+ ATTRIBUTES: {
926
+ ARIA_VALUEMIN: string;
927
+ ARIA_VALUEMAX: string;
928
+ ARIA_VALUENOW: string;
929
+ ARIA_LABEL: string;
930
+ };
931
+ CSS_VARS: {
932
+ PERCENTAGE: string;
933
+ };
934
+ DEFAULTS: {
935
+ ARIA_LABEL: string;
936
+ };
937
+ };
938
+ export declare const DATEPICKER: {
939
+ SELECTORS: {
940
+ DATEPICKER: string;
941
+ INPUT: string;
942
+ CALENDAR: string;
943
+ DAY: string;
944
+ MONTH: string;
945
+ YEAR: string;
946
+ HEADER: string;
947
+ BODY: string;
948
+ FOOTER: string;
949
+ WEEKDAYS: string;
950
+ TODAY_BUTTON: string;
951
+ CLEAR_BUTTON: string;
952
+ CLOSE_BUTTON: string;
953
+ NAV_BUTTON: string;
954
+ VIEW_SWITCH: string;
955
+ };
956
+ CLASSES: {
957
+ IS_OPEN: string;
958
+ IS_DISABLED: string;
959
+ IS_SELECTED: string;
960
+ IS_TODAY: string;
961
+ INLINE: string;
962
+ };
963
+ ATTRIBUTES: {
964
+ FORMAT: string;
965
+ MIN_DATE: string;
966
+ MAX_DATE: string;
967
+ INLINE: string;
968
+ PLACEMENT: string;
969
+ CLEARABLE: string;
970
+ SHOW_TODAY: string;
971
+ SHOW_WEEK_NUMBERS: string;
972
+ };
973
+ DEFAULTS: {
974
+ FORMAT: string;
975
+ PLACEMENT: string;
976
+ CLEARABLE: boolean;
977
+ SHOW_TODAY_BUTTON: boolean;
978
+ SHOW_WEEK_NUMBERS: boolean;
979
+ INLINE: boolean;
980
+ };
981
+ };
982
+ /**
983
+ * PhotoViewer component constants
984
+ */
985
+ export declare const PHOTOVIEWER: {
986
+ SELECTOR: string;
987
+ CLASS: string;
988
+ DEFAULTS: {
989
+ startIndex: number;
990
+ zoomLevel: number;
991
+ fullscreen: boolean;
992
+ };
993
+ };