valtech-components 4.0.259 → 4.0.260
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/organisms/pricing-table/pricing-table.component.mjs +254 -0
- package/esm2022/lib/components/organisms/pricing-table/types.mjs +2 -0
- package/esm2022/lib/version.mjs +2 -2
- package/esm2022/public-api.mjs +3 -1
- package/fesm2022/valtech-components.mjs +253 -2
- package/fesm2022/valtech-components.mjs.map +1 -1
- package/lib/components/organisms/pricing-table/pricing-table.component.d.ts +17 -0
- package/lib/components/organisms/pricing-table/types.d.ts +40 -0
- package/lib/version.d.ts +1 -1
- package/package.json +1 -1
- package/public-api.d.ts +2 -0
|
@@ -57,7 +57,7 @@ import fixWebmDuration from 'fix-webm-duration';
|
|
|
57
57
|
* Current version of valtech-components.
|
|
58
58
|
* This is automatically updated during the publish process.
|
|
59
59
|
*/
|
|
60
|
-
const VERSION = '4.0.
|
|
60
|
+
const VERSION = '4.0.260';
|
|
61
61
|
|
|
62
62
|
// Control de estado de refresco (singleton a nivel de módulo)
|
|
63
63
|
let isRefreshing = false;
|
|
@@ -61100,6 +61100,257 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
61100
61100
|
* `FAQPage` (JSON-LD) y ganar rich results en buscadores.
|
|
61101
61101
|
*/
|
|
61102
61102
|
|
|
61103
|
+
class PricingTableComponent {
|
|
61104
|
+
constructor() {
|
|
61105
|
+
this.onSelect = new EventEmitter();
|
|
61106
|
+
}
|
|
61107
|
+
cycle() {
|
|
61108
|
+
return this.props?.billingCycle || 'monthly';
|
|
61109
|
+
}
|
|
61110
|
+
featuredLabel() {
|
|
61111
|
+
return this.props?.featuredLabel || 'Destacado';
|
|
61112
|
+
}
|
|
61113
|
+
currentLabel() {
|
|
61114
|
+
return this.props?.currentLabel || 'Plan actual';
|
|
61115
|
+
}
|
|
61116
|
+
customPriceLabel() {
|
|
61117
|
+
return this.props?.customPriceLabel || 'Precio a medida';
|
|
61118
|
+
}
|
|
61119
|
+
defaultCtaLabel() {
|
|
61120
|
+
return this.props?.defaultCtaLabel || 'Seleccionar plan';
|
|
61121
|
+
}
|
|
61122
|
+
periodLabel() {
|
|
61123
|
+
return this.cycle() === 'annual'
|
|
61124
|
+
? this.props?.annualPeriodLabel || '/ año'
|
|
61125
|
+
: this.props?.monthlyPeriodLabel || '/ mes';
|
|
61126
|
+
}
|
|
61127
|
+
priceLabel(plan) {
|
|
61128
|
+
const value = this.cycle() === 'annual' ? plan.priceAnnual : plan.priceMonthly;
|
|
61129
|
+
const amount = value ?? 0;
|
|
61130
|
+
const currency = plan.currency || 'CLP';
|
|
61131
|
+
const locale = this.props?.locale || 'es-CL';
|
|
61132
|
+
return new Intl.NumberFormat(locale, {
|
|
61133
|
+
style: 'currency',
|
|
61134
|
+
currency,
|
|
61135
|
+
maximumFractionDigits: 0,
|
|
61136
|
+
}).format(amount);
|
|
61137
|
+
}
|
|
61138
|
+
select(plan) {
|
|
61139
|
+
if (plan.disabled || plan.current)
|
|
61140
|
+
return;
|
|
61141
|
+
this.onSelect.emit(plan.tier);
|
|
61142
|
+
}
|
|
61143
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PricingTableComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
61144
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.14", type: PricingTableComponent, isStandalone: true, selector: "val-pricing-table", inputs: { props: "props" }, outputs: { onSelect: "onSelect" }, ngImport: i0, template: `
|
|
61145
|
+
<section class="pricing" [attr.data-cycle]="cycle()">
|
|
61146
|
+
@if (!props?.plans?.length) {
|
|
61147
|
+
<p class="pricing__empty">{{ props?.emptyLabel || 'No hay planes disponibles.' }}</p>
|
|
61148
|
+
} @else {
|
|
61149
|
+
<div class="pricing__grid" role="list">
|
|
61150
|
+
@for (plan of props.plans; track plan.tier) {
|
|
61151
|
+
<article
|
|
61152
|
+
class="plan"
|
|
61153
|
+
role="listitem"
|
|
61154
|
+
[class.plan--highlighted]="plan.highlighted"
|
|
61155
|
+
[class.plan--current]="plan.current"
|
|
61156
|
+
[class.plan--disabled]="plan.disabled"
|
|
61157
|
+
>
|
|
61158
|
+
@if (plan.highlighted || plan.badge || plan.current) {
|
|
61159
|
+
<div class="plan__ribbon">
|
|
61160
|
+
{{ plan.current ? currentLabel() : plan.badge || featuredLabel() }}
|
|
61161
|
+
</div>
|
|
61162
|
+
}
|
|
61163
|
+
|
|
61164
|
+
<div class="plan__body">
|
|
61165
|
+
<header class="plan__header">
|
|
61166
|
+
<h3 class="plan__name">{{ plan.name }}</h3>
|
|
61167
|
+
@if (plan.description) {
|
|
61168
|
+
<p class="plan__description">{{ plan.description }}</p>
|
|
61169
|
+
}
|
|
61170
|
+
</header>
|
|
61171
|
+
|
|
61172
|
+
<div class="plan__price" [class.plan__price--custom]="plan.custom">
|
|
61173
|
+
@if (plan.custom) {
|
|
61174
|
+
<span class="plan__custom-price">{{ customPriceLabel() }}</span>
|
|
61175
|
+
} @else {
|
|
61176
|
+
<span class="plan__amount">{{ priceLabel(plan) }}</span>
|
|
61177
|
+
<span class="plan__period">{{ periodLabel() }}</span>
|
|
61178
|
+
}
|
|
61179
|
+
</div>
|
|
61180
|
+
|
|
61181
|
+
<button
|
|
61182
|
+
class="plan__cta"
|
|
61183
|
+
type="button"
|
|
61184
|
+
[disabled]="plan.disabled || plan.current"
|
|
61185
|
+
(click)="select(plan)"
|
|
61186
|
+
>
|
|
61187
|
+
{{ plan.current ? currentLabel() : plan.ctaLabel || defaultCtaLabel() }}
|
|
61188
|
+
</button>
|
|
61189
|
+
|
|
61190
|
+
@if (plan.summary?.length) {
|
|
61191
|
+
<section class="plan__summary">
|
|
61192
|
+
@if (plan.summaryTitle) {
|
|
61193
|
+
<p class="plan__section-title">{{ plan.summaryTitle }}</p>
|
|
61194
|
+
}
|
|
61195
|
+
<ul>
|
|
61196
|
+
@for (item of plan.summary; track item) {
|
|
61197
|
+
<li>{{ item }}</li>
|
|
61198
|
+
}
|
|
61199
|
+
</ul>
|
|
61200
|
+
</section>
|
|
61201
|
+
}
|
|
61202
|
+
|
|
61203
|
+
@if (plan.features?.length) {
|
|
61204
|
+
<section class="plan__features">
|
|
61205
|
+
<p class="plan__section-title">{{ plan.featuresTitle || 'Incluye' }}</p>
|
|
61206
|
+
<ul>
|
|
61207
|
+
@for (feature of plan.features; track feature.label) {
|
|
61208
|
+
<li [class.is-excluded]="feature.included === false">
|
|
61209
|
+
<span class="check" aria-hidden="true">
|
|
61210
|
+
@if (feature.included === false) {
|
|
61211
|
+
<svg viewBox="0 0 24 24" fill="none">
|
|
61212
|
+
<path d="M6 6l12 12M18 6L6 18" />
|
|
61213
|
+
</svg>
|
|
61214
|
+
} @else {
|
|
61215
|
+
<svg viewBox="0 0 24 24" fill="none">
|
|
61216
|
+
<path d="M20 6L9 17l-5-5" />
|
|
61217
|
+
</svg>
|
|
61218
|
+
}
|
|
61219
|
+
</span>
|
|
61220
|
+
<span>{{ feature.label }}</span>
|
|
61221
|
+
</li>
|
|
61222
|
+
}
|
|
61223
|
+
</ul>
|
|
61224
|
+
</section>
|
|
61225
|
+
}
|
|
61226
|
+
|
|
61227
|
+
@if (plan.limits?.length) {
|
|
61228
|
+
<section class="plan__limits">
|
|
61229
|
+
@for (limit of plan.limits; track limit.label) {
|
|
61230
|
+
<div>
|
|
61231
|
+
<span>{{ limit.label }}</span>
|
|
61232
|
+
<strong>{{ limit.value }}</strong>
|
|
61233
|
+
</div>
|
|
61234
|
+
}
|
|
61235
|
+
</section>
|
|
61236
|
+
}
|
|
61237
|
+
</div>
|
|
61238
|
+
</article>
|
|
61239
|
+
}
|
|
61240
|
+
</div>
|
|
61241
|
+
}
|
|
61242
|
+
</section>
|
|
61243
|
+
`, isInline: true, styles: [":host{display:block}.pricing{color:var(--ion-text-color, #2f2940)}.pricing__empty{margin:0;color:var(--ion-color-medium, #6f6a7c)}.pricing__grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(min(100%,250px),1fr));gap:clamp(14px,2vw,22px);align-items:stretch}.plan{position:relative;min-width:0;border:1px solid var(--vds-pricing-border, var(--ion-color-light-shade, #dedbe6));border-radius:var(--vds-pricing-radius, 18px);background:var(--vds-pricing-bg, var(--ion-card-background, #ffffff));box-shadow:var(--vds-pricing-shadow, 0 8px 22px rgba(14, 4, 32, .08));overflow:hidden}.plan--highlighted{border-color:var(--vds-pricing-accent, var(--ion-color-primary, #ff00b2));box-shadow:var(--vds-pricing-featured-shadow, 0 14px 34px rgba(255, 0, 178, .16))}.plan--disabled{opacity:.72}.plan__ribbon{min-height:42px;display:grid;place-items:center;padding:8px 16px;background:var(--vds-pricing-accent, var(--ion-color-primary, #ff00b2));color:var(--vds-pricing-accent-contrast, var(--ion-color-primary-contrast, #ffffff));font-size:.8rem;font-weight:800;letter-spacing:.06em;text-transform:uppercase}.plan--current .plan__ribbon{background:var(--ion-color-medium, #6f6a7c)}.plan__body{min-height:100%;display:flex;flex-direction:column;gap:22px;padding:clamp(20px,2.4vw,30px)}.plan__header{display:grid;gap:8px}.plan__name{margin:0;color:var(--vds-pricing-title, var(--ion-text-color, #2f2940));font-size:clamp(1.35rem,1.8vw,1.75rem);line-height:1.05;font-weight:850}.plan__description{min-height:44px;margin:0;color:var(--ion-color-medium, #6f6a7c);font-size:.95rem;line-height:1.45}.plan__price{display:flex;align-items:baseline;gap:8px;min-height:48px}.plan__amount{color:var(--vds-pricing-accent, var(--ion-color-primary, #ff00b2));font-size:clamp(2rem,4vw,3.25rem);line-height:1;font-weight:900;overflow-wrap:anywhere}.plan__period,.plan__custom-price{color:var(--ion-color-medium, #6f6a7c);font-size:.95rem;line-height:1.4}.plan__custom-price{color:var(--ion-text-color, #2f2940);font-weight:800}.plan__cta{width:100%;min-height:48px;border:0;border-radius:999px;padding:12px 20px;background:var(--vds-pricing-cta-bg, #2b1236);color:var(--vds-pricing-cta-color, #ffffff);font:inherit;font-weight:800;cursor:pointer;transition:transform .14s ease,opacity .14s ease}.plan--highlighted .plan__cta{background:var(--vds-pricing-accent, var(--ion-color-primary, #ff00b2));color:var(--vds-pricing-accent-contrast, var(--ion-color-primary-contrast, #ffffff))}.plan__cta:disabled{cursor:default;opacity:.62}.plan__cta:not(:disabled):hover{transform:translateY(-1px)}.plan__cta:focus-visible{outline:3px solid color-mix(in srgb,var(--vds-pricing-accent, #ff00b2) 45%,transparent);outline-offset:3px}.plan__summary{min-height:190px;padding:18px;border-top:5px solid var(--vds-pricing-accent-soft, color-mix(in srgb, var(--vds-pricing-accent, #ff00b2) 52%, #ffffff));border-radius:12px;background:var(--vds-pricing-soft-bg, color-mix(in srgb, var(--vds-pricing-accent, #ff00b2) 7%, var(--ion-card-background, #ffffff)))}.plan__section-title{margin:0 0 12px;color:var(--ion-color-medium, #6f6a7c);font-size:.78rem;font-weight:850;letter-spacing:.04em;text-transform:uppercase}.plan__summary ul,.plan__features ul{list-style:none;margin:0;padding:0;display:grid;gap:10px}.plan__summary li{position:relative;padding-left:18px;color:var(--ion-text-color, #2f2940);font-size:.95rem;line-height:1.35}.plan__summary li:before{content:\"\";position:absolute;top:.58em;left:2px;width:5px;height:5px;border-radius:50%;background:var(--vds-pricing-accent, var(--ion-color-primary, #ff00b2))}.plan__features{display:grid;gap:10px}.plan__features li{display:grid;grid-template-columns:20px minmax(0,1fr);gap:10px;align-items:start;color:var(--ion-text-color, #2f2940);font-size:.95rem;line-height:1.35}.plan__features li.is-excluded{color:var(--ion-color-medium, #6f6a7c);text-decoration:line-through}.check{width:20px;height:20px;display:grid;place-items:center;border-radius:50%;background:var(--vds-pricing-accent, var(--ion-color-primary, #ff00b2));color:var(--vds-pricing-accent-contrast, #ffffff)}.is-excluded .check{background:var(--ion-color-medium, #6f6a7c)}.check svg{width:13px;height:13px;stroke:currentColor;stroke-width:2.8;stroke-linecap:round;stroke-linejoin:round}.plan__limits{display:grid;gap:8px;margin-top:auto;padding-top:8px}.plan__limits div{display:flex;justify-content:space-between;gap:12px;color:var(--ion-color-medium, #6f6a7c);font-size:.86rem}.plan__limits strong{color:var(--ion-text-color, #2f2940);text-align:right;overflow-wrap:anywhere}@media (max-width: 700px){.plan__description,.plan__summary{min-height:0}}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }] }); }
|
|
61244
|
+
}
|
|
61245
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PricingTableComponent, decorators: [{
|
|
61246
|
+
type: Component,
|
|
61247
|
+
args: [{ selector: 'val-pricing-table', standalone: true, imports: [CommonModule], template: `
|
|
61248
|
+
<section class="pricing" [attr.data-cycle]="cycle()">
|
|
61249
|
+
@if (!props?.plans?.length) {
|
|
61250
|
+
<p class="pricing__empty">{{ props?.emptyLabel || 'No hay planes disponibles.' }}</p>
|
|
61251
|
+
} @else {
|
|
61252
|
+
<div class="pricing__grid" role="list">
|
|
61253
|
+
@for (plan of props.plans; track plan.tier) {
|
|
61254
|
+
<article
|
|
61255
|
+
class="plan"
|
|
61256
|
+
role="listitem"
|
|
61257
|
+
[class.plan--highlighted]="plan.highlighted"
|
|
61258
|
+
[class.plan--current]="plan.current"
|
|
61259
|
+
[class.plan--disabled]="plan.disabled"
|
|
61260
|
+
>
|
|
61261
|
+
@if (plan.highlighted || plan.badge || plan.current) {
|
|
61262
|
+
<div class="plan__ribbon">
|
|
61263
|
+
{{ plan.current ? currentLabel() : plan.badge || featuredLabel() }}
|
|
61264
|
+
</div>
|
|
61265
|
+
}
|
|
61266
|
+
|
|
61267
|
+
<div class="plan__body">
|
|
61268
|
+
<header class="plan__header">
|
|
61269
|
+
<h3 class="plan__name">{{ plan.name }}</h3>
|
|
61270
|
+
@if (plan.description) {
|
|
61271
|
+
<p class="plan__description">{{ plan.description }}</p>
|
|
61272
|
+
}
|
|
61273
|
+
</header>
|
|
61274
|
+
|
|
61275
|
+
<div class="plan__price" [class.plan__price--custom]="plan.custom">
|
|
61276
|
+
@if (plan.custom) {
|
|
61277
|
+
<span class="plan__custom-price">{{ customPriceLabel() }}</span>
|
|
61278
|
+
} @else {
|
|
61279
|
+
<span class="plan__amount">{{ priceLabel(plan) }}</span>
|
|
61280
|
+
<span class="plan__period">{{ periodLabel() }}</span>
|
|
61281
|
+
}
|
|
61282
|
+
</div>
|
|
61283
|
+
|
|
61284
|
+
<button
|
|
61285
|
+
class="plan__cta"
|
|
61286
|
+
type="button"
|
|
61287
|
+
[disabled]="plan.disabled || plan.current"
|
|
61288
|
+
(click)="select(plan)"
|
|
61289
|
+
>
|
|
61290
|
+
{{ plan.current ? currentLabel() : plan.ctaLabel || defaultCtaLabel() }}
|
|
61291
|
+
</button>
|
|
61292
|
+
|
|
61293
|
+
@if (plan.summary?.length) {
|
|
61294
|
+
<section class="plan__summary">
|
|
61295
|
+
@if (plan.summaryTitle) {
|
|
61296
|
+
<p class="plan__section-title">{{ plan.summaryTitle }}</p>
|
|
61297
|
+
}
|
|
61298
|
+
<ul>
|
|
61299
|
+
@for (item of plan.summary; track item) {
|
|
61300
|
+
<li>{{ item }}</li>
|
|
61301
|
+
}
|
|
61302
|
+
</ul>
|
|
61303
|
+
</section>
|
|
61304
|
+
}
|
|
61305
|
+
|
|
61306
|
+
@if (plan.features?.length) {
|
|
61307
|
+
<section class="plan__features">
|
|
61308
|
+
<p class="plan__section-title">{{ plan.featuresTitle || 'Incluye' }}</p>
|
|
61309
|
+
<ul>
|
|
61310
|
+
@for (feature of plan.features; track feature.label) {
|
|
61311
|
+
<li [class.is-excluded]="feature.included === false">
|
|
61312
|
+
<span class="check" aria-hidden="true">
|
|
61313
|
+
@if (feature.included === false) {
|
|
61314
|
+
<svg viewBox="0 0 24 24" fill="none">
|
|
61315
|
+
<path d="M6 6l12 12M18 6L6 18" />
|
|
61316
|
+
</svg>
|
|
61317
|
+
} @else {
|
|
61318
|
+
<svg viewBox="0 0 24 24" fill="none">
|
|
61319
|
+
<path d="M20 6L9 17l-5-5" />
|
|
61320
|
+
</svg>
|
|
61321
|
+
}
|
|
61322
|
+
</span>
|
|
61323
|
+
<span>{{ feature.label }}</span>
|
|
61324
|
+
</li>
|
|
61325
|
+
}
|
|
61326
|
+
</ul>
|
|
61327
|
+
</section>
|
|
61328
|
+
}
|
|
61329
|
+
|
|
61330
|
+
@if (plan.limits?.length) {
|
|
61331
|
+
<section class="plan__limits">
|
|
61332
|
+
@for (limit of plan.limits; track limit.label) {
|
|
61333
|
+
<div>
|
|
61334
|
+
<span>{{ limit.label }}</span>
|
|
61335
|
+
<strong>{{ limit.value }}</strong>
|
|
61336
|
+
</div>
|
|
61337
|
+
}
|
|
61338
|
+
</section>
|
|
61339
|
+
}
|
|
61340
|
+
</div>
|
|
61341
|
+
</article>
|
|
61342
|
+
}
|
|
61343
|
+
</div>
|
|
61344
|
+
}
|
|
61345
|
+
</section>
|
|
61346
|
+
`, styles: [":host{display:block}.pricing{color:var(--ion-text-color, #2f2940)}.pricing__empty{margin:0;color:var(--ion-color-medium, #6f6a7c)}.pricing__grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(min(100%,250px),1fr));gap:clamp(14px,2vw,22px);align-items:stretch}.plan{position:relative;min-width:0;border:1px solid var(--vds-pricing-border, var(--ion-color-light-shade, #dedbe6));border-radius:var(--vds-pricing-radius, 18px);background:var(--vds-pricing-bg, var(--ion-card-background, #ffffff));box-shadow:var(--vds-pricing-shadow, 0 8px 22px rgba(14, 4, 32, .08));overflow:hidden}.plan--highlighted{border-color:var(--vds-pricing-accent, var(--ion-color-primary, #ff00b2));box-shadow:var(--vds-pricing-featured-shadow, 0 14px 34px rgba(255, 0, 178, .16))}.plan--disabled{opacity:.72}.plan__ribbon{min-height:42px;display:grid;place-items:center;padding:8px 16px;background:var(--vds-pricing-accent, var(--ion-color-primary, #ff00b2));color:var(--vds-pricing-accent-contrast, var(--ion-color-primary-contrast, #ffffff));font-size:.8rem;font-weight:800;letter-spacing:.06em;text-transform:uppercase}.plan--current .plan__ribbon{background:var(--ion-color-medium, #6f6a7c)}.plan__body{min-height:100%;display:flex;flex-direction:column;gap:22px;padding:clamp(20px,2.4vw,30px)}.plan__header{display:grid;gap:8px}.plan__name{margin:0;color:var(--vds-pricing-title, var(--ion-text-color, #2f2940));font-size:clamp(1.35rem,1.8vw,1.75rem);line-height:1.05;font-weight:850}.plan__description{min-height:44px;margin:0;color:var(--ion-color-medium, #6f6a7c);font-size:.95rem;line-height:1.45}.plan__price{display:flex;align-items:baseline;gap:8px;min-height:48px}.plan__amount{color:var(--vds-pricing-accent, var(--ion-color-primary, #ff00b2));font-size:clamp(2rem,4vw,3.25rem);line-height:1;font-weight:900;overflow-wrap:anywhere}.plan__period,.plan__custom-price{color:var(--ion-color-medium, #6f6a7c);font-size:.95rem;line-height:1.4}.plan__custom-price{color:var(--ion-text-color, #2f2940);font-weight:800}.plan__cta{width:100%;min-height:48px;border:0;border-radius:999px;padding:12px 20px;background:var(--vds-pricing-cta-bg, #2b1236);color:var(--vds-pricing-cta-color, #ffffff);font:inherit;font-weight:800;cursor:pointer;transition:transform .14s ease,opacity .14s ease}.plan--highlighted .plan__cta{background:var(--vds-pricing-accent, var(--ion-color-primary, #ff00b2));color:var(--vds-pricing-accent-contrast, var(--ion-color-primary-contrast, #ffffff))}.plan__cta:disabled{cursor:default;opacity:.62}.plan__cta:not(:disabled):hover{transform:translateY(-1px)}.plan__cta:focus-visible{outline:3px solid color-mix(in srgb,var(--vds-pricing-accent, #ff00b2) 45%,transparent);outline-offset:3px}.plan__summary{min-height:190px;padding:18px;border-top:5px solid var(--vds-pricing-accent-soft, color-mix(in srgb, var(--vds-pricing-accent, #ff00b2) 52%, #ffffff));border-radius:12px;background:var(--vds-pricing-soft-bg, color-mix(in srgb, var(--vds-pricing-accent, #ff00b2) 7%, var(--ion-card-background, #ffffff)))}.plan__section-title{margin:0 0 12px;color:var(--ion-color-medium, #6f6a7c);font-size:.78rem;font-weight:850;letter-spacing:.04em;text-transform:uppercase}.plan__summary ul,.plan__features ul{list-style:none;margin:0;padding:0;display:grid;gap:10px}.plan__summary li{position:relative;padding-left:18px;color:var(--ion-text-color, #2f2940);font-size:.95rem;line-height:1.35}.plan__summary li:before{content:\"\";position:absolute;top:.58em;left:2px;width:5px;height:5px;border-radius:50%;background:var(--vds-pricing-accent, var(--ion-color-primary, #ff00b2))}.plan__features{display:grid;gap:10px}.plan__features li{display:grid;grid-template-columns:20px minmax(0,1fr);gap:10px;align-items:start;color:var(--ion-text-color, #2f2940);font-size:.95rem;line-height:1.35}.plan__features li.is-excluded{color:var(--ion-color-medium, #6f6a7c);text-decoration:line-through}.check{width:20px;height:20px;display:grid;place-items:center;border-radius:50%;background:var(--vds-pricing-accent, var(--ion-color-primary, #ff00b2));color:var(--vds-pricing-accent-contrast, #ffffff)}.is-excluded .check{background:var(--ion-color-medium, #6f6a7c)}.check svg{width:13px;height:13px;stroke:currentColor;stroke-width:2.8;stroke-linecap:round;stroke-linejoin:round}.plan__limits{display:grid;gap:8px;margin-top:auto;padding-top:8px}.plan__limits div{display:flex;justify-content:space-between;gap:12px;color:var(--ion-color-medium, #6f6a7c);font-size:.86rem}.plan__limits strong{color:var(--ion-text-color, #2f2940);text-align:right;overflow-wrap:anywhere}@media (max-width: 700px){.plan__description,.plan__summary{min-height:0}}\n"] }]
|
|
61347
|
+
}], propDecorators: { props: [{
|
|
61348
|
+
type: Input,
|
|
61349
|
+
args: [{ required: true }]
|
|
61350
|
+
}], onSelect: [{
|
|
61351
|
+
type: Output
|
|
61352
|
+
}] } });
|
|
61353
|
+
|
|
61103
61354
|
class SimpleComponent {
|
|
61104
61355
|
constructor() {
|
|
61105
61356
|
this.onClick = new EventEmitter();
|
|
@@ -74945,5 +75196,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
74945
75196
|
* Generated bundle index. Do not edit.
|
|
74946
75197
|
*/
|
|
74947
75198
|
|
|
74948
|
-
export { ACTION_CARD_DEFAULTS, AD_SIZE_MAP, API_TABLE_COLUMN_LABELS, APP_VERSION_PLATFORM_PLUGIN, APP_VERSION_REMOTE_PLUGIN, ARTICLE_CARD_DEFAULTS, ARTICLE_SPACING, ARTICLE_STRIP_DEFAULTS, AUTH_CTA_DEFAULTS, AVATAR_UPLOAD_DEFAULTS, AboutViewComponent, AccordionComponent, AccountViewComponent, ActionCardComponent, ActionHeaderComponent, ActionType, AdSlotComponent, AdsLoaderService, AdsService, AlertBoxComponent, AnalyticsErrorHandler, AnalyticsRouterTracker, AnalyticsService, AnimatedTerminalComponent, ApiKeyCreateModalComponent, ApiKeyService, ApiKeysModalComponent, ApiKeysViewComponent, AppConfigService, AppVersionService, ArticleBuilder, ArticleCardComponent, ArticleComponent, ArticleStripComponent, AttachmentUploaderComponent, AuthBackgroundComponent, AuthCtaComponent, AuthService, AuthStateService, AuthStorageService, AuthSyncService, AvatarComponent, AvatarUploadComponent, BOTTOM_NAV_DEFAULTS, BannerComponent, BlogPostBuilder, BottomNavComponent, BoxComponent, BreadcrumbComponent, ButtonComponent, ButtonGroupComponent, CALLOUT_LABELS, CHEV_KEYS, CIRCLE_KEYS, COMMON_COUNTRY_CODES, COMMON_CURRENCIES, CORNER_KEYS, CTA_CARD_DEFAULTS, CURRENCY_INFO, CardComponent, CardSection, CardType, CardsCarouselComponent, ChangeEmailModalComponent, ChangePasswordModalComponent, ChatComposerComponent, ChatInputComponent, ChatWindowComponent, CheckInputComponent, CheckboxRadioInputComponent, ChipGroupComponent, CodeDisplayComponent, CommandDisplayComponent, CommentComponent, CommentInputComponent, CommentSectionComponent, CompanyFooterComponent, ComponentStates, ConfirmationDialogService, ContainerComponent, ContentLoaderComponent, ContentReactionComponent, ContentService, ContentTransformer, ConversationListItemComponent, ConversationService, CookieBannerComponent, CookieSettingsComponent, CountdownComponent, CreateOrgModalComponent, CtaCardComponent, CurrencyInputComponent, DEFAULT_ADS_CONFIG, DEFAULT_APP_CONFIG_SERVICE_CONFIG, DEFAULT_APP_VERSION_SERVICE_CONFIG, DEFAULT_AUTH_CONFIG, DEFAULT_BACK_HEADER, DEFAULT_BUTTON_PRESETS, 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_LOGIN_LOGO, DEFAULT_MODAL_CANCEL_BUTTON, DEFAULT_MODAL_CONFIRM_BUTTON, DEFAULT_PAGE_SIZE_OPTIONS, DEFAULT_PLATFORMS, DEFAULT_POST_UPDATE_GRACE_MS, DEFAULT_PRESETS, DEFAULT_REFRESHER_METADATA, DEFAULT_SKELETON_CONFIG, DEFAULT_SPLASH_SCREEN_CONFIG, DataTableComponent, DateInputComponent, DatePickerComponent, DateRangeInputComponent, DebugConsoleComponent, DeleteAccountModalComponent, DetailSkeletonComponent, DeviceService, DisplayComponent, DividerComponent, DocsApiTableComponent, DocsBreadcrumbComponent, DocsBuilder, DocsCalloutComponent, DocsCodeExampleComponent, DocsLayoutComponent, DocsNavLinksComponent, DocsNavigationService, DocsPageComponent, DocsSearchComponent, DocsSectionComponent, DocsShellComponent, DocsSidebarComponent, DocsTocComponent, DonationService, DownloadService, EditOrgModalComponent, EmptyStateComponent, EntityCardComponent, EntityFeedService, ExpandableTextComponent, FEATURES_LIST_DEFAULTS, FUN_MODAL_DEFAULTS, FabComponent, FaqComponent, FeaturesListComponent, FeedbackFormComponent, FeedbackService, FieldListComponent, FileInputComponent, FirebaseService, FirestoreCollectionFactory, FirestoreService, FontSizeOption, FontSizeSelectorComponent, FontSizeService, FooterComponent, FooterLinksComponent, FormComponent, FormFieldComponent, FormSkeletonComponent, FunHeaderComponent, FunModalComponent, GlassComponent, GlowCardComponent, GlowComponent, GridSkeletonComponent, HANDOFF_ROUTE_PARAM, HANDOFF_TOKEN_PARAM, HandoffService, HapticsService, HasPermissionDirective, HeaderActionsService, HeaderComponent, HintComponent, HorizontalScrollComponent, HrefComponent, HtmlViewerModalComponent, I18nService, IMAGE_DEFAULTS, INITIAL_AUTH_STATE, INITIAL_MFA_STATE, INVITATION_CARD_DEFAULTS, IONIC_COLORS$5 as IONIC_COLORS, Icon, IconComponent, IconService, ImageComponent, ImageCropComponent, ImageService, InAppBrowserService, InfiniteListComponent, InfoComponent, InputI18nHelper, InputType, InvitationCardComponent, InviteMemberModalComponent, ItemListComponent, KNOWN_ROUTES, LANG_STORAGE_KEY$1 as LANG_STORAGE_KEY, LEGAL_CONTENT_CONFIG, LOGGED_IN_HINT_COOKIE, LOGIN_DEFAULTS, LandingSplitComponent, LandingStepsComponent, LanguageSelectorComponent, LanguageSelectorV2Component, LayeredCardComponent, LegalContentService, LegalLinkService, LinkComponent, LinkProcessorService, LinkedProvidersComponent, LinksAccordionComponent, LinksCakeComponent, ListSkeletonComponent, LoadMoreComponent, LoadingDirective, LocalStorageService, LocaleService, LoginAttemptModalComponent, LoginComponent, MEDIA_OBJECT_DEFAULTS, MEMBER_CARD_DEFAULTS, META_SCHEMA_VERSION, METRIC_CARD_DEFAULTS, MODAL_SIZES, MOTIF_KEYS, MOTION, MaintenancePageComponent, MarkdownArticleParserService, MediaObjectComponent, MediaViewerModalComponent, MemberCardComponent, MemberDetailModalComponent, MemberImportModalComponent, MenuComponent, MessageBubbleComponent, MessagingService, MetaService, MetricCardComponent, MfaModalComponent, ModalService, ModalShellComponent, MultiSelectSearchComponent, NUM_KEYS, NavigationService, NetworkBannerComponent, NetworkStatusService, NewsBuilder, NoContentComponent, NotesBoxComponent, NotificationActionService, NotificationPreferencesViewComponent, NotificationsService, NotificationsViewComponent, NumberFromToComponent, NumberStepperComponent, OAUTH_PROVIDERS_INFO, OAuthCallbackComponent, OAuthService, OptionCardsComponent, OrgInfoSheetComponent, OrgService, OrgSwitchService, OrganizationViewComponent, PATTERN_MOTIFS, PATTERN_PALETTES, PATTERN_STYLE_CONFIGS, PLATFORM_CONFIGS, POST_UPDATE_TS_KEY, PageContentComponent, PageLinksComponent, PageRefreshService, PageTemplateComponent, PageWavesComponent, PageWrapperComponent, PaginationComponent, PaginationService, PasswordInputComponent, PatternComponent, PdfService, PermissionCatalogService, PermissionSelectorComponent, PermissionsModalComponent, PermissionsViewComponent, PhoneInputComponent, PickerV2Component, PillComponent, PinInputComponent, PlainCodeBoxComponent, PopoverSelectorComponent, PreferencesService, PreferencesViewComponent, PresetService, PriceTagComponent, ProcessLinksPipe, ProfileContentComponent, ProfileModalComponent, ProfileSkeletonComponent, ProfileViewComponent, ProgressBarComponent, ProgressRingComponent, ProgressStatusComponent, PrompterComponent, QR_PRESETS, QrCodeComponent, QrGeneratorService, QrScannerComponent, QueryBuilder, QuoteBoxComponent, REQUEST_STATUSES, RadioInputComponent, RangeInputComponent, RatingComponent, ReactionBarComponent, ReactionsService, RefresherComponent, RequestFirestoreService, RequestFormBuilderService, RequestFormComponent, RequestModalComponent, RequestService, RightsFooterComponent, RotatingTextComponent, SEARCH_HEADER_DEFAULTS, SETTINGS_SECTIONS_CATALOG, SHAPE_KEYS, SHARE_PROFILE_MODAL_DEFAULTS, SKELETON_LAYOUT_DEFAULT_ROWS, SKELETON_PRESETS, SOLID_KEYS, STATS_BAR_DEFAULTS, STROKE_KEYS, SearchHeaderComponent, SearchSelectorComponent, SearchbarComponent, SectionHeaderComponent, SecurityViewComponent, SegmentControlComponent, SelectSearchComponent, SessionListModalComponent, SessionService, SettingsHubComponent, ShareButtonsComponent, ShareProfileModalComponent, SimpleComponent, SkeletonComponent, SkeletonLayoutComponent, SkeletonService, SplashComponent, SplashScreenService, StatsBarComponent, StatsCardComponent, StepperComponent, StorageService, SwipeCarouselComponent, SwitchOrgModalComponent, TRI_KEYS, TabbedContentComponent, TableSkeletonComponent, TabsComponent, Terminal404Component, TestimonialCardComponent, TestimonialCarouselComponent, TextComponent, TextInputComponent, TextareaInputComponent, ThemeOption, ThemeService, ThreadPanelComponent, TicketCardComponent, TicketCardImageService, TimelineComponent, TitleBlockComponent, TitleComponent, ToastService, ToggleInputComponent, TokenService, ToolbarActionType, ToolbarComponent, TransferOwnershipModalComponent, TranslatePipe, TypedCollection, TypingIndicatorComponent, UPDATE_BANNER_DEFAULT_CONTENT, UPDATE_BANNER_I18N_NAMESPACE, UpdateBannerComponent, UsageMetersComponent, UsageService, UserAvatarComponent, UsernameInputComponent, VALTECH_ADS_CONFIG, VALTECH_APP_CONFIG, VALTECH_APP_VERSION, VALTECH_AUTH_CONFIG, VALTECH_CHAT_CONFIG, VALTECH_COMPANY_LINKS, VALTECH_CONTENT_CONFIG, 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_REACTIONS_CONFIG, VALTECH_SETTINGS_MENU_LINKS, VALTECH_SITE_PATHS, VALTECH_SOCIAL_LINKS, VALTECH_SPLASH_SCREEN, VALTECH_WEB_BASE_URLS, VALTECH_WHATSAPP_CONFIG, VERSION, ValtechErrorService, VerifyViewComponent, WhatsappFabComponent, WhatsappService, WizardComponent, WizardFooterComponent, WorkflowService, applyDefaultValueToControl, authGuard, authInterceptor, authPasswordValidator, beautifyLegalArticle, blogPost, buildCompanyFooterProps, buildFooterLinks, buildLegalLinkResolver, buildPath, buildSettingsCards, button, canSubmitRequestType, collections, connectPageRefresh, createErrorStateProps, createFirebaseConfig, createGlowCardProps, createInitialPaginationState, createNumberFromToField, createPageState, createPermissionLabeler, createRefreshableStream, createTitleProps, docs, errorLoggingInterceptor, extractPathParams, formatClockTime, formatDateSeparator, formatRelativeTime, generatePatternTiles, generateRandomTile, getAppInfo, getAppVersion, getCollectionPath, getDocumentId, getTimeOfDayKey, goToTop, groupPermissionsByScope, guestGuard, hasEmulators, iconButton, interpretError, isAtEnd, isCollectionPath, isDocumentPath, isEmulatorMode, isIonicColor, isKnownRoute, isValidPath, joinPath, maxLength, mulberry32, news, parseMarkdownArticle, permissionGuard, permissionGuardFromRoute, provideLegalContent, provideSplashScreen, provideValtechAboutRoutes, provideValtechAccountRoutes, provideValtechAds, provideValtechApiKeysRoutes, provideValtechAppConfig, provideValtechAppVersion, provideValtechAppVersionHttp, provideValtechAuth, provideValtechAuthInterceptor, provideValtechChat, provideValtechContent, provideValtechDebugConsole, provideValtechDonations, provideValtechErrorHandling, provideValtechFeedback, provideValtechFirebase, provideValtechI18n, provideValtechLegal, provideValtechNotificationPreferencesRoutes, provideValtechNotificationsRoutes, provideValtechOrganizationRoutes, provideValtechPermissionsRoutes, provideValtechPreferencesRoutes, provideValtechPresets, provideValtechProfileRoutes, provideValtechReactions, provideValtechSecurityRoutes, provideValtechSettingsRoutes, provideValtechSite, provideValtechSkeleton, provideValtechWhatsapp, query, rbacGuard, renderPatternSvgInner, replaceSpecialChars, requestSubmitMode, resolveColor, resolveInputDefaultValue, resolveIonicColor, resolveWebBaseUrl, roleGuard, selectableRequestTypes, storagePaths, superAdminGuard, toArticle, validateRoutes };
|
|
75199
|
+
export { ACTION_CARD_DEFAULTS, AD_SIZE_MAP, API_TABLE_COLUMN_LABELS, APP_VERSION_PLATFORM_PLUGIN, APP_VERSION_REMOTE_PLUGIN, ARTICLE_CARD_DEFAULTS, ARTICLE_SPACING, ARTICLE_STRIP_DEFAULTS, AUTH_CTA_DEFAULTS, AVATAR_UPLOAD_DEFAULTS, AboutViewComponent, AccordionComponent, AccountViewComponent, ActionCardComponent, ActionHeaderComponent, ActionType, AdSlotComponent, AdsLoaderService, AdsService, AlertBoxComponent, AnalyticsErrorHandler, AnalyticsRouterTracker, AnalyticsService, AnimatedTerminalComponent, ApiKeyCreateModalComponent, ApiKeyService, ApiKeysModalComponent, ApiKeysViewComponent, AppConfigService, AppVersionService, ArticleBuilder, ArticleCardComponent, ArticleComponent, ArticleStripComponent, AttachmentUploaderComponent, AuthBackgroundComponent, AuthCtaComponent, AuthService, AuthStateService, AuthStorageService, AuthSyncService, AvatarComponent, AvatarUploadComponent, BOTTOM_NAV_DEFAULTS, BannerComponent, BlogPostBuilder, BottomNavComponent, BoxComponent, BreadcrumbComponent, ButtonComponent, ButtonGroupComponent, CALLOUT_LABELS, CHEV_KEYS, CIRCLE_KEYS, COMMON_COUNTRY_CODES, COMMON_CURRENCIES, CORNER_KEYS, CTA_CARD_DEFAULTS, CURRENCY_INFO, CardComponent, CardSection, CardType, CardsCarouselComponent, ChangeEmailModalComponent, ChangePasswordModalComponent, ChatComposerComponent, ChatInputComponent, ChatWindowComponent, CheckInputComponent, CheckboxRadioInputComponent, ChipGroupComponent, CodeDisplayComponent, CommandDisplayComponent, CommentComponent, CommentInputComponent, CommentSectionComponent, CompanyFooterComponent, ComponentStates, ConfirmationDialogService, ContainerComponent, ContentLoaderComponent, ContentReactionComponent, ContentService, ContentTransformer, ConversationListItemComponent, ConversationService, CookieBannerComponent, CookieSettingsComponent, CountdownComponent, CreateOrgModalComponent, CtaCardComponent, CurrencyInputComponent, DEFAULT_ADS_CONFIG, DEFAULT_APP_CONFIG_SERVICE_CONFIG, DEFAULT_APP_VERSION_SERVICE_CONFIG, DEFAULT_AUTH_CONFIG, DEFAULT_BACK_HEADER, DEFAULT_BUTTON_PRESETS, 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_LOGIN_LOGO, DEFAULT_MODAL_CANCEL_BUTTON, DEFAULT_MODAL_CONFIRM_BUTTON, DEFAULT_PAGE_SIZE_OPTIONS, DEFAULT_PLATFORMS, DEFAULT_POST_UPDATE_GRACE_MS, DEFAULT_PRESETS, DEFAULT_REFRESHER_METADATA, DEFAULT_SKELETON_CONFIG, DEFAULT_SPLASH_SCREEN_CONFIG, DataTableComponent, DateInputComponent, DatePickerComponent, DateRangeInputComponent, DebugConsoleComponent, DeleteAccountModalComponent, DetailSkeletonComponent, DeviceService, DisplayComponent, DividerComponent, DocsApiTableComponent, DocsBreadcrumbComponent, DocsBuilder, DocsCalloutComponent, DocsCodeExampleComponent, DocsLayoutComponent, DocsNavLinksComponent, DocsNavigationService, DocsPageComponent, DocsSearchComponent, DocsSectionComponent, DocsShellComponent, DocsSidebarComponent, DocsTocComponent, DonationService, DownloadService, EditOrgModalComponent, EmptyStateComponent, EntityCardComponent, EntityFeedService, ExpandableTextComponent, FEATURES_LIST_DEFAULTS, FUN_MODAL_DEFAULTS, FabComponent, FaqComponent, FeaturesListComponent, FeedbackFormComponent, FeedbackService, FieldListComponent, FileInputComponent, FirebaseService, FirestoreCollectionFactory, FirestoreService, FontSizeOption, FontSizeSelectorComponent, FontSizeService, FooterComponent, FooterLinksComponent, FormComponent, FormFieldComponent, FormSkeletonComponent, FunHeaderComponent, FunModalComponent, GlassComponent, GlowCardComponent, GlowComponent, GridSkeletonComponent, HANDOFF_ROUTE_PARAM, HANDOFF_TOKEN_PARAM, HandoffService, HapticsService, HasPermissionDirective, HeaderActionsService, HeaderComponent, HintComponent, HorizontalScrollComponent, HrefComponent, HtmlViewerModalComponent, I18nService, IMAGE_DEFAULTS, INITIAL_AUTH_STATE, INITIAL_MFA_STATE, INVITATION_CARD_DEFAULTS, IONIC_COLORS$5 as IONIC_COLORS, Icon, IconComponent, IconService, ImageComponent, ImageCropComponent, ImageService, InAppBrowserService, InfiniteListComponent, InfoComponent, InputI18nHelper, InputType, InvitationCardComponent, InviteMemberModalComponent, ItemListComponent, KNOWN_ROUTES, LANG_STORAGE_KEY$1 as LANG_STORAGE_KEY, LEGAL_CONTENT_CONFIG, LOGGED_IN_HINT_COOKIE, LOGIN_DEFAULTS, LandingSplitComponent, LandingStepsComponent, LanguageSelectorComponent, LanguageSelectorV2Component, LayeredCardComponent, LegalContentService, LegalLinkService, LinkComponent, LinkProcessorService, LinkedProvidersComponent, LinksAccordionComponent, LinksCakeComponent, ListSkeletonComponent, LoadMoreComponent, LoadingDirective, LocalStorageService, LocaleService, LoginAttemptModalComponent, LoginComponent, MEDIA_OBJECT_DEFAULTS, MEMBER_CARD_DEFAULTS, META_SCHEMA_VERSION, METRIC_CARD_DEFAULTS, MODAL_SIZES, MOTIF_KEYS, MOTION, MaintenancePageComponent, MarkdownArticleParserService, MediaObjectComponent, MediaViewerModalComponent, MemberCardComponent, MemberDetailModalComponent, MemberImportModalComponent, MenuComponent, MessageBubbleComponent, MessagingService, MetaService, MetricCardComponent, MfaModalComponent, ModalService, ModalShellComponent, MultiSelectSearchComponent, NUM_KEYS, NavigationService, NetworkBannerComponent, NetworkStatusService, NewsBuilder, NoContentComponent, NotesBoxComponent, NotificationActionService, NotificationPreferencesViewComponent, NotificationsService, NotificationsViewComponent, NumberFromToComponent, NumberStepperComponent, OAUTH_PROVIDERS_INFO, OAuthCallbackComponent, OAuthService, OptionCardsComponent, OrgInfoSheetComponent, OrgService, OrgSwitchService, OrganizationViewComponent, PATTERN_MOTIFS, PATTERN_PALETTES, PATTERN_STYLE_CONFIGS, PLATFORM_CONFIGS, POST_UPDATE_TS_KEY, PageContentComponent, PageLinksComponent, PageRefreshService, PageTemplateComponent, PageWavesComponent, PageWrapperComponent, PaginationComponent, PaginationService, PasswordInputComponent, PatternComponent, PdfService, PermissionCatalogService, PermissionSelectorComponent, PermissionsModalComponent, PermissionsViewComponent, PhoneInputComponent, PickerV2Component, PillComponent, PinInputComponent, PlainCodeBoxComponent, PopoverSelectorComponent, PreferencesService, PreferencesViewComponent, PresetService, PriceTagComponent, PricingTableComponent, ProcessLinksPipe, ProfileContentComponent, ProfileModalComponent, ProfileSkeletonComponent, ProfileViewComponent, ProgressBarComponent, ProgressRingComponent, ProgressStatusComponent, PrompterComponent, QR_PRESETS, QrCodeComponent, QrGeneratorService, QrScannerComponent, QueryBuilder, QuoteBoxComponent, REQUEST_STATUSES, RadioInputComponent, RangeInputComponent, RatingComponent, ReactionBarComponent, ReactionsService, RefresherComponent, RequestFirestoreService, RequestFormBuilderService, RequestFormComponent, RequestModalComponent, RequestService, RightsFooterComponent, RotatingTextComponent, SEARCH_HEADER_DEFAULTS, SETTINGS_SECTIONS_CATALOG, SHAPE_KEYS, SHARE_PROFILE_MODAL_DEFAULTS, SKELETON_LAYOUT_DEFAULT_ROWS, SKELETON_PRESETS, SOLID_KEYS, STATS_BAR_DEFAULTS, STROKE_KEYS, SearchHeaderComponent, SearchSelectorComponent, SearchbarComponent, SectionHeaderComponent, SecurityViewComponent, SegmentControlComponent, SelectSearchComponent, SessionListModalComponent, SessionService, SettingsHubComponent, ShareButtonsComponent, ShareProfileModalComponent, SimpleComponent, SkeletonComponent, SkeletonLayoutComponent, SkeletonService, SplashComponent, SplashScreenService, StatsBarComponent, StatsCardComponent, StepperComponent, StorageService, SwipeCarouselComponent, SwitchOrgModalComponent, TRI_KEYS, TabbedContentComponent, TableSkeletonComponent, TabsComponent, Terminal404Component, TestimonialCardComponent, TestimonialCarouselComponent, TextComponent, TextInputComponent, TextareaInputComponent, ThemeOption, ThemeService, ThreadPanelComponent, TicketCardComponent, TicketCardImageService, TimelineComponent, TitleBlockComponent, TitleComponent, ToastService, ToggleInputComponent, TokenService, ToolbarActionType, ToolbarComponent, TransferOwnershipModalComponent, TranslatePipe, TypedCollection, TypingIndicatorComponent, UPDATE_BANNER_DEFAULT_CONTENT, UPDATE_BANNER_I18N_NAMESPACE, UpdateBannerComponent, UsageMetersComponent, UsageService, UserAvatarComponent, UsernameInputComponent, VALTECH_ADS_CONFIG, VALTECH_APP_CONFIG, VALTECH_APP_VERSION, VALTECH_AUTH_CONFIG, VALTECH_CHAT_CONFIG, VALTECH_COMPANY_LINKS, VALTECH_CONTENT_CONFIG, 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_REACTIONS_CONFIG, VALTECH_SETTINGS_MENU_LINKS, VALTECH_SITE_PATHS, VALTECH_SOCIAL_LINKS, VALTECH_SPLASH_SCREEN, VALTECH_WEB_BASE_URLS, VALTECH_WHATSAPP_CONFIG, VERSION, ValtechErrorService, VerifyViewComponent, WhatsappFabComponent, WhatsappService, WizardComponent, WizardFooterComponent, WorkflowService, applyDefaultValueToControl, authGuard, authInterceptor, authPasswordValidator, beautifyLegalArticle, blogPost, buildCompanyFooterProps, buildFooterLinks, buildLegalLinkResolver, buildPath, buildSettingsCards, button, canSubmitRequestType, collections, connectPageRefresh, createErrorStateProps, createFirebaseConfig, createGlowCardProps, createInitialPaginationState, createNumberFromToField, createPageState, createPermissionLabeler, createRefreshableStream, createTitleProps, docs, errorLoggingInterceptor, extractPathParams, formatClockTime, formatDateSeparator, formatRelativeTime, generatePatternTiles, generateRandomTile, getAppInfo, getAppVersion, getCollectionPath, getDocumentId, getTimeOfDayKey, goToTop, groupPermissionsByScope, guestGuard, hasEmulators, iconButton, interpretError, isAtEnd, isCollectionPath, isDocumentPath, isEmulatorMode, isIonicColor, isKnownRoute, isValidPath, joinPath, maxLength, mulberry32, news, parseMarkdownArticle, permissionGuard, permissionGuardFromRoute, provideLegalContent, provideSplashScreen, provideValtechAboutRoutes, provideValtechAccountRoutes, provideValtechAds, provideValtechApiKeysRoutes, provideValtechAppConfig, provideValtechAppVersion, provideValtechAppVersionHttp, provideValtechAuth, provideValtechAuthInterceptor, provideValtechChat, provideValtechContent, provideValtechDebugConsole, provideValtechDonations, provideValtechErrorHandling, provideValtechFeedback, provideValtechFirebase, provideValtechI18n, provideValtechLegal, provideValtechNotificationPreferencesRoutes, provideValtechNotificationsRoutes, provideValtechOrganizationRoutes, provideValtechPermissionsRoutes, provideValtechPreferencesRoutes, provideValtechPresets, provideValtechProfileRoutes, provideValtechReactions, provideValtechSecurityRoutes, provideValtechSettingsRoutes, provideValtechSite, provideValtechSkeleton, provideValtechWhatsapp, query, rbacGuard, renderPatternSvgInner, replaceSpecialChars, requestSubmitMode, resolveColor, resolveInputDefaultValue, resolveIonicColor, resolveWebBaseUrl, roleGuard, selectableRequestTypes, storagePaths, superAdminGuard, toArticle, validateRoutes };
|
|
74949
75200
|
//# sourceMappingURL=valtech-components.mjs.map
|