@rarui/components 1.24.2-rc.6 → 1.26.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 +43 -1
- package/custom-elements.json +14 -213
- package/dist/index.d.ts +207 -0
- package/dist/index.js +541 -554
- package/package.json +4 -4
- package/src/exhibition/Avatar/CHANGELOG.md +0 -32
- package/src/exhibition/Badge/CHANGELOG.md +0 -32
- package/src/exhibition/Divider/CHANGELOG.md +0 -26
- package/src/exhibition/Icon/CHANGELOG.md +0 -32
- package/src/exhibition/Label/CHANGELOG.md +0 -38
- package/src/exhibition/Stepper/CHANGELOG.md +0 -31
- package/src/exhibition/Text/CHANGELOG.md +0 -39
- package/src/exhibition/Title/CHANGELOG.md +0 -39
- package/src/exhibition/Tooltip/CHANGELOG.md +0 -26
- package/src/feedback/Progress/CHANGELOG.md +0 -28
- package/src/feedback/Skeleton/CHANGELOG.md +0 -26
- package/src/feedback/Status/CHANGELOG.md +0 -26
- package/src/input/Button/CHANGELOG.md +0 -59
- package/src/input/Checkbox/CHANGELOG.md +0 -45
- package/src/input/Chip/CHANGELOG.md +0 -43
- package/src/input/Dropdown/CHANGELOG.md +0 -41
- package/src/input/IconButton/CHANGELOG.md +0 -28
- package/src/input/Input/CHANGELOG.md +0 -46
- package/src/input/RadioButton/CHANGELOG.md +0 -28
- package/src/input/Select/CHANGELOG.md +0 -43
- package/src/input/Textarea/CHANGELOG.md +0 -38
- package/src/input/Toggle/CHANGELOG.md +0 -28
- package/src/layout/Box/CHANGELOG.md +0 -50
- package/src/layout/Sidebar/CHANGELOG.md +0 -28
- package/src/navigation/Breadcrumb/CHANGELOG.md +0 -26
- package/src/navigation/Link/CHANGELOG.md +0 -28
- package/src/navigation/Pagination/CHANGELOG.md +0 -28
- package/src/navigation/SideNavigation/CHANGELOG.md +0 -33
- package/src/navigation/Tabs/CHANGELOG.md +0 -40
- package/src/stylization/ThemeProvider/CHANGELOG.md +0 -32
- package/src/surface/Accordion/CHANGELOG.md +0 -28
- package/src/surface/Banner/CHANGELOG.md +0 -26
- package/src/surface/Card/CHANGELOG.md +0 -29
- package/src/surface/Modal/CHANGELOG.md +0 -30
- package/src/types/CHANGELOG.md +0 -22
package/CHANGELOG.md
CHANGED
|
@@ -2,7 +2,49 @@
|
|
|
2
2
|
|
|
3
3
|
`@rarui/components` components is a component library built with [Lit](https://lit.dev/).
|
|
4
4
|
|
|
5
|
-
## 2025-09-
|
|
5
|
+
## 2025-09-25 `1.26.0`
|
|
6
|
+
|
|
7
|
+
#### 🛠 Breaking changes
|
|
8
|
+
|
|
9
|
+
- **Select Component Architecture Refactor**: Completely redesigned Select component to use slot-based sub-components (`rarui-select-option`, `rarui-select-optgroup`) instead of `options` property for better semantic HTML, improved accessibility, and enhanced developer experience. Migration required from `.options` arrays to slot-based markup. ([#138](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/138) by [@junior](https://git.rarolabs.com.br/junior))
|
|
10
|
+
|
|
11
|
+
#### 🎉 New features
|
|
12
|
+
|
|
13
|
+
- **Select Sub-Components**: Introduced `rarui-select-option` and `rarui-select-optgroup` components enabling semantic HTML structure with native option selection, default values via `selected` attribute, and improved screen reader compatibility. ([#138](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/138) by [@junior](https://git.rarolabs.com.br/junior))
|
|
14
|
+
- **Context Provider System**: Implemented advanced Context Provider pattern in Select using `@lit/context` for seamless parent-child communication, state synchronization, and coordinated updates between Select and SelectOption components. ([#138](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/138) by [@junior](https://git.rarolabs.com.br/junior))
|
|
15
|
+
- **MutationObserver Integration**: Added intelligent DOM change detection with MutationObserver to automatically sync Select state when SelectOption children are added, removed, or modified, ensuring consistent UI state. ([#138](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/138) by [@junior](https://git.rarolabs.com.br/junior))
|
|
16
|
+
- **Enhanced Checkbox Integration**: Improved multiple selection with properly controlled checkbox states using readonly checkboxes as visual indicators while maintaining click interaction through parent dropdown items. ([#138](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/138) by [@junior](https://git.rarolabs.com.br/junior))
|
|
17
|
+
- **Manual Dropdown Dismiss Control**: Implemented custom click-outside and ESC key handling with complete `menuOpen` state control, replacing automatic dropdown dismiss for better programmatic control and consistent behavior. ([#138](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/138) by [@junior](https://git.rarolabs.com.br/junior))
|
|
18
|
+
|
|
19
|
+
#### 🐛 Bug fixes
|
|
20
|
+
|
|
21
|
+
- **Multiple Select FormData Fix**: Corrected FormData handling for multiple selections to create proper multiple entries with same name instead of comma-separated strings, ensuring native form submission compatibility. ([#138](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/138) by [@junior](https://git.rarolabs.com.br/junior))
|
|
22
|
+
- **Checkbox Boolean Binding**: Standardized Checkbox component property bindings using proper Lit conventions (`?checked=${value}` vs `checked="${value}"`) for consistent boolean attribute handling and resolved diagnostic warnings. ([#138](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/138) by [@junior](https://git.rarolabs.com.br/junior))
|
|
23
|
+
- **Selection State Synchronization**: Fixed selection state inconsistencies by establishing Context as single source of truth, eliminating conflicts between local component state and parent coordination. ([#138](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/138) by [@junior](https://git.rarolabs.com.br/junior))
|
|
24
|
+
- **Form Value Updates**: Enhanced form integration by ensuring `_updateFormValue()` is called in all selection change scenarios (`handleSelect`, `handleRemoveOption`, chip removal) for consistent FormData synchronization. ([#138](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/138) by [@junior](https://git.rarolabs.com.br/junior))
|
|
25
|
+
|
|
26
|
+
#### 💡 Others
|
|
27
|
+
|
|
28
|
+
- **Code Organization Improvements**: Refactored Select component render method by dividing large `render()` function into focused sub-methods (`_renderTrigger`, `_renderPlaceholder`, `_renderSelectedOptions`, `_renderControls`, `_renderContent`) for improved maintainability. ([#138](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/138) by [@junior](https://git.rarolabs.com.br/junior))
|
|
29
|
+
|
|
30
|
+
## 2025-09-23 `1.25.0`
|
|
31
|
+
|
|
32
|
+
#### 🎉 New features
|
|
33
|
+
|
|
34
|
+
- Implemented comprehensive accessibility improvements across ALL web components following WCAG guidelines and modern web standards with complete ARIA properties, focus management, and screen reader compatibility. ([#137](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/137) by [@junior](https://git.rarolabs.com.br/junior))
|
|
35
|
+
- Enhanced all interactive components (Button, Input, Checkbox, RadioButton, Toggle, IconButton, Chip, Dropdown, Select, Link, SideNavigation Item, Breadcrumb Item, Accordion Header, Modal, Sidebar, Tabs) with `delegatesFocus: true` for seamless keyboard navigation and focus management. ([#137](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/137) by [@junior](https://git.rarolabs.com.br/junior))
|
|
36
|
+
- Added standardized ARIA properties (`aria-label`, `aria-labelledby`, `aria-describedby`) with `reflect: true` to ALL components (60+ components) ensuring proper screen reader support and accessibility compliance. ([#137](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/137) by [@junior](https://git.rarolabs.com.br/junior))
|
|
37
|
+
- Eliminated ARIA attribute duplication between host elements and shadow DOM following Lit accessibility best practices for optimal screen reader compatibility. ([#137](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/137) by [@junior](https://git.rarolabs.com.br/junior))
|
|
38
|
+
- Created comprehensive accessibility implementation guide (`accessibility-guide-lit.md`) with detailed patterns, examples, validation checklists, and testing guidelines for all web component types. ([#137](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/137) by [@junior](https://git.rarolabs.com.br/junior))
|
|
39
|
+
- Enhanced RadioButton component with native HTML group behavior ensuring only one radio button per `name` can be selected using event-driven communication pattern. ([#137](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/137) by [@junior](https://git.rarolabs.com.br/junior))
|
|
40
|
+
- Updated CLAUDE.md development documentation with comprehensive accessibility implementation standards and quick reference patterns for maintaining consistent accessibility across future components. ([#137](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/137) by [@junior](https://git.rarolabs.com.br/junior))
|
|
41
|
+
|
|
42
|
+
#### 💡 Others
|
|
43
|
+
|
|
44
|
+
- Fixed missing `ifDefined` imports across multiple components that were accidentally removed during cleanup process, ensuring proper template directive functionality. ([#137](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/137) by [@junior](https://git.rarolabs.com.br/junior))
|
|
45
|
+
- Improved component type compatibility by standardizing ARIA property types to `string | null` matching LitElement base class requirements. ([#137](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/137) by [@junior](https://git.rarolabs.com.br/junior))
|
|
46
|
+
|
|
47
|
+
## 2025-09-18 `1.24.1`
|
|
6
48
|
|
|
7
49
|
#### 🎉 New features
|
|
8
50
|
|
package/custom-elements.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "1.
|
|
2
|
+
"version": "1.25.0",
|
|
3
3
|
"tags": [
|
|
4
4
|
{
|
|
5
5
|
"name": "rarui-avatar",
|
|
@@ -1361,6 +1361,12 @@
|
|
|
1361
1361
|
"name": "for",
|
|
1362
1362
|
"description": "The for attribute specifies which form element a label is bound to.",
|
|
1363
1363
|
"type": "string"
|
|
1364
|
+
},
|
|
1365
|
+
{
|
|
1366
|
+
"name": "hidden",
|
|
1367
|
+
"description": "Specifies whether the label is hidden or not",
|
|
1368
|
+
"type": "boolean",
|
|
1369
|
+
"default": false
|
|
1364
1370
|
}
|
|
1365
1371
|
]
|
|
1366
1372
|
},
|
|
@@ -3622,217 +3628,6 @@
|
|
|
3622
3628
|
}
|
|
3623
3629
|
]
|
|
3624
3630
|
},
|
|
3625
|
-
{
|
|
3626
|
-
"name": "rarui-select",
|
|
3627
|
-
"description": "## Rarui Select\n---\nSelect component for choosing options from a dropdown menu with support for single and multiple selection.\n\nFeatures:\n- **Single Selection**: Choose one option from the list\n- **Multiple Selection**: Choose multiple options with checkboxes\n- **Custom Content**: Support for slot-based custom content and filtering\n- **Accessibility**: Full keyboard navigation with ESC key support\n- **Controlled Behavior**: Uses internal web components (Dropdown, Checkbox, Text, Box, Chip, Icon)\n\nSee [a complete document](https://rarui.rarolabs.com.br/docs/components-web-components/input/select) for more details.",
|
|
3628
|
-
"attributes": [
|
|
3629
|
-
{
|
|
3630
|
-
"name": "open",
|
|
3631
|
-
"description": "If true, the Select component is shown.",
|
|
3632
|
-
"type": "boolean"
|
|
3633
|
-
},
|
|
3634
|
-
{
|
|
3635
|
-
"name": "disabled",
|
|
3636
|
-
"description": "Disables the select component, disallowing user interaction.",
|
|
3637
|
-
"type": "boolean",
|
|
3638
|
-
"default": false
|
|
3639
|
-
},
|
|
3640
|
-
{
|
|
3641
|
-
"name": "multiple",
|
|
3642
|
-
"description": "Enables multiple selection mode.",
|
|
3643
|
-
"type": "boolean",
|
|
3644
|
-
"default": false
|
|
3645
|
-
},
|
|
3646
|
-
{
|
|
3647
|
-
"name": "size",
|
|
3648
|
-
"description": "Specifies the size of the badge, controlling its dimensions.\n\n- large\n- medium\n- small",
|
|
3649
|
-
"type": "string",
|
|
3650
|
-
"values": [
|
|
3651
|
-
{
|
|
3652
|
-
"name": "large"
|
|
3653
|
-
},
|
|
3654
|
-
{
|
|
3655
|
-
"name": "medium"
|
|
3656
|
-
},
|
|
3657
|
-
{
|
|
3658
|
-
"name": "small"
|
|
3659
|
-
}
|
|
3660
|
-
]
|
|
3661
|
-
},
|
|
3662
|
-
{
|
|
3663
|
-
"name": "appearance",
|
|
3664
|
-
"description": "Determines the visual style of the input, affecting its border\n\n- error\n- success",
|
|
3665
|
-
"type": "string",
|
|
3666
|
-
"values": [
|
|
3667
|
-
{
|
|
3668
|
-
"name": "error"
|
|
3669
|
-
},
|
|
3670
|
-
{
|
|
3671
|
-
"name": "success"
|
|
3672
|
-
}
|
|
3673
|
-
]
|
|
3674
|
-
},
|
|
3675
|
-
{
|
|
3676
|
-
"name": "max-height",
|
|
3677
|
-
"description": "The **`max-height`** CSS property sets the maximum height of an element. It prevents the used value of the `height` property from becoming larger than the value specified for `max-height`. It is also possible to pass a specific value.\n\n\n**Initial value**: `none`\n\nThis property supports responsive values. You can pass a single value like `\"fit-content\"`.\n\n Or an object like:\n \n ```\n{\n \"xs\": \"fit-content\",\n \"md\": \"intrinsic\",\n \"lg\": \"max-content\",\n \"xl\": \"min-content\"\n}\n```\n\n- fit-content\n- intrinsic\n- max-content\n- min-content\n- none\n- stretch",
|
|
3678
|
-
"values": [
|
|
3679
|
-
{
|
|
3680
|
-
"name": "fit-content"
|
|
3681
|
-
},
|
|
3682
|
-
{
|
|
3683
|
-
"name": "intrinsic"
|
|
3684
|
-
},
|
|
3685
|
-
{
|
|
3686
|
-
"name": "max-content"
|
|
3687
|
-
},
|
|
3688
|
-
{
|
|
3689
|
-
"name": "min-content"
|
|
3690
|
-
},
|
|
3691
|
-
{
|
|
3692
|
-
"name": "none"
|
|
3693
|
-
},
|
|
3694
|
-
{
|
|
3695
|
-
"name": "stretch"
|
|
3696
|
-
}
|
|
3697
|
-
]
|
|
3698
|
-
},
|
|
3699
|
-
{
|
|
3700
|
-
"name": "z-index",
|
|
3701
|
-
"description": "The zIndex property specifies the stack order of the box.\n\nThis property supports responsive values. You can pass a single value like `\"$100\"`.\n\n Or an object like:\n \n ```\n{\n \"xs\": \"$100\",\n \"md\": \"$200\",\n \"lg\": \"$300\",\n \"xl\": \"$400\"\n}\n```\n\n- $100\n- $200\n- $300\n- $400\n- $500\n- $600\n- $700\n- $800\n- $900",
|
|
3702
|
-
"values": [
|
|
3703
|
-
{
|
|
3704
|
-
"name": "$100"
|
|
3705
|
-
},
|
|
3706
|
-
{
|
|
3707
|
-
"name": "$200"
|
|
3708
|
-
},
|
|
3709
|
-
{
|
|
3710
|
-
"name": "$300"
|
|
3711
|
-
},
|
|
3712
|
-
{
|
|
3713
|
-
"name": "$400"
|
|
3714
|
-
},
|
|
3715
|
-
{
|
|
3716
|
-
"name": "$500"
|
|
3717
|
-
},
|
|
3718
|
-
{
|
|
3719
|
-
"name": "$600"
|
|
3720
|
-
},
|
|
3721
|
-
{
|
|
3722
|
-
"name": "$700"
|
|
3723
|
-
},
|
|
3724
|
-
{
|
|
3725
|
-
"name": "$800"
|
|
3726
|
-
},
|
|
3727
|
-
{
|
|
3728
|
-
"name": "$900"
|
|
3729
|
-
}
|
|
3730
|
-
]
|
|
3731
|
-
},
|
|
3732
|
-
{
|
|
3733
|
-
"name": "options",
|
|
3734
|
-
"description": "Options for the Select component. This should be an array of SelectOptionProps objects.\n\n(Required)",
|
|
3735
|
-
"type": "array"
|
|
3736
|
-
},
|
|
3737
|
-
{
|
|
3738
|
-
"name": "value",
|
|
3739
|
-
"description": "Default selected values for the Select component.\nThis should be an array of SelectOptionProps objects representing the selected options.",
|
|
3740
|
-
"values": []
|
|
3741
|
-
},
|
|
3742
|
-
{
|
|
3743
|
-
"name": "enabled-flip",
|
|
3744
|
-
"description": "Determines whether the select box should enable flipping the options' dropdown when there is not enough space to display it in its default direction.\nThis can help ensure the dropdown is always visible on the screen.\n\n@default true",
|
|
3745
|
-
"type": "boolean",
|
|
3746
|
-
"default": true
|
|
3747
|
-
},
|
|
3748
|
-
{
|
|
3749
|
-
"name": "placeholder",
|
|
3750
|
-
"description": "Placeholder text displayed when no option is selected.",
|
|
3751
|
-
"type": "string"
|
|
3752
|
-
},
|
|
3753
|
-
{
|
|
3754
|
-
"name": "default-value",
|
|
3755
|
-
"description": "Specifies the default selected value(s) for the select box.\nThis can be a selectOption for single selection or an array of selectOption for multiple selections.",
|
|
3756
|
-
"values": []
|
|
3757
|
-
},
|
|
3758
|
-
{
|
|
3759
|
-
"name": "position",
|
|
3760
|
-
"description": "Position of the dropdown relative to the trigger.\n\n- bottom\n- bottom-end\n- bottom-start\n- left\n- left-end\n- left-start\n- right\n- right-end\n- right-start\n- top\n- top-end\n- top-start\n\n@default bottom-start",
|
|
3761
|
-
"type": "string",
|
|
3762
|
-
"values": [
|
|
3763
|
-
{
|
|
3764
|
-
"name": "bottom"
|
|
3765
|
-
},
|
|
3766
|
-
{
|
|
3767
|
-
"name": "bottom-end"
|
|
3768
|
-
},
|
|
3769
|
-
{
|
|
3770
|
-
"name": "bottom-start",
|
|
3771
|
-
"description": "(default)"
|
|
3772
|
-
},
|
|
3773
|
-
{
|
|
3774
|
-
"name": "left"
|
|
3775
|
-
},
|
|
3776
|
-
{
|
|
3777
|
-
"name": "left-end"
|
|
3778
|
-
},
|
|
3779
|
-
{
|
|
3780
|
-
"name": "left-start"
|
|
3781
|
-
},
|
|
3782
|
-
{
|
|
3783
|
-
"name": "right"
|
|
3784
|
-
},
|
|
3785
|
-
{
|
|
3786
|
-
"name": "right-end"
|
|
3787
|
-
},
|
|
3788
|
-
{
|
|
3789
|
-
"name": "right-start"
|
|
3790
|
-
},
|
|
3791
|
-
{
|
|
3792
|
-
"name": "top"
|
|
3793
|
-
},
|
|
3794
|
-
{
|
|
3795
|
-
"name": "top-end"
|
|
3796
|
-
},
|
|
3797
|
-
{
|
|
3798
|
-
"name": "top-start"
|
|
3799
|
-
}
|
|
3800
|
-
],
|
|
3801
|
-
"default": "bottom-start"
|
|
3802
|
-
},
|
|
3803
|
-
{
|
|
3804
|
-
"name": "strategy",
|
|
3805
|
-
"description": "CSS positioning strategy used for the dropdown.\n\n- `\"fixed\"` (default) positions the dropdown relative to the viewport,\n so it stays in the same place even when the page is scrolled.\n- `\"absolute\"` positions the dropdown relative to the nearest positioned ancestor,\n which can be useful when you want the dropdown to move with page content.\n\nUse `\"fixed\"` for dropdowns that should remain visible on scroll,\nand `\"absolute\"` when dropdowns need to be positioned within scrollable containers.\n\n- absolute\n- fixed\n\n@default fixed",
|
|
3806
|
-
"type": "string",
|
|
3807
|
-
"values": [
|
|
3808
|
-
{
|
|
3809
|
-
"name": "absolute"
|
|
3810
|
-
},
|
|
3811
|
-
{
|
|
3812
|
-
"name": "fixed",
|
|
3813
|
-
"description": "(default)"
|
|
3814
|
-
}
|
|
3815
|
-
],
|
|
3816
|
-
"default": "fixed"
|
|
3817
|
-
},
|
|
3818
|
-
{
|
|
3819
|
-
"name": "name",
|
|
3820
|
-
"description": "The name of the select for form submission.",
|
|
3821
|
-
"type": "string"
|
|
3822
|
-
},
|
|
3823
|
-
{
|
|
3824
|
-
"name": "form",
|
|
3825
|
-
"description": "Associates the select with a form element by ID.",
|
|
3826
|
-
"type": "string"
|
|
3827
|
-
},
|
|
3828
|
-
{
|
|
3829
|
-
"name": "required",
|
|
3830
|
-
"description": "Whether the select is required for form validation.",
|
|
3831
|
-
"type": "boolean",
|
|
3832
|
-
"default": false
|
|
3833
|
-
}
|
|
3834
|
-
]
|
|
3835
|
-
},
|
|
3836
3631
|
{
|
|
3837
3632
|
"name": "rarui-textarea",
|
|
3838
3633
|
"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.",
|
|
@@ -7813,7 +7608,7 @@
|
|
|
7813
7608
|
},
|
|
7814
7609
|
{
|
|
7815
7610
|
"name": "as",
|
|
7816
|
-
"description": "Changes the rendered element.\n\n- a\n- abbr\n- address\n- area\n- article\n- aside\n- audio\n- b\n- base\n- bdi\n- bdo\n- blockquote\n- body\n- br\n- button\n- canvas\n- caption\n- cite\n- code\n- col\n- colgroup\n- data\n- datalist\n- dd\n- del\n- details\n- dfn\n- dialog\n- div\n- dl\n- dt\n- em\n- embed\n- fieldset\n- figcaption\n- figure\n- footer\n- form\n- h1\n- h2\n- h3\n- h4\n- h5\n- h6\n- head\n- header\n- hgroup\n- hr\n- html\n- i\n- iframe\n- img\n- input\n- ins\n- kbd\n- label\n- legend\n- li\n- link\n- main\n- map\n- mark\n- menu\n- meta\n- meter\n- nav\n- noscript\n- object\n- ol\n- optgroup\n- option\n- output\n- p\n- picture\n- pre\n- progress\n- q\n- rarui-accordion\n- rarui-accordion-body\n- rarui-accordion-header\n- rarui-accordion-item\n- rarui-avatar\n- rarui-badge\n- rarui-banner\n- rarui-box\n- rarui-breadcrumb\n- rarui-breadcrumb-item\n- rarui-button\n- rarui-card\n- rarui-card-body\n- rarui-card-header\n- rarui-checkbox\n- rarui-chip\n- rarui-divider\n- rarui-dropdown\n- rarui-dropdown-item\n- rarui-icon\n- rarui-icon-button\n- rarui-input\n- rarui-label\n- rarui-link\n- rarui-modal\n- rarui-modal-footer\n- rarui-modal-header\n- rarui-pagination\n- rarui-progress\n- rarui-progress-circle\n- rarui-radio-button\n- rarui-select\n- rarui-side-navigation\n- rarui-side-navigation-item\n- rarui-sidebar\n- rarui-skeleton\n- rarui-status\n- rarui-stepper\n- rarui-stepper-step\n- rarui-tabs\n- rarui-text\n- rarui-textarea\n- rarui-theme-provider\n- rarui-title\n- rarui-toggle\n- rarui-tooltip\n- rp\n- rt\n- ruby\n- s\n- samp\n- script\n- section\n- select\n- slot\n- small\n- source\n- span\n- strong\n- style\n- sub\n- summary\n- sup\n- table\n- tbody\n- td\n- template\n- textarea\n- tfoot\n- th\n- thead\n- time\n- title\n- tr\n- track\n- u\n- ul\n- var\n- video\n- wbr\n\n@default div",
|
|
7611
|
+
"description": "Changes the rendered element.\n\n- a\n- abbr\n- address\n- area\n- article\n- aside\n- audio\n- b\n- base\n- bdi\n- bdo\n- blockquote\n- body\n- br\n- button\n- canvas\n- caption\n- cite\n- code\n- col\n- colgroup\n- data\n- datalist\n- dd\n- del\n- details\n- dfn\n- dialog\n- div\n- dl\n- dt\n- em\n- embed\n- fieldset\n- figcaption\n- figure\n- footer\n- form\n- h1\n- h2\n- h3\n- h4\n- h5\n- h6\n- head\n- header\n- hgroup\n- hr\n- html\n- i\n- iframe\n- img\n- input\n- ins\n- kbd\n- label\n- legend\n- li\n- link\n- main\n- map\n- mark\n- menu\n- meta\n- meter\n- nav\n- noscript\n- object\n- ol\n- optgroup\n- option\n- output\n- p\n- picture\n- pre\n- progress\n- q\n- rarui-accordion\n- rarui-accordion-body\n- rarui-accordion-header\n- rarui-accordion-item\n- rarui-avatar\n- rarui-badge\n- rarui-banner\n- rarui-box\n- rarui-breadcrumb\n- rarui-breadcrumb-item\n- rarui-button\n- rarui-card\n- rarui-card-body\n- rarui-card-header\n- rarui-checkbox\n- rarui-chip\n- rarui-divider\n- rarui-dropdown\n- rarui-dropdown-item\n- rarui-icon\n- rarui-icon-button\n- rarui-input\n- rarui-label\n- rarui-link\n- rarui-modal\n- rarui-modal-footer\n- rarui-modal-header\n- rarui-pagination\n- rarui-progress\n- rarui-progress-circle\n- rarui-radio-button\n- rarui-select\n- rarui-select-optgroup\n- rarui-select-option\n- rarui-side-navigation\n- rarui-side-navigation-item\n- rarui-sidebar\n- rarui-skeleton\n- rarui-status\n- rarui-stepper\n- rarui-stepper-step\n- rarui-tabs\n- rarui-text\n- rarui-textarea\n- rarui-theme-provider\n- rarui-title\n- rarui-toggle\n- rarui-tooltip\n- rp\n- rt\n- ruby\n- s\n- samp\n- script\n- section\n- select\n- slot\n- small\n- source\n- span\n- strong\n- style\n- sub\n- summary\n- sup\n- table\n- tbody\n- td\n- template\n- textarea\n- tfoot\n- th\n- thead\n- time\n- title\n- tr\n- track\n- u\n- ul\n- var\n- video\n- wbr\n\n@default div",
|
|
7817
7612
|
"type": "string",
|
|
7818
7613
|
"values": [
|
|
7819
7614
|
{
|
|
@@ -8144,6 +7939,12 @@
|
|
|
8144
7939
|
{
|
|
8145
7940
|
"name": "rarui-select"
|
|
8146
7941
|
},
|
|
7942
|
+
{
|
|
7943
|
+
"name": "rarui-select-optgroup"
|
|
7944
|
+
},
|
|
7945
|
+
{
|
|
7946
|
+
"name": "rarui-select-option"
|
|
7947
|
+
},
|
|
8147
7948
|
{
|
|
8148
7949
|
"name": "rarui-side-navigation"
|
|
8149
7950
|
},
|