valtech-components 2.0.974 → 2.0.976

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.
@@ -54,7 +54,7 @@ import 'prismjs/components/prism-json';
54
54
  * Current version of valtech-components.
55
55
  * This is automatically updated during the publish process.
56
56
  */
57
- const VERSION = '2.0.974';
57
+ const VERSION = '2.0.976';
58
58
 
59
59
  // Control de estado de refresco (singleton a nivel de módulo)
60
60
  let isRefreshing = false;
@@ -32742,7 +32742,6 @@ const SHARE_PROFILE_MODAL_DEFAULTS = {
32742
32742
  platforms: ['copy', 'native', 'whatsapp'],
32743
32743
  qrTheme: 'default',
32744
32744
  qrSize: 220,
32745
- borderRadius: 24,
32746
32745
  };
32747
32746
 
32748
32747
  /**
@@ -32841,7 +32840,7 @@ class ShareProfileModalComponent {
32841
32840
  }
32842
32841
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ShareProfileModalComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
32843
32842
  static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.14", type: ShareProfileModalComponent, isStandalone: true, selector: "val-share-profile-modal", inputs: { isOpen: "isOpen", props: "props" }, outputs: { dismissed: "dismissed", shared: "shared" }, ngImport: i0, template: `
32844
- <ion-modal [isOpen]="isOpen" [style.--border-radius.px]="config().borderRadius" (didDismiss)="close()">
32843
+ <ion-modal [isOpen]="isOpen" (didDismiss)="close()">
32845
32844
  <ng-template>
32846
32845
  <val-modal-shell [title]="''" [closeLabel]="config().closeLabel || ''" (close)="close()">
32847
32846
  <div class="share-profile">
@@ -32903,7 +32902,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
32903
32902
  QrCodeComponent,
32904
32903
  ShareButtonsComponent,
32905
32904
  ], template: `
32906
- <ion-modal [isOpen]="isOpen" [style.--border-radius.px]="config().borderRadius" (didDismiss)="close()">
32905
+ <ion-modal [isOpen]="isOpen" (didDismiss)="close()">
32907
32906
  <ng-template>
32908
32907
  <val-modal-shell [title]="''" [closeLabel]="config().closeLabel || ''" (close)="close()">
32909
32908
  <div class="share-profile">
@@ -42805,6 +42804,397 @@ function provideValtechPreferencesRoutes(opts) {
42805
42804
  ];
42806
42805
  }
42807
42806
 
42807
+ /**
42808
+ * Catálogo default de secciones del HUB de settings (8 entradas). `logout` va
42809
+ * incluida pero sin `routerLink` (la maneja un callback). Mismo set, mismos
42810
+ * tokens/iconos/rutas que el builder original de showcase
42811
+ * (`shared/settings-action-cards.ts`) que esta promoción reemplaza.
42812
+ */
42813
+ const SETTINGS_SECTIONS_CATALOG = [
42814
+ {
42815
+ token: 'action-general',
42816
+ titleKey: 'general',
42817
+ descKey: 'generalDesc',
42818
+ ionicon: 'options-outline',
42819
+ routerLink: '/app/settings/general',
42820
+ showChevron: true,
42821
+ shadowed: true,
42822
+ },
42823
+ {
42824
+ token: 'action-account',
42825
+ titleKey: 'account',
42826
+ descKey: 'accountDesc',
42827
+ ionicon: 'business-outline',
42828
+ routerLink: '/app/settings/account',
42829
+ showChevron: true,
42830
+ shadowed: true,
42831
+ },
42832
+ {
42833
+ token: 'action-profile',
42834
+ titleKey: 'editProfile',
42835
+ descKey: 'editProfileDesc',
42836
+ ionicon: 'person-outline',
42837
+ routerLink: '/app/settings/profile',
42838
+ showChevron: true,
42839
+ shadowed: true,
42840
+ },
42841
+ {
42842
+ token: 'action-preferences',
42843
+ titleKey: 'preferences',
42844
+ descKey: 'preferencesDesc',
42845
+ ionicon: 'options-outline',
42846
+ routerLink: '/app/settings/preferences',
42847
+ showChevron: true,
42848
+ shadowed: true,
42849
+ },
42850
+ {
42851
+ token: 'action-notifications',
42852
+ titleKey: 'notifications',
42853
+ descKey: 'notificationsDesc',
42854
+ ionicon: 'notifications-outline',
42855
+ routerLink: '/app/settings/notifications',
42856
+ showChevron: true,
42857
+ shadowed: true,
42858
+ },
42859
+ {
42860
+ token: 'action-security',
42861
+ titleKey: 'security',
42862
+ descKey: 'securityDesc',
42863
+ ionicon: 'shield-checkmark-outline',
42864
+ routerLink: '/app/settings/security',
42865
+ showChevron: true,
42866
+ shadowed: true,
42867
+ },
42868
+ {
42869
+ token: 'action-about',
42870
+ titleKey: 'about',
42871
+ descKey: 'aboutDesc',
42872
+ ionicon: 'information-circle-outline',
42873
+ routerLink: '/app/about',
42874
+ showChevron: true,
42875
+ shadowed: true,
42876
+ },
42877
+ {
42878
+ token: 'action-logout',
42879
+ titleKey: 'logout',
42880
+ ionicon: 'log-out-outline',
42881
+ showChevron: false,
42882
+ shadowed: true,
42883
+ },
42884
+ ];
42885
+ const CATALOG_BASE = '/app/settings';
42886
+ /**
42887
+ * Construye el grid de cards de navegación del HUB de settings (versión
42888
+ * promovida del `buildSettingsActionCards` de showcase). Usa el catálogo
42889
+ * default + las `include` del consumer, filtra `exclude`, gatea logout por
42890
+ * `includeLogout`, reordena por `order` y reescribe las rutas por `basePath`.
42891
+ *
42892
+ * El `t` resuelve los `titleKey`/`descKey` contra el namespace de labels
42893
+ * (default del componente: `Dashboard`). `logout` NO tiene `routerLink` — el
42894
+ * consumer maneja el flujo de cierre de sesión por token / callback.
42895
+ */
42896
+ function buildSettingsCards(t, options = {}) {
42897
+ const exclude = new Set(options.exclude ?? []);
42898
+ const includeLogout = options.includeLogout ?? false;
42899
+ const basePath = options.basePath;
42900
+ const sections = [...SETTINGS_SECTIONS_CATALOG, ...(options.include ?? [])];
42901
+ let resolved = sections.filter(s => {
42902
+ if (exclude.has(s.token))
42903
+ return false;
42904
+ if (s.token === 'action-logout' && !includeLogout)
42905
+ return false;
42906
+ return true;
42907
+ });
42908
+ if (options.order && options.order.length > 0) {
42909
+ const rank = new Map(options.order.map((token, i) => [token, i]));
42910
+ resolved = [...resolved].sort((a, b) => {
42911
+ const ra = rank.has(a.token) ? rank.get(a.token) : Number.MAX_SAFE_INTEGER;
42912
+ const rb = rank.has(b.token) ? rank.get(b.token) : Number.MAX_SAFE_INTEGER;
42913
+ return ra - rb;
42914
+ });
42915
+ }
42916
+ return resolved.map(s => {
42917
+ const card = {
42918
+ token: s.token,
42919
+ title: t(s.titleKey),
42920
+ icon: {
42921
+ ionicon: s.ionicon,
42922
+ color: 'dark',
42923
+ backgroundColor: 'light',
42924
+ },
42925
+ showChevron: s.showChevron ?? true,
42926
+ shadowed: s.shadowed ?? true,
42927
+ };
42928
+ if (s.descKey)
42929
+ card.description = t(s.descKey);
42930
+ if (s.routerLink) {
42931
+ card.routerLink = basePath ? rewriteBasePath(s.routerLink, basePath) : s.routerLink;
42932
+ }
42933
+ return card;
42934
+ });
42935
+ }
42936
+ /** Reescribe el prefijo `/app/settings` de una ruta del catálogo por `basePath`. */
42937
+ function rewriteBasePath(routerLink, basePath) {
42938
+ if (routerLink.startsWith(CATALOG_BASE)) {
42939
+ return basePath + routerLink.slice(CATALOG_BASE.length);
42940
+ }
42941
+ return routerLink;
42942
+ }
42943
+
42944
+ /**
42945
+ * Defaults i18n embebidos en `val-settings-hub`. Dos sets, uno por namespace
42946
+ * (ver `SettingsHubConfig.i18nNamespace` / `.pageI18nNamespace`). Auto-registrados
42947
+ * en el constructor SOLO si el namespace no existe (respeta override del consumer).
42948
+ *
42949
+ * `SETTINGS_HUB_LABELS_I18N` — labels de cada sección (namespace `Dashboard` por
42950
+ * default). Mismo set que showcase mantiene en `src/i18n/index.ts` (queda como
42951
+ * override). `SETTINGS_HUB_PAGE_I18N` — header del HUB (namespace
42952
+ * `Settings.Preferences` por default), tomado de la page Preferencias original.
42953
+ */
42954
+ const SETTINGS_HUB_LABELS_I18N = {
42955
+ es: {
42956
+ general: 'General',
42957
+ generalDesc: 'Apariencia e idioma',
42958
+ account: 'Cuenta',
42959
+ accountDesc: 'Organizaciones y sesión',
42960
+ editProfile: 'Editar perfil',
42961
+ editProfileDesc: 'Actualiza tu información personal',
42962
+ preferences: 'Preferencias',
42963
+ preferencesDesc: 'Tema, idioma y otras opciones',
42964
+ notifications: 'Notificaciones',
42965
+ notificationsDesc: 'Configura tus preferencias',
42966
+ security: 'Seguridad',
42967
+ securityDesc: 'Gestiona contraseñas y MFA',
42968
+ about: 'Acerca de',
42969
+ aboutDesc: 'Versión, feedback y enlaces útiles',
42970
+ logout: 'Cerrar sesión',
42971
+ },
42972
+ en: {
42973
+ general: 'General',
42974
+ generalDesc: 'Appearance and language',
42975
+ account: 'Account',
42976
+ accountDesc: 'Organizations and session',
42977
+ editProfile: 'Edit profile',
42978
+ editProfileDesc: 'Update your personal information',
42979
+ preferences: 'Preferences',
42980
+ preferencesDesc: 'Theme, language and other options',
42981
+ notifications: 'Notifications',
42982
+ notificationsDesc: 'Configure your preferences',
42983
+ security: 'Security',
42984
+ securityDesc: 'Manage passwords and MFA',
42985
+ about: 'About',
42986
+ aboutDesc: 'Version, feedback and useful links',
42987
+ logout: 'Sign out',
42988
+ },
42989
+ };
42990
+ const SETTINGS_HUB_PAGE_I18N = {
42991
+ es: {
42992
+ pageTitle: 'Preferencias',
42993
+ pageDescription: 'Ajusta tu cuenta y la app',
42994
+ },
42995
+ en: {
42996
+ pageTitle: 'Preferences',
42997
+ pageDescription: 'Tune your account and the app',
42998
+ },
42999
+ };
43000
+
43001
+ const DEFAULT_LABELS_NS = 'Dashboard';
43002
+ const DEFAULT_PAGE_NS = 'Settings.Preferences';
43003
+ /**
43004
+ * `val-settings-hub` — portada de la sección Settings (organism). Renderiza un
43005
+ * header (título + descripción) + un grid de `val-action-card` que navega a las
43006
+ * sub-vistas. Promovido desde `showcase` (`pages/settings/pages/preferences`)
43007
+ * bajo el proceso de ADR-021.
43008
+ *
43009
+ * Las cards salen de `buildSettingsCards` sobre el catálogo default
43010
+ * (`SETTINGS_SECTIONS_CATALOG`), filtrado/extendido/reordenado por la config.
43011
+ *
43012
+ * Navegación: cards con `routerLink` navegan vía `Router`; la card de logout
43013
+ * (sin ruta) invoca `config.onLogout`. Cada click emite `config.onSectionClick`.
43014
+ *
43015
+ * NO renderiza ion-content — vive dentro de val-page-wrapper.
43016
+ *
43017
+ * Auto-registra sus dos sets de defaults i18n (labels + header) en sus
43018
+ * respectivos namespaces si el consumer no los proveyó.
43019
+ */
43020
+ class SettingsHubComponent {
43021
+ get labelsNs() {
43022
+ return this.resolvedConfig().i18nNamespace;
43023
+ }
43024
+ get pageNs() {
43025
+ return this.resolvedConfig().pageI18nNamespace;
43026
+ }
43027
+ constructor() {
43028
+ this.nav = inject(NavigationService);
43029
+ this.i18n = inject(I18nService);
43030
+ this.router = inject(Router);
43031
+ this.route = inject(ActivatedRoute, { optional: true });
43032
+ this.resolvedConfig = computed(() => {
43033
+ const fromRoute = (this.route?.snapshot.data['settingsHubConfig'] ?? {});
43034
+ const merged = { ...fromRoute, ...(this.config ?? {}) };
43035
+ return {
43036
+ ...merged,
43037
+ i18nNamespace: merged.i18nNamespace ?? DEFAULT_LABELS_NS,
43038
+ pageI18nNamespace: merged.pageI18nNamespace ?? DEFAULT_PAGE_NS,
43039
+ };
43040
+ });
43041
+ this.pageTitle = computed(() => {
43042
+ this.i18n.lang();
43043
+ return this.i18n.t('pageTitle', this.pageNs);
43044
+ });
43045
+ this.pageDescription = computed(() => {
43046
+ this.i18n.lang();
43047
+ return this.i18n.t('pageDescription', this.pageNs);
43048
+ });
43049
+ /** Cards del HUB, resueltas desde la config. */
43050
+ this.actionCards = computed(() => {
43051
+ this.i18n.lang();
43052
+ const cfg = this.resolvedConfig();
43053
+ return buildSettingsCards(k => this.i18n.t(k, cfg.i18nNamespace), {
43054
+ exclude: cfg.exclude,
43055
+ include: cfg.include,
43056
+ order: cfg.order,
43057
+ includeLogout: cfg.includeLogout,
43058
+ basePath: cfg.basePath,
43059
+ });
43060
+ });
43061
+ // Auto-registro i18n — respeta override del consumer. Los namespaces pueden
43062
+ // venir de @Input.config o del route data; los resolvemos acá.
43063
+ const labelsNs = this.labelsNs;
43064
+ if (!this.i18n.hasNamespace(labelsNs)) {
43065
+ this.i18n.registerContent(labelsNs, SETTINGS_HUB_LABELS_I18N);
43066
+ }
43067
+ const pageNs = this.pageNs;
43068
+ if (!this.i18n.hasNamespace(pageNs)) {
43069
+ this.i18n.registerContent(pageNs, SETTINGS_HUB_PAGE_I18N);
43070
+ }
43071
+ this.nav.setBackHeader('pageTitle', pageNs, { withMenu: true });
43072
+ }
43073
+ onActionClick(action) {
43074
+ const token = action.token;
43075
+ this.resolvedConfig().onSectionClick?.(token ?? '');
43076
+ if (token === 'action-logout') {
43077
+ this.resolvedConfig().onLogout?.();
43078
+ return;
43079
+ }
43080
+ if (action.routerLink) {
43081
+ this.router.navigate(Array.isArray(action.routerLink) ? action.routerLink : [action.routerLink]);
43082
+ }
43083
+ }
43084
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: SettingsHubComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
43085
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.14", type: SettingsHubComponent, isStandalone: true, selector: "val-settings-hub", inputs: { config: "config" }, ngImport: i0, template: `
43086
+ <div class="page">
43087
+ <header class="page-header">
43088
+ <val-display [props]="{ size: 'small', color: 'dark', content: pageTitle() }" />
43089
+ <val-title
43090
+ [props]="{
43091
+ size: 'large',
43092
+ color: 'dark',
43093
+ bold: false,
43094
+ content: pageDescription(),
43095
+ }"
43096
+ />
43097
+ </header>
43098
+
43099
+ <ion-grid class="cards-grid">
43100
+ <ion-row>
43101
+ @for (action of actionCards(); track action.token) {
43102
+ <ion-col size="12" size-sm="6">
43103
+ <val-action-card [props]="action" (onClick)="onActionClick(action)" />
43104
+ </ion-col>
43105
+ }
43106
+ </ion-row>
43107
+ </ion-grid>
43108
+ </div>
43109
+ `, isInline: true, styles: [".page{padding:16px 0;max-width:720px;margin:0 auto}.page-header{margin-bottom:16px}.cards-grid{margin:0 -4px;padding:0}.cards-grid ion-col{padding:4px}\n"], dependencies: [{ kind: "component", type: IonGrid, selector: "ion-grid", inputs: ["fixed"] }, { kind: "component", type: IonRow, selector: "ion-row" }, { kind: "component", type: IonCol, selector: "ion-col", inputs: ["offset", "offsetLg", "offsetMd", "offsetSm", "offsetXl", "offsetXs", "pull", "pullLg", "pullMd", "pullSm", "pullXl", "pullXs", "push", "pushLg", "pushMd", "pushSm", "pushXl", "pushXs", "size", "sizeLg", "sizeMd", "sizeSm", "sizeXl", "sizeXs"] }, { kind: "component", type: ActionCardComponent, selector: "val-action-card", inputs: ["props"], outputs: ["onClick"] }, { kind: "component", type: DisplayComponent, selector: "val-display", inputs: ["props"] }, { kind: "component", type: TitleComponent, selector: "val-title", inputs: ["props"] }] }); }
43110
+ }
43111
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: SettingsHubComponent, decorators: [{
43112
+ type: Component,
43113
+ args: [{ selector: 'val-settings-hub', standalone: true, imports: [IonGrid, IonRow, IonCol, ActionCardComponent, DisplayComponent, TitleComponent], template: `
43114
+ <div class="page">
43115
+ <header class="page-header">
43116
+ <val-display [props]="{ size: 'small', color: 'dark', content: pageTitle() }" />
43117
+ <val-title
43118
+ [props]="{
43119
+ size: 'large',
43120
+ color: 'dark',
43121
+ bold: false,
43122
+ content: pageDescription(),
43123
+ }"
43124
+ />
43125
+ </header>
43126
+
43127
+ <ion-grid class="cards-grid">
43128
+ <ion-row>
43129
+ @for (action of actionCards(); track action.token) {
43130
+ <ion-col size="12" size-sm="6">
43131
+ <val-action-card [props]="action" (onClick)="onActionClick(action)" />
43132
+ </ion-col>
43133
+ }
43134
+ </ion-row>
43135
+ </ion-grid>
43136
+ </div>
43137
+ `, styles: [".page{padding:16px 0;max-width:720px;margin:0 auto}.page-header{margin-bottom:16px}.cards-grid{margin:0 -4px;padding:0}.cards-grid ion-col{padding:4px}\n"] }]
43138
+ }], ctorParameters: () => [], propDecorators: { config: [{
43139
+ type: Input
43140
+ }] } });
43141
+
43142
+ /**
43143
+ * Helper para montar el bloque completo de Settings en una app del factory: el
43144
+ * HUB de navegación (`val-settings-hub`) en el index + las vistas promovidas
43145
+ * (Perfil, Preferencias) + las rutas propias de la app (`extraRoutes`).
43146
+ *
43147
+ * Pensado para apps nuevas (greenfield) que adoptan el set entero. showcase NO
43148
+ * lo usa hoy (preserva su `settings.routes.ts` por la semántica de sus muchas
43149
+ * secciones no promovidas — ver guía de promoción), pero el provider debe
43150
+ * existir y compilar para el resto de apps.
43151
+ *
43152
+ * @example
43153
+ * ```ts
43154
+ * // app.routes.ts
43155
+ * import { provideValtechSettingsRoutes } from 'valtech-components';
43156
+ *
43157
+ * export const routes: Routes = [
43158
+ * {
43159
+ * path: 'app',
43160
+ * children: [
43161
+ * ...provideValtechSettingsRoutes({
43162
+ * hubConfig: { onLogout: () => auth.logoutWithConfirmation() },
43163
+ * extraRoutes: [
43164
+ * { path: 'security', loadComponent: () => ... },
43165
+ * ],
43166
+ * }),
43167
+ * ],
43168
+ * },
43169
+ * ];
43170
+ * ```
43171
+ */
43172
+ function provideValtechSettingsRoutes(opts) {
43173
+ const basePath = opts?.basePath ?? 'settings';
43174
+ const includeProfile = opts?.includeProfile ?? true;
43175
+ const includePreferences = opts?.includePreferences ?? true;
43176
+ return [
43177
+ {
43178
+ path: basePath,
43179
+ children: [
43180
+ {
43181
+ path: '',
43182
+ component: SettingsHubComponent,
43183
+ data: { settingsHubConfig: opts?.hubConfig },
43184
+ },
43185
+ ...(includeProfile ? provideValtechProfileRoutes({ config: opts?.profileConfig }) : []),
43186
+ ...(includePreferences
43187
+ ? provideValtechPreferencesRoutes({
43188
+ path: opts?.preferencesPath ?? 'preferences',
43189
+ config: opts?.preferencesConfig,
43190
+ })
43191
+ : []),
43192
+ ...(opts?.extraRoutes ?? []),
43193
+ ],
43194
+ },
43195
+ ];
43196
+ }
43197
+
42808
43198
  /** Built-in label sets for the three platform locales. */
42809
43199
  const CALLOUT_LABELS = {
42810
43200
  es: {
@@ -53680,5 +54070,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
53680
54070
  * Generated bundle index. Do not edit.
53681
54071
  */
53682
54072
 
53683
- export { ACTION_CARD_DEFAULTS, AD_SIZE_MAP, API_TABLE_COLUMN_LABELS, ARTICLE_CARD_DEFAULTS, ARTICLE_SPACING, ARTICLE_STRIP_DEFAULTS, AUTH_CTA_DEFAULTS, AVATAR_UPLOAD_DEFAULTS, AccordionComponent, ActionCardComponent, ActionHeaderComponent, ActionType, AdSlotComponent, AdsLoaderService, AdsService, AlertBoxComponent, AnalyticsErrorHandler, AnalyticsRouterTracker, AnalyticsService, AnimatedTerminalComponent, AppConfigService, AppVersionService, ArticleBuilder, ArticleCardComponent, ArticleComponent, ArticleStripComponent, AttachmentUploaderComponent, AuthBackgroundComponent, AuthCtaComponent, AuthService, AuthStateService, AuthStorageService, AuthSyncService, AvatarComponent, AvatarUploadComponent, BOTTOM_NAV_DEFAULTS, BannerComponent, BaseDefault, BlogPostBuilder, BottomNavComponent, BoxComponent, BreadcrumbComponent, ButtonComponent, ButtonGroupComponent, CALLOUT_LABELS, CHEV_KEYS, CIRCLE_KEYS, COMMON_COUNTRY_CODES, COMMON_CURRENCIES, CONTENT_CARD_DEFAULTS, CORNER_KEYS, CTA_CARD_DEFAULTS, CURRENCY_INFO, CardComponent, CardSection, CardType, CardsCarouselComponent, ChangeEmailModalComponent, ChangePasswordModalComponent, CheckInputComponent, CheckboxRadioInputComponent, ChipGroupComponent, ClearDefault, ClearDefaultBlock, ClearDefaultFull, ClearDefaultRound, ClearDefaultRoundBlock, ClearDefaultRoundFull, CodeDisplayComponent, CommandDisplayComponent, CommentComponent, CommentInputComponent, CommentSectionComponent, CompanyFooterComponent, ComponentStates, ConfirmationDialogService, ContainerComponent, ContentCardComponent, ContentLoaderComponent, ContentReactionComponent, ContentService, ContentTransformer, CookieBannerComponent, CountdownComponent, CtaCardComponent, CurrencyInputComponent, DEFAULT_ADS_CONFIG, DEFAULT_APP_CONFIG_SERVICE_CONFIG, DEFAULT_APP_VERSION_SERVICE_CONFIG, DEFAULT_AUTH_CONFIG, DEFAULT_BACK_HEADER, 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_MODAL_CANCEL_BUTTON, DEFAULT_MODAL_CONFIRM_BUTTON, DEFAULT_PAGE_SIZE_OPTIONS, DEFAULT_PLATFORMS, DEFAULT_REFRESHER_METADATA, DEFAULT_SKELETON_CONFIG, DEFAULT_SPLASH_SCREEN_CONFIG, DataTableComponent, DateInputComponent, DateRangeInputComponent, DebugConsoleComponent, DetailSkeletonComponent, DeviceService, DisplayComponent, DividerComponent, DocsApiTableComponent, DocsBreadcrumbComponent, DocsBuilder, DocsCalloutComponent, DocsCodeExampleComponent, DocsLayoutComponent, DocsNavLinksComponent, DocsNavigationService, DocsPageComponent, DocsSearchComponent, DocsSectionComponent, DocsShellComponent, DocsSidebarComponent, DocsTocComponent, DonationService, DownloadService, EmailInputComponent, EmptyStateComponent, ExpandableTextComponent, FEATURES_LIST_DEFAULTS, FUN_MODAL_DEFAULTS, FabComponent, FaqComponent, FeaturesListComponent, FeedbackFormComponent, FeedbackService, FileInputComponent, FirebaseService, FirestoreCollectionFactory, FirestoreService, FooterComponent, FooterLinksComponent, FormComponent, FormSkeletonComponent, FunHeaderComponent, FunModalComponent, GlassComponent, GlowCardComponent, GlowComponent, GridSkeletonComponent, HANDOFF_ROUTE_PARAM, HANDOFF_TOKEN_PARAM, HandoffService, HasPermissionDirective, HeaderComponent, HintComponent, HorizontalScrollComponent, HourInputComponent, HrefComponent, I18nService, IMAGE_DEFAULTS, INFO_CARD_DEFAULTS, INITIAL_AUTH_STATE, INITIAL_MFA_STATE, INVITATION_CARD_DEFAULTS, Icon, IconComponent, IconService, ImageComponent, ImageCropComponent, ImageService, InAppBrowserService, InfiniteListComponent, InfoCardComponent, InfoComponent, InputI18nHelper, InputType, InvitationCardComponent, 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, LoginComponent, MEDIA_OBJECT_DEFAULTS, MEMBER_CARD_DEFAULTS, METRIC_CARD_DEFAULTS, MODAL_SIZES, MOTIF_KEYS, MOTION, MaintenancePageComponent, MarkdownArticleParserService, MediaObjectComponent, MemberCardComponent, MenuComponent, MessagingService, MetaService, MetricCardComponent, MfaModalComponent, ModalService, ModalShellComponent, MultiSelectSearchComponent, NUM_KEYS, NavigationService, NetworkBannerComponent, NetworkStatusService, NewsBuilder, NoContentComponent, NotesBoxComponent, NotificationActionService, NotificationsService, NumberFromToComponent, NumberInputComponent, NumberStepperComponent, OAUTH_PROVIDERS_INFO, OAuthCallbackComponent, OAuthService, OrgService, OrgSwitchService, OutlineDefault, OutlineDefaultBlock, OutlineDefaultFull, OutlineDefaultRound, OutlineDefaultRoundBlock, OutlineDefaultRoundFull, PATTERN_MOTIFS, PATTERN_PALETTES, PATTERN_STYLE_CONFIGS, PLATFORM_CONFIGS, PageContentComponent, PageLinksComponent, PageRefreshService, PageTemplateComponent, PageWavesComponent, PageWrapperComponent, PaginationComponent, PaginationService, PasswordInputComponent, PatternComponent, PhoneInputComponent, PillComponent, PinInputComponent, PlainCodeBoxComponent, PopoverSelectorComponent, PreferencesService, PreferencesViewComponent, PresetService, PriceTagComponent, PrimarySolidBlockButton, PrimarySolidBlockHrefButton, PrimarySolidBlockIconButton, PrimarySolidBlockIconHrefButton, PrimarySolidDefaultRoundButton, PrimarySolidDefaultRoundHrefButton, PrimarySolidDefaultRoundIconButton, PrimarySolidDefaultRoundIconHrefButton, PrimarySolidFullButton, PrimarySolidFullHrefButton, PrimarySolidFullIconButton, PrimarySolidFullIconHrefButton, PrimarySolidLargeRoundButton, PrimarySolidLargeRoundHrefButton, PrimarySolidLargeRoundIconButton, PrimarySolidLargeRoundIconHrefButton, PrimarySolidSmallRoundButton, PrimarySolidSmallRoundHrefButton, PrimarySolidSmallRoundIconButton, PrimarySolidSmallRoundIconHrefButton, ProcessLinksPipe, ProfileSkeletonComponent, ProfileViewComponent, ProgressBarComponent, ProgressRingComponent, ProgressStatusComponent, PrompterComponent, QR_PRESETS, QrCodeComponent, QrGeneratorService, QueryBuilder, QuoteBoxComponent, REQUEST_STATUSES, RadioInputComponent, RangeInputComponent, RatingComponent, RefresherComponent, RequestFirestoreService, RequestFormBuilderService, RequestService, RightsFooterComponent, RotatingTextComponent, SEARCH_HEADER_DEFAULTS, SHAPE_KEYS, SHARE_PROFILE_MODAL_DEFAULTS, SKELETON_LAYOUT_DEFAULT_ROWS, SKELETON_PRESETS, SOLID_KEYS, STATS_BAR_DEFAULTS, STROKE_KEYS, SearchHeaderComponent, SearchSelectorComponent, SearchbarComponent, SecondarySolidBlockButton, SecondarySolidBlockHrefButton, SecondarySolidBlockIconButton, SecondarySolidBlockIconHrefButton, SecondarySolidDefaultRoundButton, SecondarySolidDefaultRoundHrefButton, SecondarySolidDefaultRoundIconButton, SecondarySolidDefaultRoundIconHrefButton, SecondarySolidFullButton, SecondarySolidFullHrefButton, SecondarySolidFullIconButton, SecondarySolidFullIconHrefButton, SecondarySolidLargeRoundButton, SecondarySolidLargeRoundHrefButton, SecondarySolidLargeRoundIconButton, SecondarySolidLargeRoundIconHrefButton, SecondarySolidSmallRoundButton, SecondarySolidSmallRoundHrefButton, SecondarySolidSmallRoundIconButton, SecondarySolidSmallRoundIconHrefButton, SegmentControlComponent, SelectSearchComponent, SessionService, ShareButtonsComponent, ShareProfileModalComponent, SimpleComponent, SkeletonComponent, SkeletonLayoutComponent, SkeletonService, SolidBlockButton, SolidDefault, SolidDefaultBlock, SolidDefaultButton, SolidDefaultFull, SolidDefaultRound, SolidDefaultRoundBlock, SolidDefaultRoundButton, SolidDefaultRoundFull, SolidFullButton, SolidLargeButton, SolidLargeRoundButton, SolidSmallButton, SolidSmallRoundButton, SplashScreenService, StatsBarComponent, StatsCardComponent, StepperComponent, StorageService, SwipeCarouselComponent, TRI_KEYS, TabbedContentComponent, TableSkeletonComponent, TabsComponent, Terminal404Component, TestimonialCardComponent, TestimonialCarouselComponent, TextComponent, TextInputComponent, TextareaInputComponent, ThemeOption, ThemeService, TimelineComponent, TitleBlockComponent, TitleComponent, ToastService, ToggleInputComponent, TokenService, ToolbarActionType, ToolbarComponent, 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_SITE_PATHS, VALTECH_SOCIAL_LINKS, VALTECH_SPLASH_SCREEN, VALTECH_WEB_BASE_URLS, VERSION, ValtechErrorService, WizardComponent, WizardFooterComponent, applyDefaultValueToControl, authGuard, authInterceptor, authPasswordValidator, beautifyLegalArticle, blogPost, buildFooterLinks, buildPath, collections, connectPageRefresh, createErrorStateProps, createFirebaseConfig, createGlowCardProps, createInitialPaginationState, createNumberFromToField, createRefreshableStream, createTitleProps, docs, errorLoggingInterceptor, extractPathParams, generatePatternTiles, generateRandomTile, getAppInfo, getAppVersion, getCollectionPath, getDocumentId, getTimeOfDayKey, goToTop, guestGuard, hasEmulators, interpretError, isAtEnd, isCollectionPath, isDocumentPath, isEmulatorMode, isValidPath, joinPath, maxLength, mulberry32, news, parseMarkdownArticle, permissionGuard, permissionGuardFromRoute, provideLegalContent, provideSplashScreen, provideValtechAds, provideValtechAppConfig, provideValtechAppVersion, provideValtechAuth, provideValtechAuthInterceptor, provideValtechContent, provideValtechDebugConsole, provideValtechDonations, provideValtechErrorHandling, provideValtechFeedback, provideValtechFirebase, provideValtechI18n, provideValtechLegal, provideValtechPreferencesRoutes, provideValtechPresets, provideValtechProfileRoutes, provideValtechSite, provideValtechSkeleton, query, renderPatternSvgInner, replaceSpecialChars, resolveColor$1 as resolveColor, resolveInputDefaultValue, resolveWebBaseUrl, roleGuard, storagePaths, superAdminGuard, toArticle };
54073
+ export { ACTION_CARD_DEFAULTS, AD_SIZE_MAP, API_TABLE_COLUMN_LABELS, ARTICLE_CARD_DEFAULTS, ARTICLE_SPACING, ARTICLE_STRIP_DEFAULTS, AUTH_CTA_DEFAULTS, AVATAR_UPLOAD_DEFAULTS, AccordionComponent, ActionCardComponent, ActionHeaderComponent, ActionType, AdSlotComponent, AdsLoaderService, AdsService, AlertBoxComponent, AnalyticsErrorHandler, AnalyticsRouterTracker, AnalyticsService, AnimatedTerminalComponent, AppConfigService, AppVersionService, ArticleBuilder, ArticleCardComponent, ArticleComponent, ArticleStripComponent, AttachmentUploaderComponent, AuthBackgroundComponent, AuthCtaComponent, AuthService, AuthStateService, AuthStorageService, AuthSyncService, AvatarComponent, AvatarUploadComponent, BOTTOM_NAV_DEFAULTS, BannerComponent, BaseDefault, BlogPostBuilder, BottomNavComponent, BoxComponent, BreadcrumbComponent, ButtonComponent, ButtonGroupComponent, CALLOUT_LABELS, CHEV_KEYS, CIRCLE_KEYS, COMMON_COUNTRY_CODES, COMMON_CURRENCIES, CONTENT_CARD_DEFAULTS, CORNER_KEYS, CTA_CARD_DEFAULTS, CURRENCY_INFO, CardComponent, CardSection, CardType, CardsCarouselComponent, ChangeEmailModalComponent, ChangePasswordModalComponent, CheckInputComponent, CheckboxRadioInputComponent, ChipGroupComponent, ClearDefault, ClearDefaultBlock, ClearDefaultFull, ClearDefaultRound, ClearDefaultRoundBlock, ClearDefaultRoundFull, CodeDisplayComponent, CommandDisplayComponent, CommentComponent, CommentInputComponent, CommentSectionComponent, CompanyFooterComponent, ComponentStates, ConfirmationDialogService, ContainerComponent, ContentCardComponent, ContentLoaderComponent, ContentReactionComponent, ContentService, ContentTransformer, CookieBannerComponent, CountdownComponent, CtaCardComponent, CurrencyInputComponent, DEFAULT_ADS_CONFIG, DEFAULT_APP_CONFIG_SERVICE_CONFIG, DEFAULT_APP_VERSION_SERVICE_CONFIG, DEFAULT_AUTH_CONFIG, DEFAULT_BACK_HEADER, 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_MODAL_CANCEL_BUTTON, DEFAULT_MODAL_CONFIRM_BUTTON, DEFAULT_PAGE_SIZE_OPTIONS, DEFAULT_PLATFORMS, DEFAULT_REFRESHER_METADATA, DEFAULT_SKELETON_CONFIG, DEFAULT_SPLASH_SCREEN_CONFIG, DataTableComponent, DateInputComponent, DateRangeInputComponent, DebugConsoleComponent, DetailSkeletonComponent, DeviceService, DisplayComponent, DividerComponent, DocsApiTableComponent, DocsBreadcrumbComponent, DocsBuilder, DocsCalloutComponent, DocsCodeExampleComponent, DocsLayoutComponent, DocsNavLinksComponent, DocsNavigationService, DocsPageComponent, DocsSearchComponent, DocsSectionComponent, DocsShellComponent, DocsSidebarComponent, DocsTocComponent, DonationService, DownloadService, EmailInputComponent, EmptyStateComponent, ExpandableTextComponent, FEATURES_LIST_DEFAULTS, FUN_MODAL_DEFAULTS, FabComponent, FaqComponent, FeaturesListComponent, FeedbackFormComponent, FeedbackService, FileInputComponent, FirebaseService, FirestoreCollectionFactory, FirestoreService, FooterComponent, FooterLinksComponent, FormComponent, FormSkeletonComponent, FunHeaderComponent, FunModalComponent, GlassComponent, GlowCardComponent, GlowComponent, GridSkeletonComponent, HANDOFF_ROUTE_PARAM, HANDOFF_TOKEN_PARAM, HandoffService, HasPermissionDirective, HeaderComponent, HintComponent, HorizontalScrollComponent, HourInputComponent, HrefComponent, I18nService, IMAGE_DEFAULTS, INFO_CARD_DEFAULTS, INITIAL_AUTH_STATE, INITIAL_MFA_STATE, INVITATION_CARD_DEFAULTS, Icon, IconComponent, IconService, ImageComponent, ImageCropComponent, ImageService, InAppBrowserService, InfiniteListComponent, InfoCardComponent, InfoComponent, InputI18nHelper, InputType, InvitationCardComponent, 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, LoginComponent, MEDIA_OBJECT_DEFAULTS, MEMBER_CARD_DEFAULTS, METRIC_CARD_DEFAULTS, MODAL_SIZES, MOTIF_KEYS, MOTION, MaintenancePageComponent, MarkdownArticleParserService, MediaObjectComponent, MemberCardComponent, MenuComponent, MessagingService, MetaService, MetricCardComponent, MfaModalComponent, ModalService, ModalShellComponent, MultiSelectSearchComponent, NUM_KEYS, NavigationService, NetworkBannerComponent, NetworkStatusService, NewsBuilder, NoContentComponent, NotesBoxComponent, NotificationActionService, NotificationsService, NumberFromToComponent, NumberInputComponent, NumberStepperComponent, OAUTH_PROVIDERS_INFO, OAuthCallbackComponent, OAuthService, OrgService, OrgSwitchService, OutlineDefault, OutlineDefaultBlock, OutlineDefaultFull, OutlineDefaultRound, OutlineDefaultRoundBlock, OutlineDefaultRoundFull, PATTERN_MOTIFS, PATTERN_PALETTES, PATTERN_STYLE_CONFIGS, PLATFORM_CONFIGS, PageContentComponent, PageLinksComponent, PageRefreshService, PageTemplateComponent, PageWavesComponent, PageWrapperComponent, PaginationComponent, PaginationService, PasswordInputComponent, PatternComponent, PhoneInputComponent, PillComponent, PinInputComponent, PlainCodeBoxComponent, PopoverSelectorComponent, PreferencesService, PreferencesViewComponent, PresetService, PriceTagComponent, PrimarySolidBlockButton, PrimarySolidBlockHrefButton, PrimarySolidBlockIconButton, PrimarySolidBlockIconHrefButton, PrimarySolidDefaultRoundButton, PrimarySolidDefaultRoundHrefButton, PrimarySolidDefaultRoundIconButton, PrimarySolidDefaultRoundIconHrefButton, PrimarySolidFullButton, PrimarySolidFullHrefButton, PrimarySolidFullIconButton, PrimarySolidFullIconHrefButton, PrimarySolidLargeRoundButton, PrimarySolidLargeRoundHrefButton, PrimarySolidLargeRoundIconButton, PrimarySolidLargeRoundIconHrefButton, PrimarySolidSmallRoundButton, PrimarySolidSmallRoundHrefButton, PrimarySolidSmallRoundIconButton, PrimarySolidSmallRoundIconHrefButton, ProcessLinksPipe, ProfileSkeletonComponent, ProfileViewComponent, ProgressBarComponent, ProgressRingComponent, ProgressStatusComponent, PrompterComponent, QR_PRESETS, QrCodeComponent, QrGeneratorService, QueryBuilder, QuoteBoxComponent, REQUEST_STATUSES, RadioInputComponent, RangeInputComponent, RatingComponent, RefresherComponent, RequestFirestoreService, RequestFormBuilderService, 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, SecondarySolidBlockButton, SecondarySolidBlockHrefButton, SecondarySolidBlockIconButton, SecondarySolidBlockIconHrefButton, SecondarySolidDefaultRoundButton, SecondarySolidDefaultRoundHrefButton, SecondarySolidDefaultRoundIconButton, SecondarySolidDefaultRoundIconHrefButton, SecondarySolidFullButton, SecondarySolidFullHrefButton, SecondarySolidFullIconButton, SecondarySolidFullIconHrefButton, SecondarySolidLargeRoundButton, SecondarySolidLargeRoundHrefButton, SecondarySolidLargeRoundIconButton, SecondarySolidLargeRoundIconHrefButton, SecondarySolidSmallRoundButton, SecondarySolidSmallRoundHrefButton, SecondarySolidSmallRoundIconButton, SecondarySolidSmallRoundIconHrefButton, SegmentControlComponent, SelectSearchComponent, SessionService, SettingsHubComponent, ShareButtonsComponent, ShareProfileModalComponent, SimpleComponent, SkeletonComponent, SkeletonLayoutComponent, SkeletonService, SolidBlockButton, SolidDefault, SolidDefaultBlock, SolidDefaultButton, SolidDefaultFull, SolidDefaultRound, SolidDefaultRoundBlock, SolidDefaultRoundButton, SolidDefaultRoundFull, SolidFullButton, SolidLargeButton, SolidLargeRoundButton, SolidSmallButton, SolidSmallRoundButton, SplashScreenService, StatsBarComponent, StatsCardComponent, StepperComponent, StorageService, SwipeCarouselComponent, TRI_KEYS, TabbedContentComponent, TableSkeletonComponent, TabsComponent, Terminal404Component, TestimonialCardComponent, TestimonialCarouselComponent, TextComponent, TextInputComponent, TextareaInputComponent, ThemeOption, ThemeService, TimelineComponent, TitleBlockComponent, TitleComponent, ToastService, ToggleInputComponent, TokenService, ToolbarActionType, ToolbarComponent, 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_SITE_PATHS, VALTECH_SOCIAL_LINKS, VALTECH_SPLASH_SCREEN, VALTECH_WEB_BASE_URLS, VERSION, ValtechErrorService, WizardComponent, WizardFooterComponent, applyDefaultValueToControl, authGuard, authInterceptor, authPasswordValidator, beautifyLegalArticle, blogPost, buildFooterLinks, buildPath, buildSettingsCards, collections, connectPageRefresh, createErrorStateProps, createFirebaseConfig, createGlowCardProps, createInitialPaginationState, createNumberFromToField, createRefreshableStream, createTitleProps, docs, errorLoggingInterceptor, extractPathParams, generatePatternTiles, generateRandomTile, getAppInfo, getAppVersion, getCollectionPath, getDocumentId, getTimeOfDayKey, goToTop, guestGuard, hasEmulators, interpretError, isAtEnd, isCollectionPath, isDocumentPath, isEmulatorMode, isValidPath, joinPath, maxLength, mulberry32, news, parseMarkdownArticle, permissionGuard, permissionGuardFromRoute, provideLegalContent, provideSplashScreen, provideValtechAds, provideValtechAppConfig, provideValtechAppVersion, provideValtechAuth, provideValtechAuthInterceptor, provideValtechContent, provideValtechDebugConsole, provideValtechDonations, provideValtechErrorHandling, provideValtechFeedback, provideValtechFirebase, provideValtechI18n, provideValtechLegal, provideValtechPreferencesRoutes, provideValtechPresets, provideValtechProfileRoutes, provideValtechSettingsRoutes, provideValtechSite, provideValtechSkeleton, query, renderPatternSvgInner, replaceSpecialChars, resolveColor$1 as resolveColor, resolveInputDefaultValue, resolveWebBaseUrl, roleGuard, storagePaths, superAdminGuard, toArticle };
53684
54074
  //# sourceMappingURL=valtech-components.mjs.map