dap-design-system 0.35.12 → 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 +156 -0
- package/dist/dds.js +3265 -3053
- 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 +392 -296
- package/dist/manifest/vscode.html-custom-data.json +265 -117
- package/dist/manifest/web-types.json +753 -501
- package/dist/react-types.ts +14 -10
- package/dist/react.d.ts +373 -145
- package/dist/react.js +474 -446
- 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
|
/**
|
|
@@ -2534,7 +2534,7 @@ declare class DapDSCard extends DapDSCard_base {
|
|
|
2534
2534
|
rel: string;
|
|
2535
2535
|
static styles: CSSResult;
|
|
2536
2536
|
focus(options?: FocusOptions): void;
|
|
2537
|
-
render():
|
|
2537
|
+
render(): TemplateResult;
|
|
2538
2538
|
}
|
|
2539
2539
|
|
|
2540
2540
|
declare const DapDSCard_base: typeof DdsElement & {
|
|
@@ -2569,7 +2569,7 @@ declare class DapDSCardActions extends DapDSCardActions_base {
|
|
|
2569
2569
|
parentSized: string;
|
|
2570
2570
|
static styles: CSSResult;
|
|
2571
2571
|
constructor();
|
|
2572
|
-
render():
|
|
2572
|
+
render(): TemplateResult;
|
|
2573
2573
|
}
|
|
2574
2574
|
|
|
2575
2575
|
declare const DapDSCardActions_base: typeof DdsElement & {
|
|
@@ -2632,7 +2632,7 @@ declare class DapDSCardContent extends DapDSCardContent_base {
|
|
|
2632
2632
|
parentSized: string;
|
|
2633
2633
|
static styles: CSSResult;
|
|
2634
2634
|
constructor();
|
|
2635
|
-
render():
|
|
2635
|
+
render(): TemplateResult;
|
|
2636
2636
|
}
|
|
2637
2637
|
|
|
2638
2638
|
declare const DapDSCardContent_base: typeof DdsElement & {
|
|
@@ -2694,7 +2694,7 @@ declare class DapDSCardImage extends DdsElement {
|
|
|
2694
2694
|
/** The height of the image.*/
|
|
2695
2695
|
height: number;
|
|
2696
2696
|
static styles: CSSResult;
|
|
2697
|
-
render():
|
|
2697
|
+
render(): TemplateResult;
|
|
2698
2698
|
}
|
|
2699
2699
|
|
|
2700
2700
|
/**
|
|
@@ -2789,7 +2789,7 @@ declare class DapDSCardSubtitle extends DapDSCardSubtitle_base {
|
|
|
2789
2789
|
parentSized: string;
|
|
2790
2790
|
static styles: CSSResult;
|
|
2791
2791
|
constructor();
|
|
2792
|
-
render():
|
|
2792
|
+
render(): TemplateResult;
|
|
2793
2793
|
}
|
|
2794
2794
|
|
|
2795
2795
|
declare const DapDSCardSubtitle_base: typeof DdsElement & {
|
|
@@ -2883,7 +2883,7 @@ declare class DapDSCardTitle extends DapDSCardTitle_base {
|
|
|
2883
2883
|
noPadding: boolean;
|
|
2884
2884
|
static styles: CSSResult;
|
|
2885
2885
|
constructor();
|
|
2886
|
-
render():
|
|
2886
|
+
render(): TemplateResult;
|
|
2887
2887
|
}
|
|
2888
2888
|
|
|
2889
2889
|
declare const DapDSCardTitle_base: typeof DdsElement & {
|
|
@@ -3007,9 +3007,9 @@ declare class DapDSCheckbox extends LabeledChoiceElement {
|
|
|
3007
3007
|
private handleClick;
|
|
3008
3008
|
private handleInput;
|
|
3009
3009
|
get focusElement(): HTMLInputElement;
|
|
3010
|
-
renderIcon():
|
|
3010
|
+
renderIcon(): TemplateResult | null;
|
|
3011
3011
|
handleInvalid(event: Event): void;
|
|
3012
|
-
render():
|
|
3012
|
+
render(): TemplateResult;
|
|
3013
3013
|
}
|
|
3014
3014
|
|
|
3015
3015
|
/**
|
|
@@ -3158,7 +3158,7 @@ onDdsInput: EventName<DdsInputEvent>;
|
|
|
3158
3158
|
* @slot - The default slot for the options.
|
|
3159
3159
|
*/
|
|
3160
3160
|
declare class DapDSCombobox extends ComboboxBaseElement {
|
|
3161
|
-
render():
|
|
3161
|
+
render(): TemplateResult;
|
|
3162
3162
|
}
|
|
3163
3163
|
|
|
3164
3164
|
/**
|
|
@@ -3276,7 +3276,7 @@ declare class DapDSCommand extends DapDSPopup {
|
|
|
3276
3276
|
private _handleFocusOut;
|
|
3277
3277
|
focus(): void;
|
|
3278
3278
|
private _handleTriggerSlotChange;
|
|
3279
|
-
render():
|
|
3279
|
+
render(): TemplateResult;
|
|
3280
3280
|
}
|
|
3281
3281
|
|
|
3282
3282
|
/**
|
|
@@ -3308,7 +3308,7 @@ declare class DapDSCommandGroup extends DdsElement {
|
|
|
3308
3308
|
connectedCallback(): void;
|
|
3309
3309
|
disconnectedCallback(): void;
|
|
3310
3310
|
private _handleItemClick;
|
|
3311
|
-
render():
|
|
3311
|
+
render(): TemplateResult;
|
|
3312
3312
|
}
|
|
3313
3313
|
|
|
3314
3314
|
/**
|
|
@@ -3391,7 +3391,7 @@ declare class DapDSCommandItem extends DdsElement {
|
|
|
3391
3391
|
private _handleClick;
|
|
3392
3392
|
private _handleKeyDown;
|
|
3393
3393
|
focus(): void;
|
|
3394
|
-
render():
|
|
3394
|
+
render(): TemplateResult;
|
|
3395
3395
|
}
|
|
3396
3396
|
|
|
3397
3397
|
/**
|
|
@@ -3461,7 +3461,7 @@ declare class DapDSContentSwitcher extends DdsElement {
|
|
|
3461
3461
|
private getAllInputs;
|
|
3462
3462
|
private syncInputElements;
|
|
3463
3463
|
private handleInputClick;
|
|
3464
|
-
render():
|
|
3464
|
+
render(): TemplateResult;
|
|
3465
3465
|
}
|
|
3466
3466
|
|
|
3467
3467
|
/**
|
|
@@ -3497,7 +3497,7 @@ declare class DapDSContentSwitcherItem extends DdsElement {
|
|
|
3497
3497
|
/** The name of the segmented control item. */
|
|
3498
3498
|
name: string;
|
|
3499
3499
|
static styles: CSSResult;
|
|
3500
|
-
render():
|
|
3500
|
+
render(): TemplateResult;
|
|
3501
3501
|
}
|
|
3502
3502
|
|
|
3503
3503
|
/**
|
|
@@ -3609,7 +3609,7 @@ onDdsChange: EventName<DdsChangeEvent>;
|
|
|
3609
3609
|
declare class DapDSCopyBoxInput extends InputBaseElement {
|
|
3610
3610
|
constructor();
|
|
3611
3611
|
copyButtonAriaLabel?: string;
|
|
3612
|
-
render():
|
|
3612
|
+
render(): TemplateResult<1>;
|
|
3613
3613
|
onCopy(): void;
|
|
3614
3614
|
private copyToClipboard;
|
|
3615
3615
|
}
|
|
@@ -3713,7 +3713,7 @@ declare class DapDSDAPBadge extends DdsElement {
|
|
|
3713
3713
|
*/
|
|
3714
3714
|
variant: string;
|
|
3715
3715
|
static styles: CSSResult;
|
|
3716
|
-
render():
|
|
3716
|
+
render(): TemplateResult;
|
|
3717
3717
|
}
|
|
3718
3718
|
|
|
3719
3719
|
/**
|
|
@@ -3862,7 +3862,7 @@ declare class DapDSDataTable<T> extends DdsElement {
|
|
|
3862
3862
|
private columnsMemo;
|
|
3863
3863
|
private renderHeader;
|
|
3864
3864
|
private renderBody;
|
|
3865
|
-
protected render():
|
|
3865
|
+
protected render(): TemplateResult;
|
|
3866
3866
|
}
|
|
3867
3867
|
|
|
3868
3868
|
/**
|
|
@@ -4060,7 +4060,7 @@ declare class DapDSDatePicker extends GenericFormElement {
|
|
|
4060
4060
|
reportValidity(): boolean;
|
|
4061
4061
|
setValidity(): void;
|
|
4062
4062
|
handleInvalid(event: Event): void;
|
|
4063
|
-
render():
|
|
4063
|
+
render(): TemplateResult;
|
|
4064
4064
|
}
|
|
4065
4065
|
|
|
4066
4066
|
/**
|
|
@@ -4348,7 +4348,7 @@ declare class DapDSFileInput extends GenericFormElement {
|
|
|
4348
4348
|
onDragenter(event: DragEvent): void;
|
|
4349
4349
|
onDragover(event: DragEvent): void;
|
|
4350
4350
|
onDrop(event: DragEvent): void;
|
|
4351
|
-
render():
|
|
4351
|
+
render(): TemplateResult<1>;
|
|
4352
4352
|
}
|
|
4353
4353
|
|
|
4354
4354
|
/**
|
|
@@ -4379,7 +4379,7 @@ declare class DapDSFileInputList extends DapDSFileInputList_base {
|
|
|
4379
4379
|
private _handleFileChange;
|
|
4380
4380
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
4381
4381
|
removeFile(event: CustomEvent): void;
|
|
4382
|
-
render():
|
|
4382
|
+
render(): TemplateResult<1>;
|
|
4383
4383
|
}
|
|
4384
4384
|
|
|
4385
4385
|
declare const DapDSFileInputList_base: typeof DdsElement & {
|
|
@@ -4447,7 +4447,7 @@ declare class DapDSFileInputListItem extends DapDSFileInputListItem_base {
|
|
|
4447
4447
|
static styles: CSSResult;
|
|
4448
4448
|
delete(): void;
|
|
4449
4449
|
get formattedSize(): string;
|
|
4450
|
-
render():
|
|
4450
|
+
render(): TemplateResult<1>;
|
|
4451
4451
|
}
|
|
4452
4452
|
|
|
4453
4453
|
declare const DapDSFileInputListItem_base: typeof DdsElement & {
|
|
@@ -4583,7 +4583,7 @@ declare class DapDSFormLabel extends DapDSFormLabel_base {
|
|
|
4583
4583
|
renderAs: string;
|
|
4584
4584
|
static styles: CSSResult;
|
|
4585
4585
|
createRenderRoot(): this;
|
|
4586
|
-
render():
|
|
4586
|
+
render(): TemplateResult;
|
|
4587
4587
|
}
|
|
4588
4588
|
|
|
4589
4589
|
declare const DapDSFormLabel_base: {
|
|
@@ -4655,7 +4655,7 @@ declare class DapDSIcon extends DdsElement {
|
|
|
4655
4655
|
focusable?: boolean;
|
|
4656
4656
|
static styles: CSSResult;
|
|
4657
4657
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
4658
|
-
render():
|
|
4658
|
+
render(): TemplateResult;
|
|
4659
4659
|
private _getNamedIcon;
|
|
4660
4660
|
private _getSlotIcon;
|
|
4661
4661
|
private _getIconSizePx;
|
|
@@ -4745,7 +4745,7 @@ declare class DapDSIconButton extends DdsElement {
|
|
|
4745
4745
|
static styles: CSSResult;
|
|
4746
4746
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
4747
4747
|
focus(): void;
|
|
4748
|
-
render():
|
|
4748
|
+
render(): TemplateResult;
|
|
4749
4749
|
}
|
|
4750
4750
|
|
|
4751
4751
|
/**
|
|
@@ -4907,7 +4907,7 @@ export declare const DapDSIconReact: ReactWebComponent<DapDSIcon, {}>;
|
|
|
4907
4907
|
*/
|
|
4908
4908
|
declare class DapDSInput extends InputBaseElement {
|
|
4909
4909
|
constructor();
|
|
4910
|
-
render():
|
|
4910
|
+
render(): TemplateResult<1>;
|
|
4911
4911
|
}
|
|
4912
4912
|
|
|
4913
4913
|
/**
|
|
@@ -4946,7 +4946,7 @@ declare class DapDSInputGroup extends GenericFormElement {
|
|
|
4946
4946
|
handleLabelClick(): void;
|
|
4947
4947
|
private getItems;
|
|
4948
4948
|
attributeChangedCallback(name: string, _old: string | null, value: string | null): void;
|
|
4949
|
-
render():
|
|
4949
|
+
render(): TemplateResult;
|
|
4950
4950
|
private _handleSlotChange;
|
|
4951
4951
|
private _renderFeedback;
|
|
4952
4952
|
}
|
|
@@ -5235,7 +5235,7 @@ declare class DapDSLink extends DdsElement {
|
|
|
5235
5235
|
static styles: CSSResult;
|
|
5236
5236
|
private handleClick;
|
|
5237
5237
|
focus(): void;
|
|
5238
|
-
render():
|
|
5238
|
+
render(): TemplateResult;
|
|
5239
5239
|
}
|
|
5240
5240
|
|
|
5241
5241
|
/**
|
|
@@ -5407,7 +5407,7 @@ declare class DapDSListItem extends DdsElement {
|
|
|
5407
5407
|
static styles: CSSResult;
|
|
5408
5408
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
5409
5409
|
private getIcon;
|
|
5410
|
-
render():
|
|
5410
|
+
render(): TemplateResult;
|
|
5411
5411
|
}
|
|
5412
5412
|
|
|
5413
5413
|
/**
|
|
@@ -5520,7 +5520,7 @@ export declare const DapDSListItemReact: ReactWebComponent<DapDSListItem, {}>;
|
|
|
5520
5520
|
*/
|
|
5521
5521
|
declare class DapDSModal extends ModalBaseElement {
|
|
5522
5522
|
constructor();
|
|
5523
|
-
render():
|
|
5523
|
+
render(): TemplateResult<1>;
|
|
5524
5524
|
}
|
|
5525
5525
|
|
|
5526
5526
|
/**
|
|
@@ -5650,7 +5650,7 @@ declare class DapDSNotificationBadge extends DdsElement {
|
|
|
5650
5650
|
private handleMax;
|
|
5651
5651
|
private renderContent;
|
|
5652
5652
|
private get hide();
|
|
5653
|
-
render():
|
|
5653
|
+
render(): TemplateResult;
|
|
5654
5654
|
}
|
|
5655
5655
|
|
|
5656
5656
|
/**
|
|
@@ -5763,7 +5763,7 @@ declare class DapDSNumberInput extends InputBaseElement {
|
|
|
5763
5763
|
protected updated(changedProperties: PropertyValues): void;
|
|
5764
5764
|
private _decrement;
|
|
5765
5765
|
private _increment;
|
|
5766
|
-
render():
|
|
5766
|
+
render(): TemplateResult<1>;
|
|
5767
5767
|
}
|
|
5768
5768
|
|
|
5769
5769
|
/**
|
|
@@ -5890,7 +5890,7 @@ declare class DapDSOptionItem extends DapDSOptionItem_base {
|
|
|
5890
5890
|
protected updated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
5891
5891
|
private handleClick;
|
|
5892
5892
|
get optionText(): string;
|
|
5893
|
-
render():
|
|
5893
|
+
render(): TemplateResult<1>;
|
|
5894
5894
|
}
|
|
5895
5895
|
|
|
5896
5896
|
declare const DapDSOptionItem_base: typeof DdsElement & {
|
|
@@ -6004,7 +6004,7 @@ declare class DapDSOptionList extends DapDSOptionList_base {
|
|
|
6004
6004
|
captureFocus(key?: string): void;
|
|
6005
6005
|
removeFocus(): void;
|
|
6006
6006
|
private handleSlotChange;
|
|
6007
|
-
render():
|
|
6007
|
+
render(): TemplateResult;
|
|
6008
6008
|
}
|
|
6009
6009
|
|
|
6010
6010
|
declare const DapDSOptionList_base: typeof DdsElement & {
|
|
@@ -6049,7 +6049,7 @@ declare class DapDSOverlay extends DdsElement {
|
|
|
6049
6049
|
/** The open state of the overlay. */
|
|
6050
6050
|
open?: boolean;
|
|
6051
6051
|
static styles: CSSResult;
|
|
6052
|
-
render():
|
|
6052
|
+
render(): TemplateResult<1>;
|
|
6053
6053
|
}
|
|
6054
6054
|
|
|
6055
6055
|
/**
|
|
@@ -6134,7 +6134,7 @@ declare class DapDSPager extends DdsElement {
|
|
|
6134
6134
|
protected updated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
6135
6135
|
private updatePageIndex;
|
|
6136
6136
|
private updatePageSize;
|
|
6137
|
-
protected render():
|
|
6137
|
+
protected render(): TemplateResult<1>;
|
|
6138
6138
|
}
|
|
6139
6139
|
|
|
6140
6140
|
/**
|
|
@@ -6227,7 +6227,7 @@ declare class DapDSPasswordInput extends InputBaseElement {
|
|
|
6227
6227
|
constructor();
|
|
6228
6228
|
private _toggleVisibility;
|
|
6229
6229
|
private getIconSize;
|
|
6230
|
-
render():
|
|
6230
|
+
render(): TemplateResult<1>;
|
|
6231
6231
|
}
|
|
6232
6232
|
|
|
6233
6233
|
/**
|
|
@@ -6359,7 +6359,7 @@ declare class DapDSPopup extends DapDSPopup_base {
|
|
|
6359
6359
|
private stopUpdate;
|
|
6360
6360
|
disconnectedCallback(): void;
|
|
6361
6361
|
private updatePosition;
|
|
6362
|
-
render():
|
|
6362
|
+
render(): TemplateResult;
|
|
6363
6363
|
}
|
|
6364
6364
|
|
|
6365
6365
|
declare const DapDSPopup_base: typeof DdsElement & {
|
|
@@ -6469,7 +6469,7 @@ declare class DapDSRadioButton extends LabeledChoiceElement {
|
|
|
6469
6469
|
static styles: CSSResult;
|
|
6470
6470
|
private handleClick;
|
|
6471
6471
|
get focusElement(): HTMLInputElement;
|
|
6472
|
-
render():
|
|
6472
|
+
render(): TemplateResult;
|
|
6473
6473
|
}
|
|
6474
6474
|
|
|
6475
6475
|
/**
|
|
@@ -6603,7 +6603,7 @@ declare class DapDSRadioGroup extends GenericFormElement {
|
|
|
6603
6603
|
reportValidity(): boolean;
|
|
6604
6604
|
handleLabelClick(): void;
|
|
6605
6605
|
handleInvalid(event: Event): void;
|
|
6606
|
-
render():
|
|
6606
|
+
render(): TemplateResult;
|
|
6607
6607
|
private _renderFeedback;
|
|
6608
6608
|
}
|
|
6609
6609
|
|
|
@@ -6695,7 +6695,7 @@ declare class DapDSRating extends GenericFormElement {
|
|
|
6695
6695
|
_handleStarClick(value: number): void;
|
|
6696
6696
|
_handleStarHover(value: number): void;
|
|
6697
6697
|
_handleStarLeave(): void;
|
|
6698
|
-
render():
|
|
6698
|
+
render(): TemplateResult;
|
|
6699
6699
|
}
|
|
6700
6700
|
|
|
6701
6701
|
/**
|
|
@@ -6753,8 +6753,8 @@ declare class DapDSScrollArea extends DdsElement {
|
|
|
6753
6753
|
private startScrollTop;
|
|
6754
6754
|
firstUpdated(): void;
|
|
6755
6755
|
private setupScrollbar;
|
|
6756
|
-
getScrollbar(orientation: 'horizontal' | 'vertical'):
|
|
6757
|
-
render():
|
|
6756
|
+
getScrollbar(orientation: 'horizontal' | 'vertical'): TemplateResult;
|
|
6757
|
+
render(): TemplateResult;
|
|
6758
6758
|
}
|
|
6759
6759
|
|
|
6760
6760
|
/**
|
|
@@ -6845,7 +6845,7 @@ export declare const DapDSScrollAreaReact: ReactWebComponent<DapDSScrollArea, {}
|
|
|
6845
6845
|
*/
|
|
6846
6846
|
declare class DapDSSearch extends ComboboxBaseElement {
|
|
6847
6847
|
constructor();
|
|
6848
|
-
render():
|
|
6848
|
+
render(): TemplateResult;
|
|
6849
6849
|
}
|
|
6850
6850
|
|
|
6851
6851
|
/**
|
|
@@ -7035,9 +7035,9 @@ declare class DapDSSelect extends GenericFormElement {
|
|
|
7035
7035
|
setValidity(): void;
|
|
7036
7036
|
handleInvalid(event: Event): void;
|
|
7037
7037
|
private handleSelectedChange;
|
|
7038
|
-
renderTriggerElement():
|
|
7039
|
-
renderOptionList():
|
|
7040
|
-
render():
|
|
7038
|
+
renderTriggerElement(): TemplateResult;
|
|
7039
|
+
renderOptionList(): TemplateResult;
|
|
7040
|
+
render(): TemplateResult;
|
|
7041
7041
|
}
|
|
7042
7042
|
|
|
7043
7043
|
/**
|
|
@@ -7132,7 +7132,7 @@ declare class DapDSSideNav extends DdsElement {
|
|
|
7132
7132
|
attributeChangedCallback(name: string, _old: string | null, value: string | null): void;
|
|
7133
7133
|
private removeActive;
|
|
7134
7134
|
private setActive;
|
|
7135
|
-
render():
|
|
7135
|
+
render(): TemplateResult;
|
|
7136
7136
|
}
|
|
7137
7137
|
|
|
7138
7138
|
/**
|
|
@@ -7179,7 +7179,7 @@ declare class DapDSSideNavGroup extends DdsElement {
|
|
|
7179
7179
|
/** Whether the side navigation group is open */
|
|
7180
7180
|
open: boolean;
|
|
7181
7181
|
static styles: CSSResult;
|
|
7182
|
-
render():
|
|
7182
|
+
render(): TemplateResult;
|
|
7183
7183
|
}
|
|
7184
7184
|
|
|
7185
7185
|
/**
|
|
@@ -7254,7 +7254,7 @@ declare class DapDSSideNavItem extends DdsElement {
|
|
|
7254
7254
|
*/
|
|
7255
7255
|
spacing: Spacing_3;
|
|
7256
7256
|
static styles: CSSResult;
|
|
7257
|
-
render():
|
|
7257
|
+
render(): TemplateResult;
|
|
7258
7258
|
}
|
|
7259
7259
|
|
|
7260
7260
|
/**
|
|
@@ -7339,7 +7339,7 @@ declare class DapDSSkipLink extends DdsElement {
|
|
|
7339
7339
|
/** Whether the skip link should have an underline */
|
|
7340
7340
|
noUnderline: boolean;
|
|
7341
7341
|
static styles: CSSResult;
|
|
7342
|
-
render():
|
|
7342
|
+
render(): TemplateResult;
|
|
7343
7343
|
}
|
|
7344
7344
|
|
|
7345
7345
|
/**
|
|
@@ -7399,7 +7399,7 @@ declare class DapDSSnackbar extends DdsElement {
|
|
|
7399
7399
|
connectedCallback(): void;
|
|
7400
7400
|
disconnectedCallback(): void;
|
|
7401
7401
|
private _closeMessage;
|
|
7402
|
-
render():
|
|
7402
|
+
render(): TemplateResult;
|
|
7403
7403
|
}
|
|
7404
7404
|
|
|
7405
7405
|
/**
|
|
@@ -7440,7 +7440,7 @@ declare class DapDSSnackbarMessage extends DdsElement {
|
|
|
7440
7440
|
private getActions;
|
|
7441
7441
|
private getAlertTypeIcon;
|
|
7442
7442
|
private _close;
|
|
7443
|
-
render():
|
|
7443
|
+
render(): TemplateResult_2;
|
|
7444
7444
|
}
|
|
7445
7445
|
|
|
7446
7446
|
/**
|
|
@@ -7526,7 +7526,7 @@ declare class DapDSSpinner extends DdsElement {
|
|
|
7526
7526
|
/** Removes the text color */
|
|
7527
7527
|
noColor: boolean;
|
|
7528
7528
|
static styles: CSSResult;
|
|
7529
|
-
render():
|
|
7529
|
+
render(): TemplateResult<1>;
|
|
7530
7530
|
}
|
|
7531
7531
|
|
|
7532
7532
|
/**
|
|
@@ -7578,7 +7578,7 @@ declare class DapDSStack extends DdsElement {
|
|
|
7578
7578
|
get spacing(): Spacing;
|
|
7579
7579
|
static styles: CSSResult;
|
|
7580
7580
|
getMarginStyles(direction: CSSFlexDirection, spacing: number, startMargin?: boolean, endMargin?: boolean): string;
|
|
7581
|
-
render():
|
|
7581
|
+
render(): TemplateResult;
|
|
7582
7582
|
}
|
|
7583
7583
|
|
|
7584
7584
|
/**
|
|
@@ -7654,7 +7654,7 @@ declare class DapDSSwitch extends LabeledChoiceElement {
|
|
|
7654
7654
|
private handleClick;
|
|
7655
7655
|
get focusElement(): HTMLInputElement;
|
|
7656
7656
|
handleInvalid(event: Event): void;
|
|
7657
|
-
render():
|
|
7657
|
+
render(): TemplateResult;
|
|
7658
7658
|
}
|
|
7659
7659
|
|
|
7660
7660
|
/**
|
|
@@ -7732,7 +7732,7 @@ declare class DapDSTab extends DdsElement {
|
|
|
7732
7732
|
disabled: boolean;
|
|
7733
7733
|
private _selected;
|
|
7734
7734
|
firstUpdated(): void;
|
|
7735
|
-
render():
|
|
7735
|
+
render(): TemplateResult<1>;
|
|
7736
7736
|
}
|
|
7737
7737
|
|
|
7738
7738
|
/**
|
|
@@ -7789,7 +7789,7 @@ declare class DapDSTabGroup extends DdsElement {
|
|
|
7789
7789
|
handleSlotChange(event: Event): void;
|
|
7790
7790
|
handleClick(tabId: string | null): void;
|
|
7791
7791
|
handleKeyDown(event: KeyboardEvent): void;
|
|
7792
|
-
render():
|
|
7792
|
+
render(): TemplateResult<1>;
|
|
7793
7793
|
}
|
|
7794
7794
|
|
|
7795
7795
|
/**
|
|
@@ -7849,7 +7849,7 @@ declare class DapDSTable extends DdsElement {
|
|
|
7849
7849
|
caption: string;
|
|
7850
7850
|
static styles: CSSResult;
|
|
7851
7851
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
7852
|
-
render():
|
|
7852
|
+
render(): TemplateResult;
|
|
7853
7853
|
}
|
|
7854
7854
|
|
|
7855
7855
|
/**
|
|
@@ -7877,7 +7877,7 @@ declare class DapDSTableCell extends DdsElement {
|
|
|
7877
7877
|
last: boolean;
|
|
7878
7878
|
/** The html role of the cell */
|
|
7879
7879
|
role: string;
|
|
7880
|
-
render():
|
|
7880
|
+
render(): TemplateResult;
|
|
7881
7881
|
}
|
|
7882
7882
|
|
|
7883
7883
|
/**
|
|
@@ -7926,7 +7926,7 @@ declare class DapDSTableHeader extends DdsElement {
|
|
|
7926
7926
|
last: boolean;
|
|
7927
7927
|
/** The html role of the header cell */
|
|
7928
7928
|
role: string;
|
|
7929
|
-
render():
|
|
7929
|
+
render(): TemplateResult;
|
|
7930
7930
|
}
|
|
7931
7931
|
|
|
7932
7932
|
/**
|
|
@@ -7983,7 +7983,7 @@ declare class DapDSTableRow extends DdsElement {
|
|
|
7983
7983
|
role: string;
|
|
7984
7984
|
/**If the row is mobile design */
|
|
7985
7985
|
mobile: boolean;
|
|
7986
|
-
render():
|
|
7986
|
+
render(): TemplateResult;
|
|
7987
7987
|
}
|
|
7988
7988
|
|
|
7989
7989
|
/**
|
|
@@ -8185,7 +8185,7 @@ onDdsSelect: EventName<DdsSelectEvent>;
|
|
|
8185
8185
|
declare class DapDSTimeline extends DdsElement {
|
|
8186
8186
|
static styles: CSSResult;
|
|
8187
8187
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
8188
|
-
render():
|
|
8188
|
+
render(): TemplateResult;
|
|
8189
8189
|
}
|
|
8190
8190
|
|
|
8191
8191
|
/**
|
|
@@ -8210,7 +8210,7 @@ declare class DapDSTimeline extends DdsElement {
|
|
|
8210
8210
|
*/
|
|
8211
8211
|
declare class DapDSTimelineItem extends DdsElement {
|
|
8212
8212
|
static styles: CSSResult;
|
|
8213
|
-
render():
|
|
8213
|
+
render(): TemplateResult;
|
|
8214
8214
|
}
|
|
8215
8215
|
|
|
8216
8216
|
/**
|
|
@@ -8405,7 +8405,7 @@ declare class DapDSToggleButton extends GenericFormElement {
|
|
|
8405
8405
|
static styles: CSSResult;
|
|
8406
8406
|
protected firstUpdated(_changedProperties: PropertyValues): void;
|
|
8407
8407
|
private handleClick;
|
|
8408
|
-
render():
|
|
8408
|
+
render(): TemplateResult;
|
|
8409
8409
|
}
|
|
8410
8410
|
|
|
8411
8411
|
/**
|
|
@@ -8513,7 +8513,7 @@ declare class DapDSTooltip extends DdsElement {
|
|
|
8513
8513
|
private handleMouseOver;
|
|
8514
8514
|
private handleMouseOut;
|
|
8515
8515
|
private hasTrigger;
|
|
8516
|
-
render():
|
|
8516
|
+
render(): TemplateResult;
|
|
8517
8517
|
}
|
|
8518
8518
|
|
|
8519
8519
|
/**
|
|
@@ -8602,7 +8602,7 @@ declare class DapDSTray extends ModalBaseElement {
|
|
|
8602
8602
|
placement: 'left' | 'right' | 'top' | 'bottom';
|
|
8603
8603
|
constructor();
|
|
8604
8604
|
static styles: CSSResult;
|
|
8605
|
-
render():
|
|
8605
|
+
render(): TemplateResult<1>;
|
|
8606
8606
|
}
|
|
8607
8607
|
|
|
8608
8608
|
/**
|
|
@@ -8726,7 +8726,7 @@ declare class DapDSTypography extends DdsElement implements Common<TypographyPro
|
|
|
8726
8726
|
private _renderCaption;
|
|
8727
8727
|
private _renderDescription;
|
|
8728
8728
|
private _getElement;
|
|
8729
|
-
render():
|
|
8729
|
+
render(): TemplateResult | null;
|
|
8730
8730
|
}
|
|
8731
8731
|
|
|
8732
8732
|
/**
|
|
@@ -8949,7 +8949,7 @@ declare class DocumentClipboardLine extends DdsElement {
|
|
|
8949
8949
|
focusable?: boolean;
|
|
8950
8950
|
static styles: CSSResult;
|
|
8951
8951
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
8952
|
-
render():
|
|
8952
|
+
render(): TemplateResult;
|
|
8953
8953
|
}
|
|
8954
8954
|
|
|
8955
8955
|
/**
|
|
@@ -8999,7 +8999,7 @@ declare class DocumentFileCopyLine extends DdsElement {
|
|
|
8999
8999
|
focusable?: boolean;
|
|
9000
9000
|
static styles: CSSResult;
|
|
9001
9001
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
9002
|
-
render():
|
|
9002
|
+
render(): TemplateResult;
|
|
9003
9003
|
}
|
|
9004
9004
|
|
|
9005
9005
|
/**
|
|
@@ -9165,8 +9165,8 @@ declare class InputBaseElement extends GenericFormElement {
|
|
|
9165
9165
|
onKeydown(event: KeyboardEvent): void;
|
|
9166
9166
|
get focusElement(): HTMLInputElement;
|
|
9167
9167
|
handleInvalid(event: Event): void;
|
|
9168
|
-
renderDefaultContent():
|
|
9169
|
-
renderInput(content?: unknown):
|
|
9168
|
+
renderDefaultContent(): TemplateResult<1>;
|
|
9169
|
+
renderInput(content?: unknown): TemplateResult<1>;
|
|
9170
9170
|
private _renderFeedback;
|
|
9171
9171
|
}
|
|
9172
9172
|
|
|
@@ -9283,7 +9283,7 @@ declare class ModalBaseElement extends DdsElement {
|
|
|
9283
9283
|
private getActiveElement;
|
|
9284
9284
|
private getElementFromElement;
|
|
9285
9285
|
private handleFocusTrap;
|
|
9286
|
-
renderModal():
|
|
9286
|
+
renderModal(): TemplateResult<1>;
|
|
9287
9287
|
}
|
|
9288
9288
|
|
|
9289
9289
|
/**
|
|
@@ -9315,7 +9315,7 @@ declare class OthersCookieLine extends DdsElement {
|
|
|
9315
9315
|
focusable?: boolean;
|
|
9316
9316
|
static styles: CSSResult;
|
|
9317
9317
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
9318
|
-
render():
|
|
9318
|
+
render(): TemplateResult;
|
|
9319
9319
|
}
|
|
9320
9320
|
|
|
9321
9321
|
/**
|
|
@@ -9387,7 +9387,7 @@ declare class SystemAddLine extends DdsElement {
|
|
|
9387
9387
|
focusable?: boolean;
|
|
9388
9388
|
static styles: CSSResult;
|
|
9389
9389
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
9390
|
-
render():
|
|
9390
|
+
render(): TemplateResult;
|
|
9391
9391
|
}
|
|
9392
9392
|
|
|
9393
9393
|
/**
|
|
@@ -9437,7 +9437,7 @@ declare class SystemAlertFill extends DdsElement {
|
|
|
9437
9437
|
focusable?: boolean;
|
|
9438
9438
|
static styles: CSSResult;
|
|
9439
9439
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
9440
|
-
render():
|
|
9440
|
+
render(): TemplateResult;
|
|
9441
9441
|
}
|
|
9442
9442
|
|
|
9443
9443
|
/**
|
|
@@ -9487,7 +9487,7 @@ declare class SystemAlertLine extends DdsElement {
|
|
|
9487
9487
|
focusable?: boolean;
|
|
9488
9488
|
static styles: CSSResult;
|
|
9489
9489
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
9490
|
-
render():
|
|
9490
|
+
render(): TemplateResult;
|
|
9491
9491
|
}
|
|
9492
9492
|
|
|
9493
9493
|
/**
|
|
@@ -9537,7 +9537,7 @@ declare class SystemCheckboxBlankCircleFill extends DdsElement {
|
|
|
9537
9537
|
focusable?: boolean;
|
|
9538
9538
|
static styles: CSSResult;
|
|
9539
9539
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
9540
|
-
render():
|
|
9540
|
+
render(): TemplateResult;
|
|
9541
9541
|
}
|
|
9542
9542
|
|
|
9543
9543
|
/**
|
|
@@ -9569,7 +9569,7 @@ declare class SystemCheckboxBlankCircleFillCheck extends DdsElement {
|
|
|
9569
9569
|
focusable?: boolean;
|
|
9570
9570
|
static styles: CSSResult;
|
|
9571
9571
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
9572
|
-
render():
|
|
9572
|
+
render(): TemplateResult;
|
|
9573
9573
|
}
|
|
9574
9574
|
|
|
9575
9575
|
/**
|
|
@@ -9637,7 +9637,7 @@ declare class SystemCheckboxBlankCircleLine extends DdsElement {
|
|
|
9637
9637
|
focusable?: boolean;
|
|
9638
9638
|
static styles: CSSResult;
|
|
9639
9639
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
9640
|
-
render():
|
|
9640
|
+
render(): TemplateResult;
|
|
9641
9641
|
}
|
|
9642
9642
|
|
|
9643
9643
|
/**
|
|
@@ -9687,7 +9687,7 @@ declare class SystemCheckboxCircleFill extends DdsElement {
|
|
|
9687
9687
|
focusable?: boolean;
|
|
9688
9688
|
static styles: CSSResult;
|
|
9689
9689
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
9690
|
-
render():
|
|
9690
|
+
render(): TemplateResult;
|
|
9691
9691
|
}
|
|
9692
9692
|
|
|
9693
9693
|
/**
|
|
@@ -9737,7 +9737,7 @@ declare class SystemCheckboxCircleLine extends DdsElement {
|
|
|
9737
9737
|
focusable?: boolean;
|
|
9738
9738
|
static styles: CSSResult;
|
|
9739
9739
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
9740
|
-
render():
|
|
9740
|
+
render(): TemplateResult;
|
|
9741
9741
|
}
|
|
9742
9742
|
|
|
9743
9743
|
/**
|
|
@@ -9787,7 +9787,7 @@ declare class SystemCheckLine extends DdsElement {
|
|
|
9787
9787
|
focusable?: boolean;
|
|
9788
9788
|
static styles: CSSResult;
|
|
9789
9789
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
9790
|
-
render():
|
|
9790
|
+
render(): TemplateResult;
|
|
9791
9791
|
}
|
|
9792
9792
|
|
|
9793
9793
|
/**
|
|
@@ -9819,7 +9819,7 @@ declare class SystemCheckLine2 extends DdsElement {
|
|
|
9819
9819
|
focusable?: boolean;
|
|
9820
9820
|
static styles: CSSResult;
|
|
9821
9821
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
9822
|
-
render():
|
|
9822
|
+
render(): TemplateResult;
|
|
9823
9823
|
}
|
|
9824
9824
|
|
|
9825
9825
|
/**
|
|
@@ -9887,7 +9887,7 @@ declare class SystemCloseCircleFill extends DdsElement {
|
|
|
9887
9887
|
focusable?: boolean;
|
|
9888
9888
|
static styles: CSSResult;
|
|
9889
9889
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
9890
|
-
render():
|
|
9890
|
+
render(): TemplateResult;
|
|
9891
9891
|
}
|
|
9892
9892
|
|
|
9893
9893
|
/**
|
|
@@ -9937,7 +9937,7 @@ declare class SystemCloseCircleLine extends DdsElement {
|
|
|
9937
9937
|
focusable?: boolean;
|
|
9938
9938
|
static styles: CSSResult;
|
|
9939
9939
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
9940
|
-
render():
|
|
9940
|
+
render(): TemplateResult;
|
|
9941
9941
|
}
|
|
9942
9942
|
|
|
9943
9943
|
/**
|
|
@@ -9987,7 +9987,7 @@ declare class SystemCloseFill extends DdsElement {
|
|
|
9987
9987
|
focusable?: boolean;
|
|
9988
9988
|
static styles: CSSResult;
|
|
9989
9989
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
9990
|
-
render():
|
|
9990
|
+
render(): TemplateResult;
|
|
9991
9991
|
}
|
|
9992
9992
|
|
|
9993
9993
|
/**
|
|
@@ -10037,7 +10037,7 @@ declare class SystemCloseLine extends DdsElement {
|
|
|
10037
10037
|
focusable?: boolean;
|
|
10038
10038
|
static styles: CSSResult;
|
|
10039
10039
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
10040
|
-
render():
|
|
10040
|
+
render(): TemplateResult;
|
|
10041
10041
|
}
|
|
10042
10042
|
|
|
10043
10043
|
/**
|
|
@@ -10087,7 +10087,7 @@ declare class SystemDownloadLine extends DdsElement {
|
|
|
10087
10087
|
focusable?: boolean;
|
|
10088
10088
|
static styles: CSSResult;
|
|
10089
10089
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
10090
|
-
render():
|
|
10090
|
+
render(): TemplateResult;
|
|
10091
10091
|
}
|
|
10092
10092
|
|
|
10093
10093
|
/**
|
|
@@ -10137,7 +10137,7 @@ declare class SystemErrorWarningFill extends DdsElement {
|
|
|
10137
10137
|
focusable?: boolean;
|
|
10138
10138
|
static styles: CSSResult;
|
|
10139
10139
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
10140
|
-
render():
|
|
10140
|
+
render(): TemplateResult;
|
|
10141
10141
|
}
|
|
10142
10142
|
|
|
10143
10143
|
/**
|
|
@@ -10187,7 +10187,7 @@ declare class SystemErrorWarningLine extends DdsElement {
|
|
|
10187
10187
|
focusable?: boolean;
|
|
10188
10188
|
static styles: CSSResult;
|
|
10189
10189
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
10190
|
-
render():
|
|
10190
|
+
render(): TemplateResult;
|
|
10191
10191
|
}
|
|
10192
10192
|
|
|
10193
10193
|
/**
|
|
@@ -10237,7 +10237,7 @@ declare class SystemExternalLinkLine extends DdsElement {
|
|
|
10237
10237
|
focusable?: boolean;
|
|
10238
10238
|
static styles: CSSResult;
|
|
10239
10239
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
10240
|
-
render():
|
|
10240
|
+
render(): TemplateResult;
|
|
10241
10241
|
}
|
|
10242
10242
|
|
|
10243
10243
|
/**
|
|
@@ -10287,7 +10287,7 @@ declare class SystemEyeLine extends DdsElement {
|
|
|
10287
10287
|
focusable?: boolean;
|
|
10288
10288
|
static styles: CSSResult;
|
|
10289
10289
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
10290
|
-
render():
|
|
10290
|
+
render(): TemplateResult;
|
|
10291
10291
|
}
|
|
10292
10292
|
|
|
10293
10293
|
/**
|
|
@@ -10337,7 +10337,7 @@ declare class SystemEyeOffLine extends DdsElement {
|
|
|
10337
10337
|
focusable?: boolean;
|
|
10338
10338
|
static styles: CSSResult;
|
|
10339
10339
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
10340
|
-
render():
|
|
10340
|
+
render(): TemplateResult;
|
|
10341
10341
|
}
|
|
10342
10342
|
|
|
10343
10343
|
/**
|
|
@@ -10387,7 +10387,7 @@ declare class SystemForbidFill extends DdsElement {
|
|
|
10387
10387
|
focusable?: boolean;
|
|
10388
10388
|
static styles: CSSResult;
|
|
10389
10389
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
10390
|
-
render():
|
|
10390
|
+
render(): TemplateResult;
|
|
10391
10391
|
}
|
|
10392
10392
|
|
|
10393
10393
|
/**
|
|
@@ -10437,7 +10437,7 @@ declare class SystemInformation2Fill extends DdsElement {
|
|
|
10437
10437
|
focusable?: boolean;
|
|
10438
10438
|
static styles: CSSResult;
|
|
10439
10439
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
10440
|
-
render():
|
|
10440
|
+
render(): TemplateResult;
|
|
10441
10441
|
}
|
|
10442
10442
|
|
|
10443
10443
|
/**
|
|
@@ -10487,7 +10487,7 @@ declare class SystemInformationFill extends DdsElement {
|
|
|
10487
10487
|
focusable?: boolean;
|
|
10488
10488
|
static styles: CSSResult;
|
|
10489
10489
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
10490
|
-
render():
|
|
10490
|
+
render(): TemplateResult;
|
|
10491
10491
|
}
|
|
10492
10492
|
|
|
10493
10493
|
/**
|
|
@@ -10537,7 +10537,7 @@ declare class SystemInformationLine extends DdsElement {
|
|
|
10537
10537
|
focusable?: boolean;
|
|
10538
10538
|
static styles: CSSResult;
|
|
10539
10539
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
10540
|
-
render():
|
|
10540
|
+
render(): TemplateResult;
|
|
10541
10541
|
}
|
|
10542
10542
|
|
|
10543
10543
|
/**
|
|
@@ -10587,7 +10587,7 @@ declare class SystemLightbulbFill extends DdsElement {
|
|
|
10587
10587
|
focusable?: boolean;
|
|
10588
10588
|
static styles: CSSResult;
|
|
10589
10589
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
10590
|
-
render():
|
|
10590
|
+
render(): TemplateResult;
|
|
10591
10591
|
}
|
|
10592
10592
|
|
|
10593
10593
|
/**
|
|
@@ -10637,7 +10637,7 @@ declare class SystemLoadingSpinner extends DdsElement {
|
|
|
10637
10637
|
focusable?: boolean;
|
|
10638
10638
|
static styles: CSSResult;
|
|
10639
10639
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
10640
|
-
render():
|
|
10640
|
+
render(): TemplateResult;
|
|
10641
10641
|
}
|
|
10642
10642
|
|
|
10643
10643
|
/**
|
|
@@ -10658,6 +10658,106 @@ declare class SystemLoadingSpinner extends DdsElement {
|
|
|
10658
10658
|
*/
|
|
10659
10659
|
export declare const SystemLoadingSpinnerReact: ReactWebComponent<SystemLoadingSpinner, {}>;
|
|
10660
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
|
+
|
|
10661
10761
|
/**
|
|
10662
10762
|
* `dap-ds-icon-menu-line`
|
|
10663
10763
|
* @summary An icon
|
|
@@ -10687,7 +10787,7 @@ declare class SystemMenuLine extends DdsElement {
|
|
|
10687
10787
|
focusable?: boolean;
|
|
10688
10788
|
static styles: CSSResult;
|
|
10689
10789
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
10690
|
-
render():
|
|
10790
|
+
render(): TemplateResult;
|
|
10691
10791
|
}
|
|
10692
10792
|
|
|
10693
10793
|
/**
|
|
@@ -10737,7 +10837,7 @@ declare class SystemMenuLineS extends DdsElement {
|
|
|
10737
10837
|
focusable?: boolean;
|
|
10738
10838
|
static styles: CSSResult;
|
|
10739
10839
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
10740
|
-
render():
|
|
10840
|
+
render(): TemplateResult;
|
|
10741
10841
|
}
|
|
10742
10842
|
|
|
10743
10843
|
/**
|
|
@@ -10787,7 +10887,7 @@ declare class SystemSearchLine extends DdsElement {
|
|
|
10787
10887
|
focusable?: boolean;
|
|
10788
10888
|
static styles: CSSResult;
|
|
10789
10889
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
10790
|
-
render():
|
|
10890
|
+
render(): TemplateResult;
|
|
10791
10891
|
}
|
|
10792
10892
|
|
|
10793
10893
|
/**
|
|
@@ -10808,6 +10908,106 @@ declare class SystemSearchLine extends DdsElement {
|
|
|
10808
10908
|
*/
|
|
10809
10909
|
export declare const SystemSearchLineReact: ReactWebComponent<SystemSearchLine, {}>;
|
|
10810
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
|
+
|
|
10811
11011
|
/**
|
|
10812
11012
|
* `dap-ds-icon-star-fill`
|
|
10813
11013
|
* @summary An icon
|
|
@@ -10837,7 +11037,7 @@ declare class SystemStarFill extends DdsElement {
|
|
|
10837
11037
|
focusable?: boolean;
|
|
10838
11038
|
static styles: CSSResult;
|
|
10839
11039
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
10840
|
-
render():
|
|
11040
|
+
render(): TemplateResult;
|
|
10841
11041
|
}
|
|
10842
11042
|
|
|
10843
11043
|
/**
|
|
@@ -10887,7 +11087,7 @@ declare class SystemSubtractLine extends DdsElement {
|
|
|
10887
11087
|
focusable?: boolean;
|
|
10888
11088
|
static styles: CSSResult;
|
|
10889
11089
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
10890
|
-
render():
|
|
11090
|
+
render(): TemplateResult;
|
|
10891
11091
|
}
|
|
10892
11092
|
|
|
10893
11093
|
/**
|
|
@@ -10919,7 +11119,7 @@ declare class SystemSubtractLine2 extends DdsElement {
|
|
|
10919
11119
|
focusable?: boolean;
|
|
10920
11120
|
static styles: CSSResult;
|
|
10921
11121
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
10922
|
-
render():
|
|
11122
|
+
render(): TemplateResult;
|
|
10923
11123
|
}
|
|
10924
11124
|
|
|
10925
11125
|
/**
|
|
@@ -11809,6 +12009,20 @@ declare global {
|
|
|
11809
12009
|
}
|
|
11810
12010
|
|
|
11811
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
|
+
|
|
11812
12026
|
declare global {
|
|
11813
12027
|
interface HTMLElementTagNameMap {
|
|
11814
12028
|
'dap-ds-icon-menu-line': SystemMenuLine;
|
|
@@ -11830,6 +12044,20 @@ declare global {
|
|
|
11830
12044
|
}
|
|
11831
12045
|
|
|
11832
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
|
+
|
|
11833
12061
|
declare global {
|
|
11834
12062
|
interface HTMLElementTagNameMap {
|
|
11835
12063
|
'dap-ds-icon-star-fill': SystemStarFill;
|