dap-design-system 0.36.7 → 0.36.8
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/dist/dds.d.ts +686 -66
- package/dist/dds.js +12093 -11003
- package/dist/dds.js.map +1 -1
- package/dist/manifest/types/vue/index.d.ts +481 -171
- package/dist/manifest/vscode.html-custom-data.json +485 -86
- package/dist/manifest/web-types.json +1218 -470
- package/dist/react-types.ts +13 -3
- package/dist/react.d.ts +934 -97
- package/dist/react.js +646 -568
- package/dist/react.js.map +1 -1
- package/package.json +1 -1
package/dist/dds.d.ts
CHANGED
|
@@ -18,6 +18,9 @@ import { TemplateResult as TemplateResult_2 } from 'lit-html';
|
|
|
18
18
|
|
|
19
19
|
declare class AccordionBaseElement extends DdsElement {
|
|
20
20
|
static readonly styles: CSSResult;
|
|
21
|
+
private readonly accordionId;
|
|
22
|
+
private readonly buttonId;
|
|
23
|
+
private readonly contentId;
|
|
21
24
|
/** The size of the accordion
|
|
22
25
|
* @type { 'sm' | 'lg' }
|
|
23
26
|
*/
|
|
@@ -28,6 +31,10 @@ declare class AccordionBaseElement extends DdsElement {
|
|
|
28
31
|
headingLevel: HeadingLevel;
|
|
29
32
|
/** Whether the accordion is opened */
|
|
30
33
|
opened: boolean;
|
|
34
|
+
/** Whether the accordion is disabled */
|
|
35
|
+
disabled: boolean;
|
|
36
|
+
/** Whether the accordion is in loading state */
|
|
37
|
+
loading: boolean;
|
|
31
38
|
/** The location of the icon
|
|
32
39
|
* @type { 'left' | 'right' }
|
|
33
40
|
*/
|
|
@@ -35,19 +42,29 @@ declare class AccordionBaseElement extends DdsElement {
|
|
|
35
42
|
/** The variant of the accordion
|
|
36
43
|
* @type { 'default' | 'collapsed' | 'clean' | 'clean-collapsed' }
|
|
37
44
|
*/
|
|
38
|
-
variant:
|
|
45
|
+
variant: AccordionVariant;
|
|
46
|
+
/** Whether this is the last item in an accordion group */
|
|
39
47
|
lastItem: boolean;
|
|
48
|
+
/** ID of element that describes the accordion */
|
|
49
|
+
ariaDescribedBy?: string;
|
|
50
|
+
constructor();
|
|
40
51
|
headingRender(): TemplateResult;
|
|
41
52
|
contentRender(): TemplateResult;
|
|
42
53
|
connectedCallback(): void;
|
|
54
|
+
validateProperties(): void;
|
|
55
|
+
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
43
56
|
private onChange;
|
|
44
57
|
private toggle;
|
|
58
|
+
private handleKeyDown;
|
|
59
|
+
private handleClick;
|
|
45
60
|
private renderButtons;
|
|
46
61
|
private renderContent;
|
|
47
62
|
private renderHeading;
|
|
48
63
|
renderAccordion(): TemplateResult;
|
|
49
64
|
}
|
|
50
65
|
|
|
66
|
+
declare type AccordionVariant = 'default' | 'collapsed' | 'clean' | 'clean-collapsed';
|
|
67
|
+
|
|
51
68
|
export declare type ActionType = {
|
|
52
69
|
href?: string;
|
|
53
70
|
target?: LinkTarget;
|
|
@@ -613,6 +630,12 @@ export declare class ArrowsExpandUpDownFill extends DdsElement {
|
|
|
613
630
|
render(): TemplateResult_2;
|
|
614
631
|
}
|
|
615
632
|
|
|
633
|
+
declare type AvatarGroupLayout = 'stack' | 'grid';
|
|
634
|
+
|
|
635
|
+
declare type AvatarShape = 'circle' | 'rounded' | 'square';
|
|
636
|
+
|
|
637
|
+
declare type AvatarVariant = 'image' | 'initials' | 'icon';
|
|
638
|
+
|
|
616
639
|
export declare type BackgroundShade = 'subtle' | 'base' | 'medium' | 'strong';
|
|
617
640
|
|
|
618
641
|
export declare type BadgeType = 'neutral' | 'brand' | 'info' | 'positive' | 'warning' | 'negative';
|
|
@@ -806,6 +829,8 @@ export declare type CSSFlexDirection = 'column' | 'row' | 'column-reverse' | 'ro
|
|
|
806
829
|
* @property { 'left' | 'right' } iconLocation - The location of the icon. Default is `right`.
|
|
807
830
|
* @property { 'default' | 'collapsed' | 'clean' | 'clean-collapsed' } variant - The variant of the accordion.
|
|
808
831
|
* @property {boolean} lastItem - Whether the accordion is the last item.
|
|
832
|
+
* @property {boolean} disabled - Whether the accordion is disabled.
|
|
833
|
+
* @property {boolean} loading - Whether the accordion is in loading state.
|
|
809
834
|
*
|
|
810
835
|
* @event {{ open: boolean, item: AccordionBaseElement }} dds-opened - Event fired when the accordion is opened.
|
|
811
836
|
* @event {{ open: boolean, item: AccordionBaseElement }} dds-closed - Event fired when the accordion is closed.
|
|
@@ -873,10 +898,16 @@ export declare class DapDSAccordionGroup extends DdsElement {
|
|
|
873
898
|
/** The variant of the accordion
|
|
874
899
|
* @type { 'default' | 'collapsed' | 'clean' | 'clean-collapsed' }
|
|
875
900
|
*/
|
|
876
|
-
variant:
|
|
901
|
+
variant: AccordionVariant;
|
|
877
902
|
static readonly styles: CSSResult;
|
|
878
|
-
|
|
879
|
-
|
|
903
|
+
private readonly boundOnAccordionChange;
|
|
904
|
+
private readonly boundOnSlotChange;
|
|
905
|
+
connectedCallback(): void;
|
|
906
|
+
disconnectedCallback(): void;
|
|
907
|
+
protected firstUpdated(_changedProperties: PropertyValueMap<DapDSAccordionGroup> | Map<PropertyKey, unknown>): void;
|
|
908
|
+
private onSlotChange;
|
|
909
|
+
private setupAccordions;
|
|
910
|
+
private onAccordionChange;
|
|
880
911
|
render(): TemplateResult_2;
|
|
881
912
|
}
|
|
882
913
|
|
|
@@ -911,46 +942,179 @@ export declare class DapDSAnchorHeading extends DdsElement {
|
|
|
911
942
|
|
|
912
943
|
/**
|
|
913
944
|
* `dap-ds-avatar`
|
|
914
|
-
* @summary Avatar component can be used to display user profile images
|
|
945
|
+
* @summary Avatar component can be used to display user profile images, initials, or icons.
|
|
915
946
|
* @element dap-ds-avatar
|
|
916
947
|
* @title - Avatar
|
|
917
948
|
*
|
|
918
|
-
* @
|
|
919
|
-
* @
|
|
920
|
-
* @attribute {string} alt - The alt text of the avatar.
|
|
921
|
-
* @attribute {number} width - The width of the avatar. This will override the size.
|
|
922
|
-
* @attribute {number} height - The height of the avatar. This will override the size.
|
|
949
|
+
* @slot icon - The icon to display when variant is 'icon'.
|
|
950
|
+
* @slot fallback - Custom fallback content when image fails to load.
|
|
923
951
|
*
|
|
924
|
-
* @
|
|
952
|
+
* @event dds-click - Fired when the avatar is clicked (only when interactive).
|
|
953
|
+
* @event dds-load - Fired when the image loads successfully.
|
|
954
|
+
* @event dds-error - Fired when the image fails to load.
|
|
955
|
+
*
|
|
956
|
+
* @csspart base - The main avatar container.
|
|
925
957
|
* @csspart img - The avatar image.
|
|
958
|
+
* @csspart initials - The initials container.
|
|
959
|
+
* @csspart icon - The icon container.
|
|
960
|
+
* @csspart fallback - The fallback content container.
|
|
961
|
+
* @csspart loading - The loading indicator.
|
|
926
962
|
*
|
|
927
|
-
* @cssproperty --dds-avatar-border-radius - The border radius of the avatar. Default
|
|
928
|
-
* @cssproperty --dds-avatar-background-color - The background color of the avatar. Default is
|
|
963
|
+
* @cssproperty --dds-avatar-border-radius - The border radius of the avatar. Default varies by shape.
|
|
964
|
+
* @cssproperty --dds-avatar-background-color - The background color of the avatar. Default is neutral.
|
|
929
965
|
* @cssproperty --dds-avatar-border-width - The width of the avatar's border. Default is 0.
|
|
930
966
|
* @cssproperty --dds-avatar-border-color - The color of the avatar's border. Default is transparent.
|
|
931
967
|
* @cssproperty --dds-avatar-border-style - The style of the avatar's border. Default is solid.
|
|
932
968
|
* @cssproperty --dds-avatar-transition - The transition property for the avatar. Default is 'all 0.2s ease-in-out'.
|
|
969
|
+
* @cssproperty --dds-avatar-text-color - The color of initials text. Default is neutral strong.
|
|
970
|
+
* @cssproperty --dds-avatar-font-size - The font size for initials. Calculated based on size.
|
|
971
|
+
* @cssproperty --dds-avatar-font-weight - The font weight for initials. Default is semibold.
|
|
933
972
|
*
|
|
934
|
-
* @cssproperty --dds-avatar-size-lg - The size of the large avatar. Default is
|
|
935
|
-
* @cssproperty --dds-avatar-size-md - The size of the medium avatar. Default is
|
|
936
|
-
* @cssproperty --dds-avatar-size-sm - The size of the small avatar. Default is
|
|
937
|
-
* @cssproperty --dds-avatar-size-xs - The size of the extra small avatar. Default is
|
|
938
|
-
* @cssproperty --dds-avatar-size-xxs - The size of the extra extra small avatar. Default is
|
|
973
|
+
* @cssproperty --dds-avatar-size-lg - The size of the large avatar. Default is 80px.
|
|
974
|
+
* @cssproperty --dds-avatar-size-md - The size of the medium avatar. Default is 64px.
|
|
975
|
+
* @cssproperty --dds-avatar-size-sm - The size of the small avatar. Default is 48px.
|
|
976
|
+
* @cssproperty --dds-avatar-size-xs - The size of the extra small avatar. Default is 32px.
|
|
977
|
+
* @cssproperty --dds-avatar-size-xxs - The size of the extra extra small avatar. Default is 24px.
|
|
939
978
|
*/
|
|
940
979
|
export declare class DapDSAvatar extends DdsElement {
|
|
941
980
|
/** The size of the avatar
|
|
942
|
-
* @
|
|
981
|
+
* @default md
|
|
982
|
+
* @type { 'xxs' | 'xs' | 'sm' | 'md' | 'lg' }
|
|
983
|
+
* @example
|
|
984
|
+
* ```html
|
|
985
|
+
* <dap-ds-avatar size="xxs">
|
|
986
|
+
* <dap-ds-avatar size="xs">
|
|
987
|
+
* <dap-ds-avatar size="sm">
|
|
988
|
+
* <dap-ds-avatar size="md">
|
|
989
|
+
* <dap-ds-avatar size="lg">
|
|
990
|
+
* ```
|
|
943
991
|
*/
|
|
944
992
|
size: Size;
|
|
945
|
-
/** The
|
|
993
|
+
/** The shape of the avatar
|
|
994
|
+
* @default circle
|
|
995
|
+
* @type { 'circle' | 'rounded' | 'square' }
|
|
996
|
+
* @example
|
|
997
|
+
* ```html
|
|
998
|
+
* <dap-ds-avatar shape="circle">
|
|
999
|
+
* <dap-ds-avatar shape="rounded">
|
|
1000
|
+
* <dap-ds-avatar shape="square">
|
|
1001
|
+
* ```
|
|
1002
|
+
*/
|
|
1003
|
+
shape: AvatarShape;
|
|
1004
|
+
/** The variant type of the avatar
|
|
1005
|
+
* @default image
|
|
1006
|
+
* @type { 'image' | 'initials' | 'icon' }
|
|
1007
|
+
* @example
|
|
1008
|
+
* ```html
|
|
1009
|
+
* <dap-ds-avatar variant="image">
|
|
1010
|
+
* <dap-ds-avatar variant="initials">
|
|
1011
|
+
* <dap-ds-avatar variant="icon">
|
|
1012
|
+
* ```
|
|
1013
|
+
*/
|
|
1014
|
+
variant: AvatarVariant;
|
|
1015
|
+
/** The source of the avatar image */
|
|
946
1016
|
src: string;
|
|
947
|
-
/** The alt text of the avatar
|
|
1017
|
+
/** The alt text of the avatar */
|
|
948
1018
|
alt: string;
|
|
949
|
-
/** The
|
|
1019
|
+
/** The initials to display when variant is 'initials' */
|
|
1020
|
+
initials: string;
|
|
1021
|
+
/** Accessible label for the avatar */
|
|
1022
|
+
label: string;
|
|
1023
|
+
/** Loading state indicator */
|
|
1024
|
+
loading: boolean;
|
|
1025
|
+
/** Whether the avatar is interactive (clickable) */
|
|
1026
|
+
interactive: boolean;
|
|
1027
|
+
/** The width of the avatar. This will override the size */
|
|
950
1028
|
width: number;
|
|
951
|
-
/** The height of the avatar. This will override the size
|
|
1029
|
+
/** The height of the avatar. This will override the size */
|
|
952
1030
|
height: number;
|
|
1031
|
+
private hasImageError;
|
|
1032
|
+
private isImageLoading;
|
|
953
1033
|
static readonly styles: CSSResult;
|
|
1034
|
+
private handleImageLoad;
|
|
1035
|
+
private handleImageError;
|
|
1036
|
+
private handleClick;
|
|
1037
|
+
private generateInitials;
|
|
1038
|
+
private mapSizeToSpinnerSize;
|
|
1039
|
+
private renderImage;
|
|
1040
|
+
private renderInitials;
|
|
1041
|
+
private renderIcon;
|
|
1042
|
+
private renderFallback;
|
|
1043
|
+
private renderLoading;
|
|
1044
|
+
private renderContent;
|
|
1045
|
+
render(): TemplateResult_2;
|
|
1046
|
+
}
|
|
1047
|
+
|
|
1048
|
+
/**
|
|
1049
|
+
* `dap-ds-avatar-group`
|
|
1050
|
+
* @summary Avatar group component displays multiple avatars in an organized layout with overflow management.
|
|
1051
|
+
* @element dap-ds-avatar-group
|
|
1052
|
+
* @title - Avatar Group
|
|
1053
|
+
* @group avatar
|
|
1054
|
+
*
|
|
1055
|
+
* @slot - The avatars to display in the group.
|
|
1056
|
+
*
|
|
1057
|
+
* @event dds-overflow-click - Fired when the overflow indicator is clicked.
|
|
1058
|
+
*
|
|
1059
|
+
* @csspart base - The main container of the avatar group.
|
|
1060
|
+
* @csspart avatars - The container for the visible avatars.
|
|
1061
|
+
* @csspart overflow - The overflow indicator element.
|
|
1062
|
+
*
|
|
1063
|
+
* @cssproperty --dds-avatar-group-gap - Gap between avatars in grid layout. Default is 0.
|
|
1064
|
+
* @cssproperty --dds-avatar-group-overlap - Overlap amount for stacked layout. Default is -8px.
|
|
1065
|
+
* @cssproperty --dds-avatar-group-border-width - Border width for avatars. Default is 2px.
|
|
1066
|
+
* @cssproperty --dds-avatar-group-border-color - Border color for avatars. Default is white.
|
|
1067
|
+
* @cssproperty --dds-avatar-group-overflow-bg - Background color for overflow indicator.
|
|
1068
|
+
* @cssproperty --dds-avatar-group-overflow-color - Text color for overflow indicator.
|
|
1069
|
+
* @cssproperty --dds-avatar-group-overflow-border - Border for overflow indicator.
|
|
1070
|
+
* @cssproperty --dds-avatar-group-size-lg - Size for large avatars. Default is 80px.
|
|
1071
|
+
* @cssproperty --dds-avatar-group-size-md - Size for medium avatars. Default is 64px.
|
|
1072
|
+
* @cssproperty --dds-avatar-group-size-sm - Size for small avatars. Default is 48px.
|
|
1073
|
+
* @cssproperty --dds-avatar-group-size-xs - Size for extra small avatars. Default is 32px.
|
|
1074
|
+
* @cssproperty --dds-avatar-group-size-xxs - Size for extra extra small avatars. Default is 24px.
|
|
1075
|
+
*/
|
|
1076
|
+
export declare class DapDSAvatarGroup extends DdsElement {
|
|
1077
|
+
private avatars;
|
|
1078
|
+
/** The size of avatars in the group
|
|
1079
|
+
* @default md
|
|
1080
|
+
* @type { 'xxs' | 'xs' | 'sm' | 'md' | 'lg' }
|
|
1081
|
+
* @example
|
|
1082
|
+
* ```html
|
|
1083
|
+
* <dap-ds-avatar-group size="xxs">
|
|
1084
|
+
* <dap-ds-avatar-group size="xs">
|
|
1085
|
+
* <dap-ds-avatar-group size="sm">
|
|
1086
|
+
* <dap-ds-avatar-group size="md">
|
|
1087
|
+
* <dap-ds-avatar-group size="lg">
|
|
1088
|
+
* ```
|
|
1089
|
+
*/
|
|
1090
|
+
size: Size;
|
|
1091
|
+
/** Layout type for the avatar group
|
|
1092
|
+
* @default stack
|
|
1093
|
+
* @type { 'stack' | 'grid' }
|
|
1094
|
+
* @example
|
|
1095
|
+
* ```html
|
|
1096
|
+
* <dap-ds-avatar-group layout="stack">
|
|
1097
|
+
* <dap-ds-avatar-group layout="grid">
|
|
1098
|
+
* ```
|
|
1099
|
+
*/
|
|
1100
|
+
layout: AvatarGroupLayout;
|
|
1101
|
+
/** Maximum number of avatars to show before showing overflow */
|
|
1102
|
+
max: number;
|
|
1103
|
+
/** Whether to show the total count in overflow indicator */
|
|
1104
|
+
showTotal: boolean;
|
|
1105
|
+
/** Interactive overflow indicator */
|
|
1106
|
+
interactiveOverflow: boolean;
|
|
1107
|
+
/** Accessible label for the avatar group */
|
|
1108
|
+
label: string;
|
|
1109
|
+
/** Accessible label for the overflow indicator */
|
|
1110
|
+
overflowLabel: string;
|
|
1111
|
+
static readonly styles: CSSResult;
|
|
1112
|
+
connectedCallback(): void;
|
|
1113
|
+
firstUpdated(): void;
|
|
1114
|
+
updated(changedProperties: Map<string | number | symbol, unknown>): void;
|
|
1115
|
+
private handleOverflowClick;
|
|
1116
|
+
private renderOverflowIndicator;
|
|
1117
|
+
private styleSlottedAvatars;
|
|
954
1118
|
render(): TemplateResult_2;
|
|
955
1119
|
}
|
|
956
1120
|
|
|
@@ -1014,10 +1178,14 @@ export declare class DapDSBadge extends DdsElement {
|
|
|
1014
1178
|
*/
|
|
1015
1179
|
size: CommonSize;
|
|
1016
1180
|
/** The icon of the badge, this is a name of a built in icon */
|
|
1017
|
-
icon
|
|
1181
|
+
icon?: string;
|
|
1018
1182
|
static readonly styles: CSSResult;
|
|
1019
1183
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
1184
|
+
protected updated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
1185
|
+
private updateIconSlot;
|
|
1020
1186
|
private getIconSize;
|
|
1187
|
+
private renderIcon;
|
|
1188
|
+
private hasSlottedIcon;
|
|
1021
1189
|
render(): TemplateResult_2;
|
|
1022
1190
|
}
|
|
1023
1191
|
|
|
@@ -1186,15 +1354,41 @@ export declare class DapDSBreadcrumbItem extends DdsElement {
|
|
|
1186
1354
|
}
|
|
1187
1355
|
|
|
1188
1356
|
/**
|
|
1189
|
-
* `dap-ds-button` is a
|
|
1357
|
+
* `dap-ds-button` is a versatile button component for triggering actions and navigation.
|
|
1190
1358
|
* @element dap-ds-button
|
|
1191
|
-
* @summary A button is a clickable element that can be used to trigger an action.
|
|
1359
|
+
* @summary A button is a clickable element that can be used to trigger an action, submit forms, or navigate to other pages.
|
|
1192
1360
|
* @title - Button
|
|
1193
1361
|
*
|
|
1194
|
-
* @
|
|
1362
|
+
* @example Basic Usage
|
|
1363
|
+
* ```html
|
|
1364
|
+
* <dap-ds-button>Click me</dap-ds-button>
|
|
1365
|
+
* <dap-ds-button variant="outline">Secondary action</dap-ds-button>
|
|
1366
|
+
* <dap-ds-button href="/dashboard">Navigate</dap-ds-button>
|
|
1367
|
+
* ```
|
|
1368
|
+
*
|
|
1369
|
+
* @example Form Integration
|
|
1370
|
+
* ```html
|
|
1371
|
+
* <form>
|
|
1372
|
+
* <dap-ds-button htmlType="submit">Submit Form</dap-ds-button>
|
|
1373
|
+
* <dap-ds-button htmlType="reset" variant="outline">Reset</dap-ds-button>
|
|
1374
|
+
* </form>
|
|
1375
|
+
* ```
|
|
1376
|
+
*
|
|
1377
|
+
* @example Accessibility
|
|
1378
|
+
* ```html
|
|
1379
|
+
* <!-- Icon-only buttons require aria-label -->
|
|
1380
|
+
* <dap-ds-button aria-label="Close dialog" shape="circle">
|
|
1381
|
+
* <dap-ds-icon name="close-line"></dap-ds-icon>
|
|
1382
|
+
* </dap-ds-button>
|
|
1383
|
+
* ```
|
|
1384
|
+
*
|
|
1385
|
+
* @event dds-loading-timeout - Emitted when the loading timeout is reached
|
|
1386
|
+
*
|
|
1387
|
+
* @slot - The content of the button. Can contain text, icons, or other elements.
|
|
1195
1388
|
*
|
|
1196
1389
|
* @csspart base - The main button container.
|
|
1197
1390
|
* @csspart high-contrast - The high contrast part of the button.
|
|
1391
|
+
* @csspart content - The content wrapper inside the button.
|
|
1198
1392
|
*
|
|
1199
1393
|
* @cssproperty --dds-button-padding-x - Horizontal padding of the button (default: var(--dds-spacing-300))
|
|
1200
1394
|
* @cssproperty --dds-button-padding-y - Vertical padding of the button (default: var(--dds-spacing-300))
|
|
@@ -1302,55 +1496,150 @@ export declare class DapDSButton extends GenericFormElement {
|
|
|
1302
1496
|
* @ignore
|
|
1303
1497
|
*/
|
|
1304
1498
|
readonly button: HTMLButtonElement | HTMLLinkElement;
|
|
1305
|
-
/** The variant of the button
|
|
1499
|
+
/** The visual style variant of the button
|
|
1306
1500
|
* @type { 'primary' | 'outline' | 'subtle' | 'subtle-neutral' | 'subtle-quiet' | 'subtle-quiet-inverted' | 'clean' | 'primary-inverted' | 'outline-inverted' | 'subtle-inverted' | 'clean-inverted' }
|
|
1501
|
+
* @default 'primary'
|
|
1502
|
+
* @example
|
|
1503
|
+
* ```html
|
|
1504
|
+
* <dap-ds-button variant="primary">Primary action</dap-ds-button>
|
|
1505
|
+
* <dap-ds-button variant="outline">Secondary action</dap-ds-button>
|
|
1506
|
+
* <dap-ds-button variant="subtle">Tertiary action</dap-ds-button>
|
|
1507
|
+
* ```
|
|
1508
|
+
* @group Visual
|
|
1307
1509
|
*/
|
|
1308
1510
|
variant: ButtonVariant;
|
|
1309
|
-
/** The size of the button
|
|
1511
|
+
/** The size of the button affecting padding and font size
|
|
1310
1512
|
* @type { 'lg' | 'md' | 'sm' | 'xs' }
|
|
1513
|
+
* @default 'md'
|
|
1514
|
+
* @example
|
|
1515
|
+
* ```html
|
|
1516
|
+
* <dap-ds-button size="xs">Extra small</dap-ds-button>
|
|
1517
|
+
* <dap-ds-button size="sm">Small</dap-ds-button>
|
|
1518
|
+
* <dap-ds-button>Medium (default)</dap-ds-button>
|
|
1519
|
+
* <dap-ds-button size="lg">Large</dap-ds-button>
|
|
1520
|
+
* ```
|
|
1521
|
+
* @group Visual
|
|
1311
1522
|
*/
|
|
1312
1523
|
size: ButtonSize_2;
|
|
1313
|
-
/** Whether the button is in loading state
|
|
1524
|
+
/** Whether the button is in loading state, showing a spinner and disabling interaction
|
|
1525
|
+
* @default false
|
|
1526
|
+
* @example
|
|
1527
|
+
* ```html
|
|
1528
|
+
* <dap-ds-button loading>Submitting...</dap-ds-button>
|
|
1529
|
+
* ```
|
|
1530
|
+
* @group State
|
|
1531
|
+
*/
|
|
1314
1532
|
loading: boolean;
|
|
1315
|
-
/** Whether the button
|
|
1533
|
+
/** Whether the button represents a destructive action (applies danger styling)
|
|
1534
|
+
* @default false
|
|
1535
|
+
* @example
|
|
1536
|
+
* ```html
|
|
1537
|
+
* <dap-ds-button danger>Delete Account</dap-ds-button>
|
|
1538
|
+
* <dap-ds-button variant="outline" danger>Remove Item</dap-ds-button>
|
|
1539
|
+
* ```
|
|
1540
|
+
* @group State
|
|
1541
|
+
*/
|
|
1316
1542
|
danger: boolean;
|
|
1317
|
-
/** The shape of the button
|
|
1543
|
+
/** The shape of the button - use 'circle' for icon-only buttons
|
|
1318
1544
|
* @type { 'button' | 'circle' }
|
|
1545
|
+
* @default 'button'
|
|
1546
|
+
* @example
|
|
1547
|
+
* ```html
|
|
1548
|
+
* <dap-ds-button shape="circle" aria-label="Close">
|
|
1549
|
+
* <dap-ds-icon name="close-line"></dap-ds-icon>
|
|
1550
|
+
* </dap-ds-button>
|
|
1551
|
+
* ```
|
|
1552
|
+
* @group Visual
|
|
1319
1553
|
*/
|
|
1320
1554
|
shape: ButtonShape;
|
|
1321
|
-
/** The
|
|
1555
|
+
/** The HTML type attribute for form interaction
|
|
1322
1556
|
* @type { 'button' | 'submit' | 'reset' }
|
|
1557
|
+
* @default 'button'
|
|
1558
|
+
* @example
|
|
1559
|
+
* ```html
|
|
1560
|
+
* <form>
|
|
1561
|
+
* <dap-ds-button htmlType="submit">Submit</dap-ds-button>
|
|
1562
|
+
* <dap-ds-button htmlType="reset">Reset</dap-ds-button>
|
|
1563
|
+
* </form>
|
|
1564
|
+
* ```
|
|
1565
|
+
* @group Form
|
|
1323
1566
|
*/
|
|
1324
1567
|
htmlType: HtmlButtonType;
|
|
1325
|
-
/** The
|
|
1326
|
-
|
|
1327
|
-
|
|
1328
|
-
|
|
1329
|
-
|
|
1568
|
+
/** The URL to navigate to. When present, the button renders as an anchor element
|
|
1569
|
+
* @example
|
|
1570
|
+
* ```html
|
|
1571
|
+
* <dap-ds-button href="/dashboard">Go to Dashboard</dap-ds-button>
|
|
1572
|
+
* <dap-ds-button href="https://example.com" target="_blank">External Link</dap-ds-button>
|
|
1573
|
+
* ```
|
|
1574
|
+
* @group Navigation
|
|
1575
|
+
*/
|
|
1576
|
+
href?: string;
|
|
1577
|
+
/** The target attribute for link navigation
|
|
1330
1578
|
* @type { '_blank' | '_self' | '_parent' | '_top' }
|
|
1579
|
+
* @default '_self'
|
|
1580
|
+
* @example
|
|
1581
|
+
* ```html
|
|
1582
|
+
* <dap-ds-button href="https://example.com" target="_blank">Open in new tab</dap-ds-button>
|
|
1583
|
+
* ```
|
|
1584
|
+
* @group Navigation
|
|
1331
1585
|
*/
|
|
1332
1586
|
target: LinkTarget;
|
|
1333
|
-
/**
|
|
1334
|
-
*
|
|
1587
|
+
/** The rel attribute for link security and behavior
|
|
1588
|
+
* @default 'noreferrer noopener'
|
|
1589
|
+
* @example
|
|
1590
|
+
* ```html
|
|
1591
|
+
* <dap-ds-button href="https://example.com" rel="noopener">Safe external link</dap-ds-button>
|
|
1592
|
+
* ```
|
|
1593
|
+
* @group Navigation
|
|
1335
1594
|
*/
|
|
1336
|
-
rel
|
|
1337
|
-
/** The
|
|
1338
|
-
|
|
1339
|
-
|
|
1340
|
-
|
|
1341
|
-
|
|
1342
|
-
|
|
1343
|
-
|
|
1595
|
+
rel?: string;
|
|
1596
|
+
/** The ID of the element controlled by this button
|
|
1597
|
+
* @example
|
|
1598
|
+
* ```html
|
|
1599
|
+
* <dap-ds-button aria-controls="menu-1" aria-expanded="false">Menu</dap-ds-button>
|
|
1600
|
+
* <div id="menu-1">Menu content</div>
|
|
1601
|
+
* ```
|
|
1602
|
+
* @group Accessibility
|
|
1603
|
+
*/
|
|
1604
|
+
ariaControls?: string;
|
|
1605
|
+
/** The ID of the element that describes the button
|
|
1606
|
+
* @example
|
|
1607
|
+
* ```html
|
|
1608
|
+
* <dap-ds-button aria-describedby="help-text">Submit</dap-ds-button>
|
|
1609
|
+
* <div id="help-text">This will submit your form data</div>
|
|
1610
|
+
* ```
|
|
1611
|
+
* @group Accessibility
|
|
1612
|
+
*/
|
|
1613
|
+
ariaDescribedBy?: string;
|
|
1614
|
+
/** Controls loading timeout in milliseconds
|
|
1615
|
+
* @default 0
|
|
1616
|
+
* @group State
|
|
1617
|
+
*/
|
|
1618
|
+
loadingTimeout: number;
|
|
1619
|
+
/** Enables high contrast theme toggle functionality (internal use)
|
|
1620
|
+
* @default false
|
|
1344
1621
|
* @ignore
|
|
1345
1622
|
*/
|
|
1346
1623
|
hc: boolean;
|
|
1347
1624
|
static readonly styles: CSSResult;
|
|
1625
|
+
private loadingTimer?;
|
|
1626
|
+
private getSecureRel;
|
|
1627
|
+
private validateAriaExpanded;
|
|
1628
|
+
private validateAriaPressed;
|
|
1629
|
+
private validateProperties;
|
|
1630
|
+
private isValidUrl;
|
|
1348
1631
|
private handleClick;
|
|
1632
|
+
private toggleHighContrast;
|
|
1633
|
+
private startLoadingTimeout;
|
|
1634
|
+
private clearLoadingTimeout;
|
|
1349
1635
|
focus(options?: FocusOptions): void;
|
|
1350
1636
|
/**
|
|
1351
1637
|
* @ignore
|
|
1352
1638
|
*/
|
|
1353
|
-
get focusElement():
|
|
1639
|
+
get focusElement(): HTMLLinkElement | HTMLButtonElement;
|
|
1640
|
+
protected updated(changedProperties: Map<string | number | symbol, unknown>): void;
|
|
1641
|
+
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
1642
|
+
disconnectedCallback(): void;
|
|
1354
1643
|
render(): TemplateResult_2;
|
|
1355
1644
|
private getLoadingIconSize;
|
|
1356
1645
|
private _getLoadingSpinner;
|
|
@@ -2393,6 +2682,10 @@ export declare class DapDSDataTable<T> extends DdsElement {
|
|
|
2393
2682
|
enableStripedRows: boolean;
|
|
2394
2683
|
/** Number of rows in the table */
|
|
2395
2684
|
rowCount?: number;
|
|
2685
|
+
/** ID of element describing the table */
|
|
2686
|
+
ariaDescribedBy?: string;
|
|
2687
|
+
/** Caption text for the table */
|
|
2688
|
+
caption?: string;
|
|
2396
2689
|
/** Whether to show the pager component */
|
|
2397
2690
|
pager: boolean;
|
|
2398
2691
|
/** Show the page size options. */
|
|
@@ -2438,6 +2731,8 @@ export declare class DapDSDataTable<T> extends DdsElement {
|
|
|
2438
2731
|
/** @ignore */
|
|
2439
2732
|
private _pagination;
|
|
2440
2733
|
/** @ignore */
|
|
2734
|
+
private readonly _statusMessage;
|
|
2735
|
+
/** @ignore */
|
|
2441
2736
|
debug: boolean;
|
|
2442
2737
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
2443
2738
|
protected updated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
@@ -2447,6 +2742,9 @@ export declare class DapDSDataTable<T> extends DdsElement {
|
|
|
2447
2742
|
private getHeaderCellStyle;
|
|
2448
2743
|
private getSortIcon;
|
|
2449
2744
|
private getSortTitle;
|
|
2745
|
+
private getAriaSortValue;
|
|
2746
|
+
private handleRowClick;
|
|
2747
|
+
private handleRowKeydown;
|
|
2450
2748
|
private readonly renderHeader;
|
|
2451
2749
|
private readonly renderBody;
|
|
2452
2750
|
protected render(): TemplateResult_2;
|
|
@@ -2787,9 +3085,9 @@ export declare class DapDSFileInput extends GenericFormElement {
|
|
|
2787
3085
|
get files(): File[];
|
|
2788
3086
|
private _files;
|
|
2789
3087
|
private _uploadProgress;
|
|
2790
|
-
private _uploadingFiles;
|
|
2791
|
-
private _activeUploads;
|
|
2792
|
-
private _uploadedFiles;
|
|
3088
|
+
private readonly _uploadingFiles;
|
|
3089
|
+
private readonly _activeUploads;
|
|
3090
|
+
private readonly _uploadedFiles;
|
|
2793
3091
|
private _isDragOver;
|
|
2794
3092
|
private _showRemoveDialog;
|
|
2795
3093
|
private _fileToRemove;
|
|
@@ -3582,6 +3880,8 @@ export declare class DapDSModal extends ModalBaseElement {
|
|
|
3582
3880
|
* @cssproperty --dds-notification-badge-positive-bg - Background color for positive type
|
|
3583
3881
|
* @cssproperty --dds-notification-badge-warning-bg - Background color for warning type
|
|
3584
3882
|
* @cssproperty --dds-notification-badge-negative-bg - Background color for negative type
|
|
3883
|
+
* @cssproperty --dds-notification-badge-circular-offset-x - Horizontal offset for circular positioning
|
|
3884
|
+
* @cssproperty --dds-notification-badge-circular-offset-y - Vertical offset for circular positioning
|
|
3585
3885
|
*/
|
|
3586
3886
|
export declare class DapDSNotificationBadge extends DdsElement {
|
|
3587
3887
|
/** The content of the badge, it can be a number or a string. Content tried to be parsed as a number, if it's not a number, it will be displayed as a string. */
|
|
@@ -3604,7 +3904,19 @@ export declare class DapDSNotificationBadge extends DdsElement {
|
|
|
3604
3904
|
* @type { 'top-start' | 'top-end' | 'bottom-start' | 'bottom-end' }
|
|
3605
3905
|
*/
|
|
3606
3906
|
placement: PopupPlacement;
|
|
3907
|
+
/** Whether to automatically detect circular elements and adjust positioning accordingly */
|
|
3908
|
+
circularAuto: boolean;
|
|
3909
|
+
/** Override circular positioning detection - forces circular positioning calculation */
|
|
3910
|
+
forceCircular: boolean;
|
|
3911
|
+
private isCircularElement;
|
|
3912
|
+
private circularOffset;
|
|
3607
3913
|
static readonly styles: CSSResult;
|
|
3914
|
+
connectedCallback(): void;
|
|
3915
|
+
private detectCircularElement;
|
|
3916
|
+
private isElementCircular;
|
|
3917
|
+
private calculateCircularOffset;
|
|
3918
|
+
private getAngleForPlacement;
|
|
3919
|
+
updated(changedProperties: Map<string | number | symbol, unknown>): void;
|
|
3608
3920
|
private parseBadgeContent;
|
|
3609
3921
|
private handleMax;
|
|
3610
3922
|
private renderContent;
|
|
@@ -4700,18 +5012,6 @@ export declare class DapDSSkipLink extends DdsElement {
|
|
|
4700
5012
|
render(): TemplateResult_2;
|
|
4701
5013
|
}
|
|
4702
5014
|
|
|
4703
|
-
/**
|
|
4704
|
-
* `dap-ds-snackbar`
|
|
4705
|
-
* @summary The Snackbar is a container of sliding messages.
|
|
4706
|
-
* @element dap-ds-snackbar
|
|
4707
|
-
* @title - Snackbar
|
|
4708
|
-
*
|
|
4709
|
-
* @csspart host - The host element
|
|
4710
|
-
*
|
|
4711
|
-
* @cssproperty --dds-snackbar-spacing - Spacing used for positioning the snackbar (default: var(--dds-spacing-400))
|
|
4712
|
-
* @cssproperty --dds-snackbar-z-index - Z-index of the snackbar container (default: 10000)
|
|
4713
|
-
* @cssproperty --dds-snackbar-pointer-events - Pointer events behavior for the snackbar (default: auto)
|
|
4714
|
-
*/
|
|
4715
5015
|
export declare class DapDSSnackbar extends DdsElement {
|
|
4716
5016
|
/** The maximum number of snackbar messages at a given time. */
|
|
4717
5017
|
maxItems: number;
|
|
@@ -4721,18 +5021,63 @@ export declare class DapDSSnackbar extends DdsElement {
|
|
|
4721
5021
|
position: SnackbarPosition;
|
|
4722
5022
|
/** The duration of the snackbar message in milliseconds */
|
|
4723
5023
|
duration: number;
|
|
5024
|
+
/** Whether the snackbar should announce new messages to screen readers */
|
|
5025
|
+
announceMessages: boolean;
|
|
4724
5026
|
private messages;
|
|
4725
5027
|
private idCounter;
|
|
4726
|
-
private
|
|
5028
|
+
private timeouts;
|
|
4727
5029
|
static readonly styles: CSSResult;
|
|
5030
|
+
/**
|
|
5031
|
+
* Static method to show a snackbar message anywhere in the application
|
|
5032
|
+
* @param message - The message to display
|
|
5033
|
+
* @param options - Optional configuration for the message
|
|
5034
|
+
*/
|
|
5035
|
+
static show(message: string, options?: MessageOptionsType): void;
|
|
5036
|
+
/**
|
|
5037
|
+
* Static method to show a success message
|
|
5038
|
+
* @param message - The message to display
|
|
5039
|
+
* @param options - Optional configuration (alertType will be overridden to 'successful')
|
|
5040
|
+
*/
|
|
5041
|
+
static success(message: string, options?: Omit<MessageOptionsType, 'alertType'>): void;
|
|
5042
|
+
/**
|
|
5043
|
+
* Static method to show an error message
|
|
5044
|
+
* @param message - The message to display
|
|
5045
|
+
* @param options - Optional configuration (alertType will be overridden to 'error')
|
|
5046
|
+
*/
|
|
5047
|
+
static error(message: string, options?: Omit<MessageOptionsType, 'alertType'>): void;
|
|
5048
|
+
/**
|
|
5049
|
+
* Static method to show an information message
|
|
5050
|
+
* @param message - The message to display
|
|
5051
|
+
* @param options - Optional configuration (alertType will be overridden to 'information')
|
|
5052
|
+
*/
|
|
5053
|
+
static info(message: string, options?: Omit<MessageOptionsType, 'alertType'>): void;
|
|
5054
|
+
/**
|
|
5055
|
+
* Static method to show a default message
|
|
5056
|
+
* @param message - The message to display
|
|
5057
|
+
* @param options - Optional configuration (alertType will be overridden to 'default')
|
|
5058
|
+
*/
|
|
5059
|
+
static default(message: string, options?: Omit<MessageOptionsType, 'alertType'>): void;
|
|
5060
|
+
/**
|
|
5061
|
+
* Static method to close all snackbar messages globally
|
|
5062
|
+
*/
|
|
5063
|
+
static closeAll(): void;
|
|
5064
|
+
/**
|
|
5065
|
+
* Close all currently displayed messages
|
|
5066
|
+
*/
|
|
5067
|
+
closeAll(): void;
|
|
4728
5068
|
private generateId;
|
|
4729
5069
|
addMessage(message: string, options?: MessageOptionsType): void;
|
|
4730
5070
|
private sliceMessage;
|
|
4731
5071
|
private removeMessage;
|
|
4732
5072
|
private elapseMessages;
|
|
4733
|
-
private
|
|
5073
|
+
private clearTimeout;
|
|
5074
|
+
private clearAllTimeouts;
|
|
4734
5075
|
connectedCallback(): void;
|
|
4735
5076
|
disconnectedCallback(): void;
|
|
5077
|
+
private handleShowSnackbarEvent;
|
|
5078
|
+
private handleCloseAllEvent;
|
|
5079
|
+
private handleKeyDown;
|
|
5080
|
+
private announceToScreenReader;
|
|
4736
5081
|
private _closeMessage;
|
|
4737
5082
|
render(): TemplateResult_2;
|
|
4738
5083
|
}
|
|
@@ -5358,6 +5703,7 @@ export declare class DapDSToggleButton extends GenericFormElement {
|
|
|
5358
5703
|
shape: ButtonShape;
|
|
5359
5704
|
sizeChildren: string;
|
|
5360
5705
|
static readonly styles: CSSResult;
|
|
5706
|
+
get focusElement(): HTMLButtonElement;
|
|
5361
5707
|
protected firstUpdated(_changedProperties: PropertyValues): void;
|
|
5362
5708
|
private handleClick;
|
|
5363
5709
|
render(): TemplateResult_2;
|
|
@@ -5595,6 +5941,8 @@ declare class DdsElement extends LitElement {
|
|
|
5595
5941
|
emit<V = Record<PropertyKey, any>>(name: string, value?: V, options?: EventOptions): CustomEvent<V>;
|
|
5596
5942
|
}
|
|
5597
5943
|
|
|
5944
|
+
export declare type DdsErrorEvent = CustomEvent<Record<PropertyKey, never>>;
|
|
5945
|
+
|
|
5598
5946
|
export declare type DdsFileChangeEvent = CustomEvent<{
|
|
5599
5947
|
files: File[];
|
|
5600
5948
|
}>;
|
|
@@ -5644,6 +5992,12 @@ export declare type DdsListChangedEvent = CustomEvent<{
|
|
|
5644
5992
|
elements: any[];
|
|
5645
5993
|
}>;
|
|
5646
5994
|
|
|
5995
|
+
export declare type DdsLoadEvent = CustomEvent<Record<PropertyKey, never>>;
|
|
5996
|
+
|
|
5997
|
+
export declare type DdsLoadingTimeoutEvent = CustomEvent<{
|
|
5998
|
+
timeout: number;
|
|
5999
|
+
}>;
|
|
6000
|
+
|
|
5647
6001
|
export declare type DdsNotAllowedEvent = CustomEvent<Record<PropertyKey, never>>;
|
|
5648
6002
|
|
|
5649
6003
|
export declare type DdsOkEvent = CustomEvent<Record<PropertyKey, never>>;
|
|
@@ -5657,6 +6011,11 @@ export declare type DdsOptionChangeEvent = CustomEvent<{
|
|
|
5657
6011
|
selected?: boolean;
|
|
5658
6012
|
}>;
|
|
5659
6013
|
|
|
6014
|
+
export declare type DdsOverflowClickEvent = CustomEvent<{
|
|
6015
|
+
/** The original click event that triggered this overflow click */
|
|
6016
|
+
originalEvent: Event;
|
|
6017
|
+
}>;
|
|
6018
|
+
|
|
5660
6019
|
export declare type DdsPaginationChangeEvent = CustomEvent<{
|
|
5661
6020
|
pagination: PaginationState;
|
|
5662
6021
|
}>;
|
|
@@ -5776,6 +6135,64 @@ export declare class DocumentFileCopyLine extends DdsElement {
|
|
|
5776
6135
|
render(): TemplateResult_2;
|
|
5777
6136
|
}
|
|
5778
6137
|
|
|
6138
|
+
/**
|
|
6139
|
+
* `dap-ds-icon-folder-line`
|
|
6140
|
+
* @summary An icon
|
|
6141
|
+
* @element dap-ds-icon-folder-line
|
|
6142
|
+
* @title - DocumentFolderLine
|
|
6143
|
+
* @group icon
|
|
6144
|
+
* @icontype document
|
|
6145
|
+
*
|
|
6146
|
+
* @attribute {number} size - (optional) The width and height in pixels
|
|
6147
|
+
* @attribute {boolean} selected - (optional) Sets the icon color via the `fill` attribute
|
|
6148
|
+
* @attribute {string} accessibilityTitle - (optional) When using the icon standalone, make it meaningful for accessibility
|
|
6149
|
+
* @attribute {boolean} focusable - (optional) If `true` the icon can receive focus
|
|
6150
|
+
*
|
|
6151
|
+
* @csspart base - The main icon container.
|
|
6152
|
+
*/
|
|
6153
|
+
export declare class DocumentFolderLine extends DdsElement {
|
|
6154
|
+
/** (optional) The width and height in pixels */
|
|
6155
|
+
size?: number | undefined;
|
|
6156
|
+
/** (optional) Sets the icon color via the `fill` attribute */
|
|
6157
|
+
selected?: boolean;
|
|
6158
|
+
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
6159
|
+
accessibilityTitle?: string;
|
|
6160
|
+
/** (optional) If `true` the icon can receive focus */
|
|
6161
|
+
focusable?: boolean;
|
|
6162
|
+
static readonly styles: CSSResult;
|
|
6163
|
+
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
6164
|
+
render(): TemplateResult_2;
|
|
6165
|
+
}
|
|
6166
|
+
|
|
6167
|
+
/**
|
|
6168
|
+
* `dap-ds-icon-folder-open-line`
|
|
6169
|
+
* @summary An icon
|
|
6170
|
+
* @element dap-ds-icon-folder-open-line
|
|
6171
|
+
* @title - DocumentFolderOpenLine
|
|
6172
|
+
* @group icon
|
|
6173
|
+
* @icontype document
|
|
6174
|
+
*
|
|
6175
|
+
* @attribute {number} size - (optional) The width and height in pixels
|
|
6176
|
+
* @attribute {boolean} selected - (optional) Sets the icon color via the `fill` attribute
|
|
6177
|
+
* @attribute {string} accessibilityTitle - (optional) When using the icon standalone, make it meaningful for accessibility
|
|
6178
|
+
* @attribute {boolean} focusable - (optional) If `true` the icon can receive focus
|
|
6179
|
+
*
|
|
6180
|
+
* @csspart base - The main icon container.
|
|
6181
|
+
*/
|
|
6182
|
+
export declare class DocumentFolderOpenLine extends DdsElement {
|
|
6183
|
+
/** (optional) The width and height in pixels */
|
|
6184
|
+
size?: number | undefined;
|
|
6185
|
+
/** (optional) Sets the icon color via the `fill` attribute */
|
|
6186
|
+
selected?: boolean;
|
|
6187
|
+
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
6188
|
+
accessibilityTitle?: string;
|
|
6189
|
+
/** (optional) If `true` the icon can receive focus */
|
|
6190
|
+
focusable?: boolean;
|
|
6191
|
+
static readonly styles: CSSResult;
|
|
6192
|
+
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
6193
|
+
render(): TemplateResult_2;
|
|
6194
|
+
}
|
|
6195
|
+
|
|
5779
6196
|
export declare type ElementSpacing = 'top' | 'bottom' | 'both' | 'none';
|
|
5780
6197
|
|
|
5781
6198
|
declare interface EventOptions {
|
|
@@ -6531,6 +6948,64 @@ export declare class SystemCloseLine extends DdsElement {
|
|
|
6531
6948
|
render(): TemplateResult_2;
|
|
6532
6949
|
}
|
|
6533
6950
|
|
|
6951
|
+
/**
|
|
6952
|
+
* `dap-ds-icon-delete-bin-fill`
|
|
6953
|
+
* @summary An icon
|
|
6954
|
+
* @element dap-ds-icon-delete-bin-fill
|
|
6955
|
+
* @title - SystemDeleteBinFill
|
|
6956
|
+
* @group icon
|
|
6957
|
+
* @icontype system
|
|
6958
|
+
*
|
|
6959
|
+
* @attribute {number} size - (optional) The width and height in pixels
|
|
6960
|
+
* @attribute {boolean} selected - (optional) Sets the icon color via the `fill` attribute
|
|
6961
|
+
* @attribute {string} accessibilityTitle - (optional) When using the icon standalone, make it meaningful for accessibility
|
|
6962
|
+
* @attribute {boolean} focusable - (optional) If `true` the icon can receive focus
|
|
6963
|
+
*
|
|
6964
|
+
* @csspart base - The main icon container.
|
|
6965
|
+
*/
|
|
6966
|
+
export declare class SystemDeleteBinFill extends DdsElement {
|
|
6967
|
+
/** (optional) The width and height in pixels */
|
|
6968
|
+
size?: number | undefined;
|
|
6969
|
+
/** (optional) Sets the icon color via the `fill` attribute */
|
|
6970
|
+
selected?: boolean;
|
|
6971
|
+
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
6972
|
+
accessibilityTitle?: string;
|
|
6973
|
+
/** (optional) If `true` the icon can receive focus */
|
|
6974
|
+
focusable?: boolean;
|
|
6975
|
+
static readonly styles: CSSResult;
|
|
6976
|
+
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
6977
|
+
render(): TemplateResult_2;
|
|
6978
|
+
}
|
|
6979
|
+
|
|
6980
|
+
/**
|
|
6981
|
+
* `dap-ds-icon-delete-bin-line`
|
|
6982
|
+
* @summary An icon
|
|
6983
|
+
* @element dap-ds-icon-delete-bin-line
|
|
6984
|
+
* @title - SystemDeleteBinLine
|
|
6985
|
+
* @group icon
|
|
6986
|
+
* @icontype system
|
|
6987
|
+
*
|
|
6988
|
+
* @attribute {number} size - (optional) The width and height in pixels
|
|
6989
|
+
* @attribute {boolean} selected - (optional) Sets the icon color via the `fill` attribute
|
|
6990
|
+
* @attribute {string} accessibilityTitle - (optional) When using the icon standalone, make it meaningful for accessibility
|
|
6991
|
+
* @attribute {boolean} focusable - (optional) If `true` the icon can receive focus
|
|
6992
|
+
*
|
|
6993
|
+
* @csspart base - The main icon container.
|
|
6994
|
+
*/
|
|
6995
|
+
export declare class SystemDeleteBinLine extends DdsElement {
|
|
6996
|
+
/** (optional) The width and height in pixels */
|
|
6997
|
+
size?: number | undefined;
|
|
6998
|
+
/** (optional) Sets the icon color via the `fill` attribute */
|
|
6999
|
+
selected?: boolean;
|
|
7000
|
+
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
7001
|
+
accessibilityTitle?: string;
|
|
7002
|
+
/** (optional) If `true` the icon can receive focus */
|
|
7003
|
+
focusable?: boolean;
|
|
7004
|
+
static readonly styles: CSSResult;
|
|
7005
|
+
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
7006
|
+
render(): TemplateResult_2;
|
|
7007
|
+
}
|
|
7008
|
+
|
|
6534
7009
|
/**
|
|
6535
7010
|
* `dap-ds-icon-download-line`
|
|
6536
7011
|
* @summary An icon
|
|
@@ -7024,6 +7499,35 @@ export declare class SystemSearchLine extends DdsElement {
|
|
|
7024
7499
|
render(): TemplateResult_2;
|
|
7025
7500
|
}
|
|
7026
7501
|
|
|
7502
|
+
/**
|
|
7503
|
+
* `dap-ds-icon-share-line`
|
|
7504
|
+
* @summary An icon
|
|
7505
|
+
* @element dap-ds-icon-share-line
|
|
7506
|
+
* @title - SystemShareLine
|
|
7507
|
+
* @group icon
|
|
7508
|
+
* @icontype system
|
|
7509
|
+
*
|
|
7510
|
+
* @attribute {number} size - (optional) The width and height in pixels
|
|
7511
|
+
* @attribute {boolean} selected - (optional) Sets the icon color via the `fill` attribute
|
|
7512
|
+
* @attribute {string} accessibilityTitle - (optional) When using the icon standalone, make it meaningful for accessibility
|
|
7513
|
+
* @attribute {boolean} focusable - (optional) If `true` the icon can receive focus
|
|
7514
|
+
*
|
|
7515
|
+
* @csspart base - The main icon container.
|
|
7516
|
+
*/
|
|
7517
|
+
export declare class SystemShareLine extends DdsElement {
|
|
7518
|
+
/** (optional) The width and height in pixels */
|
|
7519
|
+
size?: number | undefined;
|
|
7520
|
+
/** (optional) Sets the icon color via the `fill` attribute */
|
|
7521
|
+
selected?: boolean;
|
|
7522
|
+
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
7523
|
+
accessibilityTitle?: string;
|
|
7524
|
+
/** (optional) If `true` the icon can receive focus */
|
|
7525
|
+
focusable?: boolean;
|
|
7526
|
+
static readonly styles: CSSResult;
|
|
7527
|
+
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
7528
|
+
render(): TemplateResult_2;
|
|
7529
|
+
}
|
|
7530
|
+
|
|
7027
7531
|
/**
|
|
7028
7532
|
* `dap-ds-icon-shield-check-fill`
|
|
7029
7533
|
* @summary An icon
|
|
@@ -7227,6 +7731,64 @@ export declare class SystemUpload2Line extends DdsElement {
|
|
|
7227
7731
|
render(): TemplateResult_2;
|
|
7228
7732
|
}
|
|
7229
7733
|
|
|
7734
|
+
/**
|
|
7735
|
+
* `dap-ds-icon-upload-line`
|
|
7736
|
+
* @summary An icon
|
|
7737
|
+
* @element dap-ds-icon-upload-line
|
|
7738
|
+
* @title - SystemUploadLine
|
|
7739
|
+
* @group icon
|
|
7740
|
+
* @icontype system
|
|
7741
|
+
*
|
|
7742
|
+
* @attribute {number} size - (optional) The width and height in pixels
|
|
7743
|
+
* @attribute {boolean} selected - (optional) Sets the icon color via the `fill` attribute
|
|
7744
|
+
* @attribute {string} accessibilityTitle - (optional) When using the icon standalone, make it meaningful for accessibility
|
|
7745
|
+
* @attribute {boolean} focusable - (optional) If `true` the icon can receive focus
|
|
7746
|
+
*
|
|
7747
|
+
* @csspart base - The main icon container.
|
|
7748
|
+
*/
|
|
7749
|
+
export declare class SystemUploadLine extends DdsElement {
|
|
7750
|
+
/** (optional) The width and height in pixels */
|
|
7751
|
+
size?: number | undefined;
|
|
7752
|
+
/** (optional) Sets the icon color via the `fill` attribute */
|
|
7753
|
+
selected?: boolean;
|
|
7754
|
+
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
7755
|
+
accessibilityTitle?: string;
|
|
7756
|
+
/** (optional) If `true` the icon can receive focus */
|
|
7757
|
+
focusable?: boolean;
|
|
7758
|
+
static readonly styles: CSSResult;
|
|
7759
|
+
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
7760
|
+
render(): TemplateResult_2;
|
|
7761
|
+
}
|
|
7762
|
+
|
|
7763
|
+
/**
|
|
7764
|
+
* `dap-ds-icon-edit-line`
|
|
7765
|
+
* @summary An icon
|
|
7766
|
+
* @element dap-ds-icon-edit-line
|
|
7767
|
+
* @title - DesignEditLine
|
|
7768
|
+
* @group icon
|
|
7769
|
+
* @icontype design
|
|
7770
|
+
*
|
|
7771
|
+
* @attribute {number} size - (optional) The width and height in pixels
|
|
7772
|
+
* @attribute {boolean} selected - (optional) Sets the icon color via the `fill` attribute
|
|
7773
|
+
* @attribute {string} accessibilityTitle - (optional) When using the icon standalone, make it meaningful for accessibility
|
|
7774
|
+
* @attribute {boolean} focusable - (optional) If `true` the icon can receive focus
|
|
7775
|
+
*
|
|
7776
|
+
* @csspart base - The main icon container.
|
|
7777
|
+
*/
|
|
7778
|
+
export declare class SystemUploadLine2 extends DdsElement {
|
|
7779
|
+
/** (optional) The width and height in pixels */
|
|
7780
|
+
size?: number | undefined;
|
|
7781
|
+
/** (optional) Sets the icon color via the `fill` attribute */
|
|
7782
|
+
selected?: boolean;
|
|
7783
|
+
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
7784
|
+
accessibilityTitle?: string;
|
|
7785
|
+
/** (optional) If `true` the icon can receive focus */
|
|
7786
|
+
focusable?: boolean;
|
|
7787
|
+
static readonly styles: CSSResult;
|
|
7788
|
+
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
7789
|
+
render(): TemplateResult_2;
|
|
7790
|
+
}
|
|
7791
|
+
|
|
7230
7792
|
export { Table }
|
|
7231
7793
|
|
|
7232
7794
|
export { TableController }
|
|
@@ -7241,4 +7803,62 @@ declare type TypographySize = Extract<Size, 'lg' | 'md' | 'sm'> | null | undefin
|
|
|
7241
7803
|
|
|
7242
7804
|
declare type TypographyVariant = 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'body' | 'caption' | 'description';
|
|
7243
7805
|
|
|
7806
|
+
/**
|
|
7807
|
+
* `dap-ds-icon-user-fill`
|
|
7808
|
+
* @summary An icon
|
|
7809
|
+
* @element dap-ds-icon-user-fill
|
|
7810
|
+
* @title - UserUserFill
|
|
7811
|
+
* @group icon
|
|
7812
|
+
* @icontype user
|
|
7813
|
+
*
|
|
7814
|
+
* @attribute {number} size - (optional) The width and height in pixels
|
|
7815
|
+
* @attribute {boolean} selected - (optional) Sets the icon color via the `fill` attribute
|
|
7816
|
+
* @attribute {string} accessibilityTitle - (optional) When using the icon standalone, make it meaningful for accessibility
|
|
7817
|
+
* @attribute {boolean} focusable - (optional) If `true` the icon can receive focus
|
|
7818
|
+
*
|
|
7819
|
+
* @csspart base - The main icon container.
|
|
7820
|
+
*/
|
|
7821
|
+
export declare class UserUserFill extends DdsElement {
|
|
7822
|
+
/** (optional) The width and height in pixels */
|
|
7823
|
+
size?: number | undefined;
|
|
7824
|
+
/** (optional) Sets the icon color via the `fill` attribute */
|
|
7825
|
+
selected?: boolean;
|
|
7826
|
+
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
7827
|
+
accessibilityTitle?: string;
|
|
7828
|
+
/** (optional) If `true` the icon can receive focus */
|
|
7829
|
+
focusable?: boolean;
|
|
7830
|
+
static readonly styles: CSSResult;
|
|
7831
|
+
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
7832
|
+
render(): TemplateResult_2;
|
|
7833
|
+
}
|
|
7834
|
+
|
|
7835
|
+
/**
|
|
7836
|
+
* `dap-ds-icon-user-line`
|
|
7837
|
+
* @summary An icon
|
|
7838
|
+
* @element dap-ds-icon-user-line
|
|
7839
|
+
* @title - UserUserLine
|
|
7840
|
+
* @group icon
|
|
7841
|
+
* @icontype user
|
|
7842
|
+
*
|
|
7843
|
+
* @attribute {number} size - (optional) The width and height in pixels
|
|
7844
|
+
* @attribute {boolean} selected - (optional) Sets the icon color via the `fill` attribute
|
|
7845
|
+
* @attribute {string} accessibilityTitle - (optional) When using the icon standalone, make it meaningful for accessibility
|
|
7846
|
+
* @attribute {boolean} focusable - (optional) If `true` the icon can receive focus
|
|
7847
|
+
*
|
|
7848
|
+
* @csspart base - The main icon container.
|
|
7849
|
+
*/
|
|
7850
|
+
export declare class UserUserLine extends DdsElement {
|
|
7851
|
+
/** (optional) The width and height in pixels */
|
|
7852
|
+
size?: number | undefined;
|
|
7853
|
+
/** (optional) Sets the icon color via the `fill` attribute */
|
|
7854
|
+
selected?: boolean;
|
|
7855
|
+
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
7856
|
+
accessibilityTitle?: string;
|
|
7857
|
+
/** (optional) If `true` the icon can receive focus */
|
|
7858
|
+
focusable?: boolean;
|
|
7859
|
+
static readonly styles: CSSResult;
|
|
7860
|
+
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
7861
|
+
render(): TemplateResult_2;
|
|
7862
|
+
}
|
|
7863
|
+
|
|
7244
7864
|
export { }
|