valtech-components 2.0.774 → 2.0.776
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/pattern.component.mjs +19 -11
- package/esm2022/lib/components/atoms/pattern/types.mjs +1 -1
- package/esm2022/lib/components/organisms/cookie-banner/cookie-banner.component.mjs +199 -0
- package/esm2022/lib/components/organisms/cookie-banner/types.mjs +2 -0
- package/esm2022/lib/version.mjs +2 -2
- package/esm2022/public-api.mjs +3 -1
- package/fesm2022/valtech-components.mjs +212 -12
- package/fesm2022/valtech-components.mjs.map +1 -1
- package/lib/components/atoms/pattern/pattern.component.d.ts +3 -3
- package/lib/components/atoms/pattern/types.d.ts +2 -2
- package/lib/components/organisms/cookie-banner/cookie-banner.component.d.ts +36 -0
- package/lib/components/organisms/cookie-banner/types.d.ts +62 -0
- package/lib/version.d.ts +1 -1
- package/package.json +1 -1
- package/public-api.d.ts +2 -0
|
@@ -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.776';
|
|
56
56
|
|
|
57
57
|
/**
|
|
58
58
|
* Servicio para gestionar presets de componentes.
|
|
@@ -6019,7 +6019,7 @@ class PatternComponent {
|
|
|
6019
6019
|
if (value.reshuffleInterval !== undefined && value.reshuffleInterval > 0) {
|
|
6020
6020
|
this.reshuffleInterval.set(value.reshuffleInterval);
|
|
6021
6021
|
}
|
|
6022
|
-
if (value.tilesPerTick !== undefined && value.tilesPerTick
|
|
6022
|
+
if (value.tilesPerTick !== undefined && value.tilesPerTick >= 0) {
|
|
6023
6023
|
this.tilesPerTick.set(Math.floor(value.tilesPerTick));
|
|
6024
6024
|
}
|
|
6025
6025
|
if (value.animated !== undefined)
|
|
@@ -6034,10 +6034,10 @@ class PatternComponent {
|
|
|
6034
6034
|
this.chevronDensity = signal(0.55);
|
|
6035
6035
|
this.preserveAspect = signal('slice');
|
|
6036
6036
|
this.animated = signal(false);
|
|
6037
|
-
/** ms entre
|
|
6038
|
-
this.reshuffleInterval = signal(
|
|
6039
|
-
/**
|
|
6040
|
-
this.tilesPerTick = signal(
|
|
6037
|
+
/** ms entre reshuffles (modo animated). Default 8000ms — "de vez en cuando". */
|
|
6038
|
+
this.reshuffleInterval = signal(8000);
|
|
6039
|
+
/** Tiles a cambiar por tick. 0 → reseed grid completo (default). >0 → staggered. */
|
|
6040
|
+
this.tilesPerTick = signal(0);
|
|
6041
6041
|
/**
|
|
6042
6042
|
* Tiles signal — mutable. Se regenera completa cuando cambia seed/cols/rows/
|
|
6043
6043
|
* palette/density. En modo animated, tiles individuales se sobrescriben sin
|
|
@@ -6065,9 +6065,10 @@ class PatternComponent {
|
|
|
6065
6065
|
const density = this.chevronDensity();
|
|
6066
6066
|
this.tiles.set(generatePatternTiles({ cols, rows, seed, palette, chevronDensity: density }));
|
|
6067
6067
|
});
|
|
6068
|
-
// Modo animated: cada `reshuffleInterval` ms
|
|
6069
|
-
//
|
|
6070
|
-
//
|
|
6068
|
+
// Modo animated: cada `reshuffleInterval` ms regenera el grid completo
|
|
6069
|
+
// con un seed nuevo. Visualmente: el patrón cambia de vez en cuando.
|
|
6070
|
+
// Si `tilesPerTick > 0` y < total tiles, hace staggered (reemplaza solo
|
|
6071
|
+
// N tiles en vez de toda la grid). Default tilesPerTick=0 → reseed total.
|
|
6071
6072
|
effect(onCleanup => {
|
|
6072
6073
|
const isAnimated = this.animated();
|
|
6073
6074
|
const interval = this.reshuffleInterval();
|
|
@@ -6077,7 +6078,14 @@ class PatternComponent {
|
|
|
6077
6078
|
this.timer = undefined;
|
|
6078
6079
|
if (!isAnimated)
|
|
6079
6080
|
return;
|
|
6080
|
-
this.timer = setInterval(() =>
|
|
6081
|
+
this.timer = setInterval(() => {
|
|
6082
|
+
if (perTick > 0) {
|
|
6083
|
+
this.mutateRandomTiles(perTick);
|
|
6084
|
+
}
|
|
6085
|
+
else {
|
|
6086
|
+
this.seed.set(this.randomSeed());
|
|
6087
|
+
}
|
|
6088
|
+
}, interval);
|
|
6081
6089
|
onCleanup(() => {
|
|
6082
6090
|
if (this.timer) {
|
|
6083
6091
|
clearInterval(this.timer);
|
|
@@ -6088,7 +6096,7 @@ class PatternComponent {
|
|
|
6088
6096
|
}
|
|
6089
6097
|
/**
|
|
6090
6098
|
* Reemplaza `count` tiles random del grid actual con tiles nuevos generados.
|
|
6091
|
-
* Usado
|
|
6099
|
+
* Usado para staggered reshuffle (opt-in via `tilesPerTick > 0`).
|
|
6092
6100
|
*/
|
|
6093
6101
|
mutateRandomTiles(count) {
|
|
6094
6102
|
const current = this.tiles();
|
|
@@ -25995,6 +26003,198 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
25995
26003
|
type: Input
|
|
25996
26004
|
}] } });
|
|
25997
26005
|
|
|
26006
|
+
/**
|
|
26007
|
+
* `val-cookie-banner` — bottom/top fixed banner asking the user to choose
|
|
26008
|
+
* a cookie consent option. Presentational only: emits events on each
|
|
26009
|
+
* action, the parent decides what to do (typically wiring to
|
|
26010
|
+
* `AnalyticsService` from `valtech-components`).
|
|
26011
|
+
*
|
|
26012
|
+
* @example
|
|
26013
|
+
* <val-cookie-banner
|
|
26014
|
+
* [props]="bannerProps()"
|
|
26015
|
+
* (accept)="onAccept()"
|
|
26016
|
+
* (reject)="onReject()"
|
|
26017
|
+
* (customize)="onCustomize()"
|
|
26018
|
+
* (dismiss)="onDismiss()"
|
|
26019
|
+
* />
|
|
26020
|
+
*
|
|
26021
|
+
* Wire `props.visible` to `analytics.consentState().hasDecided === false`
|
|
26022
|
+
* so the banner auto-hides once the user makes a choice.
|
|
26023
|
+
*/
|
|
26024
|
+
class CookieBannerComponent {
|
|
26025
|
+
constructor() {
|
|
26026
|
+
/** Fired when the user clicks the primary "accept" button. */
|
|
26027
|
+
this.accept = new EventEmitter();
|
|
26028
|
+
/** Fired when the user clicks the secondary "reject" button. */
|
|
26029
|
+
this.reject = new EventEmitter();
|
|
26030
|
+
/** Fired when the user clicks the tertiary "customize/configure" button. */
|
|
26031
|
+
this.customize = new EventEmitter();
|
|
26032
|
+
/** Fired when the user clicks the dismiss (X) icon. */
|
|
26033
|
+
this.dismiss = new EventEmitter();
|
|
26034
|
+
addIcons({ closeOutline });
|
|
26035
|
+
}
|
|
26036
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: CookieBannerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
26037
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.14", type: CookieBannerComponent, isStandalone: true, selector: "val-cookie-banner", inputs: { props: "props" }, outputs: { accept: "accept", reject: "reject", customize: "customize", dismiss: "dismiss" }, ngImport: i0, template: `
|
|
26038
|
+
@if (props?.visible) {
|
|
26039
|
+
<div
|
|
26040
|
+
class="val-cookie-banner"
|
|
26041
|
+
[class.val-cookie-banner--top]="props.position === 'top'"
|
|
26042
|
+
[class.val-cookie-banner--bottom]="props.position !== 'top'"
|
|
26043
|
+
[class.val-cookie-banner--translucent]="props.translucent"
|
|
26044
|
+
role="dialog"
|
|
26045
|
+
aria-modal="false"
|
|
26046
|
+
aria-live="polite"
|
|
26047
|
+
>
|
|
26048
|
+
<div class="val-cookie-banner__inner" [style.max-width]="props.maxWidth || '1200px'">
|
|
26049
|
+
@if (props.dismissible) {
|
|
26050
|
+
<button
|
|
26051
|
+
type="button"
|
|
26052
|
+
class="val-cookie-banner__dismiss"
|
|
26053
|
+
[attr.aria-label]="'dismiss'"
|
|
26054
|
+
(click)="dismiss.emit()"
|
|
26055
|
+
>
|
|
26056
|
+
<ion-icon name="close-outline"></ion-icon>
|
|
26057
|
+
</button>
|
|
26058
|
+
}
|
|
26059
|
+
|
|
26060
|
+
<div class="val-cookie-banner__copy">
|
|
26061
|
+
@if (props.title) {
|
|
26062
|
+
<h3 class="val-cookie-banner__title">{{ props.title }}</h3>
|
|
26063
|
+
}
|
|
26064
|
+
<p class="val-cookie-banner__message">
|
|
26065
|
+
{{ props.message }}
|
|
26066
|
+
@if (props.policyLinkText && props.policyHref) {
|
|
26067
|
+
<a class="val-cookie-banner__policy" [href]="props.policyHref" target="_blank" rel="noopener">
|
|
26068
|
+
{{ props.policyLinkText }}
|
|
26069
|
+
</a>
|
|
26070
|
+
}
|
|
26071
|
+
</p>
|
|
26072
|
+
</div>
|
|
26073
|
+
|
|
26074
|
+
<div class="val-cookie-banner__actions">
|
|
26075
|
+
<ion-button fill="clear" size="small" [color]="props.rejectColor || 'medium'" (click)="reject.emit()">
|
|
26076
|
+
{{ props.rejectText }}
|
|
26077
|
+
</ion-button>
|
|
26078
|
+
|
|
26079
|
+
@if (props.customizeText) {
|
|
26080
|
+
@if (props.customizeRouterLink) {
|
|
26081
|
+
<ion-button
|
|
26082
|
+
fill="outline"
|
|
26083
|
+
size="small"
|
|
26084
|
+
[color]="props.customizeColor || 'dark'"
|
|
26085
|
+
[routerLink]="props.customizeRouterLink"
|
|
26086
|
+
(click)="customize.emit()"
|
|
26087
|
+
>
|
|
26088
|
+
{{ props.customizeText }}
|
|
26089
|
+
</ion-button>
|
|
26090
|
+
} @else {
|
|
26091
|
+
<ion-button
|
|
26092
|
+
fill="outline"
|
|
26093
|
+
size="small"
|
|
26094
|
+
[color]="props.customizeColor || 'dark'"
|
|
26095
|
+
(click)="customize.emit()"
|
|
26096
|
+
>
|
|
26097
|
+
{{ props.customizeText }}
|
|
26098
|
+
</ion-button>
|
|
26099
|
+
}
|
|
26100
|
+
}
|
|
26101
|
+
|
|
26102
|
+
<ion-button fill="solid" size="small" [color]="props.acceptColor || 'primary'" (click)="accept.emit()">
|
|
26103
|
+
{{ props.acceptText }}
|
|
26104
|
+
</ion-button>
|
|
26105
|
+
</div>
|
|
26106
|
+
</div>
|
|
26107
|
+
</div>
|
|
26108
|
+
}
|
|
26109
|
+
`, isInline: true, styles: [":host{display:contents}.val-cookie-banner{position:fixed;left:0;right:0;z-index:1000;padding:12px 16px calc(12px + env(safe-area-inset-bottom,0px));background:var(--ion-background-color, #fff);border-color:var(--val-border-color, rgba(0, 0, 0, .08));border-style:solid;border-width:0;box-shadow:0 -2px 16px #00000014;animation:val-cookie-banner-in .25s ease-out}.val-cookie-banner--bottom{bottom:0;border-top-width:1px}.val-cookie-banner--top{top:0;border-bottom-width:1px;padding:calc(12px + env(safe-area-inset-top,0px)) 16px 12px;box-shadow:0 2px 16px #00000014}.val-cookie-banner--translucent{background:#ffffffd9;backdrop-filter:saturate(180%) blur(16px);-webkit-backdrop-filter:saturate(180%) blur(16px)}@media (prefers-color-scheme: dark){.val-cookie-banner--translucent{background:#141414d9}}.val-cookie-banner__inner{margin:0 auto;display:flex;flex-direction:row;align-items:center;gap:16px;position:relative}.val-cookie-banner__dismiss{position:absolute;top:-8px;right:-4px;width:28px;height:28px;display:inline-flex;align-items:center;justify-content:center;background:transparent;border:0;border-radius:50%;cursor:pointer;color:var(--ion-color-medium);transition:color .15s ease,background .15s ease}.val-cookie-banner__dismiss:hover{color:var(--ion-color-dark);background:var(--ion-color-light-shade, rgba(0, 0, 0, .04))}.val-cookie-banner__dismiss ion-icon{font-size:18px}.val-cookie-banner__copy{flex:1 1 auto;min-width:0}.val-cookie-banner__title{margin:0 0 4px;font-size:14px;font-weight:600;color:var(--ion-color-dark)}.val-cookie-banner__message{margin:0;font-size:13px;line-height:1.45;color:var(--ion-color-dark)}.val-cookie-banner__policy{margin-left:4px;color:var(--ion-color-primary);text-decoration:underline;text-underline-offset:2px}.val-cookie-banner__actions{display:inline-flex;flex-direction:row;align-items:center;gap:8px;flex-shrink:0}@media (max-width: 768px){.val-cookie-banner__inner{flex-direction:column;align-items:stretch;gap:12px}.val-cookie-banner__actions{flex-wrap:wrap;justify-content:flex-end}}@media (max-width: 480px){.val-cookie-banner__actions{flex-direction:column;align-items:stretch}.val-cookie-banner__actions ion-button{width:100%}}@keyframes val-cookie-banner-in{0%{opacity:0;transform:translateY(12px)}to{opacity:1;transform:translateY(0)}}.val-cookie-banner--top{animation-name:val-cookie-banner-in-top}@keyframes val-cookie-banner-in-top{0%{opacity:0;transform:translateY(-12px)}to{opacity:1;transform:translateY(0)}}@media (prefers-reduced-motion: reduce){.val-cookie-banner{animation:none}}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: RouterLink, selector: "[routerLink]", inputs: ["target", "queryParams", "fragment", "queryParamsHandling", "state", "info", "relativeTo", "preserveFragment", "skipLocationChange", "replaceUrl", "routerLink"] }, { kind: "component", type: IonButton, selector: "ion-button", inputs: ["buttonType", "color", "disabled", "download", "expand", "fill", "form", "href", "mode", "rel", "routerAnimation", "routerDirection", "shape", "size", "strong", "target", "type"] }, { kind: "component", type: IonIcon, selector: "ion-icon", inputs: ["color", "flipRtl", "icon", "ios", "lazy", "md", "mode", "name", "sanitize", "size", "src"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
26110
|
+
}
|
|
26111
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: CookieBannerComponent, decorators: [{
|
|
26112
|
+
type: Component,
|
|
26113
|
+
args: [{ selector: 'val-cookie-banner', standalone: true, imports: [CommonModule, RouterLink, IonButton, IonIcon], template: `
|
|
26114
|
+
@if (props?.visible) {
|
|
26115
|
+
<div
|
|
26116
|
+
class="val-cookie-banner"
|
|
26117
|
+
[class.val-cookie-banner--top]="props.position === 'top'"
|
|
26118
|
+
[class.val-cookie-banner--bottom]="props.position !== 'top'"
|
|
26119
|
+
[class.val-cookie-banner--translucent]="props.translucent"
|
|
26120
|
+
role="dialog"
|
|
26121
|
+
aria-modal="false"
|
|
26122
|
+
aria-live="polite"
|
|
26123
|
+
>
|
|
26124
|
+
<div class="val-cookie-banner__inner" [style.max-width]="props.maxWidth || '1200px'">
|
|
26125
|
+
@if (props.dismissible) {
|
|
26126
|
+
<button
|
|
26127
|
+
type="button"
|
|
26128
|
+
class="val-cookie-banner__dismiss"
|
|
26129
|
+
[attr.aria-label]="'dismiss'"
|
|
26130
|
+
(click)="dismiss.emit()"
|
|
26131
|
+
>
|
|
26132
|
+
<ion-icon name="close-outline"></ion-icon>
|
|
26133
|
+
</button>
|
|
26134
|
+
}
|
|
26135
|
+
|
|
26136
|
+
<div class="val-cookie-banner__copy">
|
|
26137
|
+
@if (props.title) {
|
|
26138
|
+
<h3 class="val-cookie-banner__title">{{ props.title }}</h3>
|
|
26139
|
+
}
|
|
26140
|
+
<p class="val-cookie-banner__message">
|
|
26141
|
+
{{ props.message }}
|
|
26142
|
+
@if (props.policyLinkText && props.policyHref) {
|
|
26143
|
+
<a class="val-cookie-banner__policy" [href]="props.policyHref" target="_blank" rel="noopener">
|
|
26144
|
+
{{ props.policyLinkText }}
|
|
26145
|
+
</a>
|
|
26146
|
+
}
|
|
26147
|
+
</p>
|
|
26148
|
+
</div>
|
|
26149
|
+
|
|
26150
|
+
<div class="val-cookie-banner__actions">
|
|
26151
|
+
<ion-button fill="clear" size="small" [color]="props.rejectColor || 'medium'" (click)="reject.emit()">
|
|
26152
|
+
{{ props.rejectText }}
|
|
26153
|
+
</ion-button>
|
|
26154
|
+
|
|
26155
|
+
@if (props.customizeText) {
|
|
26156
|
+
@if (props.customizeRouterLink) {
|
|
26157
|
+
<ion-button
|
|
26158
|
+
fill="outline"
|
|
26159
|
+
size="small"
|
|
26160
|
+
[color]="props.customizeColor || 'dark'"
|
|
26161
|
+
[routerLink]="props.customizeRouterLink"
|
|
26162
|
+
(click)="customize.emit()"
|
|
26163
|
+
>
|
|
26164
|
+
{{ props.customizeText }}
|
|
26165
|
+
</ion-button>
|
|
26166
|
+
} @else {
|
|
26167
|
+
<ion-button
|
|
26168
|
+
fill="outline"
|
|
26169
|
+
size="small"
|
|
26170
|
+
[color]="props.customizeColor || 'dark'"
|
|
26171
|
+
(click)="customize.emit()"
|
|
26172
|
+
>
|
|
26173
|
+
{{ props.customizeText }}
|
|
26174
|
+
</ion-button>
|
|
26175
|
+
}
|
|
26176
|
+
}
|
|
26177
|
+
|
|
26178
|
+
<ion-button fill="solid" size="small" [color]="props.acceptColor || 'primary'" (click)="accept.emit()">
|
|
26179
|
+
{{ props.acceptText }}
|
|
26180
|
+
</ion-button>
|
|
26181
|
+
</div>
|
|
26182
|
+
</div>
|
|
26183
|
+
</div>
|
|
26184
|
+
}
|
|
26185
|
+
`, changeDetection: ChangeDetectionStrategy.OnPush, styles: [":host{display:contents}.val-cookie-banner{position:fixed;left:0;right:0;z-index:1000;padding:12px 16px calc(12px + env(safe-area-inset-bottom,0px));background:var(--ion-background-color, #fff);border-color:var(--val-border-color, rgba(0, 0, 0, .08));border-style:solid;border-width:0;box-shadow:0 -2px 16px #00000014;animation:val-cookie-banner-in .25s ease-out}.val-cookie-banner--bottom{bottom:0;border-top-width:1px}.val-cookie-banner--top{top:0;border-bottom-width:1px;padding:calc(12px + env(safe-area-inset-top,0px)) 16px 12px;box-shadow:0 2px 16px #00000014}.val-cookie-banner--translucent{background:#ffffffd9;backdrop-filter:saturate(180%) blur(16px);-webkit-backdrop-filter:saturate(180%) blur(16px)}@media (prefers-color-scheme: dark){.val-cookie-banner--translucent{background:#141414d9}}.val-cookie-banner__inner{margin:0 auto;display:flex;flex-direction:row;align-items:center;gap:16px;position:relative}.val-cookie-banner__dismiss{position:absolute;top:-8px;right:-4px;width:28px;height:28px;display:inline-flex;align-items:center;justify-content:center;background:transparent;border:0;border-radius:50%;cursor:pointer;color:var(--ion-color-medium);transition:color .15s ease,background .15s ease}.val-cookie-banner__dismiss:hover{color:var(--ion-color-dark);background:var(--ion-color-light-shade, rgba(0, 0, 0, .04))}.val-cookie-banner__dismiss ion-icon{font-size:18px}.val-cookie-banner__copy{flex:1 1 auto;min-width:0}.val-cookie-banner__title{margin:0 0 4px;font-size:14px;font-weight:600;color:var(--ion-color-dark)}.val-cookie-banner__message{margin:0;font-size:13px;line-height:1.45;color:var(--ion-color-dark)}.val-cookie-banner__policy{margin-left:4px;color:var(--ion-color-primary);text-decoration:underline;text-underline-offset:2px}.val-cookie-banner__actions{display:inline-flex;flex-direction:row;align-items:center;gap:8px;flex-shrink:0}@media (max-width: 768px){.val-cookie-banner__inner{flex-direction:column;align-items:stretch;gap:12px}.val-cookie-banner__actions{flex-wrap:wrap;justify-content:flex-end}}@media (max-width: 480px){.val-cookie-banner__actions{flex-direction:column;align-items:stretch}.val-cookie-banner__actions ion-button{width:100%}}@keyframes val-cookie-banner-in{0%{opacity:0;transform:translateY(12px)}to{opacity:1;transform:translateY(0)}}.val-cookie-banner--top{animation-name:val-cookie-banner-in-top}@keyframes val-cookie-banner-in-top{0%{opacity:0;transform:translateY(-12px)}to{opacity:1;transform:translateY(0)}}@media (prefers-reduced-motion: reduce){.val-cookie-banner{animation:none}}\n"] }]
|
|
26186
|
+
}], ctorParameters: () => [], propDecorators: { props: [{
|
|
26187
|
+
type: Input
|
|
26188
|
+
}], accept: [{
|
|
26189
|
+
type: Output
|
|
26190
|
+
}], reject: [{
|
|
26191
|
+
type: Output
|
|
26192
|
+
}], customize: [{
|
|
26193
|
+
type: Output
|
|
26194
|
+
}], dismiss: [{
|
|
26195
|
+
type: Output
|
|
26196
|
+
}] } });
|
|
26197
|
+
|
|
25998
26198
|
/**
|
|
25999
26199
|
* ToolbarComponent
|
|
26000
26200
|
*
|
|
@@ -43286,5 +43486,5 @@ function buildFooterLinks(links, t, resolver) {
|
|
|
43286
43486
|
* Generated bundle index. Do not edit.
|
|
43287
43487
|
*/
|
|
43288
43488
|
|
|
43289
|
-
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, 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, 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, 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 };
|
|
43489
|
+
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, 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, 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 };
|
|
43290
43490
|
//# sourceMappingURL=valtech-components.mjs.map
|