metag-sdk-ionic 1.2.7-native-0.81 → 1.2.7-native-0.82
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/dist/src/app/pages/id-vision/components/native-camera-simple/native-camera-simple.component.d.ts +0 -1
- package/dist/src/app/pages/id-vision/components/native-camera-simple/native-camera-simple.component.js +15 -98
- package/dist/src/app/pages/id-vision/components/native-camera-simple/native-camera-simple.component.js.map +1 -1
- package/package.json +1 -1
|
@@ -7,7 +7,6 @@ export declare class NativeCameraSimpleComponent implements OnInit {
|
|
|
7
7
|
text2: string;
|
|
8
8
|
onTakePicture: (file: File) => Promise<boolean>;
|
|
9
9
|
closeRequested?: () => void;
|
|
10
|
-
cameraOpened: boolean;
|
|
11
10
|
constructor(modalController: ModalController);
|
|
12
11
|
ngOnInit(): void;
|
|
13
12
|
openCamera(): Promise<void>;
|
|
@@ -4,44 +4,17 @@ import { IonicModule } from '@ionic/angular';
|
|
|
4
4
|
import { Camera, CameraResultType, CameraSource } from '@capacitor/camera';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
import * as i1 from "@ionic/angular";
|
|
7
|
-
import * as i2 from "@angular/common";
|
|
8
|
-
function NativeCameraSimpleComponent_p_5_Template(rf, ctx) { if (rf & 1) {
|
|
9
|
-
i0.ɵɵelementStart(0, "p");
|
|
10
|
-
i0.ɵɵtext(1);
|
|
11
|
-
i0.ɵɵelementEnd();
|
|
12
|
-
} if (rf & 2) {
|
|
13
|
-
const ctx_r0 = i0.ɵɵnextContext();
|
|
14
|
-
i0.ɵɵadvance();
|
|
15
|
-
i0.ɵɵtextInterpolate(ctx_r0.text2);
|
|
16
|
-
} }
|
|
17
|
-
function NativeCameraSimpleComponent_ion_button_19_Template(rf, ctx) { if (rf & 1) {
|
|
18
|
-
const _r2 = i0.ɵɵgetCurrentView();
|
|
19
|
-
i0.ɵɵelementStart(0, "ion-button", 11);
|
|
20
|
-
i0.ɵɵlistener("click", function NativeCameraSimpleComponent_ion_button_19_Template_ion_button_click_0_listener() { i0.ɵɵrestoreView(_r2); const ctx_r0 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r0.openCamera()); });
|
|
21
|
-
i0.ɵɵelement(1, "ion-icon", 12);
|
|
22
|
-
i0.ɵɵtext(2, " Abrir C\u00E1mara ");
|
|
23
|
-
i0.ɵɵelementEnd();
|
|
24
|
-
} }
|
|
25
|
-
function NativeCameraSimpleComponent_div_20_Template(rf, ctx) { if (rf & 1) {
|
|
26
|
-
i0.ɵɵelementStart(0, "div", 13);
|
|
27
|
-
i0.ɵɵelement(1, "ion-spinner", 14);
|
|
28
|
-
i0.ɵɵelementStart(2, "p");
|
|
29
|
-
i0.ɵɵtext(3, "Abriendo c\u00E1mara...");
|
|
30
|
-
i0.ɵɵelementEnd()();
|
|
31
|
-
} }
|
|
32
7
|
export class NativeCameraSimpleComponent {
|
|
33
8
|
constructor(modalController) {
|
|
34
9
|
this.modalController = modalController;
|
|
35
10
|
this.text1 = 'Capturar Documento';
|
|
36
11
|
this.text2 = '';
|
|
37
|
-
this.cameraOpened = false;
|
|
38
12
|
}
|
|
39
13
|
ngOnInit() {
|
|
40
|
-
//
|
|
41
|
-
|
|
14
|
+
// Auto-abrir la cámara inmediatamente
|
|
15
|
+
setTimeout(() => this.openCamera(), 300);
|
|
42
16
|
}
|
|
43
17
|
async openCamera() {
|
|
44
|
-
this.cameraOpened = true;
|
|
45
18
|
try {
|
|
46
19
|
// Configuración para intentar usar cámara trasera
|
|
47
20
|
const image = await Camera.getPhoto({
|
|
@@ -83,12 +56,8 @@ export class NativeCameraSimpleComponent {
|
|
|
83
56
|
}
|
|
84
57
|
catch (error) {
|
|
85
58
|
console.error('Error al capturar foto:', error);
|
|
86
|
-
// Cualquier error (incluyendo cancelación), volver
|
|
87
|
-
this.
|
|
88
|
-
// Si es una cancelación real del usuario, cerrar el modal después de un momento
|
|
89
|
-
if (error.message?.includes('cancel') || error.message?.includes('User cancelled')) {
|
|
90
|
-
setTimeout(() => this.closeCamera(), 500);
|
|
91
|
-
}
|
|
59
|
+
// Cualquier error (incluyendo cancelación), cerrar modal y volver al slide
|
|
60
|
+
this.closeCamera();
|
|
92
61
|
}
|
|
93
62
|
}
|
|
94
63
|
async dataUrlToFile(dataUrl, filename) {
|
|
@@ -145,76 +114,24 @@ export class NativeCameraSimpleComponent {
|
|
|
145
114
|
}
|
|
146
115
|
}
|
|
147
116
|
static { this.ɵfac = function NativeCameraSimpleComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || NativeCameraSimpleComponent)(i0.ɵɵdirectiveInject(i1.ModalController)); }; }
|
|
148
|
-
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: NativeCameraSimpleComponent, selectors: [["app-native-camera-simple"]], inputs: { text1: "text1", text2: "text2", onTakePicture: "onTakePicture", closeRequested: "closeRequested" }, standalone: true, features: [i0.ɵɵStandaloneFeature], decls:
|
|
149
|
-
i0.ɵɵelementStart(0, "ion-content", 0)(1, "div", 1)
|
|
150
|
-
i0.ɵɵ
|
|
151
|
-
i0.ɵɵ
|
|
152
|
-
i0.ɵɵ
|
|
153
|
-
i0.ɵɵelementStart(6, "div", 4)(7, "div", 5);
|
|
154
|
-
i0.ɵɵelement(8, "ion-icon", 6);
|
|
155
|
-
i0.ɵɵelementStart(9, "span");
|
|
156
|
-
i0.ɵɵtext(10, "Coloca el documento en una superficie plana");
|
|
157
|
-
i0.ɵɵelementEnd()();
|
|
158
|
-
i0.ɵɵelementStart(11, "div", 5);
|
|
159
|
-
i0.ɵɵelement(12, "ion-icon", 7);
|
|
160
|
-
i0.ɵɵelementStart(13, "span");
|
|
161
|
-
i0.ɵɵtext(14, "Aseg\u00FArate de tener buena iluminaci\u00F3n");
|
|
162
|
-
i0.ɵɵelementEnd()();
|
|
163
|
-
i0.ɵɵelementStart(15, "div", 5);
|
|
164
|
-
i0.ɵɵelement(16, "ion-icon", 8);
|
|
165
|
-
i0.ɵɵelementStart(17, "span");
|
|
166
|
-
i0.ɵɵtext(18, "Verifica que todos los datos sean legibles");
|
|
167
|
-
i0.ɵɵelementEnd()()();
|
|
168
|
-
i0.ɵɵtemplate(19, NativeCameraSimpleComponent_ion_button_19_Template, 3, 0, "ion-button", 9)(20, NativeCameraSimpleComponent_div_20_Template, 4, 0, "div", 10);
|
|
117
|
+
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: NativeCameraSimpleComponent, selectors: [["app-native-camera-simple"]], inputs: { text1: "text1", text2: "text2", onTakePicture: "onTakePicture", closeRequested: "closeRequested" }, standalone: true, features: [i0.ɵɵStandaloneFeature], decls: 5, vars: 0, consts: [[1, "native-camera-content"], [1, "camera-loading"], ["name", "crescent"]], template: function NativeCameraSimpleComponent_Template(rf, ctx) { if (rf & 1) {
|
|
118
|
+
i0.ɵɵelementStart(0, "ion-content", 0)(1, "div", 1);
|
|
119
|
+
i0.ɵɵelement(2, "ion-spinner", 2);
|
|
120
|
+
i0.ɵɵelementStart(3, "p");
|
|
121
|
+
i0.ɵɵtext(4, "Abriendo c\u00E1mara...");
|
|
169
122
|
i0.ɵɵelementEnd()()();
|
|
170
|
-
}
|
|
171
|
-
i0.ɵɵadvance(4);
|
|
172
|
-
i0.ɵɵtextInterpolate(ctx.text1);
|
|
173
|
-
i0.ɵɵadvance();
|
|
174
|
-
i0.ɵɵproperty("ngIf", ctx.text2);
|
|
175
|
-
i0.ɵɵadvance(14);
|
|
176
|
-
i0.ɵɵproperty("ngIf", !ctx.cameraOpened);
|
|
177
|
-
i0.ɵɵadvance();
|
|
178
|
-
i0.ɵɵproperty("ngIf", ctx.cameraOpened);
|
|
179
|
-
} }, dependencies: [IonicModule, i1.IonButton, i1.IonContent, i1.IonIcon, i1.IonSpinner, CommonModule, i2.NgIf], styles: [".native-camera-content[_ngcontent-%COMP%] {\n --background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);\n }\n \n .camera-instructions[_ngcontent-%COMP%] {\n display: flex;\n justify-content: center;\n align-items: center;\n height: 100%;\n padding: 20px;\n }\n \n .instructions-container[_ngcontent-%COMP%] {\n width: 100%;\n max-width: 400px;\n text-align: center;\n color: white;\n }\n \n .instructions-container[_ngcontent-%COMP%] h2[_ngcontent-%COMP%] {\n font-size: 24px;\n font-weight: bold;\n margin-bottom: 10px;\n }\n \n .instructions-container[_ngcontent-%COMP%] > p[_ngcontent-%COMP%] {\n font-size: 16px;\n margin-bottom: 30px;\n opacity: 0.9;\n }\n \n .instructions-list[_ngcontent-%COMP%] {\n text-align: left;\n margin-bottom: 30px;\n }\n \n .instruction-item[_ngcontent-%COMP%] {\n display: flex;\n align-items: center;\n margin-bottom: 15px;\n padding: 10px;\n background: rgba(255, 255, 255, 0.1);\n border-radius: 8px;\n }\n \n .instruction-item[_ngcontent-%COMP%] ion-icon[_ngcontent-%COMP%] {\n font-size: 24px;\n margin-right: 12px;\n flex-shrink: 0;\n }\n \n .instruction-item[_ngcontent-%COMP%] span[_ngcontent-%COMP%] {\n font-size: 14px;\n line-height: 1.4;\n }\n \n .opening-camera[_ngcontent-%COMP%] {\n display: flex;\n flex-direction: column;\n align-items: center;\n margin-top: 20px;\n }\n \n .opening-camera[_ngcontent-%COMP%] ion-spinner[_ngcontent-%COMP%] {\n transform: scale(1.5);\n margin-bottom: 15px;\n }\n \n .opening-camera[_ngcontent-%COMP%] p[_ngcontent-%COMP%] {\n font-size: 16px;\n opacity: 0.8;\n }"] }); }
|
|
123
|
+
} }, dependencies: [IonicModule, i1.IonContent, i1.IonSpinner, CommonModule], styles: [".native-camera-content[_ngcontent-%COMP%] {\n --background: #000;\n }\n \n .camera-loading[_ngcontent-%COMP%] {\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: center;\n height: 100%;\n color: white;\n }\n \n .camera-loading[_ngcontent-%COMP%] ion-spinner[_ngcontent-%COMP%] {\n transform: scale(1.5);\n margin-bottom: 20px;\n }\n \n .camera-loading[_ngcontent-%COMP%] p[_ngcontent-%COMP%] {\n font-size: 16px;\n opacity: 0.8;\n }"] }); }
|
|
180
124
|
}
|
|
181
125
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(NativeCameraSimpleComponent, [{
|
|
182
126
|
type: Component,
|
|
183
127
|
args: [{ selector: 'app-native-camera-simple', standalone: true, imports: [IonicModule, CommonModule], template: `
|
|
184
128
|
<ion-content class="native-camera-content">
|
|
185
|
-
<div class="camera-
|
|
186
|
-
<
|
|
187
|
-
|
|
188
|
-
<p *ngIf="text2">{{ text2 }}</p>
|
|
189
|
-
|
|
190
|
-
<div class="instructions-list">
|
|
191
|
-
<div class="instruction-item">
|
|
192
|
-
<ion-icon name="document-outline"></ion-icon>
|
|
193
|
-
<span>Coloca el documento en una superficie plana</span>
|
|
194
|
-
</div>
|
|
195
|
-
<div class="instruction-item">
|
|
196
|
-
<ion-icon name="sunny-outline"></ion-icon>
|
|
197
|
-
<span>Asegúrate de tener buena iluminación</span>
|
|
198
|
-
</div>
|
|
199
|
-
<div class="instruction-item">
|
|
200
|
-
<ion-icon name="eye-outline"></ion-icon>
|
|
201
|
-
<span>Verifica que todos los datos sean legibles</span>
|
|
202
|
-
</div>
|
|
203
|
-
</div>
|
|
204
|
-
|
|
205
|
-
<ion-button expand="block" size="large" (click)="openCamera()" *ngIf="!cameraOpened">
|
|
206
|
-
<ion-icon name="camera" slot="start"></ion-icon>
|
|
207
|
-
Abrir Cámara
|
|
208
|
-
</ion-button>
|
|
209
|
-
|
|
210
|
-
<div *ngIf="cameraOpened" class="opening-camera">
|
|
211
|
-
<ion-spinner name="crescent"></ion-spinner>
|
|
212
|
-
<p>Abriendo cámara...</p>
|
|
213
|
-
</div>
|
|
214
|
-
</div>
|
|
129
|
+
<div class="camera-loading">
|
|
130
|
+
<ion-spinner name="crescent"></ion-spinner>
|
|
131
|
+
<p>Abriendo cámara...</p>
|
|
215
132
|
</div>
|
|
216
133
|
</ion-content>
|
|
217
|
-
`, styles: ["\n .native-camera-content {\n --background:
|
|
134
|
+
`, styles: ["\n .native-camera-content {\n --background: #000;\n }\n \n .camera-loading {\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: center;\n height: 100%;\n color: white;\n }\n \n .camera-loading ion-spinner {\n transform: scale(1.5);\n margin-bottom: 20px;\n }\n \n .camera-loading p {\n font-size: 16px;\n opacity: 0.8;\n }\n "] }]
|
|
218
135
|
}], () => [{ type: i1.ModalController }], { text1: [{
|
|
219
136
|
type: Input
|
|
220
137
|
}], text2: [{
|
|
@@ -224,5 +141,5 @@ export class NativeCameraSimpleComponent {
|
|
|
224
141
|
}], closeRequested: [{
|
|
225
142
|
type: Input
|
|
226
143
|
}] }); })();
|
|
227
|
-
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(NativeCameraSimpleComponent, { className: "NativeCameraSimpleComponent", filePath: "src\\app\\pages\\id-vision\\components\\native-camera-simple\\native-camera-simple.component.ts", lineNumber:
|
|
144
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(NativeCameraSimpleComponent, { className: "NativeCameraSimpleComponent", filePath: "src\\app\\pages\\id-vision\\components\\native-camera-simple\\native-camera-simple.component.ts", lineNumber: 43 }); })();
|
|
228
145
|
//# sourceMappingURL=native-camera-simple.component.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"native-camera-simple.component.js","sourceRoot":"","sources":["../../../../../../../src/app/pages/id-vision/components/native-camera-simple/native-camera-simple.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,KAAK,EAAU,MAAM,eAAe,CAAC;AACzD,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAC/C,OAAO,EAAE,WAAW,EAAmB,MAAM,gBAAgB,CAAC;AAC9D,OAAO,EAAE,MAAM,EAAE,gBAAgB,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAC
|
|
1
|
+
{"version":3,"file":"native-camera-simple.component.js","sourceRoot":"","sources":["../../../../../../../src/app/pages/id-vision/components/native-camera-simple/native-camera-simple.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,KAAK,EAAU,MAAM,eAAe,CAAC;AACzD,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAC/C,OAAO,EAAE,WAAW,EAAmB,MAAM,gBAAgB,CAAC;AAC9D,OAAO,EAAE,MAAM,EAAE,gBAAgB,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAC;;;AAuC3E,MAAM,OAAO,2BAA2B;IAMtC,YAAoB,eAAgC;QAAhC,oBAAe,GAAf,eAAe,CAAiB;QAL3C,UAAK,GAAW,oBAAoB,CAAC;QACrC,UAAK,GAAW,EAAE,CAAC;IAI2B,CAAC;IAExD,QAAQ;QACN,sCAAsC;QACtC,UAAU,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,UAAU,EAAE,EAAE,GAAG,CAAC,CAAC;IAC3C,CAAC;IAED,KAAK,CAAC,UAAU;QAEd,IAAI,CAAC;YACH,kDAAkD;YAClD,MAAM,KAAK,GAAG,MAAM,MAAM,CAAC,QAAQ,CAAC;gBAClC,OAAO,EAAE,EAAE;gBACX,YAAY,EAAE,KAAK;gBACnB,UAAU,EAAE,gBAAgB,CAAC,OAAO;gBACpC,MAAM,EAAE,YAAY,CAAC,MAAM;gBAC3B,aAAa,EAAE,KAAK;gBACpB,kBAAkB,EAAE,IAAI;gBACxB,mDAAmD;gBACnD,iBAAiB,EAAE,IAAI,CAAC,KAAK;gBAC7B,gBAAgB,EAAE,YAAY;gBAC9B,kBAAkB,EAAE,eAAe;aACpC,CAAC,CAAC;YAEH,IAAI,KAAK,CAAC,OAAO,EAAE,CAAC;gBAClB,2BAA2B;gBAC3B,MAAM,IAAI,GAAG,MAAM,IAAI,CAAC,aAAa,CAAC,KAAK,CAAC,OAAO,EAAE,SAAS,CAAC,CAAC;gBAEhE,gCAAgC;gBAChC,IAAI,aAAa,GAAG,IAAI,CAAC;gBACzB,IAAI,IAAI,CAAC,IAAI,GAAG,CAAC,GAAG,IAAI,GAAG,IAAI,EAAE,CAAC;oBAChC,aAAa,GAAG,MAAM,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,CAAC;gBACjD,CAAC;gBAED,mBAAmB;gBACnB,MAAM,OAAO,GAAG,MAAM,IAAI,CAAC,aAAa,CAAC,aAAa,CAAC,CAAC;gBAExD,IAAI,CAAC,OAAO,EAAE,CAAC;oBACb,mDAAmD;oBACnD,IAAI,CAAC,WAAW,EAAE,CAAC;oBACnB,OAAO;gBACT,CAAC;qBAAM,CAAC;oBACN,iEAAiE;oBACjE,IAAI,CAAC,WAAW,EAAE,CAAC;gBACrB,CAAC;YACH,CAAC;iBAAM,CAAC;gBACN,gDAAgD;gBAChD,IAAI,CAAC,WAAW,EAAE,CAAC;YACrB,CAAC;QACH,CAAC;QAAC,OAAO,KAAU,EAAE,CAAC;YACpB,OAAO,CAAC,KAAK,CAAC,yBAAyB,EAAE,KAAK,CAAC,CAAC;YAEhD,2EAA2E;YAC3E,IAAI,CAAC,WAAW,EAAE,CAAC;QACrB,CAAC;IACH,CAAC;IAEO,KAAK,CAAC,aAAa,CAAC,OAAe,EAAE,QAAgB;QAC3D,MAAM,QAAQ,GAAG,MAAM,KAAK,CAAC,OAAO,CAAC,CAAC;QACtC,MAAM,IAAI,GAAG,MAAM,QAAQ,CAAC,IAAI,EAAE,CAAC;QACnC,OAAO,IAAI,IAAI,CAAC,CAAC,IAAI,CAAC,EAAE,QAAQ,EAAE,EAAE,IAAI,EAAE,YAAY,EAAE,CAAC,CAAC;IAC5D,CAAC;IAEO,KAAK,CAAC,aAAa,CAAC,IAAU;QACpC,OAAO,IAAI,OAAO,CAAC,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;YACrC,MAAM,MAAM,GAAG,IAAI,UAAU,EAAE,CAAC;YAEhC,MAAM,CAAC,OAAO,GAAG,MAAM,CAAC;YACxB,MAAM,CAAC,MAAM,GAAG,CAAC,CAAM,EAAE,EAAE;gBACzB,MAAM,GAAG,GAAG,IAAI,KAAK,EAAE,CAAC;gBACxB,GAAG,CAAC,OAAO,GAAG,MAAM,CAAC;gBACrB,GAAG,CAAC,MAAM,GAAG,GAAG,EAAE;oBAChB,MAAM,MAAM,GAAG,QAAQ,CAAC,aAAa,CAAC,QAAQ,CAAC,CAAC;oBAChD,MAAM,GAAG,GAAG,MAAM,CAAC,UAAU,CAAC,IAAI,CAAE,CAAC;oBAErC,MAAM,CAAC,KAAK,GAAG,GAAG,CAAC,KAAK,CAAC;oBACzB,MAAM,CAAC,MAAM,GAAG,GAAG,CAAC,MAAM,CAAC;oBAC3B,GAAG,CAAC,SAAS,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;oBAEzB,IAAI,OAAO,GAAG,IAAI,CAAC;oBACnB,MAAM,QAAQ,GAAG,GAAG,EAAE;wBACpB,MAAM,CAAC,MAAM,CAAC,CAAC,IAAI,EAAE,EAAE;4BACrB,IAAI,IAAI,EAAE,CAAC;gCACT,IAAI,IAAI,CAAC,IAAI,IAAI,CAAC,GAAG,IAAI,GAAG,IAAI,EAAE,CAAC;oCACjC,OAAO,CAAC,IAAI,IAAI,CAAC,CAAC,IAAI,CAAC,EAAE,SAAS,EAAE,EAAE,IAAI,EAAE,YAAY,EAAE,CAAC,CAAC,CAAC;gCAC/D,CAAC;qCAAM,IAAI,OAAO,GAAG,GAAG,EAAE,CAAC;oCACzB,OAAO,IAAI,IAAI,CAAC;oCAChB,QAAQ,EAAE,CAAC;gCACb,CAAC;qCAAM,CAAC;oCACN,OAAO,CAAC,IAAI,IAAI,CAAC,CAAC,IAAI,CAAC,EAAE,SAAS,EAAE,EAAE,IAAI,EAAE,YAAY,EAAE,CAAC,CAAC,CAAC;gCAC/D,CAAC;4BACH,CAAC;iCAAM,CAAC;gCACN,MAAM,CAAC,IAAI,KAAK,CAAC,uBAAuB,CAAC,CAAC,CAAC;4BAC7C,CAAC;wBACH,CAAC,EAAE,YAAY,EAAE,OAAO,CAAC,CAAC;oBAC5B,CAAC,CAAC;oBAEF,QAAQ,EAAE,CAAC;gBACb,CAAC,CAAC;gBACF,GAAG,CAAC,GAAG,GAAG,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC;YAC5B,CAAC,CAAC;YAEF,MAAM,CAAC,aAAa,CAAC,IAAI,CAAC,CAAC;QAC7B,CAAC,CAAC,CAAC;IACL,CAAC;IAED,WAAW;QACT,IAAI,IAAI,CAAC,cAAc,EAAE,CAAC;YACxB,IAAI,CAAC,cAAc,EAAE,CAAC;QACxB,CAAC;aAAM,CAAC;YACN,IAAI,CAAC,eAAe,CAAC,OAAO,EAAE,CAAC;QACjC,CAAC;IACH,CAAC;4HAtHU,2BAA2B;oEAA3B,2BAA2B;YA/BlC,AADF,sCAA2C,aACb;YAC1B,iCAA2C;YAC3C,yBAAG;YAAA,uCAAkB;YAEzB,AADE,AADuB,iBAAI,EACrB,EACM;4BAPN,WAAW,gCAAE,YAAY;;iFAkCxB,2BAA2B;cArCvC,SAAS;2BACE,0BAA0B,cACxB,IAAI,WACP,CAAC,WAAW,EAAE,YAAY,CAAC,YAC1B;;;;;;;GAOT;gDA2BQ,KAAK;kBAAb,KAAK;YACG,KAAK;kBAAb,KAAK;YACG,aAAa;kBAArB,KAAK;YACG,cAAc;kBAAtB,KAAK;;kFAJK,2BAA2B"}
|
package/package.json
CHANGED