valtech-components 2.0.772 → 2.0.773

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.
@@ -1,5 +1,5 @@
1
1
  import * as i0 from '@angular/core';
2
- import { signal, Injectable, makeEnvironmentProviders, APP_INITIALIZER, inject, EventEmitter, Component, Input, Output, input, computed, ChangeDetectionStrategy, HostBinding, HostListener, Pipe, ViewChild, ChangeDetectorRef, ContentChild, PLATFORM_ID, Inject, ErrorHandler, DestroyRef, InjectionToken, runInInjectionContext, effect, Optional, TemplateRef, ViewContainerRef, isSignal, Directive, ElementRef, ViewEncapsulation } from '@angular/core';
2
+ import { signal, Injectable, makeEnvironmentProviders, APP_INITIALIZER, inject, EventEmitter, Component, Input, Output, input, computed, ChangeDetectionStrategy, HostBinding, HostListener, Pipe, effect, ViewChild, ChangeDetectorRef, ContentChild, PLATFORM_ID, Inject, ErrorHandler, DestroyRef, InjectionToken, runInInjectionContext, Optional, TemplateRef, ViewContainerRef, isSignal, Directive, ElementRef, ViewEncapsulation } from '@angular/core';
3
3
  import * as i2$1 from '@ionic/angular/standalone';
4
4
  import { IonAvatar, IonCard, IonIcon, IonButton, IonSpinner, IonText, IonModal, IonHeader, IonToolbar, IonContent, IonButtons, IonTitle, IonProgressBar, IonSkeletonText, IonFab, IonFabButton, IonFabList, IonLabel, IonCardContent, IonCardHeader, IonCardTitle, IonCardSubtitle, IonCheckbox, IonTextarea, IonDatetime, IonDatetimeButton, IonInput, IonSelect, IonSelectOption, IonPopover, IonList, IonItem, IonRadioGroup, IonRadio, IonRange, IonSearchbar, IonSegment, IonSegmentButton, IonToggle, IonAccordion, IonAccordionGroup, IonTabBar, IonTabButton, IonBadge, IonBreadcrumb, IonBreadcrumbs, IonChip, IonNote, ToastController as ToastController$1, IonCol, IonRow, IonRefresher, IonRefresherContent, IonRippleEffect, AlertController, IonMenuButton, IonFooter, IonListHeader, IonInfiniteScroll, IonInfiniteScrollContent, IonGrid, MenuController, IonMenu, IonMenuToggle, IonSplitPane } from '@ionic/angular/standalone';
5
5
  import * as i1 from '@angular/common';
@@ -10,7 +10,7 @@ import * as i1$1 from '@angular/router';
10
10
  import { Router, NavigationEnd, RouterLink, RouterOutlet, RouterModule } from '@angular/router';
11
11
  import { Browser } from '@capacitor/browser';
12
12
  import * as i1$2 from '@angular/platform-browser';
13
- import { Meta, Title } from '@angular/platform-browser';
13
+ import { DomSanitizer, Meta, Title } from '@angular/platform-browser';
14
14
  import QRCodeStyling from 'qr-code-styling';
15
15
  import * as i1$3 from '@angular/forms';
16
16
  import { ReactiveFormsModule, FormsModule, FormControl, Validators, FormBuilder } from '@angular/forms';
@@ -52,7 +52,7 @@ import 'prismjs/components/prism-json';
52
52
  * Current version of valtech-components.
53
53
  * This is automatically updated during the publish process.
54
54
  */
55
- const VERSION = '2.0.772';
55
+ const VERSION = '2.0.773';
56
56
 
57
57
  /**
58
58
  * Servicio para gestionar presets de componentes.
@@ -5822,6 +5822,263 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
5822
5822
  `, styles: [".rights-footer{display:block;margin-top:24px}.rights-footer--left{text-align:left}.rights-footer--center{text-align:center}.rights-footer--right{text-align:right}.rights-footer--with-margin{margin-bottom:8px}\n"] }]
5823
5823
  }] });
5824
5824
 
5825
+ /**
5826
+ * Valtech Pattern System — motifs + palettes.
5827
+ *
5828
+ * Pure data + helpers, sin dependencias Angular. Reusable desde Node/scripts
5829
+ * (e.g., generate static thumbnails) o desde el componente `val-pattern`.
5830
+ *
5831
+ * Original spec: `assets/Valtech Pattern System.html` (single-page demo).
5832
+ * Cada motif es función `(fill: string) => string` que devuelve SVG inner
5833
+ * markup. Tile es 100×100 unidades; el motif se renderiza dentro de un `<g
5834
+ * transform="translate(col*100 row*100)">` con un `<rect width=100 height=100
5835
+ * fill=bg/>` de fondo.
5836
+ */
5837
+ const PATTERN_MOTIFS = {
5838
+ 'chev-r': f => `<path d="M22 18 L58 50 L22 82 L42 82 L78 50 L42 18 Z" fill="${f}"/>`,
5839
+ 'chev-l': f => `<path d="M78 18 L42 50 L78 82 L58 82 L22 50 L58 18 Z" fill="${f}"/>`,
5840
+ 'chev-d': f => `<path d="M18 22 L50 58 L82 22 L82 42 L50 78 L18 42 Z" fill="${f}"/>`,
5841
+ 'chev-u': f => `<path d="M18 78 L50 42 L82 78 L82 58 L50 22 L18 58 Z" fill="${f}"/>`,
5842
+ 'tri-tl': f => `<polygon points="0,0 100,0 0,100" fill="${f}"/>`,
5843
+ 'tri-tr': f => `<polygon points="0,0 100,0 100,100" fill="${f}"/>`,
5844
+ 'tri-bl': f => `<polygon points="0,0 100,100 0,100" fill="${f}"/>`,
5845
+ 'tri-br': f => `<polygon points="100,0 100,100 0,100" fill="${f}"/>`,
5846
+ solid: () => ``,
5847
+ diamond: f => `<polygon points="50,12 88,50 50,88 12,50" fill="${f}"/>`,
5848
+ 'small-r': f => `<path d="M38 32 L62 50 L38 68 L48 68 L72 50 L48 32 Z" fill="${f}"/>`,
5849
+ 'small-l': f => `<path d="M62 32 L38 50 L62 68 L52 68 L28 50 L52 32 Z" fill="${f}"/>`,
5850
+ 'arrow-r': f => `<path d="M10 42 L60 42 L60 28 L92 50 L60 72 L60 58 L10 58 Z" fill="${f}"/>`,
5851
+ 'arrow-l': f => `<path d="M90 42 L40 42 L40 28 L8 50 L40 72 L40 58 L90 58 Z" fill="${f}"/>`,
5852
+ 'house-d': f => `<polygon points="50,20 88,50 12,50" fill="${f}"/><rect x="28" y="50" width="44" height="32" fill="${f}"/>`,
5853
+ 'half-l': f => `<rect x="0" y="0" width="50" height="100" fill="${f}"/>`,
5854
+ 'half-t': f => `<rect x="0" y="0" width="100" height="50" fill="${f}"/>`,
5855
+ };
5856
+ const MOTIF_KEYS = Object.keys(PATTERN_MOTIFS);
5857
+ /** Chevron family — orientations + size variants + arrows. */
5858
+ const CHEV_KEYS = [
5859
+ 'chev-r',
5860
+ 'chev-l',
5861
+ 'chev-d',
5862
+ 'chev-u',
5863
+ 'small-r',
5864
+ 'small-l',
5865
+ 'arrow-r',
5866
+ 'arrow-l',
5867
+ ];
5868
+ /** Triangle / half-fill family. */
5869
+ const TRI_KEYS = [
5870
+ 'tri-tl',
5871
+ 'tri-tr',
5872
+ 'tri-bl',
5873
+ 'tri-br',
5874
+ 'half-l',
5875
+ 'half-t',
5876
+ 'house-d',
5877
+ ];
5878
+ /** Center shape family (currently solo diamond). */
5879
+ const SHAPE_KEYS = ['diamond'];
5880
+ /** No-foreground tiles — solo el rect de fondo. */
5881
+ const SOLID_KEYS = ['solid'];
5882
+ const PATTERN_PALETTES = {
5883
+ purple: ['#0e0420', '#2a1158', '#4a1d96', '#7026df', '#9156e8', '#b48eea', '#d9c3f5', '#ebdcfd'],
5884
+ ink: ['#000000', '#0a0f1c', '#1a2235', '#2d3a55', '#4a5878', '#7d8aa5', '#b8c1d4', '#e4e8f0'],
5885
+ lavender: [
5886
+ '#1a0e3a',
5887
+ '#2e1755',
5888
+ '#5a3aa0',
5889
+ '#7e5dc6',
5890
+ '#a18bd9',
5891
+ '#c4a8f0',
5892
+ '#dccef5',
5893
+ '#f0e6fc',
5894
+ ],
5895
+ };
5896
+ /**
5897
+ * Mulberry32 seeded RNG — devuelve función `()=>[0,1)`.
5898
+ * Deterministic: mismo seed → misma secuencia. Útil para patrones reproducibles.
5899
+ */
5900
+ function mulberry32(seed) {
5901
+ return function () {
5902
+ seed = (seed + 0x6d2b79f5) >>> 0;
5903
+ let t = seed;
5904
+ t = Math.imul(t ^ (t >>> 15), t | 1);
5905
+ t ^= t + Math.imul(t ^ (t >>> 7), t | 61);
5906
+ return ((t ^ (t >>> 14)) >>> 0) / 4294967296;
5907
+ };
5908
+ }
5909
+ /** Genera matriz de tiles aplicando densidades + reglas de contraste. */
5910
+ function generatePatternTiles(cfg) {
5911
+ const { cols, rows, seed, palette } = cfg;
5912
+ const chevronDensity = cfg.chevronDensity ?? 0.55;
5913
+ const r = mulberry32(seed);
5914
+ const tiles = [];
5915
+ for (let i = 0; i < cols * rows; i++) {
5916
+ const roll = r();
5917
+ let key;
5918
+ if (roll < chevronDensity)
5919
+ key = CHEV_KEYS[Math.floor(r() * CHEV_KEYS.length)];
5920
+ else if (roll < chevronDensity + 0.2)
5921
+ key = SOLID_KEYS[Math.floor(r() * SOLID_KEYS.length)];
5922
+ else if (roll < chevronDensity + 0.35)
5923
+ key = SHAPE_KEYS[Math.floor(r() * SHAPE_KEYS.length)];
5924
+ else
5925
+ key = TRI_KEYS[Math.floor(r() * TRI_KEYS.length)];
5926
+ // Pick bg + contrasting fg (índices con distancia ≥3 en la palette).
5927
+ const bgIdx = Math.floor(r() * palette.length);
5928
+ let fgIdx = Math.floor(r() * palette.length);
5929
+ let tries = 0;
5930
+ while (Math.abs(fgIdx - bgIdx) < 3 && tries < 6) {
5931
+ fgIdx = Math.floor(r() * palette.length);
5932
+ tries++;
5933
+ }
5934
+ tiles.push({ motif: key, bg: palette[bgIdx], fg: palette[fgIdx] });
5935
+ }
5936
+ return tiles;
5937
+ }
5938
+ /**
5939
+ * Renderiza el inner SVG (sin el `<svg>` root) para una matriz de tiles.
5940
+ * Caller wraps en `<svg viewBox="0 0 {cols*100} {rows*100}" preserveAspectRatio="xMidYMid slice">`.
5941
+ */
5942
+ function renderPatternSvgInner(tiles, cols, baseColor) {
5943
+ const W = cols * 100;
5944
+ const rows = Math.ceil(tiles.length / cols);
5945
+ const H = rows * 100;
5946
+ let inner = `<rect width="${W}" height="${H}" fill="${baseColor}"/>`;
5947
+ for (let i = 0; i < tiles.length; i++) {
5948
+ const c = i % cols;
5949
+ const r = Math.floor(i / cols);
5950
+ const t = tiles[i];
5951
+ const shape = PATTERN_MOTIFS[t.motif](t.fg);
5952
+ inner += `<g transform="translate(${c * 100} ${r * 100})"><rect width="100" height="100" fill="${t.bg}"/>${shape}</g>`;
5953
+ }
5954
+ return inner;
5955
+ }
5956
+
5957
+ /**
5958
+ * `val-pattern`
5959
+ *
5960
+ * Componente de fondo geométrico inspirado en el sistema Valtech. Renderiza un
5961
+ * grid de tiles 100×100 con motifs (chevrons, triangles, diamonds, arrows) en
5962
+ * un SVG inline. Determinista vía `seed` o animado vía `reshuffle`.
5963
+ *
5964
+ * Cero dependencias externas — todo SVG.
5965
+ *
5966
+ * @example Como fondo de card (CSS absolute):
5967
+ * ```scss
5968
+ * .card { position: relative; overflow: hidden; }
5969
+ * .card val-pattern { position: absolute; inset: 0; z-index: 0; opacity: 0.4; }
5970
+ * .card .content { position: relative; z-index: 1; }
5971
+ * ```
5972
+ *
5973
+ * ```html
5974
+ * <div class="card">
5975
+ * <val-pattern [props]="{ palette: 'purple', cols: 6, rows: 3, seed: 42 }" />
5976
+ * <div class="content">Tu contenido aquí</div>
5977
+ * </div>
5978
+ * ```
5979
+ *
5980
+ * @example Como background animado (hero/login):
5981
+ * ```html
5982
+ * <val-pattern [props]="{ palette: 'lavender', cols: 16, rows: 8, animated: true }" />
5983
+ * ```
5984
+ */
5985
+ class PatternComponent {
5986
+ /** Object-first input. Cambios disparan re-render por signals. */
5987
+ set props(value) {
5988
+ if (!value)
5989
+ return;
5990
+ if (value.cols !== undefined)
5991
+ this.cols.set(Math.max(1, value.cols));
5992
+ if (value.rows !== undefined)
5993
+ this.rows.set(Math.max(1, value.rows));
5994
+ if (value.seed !== undefined)
5995
+ this.seed.set(value.seed);
5996
+ if (value.chevronDensity !== undefined) {
5997
+ this.chevronDensity.set(Math.min(1, Math.max(0, value.chevronDensity)));
5998
+ }
5999
+ if (value.preserveAspect !== undefined)
6000
+ this.preserveAspect.set(value.preserveAspect);
6001
+ if (value.palette !== undefined) {
6002
+ this.paletteRef.set(this.resolvePalette(value.palette));
6003
+ }
6004
+ if (value.reshuffleInterval !== undefined && value.reshuffleInterval > 0) {
6005
+ this.reshuffleInterval.set(value.reshuffleInterval);
6006
+ }
6007
+ if (value.animated !== undefined)
6008
+ this.animated.set(!!value.animated);
6009
+ }
6010
+ constructor() {
6011
+ this.sanitizer = inject(DomSanitizer);
6012
+ this.cols = signal(12);
6013
+ this.rows = signal(4);
6014
+ this.seed = signal(this.randomSeed());
6015
+ this.paletteRef = signal(PATTERN_PALETTES.purple);
6016
+ this.chevronDensity = signal(0.55);
6017
+ this.preserveAspect = signal('slice');
6018
+ this.animated = signal(false);
6019
+ this.reshuffleInterval = signal(8000);
6020
+ /** Tiles computed — se regenera cuando cambia seed/cols/rows/palette/density. */
6021
+ this.tiles = computed(() => generatePatternTiles({
6022
+ cols: this.cols(),
6023
+ rows: this.rows(),
6024
+ seed: this.seed(),
6025
+ palette: this.paletteRef(),
6026
+ chevronDensity: this.chevronDensity(),
6027
+ }));
6028
+ /** SVG completo como string sanitized para `[innerHTML]`. */
6029
+ this.svgHtml = computed(() => {
6030
+ const cols = this.cols();
6031
+ const rows = this.rows();
6032
+ const palette = this.paletteRef();
6033
+ const inner = renderPatternSvgInner(this.tiles(), cols, palette[0]);
6034
+ const aspect = this.preserveAspect() === 'meet' ? 'xMidYMid meet' : 'xMidYMid slice';
6035
+ const svg = `<svg viewBox="0 0 ${cols * 100} ${rows * 100}" preserveAspectRatio="${aspect}" xmlns="http://www.w3.org/2000/svg" aria-hidden="true">${inner}</svg>`;
6036
+ return this.sanitizer.bypassSecurityTrustHtml(svg);
6037
+ });
6038
+ // Animated reshuffle: cada N ms cambia seed para reshuffle visual.
6039
+ effect(onCleanup => {
6040
+ const isAnimated = this.animated();
6041
+ const interval = this.reshuffleInterval();
6042
+ if (this.timer)
6043
+ clearInterval(this.timer);
6044
+ this.timer = undefined;
6045
+ if (!isAnimated)
6046
+ return;
6047
+ this.timer = setInterval(() => {
6048
+ this.seed.set(this.randomSeed());
6049
+ }, interval);
6050
+ onCleanup(() => {
6051
+ if (this.timer) {
6052
+ clearInterval(this.timer);
6053
+ this.timer = undefined;
6054
+ }
6055
+ });
6056
+ });
6057
+ }
6058
+ ngOnDestroy() {
6059
+ if (this.timer)
6060
+ clearInterval(this.timer);
6061
+ }
6062
+ resolvePalette(p) {
6063
+ if (Array.isArray(p)) {
6064
+ // Acepta arrays de cualquier longitud ≥2; tile contrast logic usa índices.
6065
+ return p.length >= 2 ? p : PATTERN_PALETTES.purple;
6066
+ }
6067
+ return PATTERN_PALETTES[p] ?? PATTERN_PALETTES.purple;
6068
+ }
6069
+ randomSeed() {
6070
+ return Math.floor(Math.random() * 1_000_000);
6071
+ }
6072
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PatternComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
6073
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: PatternComponent, isStandalone: true, selector: "val-pattern", inputs: { props: "props" }, ngImport: i0, template: ` <div class="val-pattern" [innerHTML]="svgHtml()"></div> `, isInline: true, styles: [":host{display:block;width:100%;height:100%;line-height:0}.val-pattern{width:100%;height:100%;display:block;transition:opacity .6s ease-in-out}.val-pattern :where(svg){display:block;width:100%;height:100%}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }] }); }
6074
+ }
6075
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PatternComponent, decorators: [{
6076
+ type: Component,
6077
+ args: [{ selector: 'val-pattern', standalone: true, imports: [CommonModule], template: ` <div class="val-pattern" [innerHTML]="svgHtml()"></div> `, styles: [":host{display:block;width:100%;height:100%;line-height:0}.val-pattern{width:100%;height:100%;display:block;transition:opacity .6s ease-in-out}.val-pattern :where(svg){display:block;width:100%;height:100%}\n"] }]
6078
+ }], ctorParameters: () => [], propDecorators: { props: [{
6079
+ type: Input
6080
+ }] } });
6081
+
5825
6082
  /**
5826
6083
  * val-alert-box
5827
6084
  *
@@ -42981,5 +43238,5 @@ function buildFooterLinks(links, t, resolver) {
42981
43238
  * Generated bundle index. Do not edit.
42982
43239
  */
42983
43240
 
42984
- export { ACTION_CARD_DEFAULTS, AD_SIZE_MAP, API_TABLE_COLUMN_LABELS, ARTICLE_SPACING, AVATAR_UPLOAD_DEFAULTS, AccordionComponent, ActionCardComponent, ActionHeaderComponent, ActionType, AdSlotComponent, AdsLoaderService, AdsService, AlertBoxComponent, AnalyticsErrorHandler, AnalyticsRouterTracker, AnalyticsService, AppConfigService, ArticleBuilder, ArticleComponent, AuthBackgroundComponent, AuthService, AuthStateService, AuthStorageService, AuthSyncService, AvatarComponent, AvatarUploadComponent, BOTTOM_NAV_DEFAULTS, BannerComponent, BaseDefault, BlogPostBuilder, BottomNavComponent, BoxComponent, BreadcrumbComponent, ButtonComponent, ButtonGroupComponent, COMMON_COUNTRY_CODES, COMMON_CURRENCIES, CURRENCY_INFO, CardComponent, CardSection, CardType, CardsCarouselComponent, CheckInputComponent, CheckboxRadioInputComponent, ChipGroupComponent, ClearDefault, ClearDefaultBlock, ClearDefaultFull, ClearDefaultRound, ClearDefaultRoundBlock, ClearDefaultRoundFull, CodeDisplayComponent, CommandDisplayComponent, CommentComponent, CommentInputComponent, CommentSectionComponent, CompanyFooterComponent, ComponentStates, ConfirmationDialogService, ContainerComponent, ContentLoaderComponent, ContentReactionComponent, ContentTransformer, CountdownComponent, CurrencyInputComponent, DEFAULT_ADS_CONFIG, DEFAULT_APP_CONFIG_SERVICE_CONFIG, DEFAULT_AUTH_CONFIG, DEFAULT_BACK_HEADER, DEFAULT_CANCEL_BUTTON, DEFAULT_CONFIRM_BUTTON, DEFAULT_COUNTDOWN_LABELS, DEFAULT_COUNTDOWN_LABELS_EN, 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, DataTableComponent, DateInputComponent, DateRangeInputComponent, DetailSkeletonComponent, DeviceService, DisplayComponent, DividerComponent, DocsApiTableComponent, DocsBreadcrumbComponent, DocsBuilder, DocsCalloutComponent, DocsCodeExampleComponent, DocsLayoutComponent, DocsNavLinksComponent, DocsNavigationService, DocsPageComponent, DocsSearchComponent, DocsSectionComponent, DocsShellComponent, DocsSidebarComponent, DocsTocComponent, DownloadService, EmailInputComponent, ExpandableTextComponent, FEATURES_LIST_DEFAULTS, FabComponent, FeaturesListComponent, FeedbackFormComponent, FeedbackService, FileInputComponent, FirebaseService, FirestoreCollectionFactory, FirestoreService, FooterComponent, FooterLinksComponent, FormComponent, FormFooterComponent, FormSkeletonComponent, FunHeaderComponent, GlowCardComponent, GlowComponent, GridSkeletonComponent, HANDOFF_ROUTE_PARAM, HANDOFF_TOKEN_PARAM, HandoffService, HeaderComponent, HintComponent, HorizontalScrollComponent, HourInputComponent, HrefComponent, I18nService, IMAGE_DEFAULTS, INITIAL_AUTH_STATE, INITIAL_MFA_STATE, Icon, IconComponent, IconService, ImageComponent, ImageCropComponent, ImageService, InAppBrowserService, InfiniteListComponent, InfoComponent, InputI18nHelper, InputType, ItemListComponent, LANG_STORAGE_KEY$1 as LANG_STORAGE_KEY, LEGAL_CONTENT_CONFIG, LOGIN_DEFAULTS, LanguageSelectorComponent, LayeredCardComponent, LegalContentService, LegalLinkService, LinkComponent, LinkProcessorService, LinkedProvidersComponent, LinksAccordionComponent, LinksCakeComponent, ListSkeletonComponent, LoadingDirective, LocalStorageService, LocaleService, LoginComponent, MODAL_SIZES, MOTION, MaintenancePageComponent, MarkdownArticleParserService, MenuComponent, MessagingService, MetaService, ModalService, MultiSelectSearchComponent, NavigationService, NewsBuilder, NoContentComponent, NotesBoxComponent, NotificationActionService, NotificationsService, NumberFromToComponent, NumberInputComponent, NumberStepperComponent, OAUTH_PROVIDERS_INFO, OAuthCallbackComponent, OAuthService, OrgSwitchService, OutlineDefault, OutlineDefaultBlock, OutlineDefaultFull, OutlineDefaultRound, OutlineDefaultRoundBlock, OutlineDefaultRoundFull, PLATFORM_CONFIGS, PageContentComponent, PageTemplateComponent, PageWrapperComponent, PaginationComponent, PaginationService, PasswordInputComponent, PhoneInputComponent, PillComponent, PinInputComponent, PlainCodeBoxComponent, PopoverSelectorComponent, PreferencesService, PresetService, PriceTagComponent, PrimarySolidBlockButton, PrimarySolidBlockHrefButton, PrimarySolidBlockIconButton, PrimarySolidBlockIconHrefButton, PrimarySolidDefaultRoundButton, PrimarySolidDefaultRoundHrefButton, PrimarySolidDefaultRoundIconButton, PrimarySolidDefaultRoundIconHrefButton, PrimarySolidFullButton, PrimarySolidFullHrefButton, PrimarySolidFullIconButton, PrimarySolidFullIconHrefButton, PrimarySolidLargeRoundButton, PrimarySolidLargeRoundHrefButton, PrimarySolidLargeRoundIconButton, PrimarySolidLargeRoundIconHrefButton, PrimarySolidSmallRoundButton, PrimarySolidSmallRoundHrefButton, PrimarySolidSmallRoundIconButton, PrimarySolidSmallRoundIconHrefButton, ProcessLinksPipe, ProfileSkeletonComponent, ProgressBarComponent, ProgressRingComponent, ProgressStatusComponent, PrompterComponent, QR_PRESETS, QrCodeComponent, QrGeneratorService, QueryBuilder, QuoteBoxComponent, RadioInputComponent, RangeInputComponent, RatingComponent, RefresherComponent, RightsFooterComponent, RotatingTextComponent, SKELETON_PRESETS, 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, SimpleComponent, SkeletonComponent, SkeletonService, SolidBlockButton, SolidDefault, SolidDefaultBlock, SolidDefaultButton, SolidDefaultFull, SolidDefaultRound, SolidDefaultRoundBlock, SolidDefaultRoundButton, SolidDefaultRoundFull, SolidFullButton, SolidLargeButton, SolidLargeRoundButton, SolidSmallButton, SolidSmallRoundButton, StatsCardComponent, StepperComponent, StorageService, SwipeCarouselComponent, TabbedContentComponent, TableSkeletonComponent, TabsComponent, Terminal404Component, TestimonialCardComponent, TestimonialCarouselComponent, TextComponent, TextInputComponent, TextareaInputComponent, ThemeOption, ThemeService, TimelineComponent, TitleBlockComponent, TitleComponent, ToastService, ToggleInputComponent, TokenService, ToolbarActionType, ToolbarComponent, TranslatePipe, TypedCollection, UpdateBannerComponent, UsernameInputComponent, VALTECH_ADS_CONFIG, VALTECH_APP_CONFIG, VALTECH_AUTH_CONFIG, VALTECH_COMPANY_LINKS, VALTECH_DEFAULT_CONTENT, VALTECH_FEEDBACK_CONFIG, VALTECH_FIREBASE_CONFIG, VALTECH_FOOTER_I18N, VALTECH_FOOTER_LOGO, VALTECH_LANGUAGE_SELECTOR, VALTECH_LEGAL_CONFIG, VALTECH_SOCIAL_LINKS, VERSION, WizardComponent, WizardFooterComponent, applyDefaultValueToControl, authGuard, authInterceptor, blogPost, buildFooterLinks, buildPath, collections, createFirebaseConfig, createGlowCardProps, createInitialPaginationState, createNumberFromToField, createTitleProps, docs, extractPathParams, getAppInfo, getAppVersion, getCollectionPath, getDocumentId, getTimeOfDayKey, goToTop, guestGuard, hasEmulators, isAtEnd, isCollectionPath, isDocumentPath, isEmulatorMode, isValidPath, joinPath, maxLength, news, parseMarkdownArticle, permissionGuard, permissionGuardFromRoute, provideLegalContent, provideValtechAds, provideValtechAppConfig, provideValtechAuth, provideValtechAuthInterceptor, provideValtechFeedback, provideValtechFirebase, provideValtechI18n, provideValtechLegal, provideValtechPresets, provideValtechSkeleton, query, replaceSpecialChars, resolveColor, resolveInputDefaultValue, roleGuard, storagePaths, superAdminGuard, toArticle };
43241
+ export { ACTION_CARD_DEFAULTS, AD_SIZE_MAP, API_TABLE_COLUMN_LABELS, ARTICLE_SPACING, AVATAR_UPLOAD_DEFAULTS, AccordionComponent, ActionCardComponent, ActionHeaderComponent, ActionType, AdSlotComponent, AdsLoaderService, AdsService, AlertBoxComponent, AnalyticsErrorHandler, AnalyticsRouterTracker, AnalyticsService, AppConfigService, ArticleBuilder, ArticleComponent, AuthBackgroundComponent, AuthService, AuthStateService, AuthStorageService, AuthSyncService, AvatarComponent, AvatarUploadComponent, BOTTOM_NAV_DEFAULTS, BannerComponent, BaseDefault, BlogPostBuilder, BottomNavComponent, BoxComponent, BreadcrumbComponent, ButtonComponent, ButtonGroupComponent, CHEV_KEYS, COMMON_COUNTRY_CODES, COMMON_CURRENCIES, CURRENCY_INFO, CardComponent, CardSection, CardType, CardsCarouselComponent, CheckInputComponent, CheckboxRadioInputComponent, ChipGroupComponent, ClearDefault, ClearDefaultBlock, ClearDefaultFull, ClearDefaultRound, ClearDefaultRoundBlock, ClearDefaultRoundFull, CodeDisplayComponent, CommandDisplayComponent, CommentComponent, CommentInputComponent, CommentSectionComponent, CompanyFooterComponent, ComponentStates, ConfirmationDialogService, ContainerComponent, ContentLoaderComponent, ContentReactionComponent, ContentTransformer, CountdownComponent, CurrencyInputComponent, DEFAULT_ADS_CONFIG, DEFAULT_APP_CONFIG_SERVICE_CONFIG, DEFAULT_AUTH_CONFIG, DEFAULT_BACK_HEADER, DEFAULT_CANCEL_BUTTON, DEFAULT_CONFIRM_BUTTON, DEFAULT_COUNTDOWN_LABELS, DEFAULT_COUNTDOWN_LABELS_EN, 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, DataTableComponent, DateInputComponent, DateRangeInputComponent, DetailSkeletonComponent, DeviceService, DisplayComponent, DividerComponent, DocsApiTableComponent, DocsBreadcrumbComponent, DocsBuilder, DocsCalloutComponent, DocsCodeExampleComponent, DocsLayoutComponent, DocsNavLinksComponent, DocsNavigationService, DocsPageComponent, DocsSearchComponent, DocsSectionComponent, DocsShellComponent, DocsSidebarComponent, DocsTocComponent, DownloadService, EmailInputComponent, ExpandableTextComponent, FEATURES_LIST_DEFAULTS, FabComponent, FeaturesListComponent, FeedbackFormComponent, FeedbackService, FileInputComponent, FirebaseService, FirestoreCollectionFactory, FirestoreService, FooterComponent, FooterLinksComponent, FormComponent, FormFooterComponent, FormSkeletonComponent, FunHeaderComponent, GlowCardComponent, GlowComponent, GridSkeletonComponent, HANDOFF_ROUTE_PARAM, HANDOFF_TOKEN_PARAM, HandoffService, HeaderComponent, HintComponent, HorizontalScrollComponent, HourInputComponent, HrefComponent, I18nService, IMAGE_DEFAULTS, INITIAL_AUTH_STATE, INITIAL_MFA_STATE, Icon, IconComponent, IconService, ImageComponent, ImageCropComponent, ImageService, InAppBrowserService, InfiniteListComponent, InfoComponent, InputI18nHelper, InputType, ItemListComponent, LANG_STORAGE_KEY$1 as LANG_STORAGE_KEY, LEGAL_CONTENT_CONFIG, LOGIN_DEFAULTS, LanguageSelectorComponent, LayeredCardComponent, LegalContentService, LegalLinkService, LinkComponent, LinkProcessorService, LinkedProvidersComponent, LinksAccordionComponent, LinksCakeComponent, ListSkeletonComponent, LoadingDirective, LocalStorageService, LocaleService, LoginComponent, MODAL_SIZES, MOTIF_KEYS, MOTION, MaintenancePageComponent, MarkdownArticleParserService, MenuComponent, MessagingService, MetaService, ModalService, MultiSelectSearchComponent, NavigationService, NewsBuilder, NoContentComponent, NotesBoxComponent, NotificationActionService, NotificationsService, NumberFromToComponent, NumberInputComponent, NumberStepperComponent, OAUTH_PROVIDERS_INFO, OAuthCallbackComponent, OAuthService, OrgSwitchService, OutlineDefault, OutlineDefaultBlock, OutlineDefaultFull, OutlineDefaultRound, OutlineDefaultRoundBlock, OutlineDefaultRoundFull, PATTERN_MOTIFS, PATTERN_PALETTES, PLATFORM_CONFIGS, PageContentComponent, PageTemplateComponent, PageWrapperComponent, PaginationComponent, PaginationService, PasswordInputComponent, PatternComponent, PhoneInputComponent, PillComponent, PinInputComponent, PlainCodeBoxComponent, PopoverSelectorComponent, PreferencesService, PresetService, PriceTagComponent, PrimarySolidBlockButton, PrimarySolidBlockHrefButton, PrimarySolidBlockIconButton, PrimarySolidBlockIconHrefButton, PrimarySolidDefaultRoundButton, PrimarySolidDefaultRoundHrefButton, PrimarySolidDefaultRoundIconButton, PrimarySolidDefaultRoundIconHrefButton, PrimarySolidFullButton, PrimarySolidFullHrefButton, PrimarySolidFullIconButton, PrimarySolidFullIconHrefButton, PrimarySolidLargeRoundButton, PrimarySolidLargeRoundHrefButton, PrimarySolidLargeRoundIconButton, PrimarySolidLargeRoundIconHrefButton, PrimarySolidSmallRoundButton, PrimarySolidSmallRoundHrefButton, PrimarySolidSmallRoundIconButton, PrimarySolidSmallRoundIconHrefButton, ProcessLinksPipe, ProfileSkeletonComponent, ProgressBarComponent, ProgressRingComponent, ProgressStatusComponent, PrompterComponent, QR_PRESETS, QrCodeComponent, QrGeneratorService, QueryBuilder, QuoteBoxComponent, RadioInputComponent, RangeInputComponent, RatingComponent, RefresherComponent, RightsFooterComponent, RotatingTextComponent, SHAPE_KEYS, SKELETON_PRESETS, SOLID_KEYS, 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, SimpleComponent, SkeletonComponent, SkeletonService, SolidBlockButton, SolidDefault, SolidDefaultBlock, SolidDefaultButton, SolidDefaultFull, SolidDefaultRound, SolidDefaultRoundBlock, SolidDefaultRoundButton, SolidDefaultRoundFull, SolidFullButton, SolidLargeButton, SolidLargeRoundButton, SolidSmallButton, SolidSmallRoundButton, 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, UpdateBannerComponent, UsernameInputComponent, VALTECH_ADS_CONFIG, VALTECH_APP_CONFIG, VALTECH_AUTH_CONFIG, VALTECH_COMPANY_LINKS, VALTECH_DEFAULT_CONTENT, VALTECH_FEEDBACK_CONFIG, VALTECH_FIREBASE_CONFIG, VALTECH_FOOTER_I18N, VALTECH_FOOTER_LOGO, VALTECH_LANGUAGE_SELECTOR, VALTECH_LEGAL_CONFIG, VALTECH_SOCIAL_LINKS, VERSION, WizardComponent, WizardFooterComponent, applyDefaultValueToControl, authGuard, authInterceptor, blogPost, buildFooterLinks, buildPath, collections, createFirebaseConfig, createGlowCardProps, createInitialPaginationState, createNumberFromToField, createTitleProps, docs, extractPathParams, generatePatternTiles, getAppInfo, getAppVersion, getCollectionPath, getDocumentId, getTimeOfDayKey, goToTop, guestGuard, hasEmulators, isAtEnd, isCollectionPath, isDocumentPath, isEmulatorMode, isValidPath, joinPath, maxLength, mulberry32, news, parseMarkdownArticle, permissionGuard, permissionGuardFromRoute, provideLegalContent, provideValtechAds, provideValtechAppConfig, provideValtechAuth, provideValtechAuthInterceptor, provideValtechFeedback, provideValtechFirebase, provideValtechI18n, provideValtechLegal, provideValtechPresets, provideValtechSkeleton, query, renderPatternSvgInner, replaceSpecialChars, resolveColor, resolveInputDefaultValue, roleGuard, storagePaths, superAdminGuard, toArticle };
42985
43242
  //# sourceMappingURL=valtech-components.mjs.map