@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/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;
|
|
@@ -18427,6 +18436,11 @@ type LabelManifestProperties = {
|
|
|
18427
18436
|
* The for attribute specifies which form element a label is bound to.
|
|
18428
18437
|
*/
|
|
18429
18438
|
for?: string;
|
|
18439
|
+
/**
|
|
18440
|
+
* Specifies whether the label is hidden or not
|
|
18441
|
+
* @default false
|
|
18442
|
+
*/
|
|
18443
|
+
hidden?: boolean;
|
|
18430
18444
|
};
|
|
18431
18445
|
type LabelProperties = WebComponentProperties<LabelManifestProperties>;
|
|
18432
18446
|
|
|
@@ -18481,6 +18495,9 @@ type StepperProperties = WebComponentProperties<StepperManifestProperties>;
|
|
|
18481
18495
|
|
|
18482
18496
|
declare class RaruiStepper extends LitElement {
|
|
18483
18497
|
direction: StepperProperties["direction"];
|
|
18498
|
+
ariaLabel: string | null;
|
|
18499
|
+
ariaLabelledBy: string | null;
|
|
18500
|
+
ariaDescribedBy: string | null;
|
|
18484
18501
|
private assignedSteps;
|
|
18485
18502
|
private steps;
|
|
18486
18503
|
static styles: CSSResult;
|
|
@@ -18516,6 +18533,9 @@ declare class RaruiText extends LitElement {
|
|
|
18516
18533
|
"color"?: TextProperties["color"];
|
|
18517
18534
|
"font-weight"?: TextProperties["font-weight"];
|
|
18518
18535
|
"text-align"?: TextProperties["text-align"];
|
|
18536
|
+
ariaLabel: string | null;
|
|
18537
|
+
ariaLabelledBy: string | null;
|
|
18538
|
+
ariaDescribedBy: string | null;
|
|
18519
18539
|
static styles: CSSResult;
|
|
18520
18540
|
render(): TemplateResult;
|
|
18521
18541
|
}
|
|
@@ -18546,6 +18566,9 @@ declare class RaruiTitle extends LitElement {
|
|
|
18546
18566
|
as: TitleProperties["as"];
|
|
18547
18567
|
"font-weight"?: TitleProperties["font-weight"];
|
|
18548
18568
|
"text-align"?: TitleProperties["text-align"];
|
|
18569
|
+
ariaLabel: string | null;
|
|
18570
|
+
ariaLabelledBy: string | null;
|
|
18571
|
+
ariaDescribedBy: string | null;
|
|
18549
18572
|
static styles: CSSResult;
|
|
18550
18573
|
render(): TemplateResult;
|
|
18551
18574
|
}
|
|
@@ -18597,6 +18620,12 @@ type TooltipManifestProperties = Omit<TooltipProps, "visible" | "onVisibility" |
|
|
|
18597
18620
|
type TooltipProperties = WebComponentProperties<TooltipManifestProperties>;
|
|
18598
18621
|
|
|
18599
18622
|
declare class RaruiTooltip extends LitElement {
|
|
18623
|
+
static shadowRootOptions: {
|
|
18624
|
+
delegatesFocus: boolean;
|
|
18625
|
+
mode: ShadowRootMode;
|
|
18626
|
+
serializable?: boolean;
|
|
18627
|
+
slotAssignment?: SlotAssignmentMode;
|
|
18628
|
+
};
|
|
18600
18629
|
arrow: TooltipProperties["arrow"];
|
|
18601
18630
|
padding: TooltipProperties["padding"];
|
|
18602
18631
|
offset: TooltipProperties["offset"];
|
|
@@ -18608,6 +18637,9 @@ declare class RaruiTooltip extends LitElement {
|
|
|
18608
18637
|
position: TooltipProperties["position"];
|
|
18609
18638
|
strategy: TooltipProperties["strategy"];
|
|
18610
18639
|
open: boolean;
|
|
18640
|
+
ariaLabel: string | null;
|
|
18641
|
+
ariaLabelledBy: string | null;
|
|
18642
|
+
ariaDescribedBy: string | null;
|
|
18611
18643
|
reference: HTMLElement;
|
|
18612
18644
|
floating: HTMLElement;
|
|
18613
18645
|
arrowEl: HTMLElement;
|
|
@@ -18669,6 +18701,9 @@ type ProgressProperties = WebComponentProperties<ProgressManifestProperties>;
|
|
|
18669
18701
|
declare class RaruiProgress extends LitElement {
|
|
18670
18702
|
percentage?: ProgressProperties["percentage"];
|
|
18671
18703
|
color?: ProgressProperties["color"];
|
|
18704
|
+
ariaLabel: string | null;
|
|
18705
|
+
ariaLabelledBy: string | null;
|
|
18706
|
+
ariaDescribedBy: string | null;
|
|
18672
18707
|
static styles: CSSResult;
|
|
18673
18708
|
render(): TemplateResult<1>;
|
|
18674
18709
|
}
|
|
@@ -18695,6 +18730,9 @@ declare class RaruiStatus extends LitElement {
|
|
|
18695
18730
|
variant?: StatusProperties["variant"];
|
|
18696
18731
|
full?: StatusProperties["full"];
|
|
18697
18732
|
dot: StatusProperties["dot"];
|
|
18733
|
+
ariaLabel: string | null;
|
|
18734
|
+
ariaLabelledBy: string | null;
|
|
18735
|
+
ariaDescribedBy: string | null;
|
|
18698
18736
|
static styles: CSSResult;
|
|
18699
18737
|
render(): TemplateResult<1>;
|
|
18700
18738
|
}
|
|
@@ -18734,6 +18772,12 @@ type ButtonManifestProperties = ButtonProps & {
|
|
|
18734
18772
|
type ButtonProperties = WebComponentProperties<ButtonManifestProperties>;
|
|
18735
18773
|
|
|
18736
18774
|
declare class RaruiButton extends LitElement {
|
|
18775
|
+
static shadowRootOptions: {
|
|
18776
|
+
delegatesFocus: boolean;
|
|
18777
|
+
mode: ShadowRootMode;
|
|
18778
|
+
serializable?: boolean;
|
|
18779
|
+
slotAssignment?: SlotAssignmentMode;
|
|
18780
|
+
};
|
|
18737
18781
|
type: ButtonProperties["type"];
|
|
18738
18782
|
size: ButtonProperties["size"];
|
|
18739
18783
|
variant: ButtonProperties["variant"];
|
|
@@ -18743,6 +18787,13 @@ declare class RaruiButton extends LitElement {
|
|
|
18743
18787
|
name: ButtonProperties["name"];
|
|
18744
18788
|
value: ButtonProperties["value"];
|
|
18745
18789
|
form: ButtonProperties["form"];
|
|
18790
|
+
ariaLabel: string | null;
|
|
18791
|
+
ariaLabelledBy: string | null;
|
|
18792
|
+
ariaDescribedBy: string | null;
|
|
18793
|
+
ariaPressed: "true" | "false" | "mixed" | null;
|
|
18794
|
+
ariaExpanded: "true" | "false" | null;
|
|
18795
|
+
ariaHasPopup: "menu" | "dialog" | "listbox" | "tree" | "grid" | "true" | "false" | null;
|
|
18796
|
+
ariaControls: string | null;
|
|
18746
18797
|
static styles: CSSResult;
|
|
18747
18798
|
render(): TemplateResult<1>;
|
|
18748
18799
|
private _handleClick;
|
|
@@ -18826,6 +18877,15 @@ declare class RaruiCheckbox extends LitElement {
|
|
|
18826
18877
|
name?: CheckboxProperties["name"];
|
|
18827
18878
|
value?: CheckboxProperties["value"];
|
|
18828
18879
|
form?: CheckboxProperties["form"];
|
|
18880
|
+
ariaLabel: string | null;
|
|
18881
|
+
ariaLabelledBy: string | null;
|
|
18882
|
+
ariaDescribedBy: string | null;
|
|
18883
|
+
static shadowRootOptions: {
|
|
18884
|
+
delegatesFocus: boolean;
|
|
18885
|
+
mode: ShadowRootMode;
|
|
18886
|
+
serializable?: boolean;
|
|
18887
|
+
slotAssignment?: SlotAssignmentMode;
|
|
18888
|
+
};
|
|
18829
18889
|
private _hasCheckedAttribute;
|
|
18830
18890
|
private _internals;
|
|
18831
18891
|
private input;
|
|
@@ -18885,6 +18945,12 @@ type ChipManifestProperties = ChipProps & {
|
|
|
18885
18945
|
type ChipProperties = WebComponentProperties<ChipManifestProperties>;
|
|
18886
18946
|
|
|
18887
18947
|
declare class RaruiChip extends LitElement {
|
|
18948
|
+
static shadowRootOptions: {
|
|
18949
|
+
delegatesFocus: boolean;
|
|
18950
|
+
mode: ShadowRootMode;
|
|
18951
|
+
serializable?: boolean;
|
|
18952
|
+
slotAssignment?: SlotAssignmentMode;
|
|
18953
|
+
};
|
|
18888
18954
|
sprinkleAttrs: Record<string, string>;
|
|
18889
18955
|
padding: ChipProperties["padding"];
|
|
18890
18956
|
size?: ChipProperties["size"];
|
|
@@ -18898,6 +18964,10 @@ declare class RaruiChip extends LitElement {
|
|
|
18898
18964
|
name?: ChipProperties["name"];
|
|
18899
18965
|
value?: ChipProperties["value"];
|
|
18900
18966
|
form?: ChipProperties["form"];
|
|
18967
|
+
ariaLabel: string | null;
|
|
18968
|
+
ariaLabelledBy: string | null;
|
|
18969
|
+
ariaDescribedBy: string | null;
|
|
18970
|
+
ariaPressed: "true" | "false" | "mixed" | null;
|
|
18901
18971
|
static styles: CSSResult;
|
|
18902
18972
|
private handleClick;
|
|
18903
18973
|
private handleCloseClick;
|
|
@@ -18954,6 +19024,12 @@ type DropdownManifestProperties = DropdownProps & {
|
|
|
18954
19024
|
type DropdownProperties = WebComponentProperties<DropdownManifestProperties, "onVisibility" | "portalId">;
|
|
18955
19025
|
|
|
18956
19026
|
declare class RaruiDropdown extends LitElement {
|
|
19027
|
+
static shadowRootOptions: {
|
|
19028
|
+
delegatesFocus: boolean;
|
|
19029
|
+
mode: ShadowRootMode;
|
|
19030
|
+
serializable?: boolean;
|
|
19031
|
+
slotAssignment?: SlotAssignmentMode;
|
|
19032
|
+
};
|
|
18957
19033
|
sprinkleAttrs: Record<string, string>;
|
|
18958
19034
|
offset: DropdownProperties["offset"];
|
|
18959
19035
|
padding: DropdownProperties["padding"];
|
|
@@ -18968,6 +19044,9 @@ declare class RaruiDropdown extends LitElement {
|
|
|
18968
19044
|
get visible(): boolean | undefined;
|
|
18969
19045
|
private _visible?;
|
|
18970
19046
|
private _hasVisibleAttribute;
|
|
19047
|
+
ariaLabel: string | null;
|
|
19048
|
+
ariaLabelledBy: string | null;
|
|
19049
|
+
ariaDescribedBy: string | null;
|
|
18971
19050
|
reference: HTMLElement;
|
|
18972
19051
|
floating: HTMLElement;
|
|
18973
19052
|
static styles: CSSResult;
|
|
@@ -19025,11 +19104,20 @@ type DropdownItemManifestProperties = DropdownItemProps & {
|
|
|
19025
19104
|
type DropdownItemProperties = WebComponentProperties<DropdownItemManifestProperties>;
|
|
19026
19105
|
|
|
19027
19106
|
declare class RaruiDropdownItem extends LitElement {
|
|
19107
|
+
static shadowRootOptions: {
|
|
19108
|
+
delegatesFocus: boolean;
|
|
19109
|
+
mode: ShadowRootMode;
|
|
19110
|
+
serializable?: boolean;
|
|
19111
|
+
slotAssignment?: SlotAssignmentMode;
|
|
19112
|
+
};
|
|
19028
19113
|
name: DropdownItemProperties["name"];
|
|
19029
19114
|
selected: DropdownItemProperties["selected"];
|
|
19030
19115
|
disabled: DropdownItemProperties["disabled"];
|
|
19031
19116
|
value: DropdownItemProperties["value"];
|
|
19032
19117
|
type: DropdownItemProperties["type"];
|
|
19118
|
+
ariaLabel: string | null;
|
|
19119
|
+
ariaLabelledBy: string | null;
|
|
19120
|
+
ariaDescribedBy: string | null;
|
|
19033
19121
|
attributeChangedCallback(name: string, oldValue: string | null, newValue: string | null): void;
|
|
19034
19122
|
static styles: CSSResult;
|
|
19035
19123
|
private handleClick;
|
|
@@ -19071,6 +19159,12 @@ type IconButtonManifestProperties = IconButtonProps & {
|
|
|
19071
19159
|
type IconButtonProperties = WebComponentProperties<IconButtonManifestProperties>;
|
|
19072
19160
|
|
|
19073
19161
|
declare class RaruiIconButton extends LitElement {
|
|
19162
|
+
static shadowRootOptions: {
|
|
19163
|
+
delegatesFocus: boolean;
|
|
19164
|
+
mode: ShadowRootMode;
|
|
19165
|
+
serializable?: boolean;
|
|
19166
|
+
slotAssignment?: SlotAssignmentMode;
|
|
19167
|
+
};
|
|
19074
19168
|
size: IconButtonProperties["size"];
|
|
19075
19169
|
variant: IconButtonProperties["variant"];
|
|
19076
19170
|
appearance: IconButtonProperties["appearance"];
|
|
@@ -19080,6 +19174,11 @@ declare class RaruiIconButton extends LitElement {
|
|
|
19080
19174
|
name: IconButtonProperties["name"];
|
|
19081
19175
|
value: IconButtonProperties["value"];
|
|
19082
19176
|
form: IconButtonProperties["form"];
|
|
19177
|
+
ariaLabel: string | null;
|
|
19178
|
+
ariaLabelledBy: string | null;
|
|
19179
|
+
ariaDescribedBy: string | null;
|
|
19180
|
+
ariaPressed: "true" | "false" | "mixed" | null;
|
|
19181
|
+
ariaExpanded: "true" | "false" | null;
|
|
19083
19182
|
static styles: CSSResult;
|
|
19084
19183
|
private handleClick;
|
|
19085
19184
|
render(): TemplateResult<1>;
|
|
@@ -19154,6 +19253,12 @@ type InputManifestProperties = InputProps & {
|
|
|
19154
19253
|
type InputProperties = WebComponentProperties<InputManifestProperties>;
|
|
19155
19254
|
|
|
19156
19255
|
declare class RaruiInput extends LitElement {
|
|
19256
|
+
static shadowRootOptions: {
|
|
19257
|
+
delegatesFocus: boolean;
|
|
19258
|
+
mode: ShadowRootMode;
|
|
19259
|
+
serializable?: boolean;
|
|
19260
|
+
slotAssignment?: SlotAssignmentMode;
|
|
19261
|
+
};
|
|
19157
19262
|
size: InputProperties["size"];
|
|
19158
19263
|
appearance?: InputProperties["appearance"];
|
|
19159
19264
|
border: InputProperties["border"];
|
|
@@ -19171,6 +19276,10 @@ declare class RaruiInput extends LitElement {
|
|
|
19171
19276
|
minlength: InputProperties["minlength"];
|
|
19172
19277
|
maxlength: InputProperties["maxlength"];
|
|
19173
19278
|
pattern: InputProperties["pattern"];
|
|
19279
|
+
ariaLabel: string | null;
|
|
19280
|
+
ariaLabelledBy: string | null;
|
|
19281
|
+
ariaDescribedBy: string | null;
|
|
19282
|
+
ariaInvalid: "true" | "false" | null;
|
|
19174
19283
|
private _internals;
|
|
19175
19284
|
static formAssociated: boolean;
|
|
19176
19285
|
constructor();
|
|
@@ -19242,6 +19351,9 @@ declare class RaruiRadioButton extends LitElement {
|
|
|
19242
19351
|
form: RadioButtonProperties["form"];
|
|
19243
19352
|
required: RadioButtonProperties["required"];
|
|
19244
19353
|
readonly: RadioButtonProperties["readonly"];
|
|
19354
|
+
ariaLabel: string | null;
|
|
19355
|
+
ariaLabelledBy: string | null;
|
|
19356
|
+
ariaDescribedBy: string | null;
|
|
19245
19357
|
private _internals;
|
|
19246
19358
|
static formAssociated: boolean;
|
|
19247
19359
|
constructor();
|
|
@@ -19263,6 +19375,18 @@ declare global {
|
|
|
19263
19375
|
}
|
|
19264
19376
|
}
|
|
19265
19377
|
|
|
19378
|
+
declare global {
|
|
19379
|
+
interface HTMLElementTagNameMap {
|
|
19380
|
+
"rarui-select-option": any;
|
|
19381
|
+
}
|
|
19382
|
+
}
|
|
19383
|
+
|
|
19384
|
+
declare global {
|
|
19385
|
+
interface HTMLElementTagNameMap {
|
|
19386
|
+
"rarui-select-optgroup": any;
|
|
19387
|
+
}
|
|
19388
|
+
}
|
|
19389
|
+
|
|
19266
19390
|
declare global {
|
|
19267
19391
|
interface HTMLElementTagNameMap {
|
|
19268
19392
|
"rarui-textarea": RaruiTextarea;
|
|
@@ -19315,6 +19439,12 @@ type TextareaManifestProperties = TextareaProps & {
|
|
|
19315
19439
|
type TextareaProperties = WebComponentProperties<TextareaManifestProperties>;
|
|
19316
19440
|
|
|
19317
19441
|
declare class RaruiTextarea extends LitElement {
|
|
19442
|
+
static shadowRootOptions: {
|
|
19443
|
+
delegatesFocus: boolean;
|
|
19444
|
+
mode: ShadowRootMode;
|
|
19445
|
+
serializable?: boolean;
|
|
19446
|
+
slotAssignment?: SlotAssignmentMode;
|
|
19447
|
+
};
|
|
19318
19448
|
disabled: boolean;
|
|
19319
19449
|
private _value;
|
|
19320
19450
|
get value(): string;
|
|
@@ -19331,6 +19461,10 @@ declare class RaruiTextarea extends LitElement {
|
|
|
19331
19461
|
placeholder: TextareaProperties["placeholder"];
|
|
19332
19462
|
minlength: TextareaProperties["minlength"];
|
|
19333
19463
|
maxlength: TextareaProperties["maxlength"];
|
|
19464
|
+
ariaLabel: string | null;
|
|
19465
|
+
ariaLabelledBy: string | null;
|
|
19466
|
+
ariaDescribedBy: string | null;
|
|
19467
|
+
ariaInvalid: "true" | "false" | null;
|
|
19334
19468
|
static styles: CSSResult;
|
|
19335
19469
|
render(): TemplateResult<1>;
|
|
19336
19470
|
connectedCallback(): void;
|
|
@@ -19383,6 +19517,12 @@ type ToggleManifestProperties = ToggleProps & {
|
|
|
19383
19517
|
type ToggleProperties = WebComponentProperties<ToggleManifestProperties>;
|
|
19384
19518
|
|
|
19385
19519
|
declare class RaruiToggle extends LitElement {
|
|
19520
|
+
static shadowRootOptions: {
|
|
19521
|
+
delegatesFocus: boolean;
|
|
19522
|
+
mode: ShadowRootMode;
|
|
19523
|
+
serializable?: boolean;
|
|
19524
|
+
slotAssignment?: SlotAssignmentMode;
|
|
19525
|
+
};
|
|
19386
19526
|
name: ToggleProperties["name"];
|
|
19387
19527
|
label: ToggleProperties["label"];
|
|
19388
19528
|
size?: ToggleProperties["size"];
|
|
@@ -19392,6 +19532,10 @@ declare class RaruiToggle extends LitElement {
|
|
|
19392
19532
|
value: ToggleProperties["value"];
|
|
19393
19533
|
form: ToggleProperties["form"];
|
|
19394
19534
|
required: ToggleProperties["required"];
|
|
19535
|
+
ariaLabel: string | null;
|
|
19536
|
+
ariaLabelledBy: string | null;
|
|
19537
|
+
ariaDescribedBy: string | null;
|
|
19538
|
+
ariaInvalid: "true" | "false" | null;
|
|
19395
19539
|
private _internals;
|
|
19396
19540
|
static formAssociated: boolean;
|
|
19397
19541
|
constructor();
|
|
@@ -19419,12 +19563,21 @@ type SidebarManifestProperties = SidebarProps;
|
|
|
19419
19563
|
type SidebarProperties = WebComponentProperties<SidebarManifestProperties, "onRemove">;
|
|
19420
19564
|
|
|
19421
19565
|
declare class RaruiSidebar extends LitElement {
|
|
19566
|
+
static shadowRootOptions: {
|
|
19567
|
+
delegatesFocus: boolean;
|
|
19568
|
+
mode: ShadowRootMode;
|
|
19569
|
+
serializable?: boolean;
|
|
19570
|
+
slotAssignment?: SlotAssignmentMode;
|
|
19571
|
+
};
|
|
19422
19572
|
sprinkleAttrs: Record<string, string>;
|
|
19423
19573
|
open: SidebarProperties["open"];
|
|
19424
19574
|
position: SidebarProperties["position"];
|
|
19425
19575
|
maxWidth: SidebarProperties["max-width"];
|
|
19426
19576
|
padding: SidebarProperties["padding"];
|
|
19427
19577
|
portalId: SidebarProperties["portal-id"];
|
|
19578
|
+
ariaLabel: string | null;
|
|
19579
|
+
ariaLabelledBy: string | null;
|
|
19580
|
+
ariaDescribedBy: string | null;
|
|
19428
19581
|
sidebarElement: HTMLElement;
|
|
19429
19582
|
overlayElement: HTMLElement;
|
|
19430
19583
|
static styles: CSSResult;
|
|
@@ -19461,6 +19614,9 @@ type BreadcrumbManifestProperties = BreadcrumbProps;
|
|
|
19461
19614
|
type BreadcrumbProperties = WebComponentProperties<BreadcrumbManifestProperties>;
|
|
19462
19615
|
|
|
19463
19616
|
declare class RaruiBreadcrumb extends LitElement {
|
|
19617
|
+
ariaLabel: string | null;
|
|
19618
|
+
ariaLabelledBy: string | null;
|
|
19619
|
+
ariaDescribedBy: string | null;
|
|
19464
19620
|
itemsAfterTruncate: BreadcrumbProperties["items-after-truncate"];
|
|
19465
19621
|
private items;
|
|
19466
19622
|
private visibleItems;
|
|
@@ -19509,6 +19665,15 @@ type BreadcrumbItemManifestProperties = BreadcrumbItemProps & {
|
|
|
19509
19665
|
type BreadcrumbItemProperties = WebComponentProperties<BreadcrumbItemManifestProperties>;
|
|
19510
19666
|
|
|
19511
19667
|
declare class RaruiBreadcrumbItem extends LitElement {
|
|
19668
|
+
static shadowRootOptions: {
|
|
19669
|
+
delegatesFocus: boolean;
|
|
19670
|
+
mode: ShadowRootMode;
|
|
19671
|
+
serializable?: boolean;
|
|
19672
|
+
slotAssignment?: SlotAssignmentMode;
|
|
19673
|
+
};
|
|
19674
|
+
ariaLabel: string | null;
|
|
19675
|
+
ariaLabelledBy: string | null;
|
|
19676
|
+
ariaDescribedBy: string | null;
|
|
19512
19677
|
name?: BreadcrumbItemProperties["name"];
|
|
19513
19678
|
href?: BreadcrumbItemProperties["href"];
|
|
19514
19679
|
active?: BreadcrumbItemProperties["active"];
|
|
@@ -19588,6 +19753,12 @@ type LinkManifestProperties = LinkProps & {
|
|
|
19588
19753
|
type LinkProperties = WebComponentProperties<LinkManifestProperties>;
|
|
19589
19754
|
|
|
19590
19755
|
declare class RaruiLink extends LitElement {
|
|
19756
|
+
static shadowRootOptions: {
|
|
19757
|
+
delegatesFocus: boolean;
|
|
19758
|
+
mode: ShadowRootMode;
|
|
19759
|
+
serializable?: boolean;
|
|
19760
|
+
slotAssignment?: SlotAssignmentMode;
|
|
19761
|
+
};
|
|
19591
19762
|
type: LinkProperties["type"];
|
|
19592
19763
|
as: LinkProperties["as"];
|
|
19593
19764
|
appearance?: LinkProperties["appearance"];
|
|
@@ -19599,6 +19770,9 @@ declare class RaruiLink extends LitElement {
|
|
|
19599
19770
|
name?: LinkProperties["name"];
|
|
19600
19771
|
value?: LinkProperties["value"];
|
|
19601
19772
|
form?: LinkProperties["form"];
|
|
19773
|
+
ariaLabel: string | null;
|
|
19774
|
+
ariaLabelledBy: string | null;
|
|
19775
|
+
ariaDescribedBy: string | null;
|
|
19602
19776
|
static styles: CSSResult;
|
|
19603
19777
|
private _onClick;
|
|
19604
19778
|
render(): TemplateResult<1>;
|
|
@@ -19706,6 +19880,15 @@ type SideNavigationItemManifestProperties = SideNavigationItemProps & {
|
|
|
19706
19880
|
type SideNavigationItemProperties = WebComponentProperties<SideNavigationItemManifestProperties>;
|
|
19707
19881
|
|
|
19708
19882
|
declare class RaruiSideNavigationItem extends LitElement {
|
|
19883
|
+
static shadowRootOptions: {
|
|
19884
|
+
delegatesFocus: boolean;
|
|
19885
|
+
mode: ShadowRootMode;
|
|
19886
|
+
serializable?: boolean;
|
|
19887
|
+
slotAssignment?: SlotAssignmentMode;
|
|
19888
|
+
};
|
|
19889
|
+
ariaLabel: string | null;
|
|
19890
|
+
ariaLabelledBy: string | null;
|
|
19891
|
+
ariaDescribedBy: string | null;
|
|
19709
19892
|
active: SideNavigationItemProperties["active"];
|
|
19710
19893
|
level: SideNavigationItemProperties["level"];
|
|
19711
19894
|
as: SideNavigationItemProperties["as"];
|
|
@@ -19805,12 +19988,21 @@ type AccordionHeaderManifestProperties = AccordionHeaderProps;
|
|
|
19805
19988
|
type AccordionHeaderProperties = WebComponentProperties<AccordionHeaderManifestProperties>;
|
|
19806
19989
|
|
|
19807
19990
|
declare class RaruiAccordionHeader extends LitElement {
|
|
19991
|
+
static shadowRootOptions: {
|
|
19992
|
+
delegatesFocus: boolean;
|
|
19993
|
+
mode: ShadowRootMode;
|
|
19994
|
+
serializable?: boolean;
|
|
19995
|
+
slotAssignment?: SlotAssignmentMode;
|
|
19996
|
+
};
|
|
19808
19997
|
title: NonNullable<AccordionHeaderProperties["title"]>;
|
|
19809
19998
|
subtitle: AccordionHeaderProperties["subtitle"];
|
|
19810
19999
|
size: AccordionHeaderProperties["size"];
|
|
19811
20000
|
noIconToggle: AccordionHeaderProperties["no-icon-toggle"];
|
|
19812
20001
|
disabled: boolean;
|
|
19813
20002
|
selected: boolean;
|
|
20003
|
+
ariaLabel: string | null;
|
|
20004
|
+
ariaLabelledBy: string | null;
|
|
20005
|
+
ariaDescribedBy: string | null;
|
|
19814
20006
|
static styles: CSSResult;
|
|
19815
20007
|
private handleClick;
|
|
19816
20008
|
private getTitleSize;
|
|
@@ -19867,6 +20059,9 @@ declare class RaruiBanner extends LitElement {
|
|
|
19867
20059
|
appearance?: BannerProperties["appearance"];
|
|
19868
20060
|
floating: BannerProperties["floating"];
|
|
19869
20061
|
closable: BannerProperties["closable"];
|
|
20062
|
+
ariaLabel: string | null;
|
|
20063
|
+
ariaLabelledBy: string | null;
|
|
20064
|
+
ariaDescribedBy: string | null;
|
|
19870
20065
|
static styles: CSSResult;
|
|
19871
20066
|
private handleClose;
|
|
19872
20067
|
render(): TemplateResult<1>;
|
|
@@ -19913,6 +20108,9 @@ declare class RaruiCard extends LitElement {
|
|
|
19913
20108
|
sprinkleAttrs: Record<string, string>;
|
|
19914
20109
|
padding?: CardProperties["padding"];
|
|
19915
20110
|
"background-color": CardProperties["background-color"];
|
|
20111
|
+
ariaLabel: string | null;
|
|
20112
|
+
ariaLabelledBy: string | null;
|
|
20113
|
+
ariaDescribedBy: string | null;
|
|
19916
20114
|
static styles: CSSResult;
|
|
19917
20115
|
render(): TemplateResult<1>;
|
|
19918
20116
|
}
|
|
@@ -19933,11 +20131,20 @@ type ModalManifestProperties = ModalProps;
|
|
|
19933
20131
|
type ModalProperties = WebComponentProperties<ModalManifestProperties, "onDismiss">;
|
|
19934
20132
|
|
|
19935
20133
|
declare class RaruiModal extends LitElement {
|
|
20134
|
+
static shadowRootOptions: {
|
|
20135
|
+
delegatesFocus: boolean;
|
|
20136
|
+
mode: ShadowRootMode;
|
|
20137
|
+
serializable?: boolean;
|
|
20138
|
+
slotAssignment?: SlotAssignmentMode;
|
|
20139
|
+
};
|
|
19936
20140
|
sprinkleAttrs: Record<string, string>;
|
|
19937
20141
|
padding: ModalProperties["padding"];
|
|
19938
20142
|
portalId: ModalProperties["portal-id"];
|
|
19939
20143
|
open: ModalProperties["open"];
|
|
19940
20144
|
maxWidth: ModalProperties["max-width"];
|
|
20145
|
+
ariaLabel: string | null;
|
|
20146
|
+
ariaLabelledBy: string | null;
|
|
20147
|
+
ariaDescribedBy: string | null;
|
|
19941
20148
|
dialog: HTMLElement;
|
|
19942
20149
|
static styles: CSSResult;
|
|
19943
20150
|
cleanupAutoUpdate?: () => void;
|