valtech-components 2.0.780 → 2.0.781
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/user-avatar/user-avatar.component.mjs +63 -16
- package/esm2022/lib/services/markdown-article/markdown-article-parser.mjs +52 -18
- package/esm2022/lib/version.mjs +2 -2
- package/fesm2022/valtech-components.mjs +115 -34
- package/fesm2022/valtech-components.mjs.map +1 -1
- package/lib/components/atoms/user-avatar/user-avatar.component.d.ts +7 -2
- package/lib/services/markdown-article/markdown-article-parser.d.ts +23 -1
- package/lib/version.d.ts +1 -1
- package/package.json +1 -1
|
@@ -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.
|
|
55
|
+
const VERSION = '2.0.781';
|
|
56
56
|
|
|
57
57
|
/**
|
|
58
58
|
* Servicio para gestionar presets de componentes.
|
|
@@ -6290,6 +6290,8 @@ class UserAvatarComponent {
|
|
|
6290
6290
|
constructor() {
|
|
6291
6291
|
this.props_ = signal({});
|
|
6292
6292
|
this.imageFailed = signal(false);
|
|
6293
|
+
/** Indica si el `<img>` actual disparó su evento `load`. Conduce el fade-in. */
|
|
6294
|
+
this.imageLoaded = signal(false);
|
|
6293
6295
|
this.onClick = new EventEmitter();
|
|
6294
6296
|
this.resolvedProps = computed(() => this.props_());
|
|
6295
6297
|
/** Resuelve los campos del user (user prop > campos sueltos). */
|
|
@@ -6301,9 +6303,16 @@ class UserAvatarComponent {
|
|
|
6301
6303
|
avatarUrl: p.user?.avatarUrl?.trim() || p.avatarUrl?.trim() || '',
|
|
6302
6304
|
};
|
|
6303
6305
|
});
|
|
6304
|
-
/**
|
|
6305
|
-
|
|
6306
|
-
|
|
6306
|
+
/**
|
|
6307
|
+
* URL de imagen. Empty si la última carga falló — eso evita re-intentar
|
|
6308
|
+
* con la misma URL cuando el browser ya marcó error. El placeholder
|
|
6309
|
+
* (iniciales/icono) sigue visible debajo.
|
|
6310
|
+
*/
|
|
6311
|
+
this.imageUrl = computed(() => {
|
|
6312
|
+
if (this.imageFailed())
|
|
6313
|
+
return '';
|
|
6314
|
+
return this.resolvedUser().avatarUrl;
|
|
6315
|
+
});
|
|
6307
6316
|
/** Iniciales — 1-2 chars derivados de name (preferred) o email prefix. */
|
|
6308
6317
|
this.initials = computed(() => {
|
|
6309
6318
|
const { name, email } = this.resolvedUser();
|
|
@@ -6342,8 +6351,16 @@ class UserAvatarComponent {
|
|
|
6342
6351
|
});
|
|
6343
6352
|
}
|
|
6344
6353
|
set props(value) {
|
|
6345
|
-
this.props_
|
|
6346
|
-
|
|
6354
|
+
const prev = this.props_();
|
|
6355
|
+
const next = value ?? {};
|
|
6356
|
+
this.props_.set(next);
|
|
6357
|
+
// Reset estado de carga si cambia la URL — re-disparar fade-in.
|
|
6358
|
+
const prevUrl = prev?.user?.avatarUrl || prev?.avatarUrl || '';
|
|
6359
|
+
const nextUrl = next.user?.avatarUrl || next.avatarUrl || '';
|
|
6360
|
+
if (prevUrl !== nextUrl) {
|
|
6361
|
+
this.imageFailed.set(false);
|
|
6362
|
+
this.imageLoaded.set(false);
|
|
6363
|
+
}
|
|
6347
6364
|
}
|
|
6348
6365
|
/** Subscribers — usado para condicionar cursor/aria. */
|
|
6349
6366
|
get hasClick() {
|
|
@@ -6351,9 +6368,11 @@ class UserAvatarComponent {
|
|
|
6351
6368
|
}
|
|
6352
6369
|
onImageError() {
|
|
6353
6370
|
this.imageFailed.set(true);
|
|
6371
|
+
this.imageLoaded.set(false);
|
|
6354
6372
|
}
|
|
6355
6373
|
onImageLoad() {
|
|
6356
6374
|
this.imageFailed.set(false);
|
|
6375
|
+
this.imageLoaded.set(true);
|
|
6357
6376
|
}
|
|
6358
6377
|
/**
|
|
6359
6378
|
* Hash determinista string → HSL color del rango Valtech (purples/blues).
|
|
@@ -6379,20 +6398,34 @@ class UserAvatarComponent {
|
|
|
6379
6398
|
[class.grayscale]="resolvedProps().grayscale"
|
|
6380
6399
|
[class.has-click]="hasClick"
|
|
6381
6400
|
[class]="shapeClass() + ' ' + sizeClass() + ' ' + (resolvedProps().cssClass || '')"
|
|
6382
|
-
[style.background]="
|
|
6401
|
+
[style.background]="bgColor()"
|
|
6383
6402
|
[style.color]="resolvedProps().foreground || '#fff'"
|
|
6384
6403
|
[attr.aria-label]="ariaLabel()"
|
|
6385
6404
|
(click)="onClick.emit()"
|
|
6386
6405
|
>
|
|
6387
|
-
|
|
6388
|
-
|
|
6389
|
-
|
|
6406
|
+
<!-- Placeholder layer (siempre presente) — iniciales o icono. La imagen
|
|
6407
|
+
se monta encima y hace fade-in al cargar; si falla queda invisible
|
|
6408
|
+
y el placeholder permanece visible sin parpadeo. -->
|
|
6409
|
+
@if (initials()) {
|
|
6390
6410
|
<span class="val-user-avatar__initials">{{ initials() }}</span>
|
|
6391
6411
|
} @else {
|
|
6392
6412
|
<ion-icon name="person-outline" class="val-user-avatar__icon" aria-hidden="true" />
|
|
6393
6413
|
}
|
|
6414
|
+
|
|
6415
|
+
@if (imageUrl()) {
|
|
6416
|
+
<img
|
|
6417
|
+
class="val-user-avatar__img"
|
|
6418
|
+
[class.loaded]="imageLoaded()"
|
|
6419
|
+
[src]="imageUrl()"
|
|
6420
|
+
alt=""
|
|
6421
|
+
loading="lazy"
|
|
6422
|
+
decoding="async"
|
|
6423
|
+
(error)="onImageError()"
|
|
6424
|
+
(load)="onImageLoad()"
|
|
6425
|
+
/>
|
|
6426
|
+
}
|
|
6394
6427
|
</button>
|
|
6395
|
-
`, isInline: true, styles: [":host{display:inline-flex}.val-user-avatar{position:relative;display:inline-flex;align-items:center;justify-content:center;overflow:hidden;padding:0;margin:0;border:none;background:var(--ion-color-medium, #92949c);color:#fff;font-weight:600;font-family:inherit;line-height:1;-webkit-user-select:none;user-select:none;cursor:default;transition:transform .15s ease,box-shadow .15s ease}.val-user-avatar.has-click{cursor:pointer}.val-user-avatar.has-click:hover{transform:scale(1.04)}.val-user-avatar.has-click:active{transform:scale(.96)}.val-user-avatar.circle{border-radius:50%}.val-user-avatar.square{border-radius:8px}.val-user-avatar.xsmall{width:24px;height:24px;font-size:.625rem}.val-user-avatar.small{width:32px;height:32px;font-size:.75rem}.val-user-avatar.medium{width:48px;height:48px;font-size:1rem}.val-user-avatar.large{width:72px;height:72px;font-size:1.5rem}.val-user-avatar.xlarge{width:96px;height:96px;font-size:2rem}.val-user-avatar.bordered{box-shadow:0 0 0 2px var(--ion-background-color, #fff)}.val-user-avatar.grayscale{filter:grayscale(100%)}.val-user-avatar__img{width:100%;height:100%;object-fit:cover;display:block}.val-user-avatar__initials{text-transform:uppercase;letter-spacing:.02em}.val-user-avatar__icon{font-size:60
|
|
6428
|
+
`, isInline: true, styles: [":host{display:inline-flex}.val-user-avatar{position:relative;display:inline-flex;align-items:center;justify-content:center;overflow:hidden;padding:0;margin:0;border:none;background:var(--ion-color-medium, #92949c);color:#fff;font-weight:600;font-family:inherit;line-height:1;-webkit-user-select:none;user-select:none;cursor:default;transition:transform .15s ease,box-shadow .15s ease}.val-user-avatar.has-click{cursor:pointer}.val-user-avatar.has-click:hover{transform:scale(1.04)}.val-user-avatar.has-click:active{transform:scale(.96)}.val-user-avatar.circle{border-radius:50%}.val-user-avatar.square{border-radius:8px}.val-user-avatar.xsmall{width:24px;height:24px;font-size:.625rem}.val-user-avatar.small{width:32px;height:32px;font-size:.75rem}.val-user-avatar.medium{width:48px;height:48px;font-size:1rem}.val-user-avatar.large{width:72px;height:72px;font-size:1.5rem}.val-user-avatar.xlarge{width:96px;height:96px;font-size:2rem}.val-user-avatar.bordered{box-shadow:0 0 0 2px var(--ion-background-color, #fff)}.val-user-avatar.grayscale{filter:grayscale(100%)}.val-user-avatar__img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;display:block;opacity:0;transition:opacity .35s ease-in-out;pointer-events:none}.val-user-avatar__img.loaded{opacity:1}.val-user-avatar__initials{text-transform:uppercase;letter-spacing:.02em;position:relative;z-index:0}.val-user-avatar__icon{font-size:60%;position:relative;z-index:0}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "component", type: IonIcon, selector: "ion-icon", inputs: ["color", "flipRtl", "icon", "ios", "lazy", "md", "mode", "name", "sanitize", "size", "src"] }] }); }
|
|
6396
6429
|
}
|
|
6397
6430
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: UserAvatarComponent, decorators: [{
|
|
6398
6431
|
type: Component,
|
|
@@ -6404,20 +6437,34 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
6404
6437
|
[class.grayscale]="resolvedProps().grayscale"
|
|
6405
6438
|
[class.has-click]="hasClick"
|
|
6406
6439
|
[class]="shapeClass() + ' ' + sizeClass() + ' ' + (resolvedProps().cssClass || '')"
|
|
6407
|
-
[style.background]="
|
|
6440
|
+
[style.background]="bgColor()"
|
|
6408
6441
|
[style.color]="resolvedProps().foreground || '#fff'"
|
|
6409
6442
|
[attr.aria-label]="ariaLabel()"
|
|
6410
6443
|
(click)="onClick.emit()"
|
|
6411
6444
|
>
|
|
6412
|
-
|
|
6413
|
-
|
|
6414
|
-
|
|
6445
|
+
<!-- Placeholder layer (siempre presente) — iniciales o icono. La imagen
|
|
6446
|
+
se monta encima y hace fade-in al cargar; si falla queda invisible
|
|
6447
|
+
y el placeholder permanece visible sin parpadeo. -->
|
|
6448
|
+
@if (initials()) {
|
|
6415
6449
|
<span class="val-user-avatar__initials">{{ initials() }}</span>
|
|
6416
6450
|
} @else {
|
|
6417
6451
|
<ion-icon name="person-outline" class="val-user-avatar__icon" aria-hidden="true" />
|
|
6418
6452
|
}
|
|
6453
|
+
|
|
6454
|
+
@if (imageUrl()) {
|
|
6455
|
+
<img
|
|
6456
|
+
class="val-user-avatar__img"
|
|
6457
|
+
[class.loaded]="imageLoaded()"
|
|
6458
|
+
[src]="imageUrl()"
|
|
6459
|
+
alt=""
|
|
6460
|
+
loading="lazy"
|
|
6461
|
+
decoding="async"
|
|
6462
|
+
(error)="onImageError()"
|
|
6463
|
+
(load)="onImageLoad()"
|
|
6464
|
+
/>
|
|
6465
|
+
}
|
|
6419
6466
|
</button>
|
|
6420
|
-
`, styles: [":host{display:inline-flex}.val-user-avatar{position:relative;display:inline-flex;align-items:center;justify-content:center;overflow:hidden;padding:0;margin:0;border:none;background:var(--ion-color-medium, #92949c);color:#fff;font-weight:600;font-family:inherit;line-height:1;-webkit-user-select:none;user-select:none;cursor:default;transition:transform .15s ease,box-shadow .15s ease}.val-user-avatar.has-click{cursor:pointer}.val-user-avatar.has-click:hover{transform:scale(1.04)}.val-user-avatar.has-click:active{transform:scale(.96)}.val-user-avatar.circle{border-radius:50%}.val-user-avatar.square{border-radius:8px}.val-user-avatar.xsmall{width:24px;height:24px;font-size:.625rem}.val-user-avatar.small{width:32px;height:32px;font-size:.75rem}.val-user-avatar.medium{width:48px;height:48px;font-size:1rem}.val-user-avatar.large{width:72px;height:72px;font-size:1.5rem}.val-user-avatar.xlarge{width:96px;height:96px;font-size:2rem}.val-user-avatar.bordered{box-shadow:0 0 0 2px var(--ion-background-color, #fff)}.val-user-avatar.grayscale{filter:grayscale(100%)}.val-user-avatar__img{width:100%;height:100%;object-fit:cover;display:block}.val-user-avatar__initials{text-transform:uppercase;letter-spacing:.02em}.val-user-avatar__icon{font-size:60
|
|
6467
|
+
`, styles: [":host{display:inline-flex}.val-user-avatar{position:relative;display:inline-flex;align-items:center;justify-content:center;overflow:hidden;padding:0;margin:0;border:none;background:var(--ion-color-medium, #92949c);color:#fff;font-weight:600;font-family:inherit;line-height:1;-webkit-user-select:none;user-select:none;cursor:default;transition:transform .15s ease,box-shadow .15s ease}.val-user-avatar.has-click{cursor:pointer}.val-user-avatar.has-click:hover{transform:scale(1.04)}.val-user-avatar.has-click:active{transform:scale(.96)}.val-user-avatar.circle{border-radius:50%}.val-user-avatar.square{border-radius:8px}.val-user-avatar.xsmall{width:24px;height:24px;font-size:.625rem}.val-user-avatar.small{width:32px;height:32px;font-size:.75rem}.val-user-avatar.medium{width:48px;height:48px;font-size:1rem}.val-user-avatar.large{width:72px;height:72px;font-size:1.5rem}.val-user-avatar.xlarge{width:96px;height:96px;font-size:2rem}.val-user-avatar.bordered{box-shadow:0 0 0 2px var(--ion-background-color, #fff)}.val-user-avatar.grayscale{filter:grayscale(100%)}.val-user-avatar__img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;display:block;opacity:0;transition:opacity .35s ease-in-out;pointer-events:none}.val-user-avatar__img.loaded{opacity:1}.val-user-avatar__initials{text-transform:uppercase;letter-spacing:.02em;position:relative;z-index:0}.val-user-avatar__icon{font-size:60%;position:relative;z-index:0}\n"] }]
|
|
6421
6468
|
}], propDecorators: { props: [{
|
|
6422
6469
|
type: Input
|
|
6423
6470
|
}], onClick: [{
|
|
@@ -36015,6 +36062,45 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
36015
36062
|
}]
|
|
36016
36063
|
}] });
|
|
36017
36064
|
|
|
36065
|
+
/** Built-in label sets for the three platform locales. */
|
|
36066
|
+
const CALLOUT_LABELS = {
|
|
36067
|
+
es: {
|
|
36068
|
+
NOTE: 'Nota',
|
|
36069
|
+
TIP: 'Tip',
|
|
36070
|
+
INFO: 'Info',
|
|
36071
|
+
IMPORTANT: 'Importante',
|
|
36072
|
+
WARNING: 'Atención',
|
|
36073
|
+
CAUTION: 'Precaución',
|
|
36074
|
+
},
|
|
36075
|
+
en: {
|
|
36076
|
+
NOTE: 'Note',
|
|
36077
|
+
TIP: 'Tip',
|
|
36078
|
+
INFO: 'Info',
|
|
36079
|
+
IMPORTANT: 'Important',
|
|
36080
|
+
WARNING: 'Warning',
|
|
36081
|
+
CAUTION: 'Caution',
|
|
36082
|
+
},
|
|
36083
|
+
pt: {
|
|
36084
|
+
NOTE: 'Nota',
|
|
36085
|
+
TIP: 'Dica',
|
|
36086
|
+
INFO: 'Info',
|
|
36087
|
+
IMPORTANT: 'Importante',
|
|
36088
|
+
WARNING: 'Atenção',
|
|
36089
|
+
CAUTION: 'Cuidado',
|
|
36090
|
+
},
|
|
36091
|
+
};
|
|
36092
|
+
/**
|
|
36093
|
+
* Per-callout-kind color (Ionic semantic color). Fixed across locales since
|
|
36094
|
+
* red = danger no matter what language you speak.
|
|
36095
|
+
*/
|
|
36096
|
+
const CALLOUT_COLORS = {
|
|
36097
|
+
NOTE: 'primary',
|
|
36098
|
+
TIP: 'success',
|
|
36099
|
+
INFO: 'tertiary',
|
|
36100
|
+
IMPORTANT: 'warning',
|
|
36101
|
+
WARNING: 'warning',
|
|
36102
|
+
CAUTION: 'danger',
|
|
36103
|
+
};
|
|
36018
36104
|
const BOX_DRAWING = /[┌┐└┘├┤┬┴┼─│╔╗╚╝═║]/;
|
|
36019
36105
|
const CALLOUT_RE = /^>\s*\[!(NOTE|TIP|INFO|WARNING|CAUTION|IMPORTANT)\]\s*(.*)$/i;
|
|
36020
36106
|
const FENCE_RE = /^```([\w-]*)\s*$/;
|
|
@@ -36039,9 +36125,11 @@ const TABLE_ROW_RE = /^\s*\|(.+)\|\s*$/;
|
|
|
36039
36125
|
* - Tables → flattened into paragraphs with bold keys
|
|
36040
36126
|
* - Horizontal rules (---, ***, ___) → separator
|
|
36041
36127
|
*/
|
|
36042
|
-
function parseMarkdownArticle(markdown,
|
|
36128
|
+
function parseMarkdownArticle(markdown, options) {
|
|
36043
36129
|
const lines = normalize(markdown).split('\n');
|
|
36044
36130
|
const elements = [];
|
|
36131
|
+
const labels = options?.calloutLabels ??
|
|
36132
|
+
(options?.locale ? CALLOUT_LABELS[options.locale] : CALLOUT_LABELS.es);
|
|
36045
36133
|
let i = 0;
|
|
36046
36134
|
while (i < lines.length) {
|
|
36047
36135
|
const line = lines[i];
|
|
@@ -36096,7 +36184,7 @@ function parseMarkdownArticle(markdown, config) {
|
|
|
36096
36184
|
block.push(lines[i]);
|
|
36097
36185
|
i++;
|
|
36098
36186
|
}
|
|
36099
|
-
elements.push(makeQuoteOrCallout(block));
|
|
36187
|
+
elements.push(makeQuoteOrCallout(block, labels));
|
|
36100
36188
|
continue;
|
|
36101
36189
|
}
|
|
36102
36190
|
if (TABLE_ROW_RE.test(line)) {
|
|
@@ -36153,12 +36241,14 @@ function parseMarkdownArticle(markdown, config) {
|
|
|
36153
36241
|
});
|
|
36154
36242
|
}
|
|
36155
36243
|
}
|
|
36244
|
+
// Strip parser-only options before merging into ArticleMetadata
|
|
36245
|
+
const { locale: _l, calloutLabels: _c, ...metadataOverrides } = options ?? {};
|
|
36156
36246
|
return {
|
|
36157
36247
|
elements,
|
|
36158
36248
|
maxWidth: '900px',
|
|
36159
36249
|
centered: true,
|
|
36160
36250
|
theme: 'auto',
|
|
36161
|
-
...
|
|
36251
|
+
...metadataOverrides,
|
|
36162
36252
|
};
|
|
36163
36253
|
}
|
|
36164
36254
|
function normalize(md) {
|
|
@@ -36188,7 +36278,7 @@ function makeHeading(level, content) {
|
|
|
36188
36278
|
props: { content, size, color: 'dark', bold: true },
|
|
36189
36279
|
};
|
|
36190
36280
|
}
|
|
36191
|
-
function makeQuoteOrCallout(block) {
|
|
36281
|
+
function makeQuoteOrCallout(block, labels) {
|
|
36192
36282
|
const first = block[0];
|
|
36193
36283
|
const callout = first.match(CALLOUT_RE);
|
|
36194
36284
|
const lines = block.map(l => l.replace(/^>\s?/, ''));
|
|
@@ -36197,7 +36287,7 @@ function makeQuoteOrCallout(block) {
|
|
|
36197
36287
|
const firstLineRest = callout[2] || '';
|
|
36198
36288
|
const rest = lines.slice(1).join(' ').trim();
|
|
36199
36289
|
const text = [firstLineRest, rest].filter(Boolean).join(' ').trim();
|
|
36200
|
-
return makeNote(type, text);
|
|
36290
|
+
return makeNote(type, text, labels);
|
|
36201
36291
|
}
|
|
36202
36292
|
const text = lines.join(' ').trim();
|
|
36203
36293
|
return {
|
|
@@ -36212,22 +36302,13 @@ function makeQuoteOrCallout(block) {
|
|
|
36212
36302
|
},
|
|
36213
36303
|
};
|
|
36214
36304
|
}
|
|
36215
|
-
function makeNote(kind, text) {
|
|
36216
|
-
const map = {
|
|
36217
|
-
NOTE: { color: 'primary', prefix: 'Nota' },
|
|
36218
|
-
TIP: { color: 'success', prefix: 'Tip' },
|
|
36219
|
-
INFO: { color: 'tertiary', prefix: 'Info' },
|
|
36220
|
-
IMPORTANT: { color: 'warning', prefix: 'Importante' },
|
|
36221
|
-
WARNING: { color: 'warning', prefix: 'Atención' },
|
|
36222
|
-
CAUTION: { color: 'danger', prefix: 'Precaución' },
|
|
36223
|
-
};
|
|
36224
|
-
const cfg = map[kind];
|
|
36305
|
+
function makeNote(kind, text, labels) {
|
|
36225
36306
|
return {
|
|
36226
36307
|
type: 'note',
|
|
36227
36308
|
props: {
|
|
36228
36309
|
text,
|
|
36229
|
-
prefix: `${
|
|
36230
|
-
color:
|
|
36310
|
+
prefix: `${labels[kind]}:`,
|
|
36311
|
+
color: CALLOUT_COLORS[kind],
|
|
36231
36312
|
textColor: 'dark',
|
|
36232
36313
|
size: 'medium',
|
|
36233
36314
|
rounded: true,
|
|
@@ -43809,5 +43890,5 @@ function buildFooterLinks(links, t, resolver) {
|
|
|
43809
43890
|
* Generated bundle index. Do not edit.
|
|
43810
43891
|
*/
|
|
43811
43892
|
|
|
43812
|
-
export { ACTION_CARD_DEFAULTS, AD_SIZE_MAP, API_TABLE_COLUMN_LABELS, ARTICLE_SPACING, AVATAR_UPLOAD_DEFAULTS, AccordionComponent, ActionCardComponent, ActionHeaderComponent, ActionType, AdSlotComponent, AdsLoaderService, AdsService, AlertBoxComponent, AnalyticsErrorHandler, AnalyticsRouterTracker, AnalyticsService, AppConfigService, ArticleBuilder, ArticleComponent, AuthBackgroundComponent, AuthService, AuthStateService, AuthStorageService, AuthSyncService, AvatarComponent, AvatarUploadComponent, BOTTOM_NAV_DEFAULTS, BannerComponent, BaseDefault, BlogPostBuilder, BottomNavComponent, BoxComponent, BreadcrumbComponent, ButtonComponent, ButtonGroupComponent, CHEV_KEYS, COMMON_COUNTRY_CODES, COMMON_CURRENCIES, CURRENCY_INFO, CardComponent, CardSection, CardType, CardsCarouselComponent, CheckInputComponent, CheckboxRadioInputComponent, ChipGroupComponent, ClearDefault, ClearDefaultBlock, ClearDefaultFull, ClearDefaultRound, ClearDefaultRoundBlock, ClearDefaultRoundFull, CodeDisplayComponent, CommandDisplayComponent, CommentComponent, CommentInputComponent, CommentSectionComponent, CompanyFooterComponent, ComponentStates, ConfirmationDialogService, ContainerComponent, ContentLoaderComponent, ContentReactionComponent, ContentTransformer, 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 };
|
|
43893
|
+
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 };
|
|
43813
43894
|
//# sourceMappingURL=valtech-components.mjs.map
|