@sendity/client 0.1.8 → 0.1.9
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/components/sendity.d.ts +1 -0
- package/dist/i18n/index.d.ts +4 -1
- package/dist/i18n/sendity.cs.d.ts +3 -0
- package/dist/i18n/sendity.da.d.ts +3 -0
- package/dist/i18n/sendity.de-he.d.ts +3 -0
- package/dist/i18n/sendity.el.d.ts +3 -0
- package/dist/i18n/sendity.es.d.ts +3 -0
- package/dist/i18n/sendity.hr.d.ts +3 -0
- package/dist/i18n/sendity.it.d.ts +3 -0
- package/dist/i18n/sendity.nl.d.ts +3 -0
- package/dist/i18n/sendity.pl.d.ts +3 -0
- package/dist/i18n/sendity.tr.d.ts +3 -0
- package/dist/sendity-client.js +1051 -758
- package/package.json +1 -1
|
@@ -121,6 +121,7 @@ export declare class Sendity extends HTMLElement {
|
|
|
121
121
|
private verifiedSigningInMessage;
|
|
122
122
|
private destinationAddressForChannel;
|
|
123
123
|
private escapeHtml;
|
|
124
|
+
private orLabel;
|
|
124
125
|
private renderVerifiers;
|
|
125
126
|
private channelClass;
|
|
126
127
|
private channelLabel;
|
package/dist/i18n/index.d.ts
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
1
|
import { type SendityI18n } from './sendity.en';
|
|
2
|
-
export
|
|
2
|
+
export declare const supportedLangs: readonly ["en", "de", "fr", "es", "it", "pl", "cs", "da", "nl", "hr", "el", "tr", "de-he"];
|
|
3
|
+
export type Lang = (typeof supportedLangs)[number];
|
|
4
|
+
export declare function isSupportedLang(lang: string): lang is Lang;
|
|
5
|
+
export declare function normalizeLang(lang: string | undefined): Lang | null;
|
|
3
6
|
export declare function getI18n(lang: Lang): SendityI18n;
|