metag-sdk-ionic 1.2.7-native-0.104 → 1.2.7-native-0.106

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.
@@ -10,7 +10,7 @@ import * as i1 from "@ionic/angular";
10
10
  import * as i2 from "../../services/modal-services/modal-dpi-services";
11
11
  import * as i3 from "@angular/common";
12
12
  function NativeVideoSelfiePreviewComponent_div_2_Template(rf, ctx) { if (rf & 1) {
13
- i0.ɵɵelementStart(0, "div", 9)(1, "div", 10);
13
+ i0.ɵɵelementStart(0, "div", 10)(1, "div", 11);
14
14
  i0.ɵɵtext(2);
15
15
  i0.ɵɵelementEnd()();
16
16
  } if (rf & 2) {
@@ -19,7 +19,7 @@ function NativeVideoSelfiePreviewComponent_div_2_Template(rf, ctx) { if (rf & 1)
19
19
  i0.ɵɵtextInterpolate(ctx_r0.countdown);
20
20
  } }
21
21
  function NativeVideoSelfiePreviewComponent_div_4_Template(rf, ctx) { if (rf & 1) {
22
- i0.ɵɵelementStart(0, "div", 11)(1, "ion-label", 12);
22
+ i0.ɵɵelementStart(0, "div", 12)(1, "ion-label", 13);
23
23
  i0.ɵɵtext(2);
24
24
  i0.ɵɵelementEnd()();
25
25
  } if (rf & 2) {
@@ -29,13 +29,13 @@ function NativeVideoSelfiePreviewComponent_div_4_Template(rf, ctx) { if (rf & 1)
29
29
  } }
30
30
  function NativeVideoSelfiePreviewComponent_ion_button_7_Template(rf, ctx) { if (rf & 1) {
31
31
  const _r2 = i0.ɵɵgetCurrentView();
32
- i0.ɵɵelementStart(0, "ion-button", 13);
32
+ i0.ɵɵelementStart(0, "ion-button", 14);
33
33
  i0.ɵɵlistener("click", function NativeVideoSelfiePreviewComponent_ion_button_7_Template_ion_button_click_0_listener() { i0.ɵɵrestoreView(_r2); const ctx_r0 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r0.recordVideo()); });
34
34
  i0.ɵɵtext(1, " Iniciar Grabaci\u00F3n ");
35
35
  i0.ɵɵelementEnd();
36
36
  } }
37
37
  function NativeVideoSelfiePreviewComponent_ion_spinner_8_Template(rf, ctx) { if (rf & 1) {
38
- i0.ɵɵelement(0, "ion-spinner", 14);
38
+ i0.ɵɵelement(0, "ion-spinner", 15);
39
39
  } }
40
40
  export class NativeVideoSelfiePreviewComponent {
41
41
  constructor(platform, modalController, alertController, changeDetector, modalDpiServices) {
@@ -84,13 +84,16 @@ export class NativeVideoSelfiePreviewComponent {
84
84
  try {
85
85
  const cameraPreviewOptions = {
86
86
  position: 'front',
87
- toBack: false, // Preview encima de HTML para poder mostrar overlay
87
+ toBack: true, // Preview DETRÁS del HTML para que el overlay sea visible
88
88
  x: 0,
89
89
  y: 0,
90
- width: window.screen.width,
91
- height: window.screen.height,
92
- disableAudio: false
90
+ width: Math.floor(window.screen.width),
91
+ height: Math.floor(window.screen.height),
92
+ disableAudio: false,
93
+ enableZoom: false,
94
+ lockAndroidOrientation: true
93
95
  };
96
+ console.log('[NativeVideoSelfiePreview] Iniciando preview con dimensiones:', cameraPreviewOptions.width, 'x', cameraPreviewOptions.height);
94
97
  await CameraPreview.start(cameraPreviewOptions);
95
98
  console.log('[NativeVideoSelfiePreview] CameraPreview iniciado correctamente');
96
99
  }
@@ -154,7 +157,10 @@ export class NativeVideoSelfiePreviewComponent {
154
157
  console.log('[NativeVideoSelfiePreview] Deteniendo grabación...');
155
158
  // Detener grabación
156
159
  await CameraPreview.stopRecordVideo();
157
- console.log('[NativeVideoSelfiePreview] Video grabado, obteniendo del almacenamiento...');
160
+ console.log('[NativeVideoSelfiePreview] Video grabado, esperando 1 segundo antes de obtener...');
161
+ // Esperar 1 segundo para que el archivo se escriba completamente
162
+ await new Promise(resolve => setTimeout(resolve, 1000));
163
+ console.log('[NativeVideoSelfiePreview] Obteniendo video del almacenamiento...');
158
164
  // El video se guarda automáticamente en el directorio de la app
159
165
  // Necesitamos obtener la lista de videos y tomar el más reciente
160
166
  const videoFile = await this.getLatestVideoFile();
@@ -174,28 +180,32 @@ export class NativeVideoSelfiePreviewComponent {
174
180
  catch (error) {
175
181
  console.error('[NativeVideoSelfiePreview] Error deteniendo grabación:', error);
176
182
  this.isRecording = false;
177
- await this.showError('No se pudo procesar el video.');
183
+ await this.showError('No se pudo procesar el video: ' + error.message);
178
184
  }
179
185
  }
180
186
  async getLatestVideoFile() {
181
187
  try {
188
+ console.log('[NativeVideoSelfiePreview] Obteniendo videos de la galería...');
182
189
  // Obtener videos de la galería usando Media plugin
183
- const { medias } = await Media.getMedias({
190
+ const result = await Media.getMedias({
184
191
  types: 'videos',
185
192
  sort: [{
186
193
  key: 'creationDate',
187
194
  ascending: false
188
195
  }],
189
- quantity: 1 // Solo el más reciente
196
+ quantity: 5 // Obtener los últimos 5 videos para debug
190
197
  });
191
- if (medias && medias.length > 0) {
192
- return medias[0].identifier;
198
+ console.log('[NativeVideoSelfiePreview] Videos encontrados:', result.medias?.length || 0);
199
+ if (result.medias && result.medias.length > 0) {
200
+ console.log('[NativeVideoSelfiePreview] Usando video más reciente:', result.medias[0].identifier);
201
+ return result.medias[0].identifier;
193
202
  }
194
- throw new Error('No se encontró video reciente');
203
+ throw new Error('No se encontraron videos en la galería');
195
204
  }
196
205
  catch (error) {
197
206
  console.error('[NativeVideoSelfiePreview] Error obteniendo video:', error);
198
- throw error;
207
+ console.error('[NativeVideoSelfiePreview] Error details:', JSON.stringify(error));
208
+ throw new Error('No se pudo obtener el video: ' + error.message);
199
209
  }
200
210
  }
201
211
  async pathToFile(videoPath) {
@@ -261,21 +271,22 @@ export class NativeVideoSelfiePreviewComponent {
261
271
  await alert.present();
262
272
  }
263
273
  static { this.ɵfac = function NativeVideoSelfiePreviewComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || NativeVideoSelfiePreviewComponent)(i0.ɵɵdirectiveInject(i1.Platform), i0.ɵɵdirectiveInject(i1.ModalController), i0.ɵɵdirectiveInject(i1.AlertController), i0.ɵɵdirectiveInject(i0.ChangeDetectorRef), i0.ɵɵdirectiveInject(i2.ModalDpiServices)); }; }
264
- static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: NativeVideoSelfiePreviewComponent, selectors: [["app-native-video-selfie-preview"]], inputs: { text1: "text1", text2: "text2", backFunction: "backFunction" }, outputs: { closeRequested: "closeRequested" }, standalone: true, features: [i0.ɵɵStandaloneFeature], decls: 11, vars: 5, consts: [[1, "overlay-container"], ["class", "countdown-overlay", 4, "ngIf"], [1, "circle-overlay"], ["class", "timer", 4, "ngIf"], [1, "instruction"], ["expand", "block", "class", "start-button", 3, "click", 4, "ngIf"], ["name", "crescent", 4, "ngIf"], ["fill", "clear", 1, "close-btn", 3, "click"], ["name", "close"], [1, "countdown-overlay"], [1, "countdown"], [1, "timer"], [1, "timer-label"], ["expand", "block", 1, "start-button", 3, "click"], ["name", "crescent"]], template: function NativeVideoSelfiePreviewComponent_Template(rf, ctx) { if (rf & 1) {
265
- i0.ɵɵelementStart(0, "ion-content")(1, "div", 0);
266
- i0.ɵɵtemplate(2, NativeVideoSelfiePreviewComponent_div_2_Template, 3, 1, "div", 1);
267
- i0.ɵɵelement(3, "div", 2);
268
- i0.ɵɵtemplate(4, NativeVideoSelfiePreviewComponent_div_4_Template, 3, 1, "div", 3);
269
- i0.ɵɵelementStart(5, "p", 4);
274
+ static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: NativeVideoSelfiePreviewComponent, selectors: [["app-native-video-selfie-preview"]], inputs: { text1: "text1", text2: "text2", backFunction: "backFunction" }, outputs: { closeRequested: "closeRequested" }, standalone: true, features: [i0.ɵɵStandaloneFeature], decls: 11, vars: 6, consts: [[3, "fullscreen"], [1, "overlay-container"], ["class", "countdown-overlay", 4, "ngIf"], [1, "circle-overlay"], ["class", "timer", 4, "ngIf"], [1, "instruction"], ["expand", "block", "class", "start-button", 3, "click", 4, "ngIf"], ["name", "crescent", 4, "ngIf"], ["fill", "clear", 1, "close-btn", 3, "click"], ["name", "close"], [1, "countdown-overlay"], [1, "countdown"], [1, "timer"], [1, "timer-label"], ["expand", "block", 1, "start-button", 3, "click"], ["name", "crescent"]], template: function NativeVideoSelfiePreviewComponent_Template(rf, ctx) { if (rf & 1) {
275
+ i0.ɵɵelementStart(0, "ion-content", 0)(1, "div", 1);
276
+ i0.ɵɵtemplate(2, NativeVideoSelfiePreviewComponent_div_2_Template, 3, 1, "div", 2);
277
+ i0.ɵɵelement(3, "div", 3);
278
+ i0.ɵɵtemplate(4, NativeVideoSelfiePreviewComponent_div_4_Template, 3, 1, "div", 4);
279
+ i0.ɵɵelementStart(5, "p", 5);
270
280
  i0.ɵɵtext(6);
271
281
  i0.ɵɵelementEnd();
272
- i0.ɵɵtemplate(7, NativeVideoSelfiePreviewComponent_ion_button_7_Template, 2, 0, "ion-button", 5)(8, NativeVideoSelfiePreviewComponent_ion_spinner_8_Template, 1, 0, "ion-spinner", 6);
282
+ i0.ɵɵtemplate(7, NativeVideoSelfiePreviewComponent_ion_button_7_Template, 2, 0, "ion-button", 6)(8, NativeVideoSelfiePreviewComponent_ion_spinner_8_Template, 1, 0, "ion-spinner", 7);
273
283
  i0.ɵɵelementEnd();
274
- i0.ɵɵelementStart(9, "ion-button", 7);
284
+ i0.ɵɵelementStart(9, "ion-button", 8);
275
285
  i0.ɵɵlistener("click", function NativeVideoSelfiePreviewComponent_Template_ion_button_click_9_listener() { return ctx.closeRequestedFunction(); });
276
- i0.ɵɵelement(10, "ion-icon", 8);
286
+ i0.ɵɵelement(10, "ion-icon", 9);
277
287
  i0.ɵɵelementEnd()();
278
288
  } if (rf & 2) {
289
+ i0.ɵɵproperty("fullscreen", true);
279
290
  i0.ɵɵadvance(2);
280
291
  i0.ɵɵproperty("ngIf", ctx.countdown > 0);
281
292
  i0.ɵɵadvance(2);
@@ -286,13 +297,13 @@ export class NativeVideoSelfiePreviewComponent {
286
297
  i0.ɵɵproperty("ngIf", !ctx.isRecording && !ctx.isLoading);
287
298
  i0.ɵɵadvance();
288
299
  i0.ɵɵproperty("ngIf", ctx.isLoading);
289
- } }, dependencies: [IonicModule, i1.IonButton, i1.IonContent, i1.IonIcon, i1.IonLabel, i1.IonSpinner, CommonModule, i3.NgIf], styles: ["ion-content[_ngcontent-%COMP%] {\n --background: transparent;\n }\n \n .overlay-container[_ngcontent-%COMP%] {\n position: absolute;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n display: flex;\n flex-direction: column;\n align-items: center;\n justify-content: center;\n z-index: 10;\n pointer-events: none;\n }\n\n .overlay-container[_ngcontent-%COMP%] ion-button[_ngcontent-%COMP%], \n .overlay-container[_ngcontent-%COMP%] ion-spinner[_ngcontent-%COMP%] {\n pointer-events: all;\n }\n\n .countdown-overlay[_ngcontent-%COMP%] {\n position: absolute;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n background: rgba(0, 0, 0, 0.7);\n display: flex;\n justify-content: center;\n align-items: center;\n z-index: 20;\n }\n\n .countdown[_ngcontent-%COMP%] {\n font-size: 120px;\n color: white;\n font-weight: bold;\n animation: _ngcontent-%COMP%_pulse 1s ease-in-out;\n }\n\n @keyframes _ngcontent-%COMP%_pulse {\n 0%, 100% { opacity: 1; transform: scale(1); }\n 50% { opacity: 0.8; transform: scale(0.95); }\n }\n \n .circle-overlay[_ngcontent-%COMP%] {\n position: absolute;\n width: 300px;\n height: 300px;\n border: 4px solid #9c27b0;\n border-radius: 50%;\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n box-shadow: 0 0 20px rgba(156, 39, 176, 0.5);\n animation: _ngcontent-%COMP%_pulse-border 2s ease-in-out infinite;\n }\n\n @keyframes _ngcontent-%COMP%_pulse-border {\n 0%, 100% { border-color: #9c27b0; box-shadow: 0 0 20px rgba(156, 39, 176, 0.5); }\n 50% { border-color: #7b1fa2; box-shadow: 0 0 30px rgba(123, 31, 162, 0.8); }\n }\n \n .timer[_ngcontent-%COMP%] {\n position: absolute;\n top: 15%;\n z-index: 15;\n }\n\n .timer-label[_ngcontent-%COMP%] {\n color: #f44336;\n font-size: 32px;\n font-weight: bold;\n text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);\n }\n \n .instruction[_ngcontent-%COMP%] {\n position: absolute;\n bottom: 150px;\n color: white;\n text-align: center;\n padding: 0 30px;\n font-size: 16px;\n text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);\n background: rgba(0, 0, 0, 0.5);\n border-radius: 10px;\n padding: 15px 20px;\n }\n \n .start-button[_ngcontent-%COMP%] {\n position: absolute;\n bottom: 50px;\n left: 50%;\n transform: translateX(-50%);\n width: 80%;\n max-width: 300px;\n --background: #9c27b0;\n --background-hover: #7b1fa2;\n --border-radius: 25px;\n font-weight: bold;\n }\n\n ion-spinner[_ngcontent-%COMP%] {\n position: absolute;\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n --color: white;\n width: 60px;\n height: 60px;\n }\n \n .close-btn[_ngcontent-%COMP%] {\n position: absolute;\n top: 20px;\n right: 20px;\n z-index: 25;\n --color: white;\n --background: rgba(0, 0, 0, 0.5);\n --border-radius: 50%;\n width: 50px;\n height: 50px;\n }"] }); }
300
+ } }, dependencies: [IonicModule, i1.IonButton, i1.IonContent, i1.IonIcon, i1.IonLabel, i1.IonSpinner, CommonModule, i3.NgIf], styles: ["[_nghost-%COMP%] {\n display: block;\n width: 100%;\n height: 100%;\n }\n\n ion-content[_ngcontent-%COMP%] {\n --background: transparent;\n --ion-background-color: transparent;\n background: transparent !important;\n }\n\n ion-content[_ngcontent-%COMP%]::part(background) {\n background: transparent;\n }\n\n ion-content[_ngcontent-%COMP%]::part(scroll) {\n background: transparent;\n }\n \n .overlay-container[_ngcontent-%COMP%] {\n position: fixed;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n display: flex;\n flex-direction: column;\n align-items: center;\n justify-content: center;\n z-index: 999;\n pointer-events: none;\n }\n\n .overlay-container[_ngcontent-%COMP%] ion-button[_ngcontent-%COMP%], \n .overlay-container[_ngcontent-%COMP%] ion-spinner[_ngcontent-%COMP%] {\n pointer-events: all;\n }\n\n .countdown-overlay[_ngcontent-%COMP%] {\n position: absolute;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n background: rgba(0, 0, 0, 0.7);\n display: flex;\n justify-content: center;\n align-items: center;\n z-index: 20;\n }\n\n .countdown[_ngcontent-%COMP%] {\n font-size: 120px;\n color: white;\n font-weight: bold;\n animation: _ngcontent-%COMP%_pulse 1s ease-in-out;\n }\n\n @keyframes _ngcontent-%COMP%_pulse {\n 0%, 100% { opacity: 1; transform: scale(1); }\n 50% { opacity: 0.8; transform: scale(0.95); }\n }\n \n .circle-overlay[_ngcontent-%COMP%] {\n position: absolute;\n width: 300px;\n height: 300px;\n border: 4px solid #9c27b0;\n border-radius: 50%;\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n box-shadow: 0 0 20px rgba(156, 39, 176, 0.5);\n animation: _ngcontent-%COMP%_pulse-border 2s ease-in-out infinite;\n }\n\n @keyframes _ngcontent-%COMP%_pulse-border {\n 0%, 100% { border-color: #9c27b0; box-shadow: 0 0 20px rgba(156, 39, 176, 0.5); }\n 50% { border-color: #7b1fa2; box-shadow: 0 0 30px rgba(123, 31, 162, 0.8); }\n }\n \n .timer[_ngcontent-%COMP%] {\n position: absolute;\n top: 15%;\n z-index: 15;\n }\n\n .timer-label[_ngcontent-%COMP%] {\n color: #f44336;\n font-size: 32px;\n font-weight: bold;\n text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);\n }\n \n .instruction[_ngcontent-%COMP%] {\n position: absolute;\n bottom: 150px;\n color: white;\n text-align: center;\n padding: 0 30px;\n font-size: 16px;\n text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);\n background: rgba(0, 0, 0, 0.5);\n border-radius: 10px;\n padding: 15px 20px;\n }\n \n .start-button[_ngcontent-%COMP%] {\n position: absolute;\n bottom: 50px;\n left: 50%;\n transform: translateX(-50%);\n width: 80%;\n max-width: 300px;\n --background: #9c27b0;\n --background-hover: #7b1fa2;\n --border-radius: 25px;\n font-weight: bold;\n }\n\n ion-spinner[_ngcontent-%COMP%] {\n position: absolute;\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n --color: white;\n width: 60px;\n height: 60px;\n }\n \n .close-btn[_ngcontent-%COMP%] {\n position: fixed;\n top: 20px;\n right: 20px;\n z-index: 1000;\n --color: white;\n --background: rgba(0, 0, 0, 0.5);\n --border-radius: 50%;\n width: 50px;\n height: 50px;\n pointer-events: all;\n }"] }); }
290
301
  }
291
302
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(NativeVideoSelfiePreviewComponent, [{
292
303
  type: Component,
293
304
  args: [{ selector: 'app-native-video-selfie-preview', standalone: true, imports: [IonicModule, CommonModule], template: `
294
- <ion-content>
295
- <!-- Preview nativo se renderiza aquí automáticamente -->
305
+ <ion-content [fullscreen]="true">
306
+ <!-- Preview nativo se renderiza aquí automáticamente detrás del HTML -->
296
307
 
297
308
  <!-- Overlay HTML personalizado encima del preview -->
298
309
  <div class="overlay-container">
@@ -337,7 +348,7 @@ export class NativeVideoSelfiePreviewComponent {
337
348
  <ion-icon name="close"></ion-icon>
338
349
  </ion-button>
339
350
  </ion-content>
340
- `, encapsulation: ViewEncapsulation.Emulated, styles: ["\n ion-content {\n --background: transparent;\n }\n \n .overlay-container {\n position: absolute;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n display: flex;\n flex-direction: column;\n align-items: center;\n justify-content: center;\n z-index: 10;\n pointer-events: none;\n }\n\n .overlay-container ion-button,\n .overlay-container ion-spinner {\n pointer-events: all;\n }\n\n .countdown-overlay {\n position: absolute;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n background: rgba(0, 0, 0, 0.7);\n display: flex;\n justify-content: center;\n align-items: center;\n z-index: 20;\n }\n\n .countdown {\n font-size: 120px;\n color: white;\n font-weight: bold;\n animation: pulse 1s ease-in-out;\n }\n\n @keyframes pulse {\n 0%, 100% { opacity: 1; transform: scale(1); }\n 50% { opacity: 0.8; transform: scale(0.95); }\n }\n \n .circle-overlay {\n position: absolute;\n width: 300px;\n height: 300px;\n border: 4px solid #9c27b0;\n border-radius: 50%;\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n box-shadow: 0 0 20px rgba(156, 39, 176, 0.5);\n animation: pulse-border 2s ease-in-out infinite;\n }\n\n @keyframes pulse-border {\n 0%, 100% { border-color: #9c27b0; box-shadow: 0 0 20px rgba(156, 39, 176, 0.5); }\n 50% { border-color: #7b1fa2; box-shadow: 0 0 30px rgba(123, 31, 162, 0.8); }\n }\n \n .timer {\n position: absolute;\n top: 15%;\n z-index: 15;\n }\n\n .timer-label {\n color: #f44336;\n font-size: 32px;\n font-weight: bold;\n text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);\n }\n \n .instruction {\n position: absolute;\n bottom: 150px;\n color: white;\n text-align: center;\n padding: 0 30px;\n font-size: 16px;\n text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);\n background: rgba(0, 0, 0, 0.5);\n border-radius: 10px;\n padding: 15px 20px;\n }\n \n .start-button {\n position: absolute;\n bottom: 50px;\n left: 50%;\n transform: translateX(-50%);\n width: 80%;\n max-width: 300px;\n --background: #9c27b0;\n --background-hover: #7b1fa2;\n --border-radius: 25px;\n font-weight: bold;\n }\n\n ion-spinner {\n position: absolute;\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n --color: white;\n width: 60px;\n height: 60px;\n }\n \n .close-btn {\n position: absolute;\n top: 20px;\n right: 20px;\n z-index: 25;\n --color: white;\n --background: rgba(0, 0, 0, 0.5);\n --border-radius: 50%;\n width: 50px;\n height: 50px;\n }\n "] }]
351
+ `, encapsulation: ViewEncapsulation.Emulated, styles: ["\n :host {\n display: block;\n width: 100%;\n height: 100%;\n }\n\n ion-content {\n --background: transparent;\n --ion-background-color: transparent;\n background: transparent !important;\n }\n\n ion-content::part(background) {\n background: transparent;\n }\n\n ion-content::part(scroll) {\n background: transparent;\n }\n \n .overlay-container {\n position: fixed;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n display: flex;\n flex-direction: column;\n align-items: center;\n justify-content: center;\n z-index: 999;\n pointer-events: none;\n }\n\n .overlay-container ion-button,\n .overlay-container ion-spinner {\n pointer-events: all;\n }\n\n .countdown-overlay {\n position: absolute;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n background: rgba(0, 0, 0, 0.7);\n display: flex;\n justify-content: center;\n align-items: center;\n z-index: 20;\n }\n\n .countdown {\n font-size: 120px;\n color: white;\n font-weight: bold;\n animation: pulse 1s ease-in-out;\n }\n\n @keyframes pulse {\n 0%, 100% { opacity: 1; transform: scale(1); }\n 50% { opacity: 0.8; transform: scale(0.95); }\n }\n \n .circle-overlay {\n position: absolute;\n width: 300px;\n height: 300px;\n border: 4px solid #9c27b0;\n border-radius: 50%;\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n box-shadow: 0 0 20px rgba(156, 39, 176, 0.5);\n animation: pulse-border 2s ease-in-out infinite;\n }\n\n @keyframes pulse-border {\n 0%, 100% { border-color: #9c27b0; box-shadow: 0 0 20px rgba(156, 39, 176, 0.5); }\n 50% { border-color: #7b1fa2; box-shadow: 0 0 30px rgba(123, 31, 162, 0.8); }\n }\n \n .timer {\n position: absolute;\n top: 15%;\n z-index: 15;\n }\n\n .timer-label {\n color: #f44336;\n font-size: 32px;\n font-weight: bold;\n text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);\n }\n \n .instruction {\n position: absolute;\n bottom: 150px;\n color: white;\n text-align: center;\n padding: 0 30px;\n font-size: 16px;\n text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);\n background: rgba(0, 0, 0, 0.5);\n border-radius: 10px;\n padding: 15px 20px;\n }\n \n .start-button {\n position: absolute;\n bottom: 50px;\n left: 50%;\n transform: translateX(-50%);\n width: 80%;\n max-width: 300px;\n --background: #9c27b0;\n --background-hover: #7b1fa2;\n --border-radius: 25px;\n font-weight: bold;\n }\n\n ion-spinner {\n position: absolute;\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n --color: white;\n width: 60px;\n height: 60px;\n }\n \n .close-btn {\n position: fixed;\n top: 20px;\n right: 20px;\n z-index: 1000;\n --color: white;\n --background: rgba(0, 0, 0, 0.5);\n --border-radius: 50%;\n width: 50px;\n height: 50px;\n pointer-events: all;\n }\n "] }]
341
352
  }], () => [{ type: i1.Platform }, { type: i1.ModalController }, { type: i1.AlertController }, { type: i0.ChangeDetectorRef }, { type: i2.ModalDpiServices }], { text1: [{
342
353
  type: Input
343
354
  }], text2: [{
@@ -347,5 +358,5 @@ export class NativeVideoSelfiePreviewComponent {
347
358
  }], closeRequested: [{
348
359
  type: Output
349
360
  }] }); })();
350
- (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(NativeVideoSelfiePreviewComponent, { className: "NativeVideoSelfiePreviewComponent", filePath: "src\\app\\pages\\id-vision\\components\\native-video-selfie-preview\\native-video-selfie-preview.component.ts", lineNumber: 195 }); })();
361
+ (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(NativeVideoSelfiePreviewComponent, { className: "NativeVideoSelfiePreviewComponent", filePath: "src\\app\\pages\\id-vision\\components\\native-video-selfie-preview\\native-video-selfie-preview.component.ts", lineNumber: 212 }); })();
351
362
  //# sourceMappingURL=native-video-selfie-preview.component.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"native-video-selfie-preview.component.js","sourceRoot":"","sources":["../../../../../../../src/app/pages/id-vision/components/native-video-selfie-preview/native-video-selfie-preview.component.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"native-video-selfie-preview.component.js","sourceRoot":"","sources":["../../../../../../../src/app/pages/id-vision/components/native-video-selfie-preview/native-video-selfie-preview.component.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "metag-sdk-ionic",
3
- "version": "1.2.7-native-0.104",
3
+ "version": "1.2.7-native-0.106",
4
4
  "author": "FGE",
5
5
  "description": "SDK de MetaG para validación de documentos y prueba de vida con Angular e Ionic.",
6
6
  "homepage": "https://ionicframework.com/",