@incodetech/web 0.0.0-dev-20260209-168e887 → 0.0.0-dev-20260212-7db2d06
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/authentication/authentication.es.js +1 -1
- package/dist/base.css +11 -2
- package/dist/chevronDown-CN1d_3gk.js +23 -0
- package/dist/curp-validation/curp-validation.es.js +758 -0
- package/dist/curp-validation/styles.css +497 -0
- package/dist/flow/flow.es.js +150 -135
- package/dist/flow/styles.css +567 -0
- package/dist/phone/phone.es.js +354 -371
- package/dist/selfie/selfie.es.js +1 -1
- package/dist/successIcon-_WpNP6Fl.js +26 -0
- package/dist/themes/dark.css +11 -2
- package/dist/themes/light.css +11 -2
- package/dist/{tutorial-Bgqb0LCN.js → tutorial-B01CRbnX.js} +24 -44
- package/dist/types/curp-validation.d.ts +31 -0
- package/package.json +9 -2
|
@@ -4,7 +4,7 @@ import "../vendor-preact-CjD4WiuC.js";
|
|
|
4
4
|
import "@incodetech/core";
|
|
5
5
|
import { P as m } from "../baseTutorial-u4GTs22Q.js";
|
|
6
6
|
import { I as p } from "../incodeComponent-DWkUggQZ.js";
|
|
7
|
-
import { T as c, C as f } from "../tutorial-
|
|
7
|
+
import { T as c, C as f } from "../tutorial-B01CRbnX.js";
|
|
8
8
|
const d = ({
|
|
9
9
|
config: r,
|
|
10
10
|
authHint: s,
|
package/dist/base.css
CHANGED
|
@@ -320,8 +320,8 @@
|
|
|
320
320
|
transition-duration: var(--tw-duration, var(--default-transition-duration, .15s));
|
|
321
321
|
--tw-duration: .2s;
|
|
322
322
|
--tw-outline-style: none;
|
|
323
|
+
font-family: var(--input-text-field-font-family);
|
|
323
324
|
outline-style: none;
|
|
324
|
-
font-family: inherit;
|
|
325
325
|
transition-duration: .2s;
|
|
326
326
|
}
|
|
327
327
|
.IncodeInput::placeholder {
|
|
@@ -387,8 +387,10 @@
|
|
|
387
387
|
--tw-font-weight: var(--font-weight-bold, var(--primitive-typography-weight-bold));
|
|
388
388
|
font-weight: var(--font-weight-bold, var(--primitive-typography-weight-bold));
|
|
389
389
|
color: var(--color-input-text-label-default, var(--input-text-label-default));
|
|
390
|
+
margin: var(--spacing-0, var(--spacing-none, 0px));
|
|
390
391
|
margin-bottom: var(--spacing-8, var(--spacing-8, 8px));
|
|
391
|
-
|
|
392
|
+
padding: var(--spacing-0, var(--spacing-none, 0px));
|
|
393
|
+
font-family: var(--input-text-label-font-family);
|
|
392
394
|
display: inline-block;
|
|
393
395
|
}
|
|
394
396
|
.IncodeInputComposedWrapper {
|
|
@@ -1307,6 +1309,13 @@
|
|
|
1307
1309
|
.IncodePageContainer .IncodePageFooterInner {
|
|
1308
1310
|
max-height: var(--spacing-40, var(--spacing-40, 40px));
|
|
1309
1311
|
}
|
|
1312
|
+
@media screen and (min-height: 1080px) {
|
|
1313
|
+
.IncodePageContainer {
|
|
1314
|
+
height: auto;
|
|
1315
|
+
max-height: 840px;
|
|
1316
|
+
margin-top: 3rem;
|
|
1317
|
+
}
|
|
1318
|
+
}
|
|
1310
1319
|
.IncodeFillWithPrimary {
|
|
1311
1320
|
fill: var(--color-text-body-primary, var(--text-body-primary));
|
|
1312
1321
|
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { u as o } from "./incodeModule-SZbHLd1r.js";
|
|
2
|
+
const e = ({ class: r }) => /* @__PURE__ */ o(
|
|
3
|
+
"svg",
|
|
4
|
+
{
|
|
5
|
+
width: "24",
|
|
6
|
+
height: "24",
|
|
7
|
+
viewBox: "0 0 24 24",
|
|
8
|
+
fill: "none",
|
|
9
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
10
|
+
class: r,
|
|
11
|
+
"aria-hidden": "true",
|
|
12
|
+
children: /* @__PURE__ */ o(
|
|
13
|
+
"path",
|
|
14
|
+
{
|
|
15
|
+
d: "M4.76734 9.18066C4.39163 8.77605 4.41468 8.14342 4.8191 7.76758C5.22371 7.39187 5.85635 7.41491 6.23219 7.81934L11.9998 14.0312L17.7673 7.81934L17.8406 7.74805C18.2212 7.41355 18.8011 7.41532 19.1804 7.76758C19.5849 8.14341 19.6079 8.77605 19.2322 9.18066L12.7322 16.1807C12.543 16.3842 12.2777 16.5 11.9998 16.5C11.7218 16.5 11.4565 16.3842 11.2673 16.1807L4.76734 9.18066Z",
|
|
16
|
+
fill: "currentColor"
|
|
17
|
+
}
|
|
18
|
+
)
|
|
19
|
+
}
|
|
20
|
+
);
|
|
21
|
+
export {
|
|
22
|
+
e as C
|
|
23
|
+
};
|