valtech-components 4.0.96 → 4.0.97
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/esm2022/lib/components/organisms/verify-view/types.mjs +2 -0
- package/esm2022/lib/components/organisms/verify-view/verify-view.component.mjs +190 -0
- package/esm2022/lib/components/organisms/verify-view/verify-view.i18n.mjs +33 -0
- package/esm2022/lib/version.mjs +2 -2
- package/esm2022/public-api.mjs +4 -1
- package/fesm2022/valtech-components.mjs +214 -2
- package/fesm2022/valtech-components.mjs.map +1 -1
- package/lib/components/organisms/verify-view/types.d.ts +7 -0
- package/lib/components/organisms/verify-view/verify-view.component.d.ts +26 -0
- package/lib/components/organisms/verify-view/verify-view.i18n.d.ts +2 -0
- package/lib/version.d.ts +1 -1
- package/package.json +1 -1
- package/public-api.d.ts +2 -0
|
@@ -56,7 +56,7 @@ import { BrowserMultiFormatReader } from '@zxing/browser';
|
|
|
56
56
|
* Current version of valtech-components.
|
|
57
57
|
* This is automatically updated during the publish process.
|
|
58
58
|
*/
|
|
59
|
-
const VERSION = '4.0.
|
|
59
|
+
const VERSION = '4.0.97';
|
|
60
60
|
|
|
61
61
|
// Control de estado de refresco (singleton a nivel de módulo)
|
|
62
62
|
let isRefreshing = false;
|
|
@@ -63780,6 +63780,218 @@ function news() {
|
|
|
63780
63780
|
*/
|
|
63781
63781
|
// Transformer
|
|
63782
63782
|
|
|
63783
|
+
const VERIFY_VIEW_I18N = {
|
|
63784
|
+
es: {
|
|
63785
|
+
verifying: 'Verificando...',
|
|
63786
|
+
checkingCode: 'Estamos verificando tu código.',
|
|
63787
|
+
successTitle: '¡Email verificado!',
|
|
63788
|
+
successSubtitle: 'Tu cuenta está activa.',
|
|
63789
|
+
continueBtn: 'Continuar',
|
|
63790
|
+
errorTitle: 'Error al verificar',
|
|
63791
|
+
resend: 'Reenviar código',
|
|
63792
|
+
codeSent: 'Código reenviado — revisa tu email.',
|
|
63793
|
+
invalidCode: 'El código no es válido.',
|
|
63794
|
+
expiredCode: 'El código expiró. Solicita uno nuevo.',
|
|
63795
|
+
alreadyVerified: 'Este email ya está verificado.',
|
|
63796
|
+
tooManyAttempts: 'Demasiados intentos. Espera unos minutos.',
|
|
63797
|
+
unknownError: 'Ocurrió un error. Intenta de nuevo.',
|
|
63798
|
+
},
|
|
63799
|
+
en: {
|
|
63800
|
+
verifying: 'Verifying...',
|
|
63801
|
+
checkingCode: 'We are verifying your code.',
|
|
63802
|
+
successTitle: 'Email verified!',
|
|
63803
|
+
successSubtitle: 'Your account is now active.',
|
|
63804
|
+
continueBtn: 'Continue',
|
|
63805
|
+
errorTitle: 'Verification failed',
|
|
63806
|
+
resend: 'Resend code',
|
|
63807
|
+
codeSent: 'Code sent — check your email.',
|
|
63808
|
+
invalidCode: 'The code is not valid.',
|
|
63809
|
+
expiredCode: 'The code has expired. Request a new one.',
|
|
63810
|
+
alreadyVerified: 'This email is already verified.',
|
|
63811
|
+
tooManyAttempts: 'Too many attempts. Please wait a few minutes.',
|
|
63812
|
+
unknownError: 'An error occurred. Please try again.',
|
|
63813
|
+
},
|
|
63814
|
+
};
|
|
63815
|
+
|
|
63816
|
+
const NS = 'VerifyView';
|
|
63817
|
+
class VerifyViewComponent {
|
|
63818
|
+
constructor() {
|
|
63819
|
+
this.onSuccess = output();
|
|
63820
|
+
this.auth = inject(AuthService);
|
|
63821
|
+
this.router = inject(Router);
|
|
63822
|
+
this.i18n = inject(I18nService);
|
|
63823
|
+
this.state = signal('verifying');
|
|
63824
|
+
this.errorMessage = signal('');
|
|
63825
|
+
this.resendSent = signal(false);
|
|
63826
|
+
this.resending = signal(false);
|
|
63827
|
+
this.maskedEmail = () => {
|
|
63828
|
+
const email = this.props?.email ?? '';
|
|
63829
|
+
const atIdx = email.indexOf('@');
|
|
63830
|
+
if (atIdx < 0)
|
|
63831
|
+
return email;
|
|
63832
|
+
const local = email.slice(0, atIdx);
|
|
63833
|
+
const domain = email.slice(atIdx);
|
|
63834
|
+
const visible = local.slice(0, Math.min(2, local.length));
|
|
63835
|
+
return `${visible}***${domain}`;
|
|
63836
|
+
};
|
|
63837
|
+
this.i18n.registerDefaults(NS, VERIFY_VIEW_I18N);
|
|
63838
|
+
addIcons({ checkmarkCircleOutline, warningOutline });
|
|
63839
|
+
}
|
|
63840
|
+
ngOnInit() {
|
|
63841
|
+
void this.runVerify();
|
|
63842
|
+
}
|
|
63843
|
+
t(key) {
|
|
63844
|
+
return this.i18n.t(key, NS);
|
|
63845
|
+
}
|
|
63846
|
+
async runVerify() {
|
|
63847
|
+
try {
|
|
63848
|
+
await firstValueFrom(this.auth.verifyEmail({ email: this.props.email, code: this.props.code }));
|
|
63849
|
+
this.state.set('success');
|
|
63850
|
+
}
|
|
63851
|
+
catch (err) {
|
|
63852
|
+
this.state.set('error');
|
|
63853
|
+
this.errorMessage.set(this.resolveErrorMessage(err));
|
|
63854
|
+
}
|
|
63855
|
+
}
|
|
63856
|
+
onContinue() {
|
|
63857
|
+
this.onSuccess.emit();
|
|
63858
|
+
if (this.props.redirectOnSuccess) {
|
|
63859
|
+
void this.router.navigateByUrl(this.props.redirectOnSuccess, { replaceUrl: true });
|
|
63860
|
+
}
|
|
63861
|
+
}
|
|
63862
|
+
async onResend() {
|
|
63863
|
+
this.resending.set(true);
|
|
63864
|
+
try {
|
|
63865
|
+
await firstValueFrom(this.auth.resendCode({ email: this.props.email, type: 'EMAIL_VERIFY' }));
|
|
63866
|
+
this.resendSent.set(true);
|
|
63867
|
+
}
|
|
63868
|
+
catch {
|
|
63869
|
+
// ignore resend errors silently — user can retry
|
|
63870
|
+
}
|
|
63871
|
+
finally {
|
|
63872
|
+
this.resending.set(false);
|
|
63873
|
+
}
|
|
63874
|
+
}
|
|
63875
|
+
resolveErrorMessage(err) {
|
|
63876
|
+
if (err && typeof err === 'object') {
|
|
63877
|
+
const code = err['code'];
|
|
63878
|
+
const errorCodeMap = {
|
|
63879
|
+
INVALID_CODE: this.t('invalidCode'),
|
|
63880
|
+
EXPIRED_CODE: this.t('expiredCode'),
|
|
63881
|
+
CODE_EXPIRED: this.t('expiredCode'),
|
|
63882
|
+
ALREADY_VERIFIED: this.t('alreadyVerified'),
|
|
63883
|
+
TOO_MANY_ATTEMPTS: this.t('tooManyAttempts'),
|
|
63884
|
+
RATE_LIMITED: this.t('tooManyAttempts'),
|
|
63885
|
+
};
|
|
63886
|
+
if (code && errorCodeMap[code]) {
|
|
63887
|
+
return errorCodeMap[code];
|
|
63888
|
+
}
|
|
63889
|
+
const msg = err['message'];
|
|
63890
|
+
if (msg)
|
|
63891
|
+
return msg;
|
|
63892
|
+
}
|
|
63893
|
+
return this.t('unknownError');
|
|
63894
|
+
}
|
|
63895
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: VerifyViewComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
63896
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.14", type: VerifyViewComponent, isStandalone: true, selector: "val-verify-view", inputs: { props: "props" }, outputs: { onSuccess: "onSuccess" }, ngImport: i0, template: `
|
|
63897
|
+
<div class="verify-view" [class.verify-view--card]="props.showCard">
|
|
63898
|
+
@if (state() === 'verifying') {
|
|
63899
|
+
<div class="verify-view__state">
|
|
63900
|
+
<ion-spinner name="crescent" class="verify-view__spinner" />
|
|
63901
|
+
<p class="verify-view__title">{{ t('verifying') }}</p>
|
|
63902
|
+
<p class="verify-view__subtitle verify-view__subtitle--muted">{{ maskedEmail() }}</p>
|
|
63903
|
+
</div>
|
|
63904
|
+
}
|
|
63905
|
+
|
|
63906
|
+
@if (state() === 'success') {
|
|
63907
|
+
<div class="verify-view__state">
|
|
63908
|
+
<ion-icon name="checkmark-circle-outline" class="verify-view__icon verify-view__icon--success" />
|
|
63909
|
+
<p class="verify-view__title">{{ t('successTitle') }}</p>
|
|
63910
|
+
<p class="verify-view__subtitle verify-view__subtitle--muted">{{ t('successSubtitle') }}</p>
|
|
63911
|
+
<button type="button" class="verify-view__btn verify-view__btn--primary" (click)="onContinue()">
|
|
63912
|
+
{{ t('continueBtn') }}
|
|
63913
|
+
</button>
|
|
63914
|
+
</div>
|
|
63915
|
+
}
|
|
63916
|
+
|
|
63917
|
+
@if (state() === 'error') {
|
|
63918
|
+
<div class="verify-view__state">
|
|
63919
|
+
<ion-icon name="warning-outline" class="verify-view__icon verify-view__icon--warning" />
|
|
63920
|
+
<p class="verify-view__title">{{ t('errorTitle') }}</p>
|
|
63921
|
+
<p class="verify-view__subtitle verify-view__subtitle--error">{{ errorMessage() }}</p>
|
|
63922
|
+
@if (resendSent()) {
|
|
63923
|
+
<p class="verify-view__subtitle verify-view__subtitle--success">{{ t('codeSent') }}</p>
|
|
63924
|
+
} @else {
|
|
63925
|
+
<button
|
|
63926
|
+
type="button"
|
|
63927
|
+
class="verify-view__btn verify-view__btn--outline"
|
|
63928
|
+
[disabled]="resending()"
|
|
63929
|
+
(click)="onResend()"
|
|
63930
|
+
>
|
|
63931
|
+
@if (resending()) {
|
|
63932
|
+
<ion-spinner name="crescent" class="verify-view__btn-spinner" />
|
|
63933
|
+
} @else {
|
|
63934
|
+
{{ t('resend') }}
|
|
63935
|
+
}
|
|
63936
|
+
</button>
|
|
63937
|
+
}
|
|
63938
|
+
</div>
|
|
63939
|
+
}
|
|
63940
|
+
</div>
|
|
63941
|
+
`, isInline: true, styles: [":host{display:block;width:100%}.verify-view{display:flex;flex-direction:column;align-items:center;padding:1.5rem;width:100%;box-sizing:border-box}.verify-view--card{background:var(--ion-card-background, var(--ion-background-color, #fff));border-radius:12px;box-shadow:0 2px 8px #00000014;max-width:var(--val-container-sm, 540px);margin-left:auto;margin-right:auto;padding:2rem}.verify-view__state{display:flex;flex-direction:column;align-items:center;gap:1rem;width:100%;text-align:center}.verify-view__spinner{--color: var(--ion-color-primary, #ff00b2);width:3rem;height:3rem}.verify-view__icon{font-size:3.5rem}.verify-view__icon--success{color:var(--ion-color-success, #2dd36f)}.verify-view__icon--warning{color:var(--ion-color-warning, #ffc409)}.verify-view__title{color:var(--ion-color-dark, #2f2a36);font-size:1.25rem;font-weight:700;margin:0;line-height:1.3}.verify-view__subtitle{font-size:.9375rem;line-height:1.5;margin:0}.verify-view__subtitle--muted{color:var(--ion-color-medium, #6b6675)}.verify-view__subtitle--error{color:var(--ion-color-danger, #eb445a)}.verify-view__subtitle--success{color:var(--ion-color-success, #2dd36f);font-weight:500}.verify-view__btn{align-items:center;border:none;border-radius:8px;cursor:pointer;display:inline-flex;font-size:1rem;font-weight:600;gap:.5rem;justify-content:center;margin-top:.5rem;min-height:48px;padding:.75rem 2rem;transition:background-color .12s ease,opacity .12s ease;width:100%;max-width:320px}.verify-view__btn:disabled{cursor:not-allowed;opacity:.6}.verify-view__btn--primary{background:var(--ion-color-primary, #ff00b2);color:var(--ion-color-primary-contrast, #fff)}.verify-view__btn--primary:hover:not(:disabled){background:var(--ion-color-primary-shade, #b5007f)}.verify-view__btn--outline{background:transparent;border:1.5px solid var(--ion-color-primary, #ff00b2);color:var(--ion-color-primary, #ff00b2)}.verify-view__btn--outline:hover:not(:disabled){background:rgba(var(--ion-color-primary-rgb, 255, 0, 178),.08)}.verify-view__btn-spinner{--color: currentColor;width:1.25rem;height:1.25rem}@media (max-width: 480px){.verify-view--card{padding:1.5rem}}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "component", type: IonIcon, selector: "ion-icon", inputs: ["color", "flipRtl", "icon", "ios", "lazy", "md", "mode", "name", "sanitize", "size", "src"] }, { kind: "component", type: IonSpinner, selector: "ion-spinner", inputs: ["color", "duration", "name", "paused"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
63942
|
+
}
|
|
63943
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: VerifyViewComponent, decorators: [{
|
|
63944
|
+
type: Component,
|
|
63945
|
+
args: [{ selector: 'val-verify-view', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [CommonModule, IonIcon, IonSpinner], template: `
|
|
63946
|
+
<div class="verify-view" [class.verify-view--card]="props.showCard">
|
|
63947
|
+
@if (state() === 'verifying') {
|
|
63948
|
+
<div class="verify-view__state">
|
|
63949
|
+
<ion-spinner name="crescent" class="verify-view__spinner" />
|
|
63950
|
+
<p class="verify-view__title">{{ t('verifying') }}</p>
|
|
63951
|
+
<p class="verify-view__subtitle verify-view__subtitle--muted">{{ maskedEmail() }}</p>
|
|
63952
|
+
</div>
|
|
63953
|
+
}
|
|
63954
|
+
|
|
63955
|
+
@if (state() === 'success') {
|
|
63956
|
+
<div class="verify-view__state">
|
|
63957
|
+
<ion-icon name="checkmark-circle-outline" class="verify-view__icon verify-view__icon--success" />
|
|
63958
|
+
<p class="verify-view__title">{{ t('successTitle') }}</p>
|
|
63959
|
+
<p class="verify-view__subtitle verify-view__subtitle--muted">{{ t('successSubtitle') }}</p>
|
|
63960
|
+
<button type="button" class="verify-view__btn verify-view__btn--primary" (click)="onContinue()">
|
|
63961
|
+
{{ t('continueBtn') }}
|
|
63962
|
+
</button>
|
|
63963
|
+
</div>
|
|
63964
|
+
}
|
|
63965
|
+
|
|
63966
|
+
@if (state() === 'error') {
|
|
63967
|
+
<div class="verify-view__state">
|
|
63968
|
+
<ion-icon name="warning-outline" class="verify-view__icon verify-view__icon--warning" />
|
|
63969
|
+
<p class="verify-view__title">{{ t('errorTitle') }}</p>
|
|
63970
|
+
<p class="verify-view__subtitle verify-view__subtitle--error">{{ errorMessage() }}</p>
|
|
63971
|
+
@if (resendSent()) {
|
|
63972
|
+
<p class="verify-view__subtitle verify-view__subtitle--success">{{ t('codeSent') }}</p>
|
|
63973
|
+
} @else {
|
|
63974
|
+
<button
|
|
63975
|
+
type="button"
|
|
63976
|
+
class="verify-view__btn verify-view__btn--outline"
|
|
63977
|
+
[disabled]="resending()"
|
|
63978
|
+
(click)="onResend()"
|
|
63979
|
+
>
|
|
63980
|
+
@if (resending()) {
|
|
63981
|
+
<ion-spinner name="crescent" class="verify-view__btn-spinner" />
|
|
63982
|
+
} @else {
|
|
63983
|
+
{{ t('resend') }}
|
|
63984
|
+
}
|
|
63985
|
+
</button>
|
|
63986
|
+
}
|
|
63987
|
+
</div>
|
|
63988
|
+
}
|
|
63989
|
+
</div>
|
|
63990
|
+
`, styles: [":host{display:block;width:100%}.verify-view{display:flex;flex-direction:column;align-items:center;padding:1.5rem;width:100%;box-sizing:border-box}.verify-view--card{background:var(--ion-card-background, var(--ion-background-color, #fff));border-radius:12px;box-shadow:0 2px 8px #00000014;max-width:var(--val-container-sm, 540px);margin-left:auto;margin-right:auto;padding:2rem}.verify-view__state{display:flex;flex-direction:column;align-items:center;gap:1rem;width:100%;text-align:center}.verify-view__spinner{--color: var(--ion-color-primary, #ff00b2);width:3rem;height:3rem}.verify-view__icon{font-size:3.5rem}.verify-view__icon--success{color:var(--ion-color-success, #2dd36f)}.verify-view__icon--warning{color:var(--ion-color-warning, #ffc409)}.verify-view__title{color:var(--ion-color-dark, #2f2a36);font-size:1.25rem;font-weight:700;margin:0;line-height:1.3}.verify-view__subtitle{font-size:.9375rem;line-height:1.5;margin:0}.verify-view__subtitle--muted{color:var(--ion-color-medium, #6b6675)}.verify-view__subtitle--error{color:var(--ion-color-danger, #eb445a)}.verify-view__subtitle--success{color:var(--ion-color-success, #2dd36f);font-weight:500}.verify-view__btn{align-items:center;border:none;border-radius:8px;cursor:pointer;display:inline-flex;font-size:1rem;font-weight:600;gap:.5rem;justify-content:center;margin-top:.5rem;min-height:48px;padding:.75rem 2rem;transition:background-color .12s ease,opacity .12s ease;width:100%;max-width:320px}.verify-view__btn:disabled{cursor:not-allowed;opacity:.6}.verify-view__btn--primary{background:var(--ion-color-primary, #ff00b2);color:var(--ion-color-primary-contrast, #fff)}.verify-view__btn--primary:hover:not(:disabled){background:var(--ion-color-primary-shade, #b5007f)}.verify-view__btn--outline{background:transparent;border:1.5px solid var(--ion-color-primary, #ff00b2);color:var(--ion-color-primary, #ff00b2)}.verify-view__btn--outline:hover:not(:disabled){background:rgba(var(--ion-color-primary-rgb, 255, 0, 178),.08)}.verify-view__btn-spinner{--color: currentColor;width:1.25rem;height:1.25rem}@media (max-width: 480px){.verify-view--card{padding:1.5rem}}\n"] }]
|
|
63991
|
+
}], ctorParameters: () => [], propDecorators: { props: [{
|
|
63992
|
+
type: Input
|
|
63993
|
+
}] } });
|
|
63994
|
+
|
|
63783
63995
|
/**
|
|
63784
63996
|
* Token de inyección para la configuración de la plataforma de contenido.
|
|
63785
63997
|
*/
|
|
@@ -68922,5 +69134,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
68922
69134
|
* Generated bundle index. Do not edit.
|
|
68923
69135
|
*/
|
|
68924
69136
|
|
|
68925
|
-
export { ACTION_CARD_DEFAULTS, AD_SIZE_MAP, API_TABLE_COLUMN_LABELS, APP_VERSION_PLATFORM_PLUGIN, APP_VERSION_REMOTE_PLUGIN, ARTICLE_CARD_DEFAULTS, ARTICLE_SPACING, ARTICLE_STRIP_DEFAULTS, AUTH_CTA_DEFAULTS, AVATAR_UPLOAD_DEFAULTS, AboutViewComponent, AccordionComponent, AccountViewComponent, ActionCardComponent, ActionHeaderComponent, ActionType, AdSlotComponent, AdsLoaderService, AdsService, AlertBoxComponent, AnalyticsErrorHandler, AnalyticsRouterTracker, AnalyticsService, AnimatedTerminalComponent, ApiKeyCreateModalComponent, ApiKeyService, ApiKeysModalComponent, ApiKeysViewComponent, AppConfigService, AppVersionService, ArticleBuilder, ArticleCardComponent, ArticleComponent, ArticleStripComponent, AttachmentUploaderComponent, AuthBackgroundComponent, AuthCtaComponent, AuthService, AuthStateService, AuthStorageService, AuthSyncService, AvatarComponent, AvatarUploadComponent, BOTTOM_NAV_DEFAULTS, BannerComponent, BlogPostBuilder, BottomNavComponent, BoxComponent, BreadcrumbComponent, ButtonComponent, ButtonGroupComponent, CALLOUT_LABELS, CHEV_KEYS, CIRCLE_KEYS, COMMON_COUNTRY_CODES, COMMON_CURRENCIES, CORNER_KEYS, CTA_CARD_DEFAULTS, CURRENCY_INFO, CardComponent, CardSection, CardType, CardsCarouselComponent, ChangeEmailModalComponent, ChangePasswordModalComponent, CheckInputComponent, CheckboxRadioInputComponent, ChipGroupComponent, CodeDisplayComponent, CommandDisplayComponent, CommentComponent, CommentInputComponent, CommentSectionComponent, CompanyFooterComponent, ComponentStates, ConfirmationDialogService, ContainerComponent, ContentLoaderComponent, ContentReactionComponent, ContentService, ContentTransformer, CookieBannerComponent, CountdownComponent, CreateOrgModalComponent, CtaCardComponent, CurrencyInputComponent, DEFAULT_ADS_CONFIG, DEFAULT_APP_CONFIG_SERVICE_CONFIG, DEFAULT_APP_VERSION_SERVICE_CONFIG, DEFAULT_AUTH_CONFIG, DEFAULT_BACK_HEADER, DEFAULT_BUTTON_PRESETS, DEFAULT_CANCEL_BUTTON, DEFAULT_CHECK_INTERVAL_MS, DEFAULT_CONFIRM_BUTTON, DEFAULT_COUNTDOWN_LABELS, DEFAULT_COUNTDOWN_LABELS_EN, DEFAULT_DEBUG_CONSOLE_CONFIG, DEFAULT_DONATION_CONFIG, DEFAULT_EMPTY_STATE, DEFAULT_EMULATOR_CONFIG, DEFAULT_FEEDBACK_CONFIG, DEFAULT_FEEDBACK_TYPE_OPTIONS, DEFAULT_HOME_HEADER, DEFAULT_INFINITE_LIST_METADATA, DEFAULT_LOGIN_LOGO, DEFAULT_MODAL_CANCEL_BUTTON, DEFAULT_MODAL_CONFIRM_BUTTON, DEFAULT_PAGE_SIZE_OPTIONS, DEFAULT_PLATFORMS, DEFAULT_PRESETS, DEFAULT_REFRESHER_METADATA, DEFAULT_SKELETON_CONFIG, DEFAULT_SPLASH_SCREEN_CONFIG, DataTableComponent, DateInputComponent, DatePickerComponent, DateRangeInputComponent, DebugConsoleComponent, DeleteAccountModalComponent, DetailSkeletonComponent, DeviceService, DisplayComponent, DividerComponent, DocsApiTableComponent, DocsBreadcrumbComponent, DocsBuilder, DocsCalloutComponent, DocsCodeExampleComponent, DocsLayoutComponent, DocsNavLinksComponent, DocsNavigationService, DocsPageComponent, DocsSearchComponent, DocsSectionComponent, DocsShellComponent, DocsSidebarComponent, DocsTocComponent, DonationService, DownloadService, EditOrgModalComponent, EmptyStateComponent, EntityCardComponent, ExpandableTextComponent, FEATURES_LIST_DEFAULTS, FUN_MODAL_DEFAULTS, FabComponent, FaqComponent, FeaturesListComponent, FeedbackFormComponent, FeedbackService, FieldListComponent, FileInputComponent, FirebaseService, FirestoreCollectionFactory, FirestoreService, FontSizeOption, FontSizeSelectorComponent, FontSizeService, FooterComponent, FooterLinksComponent, FormComponent, FormSkeletonComponent, FunHeaderComponent, FunModalComponent, GlassComponent, GlowCardComponent, GlowComponent, GridSkeletonComponent, HANDOFF_ROUTE_PARAM, HANDOFF_TOKEN_PARAM, HandoffService, HasPermissionDirective, HeaderComponent, HintComponent, HorizontalScrollComponent, HrefComponent, I18nService, IMAGE_DEFAULTS, INITIAL_AUTH_STATE, INITIAL_MFA_STATE, INVITATION_CARD_DEFAULTS, IONIC_COLORS$5 as IONIC_COLORS, Icon, IconComponent, IconService, ImageComponent, ImageCropComponent, ImageService, InAppBrowserService, InfiniteListComponent, InfoComponent, InputI18nHelper, InputType, InvitationCardComponent, InviteMemberModalComponent, ItemListComponent, LANG_STORAGE_KEY$1 as LANG_STORAGE_KEY, LEGAL_CONTENT_CONFIG, LOGIN_DEFAULTS, LandingSplitComponent, LandingStepsComponent, LanguageSelectorComponent, LayeredCardComponent, LegalContentService, LegalLinkService, LinkComponent, LinkProcessorService, LinkedProvidersComponent, LinksAccordionComponent, LinksCakeComponent, ListSkeletonComponent, LoadingDirective, LocalStorageService, LocaleService, LoginAttemptModalComponent, LoginComponent, MEDIA_OBJECT_DEFAULTS, MEMBER_CARD_DEFAULTS, METRIC_CARD_DEFAULTS, MODAL_SIZES, MOTIF_KEYS, MOTION, MaintenancePageComponent, MarkdownArticleParserService, MediaObjectComponent, MemberCardComponent, MemberDetailModalComponent, MemberImportModalComponent, MenuComponent, MessagingService, MetaService, MetricCardComponent, MfaModalComponent, ModalService, ModalShellComponent, MultiSelectSearchComponent, NUM_KEYS, NavigationService, NetworkBannerComponent, NetworkStatusService, NewsBuilder, NoContentComponent, NotesBoxComponent, NotificationActionService, NotificationPreferencesViewComponent, NotificationsService, NotificationsViewComponent, NumberFromToComponent, NumberStepperComponent, OAUTH_PROVIDERS_INFO, OAuthCallbackComponent, OAuthService, OrgInfoSheetComponent, OrgService, OrgSwitchService, OrganizationViewComponent, PATTERN_MOTIFS, PATTERN_PALETTES, PATTERN_STYLE_CONFIGS, PLATFORM_CONFIGS, PageContentComponent, PageLinksComponent, PageRefreshService, PageTemplateComponent, PageWavesComponent, PageWrapperComponent, PaginationComponent, PaginationService, PasswordInputComponent, PatternComponent, PermissionCatalogService, PermissionSelectorComponent, PermissionsModalComponent, PermissionsViewComponent, PhoneInputComponent, PillComponent, PinInputComponent, PlainCodeBoxComponent, PopoverSelectorComponent, PreferencesService, PreferencesViewComponent, PresetService, PriceTagComponent, ProcessLinksPipe, ProfileSkeletonComponent, ProfileViewComponent, ProgressBarComponent, ProgressRingComponent, ProgressStatusComponent, PrompterComponent, QR_PRESETS, QrCodeComponent, QrGeneratorService, QrScannerComponent, QueryBuilder, QuoteBoxComponent, REQUEST_STATUSES, RadioInputComponent, RangeInputComponent, RatingComponent, RefresherComponent, RequestFirestoreService, RequestFormBuilderService, RequestFormComponent, RequestService, RightsFooterComponent, RotatingTextComponent, SEARCH_HEADER_DEFAULTS, SETTINGS_SECTIONS_CATALOG, SHAPE_KEYS, SHARE_PROFILE_MODAL_DEFAULTS, SKELETON_LAYOUT_DEFAULT_ROWS, SKELETON_PRESETS, SOLID_KEYS, STATS_BAR_DEFAULTS, STROKE_KEYS, SearchHeaderComponent, SearchSelectorComponent, SearchbarComponent, SecurityViewComponent, SegmentControlComponent, SelectSearchComponent, SessionListModalComponent, SessionService, SettingsHubComponent, ShareButtonsComponent, ShareProfileModalComponent, SimpleComponent, SkeletonComponent, SkeletonLayoutComponent, SkeletonService, SplashComponent, SplashScreenService, StatsBarComponent, StatsCardComponent, StepperComponent, StorageService, SwipeCarouselComponent, SwitchOrgModalComponent, TRI_KEYS, TabbedContentComponent, TableSkeletonComponent, TabsComponent, Terminal404Component, TestimonialCardComponent, TestimonialCarouselComponent, TextComponent, TextInputComponent, TextareaInputComponent, ThemeOption, ThemeService, TicketCardComponent, TimelineComponent, TitleBlockComponent, TitleComponent, ToastService, ToggleInputComponent, TokenService, ToolbarActionType, ToolbarComponent, TransferOwnershipModalComponent, TranslatePipe, TypedCollection, UPDATE_BANNER_DEFAULT_CONTENT, UPDATE_BANNER_I18N_NAMESPACE, UpdateBannerComponent, UserAvatarComponent, UsernameInputComponent, VALTECH_ADS_CONFIG, VALTECH_APP_CONFIG, VALTECH_APP_VERSION, VALTECH_AUTH_CONFIG, VALTECH_COMPANY_LINKS, VALTECH_CONTENT_CONFIG, VALTECH_DEBUG_CONSOLE, VALTECH_DEFAULT_CONTENT, VALTECH_DONATION_CONFIG, VALTECH_FEEDBACK_CONFIG, VALTECH_FIREBASE_CONFIG, VALTECH_FOOTER_I18N, VALTECH_FOOTER_LOGO, VALTECH_LANGUAGE_SELECTOR, VALTECH_LEGAL_CONFIG, VALTECH_NETWORK_ERROR_KEY, VALTECH_SETTINGS_MENU_LINKS, VALTECH_SITE_PATHS, VALTECH_SOCIAL_LINKS, VALTECH_SPLASH_SCREEN, VALTECH_WEB_BASE_URLS, VALTECH_WHATSAPP_CONFIG, VERSION, ValtechErrorService, WhatsappFabComponent, WhatsappService, WizardComponent, WizardFooterComponent, applyDefaultValueToControl, authGuard, authInterceptor, authPasswordValidator, beautifyLegalArticle, blogPost, buildCompanyFooterProps, buildFooterLinks, buildLegalLinkResolver, buildPath, buildSettingsCards, button, canSubmitRequestType, collections, connectPageRefresh, createErrorStateProps, createFirebaseConfig, createGlowCardProps, createInitialPaginationState, createNumberFromToField, createPageState, createPermissionLabeler, createRefreshableStream, createTitleProps, docs, errorLoggingInterceptor, extractPathParams, generatePatternTiles, generateRandomTile, getAppInfo, getAppVersion, getCollectionPath, getDocumentId, getTimeOfDayKey, goToTop, guestGuard, hasEmulators, iconButton, interpretError, isAtEnd, isCollectionPath, isDocumentPath, isEmulatorMode, isIonicColor, isValidPath, joinPath, maxLength, mulberry32, news, parseMarkdownArticle, permissionGuard, permissionGuardFromRoute, provideLegalContent, provideSplashScreen, provideValtechAboutRoutes, provideValtechAccountRoutes, provideValtechAds, provideValtechApiKeysRoutes, provideValtechAppConfig, provideValtechAppVersion, provideValtechAppVersionHttp, provideValtechAuth, provideValtechAuthInterceptor, provideValtechContent, provideValtechDebugConsole, provideValtechDonations, provideValtechErrorHandling, provideValtechFeedback, provideValtechFirebase, provideValtechI18n, provideValtechLegal, provideValtechNotificationPreferencesRoutes, provideValtechNotificationsRoutes, provideValtechOrganizationRoutes, provideValtechPermissionsRoutes, provideValtechPreferencesRoutes, provideValtechPresets, provideValtechProfileRoutes, provideValtechSecurityRoutes, provideValtechSettingsRoutes, provideValtechSite, provideValtechSkeleton, provideValtechWhatsapp, query, renderPatternSvgInner, replaceSpecialChars, requestSubmitMode, resolveColor, resolveInputDefaultValue, resolveIonicColor, resolveWebBaseUrl, roleGuard, selectableRequestTypes, storagePaths, superAdminGuard, toArticle };
|
|
69137
|
+
export { ACTION_CARD_DEFAULTS, AD_SIZE_MAP, API_TABLE_COLUMN_LABELS, APP_VERSION_PLATFORM_PLUGIN, APP_VERSION_REMOTE_PLUGIN, ARTICLE_CARD_DEFAULTS, ARTICLE_SPACING, ARTICLE_STRIP_DEFAULTS, AUTH_CTA_DEFAULTS, AVATAR_UPLOAD_DEFAULTS, AboutViewComponent, AccordionComponent, AccountViewComponent, ActionCardComponent, ActionHeaderComponent, ActionType, AdSlotComponent, AdsLoaderService, AdsService, AlertBoxComponent, AnalyticsErrorHandler, AnalyticsRouterTracker, AnalyticsService, AnimatedTerminalComponent, ApiKeyCreateModalComponent, ApiKeyService, ApiKeysModalComponent, ApiKeysViewComponent, AppConfigService, AppVersionService, ArticleBuilder, ArticleCardComponent, ArticleComponent, ArticleStripComponent, AttachmentUploaderComponent, AuthBackgroundComponent, AuthCtaComponent, AuthService, AuthStateService, AuthStorageService, AuthSyncService, AvatarComponent, AvatarUploadComponent, BOTTOM_NAV_DEFAULTS, BannerComponent, BlogPostBuilder, BottomNavComponent, BoxComponent, BreadcrumbComponent, ButtonComponent, ButtonGroupComponent, CALLOUT_LABELS, CHEV_KEYS, CIRCLE_KEYS, COMMON_COUNTRY_CODES, COMMON_CURRENCIES, CORNER_KEYS, CTA_CARD_DEFAULTS, CURRENCY_INFO, CardComponent, CardSection, CardType, CardsCarouselComponent, ChangeEmailModalComponent, ChangePasswordModalComponent, CheckInputComponent, CheckboxRadioInputComponent, ChipGroupComponent, CodeDisplayComponent, CommandDisplayComponent, CommentComponent, CommentInputComponent, CommentSectionComponent, CompanyFooterComponent, ComponentStates, ConfirmationDialogService, ContainerComponent, ContentLoaderComponent, ContentReactionComponent, ContentService, ContentTransformer, CookieBannerComponent, CountdownComponent, CreateOrgModalComponent, CtaCardComponent, CurrencyInputComponent, DEFAULT_ADS_CONFIG, DEFAULT_APP_CONFIG_SERVICE_CONFIG, DEFAULT_APP_VERSION_SERVICE_CONFIG, DEFAULT_AUTH_CONFIG, DEFAULT_BACK_HEADER, DEFAULT_BUTTON_PRESETS, DEFAULT_CANCEL_BUTTON, DEFAULT_CHECK_INTERVAL_MS, DEFAULT_CONFIRM_BUTTON, DEFAULT_COUNTDOWN_LABELS, DEFAULT_COUNTDOWN_LABELS_EN, DEFAULT_DEBUG_CONSOLE_CONFIG, DEFAULT_DONATION_CONFIG, DEFAULT_EMPTY_STATE, DEFAULT_EMULATOR_CONFIG, DEFAULT_FEEDBACK_CONFIG, DEFAULT_FEEDBACK_TYPE_OPTIONS, DEFAULT_HOME_HEADER, DEFAULT_INFINITE_LIST_METADATA, DEFAULT_LOGIN_LOGO, DEFAULT_MODAL_CANCEL_BUTTON, DEFAULT_MODAL_CONFIRM_BUTTON, DEFAULT_PAGE_SIZE_OPTIONS, DEFAULT_PLATFORMS, DEFAULT_PRESETS, DEFAULT_REFRESHER_METADATA, DEFAULT_SKELETON_CONFIG, DEFAULT_SPLASH_SCREEN_CONFIG, DataTableComponent, DateInputComponent, DatePickerComponent, DateRangeInputComponent, DebugConsoleComponent, DeleteAccountModalComponent, DetailSkeletonComponent, DeviceService, DisplayComponent, DividerComponent, DocsApiTableComponent, DocsBreadcrumbComponent, DocsBuilder, DocsCalloutComponent, DocsCodeExampleComponent, DocsLayoutComponent, DocsNavLinksComponent, DocsNavigationService, DocsPageComponent, DocsSearchComponent, DocsSectionComponent, DocsShellComponent, DocsSidebarComponent, DocsTocComponent, DonationService, DownloadService, EditOrgModalComponent, EmptyStateComponent, EntityCardComponent, ExpandableTextComponent, FEATURES_LIST_DEFAULTS, FUN_MODAL_DEFAULTS, FabComponent, FaqComponent, FeaturesListComponent, FeedbackFormComponent, FeedbackService, FieldListComponent, FileInputComponent, FirebaseService, FirestoreCollectionFactory, FirestoreService, FontSizeOption, FontSizeSelectorComponent, FontSizeService, FooterComponent, FooterLinksComponent, FormComponent, FormSkeletonComponent, FunHeaderComponent, FunModalComponent, GlassComponent, GlowCardComponent, GlowComponent, GridSkeletonComponent, HANDOFF_ROUTE_PARAM, HANDOFF_TOKEN_PARAM, HandoffService, HasPermissionDirective, HeaderComponent, HintComponent, HorizontalScrollComponent, HrefComponent, I18nService, IMAGE_DEFAULTS, INITIAL_AUTH_STATE, INITIAL_MFA_STATE, INVITATION_CARD_DEFAULTS, IONIC_COLORS$5 as IONIC_COLORS, Icon, IconComponent, IconService, ImageComponent, ImageCropComponent, ImageService, InAppBrowserService, InfiniteListComponent, InfoComponent, InputI18nHelper, InputType, InvitationCardComponent, InviteMemberModalComponent, ItemListComponent, LANG_STORAGE_KEY$1 as LANG_STORAGE_KEY, LEGAL_CONTENT_CONFIG, LOGIN_DEFAULTS, LandingSplitComponent, LandingStepsComponent, LanguageSelectorComponent, LayeredCardComponent, LegalContentService, LegalLinkService, LinkComponent, LinkProcessorService, LinkedProvidersComponent, LinksAccordionComponent, LinksCakeComponent, ListSkeletonComponent, LoadingDirective, LocalStorageService, LocaleService, LoginAttemptModalComponent, LoginComponent, MEDIA_OBJECT_DEFAULTS, MEMBER_CARD_DEFAULTS, METRIC_CARD_DEFAULTS, MODAL_SIZES, MOTIF_KEYS, MOTION, MaintenancePageComponent, MarkdownArticleParserService, MediaObjectComponent, MemberCardComponent, MemberDetailModalComponent, MemberImportModalComponent, MenuComponent, MessagingService, MetaService, MetricCardComponent, MfaModalComponent, ModalService, ModalShellComponent, MultiSelectSearchComponent, NUM_KEYS, NavigationService, NetworkBannerComponent, NetworkStatusService, NewsBuilder, NoContentComponent, NotesBoxComponent, NotificationActionService, NotificationPreferencesViewComponent, NotificationsService, NotificationsViewComponent, NumberFromToComponent, NumberStepperComponent, OAUTH_PROVIDERS_INFO, OAuthCallbackComponent, OAuthService, OrgInfoSheetComponent, OrgService, OrgSwitchService, OrganizationViewComponent, PATTERN_MOTIFS, PATTERN_PALETTES, PATTERN_STYLE_CONFIGS, PLATFORM_CONFIGS, PageContentComponent, PageLinksComponent, PageRefreshService, PageTemplateComponent, PageWavesComponent, PageWrapperComponent, PaginationComponent, PaginationService, PasswordInputComponent, PatternComponent, PermissionCatalogService, PermissionSelectorComponent, PermissionsModalComponent, PermissionsViewComponent, PhoneInputComponent, PillComponent, PinInputComponent, PlainCodeBoxComponent, PopoverSelectorComponent, PreferencesService, PreferencesViewComponent, PresetService, PriceTagComponent, ProcessLinksPipe, ProfileSkeletonComponent, ProfileViewComponent, ProgressBarComponent, ProgressRingComponent, ProgressStatusComponent, PrompterComponent, QR_PRESETS, QrCodeComponent, QrGeneratorService, QrScannerComponent, QueryBuilder, QuoteBoxComponent, REQUEST_STATUSES, RadioInputComponent, RangeInputComponent, RatingComponent, RefresherComponent, RequestFirestoreService, RequestFormBuilderService, RequestFormComponent, RequestService, RightsFooterComponent, RotatingTextComponent, SEARCH_HEADER_DEFAULTS, SETTINGS_SECTIONS_CATALOG, SHAPE_KEYS, SHARE_PROFILE_MODAL_DEFAULTS, SKELETON_LAYOUT_DEFAULT_ROWS, SKELETON_PRESETS, SOLID_KEYS, STATS_BAR_DEFAULTS, STROKE_KEYS, SearchHeaderComponent, SearchSelectorComponent, SearchbarComponent, SecurityViewComponent, SegmentControlComponent, SelectSearchComponent, SessionListModalComponent, SessionService, SettingsHubComponent, ShareButtonsComponent, ShareProfileModalComponent, SimpleComponent, SkeletonComponent, SkeletonLayoutComponent, SkeletonService, SplashComponent, SplashScreenService, StatsBarComponent, StatsCardComponent, StepperComponent, StorageService, SwipeCarouselComponent, SwitchOrgModalComponent, TRI_KEYS, TabbedContentComponent, TableSkeletonComponent, TabsComponent, Terminal404Component, TestimonialCardComponent, TestimonialCarouselComponent, TextComponent, TextInputComponent, TextareaInputComponent, ThemeOption, ThemeService, TicketCardComponent, TimelineComponent, TitleBlockComponent, TitleComponent, ToastService, ToggleInputComponent, TokenService, ToolbarActionType, ToolbarComponent, TransferOwnershipModalComponent, TranslatePipe, TypedCollection, UPDATE_BANNER_DEFAULT_CONTENT, UPDATE_BANNER_I18N_NAMESPACE, UpdateBannerComponent, UserAvatarComponent, UsernameInputComponent, VALTECH_ADS_CONFIG, VALTECH_APP_CONFIG, VALTECH_APP_VERSION, VALTECH_AUTH_CONFIG, VALTECH_COMPANY_LINKS, VALTECH_CONTENT_CONFIG, VALTECH_DEBUG_CONSOLE, VALTECH_DEFAULT_CONTENT, VALTECH_DONATION_CONFIG, VALTECH_FEEDBACK_CONFIG, VALTECH_FIREBASE_CONFIG, VALTECH_FOOTER_I18N, VALTECH_FOOTER_LOGO, VALTECH_LANGUAGE_SELECTOR, VALTECH_LEGAL_CONFIG, VALTECH_NETWORK_ERROR_KEY, VALTECH_SETTINGS_MENU_LINKS, VALTECH_SITE_PATHS, VALTECH_SOCIAL_LINKS, VALTECH_SPLASH_SCREEN, VALTECH_WEB_BASE_URLS, VALTECH_WHATSAPP_CONFIG, VERSION, ValtechErrorService, VerifyViewComponent, WhatsappFabComponent, WhatsappService, WizardComponent, WizardFooterComponent, applyDefaultValueToControl, authGuard, authInterceptor, authPasswordValidator, beautifyLegalArticle, blogPost, buildCompanyFooterProps, buildFooterLinks, buildLegalLinkResolver, buildPath, buildSettingsCards, button, canSubmitRequestType, collections, connectPageRefresh, createErrorStateProps, createFirebaseConfig, createGlowCardProps, createInitialPaginationState, createNumberFromToField, createPageState, createPermissionLabeler, createRefreshableStream, createTitleProps, docs, errorLoggingInterceptor, extractPathParams, generatePatternTiles, generateRandomTile, getAppInfo, getAppVersion, getCollectionPath, getDocumentId, getTimeOfDayKey, goToTop, guestGuard, hasEmulators, iconButton, interpretError, isAtEnd, isCollectionPath, isDocumentPath, isEmulatorMode, isIonicColor, isValidPath, joinPath, maxLength, mulberry32, news, parseMarkdownArticle, permissionGuard, permissionGuardFromRoute, provideLegalContent, provideSplashScreen, provideValtechAboutRoutes, provideValtechAccountRoutes, provideValtechAds, provideValtechApiKeysRoutes, provideValtechAppConfig, provideValtechAppVersion, provideValtechAppVersionHttp, provideValtechAuth, provideValtechAuthInterceptor, provideValtechContent, provideValtechDebugConsole, provideValtechDonations, provideValtechErrorHandling, provideValtechFeedback, provideValtechFirebase, provideValtechI18n, provideValtechLegal, provideValtechNotificationPreferencesRoutes, provideValtechNotificationsRoutes, provideValtechOrganizationRoutes, provideValtechPermissionsRoutes, provideValtechPreferencesRoutes, provideValtechPresets, provideValtechProfileRoutes, provideValtechSecurityRoutes, provideValtechSettingsRoutes, provideValtechSite, provideValtechSkeleton, provideValtechWhatsapp, query, renderPatternSvgInner, replaceSpecialChars, requestSubmitMode, resolveColor, resolveInputDefaultValue, resolveIonicColor, resolveWebBaseUrl, roleGuard, selectableRequestTypes, storagePaths, superAdminGuard, toArticle };
|
|
68926
69138
|
//# sourceMappingURL=valtech-components.mjs.map
|