@revotech-group/revotech-ui-kit 0.0.89 → 0.0.91
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.
|
@@ -14,10 +14,11 @@ export declare class RtgInput extends BaseElement {
|
|
|
14
14
|
country: string;
|
|
15
15
|
countryCode: string;
|
|
16
16
|
selectedLabel: string;
|
|
17
|
+
private rawTelValue;
|
|
17
18
|
private handleCountryChange;
|
|
18
19
|
protected firstUpdated(_changedProperties: PropertyValues): void;
|
|
19
20
|
private handleInputChange;
|
|
20
|
-
private
|
|
21
|
+
private emitValueChange;
|
|
21
22
|
handleFocus(): void;
|
|
22
23
|
protected getAttributesToExclude(): string[];
|
|
23
24
|
protected getAttributesToRemoveFromParent(): string[];
|
|
@@ -3,6 +3,7 @@ import { BaseElement } from '../../../helpers';
|
|
|
3
3
|
export declare class LightSampleDemo extends BaseElement {
|
|
4
4
|
constructor();
|
|
5
5
|
private btnClass;
|
|
6
|
+
private inputValue;
|
|
6
7
|
protected getAttributesToExclude(): string[];
|
|
7
8
|
protected createRenderRoot(): HTMLElement | DocumentFragment;
|
|
8
9
|
render(): import('lit').TemplateResult<1>;
|
package/package.json
CHANGED