@revotech-group/revotech-ui-kit 0.0.70 → 0.0.71
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.
|
@@ -11,11 +11,11 @@ export declare class Button extends BaseElement {
|
|
|
11
11
|
type: buttonType.ButtonType;
|
|
12
12
|
variant: buttonType.ButtonVariant;
|
|
13
13
|
size: buttonType.ButtonSize;
|
|
14
|
-
isCustomClass: boolean;
|
|
15
14
|
buttonElement: HTMLButtonElement;
|
|
16
15
|
private handleClick;
|
|
17
16
|
protected createRenderRoot(): HTMLElement | DocumentFragment;
|
|
18
17
|
protected getAttributesToExclude(): string[];
|
|
18
|
+
protected getAttributesToRemoveFromParent(): string[];
|
|
19
19
|
protected firstUpdated(): void;
|
|
20
20
|
render(): import('lit').TemplateResult<1>;
|
|
21
21
|
}
|
|
@@ -12,6 +12,7 @@ export declare class RtgInput extends BaseElement {
|
|
|
12
12
|
protected firstUpdated(_changedProperties: PropertyValues): void;
|
|
13
13
|
handleInputChange(event: Event): void;
|
|
14
14
|
protected getAttributesToExclude(): string[];
|
|
15
|
+
protected getAttributesToRemoveFromParent(): string[];
|
|
15
16
|
protected createRenderRoot(): HTMLElement | DocumentFragment;
|
|
16
17
|
render(): import('lit').TemplateResult<1>;
|
|
17
18
|
}
|
|
@@ -4,9 +4,11 @@ export declare abstract class BaseElement extends LitElement {
|
|
|
4
4
|
shadow: boolean;
|
|
5
5
|
constructor();
|
|
6
6
|
protected getAttributesToExclude(): string[];
|
|
7
|
+
protected getAttributesToRemoveFromParent(): string[];
|
|
7
8
|
protected getFilteredAttributes(): {
|
|
8
9
|
[key: string]: string;
|
|
9
10
|
};
|
|
11
|
+
protected removeParentAttributes(): void;
|
|
10
12
|
protected isCustomPropertySet(property: string): boolean;
|
|
11
13
|
protected applyCustomClass(variables: string[], selector: string, className?: string): void;
|
|
12
14
|
protected removeDuplicateContent(): void;
|
package/package.json
CHANGED