valtech-components 2.0.877 → 2.0.878
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 +91 -33
- package/esm2022/lib/components/atoms/pattern/pattern.component.mjs +11 -8
- package/esm2022/lib/components/atoms/pattern/types.mjs +1 -1
- package/esm2022/lib/version.mjs +2 -2
- package/fesm2022/valtech-components.mjs +101 -40
- package/fesm2022/valtech-components.mjs.map +1 -1
- package/lib/components/atoms/pattern/motifs.d.ts +42 -19
- package/lib/components/atoms/pattern/pattern.component.d.ts +1 -3
- package/lib/components/atoms/pattern/types.d.ts +32 -14
- 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.878';
|
|
57
57
|
|
|
58
58
|
/**
|
|
59
59
|
* Servicio para gestionar presets de componentes.
|
|
@@ -6034,39 +6034,51 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
6034
6034
|
*
|
|
6035
6035
|
* Original spec: `assets/Valtech Pattern System.html` (single-page demo).
|
|
6036
6036
|
* Cada motif es función `(fill: string) => string` que devuelve SVG inner
|
|
6037
|
-
* markup. Tile es
|
|
6037
|
+
* markup. Tile es 100x100 unidades; el motif se renderiza dentro de un `<g
|
|
6038
6038
|
* transform="translate(col*100 row*100)">` con un `<rect width=100 height=100
|
|
6039
6039
|
* fill=bg/>` de fondo.
|
|
6040
6040
|
*/
|
|
6041
|
-
/**
|
|
6042
|
-
* Chevrons stroke-based con linecap/linejoin redondos — visualmente coherente
|
|
6043
|
-
* con el símbolo de marca Valtech (`>_`). Stroke-width 18 (default), 12 para
|
|
6044
|
-
* variants `small-*`.
|
|
6045
|
-
*/
|
|
6046
6041
|
const CHEV_STROKE = 18;
|
|
6047
6042
|
const CHEV_SMALL_STROKE = 12;
|
|
6048
6043
|
const chevStyle = (f, w = CHEV_STROKE) => `stroke="${f}" stroke-width="${w}" stroke-linecap="round" stroke-linejoin="round" fill="none"`;
|
|
6049
6044
|
const PATTERN_MOTIFS = {
|
|
6045
|
+
// ── Chevrons ────────────────────────────────────────────────
|
|
6050
6046
|
'chev-r': f => `<path d="M22 18 L72 50 L22 82" ${chevStyle(f)}/>`,
|
|
6051
6047
|
'chev-l': f => `<path d="M78 18 L28 50 L78 82" ${chevStyle(f)}/>`,
|
|
6052
6048
|
'chev-d': f => `<path d="M18 22 L50 72 L82 22" ${chevStyle(f)}/>`,
|
|
6053
6049
|
'chev-u': f => `<path d="M18 78 L50 28 L82 78" ${chevStyle(f)}/>`,
|
|
6054
|
-
'tri-tl': f => `<polygon points="0,0 100,0 0,100" fill="${f}"/>`,
|
|
6055
|
-
'tri-tr': f => `<polygon points="0,0 100,0 100,100" fill="${f}"/>`,
|
|
6056
|
-
'tri-bl': f => `<polygon points="0,0 100,100 0,100" fill="${f}"/>`,
|
|
6057
|
-
'tri-br': f => `<polygon points="100,0 100,100 0,100" fill="${f}"/>`,
|
|
6058
|
-
solid: () => ``,
|
|
6059
|
-
diamond: f => `<polygon points="50,12 88,50 50,88 12,50" fill="${f}"/>`,
|
|
6060
6050
|
'small-r': f => `<path d="M38 32 L62 50 L38 68" ${chevStyle(f, CHEV_SMALL_STROKE)}/>`,
|
|
6061
6051
|
'small-l': f => `<path d="M62 32 L38 50 L62 68" ${chevStyle(f, CHEV_SMALL_STROKE)}/>`,
|
|
6062
6052
|
'arrow-r': f => `<path d="M10 42 L60 42 L60 28 L92 50 L60 72 L60 58 L10 58 Z" fill="${f}"/>`,
|
|
6063
6053
|
'arrow-l': f => `<path d="M90 42 L40 42 L40 28 L8 50 L40 72 L40 58 L90 58 Z" fill="${f}"/>`,
|
|
6064
|
-
|
|
6054
|
+
// ── Strokes ─────────────────────────────────────────────────
|
|
6055
|
+
cross: f => `<path d="M50 12 L50 88 M12 50 L88 50" ${chevStyle(f, 16)}/>`,
|
|
6056
|
+
'x-mark': f => `<path d="M18 18 L82 82 M82 18 L18 82" ${chevStyle(f, 16)}/>`,
|
|
6057
|
+
'slash-r': f => `<line x1="18" y1="82" x2="82" y2="18" stroke="${f}" stroke-width="16" stroke-linecap="round"/>`,
|
|
6058
|
+
'slash-l': f => `<line x1="18" y1="18" x2="82" y2="82" stroke="${f}" stroke-width="16" stroke-linecap="round"/>`,
|
|
6059
|
+
// ── Filled shapes ───────────────────────────────────────────
|
|
6060
|
+
circle: f => `<circle cx="50" cy="50" r="40" fill="${f}"/>`,
|
|
6061
|
+
'circle-sm': f => `<circle cx="50" cy="50" r="24" fill="${f}"/>`,
|
|
6062
|
+
dot: f => `<circle cx="50" cy="50" r="12" fill="${f}"/>`,
|
|
6063
|
+
diamond: f => `<polygon points="50,12 88,50 50,88 12,50" fill="${f}"/>`,
|
|
6064
|
+
solid: () => ``,
|
|
6065
|
+
// ── Triangles & halves ──────────────────────────────────────
|
|
6066
|
+
'tri-tl': f => `<polygon points="0,0 100,0 0,100" fill="${f}"/>`,
|
|
6067
|
+
'tri-tr': f => `<polygon points="0,0 100,0 100,100" fill="${f}"/>`,
|
|
6068
|
+
'tri-bl': f => `<polygon points="0,0 100,100 0,100" fill="${f}"/>`,
|
|
6069
|
+
'tri-br': f => `<polygon points="100,0 100,100 0,100" fill="${f}"/>`,
|
|
6065
6070
|
'half-l': f => `<rect x="0" y="0" width="50" height="100" fill="${f}"/>`,
|
|
6066
6071
|
'half-t': f => `<rect x="0" y="0" width="100" height="50" fill="${f}"/>`,
|
|
6072
|
+
'house-d': f => `<polygon points="50,20 88,50 12,50" fill="${f}"/><rect x="28" y="50" width="44" height="32" fill="${f}"/>`,
|
|
6073
|
+
// ── Corner arcs ─────────────────────────────────────────────
|
|
6074
|
+
'corner-tl': f => `<path d="M 0 0 L 100 0 A 100 100 0 0 1 0 100 Z" fill="${f}"/>`,
|
|
6075
|
+
'corner-tr': f => `<path d="M 100 0 L 0 0 A 100 100 0 0 0 100 100 Z" fill="${f}"/>`,
|
|
6076
|
+
'corner-bl': f => `<path d="M 0 100 L 100 100 A 100 100 0 0 0 0 0 Z" fill="${f}"/>`,
|
|
6077
|
+
'corner-br': f => `<path d="M 100 100 L 0 100 A 100 100 0 0 1 100 0 Z" fill="${f}"/>`,
|
|
6067
6078
|
};
|
|
6068
6079
|
const MOTIF_KEYS = Object.keys(PATTERN_MOTIFS);
|
|
6069
|
-
|
|
6080
|
+
// ── Familias ─────────────────────────────────────────────────────────────────
|
|
6081
|
+
/** Chevron family — orientaciones + variantes pequeñas. */
|
|
6070
6082
|
const CHEV_KEYS = [
|
|
6071
6083
|
'chev-r',
|
|
6072
6084
|
'chev-l',
|
|
@@ -6077,6 +6089,12 @@ const CHEV_KEYS = [
|
|
|
6077
6089
|
'arrow-r',
|
|
6078
6090
|
'arrow-l',
|
|
6079
6091
|
];
|
|
6092
|
+
/** Stroke family — líneas y cruces (complementan chevrons). */
|
|
6093
|
+
const STROKE_KEYS = ['cross', 'x-mark', 'slash-r', 'slash-l'];
|
|
6094
|
+
/** Circle / dot family — formas curvas centradas. */
|
|
6095
|
+
const CIRCLE_KEYS = ['circle', 'circle-sm', 'dot'];
|
|
6096
|
+
/** Diamond solo — forma geométrica angular centrada. */
|
|
6097
|
+
const SHAPE_KEYS = ['diamond'];
|
|
6080
6098
|
/** Triangle / half-fill family. */
|
|
6081
6099
|
const TRI_KEYS = [
|
|
6082
6100
|
'tri-tl',
|
|
@@ -6087,9 +6105,9 @@ const TRI_KEYS = [
|
|
|
6087
6105
|
'half-t',
|
|
6088
6106
|
'house-d',
|
|
6089
6107
|
];
|
|
6090
|
-
/**
|
|
6091
|
-
const
|
|
6092
|
-
/** No-foreground tiles — solo
|
|
6108
|
+
/** Corner arc family — mezcla suave con triangles. */
|
|
6109
|
+
const CORNER_KEYS = ['corner-tl', 'corner-tr', 'corner-bl', 'corner-br'];
|
|
6110
|
+
/** No-foreground tiles — solo rect de fondo. */
|
|
6093
6111
|
const SOLID_KEYS = ['solid'];
|
|
6094
6112
|
const PATTERN_PALETTES = {
|
|
6095
6113
|
purple: ['#0e0420', '#2a1158', '#4a1d96', '#7026df', '#9156e8', '#b48eea', '#d9c3f5', '#ebdcfd'],
|
|
@@ -6104,10 +6122,32 @@ const PATTERN_PALETTES = {
|
|
|
6104
6122
|
'#dccef5',
|
|
6105
6123
|
'#f0e6fc',
|
|
6106
6124
|
],
|
|
6125
|
+
midnight: [
|
|
6126
|
+
'#020814',
|
|
6127
|
+
'#071428',
|
|
6128
|
+
'#0d2248',
|
|
6129
|
+
'#1a3a6e',
|
|
6130
|
+
'#2656a8',
|
|
6131
|
+
'#4d82d4',
|
|
6132
|
+
'#8ab4eb',
|
|
6133
|
+
'#c5d9f5',
|
|
6134
|
+
],
|
|
6135
|
+
ember: ['#120200', '#2e0800', '#6b1a00', '#b83200', '#e85a10', '#f59042', '#f9c48a', '#fde8cc'],
|
|
6136
|
+
forest: ['#010a04', '#052010', '#0a4020', '#0f6635', '#18a058', '#3ece80', '#86e8b4', '#c4f5dc'],
|
|
6137
|
+
rose: ['#12010a', '#2e0420', '#6b0a48', '#b01870', '#e040a0', '#f080c8', '#f8bce4', '#fde0f3'],
|
|
6138
|
+
gold: ['#100800', '#2a1a00', '#5c3800', '#9e6000', '#d4920a', '#f0bc40', '#f8da8c', '#fdf0cc'],
|
|
6139
|
+
mono: ['#080808', '#1a1a1a', '#303030', '#484848', '#707070', '#9e9e9e', '#cecece', '#f0f0f0'],
|
|
6140
|
+
};
|
|
6141
|
+
const PATTERN_STYLE_CONFIGS = {
|
|
6142
|
+
branded: { chev: 0.6, stroke: 0.08, circle: 0.04, shape: 0.06, solid: 0.18 },
|
|
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.42, stroke: 0.14, circle: 0.12, shape: 0.1, solid: 0.08 },
|
|
6107
6146
|
};
|
|
6147
|
+
// ── RNG ──────────────────────────────────────────────────────────────────────
|
|
6108
6148
|
/**
|
|
6109
6149
|
* Mulberry32 seeded RNG — devuelve función `()=>[0,1)`.
|
|
6110
|
-
* Deterministic: mismo seed → misma secuencia.
|
|
6150
|
+
* Deterministic: mismo seed → misma secuencia.
|
|
6111
6151
|
*/
|
|
6112
6152
|
function mulberry32(seed) {
|
|
6113
6153
|
return function () {
|
|
@@ -6118,22 +6158,40 @@ function mulberry32(seed) {
|
|
|
6118
6158
|
return ((t ^ (t >>> 14)) >>> 0) / 4294967296;
|
|
6119
6159
|
};
|
|
6120
6160
|
}
|
|
6161
|
+
function pickFrom(arr, rng) {
|
|
6162
|
+
return arr[Math.floor(rng() * arr.length)];
|
|
6163
|
+
}
|
|
6121
6164
|
/**
|
|
6122
|
-
* Genera UN tile
|
|
6123
|
-
*
|
|
6124
|
-
* tiles en `val-pattern` sin regenerar la grid completa.
|
|
6165
|
+
* Genera UN tile respetando densidades de familia + contraste de palette.
|
|
6166
|
+
* Acepta un config opcional de densidades (de PatternStyleKey o chevronDensity legacy).
|
|
6125
6167
|
*/
|
|
6126
|
-
function generateRandomTile(palette, chevronDensity = 0.55, rng = Math.random) {
|
|
6168
|
+
function generateRandomTile(palette, chevronDensity = 0.55, rng = Math.random, densityConfig) {
|
|
6169
|
+
const cfg = densityConfig ?? {
|
|
6170
|
+
chev: chevronDensity,
|
|
6171
|
+
stroke: 0.08,
|
|
6172
|
+
circle: 0.05,
|
|
6173
|
+
shape: 0.07,
|
|
6174
|
+
solid: 0.2,
|
|
6175
|
+
};
|
|
6127
6176
|
const roll = rng();
|
|
6128
6177
|
let key;
|
|
6129
|
-
|
|
6130
|
-
|
|
6131
|
-
|
|
6132
|
-
|
|
6133
|
-
|
|
6134
|
-
|
|
6178
|
+
const t1 = cfg.chev;
|
|
6179
|
+
const t2 = t1 + cfg.stroke;
|
|
6180
|
+
const t3 = t2 + cfg.circle;
|
|
6181
|
+
const t4 = t3 + cfg.shape;
|
|
6182
|
+
const t5 = t4 + cfg.solid;
|
|
6183
|
+
if (roll < t1)
|
|
6184
|
+
key = pickFrom(CHEV_KEYS, rng);
|
|
6185
|
+
else if (roll < t2)
|
|
6186
|
+
key = pickFrom(STROKE_KEYS, rng);
|
|
6187
|
+
else if (roll < t3)
|
|
6188
|
+
key = pickFrom(CIRCLE_KEYS, rng);
|
|
6189
|
+
else if (roll < t4)
|
|
6190
|
+
key = pickFrom(SHAPE_KEYS, rng);
|
|
6191
|
+
else if (roll < t5)
|
|
6192
|
+
key = pickFrom(SOLID_KEYS, rng);
|
|
6135
6193
|
else
|
|
6136
|
-
key = TRI_KEYS
|
|
6194
|
+
key = pickFrom([...TRI_KEYS, ...CORNER_KEYS], rng);
|
|
6137
6195
|
const bgIdx = Math.floor(rng() * palette.length);
|
|
6138
6196
|
let fgIdx = Math.floor(rng() * palette.length);
|
|
6139
6197
|
let tries = 0;
|
|
@@ -6143,20 +6201,20 @@ function generateRandomTile(palette, chevronDensity = 0.55, rng = Math.random) {
|
|
|
6143
6201
|
}
|
|
6144
6202
|
return { motif: key, bg: palette[bgIdx], fg: palette[fgIdx] };
|
|
6145
6203
|
}
|
|
6146
|
-
/** Genera matriz de tiles
|
|
6204
|
+
/** Genera matriz completa de tiles. */
|
|
6147
6205
|
function generatePatternTiles(cfg) {
|
|
6148
6206
|
const { cols, rows, seed, palette } = cfg;
|
|
6149
6207
|
const chevronDensity = cfg.chevronDensity ?? 0.55;
|
|
6208
|
+
const densityConfig = cfg.style ? PATTERN_STYLE_CONFIGS[cfg.style] : undefined;
|
|
6150
6209
|
const r = mulberry32(seed);
|
|
6151
6210
|
const tiles = [];
|
|
6152
6211
|
for (let i = 0; i < cols * rows; i++) {
|
|
6153
|
-
tiles.push(generateRandomTile(palette, chevronDensity, r));
|
|
6212
|
+
tiles.push(generateRandomTile(palette, chevronDensity, r, densityConfig));
|
|
6154
6213
|
}
|
|
6155
6214
|
return tiles;
|
|
6156
6215
|
}
|
|
6157
6216
|
/**
|
|
6158
6217
|
* Renderiza el inner SVG (sin el `<svg>` root) para una matriz de tiles.
|
|
6159
|
-
* Caller wraps en `<svg viewBox="0 0 {cols*100} {rows*100}" preserveAspectRatio="xMidYMid slice">`.
|
|
6160
6218
|
*/
|
|
6161
6219
|
function renderPatternSvgInner(tiles, cols, baseColor) {
|
|
6162
6220
|
const W = cols * 100;
|
|
@@ -6202,7 +6260,6 @@ function renderPatternSvgInner(tiles, cols, baseColor) {
|
|
|
6202
6260
|
* ```
|
|
6203
6261
|
*/
|
|
6204
6262
|
class PatternComponent {
|
|
6205
|
-
/** Object-first input. Cambios disparan re-render por signals. */
|
|
6206
6263
|
set props(value) {
|
|
6207
6264
|
if (!value)
|
|
6208
6265
|
return;
|
|
@@ -6212,7 +6269,9 @@ class PatternComponent {
|
|
|
6212
6269
|
this.rows.set(Math.max(1, value.rows));
|
|
6213
6270
|
if (value.seed !== undefined)
|
|
6214
6271
|
this.seed.set(value.seed);
|
|
6215
|
-
if (value.
|
|
6272
|
+
if (value.style !== undefined)
|
|
6273
|
+
this.patternStyle.set(value.style);
|
|
6274
|
+
if (value.chevronDensity !== undefined && value.style === undefined) {
|
|
6216
6275
|
this.chevronDensity.set(Math.min(1, Math.max(0, value.chevronDensity)));
|
|
6217
6276
|
}
|
|
6218
6277
|
if (value.preserveAspect !== undefined)
|
|
@@ -6236,11 +6295,10 @@ class PatternComponent {
|
|
|
6236
6295
|
this.seed = signal(this.randomSeed());
|
|
6237
6296
|
this.paletteRef = signal(PATTERN_PALETTES.purple);
|
|
6238
6297
|
this.chevronDensity = signal(0.55);
|
|
6298
|
+
this.patternStyle = signal(undefined);
|
|
6239
6299
|
this.preserveAspect = signal('slice');
|
|
6240
6300
|
this.animated = signal(false);
|
|
6241
|
-
/** ms entre reshuffles (modo animated). Default 8000ms — "de vez en cuando". */
|
|
6242
6301
|
this.reshuffleInterval = signal(8000);
|
|
6243
|
-
/** Tiles a cambiar por tick. 0 → reseed grid completo (default). >0 → staggered. */
|
|
6244
6302
|
this.tilesPerTick = signal(0);
|
|
6245
6303
|
/**
|
|
6246
6304
|
* Tiles signal — mutable. Se regenera completa cuando cambia seed/cols/rows/
|
|
@@ -6273,7 +6331,8 @@ class PatternComponent {
|
|
|
6273
6331
|
const seed = this.seed();
|
|
6274
6332
|
const palette = this.paletteRef();
|
|
6275
6333
|
const density = this.chevronDensity();
|
|
6276
|
-
this.
|
|
6334
|
+
const style = this.patternStyle();
|
|
6335
|
+
this.tiles.set(generatePatternTiles({ cols, rows, seed, palette, chevronDensity: density, style }));
|
|
6277
6336
|
}, { allowSignalWrites: true });
|
|
6278
6337
|
// Modo animated: cada `reshuffleInterval` ms regenera el grid completo
|
|
6279
6338
|
// con un seed nuevo. Visualmente: el patrón cambia de vez en cuando.
|
|
@@ -6315,9 +6374,11 @@ class PatternComponent {
|
|
|
6315
6374
|
const next = [...current];
|
|
6316
6375
|
const palette = this.paletteRef();
|
|
6317
6376
|
const density = this.chevronDensity();
|
|
6377
|
+
const style = this.patternStyle();
|
|
6378
|
+
const densityConfig = style ? PATTERN_STYLE_CONFIGS[style] : undefined;
|
|
6318
6379
|
for (let n = 0; n < count; n++) {
|
|
6319
6380
|
const idx = Math.floor(Math.random() * next.length);
|
|
6320
|
-
next[idx] = generateRandomTile(palette, density);
|
|
6381
|
+
next[idx] = generateRandomTile(palette, density, Math.random, densityConfig);
|
|
6321
6382
|
}
|
|
6322
6383
|
this.tiles.set(next);
|
|
6323
6384
|
}
|
|
@@ -48738,5 +48799,5 @@ function buildFooterLinks(links, t, resolver) {
|
|
|
48738
48799
|
* Generated bundle index. Do not edit.
|
|
48739
48800
|
*/
|
|
48740
48801
|
|
|
48741
|
-
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, COMMON_COUNTRY_CODES, COMMON_CURRENCIES, 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, 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, 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 };
|
|
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 };
|
|
48742
48803
|
//# sourceMappingURL=valtech-components.mjs.map
|