dap-design-system 0.35.11 → 0.35.13
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/dark.theme.css +2 -2
- package/dist/dds.d.ts +169 -0
- package/dist/dds.js +3274 -3054
- package/dist/dds.js.map +1 -1
- package/dist/high-contrast.theme.css +2 -2
- package/dist/light.theme.css +2 -2
- package/dist/manifest/types/vue/index.d.ts +231 -129
- package/dist/manifest/vscode.html-custom-data.json +239 -91
- package/dist/manifest/web-types.json +415 -153
- package/dist/react-types.ts +10 -6
- package/dist/react.d.ts +391 -146
- package/dist/react.js +465 -435
- package/dist/react.js.map +1 -1
- package/dist/variables/variables-dark.css +2 -1
- package/dist/variables/variables-high-contrast.css +2 -1
- package/dist/variables/variables-light.css +2 -1
- package/package.json +1 -1
package/dist/react.d.ts
CHANGED
|
@@ -13,8 +13,8 @@ import { Row } from '@tanstack/lit-table';
|
|
|
13
13
|
import { RowData } from '@tanstack/lit-table';
|
|
14
14
|
import { RowSelectionState } from '@tanstack/lit-table';
|
|
15
15
|
import { SortingState } from '@tanstack/lit-table';
|
|
16
|
-
import { TemplateResult } from 'lit';
|
|
17
|
-
import { TemplateResult as TemplateResult_2 } from 'lit
|
|
16
|
+
import { TemplateResult } from 'lit-html';
|
|
17
|
+
import { TemplateResult as TemplateResult_2 } from 'lit';
|
|
18
18
|
|
|
19
19
|
declare type ActionType = {
|
|
20
20
|
href?: string;
|
|
@@ -57,7 +57,7 @@ declare class ArrowsArrowDownLine extends DdsElement {
|
|
|
57
57
|
focusable?: boolean;
|
|
58
58
|
static styles: CSSResult;
|
|
59
59
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
60
|
-
render():
|
|
60
|
+
render(): TemplateResult;
|
|
61
61
|
}
|
|
62
62
|
|
|
63
63
|
/**
|
|
@@ -107,7 +107,7 @@ declare class ArrowsArrowDownSFill extends DdsElement {
|
|
|
107
107
|
focusable?: boolean;
|
|
108
108
|
static styles: CSSResult;
|
|
109
109
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
110
|
-
render():
|
|
110
|
+
render(): TemplateResult;
|
|
111
111
|
}
|
|
112
112
|
|
|
113
113
|
/**
|
|
@@ -157,7 +157,7 @@ declare class ArrowsArrowDownSLine extends DdsElement {
|
|
|
157
157
|
focusable?: boolean;
|
|
158
158
|
static styles: CSSResult;
|
|
159
159
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
160
|
-
render():
|
|
160
|
+
render(): TemplateResult;
|
|
161
161
|
}
|
|
162
162
|
|
|
163
163
|
/**
|
|
@@ -207,7 +207,7 @@ declare class ArrowsArrowLeftDownLine extends DdsElement {
|
|
|
207
207
|
focusable?: boolean;
|
|
208
208
|
static styles: CSSResult;
|
|
209
209
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
210
|
-
render():
|
|
210
|
+
render(): TemplateResult;
|
|
211
211
|
}
|
|
212
212
|
|
|
213
213
|
/**
|
|
@@ -257,7 +257,7 @@ declare class ArrowsArrowLeftLine extends DdsElement {
|
|
|
257
257
|
focusable?: boolean;
|
|
258
258
|
static styles: CSSResult;
|
|
259
259
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
260
|
-
render():
|
|
260
|
+
render(): TemplateResult;
|
|
261
261
|
}
|
|
262
262
|
|
|
263
263
|
/**
|
|
@@ -307,7 +307,7 @@ declare class ArrowsArrowLeftLLine extends DdsElement {
|
|
|
307
307
|
focusable?: boolean;
|
|
308
308
|
static styles: CSSResult;
|
|
309
309
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
310
|
-
render():
|
|
310
|
+
render(): TemplateResult;
|
|
311
311
|
}
|
|
312
312
|
|
|
313
313
|
/**
|
|
@@ -357,7 +357,7 @@ declare class ArrowsArrowLeftSFill extends DdsElement {
|
|
|
357
357
|
focusable?: boolean;
|
|
358
358
|
static styles: CSSResult;
|
|
359
359
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
360
|
-
render():
|
|
360
|
+
render(): TemplateResult;
|
|
361
361
|
}
|
|
362
362
|
|
|
363
363
|
/**
|
|
@@ -407,7 +407,7 @@ declare class ArrowsArrowLeftSLine extends DdsElement {
|
|
|
407
407
|
focusable?: boolean;
|
|
408
408
|
static styles: CSSResult;
|
|
409
409
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
410
|
-
render():
|
|
410
|
+
render(): TemplateResult;
|
|
411
411
|
}
|
|
412
412
|
|
|
413
413
|
/**
|
|
@@ -457,7 +457,7 @@ declare class ArrowsArrowLeftUpLine extends DdsElement {
|
|
|
457
457
|
focusable?: boolean;
|
|
458
458
|
static styles: CSSResult;
|
|
459
459
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
460
|
-
render():
|
|
460
|
+
render(): TemplateResult;
|
|
461
461
|
}
|
|
462
462
|
|
|
463
463
|
/**
|
|
@@ -507,7 +507,7 @@ declare class ArrowsArrowRightDownLine extends DdsElement {
|
|
|
507
507
|
focusable?: boolean;
|
|
508
508
|
static styles: CSSResult;
|
|
509
509
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
510
|
-
render():
|
|
510
|
+
render(): TemplateResult;
|
|
511
511
|
}
|
|
512
512
|
|
|
513
513
|
/**
|
|
@@ -557,7 +557,7 @@ declare class ArrowsArrowRightLine extends DdsElement {
|
|
|
557
557
|
focusable?: boolean;
|
|
558
558
|
static styles: CSSResult;
|
|
559
559
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
560
|
-
render():
|
|
560
|
+
render(): TemplateResult;
|
|
561
561
|
}
|
|
562
562
|
|
|
563
563
|
/**
|
|
@@ -607,7 +607,7 @@ declare class ArrowsArrowRightLLine extends DdsElement {
|
|
|
607
607
|
focusable?: boolean;
|
|
608
608
|
static styles: CSSResult;
|
|
609
609
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
610
|
-
render():
|
|
610
|
+
render(): TemplateResult;
|
|
611
611
|
}
|
|
612
612
|
|
|
613
613
|
/**
|
|
@@ -657,7 +657,7 @@ declare class ArrowsArrowRightSFill extends DdsElement {
|
|
|
657
657
|
focusable?: boolean;
|
|
658
658
|
static styles: CSSResult;
|
|
659
659
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
660
|
-
render():
|
|
660
|
+
render(): TemplateResult;
|
|
661
661
|
}
|
|
662
662
|
|
|
663
663
|
/**
|
|
@@ -707,7 +707,7 @@ declare class ArrowsArrowRightSLine extends DdsElement {
|
|
|
707
707
|
focusable?: boolean;
|
|
708
708
|
static styles: CSSResult;
|
|
709
709
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
710
|
-
render():
|
|
710
|
+
render(): TemplateResult;
|
|
711
711
|
}
|
|
712
712
|
|
|
713
713
|
/**
|
|
@@ -757,7 +757,7 @@ declare class ArrowsArrowRightUpLine extends DdsElement {
|
|
|
757
757
|
focusable?: boolean;
|
|
758
758
|
static styles: CSSResult;
|
|
759
759
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
760
|
-
render():
|
|
760
|
+
render(): TemplateResult;
|
|
761
761
|
}
|
|
762
762
|
|
|
763
763
|
/**
|
|
@@ -807,7 +807,7 @@ declare class ArrowsArrowUpLine extends DdsElement {
|
|
|
807
807
|
focusable?: boolean;
|
|
808
808
|
static styles: CSSResult;
|
|
809
809
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
810
|
-
render():
|
|
810
|
+
render(): TemplateResult;
|
|
811
811
|
}
|
|
812
812
|
|
|
813
813
|
/**
|
|
@@ -857,7 +857,7 @@ declare class ArrowsArrowUpSFill extends DdsElement {
|
|
|
857
857
|
focusable?: boolean;
|
|
858
858
|
static styles: CSSResult;
|
|
859
859
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
860
|
-
render():
|
|
860
|
+
render(): TemplateResult;
|
|
861
861
|
}
|
|
862
862
|
|
|
863
863
|
/**
|
|
@@ -907,7 +907,7 @@ declare class ArrowsArrowUpSLine extends DdsElement {
|
|
|
907
907
|
focusable?: boolean;
|
|
908
908
|
static styles: CSSResult;
|
|
909
909
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
910
|
-
render():
|
|
910
|
+
render(): TemplateResult;
|
|
911
911
|
}
|
|
912
912
|
|
|
913
913
|
/**
|
|
@@ -957,7 +957,7 @@ declare class ArrowsExpandUpDownFill extends DdsElement {
|
|
|
957
957
|
focusable?: boolean;
|
|
958
958
|
static styles: CSSResult;
|
|
959
959
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
960
|
-
render():
|
|
960
|
+
render(): TemplateResult;
|
|
961
961
|
}
|
|
962
962
|
|
|
963
963
|
/**
|
|
@@ -1022,7 +1022,7 @@ declare class BuildingsHome6Line extends DdsElement {
|
|
|
1022
1022
|
focusable?: boolean;
|
|
1023
1023
|
static styles: CSSResult;
|
|
1024
1024
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
1025
|
-
render():
|
|
1025
|
+
render(): TemplateResult;
|
|
1026
1026
|
}
|
|
1027
1027
|
|
|
1028
1028
|
/**
|
|
@@ -1072,7 +1072,7 @@ declare class BusinessCalendarLine extends DdsElement {
|
|
|
1072
1072
|
focusable?: boolean;
|
|
1073
1073
|
static styles: CSSResult;
|
|
1074
1074
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
1075
|
-
render():
|
|
1075
|
+
render(): TemplateResult;
|
|
1076
1076
|
}
|
|
1077
1077
|
|
|
1078
1078
|
/**
|
|
@@ -1171,7 +1171,7 @@ declare class ComboboxBaseElement extends GenericFormElement {
|
|
|
1171
1171
|
getActiveDescendant(): HTMLInputElement | DapDSOptionItem | null | undefined;
|
|
1172
1172
|
getSearchIconSize(size: string): "lg" | "md" | "sm";
|
|
1173
1173
|
getInnerIconSize(size: string): 10 | 16;
|
|
1174
|
-
renderCombobox():
|
|
1174
|
+
renderCombobox(): TemplateResult;
|
|
1175
1175
|
}
|
|
1176
1176
|
|
|
1177
1177
|
declare type Common<T> = Pick<T, keyof T>;
|
|
@@ -1250,7 +1250,7 @@ declare class DapDSAccordion extends DdsElement {
|
|
|
1250
1250
|
private renderButtons;
|
|
1251
1251
|
private renderContent;
|
|
1252
1252
|
private renderHeading;
|
|
1253
|
-
render():
|
|
1253
|
+
render(): TemplateResult_2;
|
|
1254
1254
|
}
|
|
1255
1255
|
|
|
1256
1256
|
/**
|
|
@@ -1283,7 +1283,7 @@ declare class DapDSAccordionGroup extends DdsElement {
|
|
|
1283
1283
|
static styles: CSSResult;
|
|
1284
1284
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
1285
1285
|
onAccordionChange(event: CustomEvent): void;
|
|
1286
|
-
render():
|
|
1286
|
+
render(): TemplateResult;
|
|
1287
1287
|
}
|
|
1288
1288
|
|
|
1289
1289
|
/**
|
|
@@ -1383,7 +1383,7 @@ declare class DapDSAnchorHeading extends DdsElement {
|
|
|
1383
1383
|
createRenderRoot(): this;
|
|
1384
1384
|
get elementId(): string;
|
|
1385
1385
|
get anchorTitle(): string;
|
|
1386
|
-
render():
|
|
1386
|
+
render(): TemplateResult;
|
|
1387
1387
|
}
|
|
1388
1388
|
|
|
1389
1389
|
/**
|
|
@@ -1449,7 +1449,7 @@ declare class DapDSAvatar extends DdsElement {
|
|
|
1449
1449
|
/** The height of the avatar. This will override the size. */
|
|
1450
1450
|
height: number;
|
|
1451
1451
|
static styles: CSSResult;
|
|
1452
|
-
render():
|
|
1452
|
+
render(): TemplateResult;
|
|
1453
1453
|
}
|
|
1454
1454
|
|
|
1455
1455
|
/**
|
|
@@ -1546,7 +1546,7 @@ declare class DapDSBadge extends DdsElement {
|
|
|
1546
1546
|
static styles: CSSResult;
|
|
1547
1547
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
1548
1548
|
private getIconSize;
|
|
1549
|
-
render():
|
|
1549
|
+
render(): TemplateResult;
|
|
1550
1550
|
}
|
|
1551
1551
|
|
|
1552
1552
|
/**
|
|
@@ -1673,7 +1673,7 @@ declare class DapDSBanner extends DdsElement {
|
|
|
1673
1673
|
static styles: CSSResult;
|
|
1674
1674
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
1675
1675
|
private onCloseClick;
|
|
1676
|
-
render():
|
|
1676
|
+
render(): TemplateResult | typeof nothing;
|
|
1677
1677
|
}
|
|
1678
1678
|
|
|
1679
1679
|
/**
|
|
@@ -1770,7 +1770,7 @@ declare class DapDSBreadcrumb extends DdsElement {
|
|
|
1770
1770
|
ariaLabelledBy?: string;
|
|
1771
1771
|
private cloneSeparator;
|
|
1772
1772
|
private handleSlotChange;
|
|
1773
|
-
render():
|
|
1773
|
+
render(): TemplateResult<1>;
|
|
1774
1774
|
getMobileView(): boolean;
|
|
1775
1775
|
}
|
|
1776
1776
|
|
|
@@ -1826,7 +1826,7 @@ declare class DapDSBreadcrumbItem extends DdsElement {
|
|
|
1826
1826
|
*/
|
|
1827
1827
|
variant: string;
|
|
1828
1828
|
static styles: CSSResult;
|
|
1829
|
-
render():
|
|
1829
|
+
render(): TemplateResult<1>;
|
|
1830
1830
|
}
|
|
1831
1831
|
|
|
1832
1832
|
/**
|
|
@@ -2052,7 +2052,7 @@ declare class DapDSButton extends GenericFormElement {
|
|
|
2052
2052
|
* @ignore
|
|
2053
2053
|
*/
|
|
2054
2054
|
get focusElement(): HTMLButtonElement | HTMLLinkElement;
|
|
2055
|
-
render():
|
|
2055
|
+
render(): TemplateResult;
|
|
2056
2056
|
private getLoadingIconSize;
|
|
2057
2057
|
private _getLoadingSpinner;
|
|
2058
2058
|
}
|
|
@@ -2277,10 +2277,10 @@ declare class DapDSCalendar extends DdsElement {
|
|
|
2277
2277
|
focusNextCell(element: DapDSCalendarCell, offset: number): void;
|
|
2278
2278
|
captureFocus(): void;
|
|
2279
2279
|
private getWeekdaysMin;
|
|
2280
|
-
renderCalendarGridHeader():
|
|
2281
|
-
renderCalendarGridBody(date: Dayjs):
|
|
2282
|
-
renderCalendarHeader():
|
|
2283
|
-
render():
|
|
2280
|
+
renderCalendarGridHeader(): TemplateResult;
|
|
2281
|
+
renderCalendarGridBody(date: Dayjs): TemplateResult;
|
|
2282
|
+
renderCalendarHeader(): TemplateResult;
|
|
2283
|
+
render(): TemplateResult;
|
|
2284
2284
|
}
|
|
2285
2285
|
|
|
2286
2286
|
/**
|
|
@@ -2317,7 +2317,7 @@ declare class DapDSCalendarCell extends DapDSCalendarCell_base {
|
|
|
2317
2317
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
2318
2318
|
protected updated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
2319
2319
|
getDayName(dateStr: string, locale: string): string;
|
|
2320
|
-
render():
|
|
2320
|
+
render(): TemplateResult;
|
|
2321
2321
|
}
|
|
2322
2322
|
|
|
2323
2323
|
declare const DapDSCalendarCell_base: typeof DdsElement & {
|
|
@@ -2444,9 +2444,9 @@ declare class DapDSCallout extends DdsElement {
|
|
|
2444
2444
|
opened: string;
|
|
2445
2445
|
static styles: CSSResult;
|
|
2446
2446
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
2447
|
-
getDefaultIcon(variant: CalloutVariant):
|
|
2447
|
+
getDefaultIcon(variant: CalloutVariant): TemplateResult;
|
|
2448
2448
|
handleClose(): void;
|
|
2449
|
-
render():
|
|
2449
|
+
render(): TemplateResult | typeof nothing;
|
|
2450
2450
|
}
|
|
2451
2451
|
|
|
2452
2452
|
/**
|
|
@@ -2533,7 +2533,8 @@ declare class DapDSCard extends DapDSCard_base {
|
|
|
2533
2533
|
/** The rel of the card link. */
|
|
2534
2534
|
rel: string;
|
|
2535
2535
|
static styles: CSSResult;
|
|
2536
|
-
|
|
2536
|
+
focus(options?: FocusOptions): void;
|
|
2537
|
+
render(): TemplateResult;
|
|
2537
2538
|
}
|
|
2538
2539
|
|
|
2539
2540
|
declare const DapDSCard_base: typeof DdsElement & {
|
|
@@ -2568,7 +2569,7 @@ declare class DapDSCardActions extends DapDSCardActions_base {
|
|
|
2568
2569
|
parentSized: string;
|
|
2569
2570
|
static styles: CSSResult;
|
|
2570
2571
|
constructor();
|
|
2571
|
-
render():
|
|
2572
|
+
render(): TemplateResult;
|
|
2572
2573
|
}
|
|
2573
2574
|
|
|
2574
2575
|
declare const DapDSCardActions_base: typeof DdsElement & {
|
|
@@ -2631,7 +2632,7 @@ declare class DapDSCardContent extends DapDSCardContent_base {
|
|
|
2631
2632
|
parentSized: string;
|
|
2632
2633
|
static styles: CSSResult;
|
|
2633
2634
|
constructor();
|
|
2634
|
-
render():
|
|
2635
|
+
render(): TemplateResult;
|
|
2635
2636
|
}
|
|
2636
2637
|
|
|
2637
2638
|
declare const DapDSCardContent_base: typeof DdsElement & {
|
|
@@ -2693,7 +2694,7 @@ declare class DapDSCardImage extends DdsElement {
|
|
|
2693
2694
|
/** The height of the image.*/
|
|
2694
2695
|
height: number;
|
|
2695
2696
|
static styles: CSSResult;
|
|
2696
|
-
render():
|
|
2697
|
+
render(): TemplateResult;
|
|
2697
2698
|
}
|
|
2698
2699
|
|
|
2699
2700
|
/**
|
|
@@ -2788,7 +2789,7 @@ declare class DapDSCardSubtitle extends DapDSCardSubtitle_base {
|
|
|
2788
2789
|
parentSized: string;
|
|
2789
2790
|
static styles: CSSResult;
|
|
2790
2791
|
constructor();
|
|
2791
|
-
render():
|
|
2792
|
+
render(): TemplateResult;
|
|
2792
2793
|
}
|
|
2793
2794
|
|
|
2794
2795
|
declare const DapDSCardSubtitle_base: typeof DdsElement & {
|
|
@@ -2882,7 +2883,7 @@ declare class DapDSCardTitle extends DapDSCardTitle_base {
|
|
|
2882
2883
|
noPadding: boolean;
|
|
2883
2884
|
static styles: CSSResult;
|
|
2884
2885
|
constructor();
|
|
2885
|
-
render():
|
|
2886
|
+
render(): TemplateResult;
|
|
2886
2887
|
}
|
|
2887
2888
|
|
|
2888
2889
|
declare const DapDSCardTitle_base: typeof DdsElement & {
|
|
@@ -3006,9 +3007,9 @@ declare class DapDSCheckbox extends LabeledChoiceElement {
|
|
|
3006
3007
|
private handleClick;
|
|
3007
3008
|
private handleInput;
|
|
3008
3009
|
get focusElement(): HTMLInputElement;
|
|
3009
|
-
renderIcon():
|
|
3010
|
+
renderIcon(): TemplateResult | null;
|
|
3010
3011
|
handleInvalid(event: Event): void;
|
|
3011
|
-
render():
|
|
3012
|
+
render(): TemplateResult;
|
|
3012
3013
|
}
|
|
3013
3014
|
|
|
3014
3015
|
/**
|
|
@@ -3157,7 +3158,7 @@ onDdsInput: EventName<DdsInputEvent>;
|
|
|
3157
3158
|
* @slot - The default slot for the options.
|
|
3158
3159
|
*/
|
|
3159
3160
|
declare class DapDSCombobox extends ComboboxBaseElement {
|
|
3160
|
-
render():
|
|
3161
|
+
render(): TemplateResult;
|
|
3161
3162
|
}
|
|
3162
3163
|
|
|
3163
3164
|
/**
|
|
@@ -3275,7 +3276,7 @@ declare class DapDSCommand extends DapDSPopup {
|
|
|
3275
3276
|
private _handleFocusOut;
|
|
3276
3277
|
focus(): void;
|
|
3277
3278
|
private _handleTriggerSlotChange;
|
|
3278
|
-
render():
|
|
3279
|
+
render(): TemplateResult;
|
|
3279
3280
|
}
|
|
3280
3281
|
|
|
3281
3282
|
/**
|
|
@@ -3307,7 +3308,7 @@ declare class DapDSCommandGroup extends DdsElement {
|
|
|
3307
3308
|
connectedCallback(): void;
|
|
3308
3309
|
disconnectedCallback(): void;
|
|
3309
3310
|
private _handleItemClick;
|
|
3310
|
-
render():
|
|
3311
|
+
render(): TemplateResult;
|
|
3311
3312
|
}
|
|
3312
3313
|
|
|
3313
3314
|
/**
|
|
@@ -3390,7 +3391,7 @@ declare class DapDSCommandItem extends DdsElement {
|
|
|
3390
3391
|
private _handleClick;
|
|
3391
3392
|
private _handleKeyDown;
|
|
3392
3393
|
focus(): void;
|
|
3393
|
-
render():
|
|
3394
|
+
render(): TemplateResult;
|
|
3394
3395
|
}
|
|
3395
3396
|
|
|
3396
3397
|
/**
|
|
@@ -3460,7 +3461,7 @@ declare class DapDSContentSwitcher extends DdsElement {
|
|
|
3460
3461
|
private getAllInputs;
|
|
3461
3462
|
private syncInputElements;
|
|
3462
3463
|
private handleInputClick;
|
|
3463
|
-
render():
|
|
3464
|
+
render(): TemplateResult;
|
|
3464
3465
|
}
|
|
3465
3466
|
|
|
3466
3467
|
/**
|
|
@@ -3496,7 +3497,7 @@ declare class DapDSContentSwitcherItem extends DdsElement {
|
|
|
3496
3497
|
/** The name of the segmented control item. */
|
|
3497
3498
|
name: string;
|
|
3498
3499
|
static styles: CSSResult;
|
|
3499
|
-
render():
|
|
3500
|
+
render(): TemplateResult;
|
|
3500
3501
|
}
|
|
3501
3502
|
|
|
3502
3503
|
/**
|
|
@@ -3608,7 +3609,7 @@ onDdsChange: EventName<DdsChangeEvent>;
|
|
|
3608
3609
|
declare class DapDSCopyBoxInput extends InputBaseElement {
|
|
3609
3610
|
constructor();
|
|
3610
3611
|
copyButtonAriaLabel?: string;
|
|
3611
|
-
render():
|
|
3612
|
+
render(): TemplateResult<1>;
|
|
3612
3613
|
onCopy(): void;
|
|
3613
3614
|
private copyToClipboard;
|
|
3614
3615
|
}
|
|
@@ -3712,7 +3713,7 @@ declare class DapDSDAPBadge extends DdsElement {
|
|
|
3712
3713
|
*/
|
|
3713
3714
|
variant: string;
|
|
3714
3715
|
static styles: CSSResult;
|
|
3715
|
-
render():
|
|
3716
|
+
render(): TemplateResult;
|
|
3716
3717
|
}
|
|
3717
3718
|
|
|
3718
3719
|
/**
|
|
@@ -3861,7 +3862,7 @@ declare class DapDSDataTable<T> extends DdsElement {
|
|
|
3861
3862
|
private columnsMemo;
|
|
3862
3863
|
private renderHeader;
|
|
3863
3864
|
private renderBody;
|
|
3864
|
-
protected render():
|
|
3865
|
+
protected render(): TemplateResult;
|
|
3865
3866
|
}
|
|
3866
3867
|
|
|
3867
3868
|
/**
|
|
@@ -4059,7 +4060,7 @@ declare class DapDSDatePicker extends GenericFormElement {
|
|
|
4059
4060
|
reportValidity(): boolean;
|
|
4060
4061
|
setValidity(): void;
|
|
4061
4062
|
handleInvalid(event: Event): void;
|
|
4062
|
-
render():
|
|
4063
|
+
render(): TemplateResult;
|
|
4063
4064
|
}
|
|
4064
4065
|
|
|
4065
4066
|
/**
|
|
@@ -4347,7 +4348,7 @@ declare class DapDSFileInput extends GenericFormElement {
|
|
|
4347
4348
|
onDragenter(event: DragEvent): void;
|
|
4348
4349
|
onDragover(event: DragEvent): void;
|
|
4349
4350
|
onDrop(event: DragEvent): void;
|
|
4350
|
-
render():
|
|
4351
|
+
render(): TemplateResult<1>;
|
|
4351
4352
|
}
|
|
4352
4353
|
|
|
4353
4354
|
/**
|
|
@@ -4378,7 +4379,7 @@ declare class DapDSFileInputList extends DapDSFileInputList_base {
|
|
|
4378
4379
|
private _handleFileChange;
|
|
4379
4380
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
4380
4381
|
removeFile(event: CustomEvent): void;
|
|
4381
|
-
render():
|
|
4382
|
+
render(): TemplateResult<1>;
|
|
4382
4383
|
}
|
|
4383
4384
|
|
|
4384
4385
|
declare const DapDSFileInputList_base: typeof DdsElement & {
|
|
@@ -4446,7 +4447,7 @@ declare class DapDSFileInputListItem extends DapDSFileInputListItem_base {
|
|
|
4446
4447
|
static styles: CSSResult;
|
|
4447
4448
|
delete(): void;
|
|
4448
4449
|
get formattedSize(): string;
|
|
4449
|
-
render():
|
|
4450
|
+
render(): TemplateResult<1>;
|
|
4450
4451
|
}
|
|
4451
4452
|
|
|
4452
4453
|
declare const DapDSFileInputListItem_base: typeof DdsElement & {
|
|
@@ -4582,7 +4583,7 @@ declare class DapDSFormLabel extends DapDSFormLabel_base {
|
|
|
4582
4583
|
renderAs: string;
|
|
4583
4584
|
static styles: CSSResult;
|
|
4584
4585
|
createRenderRoot(): this;
|
|
4585
|
-
render():
|
|
4586
|
+
render(): TemplateResult;
|
|
4586
4587
|
}
|
|
4587
4588
|
|
|
4588
4589
|
declare const DapDSFormLabel_base: {
|
|
@@ -4654,7 +4655,7 @@ declare class DapDSIcon extends DdsElement {
|
|
|
4654
4655
|
focusable?: boolean;
|
|
4655
4656
|
static styles: CSSResult;
|
|
4656
4657
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
4657
|
-
render():
|
|
4658
|
+
render(): TemplateResult;
|
|
4658
4659
|
private _getNamedIcon;
|
|
4659
4660
|
private _getSlotIcon;
|
|
4660
4661
|
private _getIconSizePx;
|
|
@@ -4744,7 +4745,7 @@ declare class DapDSIconButton extends DdsElement {
|
|
|
4744
4745
|
static styles: CSSResult;
|
|
4745
4746
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
4746
4747
|
focus(): void;
|
|
4747
|
-
render():
|
|
4748
|
+
render(): TemplateResult;
|
|
4748
4749
|
}
|
|
4749
4750
|
|
|
4750
4751
|
/**
|
|
@@ -4906,7 +4907,7 @@ export declare const DapDSIconReact: ReactWebComponent<DapDSIcon, {}>;
|
|
|
4906
4907
|
*/
|
|
4907
4908
|
declare class DapDSInput extends InputBaseElement {
|
|
4908
4909
|
constructor();
|
|
4909
|
-
render():
|
|
4910
|
+
render(): TemplateResult<1>;
|
|
4910
4911
|
}
|
|
4911
4912
|
|
|
4912
4913
|
/**
|
|
@@ -4945,7 +4946,7 @@ declare class DapDSInputGroup extends GenericFormElement {
|
|
|
4945
4946
|
handleLabelClick(): void;
|
|
4946
4947
|
private getItems;
|
|
4947
4948
|
attributeChangedCallback(name: string, _old: string | null, value: string | null): void;
|
|
4948
|
-
render():
|
|
4949
|
+
render(): TemplateResult;
|
|
4949
4950
|
private _handleSlotChange;
|
|
4950
4951
|
private _renderFeedback;
|
|
4951
4952
|
}
|
|
@@ -5151,6 +5152,8 @@ export declare const DapDSLabelReact: ReactWebComponent<DapDSLabel, {}>;
|
|
|
5151
5152
|
* @element dap-ds-link
|
|
5152
5153
|
* @title - Link
|
|
5153
5154
|
*
|
|
5155
|
+
* @event dds-click - Emitted when the link is clicked.
|
|
5156
|
+
*
|
|
5154
5157
|
* @slot - The text of the link.
|
|
5155
5158
|
*
|
|
5156
5159
|
* @csspart base - The main link container.
|
|
@@ -5231,7 +5234,8 @@ declare class DapDSLink extends DdsElement {
|
|
|
5231
5234
|
download: boolean;
|
|
5232
5235
|
static styles: CSSResult;
|
|
5233
5236
|
private handleClick;
|
|
5234
|
-
|
|
5237
|
+
focus(): void;
|
|
5238
|
+
render(): TemplateResult;
|
|
5235
5239
|
}
|
|
5236
5240
|
|
|
5237
5241
|
/**
|
|
@@ -5240,6 +5244,8 @@ declare class DapDSLink extends DdsElement {
|
|
|
5240
5244
|
* @element dap-ds-link
|
|
5241
5245
|
* @title - Link
|
|
5242
5246
|
*
|
|
5247
|
+
* @event dds-click - Emitted when the link is clicked.
|
|
5248
|
+
*
|
|
5243
5249
|
* @slot - The text of the link.
|
|
5244
5250
|
*
|
|
5245
5251
|
* @csspart base - The main link container.
|
|
@@ -5293,7 +5299,9 @@ declare class DapDSLink extends DdsElement {
|
|
|
5293
5299
|
*
|
|
5294
5300
|
* @cssproperty --dds-link-no-underline-text-decoration - The text decoration when underline is removed
|
|
5295
5301
|
*/
|
|
5296
|
-
export declare const DapDSLinkReact: ReactWebComponent<DapDSLink, {
|
|
5302
|
+
export declare const DapDSLinkReact: ReactWebComponent<DapDSLink, {
|
|
5303
|
+
onDdsClick: EventName<DdsClickEvent>;
|
|
5304
|
+
}>;
|
|
5297
5305
|
|
|
5298
5306
|
/**
|
|
5299
5307
|
* `dap-ds-list-item` is a custom banner component.
|
|
@@ -5399,7 +5407,7 @@ declare class DapDSListItem extends DdsElement {
|
|
|
5399
5407
|
static styles: CSSResult;
|
|
5400
5408
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
5401
5409
|
private getIcon;
|
|
5402
|
-
render():
|
|
5410
|
+
render(): TemplateResult;
|
|
5403
5411
|
}
|
|
5404
5412
|
|
|
5405
5413
|
/**
|
|
@@ -5512,7 +5520,7 @@ export declare const DapDSListItemReact: ReactWebComponent<DapDSListItem, {}>;
|
|
|
5512
5520
|
*/
|
|
5513
5521
|
declare class DapDSModal extends ModalBaseElement {
|
|
5514
5522
|
constructor();
|
|
5515
|
-
render():
|
|
5523
|
+
render(): TemplateResult<1>;
|
|
5516
5524
|
}
|
|
5517
5525
|
|
|
5518
5526
|
/**
|
|
@@ -5642,7 +5650,7 @@ declare class DapDSNotificationBadge extends DdsElement {
|
|
|
5642
5650
|
private handleMax;
|
|
5643
5651
|
private renderContent;
|
|
5644
5652
|
private get hide();
|
|
5645
|
-
render():
|
|
5653
|
+
render(): TemplateResult;
|
|
5646
5654
|
}
|
|
5647
5655
|
|
|
5648
5656
|
/**
|
|
@@ -5755,7 +5763,7 @@ declare class DapDSNumberInput extends InputBaseElement {
|
|
|
5755
5763
|
protected updated(changedProperties: PropertyValues): void;
|
|
5756
5764
|
private _decrement;
|
|
5757
5765
|
private _increment;
|
|
5758
|
-
render():
|
|
5766
|
+
render(): TemplateResult<1>;
|
|
5759
5767
|
}
|
|
5760
5768
|
|
|
5761
5769
|
/**
|
|
@@ -5882,7 +5890,7 @@ declare class DapDSOptionItem extends DapDSOptionItem_base {
|
|
|
5882
5890
|
protected updated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
5883
5891
|
private handleClick;
|
|
5884
5892
|
get optionText(): string;
|
|
5885
|
-
render():
|
|
5893
|
+
render(): TemplateResult<1>;
|
|
5886
5894
|
}
|
|
5887
5895
|
|
|
5888
5896
|
declare const DapDSOptionItem_base: typeof DdsElement & {
|
|
@@ -5996,7 +6004,7 @@ declare class DapDSOptionList extends DapDSOptionList_base {
|
|
|
5996
6004
|
captureFocus(key?: string): void;
|
|
5997
6005
|
removeFocus(): void;
|
|
5998
6006
|
private handleSlotChange;
|
|
5999
|
-
render():
|
|
6007
|
+
render(): TemplateResult;
|
|
6000
6008
|
}
|
|
6001
6009
|
|
|
6002
6010
|
declare const DapDSOptionList_base: typeof DdsElement & {
|
|
@@ -6041,7 +6049,7 @@ declare class DapDSOverlay extends DdsElement {
|
|
|
6041
6049
|
/** The open state of the overlay. */
|
|
6042
6050
|
open?: boolean;
|
|
6043
6051
|
static styles: CSSResult;
|
|
6044
|
-
render():
|
|
6052
|
+
render(): TemplateResult<1>;
|
|
6045
6053
|
}
|
|
6046
6054
|
|
|
6047
6055
|
/**
|
|
@@ -6126,7 +6134,7 @@ declare class DapDSPager extends DdsElement {
|
|
|
6126
6134
|
protected updated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
6127
6135
|
private updatePageIndex;
|
|
6128
6136
|
private updatePageSize;
|
|
6129
|
-
protected render():
|
|
6137
|
+
protected render(): TemplateResult<1>;
|
|
6130
6138
|
}
|
|
6131
6139
|
|
|
6132
6140
|
/**
|
|
@@ -6219,7 +6227,7 @@ declare class DapDSPasswordInput extends InputBaseElement {
|
|
|
6219
6227
|
constructor();
|
|
6220
6228
|
private _toggleVisibility;
|
|
6221
6229
|
private getIconSize;
|
|
6222
|
-
render():
|
|
6230
|
+
render(): TemplateResult<1>;
|
|
6223
6231
|
}
|
|
6224
6232
|
|
|
6225
6233
|
/**
|
|
@@ -6351,7 +6359,7 @@ declare class DapDSPopup extends DapDSPopup_base {
|
|
|
6351
6359
|
private stopUpdate;
|
|
6352
6360
|
disconnectedCallback(): void;
|
|
6353
6361
|
private updatePosition;
|
|
6354
|
-
render():
|
|
6362
|
+
render(): TemplateResult;
|
|
6355
6363
|
}
|
|
6356
6364
|
|
|
6357
6365
|
declare const DapDSPopup_base: typeof DdsElement & {
|
|
@@ -6461,7 +6469,7 @@ declare class DapDSRadioButton extends LabeledChoiceElement {
|
|
|
6461
6469
|
static styles: CSSResult;
|
|
6462
6470
|
private handleClick;
|
|
6463
6471
|
get focusElement(): HTMLInputElement;
|
|
6464
|
-
render():
|
|
6472
|
+
render(): TemplateResult;
|
|
6465
6473
|
}
|
|
6466
6474
|
|
|
6467
6475
|
/**
|
|
@@ -6595,7 +6603,7 @@ declare class DapDSRadioGroup extends GenericFormElement {
|
|
|
6595
6603
|
reportValidity(): boolean;
|
|
6596
6604
|
handleLabelClick(): void;
|
|
6597
6605
|
handleInvalid(event: Event): void;
|
|
6598
|
-
render():
|
|
6606
|
+
render(): TemplateResult;
|
|
6599
6607
|
private _renderFeedback;
|
|
6600
6608
|
}
|
|
6601
6609
|
|
|
@@ -6687,7 +6695,7 @@ declare class DapDSRating extends GenericFormElement {
|
|
|
6687
6695
|
_handleStarClick(value: number): void;
|
|
6688
6696
|
_handleStarHover(value: number): void;
|
|
6689
6697
|
_handleStarLeave(): void;
|
|
6690
|
-
render():
|
|
6698
|
+
render(): TemplateResult;
|
|
6691
6699
|
}
|
|
6692
6700
|
|
|
6693
6701
|
/**
|
|
@@ -6745,8 +6753,8 @@ declare class DapDSScrollArea extends DdsElement {
|
|
|
6745
6753
|
private startScrollTop;
|
|
6746
6754
|
firstUpdated(): void;
|
|
6747
6755
|
private setupScrollbar;
|
|
6748
|
-
getScrollbar(orientation: 'horizontal' | 'vertical'):
|
|
6749
|
-
render():
|
|
6756
|
+
getScrollbar(orientation: 'horizontal' | 'vertical'): TemplateResult;
|
|
6757
|
+
render(): TemplateResult;
|
|
6750
6758
|
}
|
|
6751
6759
|
|
|
6752
6760
|
/**
|
|
@@ -6837,7 +6845,7 @@ export declare const DapDSScrollAreaReact: ReactWebComponent<DapDSScrollArea, {}
|
|
|
6837
6845
|
*/
|
|
6838
6846
|
declare class DapDSSearch extends ComboboxBaseElement {
|
|
6839
6847
|
constructor();
|
|
6840
|
-
render():
|
|
6848
|
+
render(): TemplateResult;
|
|
6841
6849
|
}
|
|
6842
6850
|
|
|
6843
6851
|
/**
|
|
@@ -7027,9 +7035,9 @@ declare class DapDSSelect extends GenericFormElement {
|
|
|
7027
7035
|
setValidity(): void;
|
|
7028
7036
|
handleInvalid(event: Event): void;
|
|
7029
7037
|
private handleSelectedChange;
|
|
7030
|
-
renderTriggerElement():
|
|
7031
|
-
renderOptionList():
|
|
7032
|
-
render():
|
|
7038
|
+
renderTriggerElement(): TemplateResult;
|
|
7039
|
+
renderOptionList(): TemplateResult;
|
|
7040
|
+
render(): TemplateResult;
|
|
7033
7041
|
}
|
|
7034
7042
|
|
|
7035
7043
|
/**
|
|
@@ -7124,7 +7132,7 @@ declare class DapDSSideNav extends DdsElement {
|
|
|
7124
7132
|
attributeChangedCallback(name: string, _old: string | null, value: string | null): void;
|
|
7125
7133
|
private removeActive;
|
|
7126
7134
|
private setActive;
|
|
7127
|
-
render():
|
|
7135
|
+
render(): TemplateResult;
|
|
7128
7136
|
}
|
|
7129
7137
|
|
|
7130
7138
|
/**
|
|
@@ -7171,7 +7179,7 @@ declare class DapDSSideNavGroup extends DdsElement {
|
|
|
7171
7179
|
/** Whether the side navigation group is open */
|
|
7172
7180
|
open: boolean;
|
|
7173
7181
|
static styles: CSSResult;
|
|
7174
|
-
render():
|
|
7182
|
+
render(): TemplateResult;
|
|
7175
7183
|
}
|
|
7176
7184
|
|
|
7177
7185
|
/**
|
|
@@ -7246,7 +7254,7 @@ declare class DapDSSideNavItem extends DdsElement {
|
|
|
7246
7254
|
*/
|
|
7247
7255
|
spacing: Spacing_3;
|
|
7248
7256
|
static styles: CSSResult;
|
|
7249
|
-
render():
|
|
7257
|
+
render(): TemplateResult;
|
|
7250
7258
|
}
|
|
7251
7259
|
|
|
7252
7260
|
/**
|
|
@@ -7331,7 +7339,7 @@ declare class DapDSSkipLink extends DdsElement {
|
|
|
7331
7339
|
/** Whether the skip link should have an underline */
|
|
7332
7340
|
noUnderline: boolean;
|
|
7333
7341
|
static styles: CSSResult;
|
|
7334
|
-
render():
|
|
7342
|
+
render(): TemplateResult;
|
|
7335
7343
|
}
|
|
7336
7344
|
|
|
7337
7345
|
/**
|
|
@@ -7391,7 +7399,7 @@ declare class DapDSSnackbar extends DdsElement {
|
|
|
7391
7399
|
connectedCallback(): void;
|
|
7392
7400
|
disconnectedCallback(): void;
|
|
7393
7401
|
private _closeMessage;
|
|
7394
|
-
render():
|
|
7402
|
+
render(): TemplateResult;
|
|
7395
7403
|
}
|
|
7396
7404
|
|
|
7397
7405
|
/**
|
|
@@ -7432,7 +7440,7 @@ declare class DapDSSnackbarMessage extends DdsElement {
|
|
|
7432
7440
|
private getActions;
|
|
7433
7441
|
private getAlertTypeIcon;
|
|
7434
7442
|
private _close;
|
|
7435
|
-
render():
|
|
7443
|
+
render(): TemplateResult_2;
|
|
7436
7444
|
}
|
|
7437
7445
|
|
|
7438
7446
|
/**
|
|
@@ -7518,7 +7526,7 @@ declare class DapDSSpinner extends DdsElement {
|
|
|
7518
7526
|
/** Removes the text color */
|
|
7519
7527
|
noColor: boolean;
|
|
7520
7528
|
static styles: CSSResult;
|
|
7521
|
-
render():
|
|
7529
|
+
render(): TemplateResult<1>;
|
|
7522
7530
|
}
|
|
7523
7531
|
|
|
7524
7532
|
/**
|
|
@@ -7570,7 +7578,7 @@ declare class DapDSStack extends DdsElement {
|
|
|
7570
7578
|
get spacing(): Spacing;
|
|
7571
7579
|
static styles: CSSResult;
|
|
7572
7580
|
getMarginStyles(direction: CSSFlexDirection, spacing: number, startMargin?: boolean, endMargin?: boolean): string;
|
|
7573
|
-
render():
|
|
7581
|
+
render(): TemplateResult;
|
|
7574
7582
|
}
|
|
7575
7583
|
|
|
7576
7584
|
/**
|
|
@@ -7646,7 +7654,7 @@ declare class DapDSSwitch extends LabeledChoiceElement {
|
|
|
7646
7654
|
private handleClick;
|
|
7647
7655
|
get focusElement(): HTMLInputElement;
|
|
7648
7656
|
handleInvalid(event: Event): void;
|
|
7649
|
-
render():
|
|
7657
|
+
render(): TemplateResult;
|
|
7650
7658
|
}
|
|
7651
7659
|
|
|
7652
7660
|
/**
|
|
@@ -7724,7 +7732,7 @@ declare class DapDSTab extends DdsElement {
|
|
|
7724
7732
|
disabled: boolean;
|
|
7725
7733
|
private _selected;
|
|
7726
7734
|
firstUpdated(): void;
|
|
7727
|
-
render():
|
|
7735
|
+
render(): TemplateResult<1>;
|
|
7728
7736
|
}
|
|
7729
7737
|
|
|
7730
7738
|
/**
|
|
@@ -7781,7 +7789,7 @@ declare class DapDSTabGroup extends DdsElement {
|
|
|
7781
7789
|
handleSlotChange(event: Event): void;
|
|
7782
7790
|
handleClick(tabId: string | null): void;
|
|
7783
7791
|
handleKeyDown(event: KeyboardEvent): void;
|
|
7784
|
-
render():
|
|
7792
|
+
render(): TemplateResult<1>;
|
|
7785
7793
|
}
|
|
7786
7794
|
|
|
7787
7795
|
/**
|
|
@@ -7841,7 +7849,7 @@ declare class DapDSTable extends DdsElement {
|
|
|
7841
7849
|
caption: string;
|
|
7842
7850
|
static styles: CSSResult;
|
|
7843
7851
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
7844
|
-
render():
|
|
7852
|
+
render(): TemplateResult;
|
|
7845
7853
|
}
|
|
7846
7854
|
|
|
7847
7855
|
/**
|
|
@@ -7869,7 +7877,7 @@ declare class DapDSTableCell extends DdsElement {
|
|
|
7869
7877
|
last: boolean;
|
|
7870
7878
|
/** The html role of the cell */
|
|
7871
7879
|
role: string;
|
|
7872
|
-
render():
|
|
7880
|
+
render(): TemplateResult;
|
|
7873
7881
|
}
|
|
7874
7882
|
|
|
7875
7883
|
/**
|
|
@@ -7918,7 +7926,7 @@ declare class DapDSTableHeader extends DdsElement {
|
|
|
7918
7926
|
last: boolean;
|
|
7919
7927
|
/** The html role of the header cell */
|
|
7920
7928
|
role: string;
|
|
7921
|
-
render():
|
|
7929
|
+
render(): TemplateResult;
|
|
7922
7930
|
}
|
|
7923
7931
|
|
|
7924
7932
|
/**
|
|
@@ -7975,7 +7983,7 @@ declare class DapDSTableRow extends DdsElement {
|
|
|
7975
7983
|
role: string;
|
|
7976
7984
|
/**If the row is mobile design */
|
|
7977
7985
|
mobile: boolean;
|
|
7978
|
-
render():
|
|
7986
|
+
render(): TemplateResult;
|
|
7979
7987
|
}
|
|
7980
7988
|
|
|
7981
7989
|
/**
|
|
@@ -8177,7 +8185,7 @@ onDdsSelect: EventName<DdsSelectEvent>;
|
|
|
8177
8185
|
declare class DapDSTimeline extends DdsElement {
|
|
8178
8186
|
static styles: CSSResult;
|
|
8179
8187
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
8180
|
-
render():
|
|
8188
|
+
render(): TemplateResult;
|
|
8181
8189
|
}
|
|
8182
8190
|
|
|
8183
8191
|
/**
|
|
@@ -8202,7 +8210,7 @@ declare class DapDSTimeline extends DdsElement {
|
|
|
8202
8210
|
*/
|
|
8203
8211
|
declare class DapDSTimelineItem extends DdsElement {
|
|
8204
8212
|
static styles: CSSResult;
|
|
8205
|
-
render():
|
|
8213
|
+
render(): TemplateResult;
|
|
8206
8214
|
}
|
|
8207
8215
|
|
|
8208
8216
|
/**
|
|
@@ -8397,7 +8405,7 @@ declare class DapDSToggleButton extends GenericFormElement {
|
|
|
8397
8405
|
static styles: CSSResult;
|
|
8398
8406
|
protected firstUpdated(_changedProperties: PropertyValues): void;
|
|
8399
8407
|
private handleClick;
|
|
8400
|
-
render():
|
|
8408
|
+
render(): TemplateResult;
|
|
8401
8409
|
}
|
|
8402
8410
|
|
|
8403
8411
|
/**
|
|
@@ -8505,7 +8513,7 @@ declare class DapDSTooltip extends DdsElement {
|
|
|
8505
8513
|
private handleMouseOver;
|
|
8506
8514
|
private handleMouseOut;
|
|
8507
8515
|
private hasTrigger;
|
|
8508
|
-
render():
|
|
8516
|
+
render(): TemplateResult;
|
|
8509
8517
|
}
|
|
8510
8518
|
|
|
8511
8519
|
/**
|
|
@@ -8594,7 +8602,7 @@ declare class DapDSTray extends ModalBaseElement {
|
|
|
8594
8602
|
placement: 'left' | 'right' | 'top' | 'bottom';
|
|
8595
8603
|
constructor();
|
|
8596
8604
|
static styles: CSSResult;
|
|
8597
|
-
render():
|
|
8605
|
+
render(): TemplateResult<1>;
|
|
8598
8606
|
}
|
|
8599
8607
|
|
|
8600
8608
|
/**
|
|
@@ -8718,7 +8726,7 @@ declare class DapDSTypography extends DdsElement implements Common<TypographyPro
|
|
|
8718
8726
|
private _renderCaption;
|
|
8719
8727
|
private _renderDescription;
|
|
8720
8728
|
private _getElement;
|
|
8721
|
-
render():
|
|
8729
|
+
render(): TemplateResult | null;
|
|
8722
8730
|
}
|
|
8723
8731
|
|
|
8724
8732
|
/**
|
|
@@ -8773,6 +8781,8 @@ declare type DdsChangeEvent = CustomEvent<Record<PropertyKey, never>>;
|
|
|
8773
8781
|
|
|
8774
8782
|
declare type DdsClearEvent = CustomEvent<Record<PropertyKey, never>>;
|
|
8775
8783
|
|
|
8784
|
+
declare type DdsClickEvent = CustomEvent<Record<PropertyKey, never>>;
|
|
8785
|
+
|
|
8776
8786
|
declare type DdsClosedEvent = CustomEvent<Record<PropertyKey, never>>;
|
|
8777
8787
|
|
|
8778
8788
|
declare type DdsCloseEvent = CustomEvent<{
|
|
@@ -8939,7 +8949,7 @@ declare class DocumentClipboardLine extends DdsElement {
|
|
|
8939
8949
|
focusable?: boolean;
|
|
8940
8950
|
static styles: CSSResult;
|
|
8941
8951
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
8942
|
-
render():
|
|
8952
|
+
render(): TemplateResult;
|
|
8943
8953
|
}
|
|
8944
8954
|
|
|
8945
8955
|
/**
|
|
@@ -8989,7 +8999,7 @@ declare class DocumentFileCopyLine extends DdsElement {
|
|
|
8989
8999
|
focusable?: boolean;
|
|
8990
9000
|
static styles: CSSResult;
|
|
8991
9001
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
8992
|
-
render():
|
|
9002
|
+
render(): TemplateResult;
|
|
8993
9003
|
}
|
|
8994
9004
|
|
|
8995
9005
|
/**
|
|
@@ -9155,8 +9165,8 @@ declare class InputBaseElement extends GenericFormElement {
|
|
|
9155
9165
|
onKeydown(event: KeyboardEvent): void;
|
|
9156
9166
|
get focusElement(): HTMLInputElement;
|
|
9157
9167
|
handleInvalid(event: Event): void;
|
|
9158
|
-
renderDefaultContent():
|
|
9159
|
-
renderInput(content?: unknown):
|
|
9168
|
+
renderDefaultContent(): TemplateResult<1>;
|
|
9169
|
+
renderInput(content?: unknown): TemplateResult<1>;
|
|
9160
9170
|
private _renderFeedback;
|
|
9161
9171
|
}
|
|
9162
9172
|
|
|
@@ -9273,7 +9283,7 @@ declare class ModalBaseElement extends DdsElement {
|
|
|
9273
9283
|
private getActiveElement;
|
|
9274
9284
|
private getElementFromElement;
|
|
9275
9285
|
private handleFocusTrap;
|
|
9276
|
-
renderModal():
|
|
9286
|
+
renderModal(): TemplateResult<1>;
|
|
9277
9287
|
}
|
|
9278
9288
|
|
|
9279
9289
|
/**
|
|
@@ -9305,7 +9315,7 @@ declare class OthersCookieLine extends DdsElement {
|
|
|
9305
9315
|
focusable?: boolean;
|
|
9306
9316
|
static styles: CSSResult;
|
|
9307
9317
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
9308
|
-
render():
|
|
9318
|
+
render(): TemplateResult;
|
|
9309
9319
|
}
|
|
9310
9320
|
|
|
9311
9321
|
/**
|
|
@@ -9377,7 +9387,7 @@ declare class SystemAddLine extends DdsElement {
|
|
|
9377
9387
|
focusable?: boolean;
|
|
9378
9388
|
static styles: CSSResult;
|
|
9379
9389
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
9380
|
-
render():
|
|
9390
|
+
render(): TemplateResult;
|
|
9381
9391
|
}
|
|
9382
9392
|
|
|
9383
9393
|
/**
|
|
@@ -9427,7 +9437,7 @@ declare class SystemAlertFill extends DdsElement {
|
|
|
9427
9437
|
focusable?: boolean;
|
|
9428
9438
|
static styles: CSSResult;
|
|
9429
9439
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
9430
|
-
render():
|
|
9440
|
+
render(): TemplateResult;
|
|
9431
9441
|
}
|
|
9432
9442
|
|
|
9433
9443
|
/**
|
|
@@ -9477,7 +9487,7 @@ declare class SystemAlertLine extends DdsElement {
|
|
|
9477
9487
|
focusable?: boolean;
|
|
9478
9488
|
static styles: CSSResult;
|
|
9479
9489
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
9480
|
-
render():
|
|
9490
|
+
render(): TemplateResult;
|
|
9481
9491
|
}
|
|
9482
9492
|
|
|
9483
9493
|
/**
|
|
@@ -9527,7 +9537,7 @@ declare class SystemCheckboxBlankCircleFill extends DdsElement {
|
|
|
9527
9537
|
focusable?: boolean;
|
|
9528
9538
|
static styles: CSSResult;
|
|
9529
9539
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
9530
|
-
render():
|
|
9540
|
+
render(): TemplateResult;
|
|
9531
9541
|
}
|
|
9532
9542
|
|
|
9533
9543
|
/**
|
|
@@ -9559,7 +9569,7 @@ declare class SystemCheckboxBlankCircleFillCheck extends DdsElement {
|
|
|
9559
9569
|
focusable?: boolean;
|
|
9560
9570
|
static styles: CSSResult;
|
|
9561
9571
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
9562
|
-
render():
|
|
9572
|
+
render(): TemplateResult;
|
|
9563
9573
|
}
|
|
9564
9574
|
|
|
9565
9575
|
/**
|
|
@@ -9627,7 +9637,7 @@ declare class SystemCheckboxBlankCircleLine extends DdsElement {
|
|
|
9627
9637
|
focusable?: boolean;
|
|
9628
9638
|
static styles: CSSResult;
|
|
9629
9639
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
9630
|
-
render():
|
|
9640
|
+
render(): TemplateResult;
|
|
9631
9641
|
}
|
|
9632
9642
|
|
|
9633
9643
|
/**
|
|
@@ -9677,7 +9687,7 @@ declare class SystemCheckboxCircleFill extends DdsElement {
|
|
|
9677
9687
|
focusable?: boolean;
|
|
9678
9688
|
static styles: CSSResult;
|
|
9679
9689
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
9680
|
-
render():
|
|
9690
|
+
render(): TemplateResult;
|
|
9681
9691
|
}
|
|
9682
9692
|
|
|
9683
9693
|
/**
|
|
@@ -9727,7 +9737,7 @@ declare class SystemCheckboxCircleLine extends DdsElement {
|
|
|
9727
9737
|
focusable?: boolean;
|
|
9728
9738
|
static styles: CSSResult;
|
|
9729
9739
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
9730
|
-
render():
|
|
9740
|
+
render(): TemplateResult;
|
|
9731
9741
|
}
|
|
9732
9742
|
|
|
9733
9743
|
/**
|
|
@@ -9777,7 +9787,7 @@ declare class SystemCheckLine extends DdsElement {
|
|
|
9777
9787
|
focusable?: boolean;
|
|
9778
9788
|
static styles: CSSResult;
|
|
9779
9789
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
9780
|
-
render():
|
|
9790
|
+
render(): TemplateResult;
|
|
9781
9791
|
}
|
|
9782
9792
|
|
|
9783
9793
|
/**
|
|
@@ -9809,7 +9819,7 @@ declare class SystemCheckLine2 extends DdsElement {
|
|
|
9809
9819
|
focusable?: boolean;
|
|
9810
9820
|
static styles: CSSResult;
|
|
9811
9821
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
9812
|
-
render():
|
|
9822
|
+
render(): TemplateResult;
|
|
9813
9823
|
}
|
|
9814
9824
|
|
|
9815
9825
|
/**
|
|
@@ -9877,7 +9887,7 @@ declare class SystemCloseCircleFill extends DdsElement {
|
|
|
9877
9887
|
focusable?: boolean;
|
|
9878
9888
|
static styles: CSSResult;
|
|
9879
9889
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
9880
|
-
render():
|
|
9890
|
+
render(): TemplateResult;
|
|
9881
9891
|
}
|
|
9882
9892
|
|
|
9883
9893
|
/**
|
|
@@ -9927,7 +9937,7 @@ declare class SystemCloseCircleLine extends DdsElement {
|
|
|
9927
9937
|
focusable?: boolean;
|
|
9928
9938
|
static styles: CSSResult;
|
|
9929
9939
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
9930
|
-
render():
|
|
9940
|
+
render(): TemplateResult;
|
|
9931
9941
|
}
|
|
9932
9942
|
|
|
9933
9943
|
/**
|
|
@@ -9977,7 +9987,7 @@ declare class SystemCloseFill extends DdsElement {
|
|
|
9977
9987
|
focusable?: boolean;
|
|
9978
9988
|
static styles: CSSResult;
|
|
9979
9989
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
9980
|
-
render():
|
|
9990
|
+
render(): TemplateResult;
|
|
9981
9991
|
}
|
|
9982
9992
|
|
|
9983
9993
|
/**
|
|
@@ -10027,7 +10037,7 @@ declare class SystemCloseLine extends DdsElement {
|
|
|
10027
10037
|
focusable?: boolean;
|
|
10028
10038
|
static styles: CSSResult;
|
|
10029
10039
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
10030
|
-
render():
|
|
10040
|
+
render(): TemplateResult;
|
|
10031
10041
|
}
|
|
10032
10042
|
|
|
10033
10043
|
/**
|
|
@@ -10077,7 +10087,7 @@ declare class SystemDownloadLine extends DdsElement {
|
|
|
10077
10087
|
focusable?: boolean;
|
|
10078
10088
|
static styles: CSSResult;
|
|
10079
10089
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
10080
|
-
render():
|
|
10090
|
+
render(): TemplateResult;
|
|
10081
10091
|
}
|
|
10082
10092
|
|
|
10083
10093
|
/**
|
|
@@ -10127,7 +10137,7 @@ declare class SystemErrorWarningFill extends DdsElement {
|
|
|
10127
10137
|
focusable?: boolean;
|
|
10128
10138
|
static styles: CSSResult;
|
|
10129
10139
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
10130
|
-
render():
|
|
10140
|
+
render(): TemplateResult;
|
|
10131
10141
|
}
|
|
10132
10142
|
|
|
10133
10143
|
/**
|
|
@@ -10177,7 +10187,7 @@ declare class SystemErrorWarningLine extends DdsElement {
|
|
|
10177
10187
|
focusable?: boolean;
|
|
10178
10188
|
static styles: CSSResult;
|
|
10179
10189
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
10180
|
-
render():
|
|
10190
|
+
render(): TemplateResult;
|
|
10181
10191
|
}
|
|
10182
10192
|
|
|
10183
10193
|
/**
|
|
@@ -10227,7 +10237,7 @@ declare class SystemExternalLinkLine extends DdsElement {
|
|
|
10227
10237
|
focusable?: boolean;
|
|
10228
10238
|
static styles: CSSResult;
|
|
10229
10239
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
10230
|
-
render():
|
|
10240
|
+
render(): TemplateResult;
|
|
10231
10241
|
}
|
|
10232
10242
|
|
|
10233
10243
|
/**
|
|
@@ -10277,7 +10287,7 @@ declare class SystemEyeLine extends DdsElement {
|
|
|
10277
10287
|
focusable?: boolean;
|
|
10278
10288
|
static styles: CSSResult;
|
|
10279
10289
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
10280
|
-
render():
|
|
10290
|
+
render(): TemplateResult;
|
|
10281
10291
|
}
|
|
10282
10292
|
|
|
10283
10293
|
/**
|
|
@@ -10327,7 +10337,7 @@ declare class SystemEyeOffLine extends DdsElement {
|
|
|
10327
10337
|
focusable?: boolean;
|
|
10328
10338
|
static styles: CSSResult;
|
|
10329
10339
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
10330
|
-
render():
|
|
10340
|
+
render(): TemplateResult;
|
|
10331
10341
|
}
|
|
10332
10342
|
|
|
10333
10343
|
/**
|
|
@@ -10377,7 +10387,7 @@ declare class SystemForbidFill extends DdsElement {
|
|
|
10377
10387
|
focusable?: boolean;
|
|
10378
10388
|
static styles: CSSResult;
|
|
10379
10389
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
10380
|
-
render():
|
|
10390
|
+
render(): TemplateResult;
|
|
10381
10391
|
}
|
|
10382
10392
|
|
|
10383
10393
|
/**
|
|
@@ -10427,7 +10437,7 @@ declare class SystemInformation2Fill extends DdsElement {
|
|
|
10427
10437
|
focusable?: boolean;
|
|
10428
10438
|
static styles: CSSResult;
|
|
10429
10439
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
10430
|
-
render():
|
|
10440
|
+
render(): TemplateResult;
|
|
10431
10441
|
}
|
|
10432
10442
|
|
|
10433
10443
|
/**
|
|
@@ -10477,7 +10487,7 @@ declare class SystemInformationFill extends DdsElement {
|
|
|
10477
10487
|
focusable?: boolean;
|
|
10478
10488
|
static styles: CSSResult;
|
|
10479
10489
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
10480
|
-
render():
|
|
10490
|
+
render(): TemplateResult;
|
|
10481
10491
|
}
|
|
10482
10492
|
|
|
10483
10493
|
/**
|
|
@@ -10527,7 +10537,7 @@ declare class SystemInformationLine extends DdsElement {
|
|
|
10527
10537
|
focusable?: boolean;
|
|
10528
10538
|
static styles: CSSResult;
|
|
10529
10539
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
10530
|
-
render():
|
|
10540
|
+
render(): TemplateResult;
|
|
10531
10541
|
}
|
|
10532
10542
|
|
|
10533
10543
|
/**
|
|
@@ -10577,7 +10587,7 @@ declare class SystemLightbulbFill extends DdsElement {
|
|
|
10577
10587
|
focusable?: boolean;
|
|
10578
10588
|
static styles: CSSResult;
|
|
10579
10589
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
10580
|
-
render():
|
|
10590
|
+
render(): TemplateResult;
|
|
10581
10591
|
}
|
|
10582
10592
|
|
|
10583
10593
|
/**
|
|
@@ -10627,7 +10637,7 @@ declare class SystemLoadingSpinner extends DdsElement {
|
|
|
10627
10637
|
focusable?: boolean;
|
|
10628
10638
|
static styles: CSSResult;
|
|
10629
10639
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
10630
|
-
render():
|
|
10640
|
+
render(): TemplateResult;
|
|
10631
10641
|
}
|
|
10632
10642
|
|
|
10633
10643
|
/**
|
|
@@ -10648,6 +10658,106 @@ declare class SystemLoadingSpinner extends DdsElement {
|
|
|
10648
10658
|
*/
|
|
10649
10659
|
export declare const SystemLoadingSpinnerReact: ReactWebComponent<SystemLoadingSpinner, {}>;
|
|
10650
10660
|
|
|
10661
|
+
/**
|
|
10662
|
+
* `dap-ds-icon-lock-fill`
|
|
10663
|
+
* @summary An icon
|
|
10664
|
+
* @element dap-ds-icon-lock-fill
|
|
10665
|
+
* @title - SystemLockFill
|
|
10666
|
+
* @group icon
|
|
10667
|
+
* @icontype system
|
|
10668
|
+
*
|
|
10669
|
+
* @attribute {number} size - (optional) The width and height in pixels
|
|
10670
|
+
* @attribute {boolean} selected - (optional) Sets the icon color via the `fill` attribute
|
|
10671
|
+
* @attribute {boolean} decorative - (optional) If `true` the SVG element will get `aria-hidden="true"`
|
|
10672
|
+
* @attribute {string} accessibilityTitle - (optional) When using the icon standalone, make it meaningful for accessibility
|
|
10673
|
+
* @attribute {boolean} focusable - (optional) If `true` the icon can receive focus
|
|
10674
|
+
*
|
|
10675
|
+
* @csspart base - The main icon container.
|
|
10676
|
+
*/
|
|
10677
|
+
declare class SystemLockFill extends DdsElement {
|
|
10678
|
+
/** (optional) The width and height in pixels */
|
|
10679
|
+
size?: number | undefined;
|
|
10680
|
+
/** (optional) Sets the icon color via the `fill` attribute */
|
|
10681
|
+
selected?: boolean;
|
|
10682
|
+
/** (optional) If `true` the SVG element will get `aria-hidden="true"` */
|
|
10683
|
+
decorative?: boolean;
|
|
10684
|
+
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
10685
|
+
accessibilityTitle?: string;
|
|
10686
|
+
/** (optional) If `true` the icon can receive focus */
|
|
10687
|
+
focusable?: boolean;
|
|
10688
|
+
static styles: CSSResult;
|
|
10689
|
+
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
10690
|
+
render(): TemplateResult;
|
|
10691
|
+
}
|
|
10692
|
+
|
|
10693
|
+
/**
|
|
10694
|
+
* `dap-ds-icon-lock-fill`
|
|
10695
|
+
* @summary An icon
|
|
10696
|
+
* @element dap-ds-icon-lock-fill
|
|
10697
|
+
* @title - SystemLockFill
|
|
10698
|
+
* @group icon
|
|
10699
|
+
* @icontype system
|
|
10700
|
+
*
|
|
10701
|
+
* @attribute {number} size - (optional) The width and height in pixels
|
|
10702
|
+
* @attribute {boolean} selected - (optional) Sets the icon color via the `fill` attribute
|
|
10703
|
+
* @attribute {boolean} decorative - (optional) If `true` the SVG element will get `aria-hidden="true"`
|
|
10704
|
+
* @attribute {string} accessibilityTitle - (optional) When using the icon standalone, make it meaningful for accessibility
|
|
10705
|
+
* @attribute {boolean} focusable - (optional) If `true` the icon can receive focus
|
|
10706
|
+
*
|
|
10707
|
+
* @csspart base - The main icon container.
|
|
10708
|
+
*/
|
|
10709
|
+
export declare const SystemLockFillReact: ReactWebComponent<SystemLockFill, {}>;
|
|
10710
|
+
|
|
10711
|
+
/**
|
|
10712
|
+
* `dap-ds-icon-lock-line`
|
|
10713
|
+
* @summary An icon
|
|
10714
|
+
* @element dap-ds-icon-lock-line
|
|
10715
|
+
* @title - SystemLockLine
|
|
10716
|
+
* @group icon
|
|
10717
|
+
* @icontype system
|
|
10718
|
+
*
|
|
10719
|
+
* @attribute {number} size - (optional) The width and height in pixels
|
|
10720
|
+
* @attribute {boolean} selected - (optional) Sets the icon color via the `fill` attribute
|
|
10721
|
+
* @attribute {boolean} decorative - (optional) If `true` the SVG element will get `aria-hidden="true"`
|
|
10722
|
+
* @attribute {string} accessibilityTitle - (optional) When using the icon standalone, make it meaningful for accessibility
|
|
10723
|
+
* @attribute {boolean} focusable - (optional) If `true` the icon can receive focus
|
|
10724
|
+
*
|
|
10725
|
+
* @csspart base - The main icon container.
|
|
10726
|
+
*/
|
|
10727
|
+
declare class SystemLockLine extends DdsElement {
|
|
10728
|
+
/** (optional) The width and height in pixels */
|
|
10729
|
+
size?: number | undefined;
|
|
10730
|
+
/** (optional) Sets the icon color via the `fill` attribute */
|
|
10731
|
+
selected?: boolean;
|
|
10732
|
+
/** (optional) If `true` the SVG element will get `aria-hidden="true"` */
|
|
10733
|
+
decorative?: boolean;
|
|
10734
|
+
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
10735
|
+
accessibilityTitle?: string;
|
|
10736
|
+
/** (optional) If `true` the icon can receive focus */
|
|
10737
|
+
focusable?: boolean;
|
|
10738
|
+
static styles: CSSResult;
|
|
10739
|
+
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
10740
|
+
render(): TemplateResult;
|
|
10741
|
+
}
|
|
10742
|
+
|
|
10743
|
+
/**
|
|
10744
|
+
* `dap-ds-icon-lock-line`
|
|
10745
|
+
* @summary An icon
|
|
10746
|
+
* @element dap-ds-icon-lock-line
|
|
10747
|
+
* @title - SystemLockLine
|
|
10748
|
+
* @group icon
|
|
10749
|
+
* @icontype system
|
|
10750
|
+
*
|
|
10751
|
+
* @attribute {number} size - (optional) The width and height in pixels
|
|
10752
|
+
* @attribute {boolean} selected - (optional) Sets the icon color via the `fill` attribute
|
|
10753
|
+
* @attribute {boolean} decorative - (optional) If `true` the SVG element will get `aria-hidden="true"`
|
|
10754
|
+
* @attribute {string} accessibilityTitle - (optional) When using the icon standalone, make it meaningful for accessibility
|
|
10755
|
+
* @attribute {boolean} focusable - (optional) If `true` the icon can receive focus
|
|
10756
|
+
*
|
|
10757
|
+
* @csspart base - The main icon container.
|
|
10758
|
+
*/
|
|
10759
|
+
export declare const SystemLockLineReact: ReactWebComponent<SystemLockLine, {}>;
|
|
10760
|
+
|
|
10651
10761
|
/**
|
|
10652
10762
|
* `dap-ds-icon-menu-line`
|
|
10653
10763
|
* @summary An icon
|
|
@@ -10677,7 +10787,7 @@ declare class SystemMenuLine extends DdsElement {
|
|
|
10677
10787
|
focusable?: boolean;
|
|
10678
10788
|
static styles: CSSResult;
|
|
10679
10789
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
10680
|
-
render():
|
|
10790
|
+
render(): TemplateResult;
|
|
10681
10791
|
}
|
|
10682
10792
|
|
|
10683
10793
|
/**
|
|
@@ -10727,7 +10837,7 @@ declare class SystemMenuLineS extends DdsElement {
|
|
|
10727
10837
|
focusable?: boolean;
|
|
10728
10838
|
static styles: CSSResult;
|
|
10729
10839
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
10730
|
-
render():
|
|
10840
|
+
render(): TemplateResult;
|
|
10731
10841
|
}
|
|
10732
10842
|
|
|
10733
10843
|
/**
|
|
@@ -10777,7 +10887,7 @@ declare class SystemSearchLine extends DdsElement {
|
|
|
10777
10887
|
focusable?: boolean;
|
|
10778
10888
|
static styles: CSSResult;
|
|
10779
10889
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
10780
|
-
render():
|
|
10890
|
+
render(): TemplateResult;
|
|
10781
10891
|
}
|
|
10782
10892
|
|
|
10783
10893
|
/**
|
|
@@ -10798,6 +10908,106 @@ declare class SystemSearchLine extends DdsElement {
|
|
|
10798
10908
|
*/
|
|
10799
10909
|
export declare const SystemSearchLineReact: ReactWebComponent<SystemSearchLine, {}>;
|
|
10800
10910
|
|
|
10911
|
+
/**
|
|
10912
|
+
* `dap-ds-icon-shield-check-fill`
|
|
10913
|
+
* @summary An icon
|
|
10914
|
+
* @element dap-ds-icon-shield-check-fill
|
|
10915
|
+
* @title - SystemShieldCheckFill
|
|
10916
|
+
* @group icon
|
|
10917
|
+
* @icontype system
|
|
10918
|
+
*
|
|
10919
|
+
* @attribute {number} size - (optional) The width and height in pixels
|
|
10920
|
+
* @attribute {boolean} selected - (optional) Sets the icon color via the `fill` attribute
|
|
10921
|
+
* @attribute {boolean} decorative - (optional) If `true` the SVG element will get `aria-hidden="true"`
|
|
10922
|
+
* @attribute {string} accessibilityTitle - (optional) When using the icon standalone, make it meaningful for accessibility
|
|
10923
|
+
* @attribute {boolean} focusable - (optional) If `true` the icon can receive focus
|
|
10924
|
+
*
|
|
10925
|
+
* @csspart base - The main icon container.
|
|
10926
|
+
*/
|
|
10927
|
+
declare class SystemShieldCheckFill extends DdsElement {
|
|
10928
|
+
/** (optional) The width and height in pixels */
|
|
10929
|
+
size?: number | undefined;
|
|
10930
|
+
/** (optional) Sets the icon color via the `fill` attribute */
|
|
10931
|
+
selected?: boolean;
|
|
10932
|
+
/** (optional) If `true` the SVG element will get `aria-hidden="true"` */
|
|
10933
|
+
decorative?: boolean;
|
|
10934
|
+
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
10935
|
+
accessibilityTitle?: string;
|
|
10936
|
+
/** (optional) If `true` the icon can receive focus */
|
|
10937
|
+
focusable?: boolean;
|
|
10938
|
+
static styles: CSSResult;
|
|
10939
|
+
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
10940
|
+
render(): TemplateResult;
|
|
10941
|
+
}
|
|
10942
|
+
|
|
10943
|
+
/**
|
|
10944
|
+
* `dap-ds-icon-shield-check-fill`
|
|
10945
|
+
* @summary An icon
|
|
10946
|
+
* @element dap-ds-icon-shield-check-fill
|
|
10947
|
+
* @title - SystemShieldCheckFill
|
|
10948
|
+
* @group icon
|
|
10949
|
+
* @icontype system
|
|
10950
|
+
*
|
|
10951
|
+
* @attribute {number} size - (optional) The width and height in pixels
|
|
10952
|
+
* @attribute {boolean} selected - (optional) Sets the icon color via the `fill` attribute
|
|
10953
|
+
* @attribute {boolean} decorative - (optional) If `true` the SVG element will get `aria-hidden="true"`
|
|
10954
|
+
* @attribute {string} accessibilityTitle - (optional) When using the icon standalone, make it meaningful for accessibility
|
|
10955
|
+
* @attribute {boolean} focusable - (optional) If `true` the icon can receive focus
|
|
10956
|
+
*
|
|
10957
|
+
* @csspart base - The main icon container.
|
|
10958
|
+
*/
|
|
10959
|
+
export declare const SystemShieldCheckFillReact: ReactWebComponent<SystemShieldCheckFill, {}>;
|
|
10960
|
+
|
|
10961
|
+
/**
|
|
10962
|
+
* `dap-ds-icon-shield-check-line`
|
|
10963
|
+
* @summary An icon
|
|
10964
|
+
* @element dap-ds-icon-shield-check-line
|
|
10965
|
+
* @title - SystemShieldCheckLine
|
|
10966
|
+
* @group icon
|
|
10967
|
+
* @icontype system
|
|
10968
|
+
*
|
|
10969
|
+
* @attribute {number} size - (optional) The width and height in pixels
|
|
10970
|
+
* @attribute {boolean} selected - (optional) Sets the icon color via the `fill` attribute
|
|
10971
|
+
* @attribute {boolean} decorative - (optional) If `true` the SVG element will get `aria-hidden="true"`
|
|
10972
|
+
* @attribute {string} accessibilityTitle - (optional) When using the icon standalone, make it meaningful for accessibility
|
|
10973
|
+
* @attribute {boolean} focusable - (optional) If `true` the icon can receive focus
|
|
10974
|
+
*
|
|
10975
|
+
* @csspart base - The main icon container.
|
|
10976
|
+
*/
|
|
10977
|
+
declare class SystemShieldCheckLine extends DdsElement {
|
|
10978
|
+
/** (optional) The width and height in pixels */
|
|
10979
|
+
size?: number | undefined;
|
|
10980
|
+
/** (optional) Sets the icon color via the `fill` attribute */
|
|
10981
|
+
selected?: boolean;
|
|
10982
|
+
/** (optional) If `true` the SVG element will get `aria-hidden="true"` */
|
|
10983
|
+
decorative?: boolean;
|
|
10984
|
+
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
10985
|
+
accessibilityTitle?: string;
|
|
10986
|
+
/** (optional) If `true` the icon can receive focus */
|
|
10987
|
+
focusable?: boolean;
|
|
10988
|
+
static styles: CSSResult;
|
|
10989
|
+
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
10990
|
+
render(): TemplateResult;
|
|
10991
|
+
}
|
|
10992
|
+
|
|
10993
|
+
/**
|
|
10994
|
+
* `dap-ds-icon-shield-check-line`
|
|
10995
|
+
* @summary An icon
|
|
10996
|
+
* @element dap-ds-icon-shield-check-line
|
|
10997
|
+
* @title - SystemShieldCheckLine
|
|
10998
|
+
* @group icon
|
|
10999
|
+
* @icontype system
|
|
11000
|
+
*
|
|
11001
|
+
* @attribute {number} size - (optional) The width and height in pixels
|
|
11002
|
+
* @attribute {boolean} selected - (optional) Sets the icon color via the `fill` attribute
|
|
11003
|
+
* @attribute {boolean} decorative - (optional) If `true` the SVG element will get `aria-hidden="true"`
|
|
11004
|
+
* @attribute {string} accessibilityTitle - (optional) When using the icon standalone, make it meaningful for accessibility
|
|
11005
|
+
* @attribute {boolean} focusable - (optional) If `true` the icon can receive focus
|
|
11006
|
+
*
|
|
11007
|
+
* @csspart base - The main icon container.
|
|
11008
|
+
*/
|
|
11009
|
+
export declare const SystemShieldCheckLineReact: ReactWebComponent<SystemShieldCheckLine, {}>;
|
|
11010
|
+
|
|
10801
11011
|
/**
|
|
10802
11012
|
* `dap-ds-icon-star-fill`
|
|
10803
11013
|
* @summary An icon
|
|
@@ -10827,7 +11037,7 @@ declare class SystemStarFill extends DdsElement {
|
|
|
10827
11037
|
focusable?: boolean;
|
|
10828
11038
|
static styles: CSSResult;
|
|
10829
11039
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
10830
|
-
render():
|
|
11040
|
+
render(): TemplateResult;
|
|
10831
11041
|
}
|
|
10832
11042
|
|
|
10833
11043
|
/**
|
|
@@ -10877,7 +11087,7 @@ declare class SystemSubtractLine extends DdsElement {
|
|
|
10877
11087
|
focusable?: boolean;
|
|
10878
11088
|
static styles: CSSResult;
|
|
10879
11089
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
10880
|
-
render():
|
|
11090
|
+
render(): TemplateResult;
|
|
10881
11091
|
}
|
|
10882
11092
|
|
|
10883
11093
|
/**
|
|
@@ -10909,7 +11119,7 @@ declare class SystemSubtractLine2 extends DdsElement {
|
|
|
10909
11119
|
focusable?: boolean;
|
|
10910
11120
|
static styles: CSSResult;
|
|
10911
11121
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
10912
|
-
render():
|
|
11122
|
+
render(): TemplateResult;
|
|
10913
11123
|
}
|
|
10914
11124
|
|
|
10915
11125
|
/**
|
|
@@ -11022,6 +11232,13 @@ declare global {
|
|
|
11022
11232
|
}
|
|
11023
11233
|
|
|
11024
11234
|
|
|
11235
|
+
declare global {
|
|
11236
|
+
interface GlobalEventHandlersEventMap {
|
|
11237
|
+
'dds-click': DdsClickEvent;
|
|
11238
|
+
}
|
|
11239
|
+
}
|
|
11240
|
+
|
|
11241
|
+
|
|
11025
11242
|
declare global {
|
|
11026
11243
|
interface GlobalEventHandlersEventMap {
|
|
11027
11244
|
'dds-close': DdsCloseEvent;
|
|
@@ -11792,6 +12009,20 @@ declare global {
|
|
|
11792
12009
|
}
|
|
11793
12010
|
|
|
11794
12011
|
|
|
12012
|
+
declare global {
|
|
12013
|
+
interface HTMLElementTagNameMap {
|
|
12014
|
+
'dap-ds-icon-lock-fill': SystemLockFill;
|
|
12015
|
+
}
|
|
12016
|
+
}
|
|
12017
|
+
|
|
12018
|
+
|
|
12019
|
+
declare global {
|
|
12020
|
+
interface HTMLElementTagNameMap {
|
|
12021
|
+
'dap-ds-icon-lock-line': SystemLockLine;
|
|
12022
|
+
}
|
|
12023
|
+
}
|
|
12024
|
+
|
|
12025
|
+
|
|
11795
12026
|
declare global {
|
|
11796
12027
|
interface HTMLElementTagNameMap {
|
|
11797
12028
|
'dap-ds-icon-menu-line': SystemMenuLine;
|
|
@@ -11813,6 +12044,20 @@ declare global {
|
|
|
11813
12044
|
}
|
|
11814
12045
|
|
|
11815
12046
|
|
|
12047
|
+
declare global {
|
|
12048
|
+
interface HTMLElementTagNameMap {
|
|
12049
|
+
'dap-ds-icon-shield-check-fill': SystemShieldCheckFill;
|
|
12050
|
+
}
|
|
12051
|
+
}
|
|
12052
|
+
|
|
12053
|
+
|
|
12054
|
+
declare global {
|
|
12055
|
+
interface HTMLElementTagNameMap {
|
|
12056
|
+
'dap-ds-icon-shield-check-line': SystemShieldCheckLine;
|
|
12057
|
+
}
|
|
12058
|
+
}
|
|
12059
|
+
|
|
12060
|
+
|
|
11816
12061
|
declare global {
|
|
11817
12062
|
interface HTMLElementTagNameMap {
|
|
11818
12063
|
'dap-ds-icon-star-fill': SystemStarFill;
|