@rarui/components 1.24.1 → 1.24.2-rc.1
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/custom-elements.json +194 -59
- package/dist/index.d.ts +40 -35
- package/dist/index.js +41 -37
- package/package.json +5 -5
- package/src/exhibition/Avatar/CHANGELOG.md +32 -0
- package/src/exhibition/Avatar/README.md +15 -0
- package/src/exhibition/Badge/CHANGELOG.md +32 -0
- package/src/exhibition/Badge/README.md +15 -0
- package/src/exhibition/Divider/CHANGELOG.md +26 -0
- package/src/exhibition/Divider/README.md +15 -0
- package/src/exhibition/Icon/CHANGELOG.md +32 -0
- package/src/exhibition/Icon/README.md +15 -0
- package/src/exhibition/Label/CHANGELOG.md +38 -0
- package/src/exhibition/Label/README.md +15 -0
- package/src/exhibition/Stepper/CHANGELOG.md +31 -0
- package/src/exhibition/Stepper/README.md +15 -0
- package/src/exhibition/Text/CHANGELOG.md +39 -0
- package/src/exhibition/Text/README.md +15 -0
- package/src/exhibition/Title/CHANGELOG.md +39 -0
- package/src/exhibition/Title/README.md +15 -0
- package/src/exhibition/Tooltip/CHANGELOG.md +26 -0
- package/src/exhibition/Tooltip/README.md +15 -0
- package/src/feedback/Progress/CHANGELOG.md +28 -0
- package/src/feedback/Progress/README.md +15 -0
- package/src/feedback/Skeleton/CHANGELOG.md +26 -0
- package/src/feedback/Skeleton/README.md +15 -0
- package/src/feedback/Status/CHANGELOG.md +26 -0
- package/src/feedback/Status/README.md +15 -0
- package/src/input/Button/CHANGELOG.md +59 -0
- package/src/input/Button/README.md +15 -0
- package/src/input/Checkbox/CHANGELOG.md +45 -0
- package/src/input/Checkbox/README.md +15 -0
- package/src/input/Chip/CHANGELOG.md +43 -0
- package/src/input/Chip/README.md +15 -0
- package/src/input/Dropdown/CHANGELOG.md +41 -0
- package/src/input/Dropdown/README.md +15 -0
- package/src/input/IconButton/CHANGELOG.md +28 -0
- package/src/input/IconButton/README.md +15 -0
- package/src/input/Input/CHANGELOG.md +46 -0
- package/src/input/Input/README.md +44 -0
- package/src/input/RadioButton/CHANGELOG.md +28 -0
- package/src/input/RadioButton/README.md +15 -0
- package/src/input/Select/CHANGELOG.md +43 -0
- package/src/input/Select/README.md +13 -0
- package/src/input/Textarea/CHANGELOG.md +38 -0
- package/src/input/Textarea/README.md +15 -0
- package/src/input/Toggle/CHANGELOG.md +28 -0
- package/src/input/Toggle/README.md +15 -0
- package/src/layout/Box/CHANGELOG.md +50 -0
- package/src/layout/Box/README.md +15 -0
- package/src/layout/Sidebar/CHANGELOG.md +28 -0
- package/src/layout/Sidebar/README.md +109 -0
- package/src/navigation/Breadcrumb/CHANGELOG.md +26 -0
- package/src/navigation/Breadcrumb/README.md +56 -0
- package/src/navigation/Link/CHANGELOG.md +28 -0
- package/src/navigation/Link/README.md +15 -0
- package/src/navigation/Pagination/CHANGELOG.md +28 -0
- package/src/navigation/Pagination/README.md +15 -0
- package/src/navigation/SideNavigation/CHANGELOG.md +33 -0
- package/src/navigation/SideNavigation/README.md +87 -0
- package/src/navigation/Tabs/CHANGELOG.md +40 -0
- package/src/navigation/Tabs/README.md +9 -0
- package/src/stylization/ThemeProvider/CHANGELOG.md +32 -0
- package/src/stylization/ThemeProvider/README.md +56 -0
- package/src/surface/Accordion/CHANGELOG.md +28 -0
- package/src/surface/Accordion/README.md +93 -0
- package/src/surface/Banner/CHANGELOG.md +26 -0
- package/src/surface/Banner/README.md +15 -0
- package/src/surface/Card/CHANGELOG.md +29 -0
- package/src/surface/Card/README.md +15 -0
- package/src/surface/Modal/CHANGELOG.md +30 -0
- package/src/surface/Modal/README.md +15 -0
package/custom-elements.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "1.24.
|
|
2
|
+
"version": "1.24.2-rc.1",
|
|
3
3
|
"tags": [
|
|
4
4
|
{
|
|
5
5
|
"name": "rarui-avatar",
|
|
@@ -1355,17 +1355,12 @@
|
|
|
1355
1355
|
},
|
|
1356
1356
|
{
|
|
1357
1357
|
"name": "rarui-label",
|
|
1358
|
+
"description": "## Rarui Label\n---\nThe label component allows us to name elements within a form.\n\nSee [a complete document](https://rarui.rarolabs.com.br/docs/components-web-components/exhibition/label) for more details.",
|
|
1358
1359
|
"attributes": [
|
|
1359
1360
|
{
|
|
1360
|
-
"name": "
|
|
1361
|
+
"name": "for",
|
|
1361
1362
|
"description": "The for attribute specifies which form element a label is bound to.",
|
|
1362
1363
|
"type": "string"
|
|
1363
|
-
},
|
|
1364
|
-
{
|
|
1365
|
-
"name": "hidden",
|
|
1366
|
-
"description": "Specifies whether the label is hidden or not",
|
|
1367
|
-
"type": "boolean",
|
|
1368
|
-
"default": false
|
|
1369
1364
|
}
|
|
1370
1365
|
]
|
|
1371
1366
|
},
|
|
@@ -2603,28 +2598,6 @@
|
|
|
2603
2598
|
"name": "rarui-checkbox",
|
|
2604
2599
|
"description": "## Rarui Checkbox\n---\nThe Checkbox allows users to select one or more items from a set and can be used to enable or disable an option.\n\nFeatures hybrid behavior:\n- **Controlled mode**: When `checked` prop is provided, works like React controlled component\n- **Native mode**: When `checked` prop is not provided, works like native HTML checkbox\n\nSee [a complete document](https://rarui.rarolabs.com.br/docs/components-web-components/input/checkbox) for more details.",
|
|
2605
2600
|
"attributes": [
|
|
2606
|
-
{
|
|
2607
|
-
"name": "label",
|
|
2608
|
-
"description": "The label of the checkbox.",
|
|
2609
|
-
"type": "string"
|
|
2610
|
-
},
|
|
2611
|
-
{
|
|
2612
|
-
"name": "id",
|
|
2613
|
-
"description": "The id of the checkbox.\n\n(Required)",
|
|
2614
|
-
"type": "string"
|
|
2615
|
-
},
|
|
2616
|
-
{
|
|
2617
|
-
"name": "checked",
|
|
2618
|
-
"description": "Controls the checked state of the checkbox.\n\n**Hybrid Behavior:**\n- When provided: Checkbox works in controlled mode - external prop controls the state\n- When not provided: Checkbox works in native mode - maintains its own internal state\n\n@default undefined (native mode)",
|
|
2619
|
-
"type": "boolean",
|
|
2620
|
-
"default": "undefined (native mode)"
|
|
2621
|
-
},
|
|
2622
|
-
{
|
|
2623
|
-
"name": "readonly",
|
|
2624
|
-
"description": "Makes the checkbox read-only, preventing user interaction.\nWhen true, the checkbox displays its current state but cannot be changed by clicking.",
|
|
2625
|
-
"type": "boolean",
|
|
2626
|
-
"default": false
|
|
2627
|
-
},
|
|
2628
2601
|
{
|
|
2629
2602
|
"name": "error",
|
|
2630
2603
|
"description": "Specifies whether the checkbox is in error state",
|
|
@@ -2648,6 +2621,18 @@
|
|
|
2648
2621
|
"description": "Specifies whether the checkbox is indeterminate state",
|
|
2649
2622
|
"type": "boolean"
|
|
2650
2623
|
},
|
|
2624
|
+
{
|
|
2625
|
+
"name": "checked",
|
|
2626
|
+
"description": "Controls the checked state of the checkbox.\n\n**Hybrid Behavior:**\n- When provided: Checkbox works in controlled mode - external prop controls the state\n- When not provided: Checkbox works in native mode - maintains its own internal state\n\n@default undefined (native mode)",
|
|
2627
|
+
"type": "boolean",
|
|
2628
|
+
"default": "undefined (native mode)"
|
|
2629
|
+
},
|
|
2630
|
+
{
|
|
2631
|
+
"name": "readonly",
|
|
2632
|
+
"description": "Makes the checkbox read-only, preventing user interaction.\nWhen true, the checkbox displays its current state but cannot be changed by clicking.",
|
|
2633
|
+
"type": "boolean",
|
|
2634
|
+
"default": false
|
|
2635
|
+
},
|
|
2651
2636
|
{
|
|
2652
2637
|
"name": "name",
|
|
2653
2638
|
"description": "The name of the checkbox for form submission.",
|
|
@@ -2875,12 +2860,9 @@
|
|
|
2875
2860
|
]
|
|
2876
2861
|
},
|
|
2877
2862
|
{
|
|
2878
|
-
"name": "width",
|
|
2879
|
-
"description": "The **`width`** CSS property sets
|
|
2863
|
+
"name": "max-width",
|
|
2864
|
+
"description": "The **`max-width`** CSS property sets the maximum width of an element. It prevents the used value of the `width` property from becoming larger than the value specified by `max-width`. 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",
|
|
2880
2865
|
"values": [
|
|
2881
|
-
{
|
|
2882
|
-
"name": "auto"
|
|
2883
|
-
},
|
|
2884
2866
|
{
|
|
2885
2867
|
"name": "fit-content"
|
|
2886
2868
|
},
|
|
@@ -2894,7 +2876,7 @@
|
|
|
2894
2876
|
"name": "min-content"
|
|
2895
2877
|
},
|
|
2896
2878
|
{
|
|
2897
|
-
"name": "
|
|
2879
|
+
"name": "none"
|
|
2898
2880
|
},
|
|
2899
2881
|
{
|
|
2900
2882
|
"name": "stretch"
|
|
@@ -2902,9 +2884,12 @@
|
|
|
2902
2884
|
]
|
|
2903
2885
|
},
|
|
2904
2886
|
{
|
|
2905
|
-
"name": "
|
|
2906
|
-
"description": "The **`
|
|
2887
|
+
"name": "width",
|
|
2888
|
+
"description": "The **`width`** CSS property sets an element's width. By default, it sets the width of the content area, but if `box-sizing` is set to `border-box`, it sets the width of the border area. It is also possible to pass a specific value.\n\n\n**Initial value**: `auto`\n\nThis property supports responsive values. You can pass a single value like `\"auto\"`.\n\n Or an object like:\n \n ```\n{\n \"xs\": \"auto\",\n \"md\": \"fit-content\",\n \"lg\": \"intrinsic\",\n \"xl\": \"max-content\"\n}\n```\n\n- auto\n- fit-content\n- intrinsic\n- max-content\n- min-content\n- min-intrinsic\n- stretch",
|
|
2907
2889
|
"values": [
|
|
2890
|
+
{
|
|
2891
|
+
"name": "auto"
|
|
2892
|
+
},
|
|
2908
2893
|
{
|
|
2909
2894
|
"name": "fit-content"
|
|
2910
2895
|
},
|
|
@@ -2918,7 +2903,7 @@
|
|
|
2918
2903
|
"name": "min-content"
|
|
2919
2904
|
},
|
|
2920
2905
|
{
|
|
2921
|
-
"name": "
|
|
2906
|
+
"name": "min-intrinsic"
|
|
2922
2907
|
},
|
|
2923
2908
|
{
|
|
2924
2909
|
"name": "stretch"
|
|
@@ -3291,7 +3276,12 @@
|
|
|
3291
3276
|
},
|
|
3292
3277
|
{
|
|
3293
3278
|
"name": "name",
|
|
3294
|
-
"description": "The name of the input for form submission
|
|
3279
|
+
"description": "The name of the input for form submission.\n\n(Required)",
|
|
3280
|
+
"type": "string"
|
|
3281
|
+
},
|
|
3282
|
+
{
|
|
3283
|
+
"name": "id",
|
|
3284
|
+
"description": "The id of the input for form submission.\n\n(Required)",
|
|
3295
3285
|
"type": "string"
|
|
3296
3286
|
},
|
|
3297
3287
|
{
|
|
@@ -3431,6 +3421,11 @@
|
|
|
3431
3421
|
"description": "Places a divider between the input and the leading components\n\n@default true",
|
|
3432
3422
|
"type": "boolean",
|
|
3433
3423
|
"default": true
|
|
3424
|
+
},
|
|
3425
|
+
{
|
|
3426
|
+
"name": "id",
|
|
3427
|
+
"description": "The id of the input for form submission.\n\n(Required)",
|
|
3428
|
+
"type": "string"
|
|
3434
3429
|
}
|
|
3435
3430
|
]
|
|
3436
3431
|
},
|
|
@@ -3537,6 +3532,11 @@
|
|
|
3537
3532
|
"description": "Places a divider between the input and the leading components\n\n@default true",
|
|
3538
3533
|
"type": "boolean",
|
|
3539
3534
|
"default": true
|
|
3535
|
+
},
|
|
3536
|
+
{
|
|
3537
|
+
"name": "id",
|
|
3538
|
+
"description": "The id of the input for form submission.\n\n(Required)",
|
|
3539
|
+
"type": "string"
|
|
3540
3540
|
}
|
|
3541
3541
|
]
|
|
3542
3542
|
},
|
|
@@ -3622,11 +3622,6 @@
|
|
|
3622
3622
|
"type": "boolean",
|
|
3623
3623
|
"default": false
|
|
3624
3624
|
},
|
|
3625
|
-
{
|
|
3626
|
-
"name": "options",
|
|
3627
|
-
"description": "Options for the Select component. This should be an array of SelectOptionProps objects.\n\n(Required)",
|
|
3628
|
-
"type": "array"
|
|
3629
|
-
},
|
|
3630
3625
|
{
|
|
3631
3626
|
"name": "multiple",
|
|
3632
3627
|
"description": "Enables multiple selection mode.",
|
|
@@ -3719,15 +3714,21 @@
|
|
|
3719
3714
|
}
|
|
3720
3715
|
]
|
|
3721
3716
|
},
|
|
3717
|
+
{
|
|
3718
|
+
"name": "options",
|
|
3719
|
+
"description": "Options for the Select component. This should be an array of SelectOptionProps objects.\n\n(Required)",
|
|
3720
|
+
"type": "array"
|
|
3721
|
+
},
|
|
3722
3722
|
{
|
|
3723
3723
|
"name": "value",
|
|
3724
3724
|
"description": "Default selected values for the Select component.\nThis should be an array of SelectOptionProps objects representing the selected options.",
|
|
3725
3725
|
"values": []
|
|
3726
3726
|
},
|
|
3727
3727
|
{
|
|
3728
|
-
"name": "
|
|
3729
|
-
"description": "
|
|
3730
|
-
"
|
|
3728
|
+
"name": "enabled-flip",
|
|
3729
|
+
"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",
|
|
3730
|
+
"type": "boolean",
|
|
3731
|
+
"default": true
|
|
3731
3732
|
},
|
|
3732
3733
|
{
|
|
3733
3734
|
"name": "placeholder",
|
|
@@ -3735,10 +3736,9 @@
|
|
|
3735
3736
|
"type": "string"
|
|
3736
3737
|
},
|
|
3737
3738
|
{
|
|
3738
|
-
"name": "
|
|
3739
|
-
"description": "
|
|
3740
|
-
"
|
|
3741
|
-
"default": true
|
|
3739
|
+
"name": "default-value",
|
|
3740
|
+
"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.",
|
|
3741
|
+
"values": []
|
|
3742
3742
|
},
|
|
3743
3743
|
{
|
|
3744
3744
|
"name": "position",
|
|
@@ -7798,7 +7798,7 @@
|
|
|
7798
7798
|
},
|
|
7799
7799
|
{
|
|
7800
7800
|
"name": "as",
|
|
7801
|
-
"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-box\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",
|
|
7801
|
+
"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",
|
|
7802
7802
|
"type": "string",
|
|
7803
7803
|
"values": [
|
|
7804
7804
|
{
|
|
@@ -8033,9 +8033,144 @@
|
|
|
8033
8033
|
{
|
|
8034
8034
|
"name": "q"
|
|
8035
8035
|
},
|
|
8036
|
+
{
|
|
8037
|
+
"name": "rarui-accordion"
|
|
8038
|
+
},
|
|
8039
|
+
{
|
|
8040
|
+
"name": "rarui-accordion-body"
|
|
8041
|
+
},
|
|
8042
|
+
{
|
|
8043
|
+
"name": "rarui-accordion-header"
|
|
8044
|
+
},
|
|
8045
|
+
{
|
|
8046
|
+
"name": "rarui-accordion-item"
|
|
8047
|
+
},
|
|
8048
|
+
{
|
|
8049
|
+
"name": "rarui-avatar"
|
|
8050
|
+
},
|
|
8051
|
+
{
|
|
8052
|
+
"name": "rarui-badge"
|
|
8053
|
+
},
|
|
8054
|
+
{
|
|
8055
|
+
"name": "rarui-banner"
|
|
8056
|
+
},
|
|
8036
8057
|
{
|
|
8037
8058
|
"name": "rarui-box"
|
|
8038
8059
|
},
|
|
8060
|
+
{
|
|
8061
|
+
"name": "rarui-breadcrumb"
|
|
8062
|
+
},
|
|
8063
|
+
{
|
|
8064
|
+
"name": "rarui-breadcrumb-item"
|
|
8065
|
+
},
|
|
8066
|
+
{
|
|
8067
|
+
"name": "rarui-button"
|
|
8068
|
+
},
|
|
8069
|
+
{
|
|
8070
|
+
"name": "rarui-card"
|
|
8071
|
+
},
|
|
8072
|
+
{
|
|
8073
|
+
"name": "rarui-card-body"
|
|
8074
|
+
},
|
|
8075
|
+
{
|
|
8076
|
+
"name": "rarui-card-header"
|
|
8077
|
+
},
|
|
8078
|
+
{
|
|
8079
|
+
"name": "rarui-checkbox"
|
|
8080
|
+
},
|
|
8081
|
+
{
|
|
8082
|
+
"name": "rarui-chip"
|
|
8083
|
+
},
|
|
8084
|
+
{
|
|
8085
|
+
"name": "rarui-divider"
|
|
8086
|
+
},
|
|
8087
|
+
{
|
|
8088
|
+
"name": "rarui-dropdown"
|
|
8089
|
+
},
|
|
8090
|
+
{
|
|
8091
|
+
"name": "rarui-dropdown-item"
|
|
8092
|
+
},
|
|
8093
|
+
{
|
|
8094
|
+
"name": "rarui-icon"
|
|
8095
|
+
},
|
|
8096
|
+
{
|
|
8097
|
+
"name": "rarui-icon-button"
|
|
8098
|
+
},
|
|
8099
|
+
{
|
|
8100
|
+
"name": "rarui-input"
|
|
8101
|
+
},
|
|
8102
|
+
{
|
|
8103
|
+
"name": "rarui-label"
|
|
8104
|
+
},
|
|
8105
|
+
{
|
|
8106
|
+
"name": "rarui-link"
|
|
8107
|
+
},
|
|
8108
|
+
{
|
|
8109
|
+
"name": "rarui-modal"
|
|
8110
|
+
},
|
|
8111
|
+
{
|
|
8112
|
+
"name": "rarui-modal-footer"
|
|
8113
|
+
},
|
|
8114
|
+
{
|
|
8115
|
+
"name": "rarui-modal-header"
|
|
8116
|
+
},
|
|
8117
|
+
{
|
|
8118
|
+
"name": "rarui-pagination"
|
|
8119
|
+
},
|
|
8120
|
+
{
|
|
8121
|
+
"name": "rarui-progress"
|
|
8122
|
+
},
|
|
8123
|
+
{
|
|
8124
|
+
"name": "rarui-progress-circle"
|
|
8125
|
+
},
|
|
8126
|
+
{
|
|
8127
|
+
"name": "rarui-radio-button"
|
|
8128
|
+
},
|
|
8129
|
+
{
|
|
8130
|
+
"name": "rarui-select"
|
|
8131
|
+
},
|
|
8132
|
+
{
|
|
8133
|
+
"name": "rarui-side-navigation"
|
|
8134
|
+
},
|
|
8135
|
+
{
|
|
8136
|
+
"name": "rarui-side-navigation-item"
|
|
8137
|
+
},
|
|
8138
|
+
{
|
|
8139
|
+
"name": "rarui-sidebar"
|
|
8140
|
+
},
|
|
8141
|
+
{
|
|
8142
|
+
"name": "rarui-skeleton"
|
|
8143
|
+
},
|
|
8144
|
+
{
|
|
8145
|
+
"name": "rarui-status"
|
|
8146
|
+
},
|
|
8147
|
+
{
|
|
8148
|
+
"name": "rarui-stepper"
|
|
8149
|
+
},
|
|
8150
|
+
{
|
|
8151
|
+
"name": "rarui-stepper-step"
|
|
8152
|
+
},
|
|
8153
|
+
{
|
|
8154
|
+
"name": "rarui-tabs"
|
|
8155
|
+
},
|
|
8156
|
+
{
|
|
8157
|
+
"name": "rarui-text"
|
|
8158
|
+
},
|
|
8159
|
+
{
|
|
8160
|
+
"name": "rarui-textarea"
|
|
8161
|
+
},
|
|
8162
|
+
{
|
|
8163
|
+
"name": "rarui-theme-provider"
|
|
8164
|
+
},
|
|
8165
|
+
{
|
|
8166
|
+
"name": "rarui-title"
|
|
8167
|
+
},
|
|
8168
|
+
{
|
|
8169
|
+
"name": "rarui-toggle"
|
|
8170
|
+
},
|
|
8171
|
+
{
|
|
8172
|
+
"name": "rarui-tooltip"
|
|
8173
|
+
},
|
|
8039
8174
|
{
|
|
8040
8175
|
"name": "rp"
|
|
8041
8176
|
},
|
|
@@ -8483,13 +8618,13 @@
|
|
|
8483
8618
|
"type": "number",
|
|
8484
8619
|
"values": [
|
|
8485
8620
|
{
|
|
8486
|
-
"name": 0
|
|
8621
|
+
"name": "0"
|
|
8487
8622
|
},
|
|
8488
8623
|
{
|
|
8489
|
-
"name": 1
|
|
8624
|
+
"name": "1"
|
|
8490
8625
|
},
|
|
8491
8626
|
{
|
|
8492
|
-
"name": 2
|
|
8627
|
+
"name": "2"
|
|
8493
8628
|
}
|
|
8494
8629
|
]
|
|
8495
8630
|
},
|
|
@@ -8536,13 +8671,13 @@
|
|
|
8536
8671
|
"type": "number",
|
|
8537
8672
|
"values": [
|
|
8538
8673
|
{
|
|
8539
|
-
"name": 0
|
|
8674
|
+
"name": "0"
|
|
8540
8675
|
},
|
|
8541
8676
|
{
|
|
8542
|
-
"name": 1
|
|
8677
|
+
"name": "1"
|
|
8543
8678
|
},
|
|
8544
8679
|
{
|
|
8545
|
-
"name": 2
|
|
8680
|
+
"name": "2"
|
|
8546
8681
|
}
|
|
8547
8682
|
]
|
|
8548
8683
|
},
|
package/dist/index.d.ts
CHANGED
|
@@ -18764,7 +18764,7 @@ declare global {
|
|
|
18764
18764
|
*
|
|
18765
18765
|
* See [a complete document](https://rarui.rarolabs.com.br/docs/components-web-components/input/checkbox) for more details.
|
|
18766
18766
|
*/
|
|
18767
|
-
type CheckboxManifestProperties = CheckboxProps & {
|
|
18767
|
+
type CheckboxManifestProperties = Pick<CheckboxProps, 'error' | 'size' | 'indeterminate'> & {
|
|
18768
18768
|
/**
|
|
18769
18769
|
* Controls the checked state of the checkbox.
|
|
18770
18770
|
*
|
|
@@ -18869,19 +18869,6 @@ type ChipManifestProperties = ChipProps & {
|
|
|
18869
18869
|
* Associates the chip with a form element by ID.
|
|
18870
18870
|
*/
|
|
18871
18871
|
form?: string;
|
|
18872
|
-
/**
|
|
18873
|
-
* @events
|
|
18874
|
-
* rarui-chip-click: Fired when the chip is clicked (only when not closeable)
|
|
18875
|
-
* rarui-chip-close: Fired when the close button is clicked (only when closeable is true)
|
|
18876
|
-
*/
|
|
18877
|
-
_events?: {
|
|
18878
|
-
"rarui-chip-click": {
|
|
18879
|
-
detail: MouseEvent;
|
|
18880
|
-
};
|
|
18881
|
-
"rarui-chip-close": {
|
|
18882
|
-
detail: MouseEvent | KeyboardEvent;
|
|
18883
|
-
};
|
|
18884
|
-
};
|
|
18885
18872
|
};
|
|
18886
18873
|
type ChipProperties = WebComponentProperties<ChipManifestProperties>;
|
|
18887
18874
|
|
|
@@ -19160,7 +19147,9 @@ declare class RaruiInput extends LitElement {
|
|
|
19160
19147
|
border: InputProperties["border"];
|
|
19161
19148
|
divider: InputProperties["divider"];
|
|
19162
19149
|
disabled: InputProperties["disabled"];
|
|
19163
|
-
|
|
19150
|
+
private _value;
|
|
19151
|
+
get value(): string;
|
|
19152
|
+
set value(val: string);
|
|
19164
19153
|
placeholder?: string;
|
|
19165
19154
|
type: InputProperties["type"];
|
|
19166
19155
|
name: InputProperties["name"];
|
|
@@ -19241,9 +19230,16 @@ declare class RaruiRadioButton extends LitElement {
|
|
|
19241
19230
|
form: RadioButtonProperties["form"];
|
|
19242
19231
|
required: RadioButtonProperties["required"];
|
|
19243
19232
|
readonly: RadioButtonProperties["readonly"];
|
|
19233
|
+
private _internals;
|
|
19234
|
+
static formAssociated: boolean;
|
|
19235
|
+
constructor();
|
|
19244
19236
|
static styles: CSSResult;
|
|
19245
19237
|
render(): TemplateResult<1>;
|
|
19246
19238
|
private _onChange;
|
|
19239
|
+
private _uncheckOtherRadioButtons;
|
|
19240
|
+
focus(): void;
|
|
19241
|
+
blur(): void;
|
|
19242
|
+
formResetCallback(): void;
|
|
19247
19243
|
}
|
|
19248
19244
|
|
|
19249
19245
|
declare global {
|
|
@@ -19305,7 +19301,9 @@ type TextareaProperties = WebComponentProperties<TextareaManifestProperties>;
|
|
|
19305
19301
|
|
|
19306
19302
|
declare class RaruiTextarea extends LitElement {
|
|
19307
19303
|
disabled: boolean;
|
|
19308
|
-
|
|
19304
|
+
private _value;
|
|
19305
|
+
get value(): string;
|
|
19306
|
+
set value(val: string);
|
|
19309
19307
|
private _internals;
|
|
19310
19308
|
static formAssociated: boolean;
|
|
19311
19309
|
constructor();
|
|
@@ -19379,8 +19377,15 @@ declare class RaruiToggle extends LitElement {
|
|
|
19379
19377
|
value: ToggleProperties["value"];
|
|
19380
19378
|
form: ToggleProperties["form"];
|
|
19381
19379
|
required: ToggleProperties["required"];
|
|
19380
|
+
private _internals;
|
|
19381
|
+
static formAssociated: boolean;
|
|
19382
|
+
constructor();
|
|
19382
19383
|
static styles: CSSResult;
|
|
19383
19384
|
render(): TemplateResult<1>;
|
|
19385
|
+
private _onChange;
|
|
19386
|
+
focus(): void;
|
|
19387
|
+
blur(): void;
|
|
19388
|
+
formResetCallback(): void;
|
|
19384
19389
|
}
|
|
19385
19390
|
|
|
19386
19391
|
declare global {
|
|
@@ -19695,6 +19700,25 @@ declare class RaruiSideNavigationItem extends LitElement {
|
|
|
19695
19700
|
render(): TemplateResult<1>;
|
|
19696
19701
|
}
|
|
19697
19702
|
|
|
19703
|
+
declare global {
|
|
19704
|
+
interface HTMLElementTagNameMap {
|
|
19705
|
+
"rarui-theme-provider": RaruiThemeProvider;
|
|
19706
|
+
}
|
|
19707
|
+
}
|
|
19708
|
+
type Theme = "dark" | "base";
|
|
19709
|
+
|
|
19710
|
+
declare class RaruiThemeProvider extends LitElement {
|
|
19711
|
+
theme: Theme;
|
|
19712
|
+
private previousTheme?;
|
|
19713
|
+
protected createRenderRoot(): this;
|
|
19714
|
+
static styles: CSSResult;
|
|
19715
|
+
connectedCallback(): void;
|
|
19716
|
+
updated(changedProperties: Map<string, unknown>): void;
|
|
19717
|
+
disconnectedCallback(): void;
|
|
19718
|
+
private applyTheme;
|
|
19719
|
+
render(): TemplateResult<1>;
|
|
19720
|
+
}
|
|
19721
|
+
|
|
19698
19722
|
declare global {
|
|
19699
19723
|
interface HTMLElementTagNameMap {
|
|
19700
19724
|
"rarui-accordion": RaruiAccordion;
|
|
@@ -19933,22 +19957,3 @@ declare class RaruiModalHeader extends LitElement {
|
|
|
19933
19957
|
private handleClose;
|
|
19934
19958
|
render(): TemplateResult<1>;
|
|
19935
19959
|
}
|
|
19936
|
-
|
|
19937
|
-
declare global {
|
|
19938
|
-
interface HTMLElementTagNameMap {
|
|
19939
|
-
"rarui-theme-provider": RaruiThemeProvider;
|
|
19940
|
-
}
|
|
19941
|
-
}
|
|
19942
|
-
type Theme = "dark" | "base";
|
|
19943
|
-
|
|
19944
|
-
declare class RaruiThemeProvider extends LitElement {
|
|
19945
|
-
theme: Theme;
|
|
19946
|
-
private previousTheme?;
|
|
19947
|
-
protected createRenderRoot(): this;
|
|
19948
|
-
static styles: CSSResult;
|
|
19949
|
-
connectedCallback(): void;
|
|
19950
|
-
updated(changedProperties: Map<string, unknown>): void;
|
|
19951
|
-
disconnectedCallback(): void;
|
|
19952
|
-
private applyTheme;
|
|
19953
|
-
render(): TemplateResult<1>;
|
|
19954
|
-
}
|