valtech-components 4.0.938 → 4.0.939
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/molecules/group-picker/group-picker.component.mjs +97 -0
- package/esm2022/lib/components/organisms/group-members/group-members.component.mjs +178 -0
- package/esm2022/lib/services/groups/groups.service.mjs +92 -0
- package/esm2022/lib/services/groups/types.mjs +2 -0
- package/esm2022/lib/version.mjs +2 -2
- package/esm2022/public-api.mjs +4 -1
- package/fesm2022/valtech-components.mjs +352 -2
- package/fesm2022/valtech-components.mjs.map +1 -1
- package/lib/components/molecules/group-picker/group-picker.component.d.ts +28 -0
- package/lib/components/organisms/group-members/group-members.component.d.ts +43 -0
- package/lib/services/groups/groups.service.d.ts +39 -0
- package/lib/services/groups/types.d.ts +69 -0
- package/lib/version.d.ts +1 -1
- package/package.json +1 -1
- package/public-api.d.ts +4 -0
|
@@ -66,7 +66,7 @@ import fixWebmDuration from 'fix-webm-duration';
|
|
|
66
66
|
* Current version of valtech-components.
|
|
67
67
|
* This is automatically updated during the publish process.
|
|
68
68
|
*/
|
|
69
|
-
const VERSION = '4.0.
|
|
69
|
+
const VERSION = '4.0.939';
|
|
70
70
|
|
|
71
71
|
function evaluateValtechAccess(rule, context, features = {}, visitedFeatures = new Set()) {
|
|
72
72
|
if (rule == null)
|
|
@@ -74969,6 +74969,356 @@ function beautifyLegalArticle(article) {
|
|
|
74969
74969
|
};
|
|
74970
74970
|
}
|
|
74971
74971
|
|
|
74972
|
+
/**
|
|
74973
|
+
* Cliente de `/v2/groups/*` (ADR-083). Servicio de PLATAFORMA: no sabe qué es
|
|
74974
|
+
* un blueprint ni un refugio, solo agrupa recursos y personas. Cada app lo
|
|
74975
|
+
* consume igual — es lo que evita reescribir esta capa por producto.
|
|
74976
|
+
*/
|
|
74977
|
+
class GroupsService {
|
|
74978
|
+
constructor(config, http) {
|
|
74979
|
+
this.config = config;
|
|
74980
|
+
this.http = http;
|
|
74981
|
+
}
|
|
74982
|
+
get baseUrl() {
|
|
74983
|
+
return `${this.config.apiUrl}/v2/groups`;
|
|
74984
|
+
}
|
|
74985
|
+
/** Grupos activos de la organización (filtrados por app en el backend). */
|
|
74986
|
+
listGroups() {
|
|
74987
|
+
return this.http
|
|
74988
|
+
.get(this.baseUrl)
|
|
74989
|
+
.pipe(map$1((r) => r.groups ?? []));
|
|
74990
|
+
}
|
|
74991
|
+
/** Incluye archivados: para la pantalla de administración. */
|
|
74992
|
+
listAllGroups() {
|
|
74993
|
+
return this.http
|
|
74994
|
+
.get(`${this.baseUrl}/all`)
|
|
74995
|
+
.pipe(map$1((r) => r.groups ?? []));
|
|
74996
|
+
}
|
|
74997
|
+
getGroup(id) {
|
|
74998
|
+
return this.http
|
|
74999
|
+
.get(`${this.baseUrl}/${id}`)
|
|
75000
|
+
.pipe(map$1((r) => r.group));
|
|
75001
|
+
}
|
|
75002
|
+
createGroup(req) {
|
|
75003
|
+
return this.http
|
|
75004
|
+
.post(this.baseUrl, req)
|
|
75005
|
+
.pipe(map$1((r) => r.group));
|
|
75006
|
+
}
|
|
75007
|
+
updateGroup(id, req) {
|
|
75008
|
+
return this.http
|
|
75009
|
+
.put(`${this.baseUrl}/${id}`, req)
|
|
75010
|
+
.pipe(map$1((r) => r.group));
|
|
75011
|
+
}
|
|
75012
|
+
/**
|
|
75013
|
+
* No hay `deleteGroup`: el ADR-083 decidió que un servicio de plataforma no
|
|
75014
|
+
* puede saber si un vertical todavía apunta al grupo, y como "sin grupo"
|
|
75015
|
+
* significa visible para toda la organización, borrarlo publicaría sus
|
|
75016
|
+
* recursos a la planta entera. `archiveGroup`/`restoreGroup` cubren la
|
|
75017
|
+
* necesidad real sin ese riesgo.
|
|
75018
|
+
*/
|
|
75019
|
+
archiveGroup(id) {
|
|
75020
|
+
return this.http
|
|
75021
|
+
.post(`${this.baseUrl}/${id}/archive`, {})
|
|
75022
|
+
.pipe(map$1((r) => r.group));
|
|
75023
|
+
}
|
|
75024
|
+
restoreGroup(id) {
|
|
75025
|
+
return this.http
|
|
75026
|
+
.post(`${this.baseUrl}/${id}/restore`, {})
|
|
75027
|
+
.pipe(map$1((r) => r.group));
|
|
75028
|
+
}
|
|
75029
|
+
listMembers(groupId) {
|
|
75030
|
+
return this.http
|
|
75031
|
+
.get(`${this.baseUrl}/${groupId}/members`)
|
|
75032
|
+
.pipe(map$1((r) => r.members ?? []));
|
|
75033
|
+
}
|
|
75034
|
+
addMember(groupId, req) {
|
|
75035
|
+
return this.http
|
|
75036
|
+
.post(`${this.baseUrl}/${groupId}/members`, req)
|
|
75037
|
+
.pipe(map$1((r) => r.members ?? []));
|
|
75038
|
+
}
|
|
75039
|
+
removeMember(groupId, userId) {
|
|
75040
|
+
return this.http
|
|
75041
|
+
.delete(`${this.baseUrl}/${groupId}/members/${userId}`)
|
|
75042
|
+
.pipe(map$1((r) => r.members ?? []));
|
|
75043
|
+
}
|
|
75044
|
+
/** Los grupos del usuario actual. Referencial: el filtrado real corre en el backend. */
|
|
75045
|
+
myGroups() {
|
|
75046
|
+
return this.http.get(`${this.baseUrl}/mine`);
|
|
75047
|
+
}
|
|
75048
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: GroupsService, deps: [{ token: VALTECH_AUTH_CONFIG }, { token: i1$3.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
75049
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: GroupsService, providedIn: 'root' }); }
|
|
75050
|
+
}
|
|
75051
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: GroupsService, decorators: [{
|
|
75052
|
+
type: Injectable,
|
|
75053
|
+
args: [{ providedIn: 'root' }]
|
|
75054
|
+
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
|
75055
|
+
type: Inject,
|
|
75056
|
+
args: [VALTECH_AUTH_CONFIG]
|
|
75057
|
+
}] }, { type: i1$3.HttpClient }] });
|
|
75058
|
+
|
|
75059
|
+
/**
|
|
75060
|
+
* val-group-picker — elegir el grupo dueño de un recurso (ADR-083).
|
|
75061
|
+
*
|
|
75062
|
+
* Se auto-carga: pide sus propios grupos a `GroupsService` en vez de esperar
|
|
75063
|
+
* que el consumer se los pase. Es la razón por la que existe como componente y
|
|
75064
|
+
* no como un `<select>` armado a mano en cada app — "una línea, una etiqueta
|
|
75065
|
+
* i18n" (ver ADR-083 §"Qué se construye una sola vez").
|
|
75066
|
+
*
|
|
75067
|
+
* Sin texto hardcodeado: los labels llegan por `@Input` (lib i18n-agnostic).
|
|
75068
|
+
* Cada app pone su palabra ("Equipo", "Sucursal", "Refugio").
|
|
75069
|
+
*/
|
|
75070
|
+
class GroupPickerComponent {
|
|
75071
|
+
constructor() {
|
|
75072
|
+
this.label = '';
|
|
75073
|
+
this.placeholder = '';
|
|
75074
|
+
this.noGroupLabel = '';
|
|
75075
|
+
this.value = null;
|
|
75076
|
+
this.disabled = false;
|
|
75077
|
+
this.valueChange = new EventEmitter();
|
|
75078
|
+
this.groupsSvc = inject(GroupsService);
|
|
75079
|
+
this.groups = [];
|
|
75080
|
+
}
|
|
75081
|
+
ngOnInit() {
|
|
75082
|
+
this.groupsSvc.listGroups().subscribe({
|
|
75083
|
+
next: (g) => (this.groups = g),
|
|
75084
|
+
// Best-effort: si la lectura falla, el picker queda con la opción "sin
|
|
75085
|
+
// grupo" únicamente. No es un error bloqueante — crear el recurso sin
|
|
75086
|
+
// asignar sigue siendo válido.
|
|
75087
|
+
error: () => (this.groups = []),
|
|
75088
|
+
});
|
|
75089
|
+
}
|
|
75090
|
+
onChange(v) {
|
|
75091
|
+
this.value = v || null;
|
|
75092
|
+
this.valueChange.emit(this.value);
|
|
75093
|
+
}
|
|
75094
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: GroupPickerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
75095
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.14", type: GroupPickerComponent, isStandalone: true, selector: "val-group-picker", inputs: { label: "label", placeholder: "placeholder", noGroupLabel: "noGroupLabel", value: "value", disabled: "disabled" }, outputs: { valueChange: "valueChange" }, ngImport: i0, template: `
|
|
75096
|
+
<ion-select
|
|
75097
|
+
[label]="label"
|
|
75098
|
+
[placeholder]="placeholder"
|
|
75099
|
+
[value]="value ?? ''"
|
|
75100
|
+
[disabled]="disabled"
|
|
75101
|
+
interface="popover"
|
|
75102
|
+
(ionChange)="onChange($event.detail.value)"
|
|
75103
|
+
>
|
|
75104
|
+
<!-- Opción vacía SIEMPRE disponible: un recurso sin grupo es visible para
|
|
75105
|
+
toda la organización (ADR-083, decisión 3), no un estado inválido. -->
|
|
75106
|
+
<ion-select-option value="">{{ noGroupLabel }}</ion-select-option>
|
|
75107
|
+
@for (g of groups; track g.id) {
|
|
75108
|
+
<ion-select-option [value]="g.id">{{ g.name }}</ion-select-option>
|
|
75109
|
+
}
|
|
75110
|
+
</ion-select>
|
|
75111
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "component", type: IonSelect, selector: "ion-select", inputs: ["cancelText", "color", "compareWith", "disabled", "errorText", "expandedIcon", "fill", "helperText", "interface", "interfaceOptions", "justify", "label", "labelPlacement", "mode", "multiple", "name", "okText", "placeholder", "selectedText", "shape", "toggleIcon", "value"] }, { kind: "component", type: IonSelectOption, selector: "ion-select-option", inputs: ["disabled", "value"] }] }); }
|
|
75112
|
+
}
|
|
75113
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: GroupPickerComponent, decorators: [{
|
|
75114
|
+
type: Component,
|
|
75115
|
+
args: [{
|
|
75116
|
+
selector: 'val-group-picker',
|
|
75117
|
+
standalone: true,
|
|
75118
|
+
imports: [CommonModule, IonSelect, IonSelectOption],
|
|
75119
|
+
template: `
|
|
75120
|
+
<ion-select
|
|
75121
|
+
[label]="label"
|
|
75122
|
+
[placeholder]="placeholder"
|
|
75123
|
+
[value]="value ?? ''"
|
|
75124
|
+
[disabled]="disabled"
|
|
75125
|
+
interface="popover"
|
|
75126
|
+
(ionChange)="onChange($event.detail.value)"
|
|
75127
|
+
>
|
|
75128
|
+
<!-- Opción vacía SIEMPRE disponible: un recurso sin grupo es visible para
|
|
75129
|
+
toda la organización (ADR-083, decisión 3), no un estado inválido. -->
|
|
75130
|
+
<ion-select-option value="">{{ noGroupLabel }}</ion-select-option>
|
|
75131
|
+
@for (g of groups; track g.id) {
|
|
75132
|
+
<ion-select-option [value]="g.id">{{ g.name }}</ion-select-option>
|
|
75133
|
+
}
|
|
75134
|
+
</ion-select>
|
|
75135
|
+
`,
|
|
75136
|
+
}]
|
|
75137
|
+
}], propDecorators: { label: [{
|
|
75138
|
+
type: Input
|
|
75139
|
+
}], placeholder: [{
|
|
75140
|
+
type: Input
|
|
75141
|
+
}], noGroupLabel: [{
|
|
75142
|
+
type: Input
|
|
75143
|
+
}], value: [{
|
|
75144
|
+
type: Input
|
|
75145
|
+
}], disabled: [{
|
|
75146
|
+
type: Input
|
|
75147
|
+
}], valueChange: [{
|
|
75148
|
+
type: Output
|
|
75149
|
+
}] } });
|
|
75150
|
+
|
|
75151
|
+
/**
|
|
75152
|
+
* val-group-members — administrar la membresía de UN grupo (ADR-083).
|
|
75153
|
+
*
|
|
75154
|
+
* Deliberadamente NO trae su propio selector de personas: la fuente de
|
|
75155
|
+
* "quiénes son los miembros elegibles de la organización" varía por app (org
|
|
75156
|
+
* members, invitados, etc.), así que se recibe por `@Input candidates` en vez
|
|
75157
|
+
* de que este organismo importe un servicio de organización que no le
|
|
75158
|
+
* corresponde. Sin candidatos, igual funciona: solo lista y quita.
|
|
75159
|
+
*
|
|
75160
|
+
* Sin texto hardcodeado (lib i18n-agnostic): los labels llegan por `@Input`.
|
|
75161
|
+
*/
|
|
75162
|
+
class GroupMembersComponent {
|
|
75163
|
+
constructor() {
|
|
75164
|
+
/** Personas elegibles para agregar. Vacío = el organismo solo lista/quita. */
|
|
75165
|
+
this.candidates = [];
|
|
75166
|
+
this.addPlaceholder = '';
|
|
75167
|
+
this.emptyLabel = '';
|
|
75168
|
+
this.removeLabel = '';
|
|
75169
|
+
this.membersChange = new EventEmitter();
|
|
75170
|
+
this.groupsSvc = inject(GroupsService);
|
|
75171
|
+
this.members = [];
|
|
75172
|
+
this.busy = false;
|
|
75173
|
+
}
|
|
75174
|
+
get removeButtonProps() {
|
|
75175
|
+
return {
|
|
75176
|
+
text: this.removeLabel,
|
|
75177
|
+
color: 'dark',
|
|
75178
|
+
fill: 'clear',
|
|
75179
|
+
size: 'small',
|
|
75180
|
+
shape: 'round',
|
|
75181
|
+
type: 'button',
|
|
75182
|
+
state: this.busy ? ComponentStates.DISABLED : ComponentStates.ENABLED,
|
|
75183
|
+
};
|
|
75184
|
+
}
|
|
75185
|
+
ngOnChanges(changes) {
|
|
75186
|
+
if (changes['groupId'] && this.groupId) {
|
|
75187
|
+
this.reload();
|
|
75188
|
+
}
|
|
75189
|
+
}
|
|
75190
|
+
reload() {
|
|
75191
|
+
this.groupsSvc.listMembers(this.groupId).subscribe({
|
|
75192
|
+
next: (m) => (this.members = m),
|
|
75193
|
+
error: () => (this.members = []),
|
|
75194
|
+
});
|
|
75195
|
+
}
|
|
75196
|
+
/** Candidatos que todavía no están en el grupo — evita ofrecer un alta duplicada. */
|
|
75197
|
+
eligible() {
|
|
75198
|
+
const current = new Set(this.members.map((m) => m.userId));
|
|
75199
|
+
return this.candidates.filter((c) => !current.has(c.userId));
|
|
75200
|
+
}
|
|
75201
|
+
nameFor(userId) {
|
|
75202
|
+
const c = this.candidates.find((x) => x.userId === userId);
|
|
75203
|
+
return c?.name || c?.email || userId;
|
|
75204
|
+
}
|
|
75205
|
+
add(userId) {
|
|
75206
|
+
if (!userId || this.busy)
|
|
75207
|
+
return;
|
|
75208
|
+
this.busy = true;
|
|
75209
|
+
this.groupsSvc.addMember(this.groupId, { userId }).subscribe({
|
|
75210
|
+
next: (members) => {
|
|
75211
|
+
this.members = members;
|
|
75212
|
+
this.busy = false;
|
|
75213
|
+
this.membersChange.emit(members);
|
|
75214
|
+
},
|
|
75215
|
+
error: () => (this.busy = false),
|
|
75216
|
+
});
|
|
75217
|
+
}
|
|
75218
|
+
remove(userId) {
|
|
75219
|
+
if (this.busy)
|
|
75220
|
+
return;
|
|
75221
|
+
this.busy = true;
|
|
75222
|
+
this.groupsSvc.removeMember(this.groupId, userId).subscribe({
|
|
75223
|
+
next: (members) => {
|
|
75224
|
+
this.members = members;
|
|
75225
|
+
this.busy = false;
|
|
75226
|
+
this.membersChange.emit(members);
|
|
75227
|
+
},
|
|
75228
|
+
error: () => (this.busy = false),
|
|
75229
|
+
});
|
|
75230
|
+
}
|
|
75231
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: GroupMembersComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
75232
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.14", type: GroupMembersComponent, isStandalone: true, selector: "val-group-members", inputs: { groupId: "groupId", candidates: "candidates", addPlaceholder: "addPlaceholder", emptyLabel: "emptyLabel", removeLabel: "removeLabel" }, outputs: { membersChange: "membersChange" }, usesOnChanges: true, ngImport: i0, template: `
|
|
75233
|
+
<div class="group-members">
|
|
75234
|
+
@if (candidates.length > 0) {
|
|
75235
|
+
<div class="group-members__add">
|
|
75236
|
+
<ion-select
|
|
75237
|
+
[placeholder]="addPlaceholder"
|
|
75238
|
+
interface="popover"
|
|
75239
|
+
[disabled]="busy"
|
|
75240
|
+
(ionChange)="add($event.detail.value)"
|
|
75241
|
+
>
|
|
75242
|
+
@for (c of eligible(); track c.userId) {
|
|
75243
|
+
<ion-select-option [value]="c.userId">
|
|
75244
|
+
{{ c.name || c.email || c.userId }}
|
|
75245
|
+
</ion-select-option>
|
|
75246
|
+
}
|
|
75247
|
+
</ion-select>
|
|
75248
|
+
</div>
|
|
75249
|
+
}
|
|
75250
|
+
|
|
75251
|
+
@if (members.length === 0) {
|
|
75252
|
+
<p class="group-members__empty">{{ emptyLabel }}</p>
|
|
75253
|
+
} @else {
|
|
75254
|
+
<ul class="group-members__list">
|
|
75255
|
+
@for (m of members; track m.userId) {
|
|
75256
|
+
<li class="group-members__row">
|
|
75257
|
+
<span class="group-members__name">{{ nameFor(m.userId) }}</span>
|
|
75258
|
+
<val-button
|
|
75259
|
+
[props]="removeButtonProps"
|
|
75260
|
+
(onClick)="remove(m.userId)"
|
|
75261
|
+
/>
|
|
75262
|
+
</li>
|
|
75263
|
+
}
|
|
75264
|
+
</ul>
|
|
75265
|
+
}
|
|
75266
|
+
</div>
|
|
75267
|
+
`, isInline: true, styles: [".group-members{display:flex;flex-direction:column;gap:12px}.group-members__empty{font-size:.875rem;color:var(--ion-color-medium, #92949c);margin:0}.group-members__list{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:4px}.group-members__row{display:flex;align-items:center;justify-content:space-between;padding:8px 12px;border-radius:10px;background:var(--ion-color-light, #f4f5f8)}.group-members__name{font-size:.9375rem;color:var(--ion-text-color, #000)}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "component", type: IonSelect, selector: "ion-select", inputs: ["cancelText", "color", "compareWith", "disabled", "errorText", "expandedIcon", "fill", "helperText", "interface", "interfaceOptions", "justify", "label", "labelPlacement", "mode", "multiple", "name", "okText", "placeholder", "selectedText", "shape", "toggleIcon", "value"] }, { kind: "component", type: IonSelectOption, selector: "ion-select-option", inputs: ["disabled", "value"] }, { kind: "component", type: ButtonComponent, selector: "val-button", inputs: ["preset", "props"], outputs: ["onClick"] }] }); }
|
|
75268
|
+
}
|
|
75269
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: GroupMembersComponent, decorators: [{
|
|
75270
|
+
type: Component,
|
|
75271
|
+
args: [{ selector: 'val-group-members', standalone: true, imports: [CommonModule, IonIcon, IonSelect, IonSelectOption, ButtonComponent], template: `
|
|
75272
|
+
<div class="group-members">
|
|
75273
|
+
@if (candidates.length > 0) {
|
|
75274
|
+
<div class="group-members__add">
|
|
75275
|
+
<ion-select
|
|
75276
|
+
[placeholder]="addPlaceholder"
|
|
75277
|
+
interface="popover"
|
|
75278
|
+
[disabled]="busy"
|
|
75279
|
+
(ionChange)="add($event.detail.value)"
|
|
75280
|
+
>
|
|
75281
|
+
@for (c of eligible(); track c.userId) {
|
|
75282
|
+
<ion-select-option [value]="c.userId">
|
|
75283
|
+
{{ c.name || c.email || c.userId }}
|
|
75284
|
+
</ion-select-option>
|
|
75285
|
+
}
|
|
75286
|
+
</ion-select>
|
|
75287
|
+
</div>
|
|
75288
|
+
}
|
|
75289
|
+
|
|
75290
|
+
@if (members.length === 0) {
|
|
75291
|
+
<p class="group-members__empty">{{ emptyLabel }}</p>
|
|
75292
|
+
} @else {
|
|
75293
|
+
<ul class="group-members__list">
|
|
75294
|
+
@for (m of members; track m.userId) {
|
|
75295
|
+
<li class="group-members__row">
|
|
75296
|
+
<span class="group-members__name">{{ nameFor(m.userId) }}</span>
|
|
75297
|
+
<val-button
|
|
75298
|
+
[props]="removeButtonProps"
|
|
75299
|
+
(onClick)="remove(m.userId)"
|
|
75300
|
+
/>
|
|
75301
|
+
</li>
|
|
75302
|
+
}
|
|
75303
|
+
</ul>
|
|
75304
|
+
}
|
|
75305
|
+
</div>
|
|
75306
|
+
`, styles: [".group-members{display:flex;flex-direction:column;gap:12px}.group-members__empty{font-size:.875rem;color:var(--ion-color-medium, #92949c);margin:0}.group-members__list{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:4px}.group-members__row{display:flex;align-items:center;justify-content:space-between;padding:8px 12px;border-radius:10px;background:var(--ion-color-light, #f4f5f8)}.group-members__name{font-size:.9375rem;color:var(--ion-text-color, #000)}\n"] }]
|
|
75307
|
+
}], propDecorators: { groupId: [{
|
|
75308
|
+
type: Input,
|
|
75309
|
+
args: [{ required: true }]
|
|
75310
|
+
}], candidates: [{
|
|
75311
|
+
type: Input
|
|
75312
|
+
}], addPlaceholder: [{
|
|
75313
|
+
type: Input
|
|
75314
|
+
}], emptyLabel: [{
|
|
75315
|
+
type: Input
|
|
75316
|
+
}], removeLabel: [{
|
|
75317
|
+
type: Input
|
|
75318
|
+
}], membersChange: [{
|
|
75319
|
+
type: Output
|
|
75320
|
+
}] } });
|
|
75321
|
+
|
|
74972
75322
|
const PERSONA_CONFIG = new InjectionToken('PERSONA_CONFIG');
|
|
74973
75323
|
/**
|
|
74974
75324
|
* Servicio genérico de persona activa (ADR-056/061-063: extraído de Chesed
|
|
@@ -88572,5 +88922,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
88572
88922
|
* Generated bundle index. Do not edit.
|
|
88573
88923
|
*/
|
|
88574
88924
|
|
|
88575
|
-
export { ACCESS_REQUEST_TYPE, ACCESS_REQUEST_VIEW_I18N, 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, AccessControlService, AccessRequestViewComponent, AccordionComponent, AccountViewComponent, ActionCardComponent, ActionHeaderComponent, ActionType, AdSlotComponent, AdsLoaderService, AdsService, AlertBoxComponent, AnalyticsErrorHandler, AnalyticsRouterTracker, AnalyticsService, AnimalCardComponent, AnimatedTerminalComponent, ApiKeyCreateModalComponent, ApiKeyService, ApiKeysModalComponent, ApiKeysViewComponent, AppConfigService, AppVersionService, ArticleBuilder, ArticleCardComponent, ArticleComponent, ArticleStripComponent, AttachmentUploaderComponent, AuthBackgroundComponent, AuthCtaComponent, AuthService, AuthStateService, AuthStorageService, AuthSyncService, AvatarComponent, AvatarUploadComponent, BOTTOM_NAV_DEFAULTS, BackButtonComponent, BannerComponent, BlogPostBuilder, BottomNavComponent, BoxComponent, BreadcrumbComponent, BubbleBlitzGameComponent, ButtonComponent, ButtonGroupComponent, CALLOUT_LABELS, CHEV_KEYS, CIRCLE_KEYS, COMMON_COUNTRY_CODES, COMMON_CURRENCIES, CORNER_KEYS, CTA_CARD_DEFAULTS, CURRENCY_INFO, CanAccessDirective, CardComponent, CardSection, CardType, CardsCarouselComponent, ChangeEmailModalComponent, ChangePasswordModalComponent, ChatComposerComponent, ChatInputComponent, ChatWindowComponent, CheckInputComponent, CheckboxRadioInputComponent, ChipGroupComponent, ChipSelectComponent, ClientTelemetryService, CodeDisplayComponent, CodeValidatorComponent, CollectionsService, CommandDisplayComponent, CommentComponent, CommentInputComponent, CommentSectionComponent, CompanyFooterComponent, ComponentStates, ConfirmationDialogService, ConfirmationDialogV2Component, ContainerComponent, ContentLoaderComponent, ContentReactionComponent, ContentReactionModalComponent, 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_CANONICAL_FIELD_ALIASES, 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, DangerSectionComponent, DataTableComponent, DatasetPaginationService, 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, EXPECTED_NOT_FOUND, EditOrgModalComponent, EmptyStateComponent, EntityCardComponent, EntityFeedService, EntradaSerializada, ExpandableTextComponent, ExternalBrowserService, FEATURES_LIST_DEFAULTS, FUN_MODAL_DEFAULTS, FabComponent, FaqComponent, FeaturesListComponent, FeedbackFormComponent, FeedbackService, FieldListComponent, FieldOptionsEditorComponent, FileInputComponent, FirebaseService, FirestoreCollectionFactory, FirestoreService, FolderTabsComponent, FontSizeOption, FontSizeSelectorComponent, FontSizeService, FooterComponent, FooterLinksComponent, FormComponent, FormFieldComponent, FormSchemaBuilderService, FormSkeletonComponent, FunHeaderComponent, FunModalComponent, GAME_AVATAR_CATALOG_SIZE_PER_STYLE, GameAvatarComponent, GameProfileService, GlassComponent, GlowCardComponent, GlowComponent, GridSkeletonComponent, HANDOFF_ROUTE_PARAM, HANDOFF_TOKEN_PARAM, HandleService, 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, LightRippleDirective, LinkComponent, LinkProcessorService, LinkedProvidersComponent, LinksAccordionComponent, LinksCakeComponent, ListSkeletonComponent, LiveReadFallbackService, LoadMoreComponent, LoadingDirective, LocalStorageService, LocaleService, LoginAttemptModalComponent, LoginComponent, MEDIA_OBJECT_DEFAULTS, MEMBER_CARD_DEFAULTS, METADATA_LIST_DEFAULTS, META_SCHEMA_VERSION, METRIC_CARD_DEFAULTS, MINI_GAMES_I18N, MINI_GAME_PLAYER_AVATARS, MINI_GAME_PLAYER_COLORS, MODAL_SIZES, MOTIF_KEYS, MOTION, MaintenancePageComponent, MarkdownArticleParserService, MediaObjectComponent, MediaViewerModalComponent, MemberCardComponent, MemberDetailModalComponent, MemberImportModalComponent, MemoryGameComponent, MenuComponent, MessageBubbleComponent, MessagingService, MetaService, MetadataListComponent, MeteringService, MetricCardComponent, MfaModalComponent, MiniGameCalloutComponent, MiniGamePlayerProfileService, MiniGameScorePopComponent, MiniGamesMenuComponent, ModalLayoutComponent, ModalService, ModalShellComponent, MultiSelectSearchComponent, NUM_KEYS, NavigationService, NetworkBannerComponent, NetworkStatusService, NewsBuilder, NoContentComponent, NotesBoxComponent, NoticeComponent, NotificationActionService, NotificationPreferencesViewComponent, NotificationsService, NotificationsViewComponent, NumberFromToComponent, NumberPickerComponent, NumberStepperComponent, OAUTH_PROVIDERS_INFO, OAuthCallbackComponent, OAuthService, OperationReferenceComponent, OptionCardsComponent, OptionSheetComponent, OptionSheetService, OrgInfoSheetComponent, OrgService, OrgSwitchService, OrganizationViewComponent, PATTERN_MOTIFS, PATTERN_PALETTES, PATTERN_STYLE_CONFIGS, PERSONA_CONFIG, PLATFORM_CONFIGS, POST_UPDATE_TS_KEY, PageContentComponent, PageLinksComponent, PageRefreshService, PageTemplateComponent, PageWavesComponent, PageWrapperComponent, PaginationComponent, PaginationService, PasswordInputComponent, PatternComponent, PdfService, PermissionCatalogService, PermissionSelectorComponent, PermissionsModalComponent, PermissionsViewComponent, PersonaService, PhoneDisplayComponent, PhoneFormatService, PhoneInputComponent, PickerV2Component, PillComponent, PinInputComponent, PlainCodeBoxComponent, PopoverSelectorComponent, PreferencesService, PreferencesViewComponent, PresetService, PriceTagComponent, PricingTableComponent, ProcessLinksPipe, ProfileCardComponent, ProfileContentComponent, ProfileModalComponent, ProfileSkeletonComponent, ProfileViewComponent, ProgressBarComponent, ProgressRingComponent, ProgressStatusComponent, PrompterComponent, QR_PRESETS, QrCodeComponent, QrGeneratorService, QrScannerComponent, QueryBuilder, QuoteBoxComponent, REQUEST_STATUSES, RadioInputComponent, RangeInputComponent, RatingComponent, RbacService, ReactionBarComponent, ReactionsService, RefresherComponent, RequestFirestoreService, RequestFormBuilderService, RequestFormComponent, RequestModalComponent, RequestReviewPanelComponent, RequestService, RetroAudioService, RightsFooterComponent, RoleManagerComponent, 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, SessionTransitionOverlayComponent, SettingsHubComponent, ShareButtonsComponent, ShareProfileModalComponent, SimonGameComponent, SimpleComponent, SkeletonComponent, SkeletonLayoutComponent, SkeletonService, SplashComponent, SplashScreenService, StatsBarComponent, StatsCardComponent, StepperComponent, StorageService, SupportTicketCtaComponent, SwipeCarouselComponent, SwitchOrgModalComponent, TRI_KEYS, TabbedContentComponent, TableSkeletonComponent, TabsComponent, Terminal404Component, TestimonialCardComponent, TestimonialCarouselComponent, TextComponent, TextInputComponent, TextareaInputComponent, ThemeOption, ThemeSelectorComponent, 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_ACCESS_FEATURES, VALTECH_ADS_CONFIG, VALTECH_APP_CONFIG, VALTECH_APP_VERSION, VALTECH_AUTH_CONFIG, VALTECH_CHAT_CONFIG, VALTECH_COLLECTIONS_CONFIG, VALTECH_COMPANY_LINKS, VALTECH_CONTENT_CONFIG, VALTECH_COPYRIGHT_TEMPLATE, VALTECH_DEBUG_CONSOLE, VALTECH_DEFAULT_CONTENT, VALTECH_DIAGRAMS, VALTECH_DONATION_CONFIG, VALTECH_FEEDBACK_CONFIG, VALTECH_FIREBASE_CONFIG, VALTECH_FOOTER_I18N, VALTECH_FOOTER_LOGO, VALTECH_LANGUAGE_SELECTOR, VALTECH_LEGAL_CONFIG, VALTECH_LEGAL_ENTITY, VALTECH_MENU_I18N, 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, VAL_REGISTERED_ICONS, VERSION, ValQuotaWarningComponent, ValtechErrorService, VerifyViewComponent, WhatsappFabComponent, WhatsappService, WizardComponent, WizardFooterComponent, WorkflowService, accessGuard, accessGuardFromRoute, applyDefaultValueToControl, authGuard, authInterceptor, authPasswordValidator, beautifyLegalArticle, blogPost, buildCompanyFooterProps, buildFooterLinks, buildLegalLinkResolver, buildPath, buildPlatformMenu, buildSettingsCards, buildSideNavItemsFromBottomNav, button, canSubmitRequestType, classifyChip, collections, connectPageRefresh, createErrorStateProps, createFirebaseConfig, createGameAvatarCatalog, createGameAvatarProps, createGlowCardProps, createInitialDatasetState, createInitialPaginationState, createNumberFromToField, createPageState, createPermissionLabeler, createRefreshableStream, createTitleProps, datasetPageFromLegacyCursor, docs, errorLoggingInterceptor, evaluateValtechAccess, extractPathParams, firmaDeSesionDeCustomToken, formatClockTime, formatDateSeparator, formatRelativeTime, gameAvatarCatalogEntryToMetadata, gameAvatarDataUri, 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, providePersona, provideSplashScreen, provideValtechAboutRoutes, provideValtechAccessFeatures, provideValtechAccountRoutes, provideValtechAds, provideValtechApiKeysRoutes, provideValtechAppConfig, provideValtechAppVersion, provideValtechAppVersionHttp, provideValtechAuth, provideValtechAuthInterceptor, provideValtechChat, provideValtechCollections, provideValtechContent, provideValtechDebugConsole, provideValtechDiagrams, provideValtechDonations, provideValtechErrorHandling, provideValtechFeedback, provideValtechFirebase, provideValtechI18n, provideValtechLegal, provideValtechNotificationClickActions, provideValtechNotificationPreferencesRoutes, provideValtechNotificationsRoutes, provideValtechOrganizationRoutes, provideValtechPermissionsRoutes, provideValtechPreferencesRoutes, provideValtechPresets, provideValtechProfileRoutes, provideValtechReactions, provideValtechSecurityRoutes, provideValtechSettingsRoutes, provideValtechSite, provideValtechSkeleton, provideValtechWhatsapp, query, rbacGuard, renderGameAvatarSvg, renderPatternSvgInner, replaceSpecialChars, requestSubmitMode, resolveColor, resolveCopyrightTemplate, resolveInputDefaultValue, resolveIonicColor, resolveWebBaseUrl, roleGuard, roleOf, selectableRequestTypes, storagePaths, suggestEmailFix, superAdminGuard, supportedGameAvatarStyles, toArticle, validateRoutes };
|
|
88925
|
+
export { ACCESS_REQUEST_TYPE, ACCESS_REQUEST_VIEW_I18N, 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, AccessControlService, AccessRequestViewComponent, AccordionComponent, AccountViewComponent, ActionCardComponent, ActionHeaderComponent, ActionType, AdSlotComponent, AdsLoaderService, AdsService, AlertBoxComponent, AnalyticsErrorHandler, AnalyticsRouterTracker, AnalyticsService, AnimalCardComponent, AnimatedTerminalComponent, ApiKeyCreateModalComponent, ApiKeyService, ApiKeysModalComponent, ApiKeysViewComponent, AppConfigService, AppVersionService, ArticleBuilder, ArticleCardComponent, ArticleComponent, ArticleStripComponent, AttachmentUploaderComponent, AuthBackgroundComponent, AuthCtaComponent, AuthService, AuthStateService, AuthStorageService, AuthSyncService, AvatarComponent, AvatarUploadComponent, BOTTOM_NAV_DEFAULTS, BackButtonComponent, BannerComponent, BlogPostBuilder, BottomNavComponent, BoxComponent, BreadcrumbComponent, BubbleBlitzGameComponent, ButtonComponent, ButtonGroupComponent, CALLOUT_LABELS, CHEV_KEYS, CIRCLE_KEYS, COMMON_COUNTRY_CODES, COMMON_CURRENCIES, CORNER_KEYS, CTA_CARD_DEFAULTS, CURRENCY_INFO, CanAccessDirective, CardComponent, CardSection, CardType, CardsCarouselComponent, ChangeEmailModalComponent, ChangePasswordModalComponent, ChatComposerComponent, ChatInputComponent, ChatWindowComponent, CheckInputComponent, CheckboxRadioInputComponent, ChipGroupComponent, ChipSelectComponent, ClientTelemetryService, CodeDisplayComponent, CodeValidatorComponent, CollectionsService, CommandDisplayComponent, CommentComponent, CommentInputComponent, CommentSectionComponent, CompanyFooterComponent, ComponentStates, ConfirmationDialogService, ConfirmationDialogV2Component, ContainerComponent, ContentLoaderComponent, ContentReactionComponent, ContentReactionModalComponent, 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_CANONICAL_FIELD_ALIASES, 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, DangerSectionComponent, DataTableComponent, DatasetPaginationService, 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, EXPECTED_NOT_FOUND, EditOrgModalComponent, EmptyStateComponent, EntityCardComponent, EntityFeedService, EntradaSerializada, ExpandableTextComponent, ExternalBrowserService, FEATURES_LIST_DEFAULTS, FUN_MODAL_DEFAULTS, FabComponent, FaqComponent, FeaturesListComponent, FeedbackFormComponent, FeedbackService, FieldListComponent, FieldOptionsEditorComponent, FileInputComponent, FirebaseService, FirestoreCollectionFactory, FirestoreService, FolderTabsComponent, FontSizeOption, FontSizeSelectorComponent, FontSizeService, FooterComponent, FooterLinksComponent, FormComponent, FormFieldComponent, FormSchemaBuilderService, FormSkeletonComponent, FunHeaderComponent, FunModalComponent, GAME_AVATAR_CATALOG_SIZE_PER_STYLE, GameAvatarComponent, GameProfileService, GlassComponent, GlowCardComponent, GlowComponent, GridSkeletonComponent, GroupMembersComponent, GroupPickerComponent, GroupsService, HANDOFF_ROUTE_PARAM, HANDOFF_TOKEN_PARAM, HandleService, 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, LightRippleDirective, LinkComponent, LinkProcessorService, LinkedProvidersComponent, LinksAccordionComponent, LinksCakeComponent, ListSkeletonComponent, LiveReadFallbackService, LoadMoreComponent, LoadingDirective, LocalStorageService, LocaleService, LoginAttemptModalComponent, LoginComponent, MEDIA_OBJECT_DEFAULTS, MEMBER_CARD_DEFAULTS, METADATA_LIST_DEFAULTS, META_SCHEMA_VERSION, METRIC_CARD_DEFAULTS, MINI_GAMES_I18N, MINI_GAME_PLAYER_AVATARS, MINI_GAME_PLAYER_COLORS, MODAL_SIZES, MOTIF_KEYS, MOTION, MaintenancePageComponent, MarkdownArticleParserService, MediaObjectComponent, MediaViewerModalComponent, MemberCardComponent, MemberDetailModalComponent, MemberImportModalComponent, MemoryGameComponent, MenuComponent, MessageBubbleComponent, MessagingService, MetaService, MetadataListComponent, MeteringService, MetricCardComponent, MfaModalComponent, MiniGameCalloutComponent, MiniGamePlayerProfileService, MiniGameScorePopComponent, MiniGamesMenuComponent, ModalLayoutComponent, ModalService, ModalShellComponent, MultiSelectSearchComponent, NUM_KEYS, NavigationService, NetworkBannerComponent, NetworkStatusService, NewsBuilder, NoContentComponent, NotesBoxComponent, NoticeComponent, NotificationActionService, NotificationPreferencesViewComponent, NotificationsService, NotificationsViewComponent, NumberFromToComponent, NumberPickerComponent, NumberStepperComponent, OAUTH_PROVIDERS_INFO, OAuthCallbackComponent, OAuthService, OperationReferenceComponent, OptionCardsComponent, OptionSheetComponent, OptionSheetService, OrgInfoSheetComponent, OrgService, OrgSwitchService, OrganizationViewComponent, PATTERN_MOTIFS, PATTERN_PALETTES, PATTERN_STYLE_CONFIGS, PERSONA_CONFIG, PLATFORM_CONFIGS, POST_UPDATE_TS_KEY, PageContentComponent, PageLinksComponent, PageRefreshService, PageTemplateComponent, PageWavesComponent, PageWrapperComponent, PaginationComponent, PaginationService, PasswordInputComponent, PatternComponent, PdfService, PermissionCatalogService, PermissionSelectorComponent, PermissionsModalComponent, PermissionsViewComponent, PersonaService, PhoneDisplayComponent, PhoneFormatService, PhoneInputComponent, PickerV2Component, PillComponent, PinInputComponent, PlainCodeBoxComponent, PopoverSelectorComponent, PreferencesService, PreferencesViewComponent, PresetService, PriceTagComponent, PricingTableComponent, ProcessLinksPipe, ProfileCardComponent, ProfileContentComponent, ProfileModalComponent, ProfileSkeletonComponent, ProfileViewComponent, ProgressBarComponent, ProgressRingComponent, ProgressStatusComponent, PrompterComponent, QR_PRESETS, QrCodeComponent, QrGeneratorService, QrScannerComponent, QueryBuilder, QuoteBoxComponent, REQUEST_STATUSES, RadioInputComponent, RangeInputComponent, RatingComponent, RbacService, ReactionBarComponent, ReactionsService, RefresherComponent, RequestFirestoreService, RequestFormBuilderService, RequestFormComponent, RequestModalComponent, RequestReviewPanelComponent, RequestService, RetroAudioService, RightsFooterComponent, RoleManagerComponent, 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, SessionTransitionOverlayComponent, SettingsHubComponent, ShareButtonsComponent, ShareProfileModalComponent, SimonGameComponent, SimpleComponent, SkeletonComponent, SkeletonLayoutComponent, SkeletonService, SplashComponent, SplashScreenService, StatsBarComponent, StatsCardComponent, StepperComponent, StorageService, SupportTicketCtaComponent, SwipeCarouselComponent, SwitchOrgModalComponent, TRI_KEYS, TabbedContentComponent, TableSkeletonComponent, TabsComponent, Terminal404Component, TestimonialCardComponent, TestimonialCarouselComponent, TextComponent, TextInputComponent, TextareaInputComponent, ThemeOption, ThemeSelectorComponent, 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_ACCESS_FEATURES, VALTECH_ADS_CONFIG, VALTECH_APP_CONFIG, VALTECH_APP_VERSION, VALTECH_AUTH_CONFIG, VALTECH_CHAT_CONFIG, VALTECH_COLLECTIONS_CONFIG, VALTECH_COMPANY_LINKS, VALTECH_CONTENT_CONFIG, VALTECH_COPYRIGHT_TEMPLATE, VALTECH_DEBUG_CONSOLE, VALTECH_DEFAULT_CONTENT, VALTECH_DIAGRAMS, VALTECH_DONATION_CONFIG, VALTECH_FEEDBACK_CONFIG, VALTECH_FIREBASE_CONFIG, VALTECH_FOOTER_I18N, VALTECH_FOOTER_LOGO, VALTECH_LANGUAGE_SELECTOR, VALTECH_LEGAL_CONFIG, VALTECH_LEGAL_ENTITY, VALTECH_MENU_I18N, 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, VAL_REGISTERED_ICONS, VERSION, ValQuotaWarningComponent, ValtechErrorService, VerifyViewComponent, WhatsappFabComponent, WhatsappService, WizardComponent, WizardFooterComponent, WorkflowService, accessGuard, accessGuardFromRoute, applyDefaultValueToControl, authGuard, authInterceptor, authPasswordValidator, beautifyLegalArticle, blogPost, buildCompanyFooterProps, buildFooterLinks, buildLegalLinkResolver, buildPath, buildPlatformMenu, buildSettingsCards, buildSideNavItemsFromBottomNav, button, canSubmitRequestType, classifyChip, collections, connectPageRefresh, createErrorStateProps, createFirebaseConfig, createGameAvatarCatalog, createGameAvatarProps, createGlowCardProps, createInitialDatasetState, createInitialPaginationState, createNumberFromToField, createPageState, createPermissionLabeler, createRefreshableStream, createTitleProps, datasetPageFromLegacyCursor, docs, errorLoggingInterceptor, evaluateValtechAccess, extractPathParams, firmaDeSesionDeCustomToken, formatClockTime, formatDateSeparator, formatRelativeTime, gameAvatarCatalogEntryToMetadata, gameAvatarDataUri, 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, providePersona, provideSplashScreen, provideValtechAboutRoutes, provideValtechAccessFeatures, provideValtechAccountRoutes, provideValtechAds, provideValtechApiKeysRoutes, provideValtechAppConfig, provideValtechAppVersion, provideValtechAppVersionHttp, provideValtechAuth, provideValtechAuthInterceptor, provideValtechChat, provideValtechCollections, provideValtechContent, provideValtechDebugConsole, provideValtechDiagrams, provideValtechDonations, provideValtechErrorHandling, provideValtechFeedback, provideValtechFirebase, provideValtechI18n, provideValtechLegal, provideValtechNotificationClickActions, provideValtechNotificationPreferencesRoutes, provideValtechNotificationsRoutes, provideValtechOrganizationRoutes, provideValtechPermissionsRoutes, provideValtechPreferencesRoutes, provideValtechPresets, provideValtechProfileRoutes, provideValtechReactions, provideValtechSecurityRoutes, provideValtechSettingsRoutes, provideValtechSite, provideValtechSkeleton, provideValtechWhatsapp, query, rbacGuard, renderGameAvatarSvg, renderPatternSvgInner, replaceSpecialChars, requestSubmitMode, resolveColor, resolveCopyrightTemplate, resolveInputDefaultValue, resolveIonicColor, resolveWebBaseUrl, roleGuard, roleOf, selectableRequestTypes, storagePaths, suggestEmailFix, superAdminGuard, supportedGameAvatarStyles, toArticle, validateRoutes };
|
|
88576
88926
|
//# sourceMappingURL=valtech-components.mjs.map
|