@rarui/components 1.24.2-rc.6 → 1.25.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 +17 -0
- package/dist/index.d.ts +190 -0
- package/dist/index.js +301 -409
- package/package.json +2 -3
- 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,6 +2,23 @@
|
|
|
2
2
|
|
|
3
3
|
`@rarui/components` components is a component library built with [Lit](https://lit.dev/).
|
|
4
4
|
|
|
5
|
+
## 2025-09-23 `1.26.0`
|
|
6
|
+
|
|
7
|
+
#### 🎉 New features
|
|
8
|
+
|
|
9
|
+
- 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))
|
|
10
|
+
- 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))
|
|
11
|
+
- 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))
|
|
12
|
+
- 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))
|
|
13
|
+
- 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))
|
|
14
|
+
- 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))
|
|
15
|
+
- 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))
|
|
16
|
+
|
|
17
|
+
#### 💡 Others
|
|
18
|
+
|
|
19
|
+
- 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))
|
|
20
|
+
- 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))
|
|
21
|
+
|
|
5
22
|
## 2025-09-18 `1.25.0`
|
|
6
23
|
|
|
7
24
|
#### 🎉 New features
|
package/dist/index.d.ts
CHANGED
|
@@ -18317,6 +18317,9 @@ type AvatarProperties = WebComponentProperties<AvatarManifestProperties>;
|
|
|
18317
18317
|
|
|
18318
18318
|
declare class RaruiAvatar extends LitElement {
|
|
18319
18319
|
size?: AvatarProperties["size"];
|
|
18320
|
+
ariaLabel: string | null;
|
|
18321
|
+
ariaLabelledBy: string | null;
|
|
18322
|
+
ariaDescribedBy: string | null;
|
|
18320
18323
|
static styles: CSSResult;
|
|
18321
18324
|
render(): TemplateResult<1>;
|
|
18322
18325
|
private handleSlotChange;
|
|
@@ -18343,6 +18346,9 @@ declare class RaruiBagde extends LitElement {
|
|
|
18343
18346
|
variant?: BadgeProperties["variant"];
|
|
18344
18347
|
size?: BadgeProperties["size"];
|
|
18345
18348
|
appearance?: BadgeProperties["appearance"];
|
|
18349
|
+
ariaLabel: string | null;
|
|
18350
|
+
ariaLabelledBy: string | null;
|
|
18351
|
+
ariaDescribedBy: string | null;
|
|
18346
18352
|
static styles: CSSResult;
|
|
18347
18353
|
render(): TemplateResult<1>;
|
|
18348
18354
|
}
|
|
@@ -18405,6 +18411,9 @@ declare class RaruiIcon extends LitElement {
|
|
|
18405
18411
|
sprinkleAttrs: Record<string, string>;
|
|
18406
18412
|
name: IconProperties["name"];
|
|
18407
18413
|
size: Sizes | string;
|
|
18414
|
+
ariaLabel: string | null;
|
|
18415
|
+
ariaLabelledBy: string | null;
|
|
18416
|
+
ariaDescribedBy: string | null;
|
|
18408
18417
|
static styles: CSSResult;
|
|
18409
18418
|
private getSvgWithSize;
|
|
18410
18419
|
render(): TemplateResult<1> | null;
|
|
@@ -18481,6 +18490,9 @@ type StepperProperties = WebComponentProperties<StepperManifestProperties>;
|
|
|
18481
18490
|
|
|
18482
18491
|
declare class RaruiStepper extends LitElement {
|
|
18483
18492
|
direction: StepperProperties["direction"];
|
|
18493
|
+
ariaLabel: string | null;
|
|
18494
|
+
ariaLabelledBy: string | null;
|
|
18495
|
+
ariaDescribedBy: string | null;
|
|
18484
18496
|
private assignedSteps;
|
|
18485
18497
|
private steps;
|
|
18486
18498
|
static styles: CSSResult;
|
|
@@ -18516,6 +18528,9 @@ declare class RaruiText extends LitElement {
|
|
|
18516
18528
|
"color"?: TextProperties["color"];
|
|
18517
18529
|
"font-weight"?: TextProperties["font-weight"];
|
|
18518
18530
|
"text-align"?: TextProperties["text-align"];
|
|
18531
|
+
ariaLabel: string | null;
|
|
18532
|
+
ariaLabelledBy: string | null;
|
|
18533
|
+
ariaDescribedBy: string | null;
|
|
18519
18534
|
static styles: CSSResult;
|
|
18520
18535
|
render(): TemplateResult;
|
|
18521
18536
|
}
|
|
@@ -18546,6 +18561,9 @@ declare class RaruiTitle extends LitElement {
|
|
|
18546
18561
|
as: TitleProperties["as"];
|
|
18547
18562
|
"font-weight"?: TitleProperties["font-weight"];
|
|
18548
18563
|
"text-align"?: TitleProperties["text-align"];
|
|
18564
|
+
ariaLabel: string | null;
|
|
18565
|
+
ariaLabelledBy: string | null;
|
|
18566
|
+
ariaDescribedBy: string | null;
|
|
18549
18567
|
static styles: CSSResult;
|
|
18550
18568
|
render(): TemplateResult;
|
|
18551
18569
|
}
|
|
@@ -18597,6 +18615,12 @@ type TooltipManifestProperties = Omit<TooltipProps, "visible" | "onVisibility" |
|
|
|
18597
18615
|
type TooltipProperties = WebComponentProperties<TooltipManifestProperties>;
|
|
18598
18616
|
|
|
18599
18617
|
declare class RaruiTooltip extends LitElement {
|
|
18618
|
+
static shadowRootOptions: {
|
|
18619
|
+
delegatesFocus: boolean;
|
|
18620
|
+
mode: ShadowRootMode;
|
|
18621
|
+
serializable?: boolean;
|
|
18622
|
+
slotAssignment?: SlotAssignmentMode;
|
|
18623
|
+
};
|
|
18600
18624
|
arrow: TooltipProperties["arrow"];
|
|
18601
18625
|
padding: TooltipProperties["padding"];
|
|
18602
18626
|
offset: TooltipProperties["offset"];
|
|
@@ -18608,6 +18632,9 @@ declare class RaruiTooltip extends LitElement {
|
|
|
18608
18632
|
position: TooltipProperties["position"];
|
|
18609
18633
|
strategy: TooltipProperties["strategy"];
|
|
18610
18634
|
open: boolean;
|
|
18635
|
+
ariaLabel: string | null;
|
|
18636
|
+
ariaLabelledBy: string | null;
|
|
18637
|
+
ariaDescribedBy: string | null;
|
|
18611
18638
|
reference: HTMLElement;
|
|
18612
18639
|
floating: HTMLElement;
|
|
18613
18640
|
arrowEl: HTMLElement;
|
|
@@ -18669,6 +18696,9 @@ type ProgressProperties = WebComponentProperties<ProgressManifestProperties>;
|
|
|
18669
18696
|
declare class RaruiProgress extends LitElement {
|
|
18670
18697
|
percentage?: ProgressProperties["percentage"];
|
|
18671
18698
|
color?: ProgressProperties["color"];
|
|
18699
|
+
ariaLabel: string | null;
|
|
18700
|
+
ariaLabelledBy: string | null;
|
|
18701
|
+
ariaDescribedBy: string | null;
|
|
18672
18702
|
static styles: CSSResult;
|
|
18673
18703
|
render(): TemplateResult<1>;
|
|
18674
18704
|
}
|
|
@@ -18695,6 +18725,9 @@ declare class RaruiStatus extends LitElement {
|
|
|
18695
18725
|
variant?: StatusProperties["variant"];
|
|
18696
18726
|
full?: StatusProperties["full"];
|
|
18697
18727
|
dot: StatusProperties["dot"];
|
|
18728
|
+
ariaLabel: string | null;
|
|
18729
|
+
ariaLabelledBy: string | null;
|
|
18730
|
+
ariaDescribedBy: string | null;
|
|
18698
18731
|
static styles: CSSResult;
|
|
18699
18732
|
render(): TemplateResult<1>;
|
|
18700
18733
|
}
|
|
@@ -18734,6 +18767,12 @@ type ButtonManifestProperties = ButtonProps & {
|
|
|
18734
18767
|
type ButtonProperties = WebComponentProperties<ButtonManifestProperties>;
|
|
18735
18768
|
|
|
18736
18769
|
declare class RaruiButton extends LitElement {
|
|
18770
|
+
static shadowRootOptions: {
|
|
18771
|
+
delegatesFocus: boolean;
|
|
18772
|
+
mode: ShadowRootMode;
|
|
18773
|
+
serializable?: boolean;
|
|
18774
|
+
slotAssignment?: SlotAssignmentMode;
|
|
18775
|
+
};
|
|
18737
18776
|
type: ButtonProperties["type"];
|
|
18738
18777
|
size: ButtonProperties["size"];
|
|
18739
18778
|
variant: ButtonProperties["variant"];
|
|
@@ -18743,6 +18782,13 @@ declare class RaruiButton extends LitElement {
|
|
|
18743
18782
|
name: ButtonProperties["name"];
|
|
18744
18783
|
value: ButtonProperties["value"];
|
|
18745
18784
|
form: ButtonProperties["form"];
|
|
18785
|
+
ariaLabel: string | null;
|
|
18786
|
+
ariaLabelledBy: string | null;
|
|
18787
|
+
ariaDescribedBy: string | null;
|
|
18788
|
+
ariaPressed: "true" | "false" | "mixed" | null;
|
|
18789
|
+
ariaExpanded: "true" | "false" | null;
|
|
18790
|
+
ariaHasPopup: "menu" | "dialog" | "listbox" | "tree" | "grid" | "true" | "false" | null;
|
|
18791
|
+
ariaControls: string | null;
|
|
18746
18792
|
static styles: CSSResult;
|
|
18747
18793
|
render(): TemplateResult<1>;
|
|
18748
18794
|
private _handleClick;
|
|
@@ -18826,6 +18872,15 @@ declare class RaruiCheckbox extends LitElement {
|
|
|
18826
18872
|
name?: CheckboxProperties["name"];
|
|
18827
18873
|
value?: CheckboxProperties["value"];
|
|
18828
18874
|
form?: CheckboxProperties["form"];
|
|
18875
|
+
ariaLabel: string | null;
|
|
18876
|
+
ariaLabelledBy: string | null;
|
|
18877
|
+
ariaDescribedBy: string | null;
|
|
18878
|
+
static shadowRootOptions: {
|
|
18879
|
+
delegatesFocus: boolean;
|
|
18880
|
+
mode: ShadowRootMode;
|
|
18881
|
+
serializable?: boolean;
|
|
18882
|
+
slotAssignment?: SlotAssignmentMode;
|
|
18883
|
+
};
|
|
18829
18884
|
private _hasCheckedAttribute;
|
|
18830
18885
|
private _internals;
|
|
18831
18886
|
private input;
|
|
@@ -18885,6 +18940,12 @@ type ChipManifestProperties = ChipProps & {
|
|
|
18885
18940
|
type ChipProperties = WebComponentProperties<ChipManifestProperties>;
|
|
18886
18941
|
|
|
18887
18942
|
declare class RaruiChip extends LitElement {
|
|
18943
|
+
static shadowRootOptions: {
|
|
18944
|
+
delegatesFocus: boolean;
|
|
18945
|
+
mode: ShadowRootMode;
|
|
18946
|
+
serializable?: boolean;
|
|
18947
|
+
slotAssignment?: SlotAssignmentMode;
|
|
18948
|
+
};
|
|
18888
18949
|
sprinkleAttrs: Record<string, string>;
|
|
18889
18950
|
padding: ChipProperties["padding"];
|
|
18890
18951
|
size?: ChipProperties["size"];
|
|
@@ -18898,6 +18959,10 @@ declare class RaruiChip extends LitElement {
|
|
|
18898
18959
|
name?: ChipProperties["name"];
|
|
18899
18960
|
value?: ChipProperties["value"];
|
|
18900
18961
|
form?: ChipProperties["form"];
|
|
18962
|
+
ariaLabel: string | null;
|
|
18963
|
+
ariaLabelledBy: string | null;
|
|
18964
|
+
ariaDescribedBy: string | null;
|
|
18965
|
+
ariaPressed: "true" | "false" | "mixed" | null;
|
|
18901
18966
|
static styles: CSSResult;
|
|
18902
18967
|
private handleClick;
|
|
18903
18968
|
private handleCloseClick;
|
|
@@ -18954,6 +19019,12 @@ type DropdownManifestProperties = DropdownProps & {
|
|
|
18954
19019
|
type DropdownProperties = WebComponentProperties<DropdownManifestProperties, "onVisibility" | "portalId">;
|
|
18955
19020
|
|
|
18956
19021
|
declare class RaruiDropdown extends LitElement {
|
|
19022
|
+
static shadowRootOptions: {
|
|
19023
|
+
delegatesFocus: boolean;
|
|
19024
|
+
mode: ShadowRootMode;
|
|
19025
|
+
serializable?: boolean;
|
|
19026
|
+
slotAssignment?: SlotAssignmentMode;
|
|
19027
|
+
};
|
|
18957
19028
|
sprinkleAttrs: Record<string, string>;
|
|
18958
19029
|
offset: DropdownProperties["offset"];
|
|
18959
19030
|
padding: DropdownProperties["padding"];
|
|
@@ -18968,6 +19039,9 @@ declare class RaruiDropdown extends LitElement {
|
|
|
18968
19039
|
get visible(): boolean | undefined;
|
|
18969
19040
|
private _visible?;
|
|
18970
19041
|
private _hasVisibleAttribute;
|
|
19042
|
+
ariaLabel: string | null;
|
|
19043
|
+
ariaLabelledBy: string | null;
|
|
19044
|
+
ariaDescribedBy: string | null;
|
|
18971
19045
|
reference: HTMLElement;
|
|
18972
19046
|
floating: HTMLElement;
|
|
18973
19047
|
static styles: CSSResult;
|
|
@@ -19025,11 +19099,20 @@ type DropdownItemManifestProperties = DropdownItemProps & {
|
|
|
19025
19099
|
type DropdownItemProperties = WebComponentProperties<DropdownItemManifestProperties>;
|
|
19026
19100
|
|
|
19027
19101
|
declare class RaruiDropdownItem extends LitElement {
|
|
19102
|
+
static shadowRootOptions: {
|
|
19103
|
+
delegatesFocus: boolean;
|
|
19104
|
+
mode: ShadowRootMode;
|
|
19105
|
+
serializable?: boolean;
|
|
19106
|
+
slotAssignment?: SlotAssignmentMode;
|
|
19107
|
+
};
|
|
19028
19108
|
name: DropdownItemProperties["name"];
|
|
19029
19109
|
selected: DropdownItemProperties["selected"];
|
|
19030
19110
|
disabled: DropdownItemProperties["disabled"];
|
|
19031
19111
|
value: DropdownItemProperties["value"];
|
|
19032
19112
|
type: DropdownItemProperties["type"];
|
|
19113
|
+
ariaLabel: string | null;
|
|
19114
|
+
ariaLabelledBy: string | null;
|
|
19115
|
+
ariaDescribedBy: string | null;
|
|
19033
19116
|
attributeChangedCallback(name: string, oldValue: string | null, newValue: string | null): void;
|
|
19034
19117
|
static styles: CSSResult;
|
|
19035
19118
|
private handleClick;
|
|
@@ -19071,6 +19154,12 @@ type IconButtonManifestProperties = IconButtonProps & {
|
|
|
19071
19154
|
type IconButtonProperties = WebComponentProperties<IconButtonManifestProperties>;
|
|
19072
19155
|
|
|
19073
19156
|
declare class RaruiIconButton extends LitElement {
|
|
19157
|
+
static shadowRootOptions: {
|
|
19158
|
+
delegatesFocus: boolean;
|
|
19159
|
+
mode: ShadowRootMode;
|
|
19160
|
+
serializable?: boolean;
|
|
19161
|
+
slotAssignment?: SlotAssignmentMode;
|
|
19162
|
+
};
|
|
19074
19163
|
size: IconButtonProperties["size"];
|
|
19075
19164
|
variant: IconButtonProperties["variant"];
|
|
19076
19165
|
appearance: IconButtonProperties["appearance"];
|
|
@@ -19080,6 +19169,11 @@ declare class RaruiIconButton extends LitElement {
|
|
|
19080
19169
|
name: IconButtonProperties["name"];
|
|
19081
19170
|
value: IconButtonProperties["value"];
|
|
19082
19171
|
form: IconButtonProperties["form"];
|
|
19172
|
+
ariaLabel: string | null;
|
|
19173
|
+
ariaLabelledBy: string | null;
|
|
19174
|
+
ariaDescribedBy: string | null;
|
|
19175
|
+
ariaPressed: "true" | "false" | "mixed" | null;
|
|
19176
|
+
ariaExpanded: "true" | "false" | null;
|
|
19083
19177
|
static styles: CSSResult;
|
|
19084
19178
|
private handleClick;
|
|
19085
19179
|
render(): TemplateResult<1>;
|
|
@@ -19154,6 +19248,12 @@ type InputManifestProperties = InputProps & {
|
|
|
19154
19248
|
type InputProperties = WebComponentProperties<InputManifestProperties>;
|
|
19155
19249
|
|
|
19156
19250
|
declare class RaruiInput extends LitElement {
|
|
19251
|
+
static shadowRootOptions: {
|
|
19252
|
+
delegatesFocus: boolean;
|
|
19253
|
+
mode: ShadowRootMode;
|
|
19254
|
+
serializable?: boolean;
|
|
19255
|
+
slotAssignment?: SlotAssignmentMode;
|
|
19256
|
+
};
|
|
19157
19257
|
size: InputProperties["size"];
|
|
19158
19258
|
appearance?: InputProperties["appearance"];
|
|
19159
19259
|
border: InputProperties["border"];
|
|
@@ -19171,6 +19271,10 @@ declare class RaruiInput extends LitElement {
|
|
|
19171
19271
|
minlength: InputProperties["minlength"];
|
|
19172
19272
|
maxlength: InputProperties["maxlength"];
|
|
19173
19273
|
pattern: InputProperties["pattern"];
|
|
19274
|
+
ariaLabel: string | null;
|
|
19275
|
+
ariaLabelledBy: string | null;
|
|
19276
|
+
ariaDescribedBy: string | null;
|
|
19277
|
+
ariaInvalid: "true" | "false" | null;
|
|
19174
19278
|
private _internals;
|
|
19175
19279
|
static formAssociated: boolean;
|
|
19176
19280
|
constructor();
|
|
@@ -19242,6 +19346,9 @@ declare class RaruiRadioButton extends LitElement {
|
|
|
19242
19346
|
form: RadioButtonProperties["form"];
|
|
19243
19347
|
required: RadioButtonProperties["required"];
|
|
19244
19348
|
readonly: RadioButtonProperties["readonly"];
|
|
19349
|
+
ariaLabel: string | null;
|
|
19350
|
+
ariaLabelledBy: string | null;
|
|
19351
|
+
ariaDescribedBy: string | null;
|
|
19245
19352
|
private _internals;
|
|
19246
19353
|
static formAssociated: boolean;
|
|
19247
19354
|
constructor();
|
|
@@ -19315,6 +19422,12 @@ type TextareaManifestProperties = TextareaProps & {
|
|
|
19315
19422
|
type TextareaProperties = WebComponentProperties<TextareaManifestProperties>;
|
|
19316
19423
|
|
|
19317
19424
|
declare class RaruiTextarea extends LitElement {
|
|
19425
|
+
static shadowRootOptions: {
|
|
19426
|
+
delegatesFocus: boolean;
|
|
19427
|
+
mode: ShadowRootMode;
|
|
19428
|
+
serializable?: boolean;
|
|
19429
|
+
slotAssignment?: SlotAssignmentMode;
|
|
19430
|
+
};
|
|
19318
19431
|
disabled: boolean;
|
|
19319
19432
|
private _value;
|
|
19320
19433
|
get value(): string;
|
|
@@ -19331,6 +19444,10 @@ declare class RaruiTextarea extends LitElement {
|
|
|
19331
19444
|
placeholder: TextareaProperties["placeholder"];
|
|
19332
19445
|
minlength: TextareaProperties["minlength"];
|
|
19333
19446
|
maxlength: TextareaProperties["maxlength"];
|
|
19447
|
+
ariaLabel: string | null;
|
|
19448
|
+
ariaLabelledBy: string | null;
|
|
19449
|
+
ariaDescribedBy: string | null;
|
|
19450
|
+
ariaInvalid: "true" | "false" | null;
|
|
19334
19451
|
static styles: CSSResult;
|
|
19335
19452
|
render(): TemplateResult<1>;
|
|
19336
19453
|
connectedCallback(): void;
|
|
@@ -19383,6 +19500,12 @@ type ToggleManifestProperties = ToggleProps & {
|
|
|
19383
19500
|
type ToggleProperties = WebComponentProperties<ToggleManifestProperties>;
|
|
19384
19501
|
|
|
19385
19502
|
declare class RaruiToggle extends LitElement {
|
|
19503
|
+
static shadowRootOptions: {
|
|
19504
|
+
delegatesFocus: boolean;
|
|
19505
|
+
mode: ShadowRootMode;
|
|
19506
|
+
serializable?: boolean;
|
|
19507
|
+
slotAssignment?: SlotAssignmentMode;
|
|
19508
|
+
};
|
|
19386
19509
|
name: ToggleProperties["name"];
|
|
19387
19510
|
label: ToggleProperties["label"];
|
|
19388
19511
|
size?: ToggleProperties["size"];
|
|
@@ -19392,6 +19515,10 @@ declare class RaruiToggle extends LitElement {
|
|
|
19392
19515
|
value: ToggleProperties["value"];
|
|
19393
19516
|
form: ToggleProperties["form"];
|
|
19394
19517
|
required: ToggleProperties["required"];
|
|
19518
|
+
ariaLabel: string | null;
|
|
19519
|
+
ariaLabelledBy: string | null;
|
|
19520
|
+
ariaDescribedBy: string | null;
|
|
19521
|
+
ariaInvalid: "true" | "false" | null;
|
|
19395
19522
|
private _internals;
|
|
19396
19523
|
static formAssociated: boolean;
|
|
19397
19524
|
constructor();
|
|
@@ -19419,12 +19546,21 @@ type SidebarManifestProperties = SidebarProps;
|
|
|
19419
19546
|
type SidebarProperties = WebComponentProperties<SidebarManifestProperties, "onRemove">;
|
|
19420
19547
|
|
|
19421
19548
|
declare class RaruiSidebar extends LitElement {
|
|
19549
|
+
static shadowRootOptions: {
|
|
19550
|
+
delegatesFocus: boolean;
|
|
19551
|
+
mode: ShadowRootMode;
|
|
19552
|
+
serializable?: boolean;
|
|
19553
|
+
slotAssignment?: SlotAssignmentMode;
|
|
19554
|
+
};
|
|
19422
19555
|
sprinkleAttrs: Record<string, string>;
|
|
19423
19556
|
open: SidebarProperties["open"];
|
|
19424
19557
|
position: SidebarProperties["position"];
|
|
19425
19558
|
maxWidth: SidebarProperties["max-width"];
|
|
19426
19559
|
padding: SidebarProperties["padding"];
|
|
19427
19560
|
portalId: SidebarProperties["portal-id"];
|
|
19561
|
+
ariaLabel: string | null;
|
|
19562
|
+
ariaLabelledBy: string | null;
|
|
19563
|
+
ariaDescribedBy: string | null;
|
|
19428
19564
|
sidebarElement: HTMLElement;
|
|
19429
19565
|
overlayElement: HTMLElement;
|
|
19430
19566
|
static styles: CSSResult;
|
|
@@ -19461,6 +19597,9 @@ type BreadcrumbManifestProperties = BreadcrumbProps;
|
|
|
19461
19597
|
type BreadcrumbProperties = WebComponentProperties<BreadcrumbManifestProperties>;
|
|
19462
19598
|
|
|
19463
19599
|
declare class RaruiBreadcrumb extends LitElement {
|
|
19600
|
+
ariaLabel: string | null;
|
|
19601
|
+
ariaLabelledBy: string | null;
|
|
19602
|
+
ariaDescribedBy: string | null;
|
|
19464
19603
|
itemsAfterTruncate: BreadcrumbProperties["items-after-truncate"];
|
|
19465
19604
|
private items;
|
|
19466
19605
|
private visibleItems;
|
|
@@ -19509,6 +19648,15 @@ type BreadcrumbItemManifestProperties = BreadcrumbItemProps & {
|
|
|
19509
19648
|
type BreadcrumbItemProperties = WebComponentProperties<BreadcrumbItemManifestProperties>;
|
|
19510
19649
|
|
|
19511
19650
|
declare class RaruiBreadcrumbItem extends LitElement {
|
|
19651
|
+
static shadowRootOptions: {
|
|
19652
|
+
delegatesFocus: boolean;
|
|
19653
|
+
mode: ShadowRootMode;
|
|
19654
|
+
serializable?: boolean;
|
|
19655
|
+
slotAssignment?: SlotAssignmentMode;
|
|
19656
|
+
};
|
|
19657
|
+
ariaLabel: string | null;
|
|
19658
|
+
ariaLabelledBy: string | null;
|
|
19659
|
+
ariaDescribedBy: string | null;
|
|
19512
19660
|
name?: BreadcrumbItemProperties["name"];
|
|
19513
19661
|
href?: BreadcrumbItemProperties["href"];
|
|
19514
19662
|
active?: BreadcrumbItemProperties["active"];
|
|
@@ -19588,6 +19736,12 @@ type LinkManifestProperties = LinkProps & {
|
|
|
19588
19736
|
type LinkProperties = WebComponentProperties<LinkManifestProperties>;
|
|
19589
19737
|
|
|
19590
19738
|
declare class RaruiLink extends LitElement {
|
|
19739
|
+
static shadowRootOptions: {
|
|
19740
|
+
delegatesFocus: boolean;
|
|
19741
|
+
mode: ShadowRootMode;
|
|
19742
|
+
serializable?: boolean;
|
|
19743
|
+
slotAssignment?: SlotAssignmentMode;
|
|
19744
|
+
};
|
|
19591
19745
|
type: LinkProperties["type"];
|
|
19592
19746
|
as: LinkProperties["as"];
|
|
19593
19747
|
appearance?: LinkProperties["appearance"];
|
|
@@ -19599,6 +19753,9 @@ declare class RaruiLink extends LitElement {
|
|
|
19599
19753
|
name?: LinkProperties["name"];
|
|
19600
19754
|
value?: LinkProperties["value"];
|
|
19601
19755
|
form?: LinkProperties["form"];
|
|
19756
|
+
ariaLabel: string | null;
|
|
19757
|
+
ariaLabelledBy: string | null;
|
|
19758
|
+
ariaDescribedBy: string | null;
|
|
19602
19759
|
static styles: CSSResult;
|
|
19603
19760
|
private _onClick;
|
|
19604
19761
|
render(): TemplateResult<1>;
|
|
@@ -19706,6 +19863,15 @@ type SideNavigationItemManifestProperties = SideNavigationItemProps & {
|
|
|
19706
19863
|
type SideNavigationItemProperties = WebComponentProperties<SideNavigationItemManifestProperties>;
|
|
19707
19864
|
|
|
19708
19865
|
declare class RaruiSideNavigationItem extends LitElement {
|
|
19866
|
+
static shadowRootOptions: {
|
|
19867
|
+
delegatesFocus: boolean;
|
|
19868
|
+
mode: ShadowRootMode;
|
|
19869
|
+
serializable?: boolean;
|
|
19870
|
+
slotAssignment?: SlotAssignmentMode;
|
|
19871
|
+
};
|
|
19872
|
+
ariaLabel: string | null;
|
|
19873
|
+
ariaLabelledBy: string | null;
|
|
19874
|
+
ariaDescribedBy: string | null;
|
|
19709
19875
|
active: SideNavigationItemProperties["active"];
|
|
19710
19876
|
level: SideNavigationItemProperties["level"];
|
|
19711
19877
|
as: SideNavigationItemProperties["as"];
|
|
@@ -19805,12 +19971,21 @@ type AccordionHeaderManifestProperties = AccordionHeaderProps;
|
|
|
19805
19971
|
type AccordionHeaderProperties = WebComponentProperties<AccordionHeaderManifestProperties>;
|
|
19806
19972
|
|
|
19807
19973
|
declare class RaruiAccordionHeader extends LitElement {
|
|
19974
|
+
static shadowRootOptions: {
|
|
19975
|
+
delegatesFocus: boolean;
|
|
19976
|
+
mode: ShadowRootMode;
|
|
19977
|
+
serializable?: boolean;
|
|
19978
|
+
slotAssignment?: SlotAssignmentMode;
|
|
19979
|
+
};
|
|
19808
19980
|
title: NonNullable<AccordionHeaderProperties["title"]>;
|
|
19809
19981
|
subtitle: AccordionHeaderProperties["subtitle"];
|
|
19810
19982
|
size: AccordionHeaderProperties["size"];
|
|
19811
19983
|
noIconToggle: AccordionHeaderProperties["no-icon-toggle"];
|
|
19812
19984
|
disabled: boolean;
|
|
19813
19985
|
selected: boolean;
|
|
19986
|
+
ariaLabel: string | null;
|
|
19987
|
+
ariaLabelledBy: string | null;
|
|
19988
|
+
ariaDescribedBy: string | null;
|
|
19814
19989
|
static styles: CSSResult;
|
|
19815
19990
|
private handleClick;
|
|
19816
19991
|
private getTitleSize;
|
|
@@ -19867,6 +20042,9 @@ declare class RaruiBanner extends LitElement {
|
|
|
19867
20042
|
appearance?: BannerProperties["appearance"];
|
|
19868
20043
|
floating: BannerProperties["floating"];
|
|
19869
20044
|
closable: BannerProperties["closable"];
|
|
20045
|
+
ariaLabel: string | null;
|
|
20046
|
+
ariaLabelledBy: string | null;
|
|
20047
|
+
ariaDescribedBy: string | null;
|
|
19870
20048
|
static styles: CSSResult;
|
|
19871
20049
|
private handleClose;
|
|
19872
20050
|
render(): TemplateResult<1>;
|
|
@@ -19913,6 +20091,9 @@ declare class RaruiCard extends LitElement {
|
|
|
19913
20091
|
sprinkleAttrs: Record<string, string>;
|
|
19914
20092
|
padding?: CardProperties["padding"];
|
|
19915
20093
|
"background-color": CardProperties["background-color"];
|
|
20094
|
+
ariaLabel: string | null;
|
|
20095
|
+
ariaLabelledBy: string | null;
|
|
20096
|
+
ariaDescribedBy: string | null;
|
|
19916
20097
|
static styles: CSSResult;
|
|
19917
20098
|
render(): TemplateResult<1>;
|
|
19918
20099
|
}
|
|
@@ -19933,11 +20114,20 @@ type ModalManifestProperties = ModalProps;
|
|
|
19933
20114
|
type ModalProperties = WebComponentProperties<ModalManifestProperties, "onDismiss">;
|
|
19934
20115
|
|
|
19935
20116
|
declare class RaruiModal extends LitElement {
|
|
20117
|
+
static shadowRootOptions: {
|
|
20118
|
+
delegatesFocus: boolean;
|
|
20119
|
+
mode: ShadowRootMode;
|
|
20120
|
+
serializable?: boolean;
|
|
20121
|
+
slotAssignment?: SlotAssignmentMode;
|
|
20122
|
+
};
|
|
19936
20123
|
sprinkleAttrs: Record<string, string>;
|
|
19937
20124
|
padding: ModalProperties["padding"];
|
|
19938
20125
|
portalId: ModalProperties["portal-id"];
|
|
19939
20126
|
open: ModalProperties["open"];
|
|
19940
20127
|
maxWidth: ModalProperties["max-width"];
|
|
20128
|
+
ariaLabel: string | null;
|
|
20129
|
+
ariaLabelledBy: string | null;
|
|
20130
|
+
ariaDescribedBy: string | null;
|
|
19941
20131
|
dialog: HTMLElement;
|
|
19942
20132
|
static styles: CSSResult;
|
|
19943
20133
|
cleanupAutoUpdate?: () => void;
|