@learncard/react 2.3.35 → 2.3.37
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/cjs/{VCCard-b63f75fc.js → VCCard-a7e57272.js} +2 -2
- package/dist/cjs/{VCCard-b63f75fc.js.map → VCCard-a7e57272.js.map} +1 -1
- package/dist/cjs/{VCDisplayBackFace-4ae2b5c5.js → VCDisplayBackFace-b95df151.js} +2 -2
- package/dist/cjs/{VCDisplayBackFace-4ae2b5c5.js.map → VCDisplayBackFace-b95df151.js.map} +1 -1
- package/dist/cjs/{VCDisplayCard-b67f991b.js → VCDisplayCard-7d4126ae.js} +2 -2
- package/dist/cjs/{VCDisplayCard-b67f991b.js.map → VCDisplayCard-7d4126ae.js.map} +1 -1
- package/dist/cjs/{VCVerificationPill-1d535a72.js → VCVerificationPill-d33c0f6b.js} +8 -1
- package/dist/cjs/{VCVerificationPill-1d535a72.js.map → VCVerificationPill-d33c0f6b.js.map} +1 -1
- package/dist/cjs/index.js +4 -4
- package/dist/cjs/index27.js +4 -4
- package/dist/cjs/index28.js +2 -2
- package/dist/cjs/index29.js +3 -3
- package/dist/cjs/index33.js +1 -1
- package/dist/cjs/index9.js +4 -4
- package/dist/esm/{VCCard-271ef60d.js → VCCard-579e6577.js} +2 -2
- package/dist/esm/{VCCard-271ef60d.js.map → VCCard-579e6577.js.map} +1 -1
- package/dist/esm/{VCDisplayBackFace-1bc89b3c.js → VCDisplayBackFace-651cc6d2.js} +2 -2
- package/dist/esm/{VCDisplayBackFace-1bc89b3c.js.map → VCDisplayBackFace-651cc6d2.js.map} +1 -1
- package/dist/esm/{VCDisplayCard-07dc6715.js → VCDisplayCard-0242b7d1.js} +2 -2
- package/dist/esm/{VCDisplayCard-07dc6715.js.map → VCDisplayCard-0242b7d1.js.map} +1 -1
- package/dist/esm/{VCVerificationPill-a35e1dad.js → VCVerificationPill-361932cb.js} +8 -1
- package/dist/esm/VCVerificationPill-361932cb.js.map +1 -0
- package/dist/esm/index.js +4 -4
- package/dist/esm/index27.js +4 -4
- package/dist/esm/index28.js +2 -2
- package/dist/esm/index29.js +3 -3
- package/dist/esm/index33.js +1 -1
- package/dist/esm/index9.js +4 -4
- package/package.json +3 -3
- package/dist/esm/VCVerificationPill-a35e1dad.js.map +0 -1
|
@@ -3257,6 +3257,13 @@ mod.object({
|
|
|
3257
3257
|
title: mod.string(),
|
|
3258
3258
|
storageType: StorageTypeValidator.optional()
|
|
3259
3259
|
});
|
|
3260
|
+
mod.object({
|
|
3261
|
+
kty: mod.string(),
|
|
3262
|
+
crv: mod.string(),
|
|
3263
|
+
x: mod.string(),
|
|
3264
|
+
y: mod.string().optional(),
|
|
3265
|
+
d: mod.string()
|
|
3266
|
+
});
|
|
3260
3267
|
|
|
3261
3268
|
const StatusToBgColor = {
|
|
3262
3269
|
[VerificationStatusEnum.Success]: "bg-emerald-500",
|
|
@@ -3317,4 +3324,4 @@ const VCVerificationPill = ({
|
|
|
3317
3324
|
|
|
3318
3325
|
exports.VCVerificationPill = VCVerificationPill;
|
|
3319
3326
|
exports.ValidationStateIndicator = ValidationStateIndicator;
|
|
3320
|
-
//# sourceMappingURL=VCVerificationPill-
|
|
3327
|
+
//# sourceMappingURL=VCVerificationPill-d33c0f6b.js.map
|