@rarui/components 1.23.0 → 1.24.0

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.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,30 @@
2
2
 
3
3
  `@rarui/components` components is a component library built with [Lit](https://lit.dev/).
4
4
 
5
+ ## 2025-09-05 `1.24.0`
6
+
7
+ #### 🎉 New features
8
+
9
+ - Enhanced navigation components with comprehensive accessibility improvements: Tabs with complete ARIA tabs pattern (tablist, tab, tabpanel), SideNavigation with proper expandable controls (aria-expanded, aria-controls), Pagination with semantic navigation and aria-current, Link with external link security and form integration, and Breadcrumb with semantic navigation structure for complete screen reader support. ([#134](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/134) by [@junior](https://git.rarolabs.com.br/junior))
10
+ - Enhanced Toggle component with comprehensive accessibility and form integration (value, form, required properties), standardized custom event (toggle-change), semantic switch behavior with role="switch", and complete ARIA attributes implementation (aria-checked) for screen reader accessibility. ([#134](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/134) by [@junior](https://git.rarolabs.com.br/junior))
11
+ - Enhanced Textarea component with comprehensive accessibility and form integration (name, form, required, readonly, placeholder, minlength, maxlength properties), standardized custom event (textarea-change), and complete ARIA attributes implementation for screen reader accessibility. ([#134](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/134) by [@junior](https://git.rarolabs.com.br/junior))
12
+ - Enhanced Select component with comprehensive accessibility and form integration (name, form, required properties), complete ARIA support with proper attributes (aria-haspopup, aria-expanded, semantic roles), and hidden form inputs for seamless HTML form integration in both single and multiple selection modes. ([#134](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/134) by [@junior](https://git.rarolabs.com.br/junior))
13
+ - Enhanced RadioButton component with comprehensive accessibility and form integration (value, form, required, readonly properties), standardized custom event (radio-button-change), and complete ARIA attributes implementation for screen reader support. ([#134](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/134) by [@junior](https://git.rarolabs.com.br/junior))
14
+ - Enhanced Input components (Input, InputPassword, InputSearch) with comprehensive accessibility and form integration (HTML5 validation attributes, ARIA support) and standardized custom events (input-change, input-password-change, input-search-change, input-search-submit) for consistent user interaction across all input variants. ([#134](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/134) by [@junior](https://git.rarolabs.com.br/junior))
15
+ - Enhanced IconButton component with comprehensive accessibility and form integration (type, name, value, form properties), standardized custom event (icon-button-click), and complete ARIA attributes implementation for screen reader support. ([#134](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/134) by [@junior](https://git.rarolabs.com.br/junior))
16
+ - Enhanced Dropdown component with comprehensive accessibility support (ARIA attributes, keyboard navigation) and standardized custom events (dropdown-visibility-change, dropdown-item-click) for better user interaction and screen reader compatibility. ([#134](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/134) by [@junior](https://git.rarolabs.com.br/junior))
17
+ - Enhanced Chip component with comprehensive accessibility and form integration (disabled, type, name, value, form properties), standardized custom events (chip-click, chip-close), keyboard navigation support, and complete ARIA attributes implementation. ([#134](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/134) by [@junior](https://git.rarolabs.com.br/junior))
18
+ - Enhanced Checkbox component with comprehensive accessibility support (aria-checked with mixed state, aria-invalid, aria-required) and complete HTML form integration (name, value, form, required attributes). ([#134](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/134) by [@junior](https://git.rarolabs.com.br/junior))
19
+ - Enhanced Button component with advanced accessibility support (aria-pressed, aria-expanded) and comprehensive HTML form integration (name, value, form attributes). ([#134](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/134) by [@junior](https://git.rarolabs.com.br/junior))
20
+ - Enhanced accessibility across feedback components (Progress, ProgressCircle, Skeleton, Status) with comprehensive ARIA attributes for screen reader support. ([#134](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/134) by [@junior](https://git.rarolabs.com.br/junior))
21
+ - Enhanced accessibility across layout components (Box, Sidebar) with ARIA attributes for screen reader compatibility. ([#134](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/134) by [@junior](https://git.rarolabs.com.br/junior))
22
+ - Enhanced accessibility across surface components (Card, Modal, Banner, Accordion) with comprehensive ARIA attributes and semantic roles. ([#134](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/134) by [@junior](https://git.rarolabs.com.br/junior))
23
+ - Enhanced accessibility for stylization components (ThemeProvider) with ARIA attributes support. ([#134](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/134) by [@junior](https://git.rarolabs.com.br/junior))
24
+ - Enhanced accessibility across exhibition components with comprehensive ARIA attributes and semantic roles for screen reader support. ([#134](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/134) by [@junior](https://git.rarolabs.com.br/junior))
25
+ - Added `as` property to `Text` and `Title` components for semantic HTML element selection with dynamic tag rendering. ([#134](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/134) by [@junior](https://git.rarolabs.com.br/junior))
26
+ - Improved `Icon` component with intelligent aria-hidden behavior for decorative vs meaningful icons. ([#134](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/134) by [@junior](https://git.rarolabs.com.br/junior))
27
+ - Enhanced `Stepper` and `StepperStep` components with comprehensive accessibility support including aria-current navigation. ([#134](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/134) by [@junior](https://git.rarolabs.com.br/junior))
28
+
5
29
  ## 2025-01-09 `1.23.0`
6
30
 
7
31
  #### 🎉 New features
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.22.0",
2
+ "version": "1.23.0",
3
3
  "tags": [
4
4
  {
5
5
  "name": "rarui-avatar",
@@ -1419,18 +1419,31 @@
1419
1419
  },
1420
1420
  {
1421
1421
  "name": "rarui-text",
1422
+ "description": "## Rarui Text\n---\nText is a basic component that allows us to write blocks of text and give it formatting to use within other components, sections and pages of our application or website.\n\nSee [a complete document](https://rarui.rarolabs.com.br/docs/components-web-components/exhibition/typography) for more details.",
1422
1423
  "attributes": [
1423
1424
  {
1424
1425
  "name": "as",
1425
- "description": "Type of html tag to create for the Text component.\n\n- p\n- span\n\n@default p",
1426
+ "description": "Changes the rendered element for semantic HTML.\n\n- div\n- em\n- p\n- small\n- span\n- strong\n\n@default p",
1426
1427
  "type": "string",
1427
1428
  "values": [
1429
+ {
1430
+ "name": "div"
1431
+ },
1432
+ {
1433
+ "name": "em"
1434
+ },
1428
1435
  {
1429
1436
  "name": "p",
1430
1437
  "description": "(default)"
1431
1438
  },
1439
+ {
1440
+ "name": "small"
1441
+ },
1432
1442
  {
1433
1443
  "name": "span"
1444
+ },
1445
+ {
1446
+ "name": "strong"
1434
1447
  }
1435
1448
  ],
1436
1449
  "default": "p"
@@ -1776,10 +1789,11 @@
1776
1789
  },
1777
1790
  {
1778
1791
  "name": "rarui-title",
1792
+ "description": "## Rarui Title\n---\nTilte is a basic component that allows you to give titles and more hierarchy to blocks of text for sections or header components.\n\nSee [a complete document](https://rarui.rarolabs.com.br/docs/components-web-components/exhibition/typography) for more details.",
1779
1793
  "attributes": [
1780
1794
  {
1781
1795
  "name": "as",
1782
- "description": "Type of html tag to create for the title.\n\n- h1\n- h2\n- h3\n- h4\n- h5\n- h6\n\n@default h1",
1796
+ "description": "Changes the rendered heading element for semantic hierarchy.\n\n- h1\n- h2\n- h3\n- h4\n- h5\n- h6\n\n@default h1",
1783
1797
  "type": "string",
1784
1798
  "values": [
1785
1799
  {
@@ -2567,6 +2581,21 @@
2567
2581
  }
2568
2582
  ],
2569
2583
  "default": "button"
2584
+ },
2585
+ {
2586
+ "name": "name",
2587
+ "description": "The name of the button for form submission.",
2588
+ "type": "string"
2589
+ },
2590
+ {
2591
+ "name": "value",
2592
+ "description": "The value of the button for form submission.",
2593
+ "type": "string"
2594
+ },
2595
+ {
2596
+ "name": "form",
2597
+ "description": "Associates the button with a form element by ID.",
2598
+ "type": "string"
2570
2599
  }
2571
2600
  ]
2572
2601
  },
@@ -2618,6 +2647,27 @@
2618
2647
  "name": "indeterminate",
2619
2648
  "description": "Specifies whether the checkbox is indeterminate state",
2620
2649
  "type": "boolean"
2650
+ },
2651
+ {
2652
+ "name": "name",
2653
+ "description": "The name of the checkbox for form submission.",
2654
+ "type": "string"
2655
+ },
2656
+ {
2657
+ "name": "value",
2658
+ "description": "The value of the checkbox when checked for form submission.",
2659
+ "type": "string"
2660
+ },
2661
+ {
2662
+ "name": "form",
2663
+ "description": "Associates the checkbox with a form element by ID.",
2664
+ "type": "string"
2665
+ },
2666
+ {
2667
+ "name": "required",
2668
+ "description": "Indicates whether the checkbox is required for form validation.",
2669
+ "type": "boolean",
2670
+ "default": false
2621
2671
  }
2622
2672
  ]
2623
2673
  },
@@ -2705,6 +2755,39 @@
2705
2755
  "description": "Disables the chip, disallowing user interaction.",
2706
2756
  "type": "boolean",
2707
2757
  "default": false
2758
+ },
2759
+ {
2760
+ "name": "type",
2761
+ "description": "Defines the native button type.\n\n- button\n- reset\n- submit\n\n@default button",
2762
+ "type": "string",
2763
+ "values": [
2764
+ {
2765
+ "name": "button",
2766
+ "description": "(default)"
2767
+ },
2768
+ {
2769
+ "name": "reset"
2770
+ },
2771
+ {
2772
+ "name": "submit"
2773
+ }
2774
+ ],
2775
+ "default": "button"
2776
+ },
2777
+ {
2778
+ "name": "name",
2779
+ "description": "The name of the chip for form submission.",
2780
+ "type": "string"
2781
+ },
2782
+ {
2783
+ "name": "value",
2784
+ "description": "The value of the chip for form submission.",
2785
+ "type": "string"
2786
+ },
2787
+ {
2788
+ "name": "form",
2789
+ "description": "Associates the chip with a form element by ID.",
2790
+ "type": "string"
2708
2791
  }
2709
2792
  ]
2710
2793
  },
@@ -2921,6 +3004,7 @@
2921
3004
  },
2922
3005
  {
2923
3006
  "name": "rarui-dropdown-item",
3007
+ "description": "## Rarui Dropdown Item\n---\nAn suspended menu displays a list of options on a temporary surface.\n\nSee [a complete document](https://rarui.rarolabs.com.br/docs/components-web-components/surface/dropdown) for more details.",
2924
3008
  "attributes": [
2925
3009
  {
2926
3010
  "name": "name",
@@ -2932,11 +3016,47 @@
2932
3016
  "description": "Indicates if the item is selected.\nThis affects the visual style, such as highlight or marking.",
2933
3017
  "type": "boolean",
2934
3018
  "default": false
3019
+ },
3020
+ {
3021
+ "name": "disabled",
3022
+ "description": "Disables the dropdown item, disallowing user interaction.",
3023
+ "type": "boolean",
3024
+ "default": false
3025
+ },
3026
+ {
3027
+ "name": "value",
3028
+ "description": "The value associated with this dropdown item for form submission or identification.",
3029
+ "type": "string"
3030
+ },
3031
+ {
3032
+ "name": "type",
3033
+ "description": "Defines the native button type.\n\n- button\n- reset\n- submit\n\n@default button",
3034
+ "type": "string",
3035
+ "values": [
3036
+ {
3037
+ "name": "button",
3038
+ "description": "(default)"
3039
+ },
3040
+ {
3041
+ "name": "reset"
3042
+ },
3043
+ {
3044
+ "name": "submit"
3045
+ }
3046
+ ],
3047
+ "default": "button"
3048
+ },
3049
+ {
3050
+ "name": "role",
3051
+ "description": "ARIA role for the dropdown item.\n\n@default menuitem",
3052
+ "type": "string",
3053
+ "default": "menuitem"
2935
3054
  }
2936
3055
  ]
2937
3056
  },
2938
3057
  {
2939
3058
  "name": "rarui-icon-button",
3059
+ "description": "## Rarui Icon Button\n---\nButton allows the user to perform actions, such as sending a file, advancing a form, sharing a document, or making a comment.\n\nSee [a complete document](https://rarui.rarolabs.com.br/docs/components-web-components/input/button) for more details.",
2940
3060
  "attributes": [
2941
3061
  {
2942
3062
  "name": "disabled",
@@ -3013,6 +3133,39 @@
3013
3133
  "description": "Defines if the button should have rounded edges.\n\n- `true`: The button will be rendered with completely rounded edges, useful for circular -shaped icons.\n- `false` (default): The button will have standard edges or defined by the component style.",
3014
3134
  "type": "boolean",
3015
3135
  "default": false
3136
+ },
3137
+ {
3138
+ "name": "type",
3139
+ "description": "Defines the native button type.\n\n- button\n- reset\n- submit\n\n@default button",
3140
+ "type": "string",
3141
+ "values": [
3142
+ {
3143
+ "name": "button",
3144
+ "description": "(default)"
3145
+ },
3146
+ {
3147
+ "name": "reset"
3148
+ },
3149
+ {
3150
+ "name": "submit"
3151
+ }
3152
+ ],
3153
+ "default": "button"
3154
+ },
3155
+ {
3156
+ "name": "name",
3157
+ "description": "The name of the button for form submission.",
3158
+ "type": "string"
3159
+ },
3160
+ {
3161
+ "name": "value",
3162
+ "description": "The value of the button for form submission.",
3163
+ "type": "string"
3164
+ },
3165
+ {
3166
+ "name": "form",
3167
+ "description": "Associates the button with a form element by ID.",
3168
+ "type": "string"
3016
3169
  }
3017
3170
  ]
3018
3171
  },
@@ -3078,6 +3231,100 @@
3078
3231
  "description": "Whether the input is disabled.",
3079
3232
  "type": "boolean",
3080
3233
  "default": false
3234
+ },
3235
+ {
3236
+ "name": "type",
3237
+ "description": "The type of input element.\n\n- color\n- date\n- datetime-local\n- email\n- file\n- hidden\n- month\n- number\n- password\n- range\n- search\n- tel\n- text\n- time\n- url\n- week\n\n@default text",
3238
+ "type": "string",
3239
+ "values": [
3240
+ {
3241
+ "name": "color"
3242
+ },
3243
+ {
3244
+ "name": "date"
3245
+ },
3246
+ {
3247
+ "name": "datetime-local"
3248
+ },
3249
+ {
3250
+ "name": "email"
3251
+ },
3252
+ {
3253
+ "name": "file"
3254
+ },
3255
+ {
3256
+ "name": "hidden"
3257
+ },
3258
+ {
3259
+ "name": "month"
3260
+ },
3261
+ {
3262
+ "name": "number"
3263
+ },
3264
+ {
3265
+ "name": "password"
3266
+ },
3267
+ {
3268
+ "name": "range"
3269
+ },
3270
+ {
3271
+ "name": "search"
3272
+ },
3273
+ {
3274
+ "name": "tel"
3275
+ },
3276
+ {
3277
+ "name": "text",
3278
+ "description": "(default)"
3279
+ },
3280
+ {
3281
+ "name": "time"
3282
+ },
3283
+ {
3284
+ "name": "url"
3285
+ },
3286
+ {
3287
+ "name": "week"
3288
+ }
3289
+ ],
3290
+ "default": "text"
3291
+ },
3292
+ {
3293
+ "name": "name",
3294
+ "description": "The name of the input for form submission.",
3295
+ "type": "string"
3296
+ },
3297
+ {
3298
+ "name": "form",
3299
+ "description": "Associates the input with a form element by ID.",
3300
+ "type": "string"
3301
+ },
3302
+ {
3303
+ "name": "required",
3304
+ "description": "Whether the input is required.",
3305
+ "type": "boolean",
3306
+ "default": false
3307
+ },
3308
+ {
3309
+ "name": "readonly",
3310
+ "description": "Whether the input is readonly.",
3311
+ "type": "boolean",
3312
+ "default": false
3313
+ },
3314
+ {
3315
+ "name": "minlength",
3316
+ "description": "Minimum length of the input value.",
3317
+ "type": "number"
3318
+ },
3319
+ {
3320
+ "name": "maxlength",
3321
+ "description": "Maximum length of the input value.",
3322
+ "type": "number"
3323
+ },
3324
+ {
3325
+ "name": "pattern",
3326
+ "description": "Regular expression pattern for input validation.",
3327
+ "type": "string"
3081
3328
  }
3082
3329
  ]
3083
3330
  },
@@ -3094,6 +3341,48 @@
3094
3341
  "description": "Placeholder text for the password input element.",
3095
3342
  "type": "string"
3096
3343
  },
3344
+ {
3345
+ "name": "name",
3346
+ "description": "The name of the input for form submission.",
3347
+ "type": "string"
3348
+ },
3349
+ {
3350
+ "name": "form",
3351
+ "description": "Associates the input with a form element by ID.",
3352
+ "type": "string"
3353
+ },
3354
+ {
3355
+ "name": "required",
3356
+ "description": "Whether the input is required.",
3357
+ "type": "boolean",
3358
+ "default": false
3359
+ },
3360
+ {
3361
+ "name": "readonly",
3362
+ "description": "Whether the input is readonly.",
3363
+ "type": "boolean",
3364
+ "default": false
3365
+ },
3366
+ {
3367
+ "name": "autocomplete",
3368
+ "description": "Autocomplete hint for the password input.",
3369
+ "type": "string"
3370
+ },
3371
+ {
3372
+ "name": "minlength",
3373
+ "description": "Minimum length of the password value.",
3374
+ "type": "number"
3375
+ },
3376
+ {
3377
+ "name": "maxlength",
3378
+ "description": "Maximum length of the password value.",
3379
+ "type": "number"
3380
+ },
3381
+ {
3382
+ "name": "pattern",
3383
+ "description": "Regular expression pattern for password validation.",
3384
+ "type": "string"
3385
+ },
3097
3386
  {
3098
3387
  "name": "disabled",
3099
3388
  "description": "Whether the input is disabled.",
@@ -3158,6 +3447,48 @@
3158
3447
  "description": "Placeholder text for the search input element.",
3159
3448
  "type": "string"
3160
3449
  },
3450
+ {
3451
+ "name": "name",
3452
+ "description": "The name of the input for form submission.",
3453
+ "type": "string"
3454
+ },
3455
+ {
3456
+ "name": "form",
3457
+ "description": "Associates the input with a form element by ID.",
3458
+ "type": "string"
3459
+ },
3460
+ {
3461
+ "name": "required",
3462
+ "description": "Whether the input is required.",
3463
+ "type": "boolean",
3464
+ "default": false
3465
+ },
3466
+ {
3467
+ "name": "readonly",
3468
+ "description": "Whether the input is readonly.",
3469
+ "type": "boolean",
3470
+ "default": false
3471
+ },
3472
+ {
3473
+ "name": "autocomplete",
3474
+ "description": "Autocomplete hint for the search input.",
3475
+ "type": "string"
3476
+ },
3477
+ {
3478
+ "name": "minlength",
3479
+ "description": "Minimum length of the search value.",
3480
+ "type": "number"
3481
+ },
3482
+ {
3483
+ "name": "maxlength",
3484
+ "description": "Maximum length of the search value.",
3485
+ "type": "number"
3486
+ },
3487
+ {
3488
+ "name": "pattern",
3489
+ "description": "Regular expression pattern for search validation.",
3490
+ "type": "string"
3491
+ },
3161
3492
  {
3162
3493
  "name": "disabled",
3163
3494
  "description": "Whether the input is disabled.",
@@ -3251,6 +3582,28 @@
3251
3582
  "description": "Disables the radio button, disallowing user interaction.",
3252
3583
  "type": "boolean",
3253
3584
  "default": false
3585
+ },
3586
+ {
3587
+ "name": "value",
3588
+ "description": "The value of the radio button for form submission.",
3589
+ "type": "string"
3590
+ },
3591
+ {
3592
+ "name": "form",
3593
+ "description": "Associates the radio button with a form element by ID.",
3594
+ "type": "string"
3595
+ },
3596
+ {
3597
+ "name": "required",
3598
+ "description": "Whether the radio button is required.",
3599
+ "type": "boolean",
3600
+ "default": false
3601
+ },
3602
+ {
3603
+ "name": "readonly",
3604
+ "description": "Whether the radio button is readonly.",
3605
+ "type": "boolean",
3606
+ "default": false
3254
3607
  }
3255
3608
  ]
3256
3609
  },
@@ -3446,12 +3799,28 @@
3446
3799
  }
3447
3800
  ],
3448
3801
  "default": "fixed"
3802
+ },
3803
+ {
3804
+ "name": "name",
3805
+ "description": "The name of the select for form submission.",
3806
+ "type": "string"
3807
+ },
3808
+ {
3809
+ "name": "form",
3810
+ "description": "Associates the select with a form element by ID.",
3811
+ "type": "string"
3812
+ },
3813
+ {
3814
+ "name": "required",
3815
+ "description": "Whether the select is required for form validation.",
3816
+ "type": "boolean",
3817
+ "default": false
3449
3818
  }
3450
3819
  ]
3451
3820
  },
3452
3821
  {
3453
3822
  "name": "rarui-textarea",
3454
- "description": "## Rarui Radio Button\n---\nExpanded text area for long text entries. Allows you to enter large blocks of text, such as comments or detailed descriptions.\n\nSee [a complete document](https://rarui.rarolabs.com.br/docs/components-web-components/input/textarea) for more details.",
3823
+ "description": "## Rarui Textarea\n---\nExpanded text area for long text entries. Allows you to enter large blocks of text, such as comments or detailed descriptions.\n\nSee [a complete document](https://rarui.rarolabs.com.br/docs/components-web-components/input/textarea) for more details.",
3455
3824
  "attributes": [
3456
3825
  {
3457
3826
  "name": "lines",
@@ -3477,6 +3846,43 @@
3477
3846
  "description": "Disables the Textarea, disallowing user interaction.",
3478
3847
  "type": "boolean",
3479
3848
  "default": false
3849
+ },
3850
+ {
3851
+ "name": "name",
3852
+ "description": "The name of the textarea for form submission.",
3853
+ "type": "string"
3854
+ },
3855
+ {
3856
+ "name": "form",
3857
+ "description": "Associates the textarea with a form element by ID.",
3858
+ "type": "string"
3859
+ },
3860
+ {
3861
+ "name": "required",
3862
+ "description": "Whether the textarea is required for form validation.",
3863
+ "type": "boolean",
3864
+ "default": false
3865
+ },
3866
+ {
3867
+ "name": "readonly",
3868
+ "description": "Whether the textarea is readonly.",
3869
+ "type": "boolean",
3870
+ "default": false
3871
+ },
3872
+ {
3873
+ "name": "placeholder",
3874
+ "description": "Placeholder text to display when the textarea is empty.",
3875
+ "type": "string"
3876
+ },
3877
+ {
3878
+ "name": "minlength",
3879
+ "description": "Minimum number of characters required.",
3880
+ "type": "number"
3881
+ },
3882
+ {
3883
+ "name": "maxlength",
3884
+ "description": "Maximum number of characters allowed.",
3885
+ "type": "number"
3480
3886
  }
3481
3887
  ]
3482
3888
  },
@@ -3530,6 +3936,22 @@
3530
3936
  "name": "id",
3531
3937
  "description": "Single ID associated with Toggle Input.If not provided,\nThe name will be used as Fallback to `id`.",
3532
3938
  "type": "string"
3939
+ },
3940
+ {
3941
+ "name": "value",
3942
+ "description": "The value of the toggle for form submission.",
3943
+ "type": "string"
3944
+ },
3945
+ {
3946
+ "name": "form",
3947
+ "description": "Associates the toggle with a form element by ID.",
3948
+ "type": "string"
3949
+ },
3950
+ {
3951
+ "name": "required",
3952
+ "description": "Whether the toggle is required for form validation.",
3953
+ "type": "boolean",
3954
+ "default": false
3533
3955
  }
3534
3956
  ]
3535
3957
  },
@@ -7952,6 +8374,47 @@
7952
8374
  "name": "href",
7953
8375
  "description": "Defines the destination URL of the link.\n\n** IMPORTANT: ** should only be used when `as=\"a\"`.",
7954
8376
  "type": "string"
8377
+ },
8378
+ {
8379
+ "name": "target",
8380
+ "description": "Defines the target attribute for links.\n\n- _blank\n- _parent\n- _self\n- _top\n\n@default \"_blank\" for external links, undefined for internal",
8381
+ "type": "string",
8382
+ "values": [
8383
+ {
8384
+ "name": "_blank"
8385
+ },
8386
+ {
8387
+ "name": "_parent"
8388
+ },
8389
+ {
8390
+ "name": "_self"
8391
+ },
8392
+ {
8393
+ "name": "_top"
8394
+ }
8395
+ ],
8396
+ "default": "\"_blank\" for external links, undefined for internal"
8397
+ },
8398
+ {
8399
+ "name": "rel",
8400
+ "description": "Defines the rel attribute for links.\n\n@default \"noopener noreferrer\" for external links with target=\"_blank\"",
8401
+ "type": "string",
8402
+ "default": "\"noopener noreferrer\" for external links with target=\"_blank\""
8403
+ },
8404
+ {
8405
+ "name": "name",
8406
+ "description": "The name of the button for form submission.\n** IMPORTANT: ** should only be used when `as=\"button\"`.",
8407
+ "type": "string"
8408
+ },
8409
+ {
8410
+ "name": "value",
8411
+ "description": "The value of the button for form submission.\n** IMPORTANT: ** should only be used when `as=\"button\"`.",
8412
+ "type": "string"
8413
+ },
8414
+ {
8415
+ "name": "form",
8416
+ "description": "Associates the button with a form element by ID.\n** IMPORTANT: ** should only be used when `as=\"button\"`.",
8417
+ "type": "string"
7955
8418
  }
7956
8419
  ]
7957
8420
  },