valtech-components 2.0.878 → 2.0.880
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2022/lib/components/atoms/pattern/motifs.mjs +62 -9
- package/esm2022/lib/components/atoms/pattern/pattern.component.mjs +12 -3
- package/esm2022/lib/components/atoms/pattern/types.mjs +1 -1
- package/esm2022/lib/version.mjs +2 -2
- package/fesm2022/valtech-components.mjs +74 -12
- package/fesm2022/valtech-components.mjs.map +1 -1
- package/lib/components/atoms/pattern/motifs.d.ts +13 -5
- package/lib/components/atoms/pattern/pattern.component.d.ts +1 -0
- package/lib/components/atoms/pattern/types.d.ts +9 -1
- package/lib/version.d.ts +1 -1
- package/package.json +1 -1
|
@@ -53,7 +53,7 @@ import 'prismjs/components/prism-json';
|
|
|
53
53
|
* Current version of valtech-components.
|
|
54
54
|
* This is automatically updated during the publish process.
|
|
55
55
|
*/
|
|
56
|
-
const VERSION = '2.0.
|
|
56
|
+
const VERSION = '2.0.880';
|
|
57
57
|
|
|
58
58
|
/**
|
|
59
59
|
* Servicio para gestionar presets de componentes.
|
|
@@ -6075,6 +6075,19 @@ const PATTERN_MOTIFS = {
|
|
|
6075
6075
|
'corner-tr': f => `<path d="M 100 0 L 0 0 A 100 100 0 0 0 100 100 Z" fill="${f}"/>`,
|
|
6076
6076
|
'corner-bl': f => `<path d="M 0 100 L 100 100 A 100 100 0 0 0 0 0 Z" fill="${f}"/>`,
|
|
6077
6077
|
'corner-br': f => `<path d="M 100 100 L 0 100 A 100 100 0 0 1 100 0 Z" fill="${f}"/>`,
|
|
6078
|
+
// ── Logo symbol ──────────────────────────────────────────────
|
|
6079
|
+
underscore: f => `<rect x="14" y="72" width="72" height="14" rx="5" fill="${f}"/>`,
|
|
6080
|
+
// ── Números — monospace bold, baseline centrada en tile 100x100 ──
|
|
6081
|
+
'num-0': f => `<text x="50" y="76" font-size="68" font-weight="800" font-family="ui-monospace,'Courier New',monospace" text-anchor="middle" fill="${f}">0</text>`,
|
|
6082
|
+
'num-1': f => `<text x="50" y="76" font-size="68" font-weight="800" font-family="ui-monospace,'Courier New',monospace" text-anchor="middle" fill="${f}">1</text>`,
|
|
6083
|
+
'num-2': f => `<text x="50" y="76" font-size="68" font-weight="800" font-family="ui-monospace,'Courier New',monospace" text-anchor="middle" fill="${f}">2</text>`,
|
|
6084
|
+
'num-3': f => `<text x="50" y="76" font-size="68" font-weight="800" font-family="ui-monospace,'Courier New',monospace" text-anchor="middle" fill="${f}">3</text>`,
|
|
6085
|
+
'num-4': f => `<text x="50" y="76" font-size="68" font-weight="800" font-family="ui-monospace,'Courier New',monospace" text-anchor="middle" fill="${f}">4</text>`,
|
|
6086
|
+
'num-5': f => `<text x="50" y="76" font-size="68" font-weight="800" font-family="ui-monospace,'Courier New',monospace" text-anchor="middle" fill="${f}">5</text>`,
|
|
6087
|
+
'num-6': f => `<text x="50" y="76" font-size="68" font-weight="800" font-family="ui-monospace,'Courier New',monospace" text-anchor="middle" fill="${f}">6</text>`,
|
|
6088
|
+
'num-7': f => `<text x="50" y="76" font-size="68" font-weight="800" font-family="ui-monospace,'Courier New',monospace" text-anchor="middle" fill="${f}">7</text>`,
|
|
6089
|
+
'num-8': f => `<text x="50" y="76" font-size="68" font-weight="800" font-family="ui-monospace,'Courier New',monospace" text-anchor="middle" fill="${f}">8</text>`,
|
|
6090
|
+
'num-9': f => `<text x="50" y="76" font-size="68" font-weight="800" font-family="ui-monospace,'Courier New',monospace" text-anchor="middle" fill="${f}">9</text>`,
|
|
6078
6091
|
};
|
|
6079
6092
|
const MOTIF_KEYS = Object.keys(PATTERN_MOTIFS);
|
|
6080
6093
|
// ── Familias ─────────────────────────────────────────────────────────────────
|
|
@@ -6089,8 +6102,27 @@ const CHEV_KEYS = [
|
|
|
6089
6102
|
'arrow-r',
|
|
6090
6103
|
'arrow-l',
|
|
6091
6104
|
];
|
|
6092
|
-
/** Stroke family — líneas y
|
|
6093
|
-
const STROKE_KEYS = [
|
|
6105
|
+
/** Stroke family — líneas, cruces y el guión bajo del logo `>_`. */
|
|
6106
|
+
const STROKE_KEYS = [
|
|
6107
|
+
'cross',
|
|
6108
|
+
'x-mark',
|
|
6109
|
+
'slash-r',
|
|
6110
|
+
'slash-l',
|
|
6111
|
+
'underscore',
|
|
6112
|
+
];
|
|
6113
|
+
/** Numeric family — dígitos 0-9 en monospace bold. */
|
|
6114
|
+
const NUM_KEYS = [
|
|
6115
|
+
'num-0',
|
|
6116
|
+
'num-1',
|
|
6117
|
+
'num-2',
|
|
6118
|
+
'num-3',
|
|
6119
|
+
'num-4',
|
|
6120
|
+
'num-5',
|
|
6121
|
+
'num-6',
|
|
6122
|
+
'num-7',
|
|
6123
|
+
'num-8',
|
|
6124
|
+
'num-9',
|
|
6125
|
+
];
|
|
6094
6126
|
/** Circle / dot family — formas curvas centradas. */
|
|
6095
6127
|
const CIRCLE_KEYS = ['circle', 'circle-sm', 'dot'];
|
|
6096
6128
|
/** Diamond solo — forma geométrica angular centrada. */
|
|
@@ -6137,12 +6169,24 @@ const PATTERN_PALETTES = {
|
|
|
6137
6169
|
rose: ['#12010a', '#2e0420', '#6b0a48', '#b01870', '#e040a0', '#f080c8', '#f8bce4', '#fde0f3'],
|
|
6138
6170
|
gold: ['#100800', '#2a1a00', '#5c3800', '#9e6000', '#d4920a', '#f0bc40', '#f8da8c', '#fdf0cc'],
|
|
6139
6171
|
mono: ['#080808', '#1a1a1a', '#303030', '#484848', '#707070', '#9e9e9e', '#cecece', '#f0f0f0'],
|
|
6172
|
+
// ── Paletas brand Valtech ──────────────────────────────────────────────────
|
|
6173
|
+
// deep teal → bright cyan
|
|
6174
|
+
teal: ['#011a16', '#022e28', '#045042', '#077a64', '#0aa88c', '#2ecfb0', '#7aead8', '#c0f7ef'],
|
|
6175
|
+
// navy profundo → azul cielo
|
|
6176
|
+
ocean: ['#010c18', '#021a30', '#043060', '#0a5090', '#1478c0', '#3a9fdd', '#85ccee', '#c8e9f8'],
|
|
6177
|
+
// violeta ultrabrillante (más vívido que purple, más eléctrico)
|
|
6178
|
+
violet: ['#0d0025', '#1e0050', '#400090', '#6600cc', '#8c2af2', '#b06af8', '#d4a8fc', '#ecd8fe'],
|
|
6179
|
+
// crepúsculo purple-blue (dusk — mezcla atmosférica)
|
|
6180
|
+
dusk: ['#08051e', '#130a40', '#221880', '#3828b4', '#5548d8', '#8080e8', '#b4b4f4', '#ddddfb'],
|
|
6181
|
+
// gris-azul corporativo frío (slate — tech neutral)
|
|
6182
|
+
slate: ['#060c14', '#0e1e30', '#1c3550', '#2c5070', '#4278a0', '#6aa0c8', '#a4c6e4', '#d4e8f6'],
|
|
6140
6183
|
};
|
|
6141
6184
|
const PATTERN_STYLE_CONFIGS = {
|
|
6142
|
-
branded: { chev: 0.
|
|
6143
|
-
geometric: { chev: 0.15, stroke: 0.05, circle: 0.18, shape: 0.14, solid: 0.1 },
|
|
6144
|
-
minimal: { chev: 0.25, stroke: 0.1, circle: 0.12, shape: 0.04, solid: 0.38 },
|
|
6145
|
-
dense: { chev: 0.
|
|
6185
|
+
branded: { chev: 0.58, stroke: 0.1, circle: 0.04, shape: 0.06, solid: 0.18, num: 0.0 },
|
|
6186
|
+
geometric: { chev: 0.15, stroke: 0.05, circle: 0.18, shape: 0.14, solid: 0.1, num: 0.0 },
|
|
6187
|
+
minimal: { chev: 0.25, stroke: 0.1, circle: 0.12, shape: 0.04, solid: 0.38, num: 0.0 },
|
|
6188
|
+
dense: { chev: 0.4, stroke: 0.14, circle: 0.12, shape: 0.1, solid: 0.08, num: 0.02 },
|
|
6189
|
+
code: { chev: 0.35, stroke: 0.18, circle: 0.02, shape: 0.02, solid: 0.12, num: 0.2 },
|
|
6146
6190
|
};
|
|
6147
6191
|
// ── RNG ──────────────────────────────────────────────────────────────────────
|
|
6148
6192
|
/**
|
|
@@ -6180,6 +6224,7 @@ function generateRandomTile(palette, chevronDensity = 0.55, rng = Math.random, d
|
|
|
6180
6224
|
const t3 = t2 + cfg.circle;
|
|
6181
6225
|
const t4 = t3 + cfg.shape;
|
|
6182
6226
|
const t5 = t4 + cfg.solid;
|
|
6227
|
+
const t6 = t5 + (cfg.num ?? 0);
|
|
6183
6228
|
if (roll < t1)
|
|
6184
6229
|
key = pickFrom(CHEV_KEYS, rng);
|
|
6185
6230
|
else if (roll < t2)
|
|
@@ -6190,6 +6235,8 @@ function generateRandomTile(palette, chevronDensity = 0.55, rng = Math.random, d
|
|
|
6190
6235
|
key = pickFrom(SHAPE_KEYS, rng);
|
|
6191
6236
|
else if (roll < t5)
|
|
6192
6237
|
key = pickFrom(SOLID_KEYS, rng);
|
|
6238
|
+
else if (roll < t6)
|
|
6239
|
+
key = pickFrom(NUM_KEYS, rng);
|
|
6193
6240
|
else
|
|
6194
6241
|
key = pickFrom([...TRI_KEYS, ...CORNER_KEYS], rng);
|
|
6195
6242
|
const bgIdx = Math.floor(rng() * palette.length);
|
|
@@ -6201,6 +6248,7 @@ function generateRandomTile(palette, chevronDensity = 0.55, rng = Math.random, d
|
|
|
6201
6248
|
}
|
|
6202
6249
|
return { motif: key, bg: palette[bgIdx], fg: palette[fgIdx] };
|
|
6203
6250
|
}
|
|
6251
|
+
const ROTATIONS = [0, 90, 180, 270];
|
|
6204
6252
|
/** Genera matriz completa de tiles. */
|
|
6205
6253
|
function generatePatternTiles(cfg) {
|
|
6206
6254
|
const { cols, rows, seed, palette } = cfg;
|
|
@@ -6209,7 +6257,11 @@ function generatePatternTiles(cfg) {
|
|
|
6209
6257
|
const r = mulberry32(seed);
|
|
6210
6258
|
const tiles = [];
|
|
6211
6259
|
for (let i = 0; i < cols * rows; i++) {
|
|
6212
|
-
|
|
6260
|
+
const tile = generateRandomTile(palette, chevronDensity, r, densityConfig);
|
|
6261
|
+
if (cfg.tileRotation) {
|
|
6262
|
+
tile.rot = ROTATIONS[Math.floor(r() * 4)];
|
|
6263
|
+
}
|
|
6264
|
+
tiles.push(tile);
|
|
6213
6265
|
}
|
|
6214
6266
|
return tiles;
|
|
6215
6267
|
}
|
|
@@ -6226,7 +6278,8 @@ function renderPatternSvgInner(tiles, cols, baseColor) {
|
|
|
6226
6278
|
const r = Math.floor(i / cols);
|
|
6227
6279
|
const t = tiles[i];
|
|
6228
6280
|
const shape = PATTERN_MOTIFS[t.motif](t.fg);
|
|
6229
|
-
|
|
6281
|
+
const shapeEl = t.rot ? `<g transform="rotate(${t.rot} 50 50)">${shape}</g>` : shape;
|
|
6282
|
+
inner += `<g transform="translate(${c * 100} ${r * 100})"><rect width="100" height="100" fill="${t.bg}"/>${shapeEl}</g>`;
|
|
6230
6283
|
}
|
|
6231
6284
|
return inner;
|
|
6232
6285
|
}
|
|
@@ -6287,6 +6340,8 @@ class PatternComponent {
|
|
|
6287
6340
|
}
|
|
6288
6341
|
if (value.animated !== undefined)
|
|
6289
6342
|
this.animated.set(!!value.animated);
|
|
6343
|
+
if (value.tileRotation !== undefined)
|
|
6344
|
+
this.tileRotation.set(!!value.tileRotation);
|
|
6290
6345
|
}
|
|
6291
6346
|
constructor() {
|
|
6292
6347
|
this.sanitizer = inject(DomSanitizer);
|
|
@@ -6300,6 +6355,7 @@ class PatternComponent {
|
|
|
6300
6355
|
this.animated = signal(false);
|
|
6301
6356
|
this.reshuffleInterval = signal(8000);
|
|
6302
6357
|
this.tilesPerTick = signal(0);
|
|
6358
|
+
this.tileRotation = signal(false);
|
|
6303
6359
|
/**
|
|
6304
6360
|
* Tiles signal — mutable. Se regenera completa cuando cambia seed/cols/rows/
|
|
6305
6361
|
* palette/density. En modo animated, tiles individuales se sobrescriben sin
|
|
@@ -6332,7 +6388,8 @@ class PatternComponent {
|
|
|
6332
6388
|
const palette = this.paletteRef();
|
|
6333
6389
|
const density = this.chevronDensity();
|
|
6334
6390
|
const style = this.patternStyle();
|
|
6335
|
-
this.
|
|
6391
|
+
const tileRotation = this.tileRotation();
|
|
6392
|
+
this.tiles.set(generatePatternTiles({ cols, rows, seed, palette, chevronDensity: density, style, tileRotation }));
|
|
6336
6393
|
}, { allowSignalWrites: true });
|
|
6337
6394
|
// Modo animated: cada `reshuffleInterval` ms regenera el grid completo
|
|
6338
6395
|
// con un seed nuevo. Visualmente: el patrón cambia de vez en cuando.
|
|
@@ -6376,9 +6433,14 @@ class PatternComponent {
|
|
|
6376
6433
|
const density = this.chevronDensity();
|
|
6377
6434
|
const style = this.patternStyle();
|
|
6378
6435
|
const densityConfig = style ? PATTERN_STYLE_CONFIGS[style] : undefined;
|
|
6436
|
+
const rotate = this.tileRotation();
|
|
6437
|
+
const ROTS = [0, 90, 180, 270];
|
|
6379
6438
|
for (let n = 0; n < count; n++) {
|
|
6380
6439
|
const idx = Math.floor(Math.random() * next.length);
|
|
6381
|
-
|
|
6440
|
+
const tile = generateRandomTile(palette, density, Math.random, densityConfig);
|
|
6441
|
+
if (rotate)
|
|
6442
|
+
tile.rot = ROTS[Math.floor(Math.random() * 4)];
|
|
6443
|
+
next[idx] = tile;
|
|
6382
6444
|
}
|
|
6383
6445
|
this.tiles.set(next);
|
|
6384
6446
|
}
|
|
@@ -48799,5 +48861,5 @@ function buildFooterLinks(links, t, resolver) {
|
|
|
48799
48861
|
* Generated bundle index. Do not edit.
|
|
48800
48862
|
*/
|
|
48801
48863
|
|
|
48802
|
-
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, AnimatedTerminalComponent, AppConfigService, AppVersionService, ArticleBuilder, ArticleComponent, AttachmentUploaderComponent, AuthBackgroundComponent, 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, CORNER_KEYS, CURRENCY_INFO, CardComponent, CardSection, CardType, CardsCarouselComponent, ChangePasswordModalComponent, 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_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, FabComponent, FaqComponent, 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, LandingSplitComponent, LandingStepsComponent, LanguageSelectorComponent, LayeredCardComponent, LegalContentService, LegalLinkService, LinkComponent, LinkProcessorService, LinkedProvidersComponent, LinksAccordionComponent, LinksCakeComponent, ListSkeletonComponent, LoadingDirective, LocalStorageService, LocaleService, LoginComponent, MODAL_SIZES, MOTIF_KEYS, MOTION, MaintenancePageComponent, MarkdownArticleParserService, MenuComponent, MessagingService, MetaService, MfaModalComponent, ModalService, ModalShellComponent, MultiSelectSearchComponent, NavigationService, NetworkBannerComponent, NetworkStatusService, NewsBuilder, NoContentComponent, NotesBoxComponent, NotificationActionService, NotificationsService, NumberFromToComponent, NumberInputComponent, NumberStepperComponent, OAUTH_PROVIDERS_INFO, OAuthCallbackComponent, OAuthService, OrgSwitchService, OutlineDefault, OutlineDefaultBlock, OutlineDefaultFull, OutlineDefaultRound, OutlineDefaultRoundBlock, OutlineDefaultRoundFull, PATTERN_MOTIFS, PATTERN_PALETTES, PATTERN_STYLE_CONFIGS, PLATFORM_CONFIGS, PageContentComponent, PageLinksComponent, PageRefreshService, 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_LAYOUT_DEFAULT_ROWS, SKELETON_PRESETS, SOLID_KEYS, STROKE_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, SkeletonLayoutComponent, SkeletonService, SolidBlockButton, SolidDefault, SolidDefaultBlock, SolidDefaultButton, SolidDefaultFull, SolidDefaultRound, SolidDefaultRoundBlock, SolidDefaultRoundButton, SolidDefaultRoundFull, SolidFullButton, SolidLargeButton, SolidLargeRoundButton, SolidSmallButton, SolidSmallRoundButton, SplashScreenService, 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_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_SOCIAL_LINKS, VALTECH_SPLASH_SCREEN, VERSION, ValtechErrorService, WizardComponent, WizardFooterComponent, applyDefaultValueToControl, authGuard, authInterceptor, 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, provideValtechDebugConsole, provideValtechDonations, provideValtechErrorHandling, provideValtechFeedback, provideValtechFirebase, provideValtechI18n, provideValtechLegal, provideValtechPresets, provideValtechSkeleton, query, renderPatternSvgInner, replaceSpecialChars, resolveColor, resolveInputDefaultValue, roleGuard, storagePaths, superAdminGuard, toArticle };
|
|
48864
|
+
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, AnimatedTerminalComponent, AppConfigService, AppVersionService, ArticleBuilder, ArticleComponent, AttachmentUploaderComponent, AuthBackgroundComponent, 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, CORNER_KEYS, CURRENCY_INFO, CardComponent, CardSection, CardType, CardsCarouselComponent, ChangePasswordModalComponent, 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_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, FabComponent, FaqComponent, 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, LandingSplitComponent, LandingStepsComponent, LanguageSelectorComponent, LayeredCardComponent, LegalContentService, LegalLinkService, LinkComponent, LinkProcessorService, LinkedProvidersComponent, LinksAccordionComponent, LinksCakeComponent, ListSkeletonComponent, LoadingDirective, LocalStorageService, LocaleService, LoginComponent, MODAL_SIZES, MOTIF_KEYS, MOTION, MaintenancePageComponent, MarkdownArticleParserService, MenuComponent, MessagingService, MetaService, MfaModalComponent, ModalService, ModalShellComponent, MultiSelectSearchComponent, NUM_KEYS, NavigationService, NetworkBannerComponent, NetworkStatusService, NewsBuilder, NoContentComponent, NotesBoxComponent, NotificationActionService, NotificationsService, NumberFromToComponent, NumberInputComponent, NumberStepperComponent, OAUTH_PROVIDERS_INFO, OAuthCallbackComponent, OAuthService, OrgSwitchService, OutlineDefault, OutlineDefaultBlock, OutlineDefaultFull, OutlineDefaultRound, OutlineDefaultRoundBlock, OutlineDefaultRoundFull, PATTERN_MOTIFS, PATTERN_PALETTES, PATTERN_STYLE_CONFIGS, PLATFORM_CONFIGS, PageContentComponent, PageLinksComponent, PageRefreshService, 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_LAYOUT_DEFAULT_ROWS, SKELETON_PRESETS, SOLID_KEYS, STROKE_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, SkeletonLayoutComponent, SkeletonService, SolidBlockButton, SolidDefault, SolidDefaultBlock, SolidDefaultButton, SolidDefaultFull, SolidDefaultRound, SolidDefaultRoundBlock, SolidDefaultRoundButton, SolidDefaultRoundFull, SolidFullButton, SolidLargeButton, SolidLargeRoundButton, SolidSmallButton, SolidSmallRoundButton, SplashScreenService, 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_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_SOCIAL_LINKS, VALTECH_SPLASH_SCREEN, VERSION, ValtechErrorService, WizardComponent, WizardFooterComponent, applyDefaultValueToControl, authGuard, authInterceptor, 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, provideValtechDebugConsole, provideValtechDonations, provideValtechErrorHandling, provideValtechFeedback, provideValtechFirebase, provideValtechI18n, provideValtechLegal, provideValtechPresets, provideValtechSkeleton, query, renderPatternSvgInner, replaceSpecialChars, resolveColor, resolveInputDefaultValue, roleGuard, storagePaths, superAdminGuard, toArticle };
|
|
48803
48865
|
//# sourceMappingURL=valtech-components.mjs.map
|