dap-design-system 0.13.0 → 0.13.2
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 +5 -0
- package/dist/dds.js +67 -40
- package/dist/dds.js.map +1 -1
- package/dist/manifest/types/vue/index.d.ts +406 -405
- package/dist/manifest/vscode.html-custom-data.json +378 -378
- package/dist/manifest/web-types.json +540 -540
- package/dist/react.d.ts +127 -122
- package/dist/react.js +144 -144
- package/dist/react.js.map +1 -1
- package/package.json +1 -1
package/dist/dds.d.ts
CHANGED
|
@@ -1815,6 +1815,7 @@ export declare class DapDSIconButton extends DdsElement {
|
|
|
1815
1815
|
*
|
|
1816
1816
|
*/
|
|
1817
1817
|
export declare class DapDSInput extends InputBaseElement {
|
|
1818
|
+
constructor();
|
|
1818
1819
|
render(): TemplateResult_2<1>;
|
|
1819
1820
|
}
|
|
1820
1821
|
|
|
@@ -2769,9 +2770,11 @@ export declare class DapDSTextarea extends GenericFormElement {
|
|
|
2769
2770
|
get focusElement(): HTMLTextAreaElement;
|
|
2770
2771
|
private _handleSlotChange;
|
|
2771
2772
|
connectedCallback(): Promise<void>;
|
|
2773
|
+
attributeChangedCallback(name: string, oldValue: any, newValue: any): void;
|
|
2772
2774
|
onInput(): void;
|
|
2773
2775
|
onChange(): void;
|
|
2774
2776
|
onSelect(e: Event): void;
|
|
2777
|
+
formResetCallback(): void;
|
|
2775
2778
|
handleInvalid(event: Event): void;
|
|
2776
2779
|
private _renderFooter;
|
|
2777
2780
|
render(): unknown;
|
|
@@ -3198,7 +3201,9 @@ declare class InputBaseElement extends GenericFormElement {
|
|
|
3198
3201
|
get nativeControl(): HTMLInputElement;
|
|
3199
3202
|
private _handleSlotChange;
|
|
3200
3203
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
3204
|
+
attributeChangedCallback(name: string, oldValue: any, newValue: any): void;
|
|
3201
3205
|
onInput: () => void;
|
|
3206
|
+
formResetCallback(): void;
|
|
3202
3207
|
onBlur(): void;
|
|
3203
3208
|
onFocus(): void;
|
|
3204
3209
|
onChange(): void;
|