boreal-ui 0.0.74 → 0.0.76

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 (37) hide show
  1. package/dist/core/Pager-B4hyIUdo.js.map +1 -1
  2. package/dist/core/Pager-wl7_umU4.cjs.map +1 -1
  3. package/dist/core/index.cjs.js +599 -131
  4. package/dist/core/index.cjs.js.map +1 -1
  5. package/dist/core/index.js +599 -131
  6. package/dist/core/index.js.map +1 -1
  7. package/dist/generated-docs/Typography.props.js +204 -0
  8. package/dist/next/Pager-DFKfUn1s.js.map +1 -1
  9. package/dist/next/Pager-DcibmVu1.cjs.map +1 -1
  10. package/dist/next/index.cjs.js +599 -131
  11. package/dist/next/index.cjs.js.map +1 -1
  12. package/dist/next/index.js +599 -131
  13. package/dist/next/index.js.map +1 -1
  14. package/dist/tsconfig.build.tsbuildinfo +1 -1
  15. package/dist/types/components/Pager/Pager.types.d.ts +2 -2
  16. package/dist/types/components/Pager/Pager.types.d.ts.map +1 -1
  17. package/dist/types/components/Pager/core/Pager.d.ts +2 -2
  18. package/dist/types/components/Pager/core/Pager.d.ts.map +1 -1
  19. package/dist/types/components/Pager/next/Pager.d.ts +2 -2
  20. package/dist/types/components/Pager/next/Pager.d.ts.map +1 -1
  21. package/dist/types/components/Typography/Typography.types.d.ts +75 -0
  22. package/dist/types/components/Typography/Typography.types.d.ts.map +1 -1
  23. package/dist/types/generated-docs/CheckBox.props.d.ts +7 -0
  24. package/dist/types/generated-docs/CheckBox.props.d.ts.map +1 -0
  25. package/dist/types/generated-docs/ChipGroup.props.d.ts +7 -0
  26. package/dist/types/generated-docs/ChipGroup.props.d.ts.map +1 -0
  27. package/dist/types/generated-docs/DateTimePicker.props.d.ts.map +1 -1
  28. package/dist/types/generated-docs/Dropdown.props.d.ts.map +1 -1
  29. package/dist/types/generated-docs/FileUpload.props.d.ts.map +1 -1
  30. package/dist/types/generated-docs/FormGroup.props.d.ts.map +1 -1
  31. package/dist/types/generated-docs/Pager.props.d.ts +7 -0
  32. package/dist/types/generated-docs/Pager.props.d.ts.map +1 -0
  33. package/dist/types/generated-docs/Popover.props.d.ts +7 -0
  34. package/dist/types/generated-docs/Popover.props.d.ts.map +1 -0
  35. package/dist/types/generated-docs/index.d.ts +4 -0
  36. package/dist/types/generated-docs/index.d.ts.map +1 -1
  37. package/package.json +1 -1
@@ -1399,6 +1399,190 @@ const cardPropDocs = {
1399
1399
  }
1400
1400
  ]
1401
1401
  };
1402
+ const checkBoxPropDocs = {
1403
+ "name": "CheckBox",
1404
+ "interfaceName": "CheckBoxProps",
1405
+ "description": "Props for the Checkbox component.",
1406
+ "sourcePath": "src\\components\\Checkbox\\Checkbox.types.ts",
1407
+ "props": [
1408
+ {
1409
+ "name": "aria-describedby",
1410
+ "type": "string",
1411
+ "description": "ID reference(s) to element(s) that describe the checkbox. This may include helper text, error text, or external descriptions.",
1412
+ "required": false,
1413
+ "inherited": false,
1414
+ "category": "aria"
1415
+ },
1416
+ {
1417
+ "name": "aria-errormessage",
1418
+ "type": "string",
1419
+ "description": "ID reference to the element containing the error message. Typically used together with aria-invalid.",
1420
+ "required": false,
1421
+ "inherited": false,
1422
+ "category": "aria"
1423
+ },
1424
+ {
1425
+ "name": "aria-label",
1426
+ "type": "string",
1427
+ "description": "Accessible label for the checkbox when no visible label is present or when a more descriptive label is needed.",
1428
+ "required": false,
1429
+ "inherited": false,
1430
+ "category": "aria"
1431
+ },
1432
+ {
1433
+ "name": "aria-labelledby",
1434
+ "type": "string",
1435
+ "description": "ID reference(s) to element(s) that label the checkbox. If provided, this takes precedence over the internal label association.",
1436
+ "required": false,
1437
+ "inherited": false,
1438
+ "category": "aria"
1439
+ },
1440
+ {
1441
+ "name": "checked",
1442
+ "type": "boolean",
1443
+ "description": "Checked state of the checkbox.",
1444
+ "required": true,
1445
+ "inherited": false,
1446
+ "category": "props"
1447
+ },
1448
+ {
1449
+ "name": "className",
1450
+ "type": "string",
1451
+ "description": "Custom class name for additional styling.",
1452
+ "required": false,
1453
+ "inherited": false,
1454
+ "category": "styling"
1455
+ },
1456
+ {
1457
+ "name": "data-testid",
1458
+ "type": "string",
1459
+ "description": "Optional test ID for testing frameworks.",
1460
+ "required": false,
1461
+ "inherited": false,
1462
+ "category": "testing"
1463
+ },
1464
+ {
1465
+ "name": "description",
1466
+ "type": "ReactNode",
1467
+ "description": "Visible helper text rendered below or beside the checkbox. Should provide extra guidance for the user.",
1468
+ "required": false,
1469
+ "inherited": false,
1470
+ "category": "props"
1471
+ },
1472
+ {
1473
+ "name": "disabled",
1474
+ "type": "boolean",
1475
+ "description": "Whether the checkbox is disabled.",
1476
+ "required": false,
1477
+ "inherited": false,
1478
+ "category": "props"
1479
+ },
1480
+ {
1481
+ "name": "errorMessage",
1482
+ "type": "ReactNode",
1483
+ "description": "Visible error message rendered for invalid state. This can also be referenced by assistive technologies.",
1484
+ "required": false,
1485
+ "inherited": false,
1486
+ "category": "props"
1487
+ },
1488
+ {
1489
+ "name": "indeterminate",
1490
+ "type": "boolean",
1491
+ "description": "Whether the checkbox is in an indeterminate (mixed) state.",
1492
+ "required": false,
1493
+ "inherited": false,
1494
+ "category": "props"
1495
+ },
1496
+ {
1497
+ "name": "invalid",
1498
+ "type": "boolean",
1499
+ "description": "Marks the checkbox as invalid. Useful when validation fails.",
1500
+ "required": false,
1501
+ "inherited": false,
1502
+ "category": "props"
1503
+ },
1504
+ {
1505
+ "name": "label",
1506
+ "type": "ReactNode",
1507
+ "description": "Label text displayed beside the checkbox.",
1508
+ "required": false,
1509
+ "inherited": false,
1510
+ "category": "props"
1511
+ },
1512
+ {
1513
+ "name": "labelPosition",
1514
+ "type": '"left" | "right"',
1515
+ "description": "Position of the label relative to the checkbox ('left' | 'right').",
1516
+ "required": false,
1517
+ "inherited": false,
1518
+ "category": "props"
1519
+ },
1520
+ {
1521
+ "name": "onChange",
1522
+ "type": "(checked: boolean) => void",
1523
+ "description": "Callback when the checkbox value changes.",
1524
+ "required": true,
1525
+ "inherited": false,
1526
+ "category": "events"
1527
+ },
1528
+ {
1529
+ "name": "required",
1530
+ "type": "boolean",
1531
+ "description": "Whether the checkbox is required.",
1532
+ "required": false,
1533
+ "inherited": false,
1534
+ "category": "props"
1535
+ },
1536
+ {
1537
+ "name": "role",
1538
+ "type": '"checkbox"',
1539
+ "description": "Optional role override, though checkbox is the default semantic role.",
1540
+ "required": false,
1541
+ "inherited": false,
1542
+ "category": "aria"
1543
+ },
1544
+ {
1545
+ "name": "rounding",
1546
+ "type": "RoundingType",
1547
+ "description": "Controls the rounding of the checkbox ('none' | 'small' | 'medium' | 'large' | 'full').",
1548
+ "required": false,
1549
+ "inherited": false,
1550
+ "category": "styling"
1551
+ },
1552
+ {
1553
+ "name": "shadow",
1554
+ "type": "ShadowType",
1555
+ "description": "Controls the shadow of the checkbox ('none' | 'light' | 'medium' | 'strong' | 'intense').",
1556
+ "required": false,
1557
+ "inherited": false,
1558
+ "category": "styling"
1559
+ },
1560
+ {
1561
+ "name": "size",
1562
+ "type": "SizeType",
1563
+ "description": "Size of the checkbox ('xs' | 'small' | 'medium' | 'large' | 'xl').",
1564
+ "required": false,
1565
+ "inherited": false,
1566
+ "category": "styling"
1567
+ },
1568
+ {
1569
+ "name": "state",
1570
+ "type": "StateType",
1571
+ "description": "State of the checkbox ('success' | 'error' | 'warning' | 'disabled' | '').",
1572
+ "required": false,
1573
+ "inherited": false,
1574
+ "category": "styling"
1575
+ },
1576
+ {
1577
+ "name": "theme",
1578
+ "type": "ThemeType",
1579
+ "description": "Optional theme to style the checkbox ('primary' | 'secondary' | 'tertiary' | 'quaternary' | 'clear').",
1580
+ "required": false,
1581
+ "inherited": false,
1582
+ "category": "styling"
1583
+ }
1584
+ ]
1585
+ };
1402
1586
  const chipPropDocs = {
1403
1587
  "name": "Chip",
1404
1588
  "interfaceName": "ChipProps",
@@ -1583,6 +1767,70 @@ const chipPropDocs = {
1583
1767
  }
1584
1768
  ]
1585
1769
  };
1770
+ const chipGroupPropDocs = {
1771
+ "name": "ChipGroup",
1772
+ "interfaceName": "ChipGroupProps",
1773
+ "description": "",
1774
+ "sourcePath": "src\\components\\Chip\\ChipGroup\\ChipGroup.types.ts",
1775
+ "props": [
1776
+ {
1777
+ "name": "children",
1778
+ "type": "undefined",
1779
+ "description": "Children are not allowed when using `chips`.",
1780
+ "required": false,
1781
+ "inherited": false,
1782
+ "category": "props"
1783
+ },
1784
+ {
1785
+ "name": "chips",
1786
+ "type": "ChipProps[]",
1787
+ "description": "Chips array is not allowed when using children.",
1788
+ "required": false,
1789
+ "inherited": false,
1790
+ "category": "props"
1791
+ },
1792
+ {
1793
+ "name": "className",
1794
+ "type": "string",
1795
+ "description": "Optional class name for the chip group container.",
1796
+ "required": false,
1797
+ "inherited": true,
1798
+ "category": "styling"
1799
+ },
1800
+ {
1801
+ "name": "data-testid",
1802
+ "type": "string",
1803
+ "description": "Optional test ID for testing frameworks.",
1804
+ "required": false,
1805
+ "inherited": true,
1806
+ "category": "testing"
1807
+ },
1808
+ {
1809
+ "name": "onRemove",
1810
+ "type": "((id: string) => void)",
1811
+ "description": "Optional callback when a chip is removed.",
1812
+ "required": false,
1813
+ "inherited": true,
1814
+ "category": "events"
1815
+ },
1816
+ {
1817
+ "name": "position",
1818
+ "type": "PositionType",
1819
+ "description": "Default position for chips in the group.",
1820
+ "required": false,
1821
+ "inherited": true,
1822
+ "category": "props"
1823
+ },
1824
+ {
1825
+ "name": "size",
1826
+ "type": "SizeType",
1827
+ "description": "Default size for chips if not individually specified.",
1828
+ "required": false,
1829
+ "inherited": true,
1830
+ "category": "styling"
1831
+ }
1832
+ ]
1833
+ };
1586
1834
  const circularProgressPropDocs = {
1587
1835
  "name": "CircularProgress",
1588
1836
  "interfaceName": "CircularProgressProps",
@@ -2421,14 +2669,6 @@ const dateTimePickerPropDocs = {
2421
2669
  "inherited": false,
2422
2670
  "category": "props"
2423
2671
  },
2424
- {
2425
- "name": "buttonProps",
2426
- "type": 'Omit<ButtonHTMLAttributes<HTMLButtonElement>, "disabled" | "title" | "type" | "className" | "aria-label" | "aria-labelledby" | "aria-describedby" | "onClick">',
2427
- "description": "Optional props passed to the picker trigger button.",
2428
- "required": false,
2429
- "inherited": false,
2430
- "category": "props"
2431
- },
2432
2672
  {
2433
2673
  "name": "className",
2434
2674
  "type": "string",
@@ -2477,14 +2717,6 @@ const dateTimePickerPropDocs = {
2477
2717
  "inherited": false,
2478
2718
  "category": "props"
2479
2719
  },
2480
- {
2481
- "name": "inputProps",
2482
- "type": 'Omit<InputHTMLAttributes<HTMLInputElement>, "disabled" | "name" | "type" | "value" | "defaultValue" | "onChange" | "min" | "max" | ... 10 more ... | "aria-required">',
2483
- "description": "Optional props passed to the native input element.",
2484
- "required": false,
2485
- "inherited": false,
2486
- "category": "props"
2487
- },
2488
2720
  {
2489
2721
  "name": "label",
2490
2722
  "type": "string",
@@ -2869,14 +3101,6 @@ const dropdownPropDocs = {
2869
3101
  "inherited": false,
2870
3102
  "category": "props"
2871
3103
  },
2872
- {
2873
- "name": "menuProps",
2874
- "type": 'Omit<React.HTMLProps<HTMLDivElement>, "role" | "id" | "children">',
2875
- "description": "Extra props applied to the menu container.",
2876
- "required": false,
2877
- "inherited": false,
2878
- "category": "props"
2879
- },
2880
3104
  {
2881
3105
  "name": "menuRounding",
2882
3106
  "type": "RoundingType",
@@ -2956,14 +3180,6 @@ const dropdownPropDocs = {
2956
3180
  "required": false,
2957
3181
  "inherited": false,
2958
3182
  "category": "props"
2959
- },
2960
- {
2961
- "name": "triggerProps",
2962
- "type": 'Omit<IconButtonProps, "aria-label" | "aria-labelledby" | "aria-describedby" | "aria-controls" | "aria-expanded" | "aria-haspopup" | "onClick" | "icon" | ... 4 more ... | "outline">',
2963
- "description": "Extra props applied to the trigger IconButton. Keeps accessibility flexible without bloating the main API.",
2964
- "required": false,
2965
- "inherited": false,
2966
- "category": "props"
2967
3183
  }
2968
3184
  ]
2969
3185
  };
@@ -3269,14 +3485,6 @@ const fileUploadPropDocs = {
3269
3485
  "inherited": false,
3270
3486
  "category": "props"
3271
3487
  },
3272
- {
3273
- "name": "inputProps",
3274
- "type": 'Omit<React.InputHTMLAttributes<HTMLInputElement>, "disabled" | "type" | "onChange" | "required" | "aria-label" | "aria-labelledby" | "aria-describedby" | ... 4 more ... | "multiple">',
3275
- "description": "Props passed directly to the native file input.",
3276
- "required": false,
3277
- "inherited": false,
3278
- "category": "props"
3279
- },
3280
3488
  {
3281
3489
  "name": "label",
3282
3490
  "type": "string",
@@ -3349,14 +3557,6 @@ const fileUploadPropDocs = {
3349
3557
  "inherited": false,
3350
3558
  "category": "props"
3351
3559
  },
3352
- {
3353
- "name": "progressBarProps",
3354
- "type": 'Omit<ProgressBarProps, "value" | "theme" | "indeterminate">',
3355
- "description": "Props passed directly to the progress bar.",
3356
- "required": false,
3357
- "inherited": false,
3358
- "category": "props"
3359
- },
3360
3560
  {
3361
3561
  "name": "rejectedFilesAriaLabel",
3362
3562
  "type": "string",
@@ -3373,14 +3573,6 @@ const fileUploadPropDocs = {
3373
3573
  "inherited": false,
3374
3574
  "category": "events"
3375
3575
  },
3376
- {
3377
- "name": "removeButtonProps",
3378
- "type": 'Omit<IconButtonProps, "aria-label" | "onClick" | "icon" | "state">',
3379
- "description": "Props passed directly to each remove-file button.",
3380
- "required": false,
3381
- "inherited": false,
3382
- "category": "props"
3383
- },
3384
3576
  {
3385
3577
  "name": "removeFileAriaLabel",
3386
3578
  "type": "((fileName: string, index: number) => string)",
@@ -3405,14 +3597,6 @@ const fileUploadPropDocs = {
3405
3597
  "inherited": false,
3406
3598
  "category": "props"
3407
3599
  },
3408
- {
3409
- "name": "selectButtonProps",
3410
- "type": 'Omit<ButtonProps, "disabled" | "children" | "onClick" | "icon" | "theme" | "state" | "rounding" | "shadow" | "outline">',
3411
- "description": "Props passed directly to the select-file button.",
3412
- "required": false,
3413
- "inherited": false,
3414
- "category": "props"
3415
- },
3416
3600
  {
3417
3601
  "name": "state",
3418
3602
  "type": "StateType",
@@ -3445,14 +3629,6 @@ const fileUploadPropDocs = {
3445
3629
  "inherited": false,
3446
3630
  "category": "props"
3447
3631
  },
3448
- {
3449
- "name": "uploadButtonProps",
3450
- "type": 'Omit<ButtonProps, "disabled" | "children" | "onClick" | "theme" | "state" | "loading">',
3451
- "description": "Props passed directly to the upload button.",
3452
- "required": false,
3453
- "inherited": false,
3454
- "category": "props"
3455
- },
3456
3632
  {
3457
3633
  "name": "uploadProgress",
3458
3634
  "type": "number",
@@ -3685,14 +3861,6 @@ const formGroupPropDocs = {
3685
3861
  "inherited": false,
3686
3862
  "category": "props"
3687
3863
  },
3688
- {
3689
- "name": "controlProps",
3690
- "type": "FormGroupControlProps",
3691
- "description": "Optional props merged into each child control.",
3692
- "required": false,
3693
- "inherited": false,
3694
- "category": "props"
3695
- },
3696
3864
  {
3697
3865
  "name": "data-testid",
3698
3866
  "type": "string",
@@ -3710,25 +3878,9 @@ const formGroupPropDocs = {
3710
3878
  "category": "props"
3711
3879
  },
3712
3880
  {
3713
- "name": "descriptionProps",
3714
- "type": "HTMLAttributes<HTMLParagraphElement>",
3715
- "description": "Optional props applied to the description element.",
3716
- "required": false,
3717
- "inherited": false,
3718
- "category": "props"
3719
- },
3720
- {
3721
- "name": "error",
3722
- "type": "string",
3723
- "description": "Optional error message shown below the input.",
3724
- "required": false,
3725
- "inherited": false,
3726
- "category": "props"
3727
- },
3728
- {
3729
- "name": "errorProps",
3730
- "type": "HTMLAttributes<HTMLParagraphElement>",
3731
- "description": "Optional props applied to the error element.",
3881
+ "name": "error",
3882
+ "type": "string",
3883
+ "description": "Optional error message shown below the input.",
3732
3884
  "required": false,
3733
3885
  "inherited": false,
3734
3886
  "category": "props"
@@ -3757,14 +3909,6 @@ const formGroupPropDocs = {
3757
3909
  "inherited": false,
3758
3910
  "category": "props"
3759
3911
  },
3760
- {
3761
- "name": "labelProps",
3762
- "type": 'Omit<LabelHTMLAttributes<HTMLLabelElement>, "id" | "htmlFor">',
3763
- "description": "Optional props applied to the rendered label element.",
3764
- "required": false,
3765
- "inherited": false,
3766
- "category": "props"
3767
- },
3768
3912
  {
3769
3913
  "name": "layout",
3770
3914
  "type": '"horizontal" | "vertical"',
@@ -4959,6 +5103,326 @@ const notificationCenterPropDocs = {
4959
5103
  }
4960
5104
  ]
4961
5105
  };
5106
+ const pagerPropDocs = {
5107
+ "name": "Pager",
5108
+ "interfaceName": "PagerProps",
5109
+ "description": "Props for the Pager (pagination) component.",
5110
+ "sourcePath": "src\\components\\Pager\\Pager.types.ts",
5111
+ "props": [
5112
+ {
5113
+ "name": "aria-describedby",
5114
+ "type": "string",
5115
+ "description": "Optional description id for the pagination navigation region.",
5116
+ "required": false,
5117
+ "inherited": false,
5118
+ "category": "aria"
5119
+ },
5120
+ {
5121
+ "name": "aria-label",
5122
+ "type": "string",
5123
+ "description": "Accessible label for the pagination navigation region.",
5124
+ "required": false,
5125
+ "inherited": false,
5126
+ "category": "aria"
5127
+ },
5128
+ {
5129
+ "name": "aria-labelledby",
5130
+ "type": "string",
5131
+ "description": "Optional labelledby id for the pagination navigation region.",
5132
+ "required": false,
5133
+ "inherited": false,
5134
+ "category": "aria"
5135
+ },
5136
+ {
5137
+ "name": "className",
5138
+ "type": "string",
5139
+ "description": "Optional extra class name(s) for custom styling.",
5140
+ "required": false,
5141
+ "inherited": false,
5142
+ "category": "styling"
5143
+ },
5144
+ {
5145
+ "name": "currentPage",
5146
+ "type": "number",
5147
+ "description": "The currently active page (1-indexed).",
5148
+ "required": true,
5149
+ "inherited": false,
5150
+ "category": "props"
5151
+ },
5152
+ {
5153
+ "name": "data-testid",
5154
+ "type": "string",
5155
+ "description": "Optional test ID for testing frameworks.",
5156
+ "required": false,
5157
+ "inherited": false,
5158
+ "category": "testing"
5159
+ },
5160
+ {
5161
+ "name": "getLiveRegionMessage",
5162
+ "type": "((currentPage: number, totalPages: number) => string)",
5163
+ "description": "Function used to generate the live region status message.",
5164
+ "required": false,
5165
+ "inherited": false,
5166
+ "category": "events"
5167
+ },
5168
+ {
5169
+ "name": "getPageAriaLabel",
5170
+ "type": "((page: number, isActive: boolean) => string)",
5171
+ "description": "Function used to generate an accessible label for each page button.",
5172
+ "required": false,
5173
+ "inherited": false,
5174
+ "category": "events"
5175
+ },
5176
+ {
5177
+ "name": "itemsPerPage",
5178
+ "type": "number",
5179
+ "description": "Number of items to display per page.",
5180
+ "required": true,
5181
+ "inherited": false,
5182
+ "category": "props"
5183
+ },
5184
+ {
5185
+ "name": "liveRegionAriaLive",
5186
+ "type": '"off" | "polite" | "assertive"',
5187
+ "description": "ARIA live politeness setting for the status message.",
5188
+ "required": false,
5189
+ "inherited": false,
5190
+ "category": "props"
5191
+ },
5192
+ {
5193
+ "name": "next-button-aria-label",
5194
+ "type": "string",
5195
+ "description": "Accessible label for the next page button.",
5196
+ "required": false,
5197
+ "inherited": false,
5198
+ "category": "props"
5199
+ },
5200
+ {
5201
+ "name": "onPageChange",
5202
+ "type": "(page: number) => void",
5203
+ "description": "Callback function invoked when a page change occurs.",
5204
+ "required": true,
5205
+ "inherited": false,
5206
+ "category": "events"
5207
+ },
5208
+ {
5209
+ "name": "page-list-aria-label",
5210
+ "type": "string",
5211
+ "description": "Accessible label for the page list.",
5212
+ "required": false,
5213
+ "inherited": false,
5214
+ "category": "props"
5215
+ },
5216
+ {
5217
+ "name": "previous-button-aria-label",
5218
+ "type": "string",
5219
+ "description": "Accessible label for the previous page button.",
5220
+ "required": false,
5221
+ "inherited": false,
5222
+ "category": "props"
5223
+ },
5224
+ {
5225
+ "name": "rounding",
5226
+ "type": "RoundingType",
5227
+ "description": 'Rounding of the controls. One of: "none" | "small" | "medium" | "large" | "full"',
5228
+ "required": false,
5229
+ "inherited": false,
5230
+ "category": "styling"
5231
+ },
5232
+ {
5233
+ "name": "serverControlled",
5234
+ "type": "boolean",
5235
+ "description": "Enables server side control of the paging.",
5236
+ "required": false,
5237
+ "inherited": false,
5238
+ "category": "props"
5239
+ },
5240
+ {
5241
+ "name": "shadow",
5242
+ "type": "ShadowType",
5243
+ "description": 'Shadow of the controls. One of: "none" | "light" | "medium" | "strong" | "intense"',
5244
+ "required": false,
5245
+ "inherited": false,
5246
+ "category": "styling"
5247
+ },
5248
+ {
5249
+ "name": "size",
5250
+ "type": "SizeType",
5251
+ "description": 'Optional size modifier for pagination buttons. One of: "xs" | "small" | "medium" | "large" | "xl"',
5252
+ "required": false,
5253
+ "inherited": false,
5254
+ "category": "styling"
5255
+ },
5256
+ {
5257
+ "name": "state",
5258
+ "type": "StateType",
5259
+ "description": 'Optional state of the component for feedback styling. One of: "success" | "error" | "warning" | "disabled" | ""',
5260
+ "required": false,
5261
+ "inherited": false,
5262
+ "category": "styling"
5263
+ },
5264
+ {
5265
+ "name": "theme",
5266
+ "type": "ThemeType",
5267
+ "description": 'Optional theme to apply for pagination. One of: "primary" | "secondary" | "tertiary" | "quaternary" | "clear"',
5268
+ "required": false,
5269
+ "inherited": false,
5270
+ "category": "styling"
5271
+ },
5272
+ {
5273
+ "name": "totalItems",
5274
+ "type": "number",
5275
+ "description": "Total number of items to paginate through.",
5276
+ "required": true,
5277
+ "inherited": false,
5278
+ "category": "props"
5279
+ }
5280
+ ]
5281
+ };
5282
+ const popoverPropDocs = {
5283
+ "name": "Popover",
5284
+ "interfaceName": "PopoverProps",
5285
+ "description": "Props for the Popover component.",
5286
+ "sourcePath": "src\\components\\PopOver\\PopOver.types.ts",
5287
+ "props": [
5288
+ {
5289
+ "name": "aria-describedby",
5290
+ "type": "string",
5291
+ "description": "Associates the popover content with an external description element ID.",
5292
+ "required": false,
5293
+ "inherited": false,
5294
+ "category": "aria"
5295
+ },
5296
+ {
5297
+ "name": "aria-label",
5298
+ "type": "string",
5299
+ "description": "Accessible label for the popover content region.",
5300
+ "required": false,
5301
+ "inherited": false,
5302
+ "category": "aria"
5303
+ },
5304
+ {
5305
+ "name": "aria-labelledby",
5306
+ "type": "string",
5307
+ "description": "Associates the popover content with an external label element ID.",
5308
+ "required": false,
5309
+ "inherited": false,
5310
+ "category": "aria"
5311
+ },
5312
+ {
5313
+ "name": "aria-modal",
5314
+ "type": "boolean",
5315
+ "description": "Whether the popover should be announced as modal when role is dialog.",
5316
+ "required": false,
5317
+ "inherited": false,
5318
+ "category": "aria"
5319
+ },
5320
+ {
5321
+ "name": "className",
5322
+ "type": "string",
5323
+ "description": "Optional additional class name(s) for custom styling.",
5324
+ "required": false,
5325
+ "inherited": false,
5326
+ "category": "styling"
5327
+ },
5328
+ {
5329
+ "name": "content",
5330
+ "type": "ReactNode",
5331
+ "description": "Content to be displayed inside the popover.",
5332
+ "required": true,
5333
+ "inherited": false,
5334
+ "category": "props"
5335
+ },
5336
+ {
5337
+ "name": "data-testid",
5338
+ "type": "string",
5339
+ "description": "Optional test ID for testing frameworks.",
5340
+ "required": false,
5341
+ "inherited": false,
5342
+ "category": "testing"
5343
+ },
5344
+ {
5345
+ "name": "disabled",
5346
+ "type": "boolean",
5347
+ "description": "Disables interaction with the trigger and popover.",
5348
+ "required": false,
5349
+ "inherited": false,
5350
+ "category": "props"
5351
+ },
5352
+ {
5353
+ "name": "id",
5354
+ "type": "string",
5355
+ "description": "Optional ID for the popover content element.",
5356
+ "required": false,
5357
+ "inherited": false,
5358
+ "category": "props"
5359
+ },
5360
+ {
5361
+ "name": "placement",
5362
+ "type": '"left" | "right" | "top" | "bottom"',
5363
+ "description": 'Placement of the popover relative to the trigger element. One of: "top" | "bottom" | "left" | "right"',
5364
+ "required": false,
5365
+ "inherited": false,
5366
+ "category": "props"
5367
+ },
5368
+ {
5369
+ "name": "rounding",
5370
+ "type": "RoundingType",
5371
+ "description": 'Rounding of the popover content. One of: "none" | "small" | "medium" | "large" | "full"',
5372
+ "required": false,
5373
+ "inherited": false,
5374
+ "category": "styling"
5375
+ },
5376
+ {
5377
+ "name": "shadow",
5378
+ "type": "ShadowType",
5379
+ "description": 'Shadow of the popover content. One of: "none" | "light" | "medium" | "strong" | "intense"',
5380
+ "required": false,
5381
+ "inherited": false,
5382
+ "category": "styling"
5383
+ },
5384
+ {
5385
+ "name": "state",
5386
+ "type": "StateType",
5387
+ "description": 'State of the popover, for feedback styling. One of: "success" | "error" | "warning" | "disabled" | ""',
5388
+ "required": false,
5389
+ "inherited": false,
5390
+ "category": "styling"
5391
+ },
5392
+ {
5393
+ "name": "theme",
5394
+ "type": "ThemeType",
5395
+ "description": 'Theme for the popover styling. One of: "primary" | "secondary" | "tertiary" | "quaternary" | "clear"',
5396
+ "required": false,
5397
+ "inherited": false,
5398
+ "category": "styling"
5399
+ },
5400
+ {
5401
+ "name": "trigger",
5402
+ "type": "ReactNode",
5403
+ "description": "Trigger element that toggles the popover's visibility.",
5404
+ "required": true,
5405
+ "inherited": false,
5406
+ "category": "props"
5407
+ },
5408
+ {
5409
+ "name": "triggerAriaLabel",
5410
+ "type": "string",
5411
+ "description": "Accessible label for the trigger button.",
5412
+ "required": false,
5413
+ "inherited": false,
5414
+ "category": "props"
5415
+ },
5416
+ {
5417
+ "name": "triggerTitle",
5418
+ "type": "string",
5419
+ "description": "Accessible label for the trigger button when expanded/collapsed state needs custom wording.",
5420
+ "required": false,
5421
+ "inherited": false,
5422
+ "category": "props"
5423
+ }
5424
+ ]
5425
+ };
4962
5426
  const progressBarPropDocs = {
4963
5427
  "name": "ProgressBar",
4964
5428
  "interfaceName": "ProgressBarProps",
@@ -7832,7 +8296,7 @@ const typographyPropDocs = {
7832
8296
  {
7833
8297
  "name": "align",
7834
8298
  "type": "TypographyAlign",
7835
- "description": "",
8299
+ "description": "Horizontal text alignment.",
7836
8300
  "required": false,
7837
8301
  "inherited": false,
7838
8302
  "category": "props"
@@ -7840,7 +8304,7 @@ const typographyPropDocs = {
7840
8304
  {
7841
8305
  "name": "aria-atomic",
7842
8306
  "type": "boolean",
7843
- "description": "",
8307
+ "description": "Whether assistive technologies should present the entire updated region when part of a live region changes.",
7844
8308
  "required": false,
7845
8309
  "inherited": false,
7846
8310
  "category": "aria"
@@ -7848,7 +8312,7 @@ const typographyPropDocs = {
7848
8312
  {
7849
8313
  "name": "aria-busy",
7850
8314
  "type": "boolean",
7851
- "description": "",
8315
+ "description": "Indicates whether the element is currently being updated, such as during loading.",
7852
8316
  "required": false,
7853
8317
  "inherited": false,
7854
8318
  "category": "aria"
@@ -7856,7 +8320,7 @@ const typographyPropDocs = {
7856
8320
  {
7857
8321
  "name": "aria-describedby",
7858
8322
  "type": "string",
7859
- "description": "",
8323
+ "description": "References the id of another element that describes this element.",
7860
8324
  "required": false,
7861
8325
  "inherited": false,
7862
8326
  "category": "aria"
@@ -7864,7 +8328,7 @@ const typographyPropDocs = {
7864
8328
  {
7865
8329
  "name": "aria-hidden",
7866
8330
  "type": "boolean",
7867
- "description": "",
8331
+ "description": "Whether the element should be hidden from assistive technologies.",
7868
8332
  "required": false,
7869
8333
  "inherited": false,
7870
8334
  "category": "aria"
@@ -7872,7 +8336,7 @@ const typographyPropDocs = {
7872
8336
  {
7873
8337
  "name": "aria-label",
7874
8338
  "type": "string",
7875
- "description": "",
8339
+ "description": "Defines an accessible label for the element when a visible label is not sufficient.",
7876
8340
  "required": false,
7877
8341
  "inherited": false,
7878
8342
  "category": "aria"
@@ -7880,7 +8344,7 @@ const typographyPropDocs = {
7880
8344
  {
7881
8345
  "name": "aria-labelledby",
7882
8346
  "type": "string",
7883
- "description": "",
8347
+ "description": "References the id of another element that labels this element.",
7884
8348
  "required": false,
7885
8349
  "inherited": false,
7886
8350
  "category": "aria"
@@ -7888,7 +8352,7 @@ const typographyPropDocs = {
7888
8352
  {
7889
8353
  "name": "aria-live",
7890
8354
  "type": '"off" | "polite" | "assertive"',
7891
- "description": "",
8355
+ "description": "Indicates that the element will be updated and describes how updates should be announced.",
7892
8356
  "required": false,
7893
8357
  "inherited": false,
7894
8358
  "category": "aria"
@@ -7896,7 +8360,7 @@ const typographyPropDocs = {
7896
8360
  {
7897
8361
  "name": "as",
7898
8362
  "type": "ElementType",
7899
- "description": "",
8363
+ "description": 'The HTML element or custom component to render as. For example: `"p"`, `"span"`, `"h1"`, or a custom React component.',
7900
8364
  "required": false,
7901
8365
  "inherited": false,
7902
8366
  "category": "props"
@@ -7904,7 +8368,7 @@ const typographyPropDocs = {
7904
8368
  {
7905
8369
  "name": "children",
7906
8370
  "type": "ReactNode",
7907
- "description": "",
8371
+ "description": "The content to render inside the typography component.",
7908
8372
  "required": false,
7909
8373
  "inherited": false,
7910
8374
  "category": "props"
@@ -7912,7 +8376,7 @@ const typographyPropDocs = {
7912
8376
  {
7913
8377
  "name": "className",
7914
8378
  "type": "string",
7915
- "description": "",
8379
+ "description": "Optional custom CSS class name for the root element.",
7916
8380
  "required": false,
7917
8381
  "inherited": false,
7918
8382
  "category": "styling"
@@ -7920,7 +8384,7 @@ const typographyPropDocs = {
7920
8384
  {
7921
8385
  "name": "id",
7922
8386
  "type": "string",
7923
- "description": "",
8387
+ "description": "Optional unique id for the root element.",
7924
8388
  "required": false,
7925
8389
  "inherited": false,
7926
8390
  "category": "props"
@@ -7928,7 +8392,7 @@ const typographyPropDocs = {
7928
8392
  {
7929
8393
  "name": "italic",
7930
8394
  "type": "boolean",
7931
- "description": "",
8395
+ "description": "Whether the text should be displayed in italic style.",
7932
8396
  "required": false,
7933
8397
  "inherited": false,
7934
8398
  "category": "props"
@@ -7936,7 +8400,7 @@ const typographyPropDocs = {
7936
8400
  {
7937
8401
  "name": "noWrap",
7938
8402
  "type": "boolean",
7939
- "description": "",
8403
+ "description": "Whether the text should remain on a single line without wrapping.",
7940
8404
  "required": false,
7941
8405
  "inherited": false,
7942
8406
  "category": "props"
@@ -7944,7 +8408,7 @@ const typographyPropDocs = {
7944
8408
  {
7945
8409
  "name": "role",
7946
8410
  "type": "AriaRole",
7947
- "description": "",
8411
+ "description": "Optional ARIA role for the rendered element.",
7948
8412
  "required": false,
7949
8413
  "inherited": false,
7950
8414
  "category": "aria"
@@ -7952,7 +8416,7 @@ const typographyPropDocs = {
7952
8416
  {
7953
8417
  "name": "srOnly",
7954
8418
  "type": "boolean",
7955
- "description": "",
8419
+ "description": "Whether the text should be visually hidden but still available to screen readers.",
7956
8420
  "required": false,
7957
8421
  "inherited": false,
7958
8422
  "category": "props"
@@ -7960,7 +8424,7 @@ const typographyPropDocs = {
7960
8424
  {
7961
8425
  "name": "style",
7962
8426
  "type": "CSSProperties",
7963
- "description": "",
8427
+ "description": "Optional inline styles applied to the root element.",
7964
8428
  "required": false,
7965
8429
  "inherited": false,
7966
8430
  "category": "props"
@@ -7968,7 +8432,7 @@ const typographyPropDocs = {
7968
8432
  {
7969
8433
  "name": "testId",
7970
8434
  "type": "string",
7971
- "description": "",
8435
+ "description": "Optional test id used for testing the component.",
7972
8436
  "required": false,
7973
8437
  "inherited": false,
7974
8438
  "category": "props"
@@ -7976,7 +8440,7 @@ const typographyPropDocs = {
7976
8440
  {
7977
8441
  "name": "theme",
7978
8442
  "type": "TypographyTheme",
7979
- "description": "",
8443
+ "description": "Visual theme style applied to the typography.",
7980
8444
  "required": false,
7981
8445
  "inherited": false,
7982
8446
  "category": "styling"
@@ -7984,7 +8448,7 @@ const typographyPropDocs = {
7984
8448
  {
7985
8449
  "name": "title",
7986
8450
  "type": "string",
7987
- "description": "",
8451
+ "description": "Advisory text for the element, typically shown as a tooltip on hover.",
7988
8452
  "required": false,
7989
8453
  "inherited": false,
7990
8454
  "category": "props"
@@ -7992,7 +8456,7 @@ const typographyPropDocs = {
7992
8456
  {
7993
8457
  "name": "truncate",
7994
8458
  "type": "boolean",
7995
- "description": "",
8459
+ "description": "Whether overflowing text should be truncated, typically with an ellipsis.",
7996
8460
  "required": false,
7997
8461
  "inherited": false,
7998
8462
  "category": "props"
@@ -8000,7 +8464,7 @@ const typographyPropDocs = {
8000
8464
  {
8001
8465
  "name": "underline",
8002
8466
  "type": "boolean",
8003
- "description": "",
8467
+ "description": "Whether the text should be underlined.",
8004
8468
  "required": false,
8005
8469
  "inherited": false,
8006
8470
  "category": "props"
@@ -8008,7 +8472,7 @@ const typographyPropDocs = {
8008
8472
  {
8009
8473
  "name": "variant",
8010
8474
  "type": "TypographyVariant",
8011
- "description": "",
8475
+ "description": "Predefined typography style variant. Examples may include headings, body text, captions, or labels.",
8012
8476
  "required": false,
8013
8477
  "inherited": false,
8014
8478
  "category": "props"
@@ -8016,7 +8480,7 @@ const typographyPropDocs = {
8016
8480
  {
8017
8481
  "name": "weight",
8018
8482
  "type": "TypographyWeight",
8019
- "description": "",
8483
+ "description": "Font weight of the text.",
8020
8484
  "required": false,
8021
8485
  "inherited": false,
8022
8486
  "category": "props"
@@ -8218,6 +8682,8 @@ export {
8218
8682
  breadcrumbsPropDocs,
8219
8683
  buttonPropDocs,
8220
8684
  cardPropDocs,
8685
+ checkBoxPropDocs,
8686
+ chipGroupPropDocs,
8221
8687
  chipPropDocs,
8222
8688
  circularProgressPropDocs,
8223
8689
  colorPickerPropDocs,
@@ -8238,6 +8704,8 @@ export {
8238
8704
  modalPropDocs,
8239
8705
  navBarPropDocs,
8240
8706
  notificationCenterPropDocs,
8707
+ pagerPropDocs,
8708
+ popoverPropDocs,
8241
8709
  progressBarPropDocs,
8242
8710
  radioButtonPropDocs,
8243
8711
  ratingPropDocs,