@ic-pay/icpay-widget 0.1.86 → 0.1.88
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/index.d.ts +11 -0
- package/dist/index.global.js +475 -380
- package/dist/index.global.js.map +1 -1
- package/dist/index.js +192 -97
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -247,10 +247,21 @@ declare class ICPayTokenSelector extends LitElement {
|
|
|
247
247
|
primaryColor?: string;
|
|
248
248
|
secondaryColor?: string;
|
|
249
249
|
};
|
|
250
|
+
open: boolean;
|
|
251
|
+
showLabel: boolean;
|
|
252
|
+
private triggerEl?;
|
|
253
|
+
private wrapperEl?;
|
|
254
|
+
private menuPos;
|
|
250
255
|
connectedCallback(): void;
|
|
251
256
|
updated(changed: Map<string, unknown>): void;
|
|
257
|
+
firstUpdated(): void;
|
|
258
|
+
disconnectedCallback(): void;
|
|
252
259
|
private get effectiveSymbol();
|
|
260
|
+
private getOptionBySymbol;
|
|
261
|
+
private getLogoUrl;
|
|
253
262
|
private onSelect;
|
|
263
|
+
private toggleDropdown;
|
|
264
|
+
private closeDropdown;
|
|
254
265
|
render(): lit.TemplateResult<1>;
|
|
255
266
|
}
|
|
256
267
|
declare global {
|