@nuralogix.ai/web-measurement-embedded-app 0.1.0-alpha.1
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/LICENSE +12 -0
- package/README.md +74 -0
- package/dist/app.css +1466 -0
- package/dist/app.mjs +830 -0
- package/dist/assets/decompress.json +1 -0
- package/dist/assets/extraction/extraction_wasm_0.1.0-alpha.22.json +1 -0
- package/dist/assets/extraction_worker_0.1.0-alpha.22_js.json +1 -0
- package/dist/assets/facetracker_worker_0.1.0-alpha.22_js.json +1 -0
- package/dist/assets/taskVision/model/face_landmarker.task +0 -0
- package/dist/assets/taskVision/wasm/vision_wasm_internal_js.json +1 -0
- package/dist/assets/taskVision/wasm/vision_wasm_internal_wasm.json +1 -0
- package/dist/assets/taskVision/wasm/vision_wasm_nosimd_internal_js.json +1 -0
- package/dist/assets/taskVision/wasm/vision_wasm_nosimd_internal_wasm.json +1 -0
- package/dist/language/strings.en.json +25 -0
- package/dist/language/strings.fr.json +24 -0
- package/dist/stylex.css +123 -0
- package/lib/index.d.ts +993 -0
- package/lib/index.mjs +1 -0
- package/package.json +29 -0
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"BTN_START_MEASUREMENT": "Start Measurement",
|
|
3
|
+
"CANCEL": "Cancel",
|
|
4
|
+
"ERR_FACE_NONE": "Please keep your face centred within the outline throughout the measurement",
|
|
5
|
+
"ERROR_TAB_SWITCHED_OR_WINDOW_MINIMIZED": "Measurement failed because the tab was switched or the browser window was minimized. Please ensure the tab remains open and active.",
|
|
6
|
+
"KIOSK_HELP_CAMERA": "Face the camera and position your face within the circle throughout the measurement.",
|
|
7
|
+
"KIOSK_HELP_ACCESSORIES": "Remove any accessories such as glasses and hats, including any makeup products on your face before measuring.",
|
|
8
|
+
"KIOSK_HELP_STAY": "When the measurement has started, stay in position for 30 seconds until the measurement is completed.",
|
|
9
|
+
"HELP_TITLE": "Help",
|
|
10
|
+
"NO_DEVICES_FOUND": "No devices found",
|
|
11
|
+
"STOP_CAMERA": "Stop camera",
|
|
12
|
+
"WEB_BTN_SELECT_CAMERA": "Select a camera to begin",
|
|
13
|
+
"WEB_BTN_START_CAMERA": "Start Camera",
|
|
14
|
+
"WEB_CAMERA_START_ERROR": "Can not start the camera, please make sure that the camera is connected and it is not being used by another application.",
|
|
15
|
+
"WEB_CAMERA_PERMISSION_REQUIRED_TITLE": "Camera permission required",
|
|
16
|
+
"WEB_MEASURE_INSTRUCTIONS_NO_FACE": "Please center your face in the shape and wait while detecting faces",
|
|
17
|
+
"WEB_PLEASE_WAIT": "Please wait, measurement will start soon…",
|
|
18
|
+
"WAITING_FOR_RESULTS": "Waiting for results",
|
|
19
|
+
"WARNING_CONSTRAINT_GAZE": "Please look directly into the camera",
|
|
20
|
+
"WARNING_CONSTRAINT_DISTANCE": "The face is too far. Please try to move closer to the camera",
|
|
21
|
+
"PLEASE_HOLD_STILL": "Please hold still",
|
|
22
|
+
"READY_TO_MEASURE": "Ready to measure",
|
|
23
|
+
"ERR_LOADING_CONFIGURATIONS": "You cannot access this service due to a configuration loading error. Please contact your system administrator for assistance.",
|
|
24
|
+
"ERR_MSG_SNR": "The blood flow measurement was not reliable.\nPlease try to allow the light to fall evenly across your face while holding still"
|
|
25
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"BTN_START_MEASUREMENT": "Démarrer la mesure",
|
|
3
|
+
"CANCEL": "Annuler",
|
|
4
|
+
"ERR_FACE_NONE": "Veuillez garder votre visage centré dans le contour pendant toute la mesure",
|
|
5
|
+
"ERROR_TAB_SWITCHED_OR_WINDOW_MINIMIZED": "La mesure a échoué car l’onglet a été changé ou la fenêtre du navigateur a été minimisée. Veuillez vous assurer que l’onglet reste ouvert et actif.",
|
|
6
|
+
"KIOSK_HELP_CAMERA": "Veuillez faire face à l'appareil photo et positionner votre visage dans le cercle pendant toute la durée de la mesure.",
|
|
7
|
+
"KIOSK_HELP_ACCESSORIES": "Veuillez retirer tous les accessoires de votre visage avant la mesure, par exemple des lunettes, un chapeau ou le maquillage.",
|
|
8
|
+
"KIOSK_HELP_STAY": "Lorsque la mesure a commencé, gardez la même position pendant 30 secondes, jusqu'à la fin de l'opération.",
|
|
9
|
+
"HELP_TITLE": "Aide",
|
|
10
|
+
"NO_DEVICES_FOUND": "Aucun appareil détecté",
|
|
11
|
+
"STOP_CAMERA": "Arrêter la caméra",
|
|
12
|
+
"WEB_BTN_SELECT_CAMERA": "Sélectionner une caméra pour commencer",
|
|
13
|
+
"WEB_BTN_START_CAMERA": "Démarrer la caméra",
|
|
14
|
+
"WEB_CAMERA_START_ERROR": "Impossible de démarrer la caméra. Veuillez vous assurer que la caméra est connectée et qu’elle n’est pas utilisée par une autre application.",
|
|
15
|
+
"WEB_CAMERA_PERMISSION_REQUIRED_TITLE": "Autorisation requise pour utiliser la caméra",
|
|
16
|
+
"WEB_PLEASE_WAIT": "Veuillez patienter, la mesure va bientôt commencer…",
|
|
17
|
+
"WEB_MEASURE_INSTRUCTIONS_NO_FACE": "Veuillez centrer votre visage dans le cercle",
|
|
18
|
+
"WARNING_CONSTRAINT_GAZE": "Veuillez regarder directement l'appareil photo",
|
|
19
|
+
"WARNING_CONSTRAINT_DISTANCE": "Votre visage est trop éloigné. Essayez de vous rapprocher de la caméra",
|
|
20
|
+
"PLEASE_HOLD_STILL": "Veuillez rester immobile",
|
|
21
|
+
"WAITING_FOR_RESULTS": "Dans l’attente des résultats",
|
|
22
|
+
"ERR_LOADING_CONFIGURATIONS": "Vous ne pouvez pas accéder à ce service en raison d'une erreur de chargement de la configuration. Veuillez contacter votre administrateur système pour obtenir de l'aide.",
|
|
23
|
+
"ERR_MSG_SNR": "Le mesure du flux sanguin n'est pas fiable.\nVeuillez rester immobile et ajuster l'éclairage afin que la lumière soit uniformément répartie sur votre visage"
|
|
24
|
+
}
|
package/dist/stylex.css
ADDED
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
@layer priority1 {
|
|
2
|
+
.margin-x1rz42sk {
|
|
3
|
+
margin: .5rem auto;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.margin-x19bbpc0 {
|
|
7
|
+
margin: 0 auto;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.margin-x1ghz6dp {
|
|
11
|
+
margin: 0;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.margin-x1bpp3o7 {
|
|
15
|
+
margin: auto;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.padding-x7gbtqy {
|
|
19
|
+
padding: .5rem;
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
@layer priority2 {
|
|
24
|
+
.gap-x13z6uf9 {
|
|
25
|
+
gap: .5rem;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.marginInline-xvueqy4 {
|
|
29
|
+
margin-inline: auto;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.overflow-xb3r6kr {
|
|
33
|
+
overflow: hidden;
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
@layer priority3 {
|
|
38
|
+
.alignItems-x6s0dn4 {
|
|
39
|
+
align-items: center;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.backgroundColor-x12peec7 {
|
|
43
|
+
background-color: #fff;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.boxSizing-x9f619 {
|
|
47
|
+
box-sizing: border-box;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.containerType-xpqogu8 {
|
|
51
|
+
container-type: size;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.display-x78zum5 {
|
|
55
|
+
display: flex;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.flexDirection-xdt5ytf {
|
|
59
|
+
flex-direction: column;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.flexGrow-x1iyjqo2 {
|
|
63
|
+
flex-grow: 1;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.justifyContent-xl56j7k {
|
|
67
|
+
justify-content: center;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
.justifyContent-x1qughib {
|
|
71
|
+
justify-content: space-between;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.position-x1n2onr6 {
|
|
75
|
+
position: relative;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.textAlign-x2b8uid {
|
|
79
|
+
text-align: center;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.visibility-xlshs6z {
|
|
83
|
+
visibility: hidden;
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
@layer priority4 {
|
|
88
|
+
.height-x5yr21d {
|
|
89
|
+
height: 100%;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.marginTop-x1mjqqkp {
|
|
93
|
+
margin-top: .5rem;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.marginTop-x1hpjnmm {
|
|
97
|
+
margin-top: 3rem;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.minHeight-xe8gcm {
|
|
101
|
+
min-height: 3rem;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
.width-xh8yej3 {
|
|
105
|
+
width: 100%;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.width-x65xoit {
|
|
109
|
+
width: 70%;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
@container (aspect-ratio >= 1) {
|
|
113
|
+
.maxWidth-xthuv2.maxWidth-xthuv2 {
|
|
114
|
+
max-width: 177.778cqh;
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
@container (aspect-ratio <= 1) {
|
|
119
|
+
.maxWidth-xbjzrla.maxWidth-xbjzrla {
|
|
120
|
+
max-width: none;
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
}
|