valtech-components 2.0.784 → 2.0.786

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.
@@ -7,7 +7,7 @@ import { CommonModule, NgStyle, NgFor, isPlatformBrowser, NgClass } from '@angul
7
7
  import { addIcons } from 'ionicons';
8
8
  import { addOutline, addCircleOutline, alertOutline, alertCircleOutline, arrowBackOutline, arrowForwardOutline, arrowDownOutline, settings, settingsOutline, checkmarkCircleOutline, ellipsisHorizontalOutline, notifications, notificationsOutline, openOutline, closeOutline, chatbubblesOutline, shareOutline, heart, heartOutline, home, homeOutline, eyeOffOutline, eyeOutline, scanOutline, chevronDownOutline, chevronForwardOutline, checkmarkOutline, clipboardOutline, copyOutline, filterOutline, locationOutline, calendarOutline, businessOutline, logoTwitter, logoInstagram, logoLinkedin, logoYoutube, logoTiktok, logoFacebook, logoGoogle, createOutline, trashOutline, playOutline, phonePortraitOutline, refreshOutline, documentTextOutline, lockClosedOutline, informationCircleOutline, logoNpm, removeOutline, optionsOutline, personOutline, shieldCheckmarkOutline, keyOutline, desktopOutline, logOutOutline, add, close, share, create, trash, star, camera, mic, send, downloadOutline, chevronDown, language, globeOutline, checkmark, list, grid, apps, menu, search, person, helpCircle, informationCircle, documentText, mail, calendar, folder, chevronForward, ellipsisHorizontal, chevronBack, playBack, playForward, ellipse, starOutline, starHalf, heartHalf, checkmarkCircle, timeOutline, flag, trendingUp, trendingDown, remove, analytics, people, cash, cart, eye, chatbubbleOutline, thumbsUpOutline, thumbsUp, happyOutline, happy, sadOutline, sad, chevronUp, pin, pencil, callOutline, logoWhatsapp, paperPlaneOutline, mailOutline, closeCircle, alertCircle, logoApple, logoMicrosoft, linkOutline, unlinkOutline, chevronBackOutline, sendOutline, chatbubbleEllipsesOutline, swapVerticalOutline, chevronUpOutline, documentOutline, searchOutline, cartOutline, chatbubble, compass, compassOutline, gridOutline, listOutline, folderOutline, documents, documentsOutline, statsChart, statsChartOutline, cameraOutline, bugOutline, bulbOutline, closeCircleOutline, menuOutline } from 'ionicons/icons';
9
9
  import * as i1$1 from '@angular/router';
10
- import { Router, NavigationEnd, RouterLink, RouterOutlet, RouterModule } from '@angular/router';
10
+ import { RouterLink, Router, NavigationEnd, RouterOutlet, RouterModule } from '@angular/router';
11
11
  import { Browser } from '@capacitor/browser';
12
12
  import * as i1$2 from '@angular/platform-browser';
13
13
  import { DomSanitizer, Meta, Title } from '@angular/platform-browser';
@@ -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.784';
55
+ const VERSION = '2.0.786';
56
56
 
57
57
  /**
58
58
  * Servicio para gestionar presets de componentes.
@@ -8779,6 +8779,149 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
8779
8779
  type: Input
8780
8780
  }] } });
8781
8781
 
8782
+ /**
8783
+ * `val-page-links` — stacked list of navigational links with optional dividers.
8784
+ * Used for legal/policies, footer link columns, "about" sections, etc.
8785
+ *
8786
+ * Each item can navigate via Angular `routerLink` (SPA) or external `href`.
8787
+ * Detects absolute URLs (`http(s)://`) to apply `target="_blank"` by default.
8788
+ *
8789
+ * @example
8790
+ * <val-page-links [props]="{
8791
+ * links: [
8792
+ * { label: 'Terms', routerLink: '/legal/terms' },
8793
+ * { label: 'Privacy', routerLink: '/legal/privacy' },
8794
+ * { label: 'Visit main site', href: 'https://myvaltech.com', icon: 'open-outline' },
8795
+ * ],
8796
+ * }"></val-page-links>
8797
+ */
8798
+ class PageLinksComponent {
8799
+ /** Page links configuration object. */
8800
+ set props(value) {
8801
+ this._props.set(value);
8802
+ }
8803
+ get props() {
8804
+ return this._props();
8805
+ }
8806
+ constructor() {
8807
+ this._props = signal({ links: [] });
8808
+ this.links = computed(() => this._props().links ?? []);
8809
+ addIcons({ chevronForwardOutline, openOutline });
8810
+ }
8811
+ isExternal(link) {
8812
+ if (link.external !== undefined)
8813
+ return link.external;
8814
+ return !!link.href && /^https?:\/\//i.test(link.href);
8815
+ }
8816
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PageLinksComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
8817
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.14", type: PageLinksComponent, isStandalone: true, selector: "val-page-links", inputs: { props: "props" }, ngImport: i0, template: `
8818
+ <nav
8819
+ class="val-page-links"
8820
+ [class.no-dividers]="props.showDividers === false"
8821
+ [class.size-small]="props.size === 'small'"
8822
+ [class.size-large]="props.size === 'large'"
8823
+ >
8824
+ @for (link of links(); track link.label; let last = $last) {
8825
+ @if (link.routerLink) {
8826
+ <a
8827
+ class="val-page-links__item"
8828
+ [routerLink]="link.routerLink"
8829
+ [class.is-last]="last"
8830
+ [attr.aria-label]="link.ariaLabel || link.label"
8831
+ >
8832
+ <span class="val-page-links__label">{{ link.label }}</span>
8833
+ @if (link.icon) {
8834
+ <ion-icon class="val-page-links__icon" [name]="link.icon" aria-hidden="true"></ion-icon>
8835
+ } @else {
8836
+ <ion-icon
8837
+ class="val-page-links__icon val-page-links__icon--default"
8838
+ name="chevron-forward-outline"
8839
+ aria-hidden="true"
8840
+ ></ion-icon>
8841
+ }
8842
+ </a>
8843
+ } @else if (link.href) {
8844
+ <a
8845
+ class="val-page-links__item"
8846
+ [href]="link.href"
8847
+ [class.is-last]="last"
8848
+ [attr.target]="isExternal(link) ? '_blank' : null"
8849
+ [attr.rel]="isExternal(link) ? 'noopener noreferrer' : null"
8850
+ [attr.aria-label]="link.ariaLabel || link.label"
8851
+ >
8852
+ <span class="val-page-links__label">{{ link.label }}</span>
8853
+ @if (link.icon) {
8854
+ <ion-icon class="val-page-links__icon" [name]="link.icon" aria-hidden="true"></ion-icon>
8855
+ } @else {
8856
+ <ion-icon
8857
+ class="val-page-links__icon val-page-links__icon--default"
8858
+ [name]="isExternal(link) ? 'open-outline' : 'chevron-forward-outline'"
8859
+ aria-hidden="true"
8860
+ ></ion-icon>
8861
+ }
8862
+ </a>
8863
+ }
8864
+ }
8865
+ </nav>
8866
+ `, isInline: true, styles: ["@charset \"UTF-8\";:host{display:block}.val-page-links{display:flex;flex-direction:column}.val-page-links__item{display:flex;align-items:center;justify-content:space-between;gap:12px;width:100%;padding:14px 4px;background:transparent;border:0;border-bottom:1px solid var(--ion-color-light-shade, #e8e9ec);color:var(--ion-color-dark);font-size:.95rem;line-height:1.4;text-align:left;text-decoration:none;cursor:pointer;transition:color .15s ease,background .15s ease}.val-page-links__item.is-last{border-bottom:0}.val-page-links__item:hover{color:var(--ion-color-primary, #7026df)}.val-page-links__item:hover .val-page-links__icon--default{transform:translate(2px)}.val-page-links__item:focus-visible{outline:2px solid var(--ion-color-primary, #7026df);outline-offset:2px;border-radius:6px}.val-page-links__label{flex:1 1 auto;min-width:0}.val-page-links__icon{flex-shrink:0;font-size:18px;color:var(--ion-color-medium);transition:transform .15s ease}.val-page-links__icon--default{font-size:16px;opacity:.7}.val-page-links.no-dividers .val-page-links__item{border-bottom:0}.val-page-links.size-small .val-page-links__item{font-size:.85rem;padding:10px 4px}.val-page-links.size-large .val-page-links__item{font-size:1.05rem;padding:18px 4px}:host-context(body.dark) .val-page-links__item,:host-context(html.ion-palette-dark) .val-page-links__item,:host-context([data-theme=dark]) .val-page-links__item{border-bottom-color:#ffffff14}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: RouterLink, selector: "[routerLink]", inputs: ["target", "queryParams", "fragment", "queryParamsHandling", "state", "info", "relativeTo", "preserveFragment", "skipLocationChange", "replaceUrl", "routerLink"] }, { kind: "component", type: IonIcon, selector: "ion-icon", inputs: ["color", "flipRtl", "icon", "ios", "lazy", "md", "mode", "name", "sanitize", "size", "src"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
8867
+ }
8868
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PageLinksComponent, decorators: [{
8869
+ type: Component,
8870
+ args: [{ selector: 'val-page-links', standalone: true, imports: [CommonModule, RouterLink, IonIcon], template: `
8871
+ <nav
8872
+ class="val-page-links"
8873
+ [class.no-dividers]="props.showDividers === false"
8874
+ [class.size-small]="props.size === 'small'"
8875
+ [class.size-large]="props.size === 'large'"
8876
+ >
8877
+ @for (link of links(); track link.label; let last = $last) {
8878
+ @if (link.routerLink) {
8879
+ <a
8880
+ class="val-page-links__item"
8881
+ [routerLink]="link.routerLink"
8882
+ [class.is-last]="last"
8883
+ [attr.aria-label]="link.ariaLabel || link.label"
8884
+ >
8885
+ <span class="val-page-links__label">{{ link.label }}</span>
8886
+ @if (link.icon) {
8887
+ <ion-icon class="val-page-links__icon" [name]="link.icon" aria-hidden="true"></ion-icon>
8888
+ } @else {
8889
+ <ion-icon
8890
+ class="val-page-links__icon val-page-links__icon--default"
8891
+ name="chevron-forward-outline"
8892
+ aria-hidden="true"
8893
+ ></ion-icon>
8894
+ }
8895
+ </a>
8896
+ } @else if (link.href) {
8897
+ <a
8898
+ class="val-page-links__item"
8899
+ [href]="link.href"
8900
+ [class.is-last]="last"
8901
+ [attr.target]="isExternal(link) ? '_blank' : null"
8902
+ [attr.rel]="isExternal(link) ? 'noopener noreferrer' : null"
8903
+ [attr.aria-label]="link.ariaLabel || link.label"
8904
+ >
8905
+ <span class="val-page-links__label">{{ link.label }}</span>
8906
+ @if (link.icon) {
8907
+ <ion-icon class="val-page-links__icon" [name]="link.icon" aria-hidden="true"></ion-icon>
8908
+ } @else {
8909
+ <ion-icon
8910
+ class="val-page-links__icon val-page-links__icon--default"
8911
+ [name]="isExternal(link) ? 'open-outline' : 'chevron-forward-outline'"
8912
+ aria-hidden="true"
8913
+ ></ion-icon>
8914
+ }
8915
+ </a>
8916
+ }
8917
+ }
8918
+ </nav>
8919
+ `, changeDetection: ChangeDetectionStrategy.OnPush, styles: ["@charset \"UTF-8\";:host{display:block}.val-page-links{display:flex;flex-direction:column}.val-page-links__item{display:flex;align-items:center;justify-content:space-between;gap:12px;width:100%;padding:14px 4px;background:transparent;border:0;border-bottom:1px solid var(--ion-color-light-shade, #e8e9ec);color:var(--ion-color-dark);font-size:.95rem;line-height:1.4;text-align:left;text-decoration:none;cursor:pointer;transition:color .15s ease,background .15s ease}.val-page-links__item.is-last{border-bottom:0}.val-page-links__item:hover{color:var(--ion-color-primary, #7026df)}.val-page-links__item:hover .val-page-links__icon--default{transform:translate(2px)}.val-page-links__item:focus-visible{outline:2px solid var(--ion-color-primary, #7026df);outline-offset:2px;border-radius:6px}.val-page-links__label{flex:1 1 auto;min-width:0}.val-page-links__icon{flex-shrink:0;font-size:18px;color:var(--ion-color-medium);transition:transform .15s ease}.val-page-links__icon--default{font-size:16px;opacity:.7}.val-page-links.no-dividers .val-page-links__item{border-bottom:0}.val-page-links.size-small .val-page-links__item{font-size:.85rem;padding:10px 4px}.val-page-links.size-large .val-page-links__item{font-size:1.05rem;padding:18px 4px}:host-context(body.dark) .val-page-links__item,:host-context(html.ion-palette-dark) .val-page-links__item,:host-context([data-theme=dark]) .val-page-links__item{border-bottom-color:#ffffff14}\n"] }]
8920
+ }], ctorParameters: () => [], propDecorators: { props: [{
8921
+ type: Input,
8922
+ args: [{ required: true }]
8923
+ }] } });
8924
+
8782
8925
  /**
8783
8926
  * Utilities for handling default values in form inputs based on InputMetadata configuration.
8784
8927
  */
@@ -10612,23 +10755,51 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
10612
10755
  type: Input
10613
10756
  }] } });
10614
10757
 
10758
+ /**
10759
+ * `val-action-header` — heading with a right-aligned action button.
10760
+ *
10761
+ * By default renders the heading via `val-display` (hero size). Set
10762
+ * `headingKind: 'title'` to render via `val-title` (section size) so it
10763
+ * matches `val-title` section labels elsewhere on the same screen.
10764
+ *
10765
+ * @example Section heading (matches `val-title size='medium'` on the page):
10766
+ * <val-action-header [props]="{
10767
+ * headingKind: 'title',
10768
+ * title: { size: 'medium', color: 'dark', bold: true, content: 'Active sessions' },
10769
+ * action: { text: 'Sign out all', color: 'dark', fill: 'outline', size: 'small', ... },
10770
+ * }"></val-action-header>
10771
+ *
10772
+ * @example Page hero (default):
10773
+ * <val-action-header [props]="{
10774
+ * title: { size: 'large', color: 'dark', content: 'Settings' },
10775
+ * action: { ... },
10776
+ * }"></val-action-header>
10777
+ */
10615
10778
  class ActionHeaderComponent {
10616
10779
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ActionHeaderComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
10617
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: ActionHeaderComponent, isStandalone: true, selector: "val-action-header", inputs: { props: "props" }, ngImport: i0, template: `
10780
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.14", type: ActionHeaderComponent, isStandalone: true, selector: "val-action-header", inputs: { props: "props" }, ngImport: i0, template: `
10618
10781
  <section class="header-content-container">
10619
- <val-display [props]="props.title" />
10782
+ @if (props.headingKind === 'title') {
10783
+ <val-title [props]="$any(props.title)" />
10784
+ } @else {
10785
+ <val-display [props]="$any(props.title)" />
10786
+ }
10620
10787
  <val-button [props]="props.action" />
10621
10788
  </section>
10622
- `, isInline: true, styles: [".header-content-container{width:100%;display:flex;align-items:center;justify-content:space-between}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "component", type: DisplayComponent, selector: "val-display", inputs: ["props"] }, { kind: "component", type: ButtonComponent, selector: "val-button", inputs: ["preset", "props"], outputs: ["onClick"] }] }); }
10789
+ `, isInline: true, styles: [".header-content-container{width:100%;display:flex;align-items:center;justify-content:space-between;gap:12px}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "component", type: DisplayComponent, selector: "val-display", inputs: ["props"] }, { kind: "component", type: TitleComponent, selector: "val-title", inputs: ["props"] }, { kind: "component", type: ButtonComponent, selector: "val-button", inputs: ["preset", "props"], outputs: ["onClick"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
10623
10790
  }
10624
10791
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ActionHeaderComponent, decorators: [{
10625
10792
  type: Component,
10626
- args: [{ selector: 'val-action-header', standalone: true, imports: [CommonModule, DisplayComponent, ButtonComponent], template: `
10793
+ args: [{ selector: 'val-action-header', standalone: true, imports: [CommonModule, DisplayComponent, TitleComponent, ButtonComponent], template: `
10627
10794
  <section class="header-content-container">
10628
- <val-display [props]="props.title" />
10795
+ @if (props.headingKind === 'title') {
10796
+ <val-title [props]="$any(props.title)" />
10797
+ } @else {
10798
+ <val-display [props]="$any(props.title)" />
10799
+ }
10629
10800
  <val-button [props]="props.action" />
10630
10801
  </section>
10631
- `, styles: [".header-content-container{width:100%;display:flex;align-items:center;justify-content:space-between}\n"] }]
10802
+ `, changeDetection: ChangeDetectionStrategy.OnPush, styles: [".header-content-container{width:100%;display:flex;align-items:center;justify-content:space-between;gap:12px}\n"] }]
10632
10803
  }], propDecorators: { props: [{
10633
10804
  type: Input
10634
10805
  }] } });
@@ -43901,5 +44072,5 @@ function buildFooterLinks(links, t, resolver) {
43901
44072
  * Generated bundle index. Do not edit.
43902
44073
  */
43903
44074
 
43904
- 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, CALLOUT_LABELS, 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, CookieBannerComponent, 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, GlassComponent, 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, UserAvatarComponent, 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, generateRandomTile, 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 };
44075
+ 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, CALLOUT_LABELS, 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, CookieBannerComponent, 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, GlassComponent, 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, PageLinksComponent, 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, UserAvatarComponent, 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, generateRandomTile, 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 };
43905
44076
  //# sourceMappingURL=valtech-components.mjs.map