@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.
@@ -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;
@@ -1,3 +1,6 @@
1
1
  import { type SendityI18n } from './sendity.en';
2
- export type Lang = 'en' | 'de' | 'fr';
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;
@@ -0,0 +1,3 @@
1
+ import { type SendityI18n } from './sendity.en';
2
+ declare const cs: SendityI18n;
3
+ export default cs;
@@ -0,0 +1,3 @@
1
+ import { type SendityI18n } from './sendity.en';
2
+ declare const da: SendityI18n;
3
+ export default da;
@@ -0,0 +1,3 @@
1
+ import { type SendityI18n } from './sendity.en';
2
+ declare const de_he: SendityI18n;
3
+ export default de_he;
@@ -0,0 +1,3 @@
1
+ import { type SendityI18n } from './sendity.en';
2
+ declare const el: SendityI18n;
3
+ export default el;
@@ -0,0 +1,3 @@
1
+ import { type SendityI18n } from './sendity.en';
2
+ declare const es: SendityI18n;
3
+ export default es;
@@ -0,0 +1,3 @@
1
+ import { type SendityI18n } from './sendity.en';
2
+ declare const hr: SendityI18n;
3
+ export default hr;
@@ -0,0 +1,3 @@
1
+ import { type SendityI18n } from './sendity.en';
2
+ declare const it: SendityI18n;
3
+ export default it;
@@ -0,0 +1,3 @@
1
+ import { type SendityI18n } from './sendity.en';
2
+ declare const nl: SendityI18n;
3
+ export default nl;
@@ -0,0 +1,3 @@
1
+ import { type SendityI18n } from './sendity.en';
2
+ declare const pl: SendityI18n;
3
+ export default pl;
@@ -0,0 +1,3 @@
1
+ import { type SendityI18n } from './sendity.en';
2
+ declare const tr: SendityI18n;
3
+ export default tr;