@incodetech/web 0.0.0-dev-20260205-bb46959 → 0.0.0-dev-20260206-cd4d6ec

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.
@@ -816,6 +816,455 @@
816
816
  color: var(--color-input-text-helper-negative, var(--input-text-helper-negative));
817
817
  }
818
818
 
819
+ .IncodeFaceMatchPage {
820
+ flex-direction: column;
821
+ width: 100%;
822
+ height: 100%;
823
+ display: flex;
824
+ }
825
+
826
+ .IncodeFaceMatchPage .IncodeFaceMatchContent {
827
+ margin-bottom: var(--spacing-16, var(--spacing-16, 16px));
828
+ flex-direction: column;
829
+ flex: 1;
830
+ align-items: center;
831
+ width: 100%;
832
+ height: 100%;
833
+ display: flex;
834
+ position: relative;
835
+ }
836
+
837
+ .IncodeFaceMatchAnimationContainer {
838
+ flex: 1;
839
+ width: 100%;
840
+ min-height: 250px;
841
+ display: flex;
842
+ position: relative;
843
+ }
844
+
845
+ .IncodeFaceMatchContainer {
846
+ flex: 1;
847
+ width: 100%;
848
+ height: 100%;
849
+ min-height: 225px;
850
+ position: relative;
851
+ }
852
+
853
+ .IncodeFaceMatchResultContainer {
854
+ flex-direction: column;
855
+ justify-content: center;
856
+ align-items: center;
857
+ gap: 16px;
858
+ display: flex;
859
+ position: absolute;
860
+ inset: 0;
861
+ }
862
+
863
+ .IncodeFaceMatchHeader {
864
+ flex-direction: column;
865
+ align-items: center;
866
+ transition: opacity .3s ease-out;
867
+ display: flex;
868
+ }
869
+
870
+ .IncodeFaceMatchHeaderHidden {
871
+ opacity: 0;
872
+ height: 0;
873
+ overflow: hidden;
874
+ }
875
+
876
+ .IncodeFaceMatchPhotoWrapper {
877
+ inset: var(--spacing-0, var(--spacing-none, 0px));
878
+ transition: opacity .3s ease-out;
879
+ position: absolute;
880
+ }
881
+
882
+ .IncodeFaceMatchPhotoWrapperHidden {
883
+ opacity: 0;
884
+ pointer-events: none;
885
+ }
886
+
887
+ .IncodeFaceMatchResultVisible {
888
+ flex-direction: column;
889
+ flex: 1;
890
+ justify-content: center;
891
+ align-items: center;
892
+ width: 100%;
893
+ height: 100%;
894
+ animation: .4s ease-out forwards resultFadeIn;
895
+ display: flex;
896
+ position: static;
897
+ }
898
+
899
+ .IncodeFaceMatchResultVisible .IncodeFaceMatchAnimatedIcon, .IncodeFaceMatchResultVisible .IncodeFaceMatchAnimatedResultTitle {
900
+ opacity: 1;
901
+ animation: none;
902
+ }
903
+
904
+ @keyframes resultFadeIn {
905
+ from {
906
+ opacity: 0;
907
+ }
908
+
909
+ to {
910
+ opacity: 1;
911
+ }
912
+ }
913
+
914
+ .IncodeFaceMatchResultContent {
915
+ flex-direction: column;
916
+ justify-content: center;
917
+ align-items: center;
918
+ gap: 16px;
919
+ width: 100%;
920
+ display: flex;
921
+ }
922
+
923
+ .IncodeFaceMatchShowResult {
924
+ flex: 1;
925
+ min-height: auto;
926
+ }
927
+
928
+ .IncodeFaceMatchButtonContainer {
929
+ opacity: 0;
930
+ pointer-events: none;
931
+ width: 100%;
932
+ transition: opacity .4s ease-out, transform .4s ease-out;
933
+ transform: translateY(8px);
934
+ }
935
+
936
+ .IncodeFaceMatchButtonVisible {
937
+ opacity: 1;
938
+ pointer-events: auto;
939
+ animation: .4s ease-out fadeIn;
940
+ transform: translateY(0);
941
+ }
942
+
943
+ @keyframes fadeIn {
944
+ from {
945
+ opacity: 0;
946
+ transform: translateY(8px);
947
+ }
948
+
949
+ to {
950
+ opacity: 1;
951
+ transform: translateY(0);
952
+ }
953
+ }
954
+
955
+ .IncodeFaceMatchTooltip {
956
+ background: var(--surface-neutral-50);
957
+ border: 1px solid var(--border-neutral-300);
958
+ height: 44px;
959
+ color: var(--text-body-primary);
960
+ text-align: center;
961
+ border-radius: 12px;
962
+ padding: 0 20px;
963
+ font-size: 16px;
964
+ line-height: 44px;
965
+ display: inline-block;
966
+ position: relative;
967
+ }
968
+
969
+ .IncodeFaceMatchTooltip:after {
970
+ content: "";
971
+ border-left: 9px solid #0000;
972
+ border-right: 9px solid #0000;
973
+ border-top: 9px solid var(--surface-neutral-50);
974
+ width: 0;
975
+ height: 0;
976
+ position: absolute;
977
+ bottom: -9px;
978
+ left: 50%;
979
+ transform: translateX(-50%);
980
+ }
981
+
982
+ .IncodeFaceMatchTooltip:before {
983
+ content: "";
984
+ border-left: 9px solid #0000;
985
+ border-right: 9px solid #0000;
986
+ border-top: 9px solid var(--border-neutral-300);
987
+ width: 0;
988
+ height: 0;
989
+ position: absolute;
990
+ bottom: -10px;
991
+ left: 50%;
992
+ transform: translateX(-50%);
993
+ }
994
+
995
+ .IncodeFaceMatchAnimatedTitle {
996
+ text-align: center;
997
+ font-size: var(--text-2xl, 1.5rem);
998
+ line-height: var(--tw-leading, var(--text-2xl--line-height, calc(2 / 1.5)));
999
+ --tw-font-weight: var(--font-weight-bold, var(--primitive-typography-weight-bold));
1000
+ font-weight: var(--font-weight-bold, var(--primitive-typography-weight-bold));
1001
+ color: var(--text-body-primary);
1002
+ line-height: 125%;
1003
+ }
1004
+
1005
+ :root {
1006
+ --animation-duration: .8s;
1007
+ --transition-delay: .2s;
1008
+ --transition-duration: .25s;
1009
+ --entrance-duration: .8s;
1010
+ --entrance-delay: .45s;
1011
+ --tooltip-duration: 1.6s;
1012
+ --tooltip-show-delay: 1.25s;
1013
+ --animation-delay: 2.85s;
1014
+ }
1015
+
1016
+ @keyframes leftEntrance {
1017
+ from {
1018
+ opacity: 0;
1019
+ transform: translateX(-200px);
1020
+ }
1021
+
1022
+ to {
1023
+ opacity: 1;
1024
+ transform: translateX(0);
1025
+ }
1026
+ }
1027
+
1028
+ @keyframes rightEntrance {
1029
+ from {
1030
+ opacity: 0;
1031
+ transform: translateX(200px);
1032
+ }
1033
+
1034
+ to {
1035
+ opacity: 1;
1036
+ transform: translateX(0);
1037
+ }
1038
+ }
1039
+
1040
+ @keyframes bottomEntrance {
1041
+ from {
1042
+ opacity: 0;
1043
+ transform: translate(-50%, 200px);
1044
+ }
1045
+
1046
+ to {
1047
+ opacity: 1;
1048
+ transform: translate(-50%);
1049
+ }
1050
+ }
1051
+
1052
+ @keyframes leftIn {
1053
+ from {
1054
+ opacity: 1;
1055
+ left: 0;
1056
+ transform: translateX(0);
1057
+ }
1058
+
1059
+ to {
1060
+ opacity: 0;
1061
+ left: 50%;
1062
+ transform: translateX(-50%);
1063
+ }
1064
+ }
1065
+
1066
+ @keyframes rightIn {
1067
+ from {
1068
+ opacity: 1;
1069
+ right: 0;
1070
+ transform: translateX(0);
1071
+ }
1072
+
1073
+ to {
1074
+ opacity: 0;
1075
+ right: 50%;
1076
+ transform: translateX(50%);
1077
+ }
1078
+ }
1079
+
1080
+ @keyframes bottomUp {
1081
+ from {
1082
+ opacity: 1;
1083
+ transform: translate(-50%);
1084
+ }
1085
+
1086
+ to {
1087
+ opacity: 0;
1088
+ transform: translate(-50%, -225px);
1089
+ }
1090
+ }
1091
+
1092
+ @keyframes tooltipShowHide {
1093
+ 0% {
1094
+ opacity: 0;
1095
+ }
1096
+
1097
+ 50% {
1098
+ opacity: 1;
1099
+ }
1100
+
1101
+ 100% {
1102
+ opacity: 0;
1103
+ }
1104
+ }
1105
+
1106
+ @keyframes fadeInTitle {
1107
+ from {
1108
+ opacity: 0;
1109
+ visibility: hidden;
1110
+ }
1111
+
1112
+ to {
1113
+ opacity: 1;
1114
+ visibility: visible;
1115
+ }
1116
+ }
1117
+
1118
+ @keyframes fadeOutTitle {
1119
+ from {
1120
+ opacity: 1;
1121
+ visibility: visible;
1122
+ }
1123
+
1124
+ to {
1125
+ opacity: 0;
1126
+ visibility: hidden;
1127
+ }
1128
+ }
1129
+
1130
+ @keyframes simpleFadeInTitle {
1131
+ from {
1132
+ opacity: 0;
1133
+ }
1134
+
1135
+ to {
1136
+ opacity: 1;
1137
+ }
1138
+ }
1139
+
1140
+ @keyframes fadeInIcon {
1141
+ from {
1142
+ opacity: 0;
1143
+ visibility: hidden;
1144
+ }
1145
+
1146
+ to {
1147
+ opacity: 1;
1148
+ visibility: visible;
1149
+ }
1150
+ }
1151
+
1152
+ @keyframes slideUpButton {
1153
+ from {
1154
+ opacity: 0;
1155
+ transform: translateY(20px);
1156
+ }
1157
+
1158
+ to {
1159
+ opacity: 1;
1160
+ transform: translateY(0);
1161
+ }
1162
+ }
1163
+
1164
+ .IncodeFaceMatchPhotoContainer {
1165
+ flex-direction: column;
1166
+ align-items: center;
1167
+ gap: 21px;
1168
+ display: flex;
1169
+ position: absolute;
1170
+ top: 0;
1171
+ }
1172
+
1173
+ .IncodeFaceMatchPhotoContainerHidden {
1174
+ visibility: hidden;
1175
+ }
1176
+
1177
+ .IncodeFaceMatchPhotoContainer > .IncodeFaceMatchTooltip {
1178
+ opacity: 0;
1179
+ animation: tooltipShowHide var(--tooltip-duration, 1.6s) linear forwards;
1180
+ animation-delay: var(--tooltip-show-delay, 1.25s);
1181
+ }
1182
+
1183
+ .IncodeFaceMatchLeftPhoto {
1184
+ z-index: 2;
1185
+ opacity: 0;
1186
+ will-change: transform, opacity;
1187
+ animation: leftEntrance var(--entrance-duration, .8s) cubic-bezier(.25, .46, .45, .94) forwards, leftIn var(--animation-duration, .8s) cubic-bezier(.25, .46, .45, .94) forwards;
1188
+ animation-delay: var(--entrance-delay, .45s), var(--animation-delay, 2.85s);
1189
+ left: 0;
1190
+ transform: translateX(-200px)translateZ(0);
1191
+ }
1192
+
1193
+ .IncodeFaceMatchRightPhoto {
1194
+ z-index: 1;
1195
+ opacity: 0;
1196
+ will-change: transform, opacity;
1197
+ animation: rightEntrance var(--entrance-duration, .8s) cubic-bezier(.25, .46, .45, .94) forwards, rightIn var(--animation-duration, .8s) cubic-bezier(.25, .46, .45, .94) forwards;
1198
+ animation-delay: var(--entrance-delay, .45s), var(--animation-delay, 2.85s);
1199
+ right: 0;
1200
+ transform: translateX(200px)translateZ(0);
1201
+ }
1202
+
1203
+ .IncodeFaceMatchBottomPhotoContainer {
1204
+ opacity: 0;
1205
+ z-index: 3;
1206
+ will-change: transform, opacity;
1207
+ animation: bottomEntrance var(--entrance-duration, .8s) cubic-bezier(.25, .46, .45, .94) forwards, bottomUp var(--animation-duration, .8s) cubic-bezier(.25, .46, .45, .94) forwards;
1208
+ animation-delay: var(--entrance-delay, .45s), var(--animation-delay, 2.85s);
1209
+ flex-direction: column;
1210
+ align-items: center;
1211
+ gap: 21px;
1212
+ display: flex;
1213
+ position: absolute;
1214
+ top: 225px;
1215
+ left: 50%;
1216
+ transform: translate(-50%, 200px)translateZ(0);
1217
+ }
1218
+
1219
+ .IncodeFaceMatchBottomPhotoContainerHidden {
1220
+ visibility: hidden;
1221
+ }
1222
+
1223
+ .IncodeFaceMatchBottomPhotoContainer > .IncodeFaceMatchTooltip {
1224
+ opacity: 0;
1225
+ animation: tooltipShowHide var(--tooltip-duration, 1.6s) linear forwards;
1226
+ animation-delay: var(--tooltip-show-delay, 1.25s);
1227
+ }
1228
+
1229
+ .IncodeFaceMatchCircularImage {
1230
+ object-fit: cover;
1231
+ background-color: #ddd;
1232
+ border-radius: 50%;
1233
+ width: 160px;
1234
+ height: 160px;
1235
+ }
1236
+
1237
+ .IncodeFaceMatchAnimatedTitle {
1238
+ animation: simpleFadeInTitle var(--transition-duration, .25s) ease-out forwards, fadeOutTitle var(--transition-duration, .25s) linear forwards;
1239
+ animation-delay: 0s, calc(var(--animation-delay, 2.85s) + var(--animation-duration, .8s) + var(--transition-delay, .2s));
1240
+ opacity: 0;
1241
+ }
1242
+
1243
+ .IncodeFaceMatchAnimatedResultTitle {
1244
+ text-align: center;
1245
+ font-size: var(--text-2xl, 1.5rem);
1246
+ line-height: var(--tw-leading, var(--text-2xl--line-height, calc(2 / 1.5)));
1247
+ --tw-font-weight: var(--font-weight-bold, var(--primitive-typography-weight-bold));
1248
+ font-weight: var(--font-weight-bold, var(--primitive-typography-weight-bold));
1249
+ color: var(--text-body-primary);
1250
+ animation: fadeInTitle var(--transition-duration, .25s) linear forwards;
1251
+ animation-delay: calc(var(--animation-delay, 2.85s) + var(--animation-duration, .8s) + var(--transition-delay, .2s));
1252
+ opacity: 0;
1253
+ line-height: 125%;
1254
+ }
1255
+
1256
+ .IncodeFaceMatchAnimatedIcon {
1257
+ animation: fadeInIcon var(--transition-duration, .25s) linear forwards;
1258
+ animation-delay: calc(var(--animation-delay, 2.85s) + var(--animation-duration, .8s) + var(--transition-delay, .2s));
1259
+ opacity: 0;
1260
+ }
1261
+
1262
+ .IncodeFaceMatchAnimatedButton {
1263
+ animation: slideUpButton var(--transition-duration, .25s) cubic-bezier(.25, .46, .45, .94) forwards;
1264
+ animation-delay: calc(var(--animation-delay, 2.85s) + var(--animation-duration, .8s) + var(--transition-delay, .2s));
1265
+ opacity: 0;
1266
+ }
1267
+
819
1268
  .IncodeFlowStart {
820
1269
  width: 100%;
821
1270
  height: 100%;
@@ -2045,6 +2494,114 @@
2045
2494
  }
2046
2495
  }
2047
2496
 
2497
+ @media (min-width: 40rem) {
2498
+ .IncodeCommonIssuesModal .IncodeCommonIssuesModalContent {
2499
+ max-width: 40rem;
2500
+ }
2501
+ }
2502
+
2503
+ @media (min-width: 48rem) {
2504
+ .IncodeCommonIssuesModal .IncodeCommonIssuesModalContent {
2505
+ max-width: 48rem;
2506
+ }
2507
+ }
2508
+
2509
+ @media (min-width: 64rem) {
2510
+ .IncodeCommonIssuesModal .IncodeCommonIssuesModalContent {
2511
+ max-width: 64rem;
2512
+ }
2513
+ }
2514
+
2515
+ @media (min-width: 80rem) {
2516
+ .IncodeCommonIssuesModal .IncodeCommonIssuesModalContent {
2517
+ max-width: 80rem;
2518
+ }
2519
+ }
2520
+
2521
+ @media (min-width: 96rem) {
2522
+ .IncodeCommonIssuesModal .IncodeCommonIssuesModalContent {
2523
+ max-width: 96rem;
2524
+ }
2525
+ }
2526
+
2527
+ @media (min-width: 48rem) {
2528
+ .IncodeCommonIssuesModal .IncodeCommonIssuesModalContent {
2529
+ height: 840px;
2530
+ }
2531
+ }
2532
+
2533
+ @media (min-width: 40rem) {
2534
+ .IncodeCommonIssuesModal .IncodeCommonIssuesModalContent {
2535
+ max-width: 40rem;
2536
+ }
2537
+ }
2538
+
2539
+ @media (min-width: 48rem) {
2540
+ .IncodeCommonIssuesModal .IncodeCommonIssuesModalContent {
2541
+ max-width: 48rem;
2542
+ }
2543
+ }
2544
+
2545
+ @media (min-width: 64rem) {
2546
+ .IncodeCommonIssuesModal .IncodeCommonIssuesModalContent {
2547
+ max-width: 64rem;
2548
+ }
2549
+ }
2550
+
2551
+ @media (min-width: 80rem) {
2552
+ .IncodeCommonIssuesModal .IncodeCommonIssuesModalContent {
2553
+ max-width: 80rem;
2554
+ }
2555
+ }
2556
+
2557
+ @media (min-width: 96rem) {
2558
+ .IncodeCommonIssuesModal .IncodeCommonIssuesModalContent {
2559
+ max-width: 96rem;
2560
+ }
2561
+ }
2562
+
2563
+ @media (min-width: 48rem) {
2564
+ .IncodeCommonIssuesModal .IncodeCommonIssuesModalContent {
2565
+ height: 840px;
2566
+ }
2567
+ }
2568
+
2569
+ @media (min-width: 40rem) {
2570
+ .IncodeCommonIssuesModal .IncodeCommonIssuesModalContent {
2571
+ max-width: 40rem;
2572
+ }
2573
+ }
2574
+
2575
+ @media (min-width: 48rem) {
2576
+ .IncodeCommonIssuesModal .IncodeCommonIssuesModalContent {
2577
+ max-width: 48rem;
2578
+ }
2579
+ }
2580
+
2581
+ @media (min-width: 64rem) {
2582
+ .IncodeCommonIssuesModal .IncodeCommonIssuesModalContent {
2583
+ max-width: 64rem;
2584
+ }
2585
+ }
2586
+
2587
+ @media (min-width: 80rem) {
2588
+ .IncodeCommonIssuesModal .IncodeCommonIssuesModalContent {
2589
+ max-width: 80rem;
2590
+ }
2591
+ }
2592
+
2593
+ @media (min-width: 96rem) {
2594
+ .IncodeCommonIssuesModal .IncodeCommonIssuesModalContent {
2595
+ max-width: 96rem;
2596
+ }
2597
+ }
2598
+
2599
+ @media (min-width: 48rem) {
2600
+ .IncodeCommonIssuesModal .IncodeCommonIssuesModalContent {
2601
+ height: 840px;
2602
+ }
2603
+ }
2604
+
2048
2605
  .IncodeCommonIssuesModal .IncodeCommonIssuesModalContent {
2049
2606
  width: 100%;
2050
2607
  }
@@ -0,0 +1 @@
1
+ export {}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@incodetech/web",
3
- "version": "0.0.0-dev-20260205-bb46959",
3
+ "version": "0.0.0-dev-20260206-cd4d6ec",
4
4
  "type": "module",
5
5
  "main": "./dist/index.es.js",
6
6
  "types": "./dist/types/index.d.ts",
@@ -52,6 +52,13 @@
52
52
  },
53
53
  "./flow/styles.css": {
54
54
  "default": "./dist/flow/styles.css"
55
+ },
56
+ "./face-match": {
57
+ "types": "./dist/types/face-match.d.ts",
58
+ "import": "./dist/face-match/face-match.es.js"
59
+ },
60
+ "./face-match/styles.css": {
61
+ "default": "./dist/face-match/styles.css"
55
62
  }
56
63
  },
57
64
  "files": [
@@ -65,7 +72,7 @@
65
72
  "libphonenumber-js": "^1.11.0",
66
73
  "preact-custom-element": "^4.6.0",
67
74
  "tailwindcss": "^4.1.17",
68
- "@incodetech/core": "0.0.0-dev-20260205-bb46959"
75
+ "@incodetech/core": "0.0.0-dev-20260206-cd4d6ec"
69
76
  },
70
77
  "devDependencies": {
71
78
  "@microsoft/api-extractor": "^7.53.3",