valtech-components 2.0.877 → 2.0.879
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 +127 -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 +137 -40
- package/fesm2022/valtech-components.mjs.map +1 -1
- package/lib/components/atoms/pattern/motifs.d.ts +47 -19
- package/lib/components/atoms/pattern/pattern.component.d.ts +1 -3
- package/lib/components/atoms/pattern/types.d.ts +33 -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.879';
|
|
57
57
|
|
|
58
58
|
/**
|
|
59
59
|
* Servicio para gestionar presets de componentes.
|
|
@@ -6034,39 +6034,64 @@ 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}"/>`,
|
|
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>`,
|
|
6067
6091
|
};
|
|
6068
6092
|
const MOTIF_KEYS = Object.keys(PATTERN_MOTIFS);
|
|
6069
|
-
|
|
6093
|
+
// ── Familias ─────────────────────────────────────────────────────────────────
|
|
6094
|
+
/** Chevron family — orientaciones + variantes pequeñas. */
|
|
6070
6095
|
const CHEV_KEYS = [
|
|
6071
6096
|
'chev-r',
|
|
6072
6097
|
'chev-l',
|
|
@@ -6077,6 +6102,31 @@ const CHEV_KEYS = [
|
|
|
6077
6102
|
'arrow-r',
|
|
6078
6103
|
'arrow-l',
|
|
6079
6104
|
];
|
|
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
|
+
];
|
|
6126
|
+
/** Circle / dot family — formas curvas centradas. */
|
|
6127
|
+
const CIRCLE_KEYS = ['circle', 'circle-sm', 'dot'];
|
|
6128
|
+
/** Diamond solo — forma geométrica angular centrada. */
|
|
6129
|
+
const SHAPE_KEYS = ['diamond'];
|
|
6080
6130
|
/** Triangle / half-fill family. */
|
|
6081
6131
|
const TRI_KEYS = [
|
|
6082
6132
|
'tri-tl',
|
|
@@ -6087,9 +6137,9 @@ const TRI_KEYS = [
|
|
|
6087
6137
|
'half-t',
|
|
6088
6138
|
'house-d',
|
|
6089
6139
|
];
|
|
6090
|
-
/**
|
|
6091
|
-
const
|
|
6092
|
-
/** No-foreground tiles — solo
|
|
6140
|
+
/** Corner arc family — mezcla suave con triangles. */
|
|
6141
|
+
const CORNER_KEYS = ['corner-tl', 'corner-tr', 'corner-bl', 'corner-br'];
|
|
6142
|
+
/** No-foreground tiles — solo rect de fondo. */
|
|
6093
6143
|
const SOLID_KEYS = ['solid'];
|
|
6094
6144
|
const PATTERN_PALETTES = {
|
|
6095
6145
|
purple: ['#0e0420', '#2a1158', '#4a1d96', '#7026df', '#9156e8', '#b48eea', '#d9c3f5', '#ebdcfd'],
|
|
@@ -6104,10 +6154,33 @@ const PATTERN_PALETTES = {
|
|
|
6104
6154
|
'#dccef5',
|
|
6105
6155
|
'#f0e6fc',
|
|
6106
6156
|
],
|
|
6157
|
+
midnight: [
|
|
6158
|
+
'#020814',
|
|
6159
|
+
'#071428',
|
|
6160
|
+
'#0d2248',
|
|
6161
|
+
'#1a3a6e',
|
|
6162
|
+
'#2656a8',
|
|
6163
|
+
'#4d82d4',
|
|
6164
|
+
'#8ab4eb',
|
|
6165
|
+
'#c5d9f5',
|
|
6166
|
+
],
|
|
6167
|
+
ember: ['#120200', '#2e0800', '#6b1a00', '#b83200', '#e85a10', '#f59042', '#f9c48a', '#fde8cc'],
|
|
6168
|
+
forest: ['#010a04', '#052010', '#0a4020', '#0f6635', '#18a058', '#3ece80', '#86e8b4', '#c4f5dc'],
|
|
6169
|
+
rose: ['#12010a', '#2e0420', '#6b0a48', '#b01870', '#e040a0', '#f080c8', '#f8bce4', '#fde0f3'],
|
|
6170
|
+
gold: ['#100800', '#2a1a00', '#5c3800', '#9e6000', '#d4920a', '#f0bc40', '#f8da8c', '#fdf0cc'],
|
|
6171
|
+
mono: ['#080808', '#1a1a1a', '#303030', '#484848', '#707070', '#9e9e9e', '#cecece', '#f0f0f0'],
|
|
6107
6172
|
};
|
|
6173
|
+
const PATTERN_STYLE_CONFIGS = {
|
|
6174
|
+
branded: { chev: 0.58, stroke: 0.1, circle: 0.04, shape: 0.06, solid: 0.18, num: 0.0 },
|
|
6175
|
+
geometric: { chev: 0.15, stroke: 0.05, circle: 0.18, shape: 0.14, solid: 0.1, num: 0.0 },
|
|
6176
|
+
minimal: { chev: 0.25, stroke: 0.1, circle: 0.12, shape: 0.04, solid: 0.38, num: 0.0 },
|
|
6177
|
+
dense: { chev: 0.4, stroke: 0.14, circle: 0.12, shape: 0.1, solid: 0.08, num: 0.02 },
|
|
6178
|
+
code: { chev: 0.35, stroke: 0.18, circle: 0.02, shape: 0.02, solid: 0.12, num: 0.2 },
|
|
6179
|
+
};
|
|
6180
|
+
// ── RNG ──────────────────────────────────────────────────────────────────────
|
|
6108
6181
|
/**
|
|
6109
6182
|
* Mulberry32 seeded RNG — devuelve función `()=>[0,1)`.
|
|
6110
|
-
* Deterministic: mismo seed → misma secuencia.
|
|
6183
|
+
* Deterministic: mismo seed → misma secuencia.
|
|
6111
6184
|
*/
|
|
6112
6185
|
function mulberry32(seed) {
|
|
6113
6186
|
return function () {
|
|
@@ -6118,22 +6191,43 @@ function mulberry32(seed) {
|
|
|
6118
6191
|
return ((t ^ (t >>> 14)) >>> 0) / 4294967296;
|
|
6119
6192
|
};
|
|
6120
6193
|
}
|
|
6194
|
+
function pickFrom(arr, rng) {
|
|
6195
|
+
return arr[Math.floor(rng() * arr.length)];
|
|
6196
|
+
}
|
|
6121
6197
|
/**
|
|
6122
|
-
* Genera UN tile
|
|
6123
|
-
*
|
|
6124
|
-
* tiles en `val-pattern` sin regenerar la grid completa.
|
|
6198
|
+
* Genera UN tile respetando densidades de familia + contraste de palette.
|
|
6199
|
+
* Acepta un config opcional de densidades (de PatternStyleKey o chevronDensity legacy).
|
|
6125
6200
|
*/
|
|
6126
|
-
function generateRandomTile(palette, chevronDensity = 0.55, rng = Math.random) {
|
|
6201
|
+
function generateRandomTile(palette, chevronDensity = 0.55, rng = Math.random, densityConfig) {
|
|
6202
|
+
const cfg = densityConfig ?? {
|
|
6203
|
+
chev: chevronDensity,
|
|
6204
|
+
stroke: 0.08,
|
|
6205
|
+
circle: 0.05,
|
|
6206
|
+
shape: 0.07,
|
|
6207
|
+
solid: 0.2,
|
|
6208
|
+
};
|
|
6127
6209
|
const roll = rng();
|
|
6128
6210
|
let key;
|
|
6129
|
-
|
|
6130
|
-
|
|
6131
|
-
|
|
6132
|
-
|
|
6133
|
-
|
|
6134
|
-
|
|
6211
|
+
const t1 = cfg.chev;
|
|
6212
|
+
const t2 = t1 + cfg.stroke;
|
|
6213
|
+
const t3 = t2 + cfg.circle;
|
|
6214
|
+
const t4 = t3 + cfg.shape;
|
|
6215
|
+
const t5 = t4 + cfg.solid;
|
|
6216
|
+
const t6 = t5 + (cfg.num ?? 0);
|
|
6217
|
+
if (roll < t1)
|
|
6218
|
+
key = pickFrom(CHEV_KEYS, rng);
|
|
6219
|
+
else if (roll < t2)
|
|
6220
|
+
key = pickFrom(STROKE_KEYS, rng);
|
|
6221
|
+
else if (roll < t3)
|
|
6222
|
+
key = pickFrom(CIRCLE_KEYS, rng);
|
|
6223
|
+
else if (roll < t4)
|
|
6224
|
+
key = pickFrom(SHAPE_KEYS, rng);
|
|
6225
|
+
else if (roll < t5)
|
|
6226
|
+
key = pickFrom(SOLID_KEYS, rng);
|
|
6227
|
+
else if (roll < t6)
|
|
6228
|
+
key = pickFrom(NUM_KEYS, rng);
|
|
6135
6229
|
else
|
|
6136
|
-
key = TRI_KEYS
|
|
6230
|
+
key = pickFrom([...TRI_KEYS, ...CORNER_KEYS], rng);
|
|
6137
6231
|
const bgIdx = Math.floor(rng() * palette.length);
|
|
6138
6232
|
let fgIdx = Math.floor(rng() * palette.length);
|
|
6139
6233
|
let tries = 0;
|
|
@@ -6143,20 +6237,20 @@ function generateRandomTile(palette, chevronDensity = 0.55, rng = Math.random) {
|
|
|
6143
6237
|
}
|
|
6144
6238
|
return { motif: key, bg: palette[bgIdx], fg: palette[fgIdx] };
|
|
6145
6239
|
}
|
|
6146
|
-
/** Genera matriz de tiles
|
|
6240
|
+
/** Genera matriz completa de tiles. */
|
|
6147
6241
|
function generatePatternTiles(cfg) {
|
|
6148
6242
|
const { cols, rows, seed, palette } = cfg;
|
|
6149
6243
|
const chevronDensity = cfg.chevronDensity ?? 0.55;
|
|
6244
|
+
const densityConfig = cfg.style ? PATTERN_STYLE_CONFIGS[cfg.style] : undefined;
|
|
6150
6245
|
const r = mulberry32(seed);
|
|
6151
6246
|
const tiles = [];
|
|
6152
6247
|
for (let i = 0; i < cols * rows; i++) {
|
|
6153
|
-
tiles.push(generateRandomTile(palette, chevronDensity, r));
|
|
6248
|
+
tiles.push(generateRandomTile(palette, chevronDensity, r, densityConfig));
|
|
6154
6249
|
}
|
|
6155
6250
|
return tiles;
|
|
6156
6251
|
}
|
|
6157
6252
|
/**
|
|
6158
6253
|
* 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
6254
|
*/
|
|
6161
6255
|
function renderPatternSvgInner(tiles, cols, baseColor) {
|
|
6162
6256
|
const W = cols * 100;
|
|
@@ -6202,7 +6296,6 @@ function renderPatternSvgInner(tiles, cols, baseColor) {
|
|
|
6202
6296
|
* ```
|
|
6203
6297
|
*/
|
|
6204
6298
|
class PatternComponent {
|
|
6205
|
-
/** Object-first input. Cambios disparan re-render por signals. */
|
|
6206
6299
|
set props(value) {
|
|
6207
6300
|
if (!value)
|
|
6208
6301
|
return;
|
|
@@ -6212,7 +6305,9 @@ class PatternComponent {
|
|
|
6212
6305
|
this.rows.set(Math.max(1, value.rows));
|
|
6213
6306
|
if (value.seed !== undefined)
|
|
6214
6307
|
this.seed.set(value.seed);
|
|
6215
|
-
if (value.
|
|
6308
|
+
if (value.style !== undefined)
|
|
6309
|
+
this.patternStyle.set(value.style);
|
|
6310
|
+
if (value.chevronDensity !== undefined && value.style === undefined) {
|
|
6216
6311
|
this.chevronDensity.set(Math.min(1, Math.max(0, value.chevronDensity)));
|
|
6217
6312
|
}
|
|
6218
6313
|
if (value.preserveAspect !== undefined)
|
|
@@ -6236,11 +6331,10 @@ class PatternComponent {
|
|
|
6236
6331
|
this.seed = signal(this.randomSeed());
|
|
6237
6332
|
this.paletteRef = signal(PATTERN_PALETTES.purple);
|
|
6238
6333
|
this.chevronDensity = signal(0.55);
|
|
6334
|
+
this.patternStyle = signal(undefined);
|
|
6239
6335
|
this.preserveAspect = signal('slice');
|
|
6240
6336
|
this.animated = signal(false);
|
|
6241
|
-
/** ms entre reshuffles (modo animated). Default 8000ms — "de vez en cuando". */
|
|
6242
6337
|
this.reshuffleInterval = signal(8000);
|
|
6243
|
-
/** Tiles a cambiar por tick. 0 → reseed grid completo (default). >0 → staggered. */
|
|
6244
6338
|
this.tilesPerTick = signal(0);
|
|
6245
6339
|
/**
|
|
6246
6340
|
* Tiles signal — mutable. Se regenera completa cuando cambia seed/cols/rows/
|
|
@@ -6273,7 +6367,8 @@ class PatternComponent {
|
|
|
6273
6367
|
const seed = this.seed();
|
|
6274
6368
|
const palette = this.paletteRef();
|
|
6275
6369
|
const density = this.chevronDensity();
|
|
6276
|
-
this.
|
|
6370
|
+
const style = this.patternStyle();
|
|
6371
|
+
this.tiles.set(generatePatternTiles({ cols, rows, seed, palette, chevronDensity: density, style }));
|
|
6277
6372
|
}, { allowSignalWrites: true });
|
|
6278
6373
|
// Modo animated: cada `reshuffleInterval` ms regenera el grid completo
|
|
6279
6374
|
// con un seed nuevo. Visualmente: el patrón cambia de vez en cuando.
|
|
@@ -6315,9 +6410,11 @@ class PatternComponent {
|
|
|
6315
6410
|
const next = [...current];
|
|
6316
6411
|
const palette = this.paletteRef();
|
|
6317
6412
|
const density = this.chevronDensity();
|
|
6413
|
+
const style = this.patternStyle();
|
|
6414
|
+
const densityConfig = style ? PATTERN_STYLE_CONFIGS[style] : undefined;
|
|
6318
6415
|
for (let n = 0; n < count; n++) {
|
|
6319
6416
|
const idx = Math.floor(Math.random() * next.length);
|
|
6320
|
-
next[idx] = generateRandomTile(palette, density);
|
|
6417
|
+
next[idx] = generateRandomTile(palette, density, Math.random, densityConfig);
|
|
6321
6418
|
}
|
|
6322
6419
|
this.tiles.set(next);
|
|
6323
6420
|
}
|
|
@@ -48738,5 +48835,5 @@ function buildFooterLinks(links, t, resolver) {
|
|
|
48738
48835
|
* Generated bundle index. Do not edit.
|
|
48739
48836
|
*/
|
|
48740
48837
|
|
|
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 };
|
|
48838
|
+
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 };
|
|
48742
48839
|
//# sourceMappingURL=valtech-components.mjs.map
|