@revotech-group/revotech-ui-kit 0.1.40 → 0.1.42
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/library.css +10 -0
- package/dist/rtg-ui-kit.js +1691 -1603
- package/dist/rtg-ui-kit.umd.cjs +491 -413
- package/dist/src/assets/icons/eye-off.d.ts +1 -0
- package/dist/src/assets/icons/eye-on.d.ts +1 -0
- package/dist/src/assets/icons/index.d.ts +2 -0
- package/dist/src/components/ui/input/input.d.ts +2 -0
- package/package.json +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function renderEyeOffIcon(): import('lit').TemplateResult<2>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function renderEyeIcon(): import('lit').TemplateResult<2>;
|
|
@@ -15,6 +15,8 @@ export declare class RtgInput extends BaseElement {
|
|
|
15
15
|
countryCode: string;
|
|
16
16
|
selectedLabel: string;
|
|
17
17
|
private rawTelValue;
|
|
18
|
+
private showPassword;
|
|
19
|
+
private togglePasswordVisibility;
|
|
18
20
|
private handleCountryChange;
|
|
19
21
|
protected firstUpdated(_changedProperties: PropertyValues): void;
|
|
20
22
|
private handleInputChange;
|
package/package.json
CHANGED