dap-design-system 0.35.23 → 0.35.24
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/dds.d.ts +36 -0
- package/dist/dds.js +4439 -4447
- package/dist/dds.js.map +1 -1
- package/dist/manifest/types/vue/index.d.ts +331 -331
- package/dist/manifest/vscode.html-custom-data.json +125 -125
- package/dist/manifest/web-types.json +368 -368
- package/dist/react-types.ts +11 -11
- package/dist/react.d.ts +191 -155
- package/dist/react.js +110 -110
- package/dist/react.js.map +1 -1
- package/package.json +8 -6
package/dist/dds.d.ts
CHANGED
|
@@ -739,6 +739,13 @@ declare class ComboboxBaseElement extends GenericFormElement {
|
|
|
739
739
|
get isOpenOnEmpty(): boolean;
|
|
740
740
|
get isOpenOnAutocomplete(): boolean;
|
|
741
741
|
handleClick: () => void;
|
|
742
|
+
private handleEnterKey;
|
|
743
|
+
private handleCurrentItemEnter;
|
|
744
|
+
private handleSearchEnter;
|
|
745
|
+
private handleDefaultEnter;
|
|
746
|
+
private handleSelectedItemChange;
|
|
747
|
+
private handleTextSearch;
|
|
748
|
+
private handleArrowKeys;
|
|
742
749
|
handleKeyDown: (event: KeyboardEvent) => Promise<false | void>;
|
|
743
750
|
handleInput: (event: InputEvent) => Promise<void>;
|
|
744
751
|
clearSelection(): Promise<void>;
|
|
@@ -757,6 +764,11 @@ declare class ComboboxBaseElement extends GenericFormElement {
|
|
|
757
764
|
private setSelectionRange;
|
|
758
765
|
private clearSelectionRange;
|
|
759
766
|
getValidity(): boolean;
|
|
767
|
+
private getAutoCompleteValidity;
|
|
768
|
+
private getManualInputValidity;
|
|
769
|
+
private getSearchTextValidity;
|
|
770
|
+
private getSelectedItemValidity;
|
|
771
|
+
private getBasicValidity;
|
|
760
772
|
get validity(): ValidityState;
|
|
761
773
|
get validationMessage(): string;
|
|
762
774
|
checkValidity(): boolean;
|
|
@@ -766,6 +778,11 @@ declare class ComboboxBaseElement extends GenericFormElement {
|
|
|
766
778
|
getActiveDescendant(): HTMLInputElement | DapDSOptionItem | null | undefined;
|
|
767
779
|
getSearchIconSize(size: string): "lg" | "md" | "sm";
|
|
768
780
|
getInnerIconSize(size: string): 10 | 16;
|
|
781
|
+
private renderInput;
|
|
782
|
+
private renderClearButton;
|
|
783
|
+
private renderIndicatorIcon;
|
|
784
|
+
private renderSelectActions;
|
|
785
|
+
private renderOptionList;
|
|
769
786
|
renderCombobox(): TemplateResult_2;
|
|
770
787
|
}
|
|
771
788
|
|
|
@@ -2159,6 +2176,7 @@ export declare class DapDSContentSwitcher extends DdsElement {
|
|
|
2159
2176
|
private getAllInputs;
|
|
2160
2177
|
private syncInputElements;
|
|
2161
2178
|
private handleInputClick;
|
|
2179
|
+
protected updated(_changedProperties: PropertyValues): void;
|
|
2162
2180
|
render(): TemplateResult_2;
|
|
2163
2181
|
}
|
|
2164
2182
|
|
|
@@ -2420,6 +2438,11 @@ export declare class DapDSDataTable<T> extends DdsElement {
|
|
|
2420
2438
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
2421
2439
|
protected updated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
2422
2440
|
private columnsMemo;
|
|
2441
|
+
private renderHeaderCell;
|
|
2442
|
+
private renderHeaderCellContent;
|
|
2443
|
+
private getHeaderCellStyle;
|
|
2444
|
+
private getSortIcon;
|
|
2445
|
+
private getSortTitle;
|
|
2423
2446
|
private renderHeader;
|
|
2424
2447
|
private renderBody;
|
|
2425
2448
|
protected render(): TemplateResult_2;
|
|
@@ -3576,6 +3599,11 @@ export declare class DapDSNumberInput extends InputBaseElement {
|
|
|
3576
3599
|
firstUpdated(): void;
|
|
3577
3600
|
private handleKeydown;
|
|
3578
3601
|
private getMaskedValue;
|
|
3602
|
+
private isBackspaceOrDelete;
|
|
3603
|
+
private handleEmptyValue;
|
|
3604
|
+
private createNumericRegex;
|
|
3605
|
+
private enforceDecimalScale;
|
|
3606
|
+
private convertToNumericValue;
|
|
3579
3607
|
private handleInput;
|
|
3580
3608
|
protected updated(changedProperties: PropertyValues): void;
|
|
3581
3609
|
private _decrement;
|
|
@@ -3759,6 +3787,9 @@ export declare class DapDSOptionList extends DapDSOptionList_base {
|
|
|
3759
3787
|
setOptionsFromSlottedItems(): void;
|
|
3760
3788
|
private handleKeydown;
|
|
3761
3789
|
private scrollToActiveOption;
|
|
3790
|
+
private handleNavigationKey;
|
|
3791
|
+
private handleActionKey;
|
|
3792
|
+
private handleTypeheadKey;
|
|
3762
3793
|
private handleKeyCodes;
|
|
3763
3794
|
private getEventDetails;
|
|
3764
3795
|
private findNearestEnabled;
|
|
@@ -3772,6 +3803,8 @@ export declare class DapDSOptionList extends DapDSOptionList_base {
|
|
|
3772
3803
|
private handleOptionClick;
|
|
3773
3804
|
getSearchString: (char: string) => string;
|
|
3774
3805
|
buildQueryString: (char: string) => void;
|
|
3806
|
+
private handleInitialFocus;
|
|
3807
|
+
private handleKeyFocus;
|
|
3775
3808
|
captureFocus(key?: string): void;
|
|
3776
3809
|
removeFocus(): void;
|
|
3777
3810
|
private handleSlotChange;
|
|
@@ -3870,6 +3903,9 @@ export declare class DapDSPager extends DdsElement {
|
|
|
3870
3903
|
protected updated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
3871
3904
|
private updatePageIndex;
|
|
3872
3905
|
private updatePageSize;
|
|
3906
|
+
private renderPageSizeSelect;
|
|
3907
|
+
private renderNavigationButton;
|
|
3908
|
+
private renderPageInfo;
|
|
3873
3909
|
protected render(): TemplateResult_2<1>;
|
|
3874
3910
|
}
|
|
3875
3911
|
|