@adyen/kyc-components 2.56.1 → 2.56.3
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/es/adyen-kyc-components.es.js +15 -12
- package/dist/style.css +564 -5
- package/package.json +1 -1
|
@@ -35019,11 +35019,14 @@ function RoleAndTypeDropinComponent({
|
|
|
35019
35019
|
setActiveForm(targetForm);
|
|
35020
35020
|
};
|
|
35021
35021
|
const content = jsxs(Fragment, {
|
|
35022
|
-
children: [jsx(
|
|
35023
|
-
|
|
35024
|
-
|
|
35025
|
-
|
|
35026
|
-
|
|
35022
|
+
children: [jsx("div", {
|
|
35023
|
+
className: "adyen-kyc-dropin__sidebar-wrapper",
|
|
35024
|
+
children: jsx(FormNavigation, {
|
|
35025
|
+
forms: formsWithValidity,
|
|
35026
|
+
activeForm: formsWithValidity.find((form) => form.formId === activeForm.formId),
|
|
35027
|
+
taskName: "trustMembers",
|
|
35028
|
+
gotoForm: gotoFormByFormIndex
|
|
35029
|
+
})
|
|
35027
35030
|
}), jsxs("div", {
|
|
35028
35031
|
className: "adyen-kyc-form-container",
|
|
35029
35032
|
children: [jsx("div", {
|
|
@@ -37304,7 +37307,9 @@ function DropinComposerComponent({
|
|
|
37304
37307
|
handleDownloadAcceptedTermsOfServiceDocument: args.handleDownloadAcceptedTermsOfServiceDocument,
|
|
37305
37308
|
handleDownloadUnacceptedTermsOfServiceDocument: args.handleDownloadUnacceptedTermsOfServiceDocument,
|
|
37306
37309
|
handleHomeClick: () => navigateTo(TaskTypes.TASKS_OVERVIEW),
|
|
37307
|
-
handleAddSigner: () =>
|
|
37310
|
+
handleAddSigner: () => {
|
|
37311
|
+
onNavigateToDecisionMakerIndividual(TaskTypes.DECISION_MAKER);
|
|
37312
|
+
},
|
|
37308
37313
|
handleSign: async (...params) => {
|
|
37309
37314
|
await args.handleSignServiceAgreement(...params);
|
|
37310
37315
|
await getServiceAgreementStatus();
|
|
@@ -40166,7 +40171,7 @@ const ConfigurationApiProvider = ({
|
|
|
40166
40171
|
isEmbeddedDropin,
|
|
40167
40172
|
loadingContext
|
|
40168
40173
|
} = authContext;
|
|
40169
|
-
const sdkVersion = "2.56.
|
|
40174
|
+
const sdkVersion = "2.56.3";
|
|
40170
40175
|
useAnalytics({
|
|
40171
40176
|
onUserEvent,
|
|
40172
40177
|
legalEntityId: rootLegalEntityId,
|
|
@@ -40847,7 +40852,7 @@ const DebugModal = ({
|
|
|
40847
40852
|
};
|
|
40848
40853
|
const copyToClipboard = async () => {
|
|
40849
40854
|
const toCopy = {
|
|
40850
|
-
sdkVersion: "2.56.
|
|
40855
|
+
sdkVersion: "2.56.3",
|
|
40851
40856
|
experiments: Object.fromEntries(allExperimentsWithValues),
|
|
40852
40857
|
settings: Object.fromEntries(allSettingsWithValues)
|
|
40853
40858
|
};
|
|
@@ -40886,7 +40891,7 @@ const DebugModal = ({
|
|
|
40886
40891
|
children: [jsxs("div", {
|
|
40887
40892
|
className: "adyen-kyc-debug-modal__meta",
|
|
40888
40893
|
children: [jsxs("span", {
|
|
40889
|
-
children: ["SDK version: ", "2.56.
|
|
40894
|
+
children: ["SDK version: ", "2.56.3"]
|
|
40890
40895
|
}), jsxs("span", {
|
|
40891
40896
|
children: ["rootLegalEntityId: ", rootLegalEntityId]
|
|
40892
40897
|
})]
|
|
@@ -41034,9 +41039,7 @@ class UIElement extends BaseElement {
|
|
|
41034
41039
|
rootLegalEntityId,
|
|
41035
41040
|
handleGetLegalEntity: "handleGetLegalEntity" in this.props.componentProps ? this.props.componentProps.handleGetLegalEntity : void 0,
|
|
41036
41041
|
children: jsx("div", {
|
|
41037
|
-
|
|
41038
|
-
width: "100%"
|
|
41039
|
-
},
|
|
41042
|
+
className: "adyen-kyc-ui-element-container-wrapper",
|
|
41040
41043
|
children: jsx(AutoResizer, {
|
|
41041
41044
|
children: jsx("div", {
|
|
41042
41045
|
className: "adyen-kyc-ui-element-container",
|
package/dist/style.css
CHANGED
|
@@ -2775,7 +2775,6 @@ button[disabled]:hover {
|
|
|
2775
2775
|
line-height: var(--adyen-sdk-text-body-line-height, 20px);
|
|
2776
2776
|
-webkit-font-smoothing: antialiased;
|
|
2777
2777
|
-moz-osx-font-smoothing: grayscale;
|
|
2778
|
-
padding: var(--adyen-sdk-spacer-100, 32px);
|
|
2779
2778
|
background: var(--adyen-sdk-color-background-primary, #ffffff);
|
|
2780
2779
|
display: flex;
|
|
2781
2780
|
flex-direction: column;
|
|
@@ -2789,9 +2788,6 @@ button[disabled]:hover {
|
|
|
2789
2788
|
.adyen-kyc-dropin *::after {
|
|
2790
2789
|
box-sizing: border-box;
|
|
2791
2790
|
}
|
|
2792
|
-
.adyen-layout-xs-only .adyen-kyc-dropin {
|
|
2793
|
-
padding: var(--adyen-sdk-spacer-040, 8px);
|
|
2794
|
-
}
|
|
2795
2791
|
.adyen-kyc-dropin-container {
|
|
2796
2792
|
position: relative;
|
|
2797
2793
|
min-height: 480px;
|
|
@@ -4081,8 +4077,571 @@ button[disabled]:hover {
|
|
|
4081
4077
|
.adyen-view-verification-status__button {
|
|
4082
4078
|
font-size: var(--adyen-sdk-text-body-font-size, 14px);
|
|
4083
4079
|
line-height: var(--adyen-sdk-text-body-line-height, 20px);
|
|
4084
|
-
}
|
|
4080
|
+
}/* #region Borders */
|
|
4081
|
+
/* #endregion */
|
|
4082
|
+
/* #region Z-index */
|
|
4083
|
+
/* #endregion */
|
|
4084
|
+
/* #region Timing functions */
|
|
4085
|
+
/* #endregion */
|
|
4086
|
+
/* #region Inline components */
|
|
4087
|
+
/* #endregion */
|
|
4088
|
+
.adyen-kyc-u-display-flex {
|
|
4089
|
+
display: flex !important;
|
|
4090
|
+
}
|
|
4091
|
+
|
|
4092
|
+
.adyen-kyc-u-display-inline-flex {
|
|
4093
|
+
display: inline-flex !important;
|
|
4094
|
+
}
|
|
4095
|
+
|
|
4096
|
+
.adyen-kyc-u-flex-direction-row {
|
|
4097
|
+
flex-direction: row !important;
|
|
4098
|
+
}
|
|
4099
|
+
|
|
4100
|
+
.adyen-kyc-u-flex-direction-row-reverse {
|
|
4101
|
+
flex-direction: row-reverse !important;
|
|
4102
|
+
}
|
|
4103
|
+
|
|
4104
|
+
.adyen-kyc-u-flex-direction-column {
|
|
4105
|
+
flex-direction: column !important;
|
|
4106
|
+
}
|
|
4107
|
+
|
|
4108
|
+
.adyen-kyc-u-flex-direction-column-reverse {
|
|
4109
|
+
flex-direction: column-reverse !important;
|
|
4110
|
+
}
|
|
4111
|
+
|
|
4112
|
+
.adyen-kyc-u-flex-wrap-wrap {
|
|
4113
|
+
flex-wrap: wrap !important;
|
|
4114
|
+
}
|
|
4115
|
+
|
|
4116
|
+
.adyen-kyc-u-flex-wrap-nowrap {
|
|
4117
|
+
flex-wrap: nowrap !important;
|
|
4118
|
+
}
|
|
4119
|
+
|
|
4120
|
+
.adyen-kyc-u-align-items-start {
|
|
4121
|
+
align-items: start !important;
|
|
4122
|
+
}
|
|
4123
|
+
|
|
4124
|
+
.adyen-kyc-u-align-items-flex-start {
|
|
4125
|
+
align-items: flex-start !important;
|
|
4126
|
+
}
|
|
4127
|
+
|
|
4128
|
+
.adyen-kyc-u-align-items-flex-end {
|
|
4129
|
+
align-items: flex-end !important;
|
|
4130
|
+
}
|
|
4131
|
+
|
|
4132
|
+
.adyen-kyc-u-align-items-center {
|
|
4133
|
+
align-items: center !important;
|
|
4134
|
+
}
|
|
4135
|
+
|
|
4136
|
+
.adyen-kyc-u-align-items-stretch {
|
|
4137
|
+
align-items: stretch !important;
|
|
4138
|
+
}
|
|
4139
|
+
|
|
4140
|
+
.adyen-kyc-u-align-items-baseline {
|
|
4141
|
+
align-items: baseline !important;
|
|
4142
|
+
}
|
|
4143
|
+
|
|
4144
|
+
.adyen-kyc-u-align-items-end {
|
|
4145
|
+
align-items: end !important;
|
|
4146
|
+
}
|
|
4147
|
+
|
|
4148
|
+
.adyen-kyc-u-justify-content-center {
|
|
4149
|
+
justify-content: center !important;
|
|
4150
|
+
}
|
|
4151
|
+
|
|
4152
|
+
.adyen-kyc-u-justify-content-flex-start {
|
|
4153
|
+
justify-content: flex-start !important;
|
|
4154
|
+
}
|
|
4155
|
+
|
|
4156
|
+
.adyen-kyc-u-justify-content-flex-end {
|
|
4157
|
+
justify-content: flex-end !important;
|
|
4158
|
+
}
|
|
4159
|
+
|
|
4160
|
+
.adyen-kyc-u-justify-content-start {
|
|
4161
|
+
justify-content: start !important;
|
|
4162
|
+
}
|
|
4163
|
+
|
|
4164
|
+
.adyen-kyc-u-justify-content-end {
|
|
4165
|
+
justify-content: end !important;
|
|
4166
|
+
}
|
|
4167
|
+
|
|
4168
|
+
.adyen-kyc-u-justify-content-left {
|
|
4169
|
+
justify-content: left !important;
|
|
4170
|
+
}
|
|
4171
|
+
|
|
4172
|
+
.adyen-kyc-u-justify-content-right {
|
|
4173
|
+
justify-content: right !important;
|
|
4174
|
+
}
|
|
4175
|
+
|
|
4176
|
+
.adyen-kyc-u-justify-content-space-between {
|
|
4177
|
+
justify-content: space-between !important;
|
|
4178
|
+
}
|
|
4179
|
+
|
|
4180
|
+
.adyen-kyc-u-justify-content-space-around {
|
|
4181
|
+
justify-content: space-around !important;
|
|
4182
|
+
}
|
|
4183
|
+
|
|
4184
|
+
.adyen-kyc-u-justify-content-space-evenly {
|
|
4185
|
+
justify-content: space-evenly !important;
|
|
4186
|
+
}
|
|
4187
|
+
|
|
4188
|
+
.adyen-kyc-u-justify-content-stretch {
|
|
4189
|
+
justify-content: stretch !important;
|
|
4190
|
+
}
|
|
4191
|
+
|
|
4192
|
+
.adyen-kyc-u-flex-1 {
|
|
4193
|
+
flex: 1 !important;
|
|
4194
|
+
}
|
|
4195
|
+
|
|
4196
|
+
.adyen-kyc-u-flex-2 {
|
|
4197
|
+
flex: 2 !important;
|
|
4198
|
+
}
|
|
4199
|
+
|
|
4200
|
+
.adyen-kyc-u-flex-3 {
|
|
4201
|
+
flex: 3 !important;
|
|
4202
|
+
}
|
|
4203
|
+
|
|
4204
|
+
.adyen-kyc-u-flex-4 {
|
|
4205
|
+
flex: 4 !important;
|
|
4206
|
+
}
|
|
4207
|
+
|
|
4208
|
+
.adyen-kyc-u-width-full {
|
|
4209
|
+
width: 100% !important;
|
|
4210
|
+
}
|
|
4211
|
+
|
|
4212
|
+
.adyen-kyc-u-margin-auto {
|
|
4213
|
+
margin: auto !important;
|
|
4214
|
+
}
|
|
4215
|
+
|
|
4216
|
+
.adyen-kyc-u-margin-bottom-auto {
|
|
4217
|
+
margin-bottom: auto !important;
|
|
4218
|
+
}
|
|
4219
|
+
|
|
4220
|
+
.adyen-kyc-u-margin-left-auto {
|
|
4221
|
+
margin-left: auto !important;
|
|
4222
|
+
}
|
|
4223
|
+
|
|
4224
|
+
.adyen-kyc-u-margin-right-auto {
|
|
4225
|
+
margin-right: auto !important;
|
|
4226
|
+
}
|
|
4227
|
+
|
|
4228
|
+
.adyen-kyc-u-margin-top-auto {
|
|
4229
|
+
margin-top: auto !important;
|
|
4230
|
+
}
|
|
4231
|
+
|
|
4232
|
+
.adyen-kyc-u-margin-x-auto {
|
|
4233
|
+
margin-left: auto !important;
|
|
4234
|
+
margin-right: auto !important;
|
|
4235
|
+
}
|
|
4236
|
+
|
|
4237
|
+
.adyen-kyc-u-margin-y-auto {
|
|
4238
|
+
margin-bottom: auto !important;
|
|
4239
|
+
margin-top: auto !important;
|
|
4240
|
+
}
|
|
4241
|
+
|
|
4242
|
+
.adyen-kyc-u-margin-0 {
|
|
4243
|
+
margin: var(--adyen-sdk-spacer-000, 0px) !important;
|
|
4244
|
+
}
|
|
4245
|
+
|
|
4246
|
+
.adyen-kyc-u-margin-bottom-0 {
|
|
4247
|
+
margin-bottom: var(--adyen-sdk-spacer-000, 0px) !important;
|
|
4248
|
+
}
|
|
4249
|
+
|
|
4250
|
+
.adyen-kyc-u-margin-left-0 {
|
|
4251
|
+
margin-left: var(--adyen-sdk-spacer-000, 0px) !important;
|
|
4252
|
+
}
|
|
4253
|
+
|
|
4254
|
+
.adyen-kyc-u-margin-right-0 {
|
|
4255
|
+
margin-right: var(--adyen-sdk-spacer-000, 0px) !important;
|
|
4256
|
+
}
|
|
4257
|
+
|
|
4258
|
+
.adyen-kyc-u-margin-top-0 {
|
|
4259
|
+
margin-top: var(--adyen-sdk-spacer-000, 0px) !important;
|
|
4260
|
+
}
|
|
4261
|
+
|
|
4262
|
+
.adyen-kyc-u-margin-x-0 {
|
|
4263
|
+
margin-left: var(--adyen-sdk-spacer-000, 0px) !important;
|
|
4264
|
+
margin-right: var(--adyen-sdk-spacer-000, 0px) !important;
|
|
4265
|
+
}
|
|
4266
|
+
|
|
4267
|
+
.adyen-kyc-u-margin-y-0 {
|
|
4268
|
+
margin-bottom: var(--adyen-sdk-spacer-000, 0px) !important;
|
|
4269
|
+
margin-top: var(--adyen-sdk-spacer-000, 0px) !important;
|
|
4270
|
+
}
|
|
4271
|
+
|
|
4272
|
+
.adyen-kyc-u-margin-2 {
|
|
4273
|
+
margin: var(--adyen-sdk-spacer-010, 2px) !important;
|
|
4274
|
+
}
|
|
4275
|
+
|
|
4276
|
+
.adyen-kyc-u-margin-bottom-2 {
|
|
4277
|
+
margin-bottom: var(--adyen-sdk-spacer-010, 2px) !important;
|
|
4278
|
+
}
|
|
4279
|
+
|
|
4280
|
+
.adyen-kyc-u-margin-left-2 {
|
|
4281
|
+
margin-left: var(--adyen-sdk-spacer-010, 2px) !important;
|
|
4282
|
+
}
|
|
4283
|
+
|
|
4284
|
+
.adyen-kyc-u-margin-right-2 {
|
|
4285
|
+
margin-right: var(--adyen-sdk-spacer-010, 2px) !important;
|
|
4286
|
+
}
|
|
4287
|
+
|
|
4288
|
+
.adyen-kyc-u-margin-top-2 {
|
|
4289
|
+
margin-top: var(--adyen-sdk-spacer-010, 2px) !important;
|
|
4290
|
+
}
|
|
4291
|
+
|
|
4292
|
+
.adyen-kyc-u-margin-x-2 {
|
|
4293
|
+
margin-left: var(--adyen-sdk-spacer-010, 2px) !important;
|
|
4294
|
+
margin-right: var(--adyen-sdk-spacer-010, 2px) !important;
|
|
4295
|
+
}
|
|
4296
|
+
|
|
4297
|
+
.adyen-kyc-u-margin-y-2 {
|
|
4298
|
+
margin-bottom: var(--adyen-sdk-spacer-010, 2px) !important;
|
|
4299
|
+
margin-top: var(--adyen-sdk-spacer-010, 2px) !important;
|
|
4300
|
+
}
|
|
4301
|
+
|
|
4302
|
+
.adyen-kyc-u-margin-4 {
|
|
4303
|
+
margin: var(--adyen-sdk-spacer-020, 4px) !important;
|
|
4304
|
+
}
|
|
4305
|
+
|
|
4306
|
+
.adyen-kyc-u-margin-bottom-4 {
|
|
4307
|
+
margin-bottom: var(--adyen-sdk-spacer-020, 4px) !important;
|
|
4308
|
+
}
|
|
4309
|
+
|
|
4310
|
+
.adyen-kyc-u-margin-left-4 {
|
|
4311
|
+
margin-left: var(--adyen-sdk-spacer-020, 4px) !important;
|
|
4312
|
+
}
|
|
4313
|
+
|
|
4314
|
+
.adyen-kyc-u-margin-right-4 {
|
|
4315
|
+
margin-right: var(--adyen-sdk-spacer-020, 4px) !important;
|
|
4316
|
+
}
|
|
4317
|
+
|
|
4318
|
+
.adyen-kyc-u-margin-top-4 {
|
|
4319
|
+
margin-top: var(--adyen-sdk-spacer-020, 4px) !important;
|
|
4320
|
+
}
|
|
4321
|
+
|
|
4322
|
+
.adyen-kyc-u-margin-x-4 {
|
|
4323
|
+
margin-left: var(--adyen-sdk-spacer-020, 4px) !important;
|
|
4324
|
+
margin-right: var(--adyen-sdk-spacer-020, 4px) !important;
|
|
4325
|
+
}
|
|
4326
|
+
|
|
4327
|
+
.adyen-kyc-u-margin-y-4 {
|
|
4328
|
+
margin-bottom: var(--adyen-sdk-spacer-020, 4px) !important;
|
|
4329
|
+
margin-top: var(--adyen-sdk-spacer-020, 4px) !important;
|
|
4330
|
+
}
|
|
4331
|
+
|
|
4332
|
+
.adyen-kyc-u-margin-6 {
|
|
4333
|
+
margin: var(--adyen-sdk-spacer-030, 6px) !important;
|
|
4334
|
+
}
|
|
4335
|
+
|
|
4336
|
+
.adyen-kyc-u-margin-bottom-6 {
|
|
4337
|
+
margin-bottom: var(--adyen-sdk-spacer-030, 6px) !important;
|
|
4338
|
+
}
|
|
4339
|
+
|
|
4340
|
+
.adyen-kyc-u-margin-left-6 {
|
|
4341
|
+
margin-left: var(--adyen-sdk-spacer-030, 6px) !important;
|
|
4342
|
+
}
|
|
4343
|
+
|
|
4344
|
+
.adyen-kyc-u-margin-right-6 {
|
|
4345
|
+
margin-right: var(--adyen-sdk-spacer-030, 6px) !important;
|
|
4346
|
+
}
|
|
4347
|
+
|
|
4348
|
+
.adyen-kyc-u-margin-top-6 {
|
|
4349
|
+
margin-top: var(--adyen-sdk-spacer-030, 6px) !important;
|
|
4350
|
+
}
|
|
4351
|
+
|
|
4352
|
+
.adyen-kyc-u-margin-x-6 {
|
|
4353
|
+
margin-left: var(--adyen-sdk-spacer-030, 6px) !important;
|
|
4354
|
+
margin-right: var(--adyen-sdk-spacer-030, 6px) !important;
|
|
4355
|
+
}
|
|
4356
|
+
|
|
4357
|
+
.adyen-kyc-u-margin-y-6 {
|
|
4358
|
+
margin-bottom: var(--adyen-sdk-spacer-030, 6px) !important;
|
|
4359
|
+
margin-top: var(--adyen-sdk-spacer-030, 6px) !important;
|
|
4360
|
+
}
|
|
4361
|
+
|
|
4362
|
+
.adyen-kyc-u-margin-8 {
|
|
4363
|
+
margin: var(--adyen-sdk-spacer-040, 8px) !important;
|
|
4364
|
+
}
|
|
4365
|
+
|
|
4366
|
+
.adyen-kyc-u-margin-bottom-8 {
|
|
4367
|
+
margin-bottom: var(--adyen-sdk-spacer-040, 8px) !important;
|
|
4368
|
+
}
|
|
4369
|
+
|
|
4370
|
+
.adyen-kyc-u-margin-left-8 {
|
|
4371
|
+
margin-left: var(--adyen-sdk-spacer-040, 8px) !important;
|
|
4372
|
+
}
|
|
4373
|
+
|
|
4374
|
+
.adyen-kyc-u-margin-right-8 {
|
|
4375
|
+
margin-right: var(--adyen-sdk-spacer-040, 8px) !important;
|
|
4376
|
+
}
|
|
4377
|
+
|
|
4378
|
+
.adyen-kyc-u-margin-top-8 {
|
|
4379
|
+
margin-top: var(--adyen-sdk-spacer-040, 8px) !important;
|
|
4380
|
+
}
|
|
4381
|
+
|
|
4382
|
+
.adyen-kyc-u-margin-x-8 {
|
|
4383
|
+
margin-left: var(--adyen-sdk-spacer-040, 8px) !important;
|
|
4384
|
+
margin-right: var(--adyen-sdk-spacer-040, 8px) !important;
|
|
4385
|
+
}
|
|
4386
|
+
|
|
4387
|
+
.adyen-kyc-u-margin-y-8 {
|
|
4388
|
+
margin-bottom: var(--adyen-sdk-spacer-040, 8px) !important;
|
|
4389
|
+
margin-top: var(--adyen-sdk-spacer-040, 8px) !important;
|
|
4390
|
+
}
|
|
4391
|
+
|
|
4392
|
+
.adyen-kyc-u-margin-10 {
|
|
4393
|
+
margin: var(--adyen-sdk-spacer-050, 10px) !important;
|
|
4394
|
+
}
|
|
4395
|
+
|
|
4396
|
+
.adyen-kyc-u-margin-bottom-10 {
|
|
4397
|
+
margin-bottom: var(--adyen-sdk-spacer-050, 10px) !important;
|
|
4398
|
+
}
|
|
4399
|
+
|
|
4400
|
+
.adyen-kyc-u-margin-left-10 {
|
|
4401
|
+
margin-left: var(--adyen-sdk-spacer-050, 10px) !important;
|
|
4402
|
+
}
|
|
4403
|
+
|
|
4404
|
+
.adyen-kyc-u-margin-right-10 {
|
|
4405
|
+
margin-right: var(--adyen-sdk-spacer-050, 10px) !important;
|
|
4406
|
+
}
|
|
4407
|
+
|
|
4408
|
+
.adyen-kyc-u-margin-top-10 {
|
|
4409
|
+
margin-top: var(--adyen-sdk-spacer-050, 10px) !important;
|
|
4410
|
+
}
|
|
4411
|
+
|
|
4412
|
+
.adyen-kyc-u-margin-x-10 {
|
|
4413
|
+
margin-left: var(--adyen-sdk-spacer-050, 10px) !important;
|
|
4414
|
+
margin-right: var(--adyen-sdk-spacer-050, 10px) !important;
|
|
4415
|
+
}
|
|
4416
|
+
|
|
4417
|
+
.adyen-kyc-u-margin-y-10 {
|
|
4418
|
+
margin-bottom: var(--adyen-sdk-spacer-050, 10px) !important;
|
|
4419
|
+
margin-top: var(--adyen-sdk-spacer-050, 10px) !important;
|
|
4420
|
+
}
|
|
4421
|
+
|
|
4422
|
+
.adyen-kyc-u-margin-12 {
|
|
4423
|
+
margin: var(--adyen-sdk-spacer-060, 12px) !important;
|
|
4424
|
+
}
|
|
4425
|
+
|
|
4426
|
+
.adyen-kyc-u-margin-bottom-12 {
|
|
4427
|
+
margin-bottom: var(--adyen-sdk-spacer-060, 12px) !important;
|
|
4428
|
+
}
|
|
4429
|
+
|
|
4430
|
+
.adyen-kyc-u-margin-left-12 {
|
|
4431
|
+
margin-left: var(--adyen-sdk-spacer-060, 12px) !important;
|
|
4432
|
+
}
|
|
4433
|
+
|
|
4434
|
+
.adyen-kyc-u-margin-right-12 {
|
|
4435
|
+
margin-right: var(--adyen-sdk-spacer-060, 12px) !important;
|
|
4436
|
+
}
|
|
4437
|
+
|
|
4438
|
+
.adyen-kyc-u-margin-top-12 {
|
|
4439
|
+
margin-top: var(--adyen-sdk-spacer-060, 12px) !important;
|
|
4440
|
+
}
|
|
4441
|
+
|
|
4442
|
+
.adyen-kyc-u-margin-x-12 {
|
|
4443
|
+
margin-left: var(--adyen-sdk-spacer-060, 12px) !important;
|
|
4444
|
+
margin-right: var(--adyen-sdk-spacer-060, 12px) !important;
|
|
4445
|
+
}
|
|
4446
|
+
|
|
4447
|
+
.adyen-kyc-u-margin-y-12 {
|
|
4448
|
+
margin-bottom: var(--adyen-sdk-spacer-060, 12px) !important;
|
|
4449
|
+
margin-top: var(--adyen-sdk-spacer-060, 12px) !important;
|
|
4450
|
+
}
|
|
4451
|
+
|
|
4452
|
+
.adyen-kyc-u-margin-16 {
|
|
4453
|
+
margin: var(--adyen-sdk-spacer-070, 16px) !important;
|
|
4454
|
+
}
|
|
4455
|
+
|
|
4456
|
+
.adyen-kyc-u-margin-bottom-16 {
|
|
4457
|
+
margin-bottom: var(--adyen-sdk-spacer-070, 16px) !important;
|
|
4458
|
+
}
|
|
4459
|
+
|
|
4460
|
+
.adyen-kyc-u-margin-left-16 {
|
|
4461
|
+
margin-left: var(--adyen-sdk-spacer-070, 16px) !important;
|
|
4462
|
+
}
|
|
4463
|
+
|
|
4464
|
+
.adyen-kyc-u-margin-right-16 {
|
|
4465
|
+
margin-right: var(--adyen-sdk-spacer-070, 16px) !important;
|
|
4466
|
+
}
|
|
4467
|
+
|
|
4468
|
+
.adyen-kyc-u-margin-top-16 {
|
|
4469
|
+
margin-top: var(--adyen-sdk-spacer-070, 16px) !important;
|
|
4470
|
+
}
|
|
4471
|
+
|
|
4472
|
+
.adyen-kyc-u-margin-x-16 {
|
|
4473
|
+
margin-left: var(--adyen-sdk-spacer-070, 16px) !important;
|
|
4474
|
+
margin-right: var(--adyen-sdk-spacer-070, 16px) !important;
|
|
4475
|
+
}
|
|
4476
|
+
|
|
4477
|
+
.adyen-kyc-u-margin-y-16 {
|
|
4478
|
+
margin-bottom: var(--adyen-sdk-spacer-070, 16px) !important;
|
|
4479
|
+
margin-top: var(--adyen-sdk-spacer-070, 16px) !important;
|
|
4480
|
+
}
|
|
4481
|
+
|
|
4482
|
+
.adyen-kyc-u-margin-20 {
|
|
4483
|
+
margin: var(--adyen-sdk-spacer-080, 20px) !important;
|
|
4484
|
+
}
|
|
4485
|
+
|
|
4486
|
+
.adyen-kyc-u-margin-bottom-20 {
|
|
4487
|
+
margin-bottom: var(--adyen-sdk-spacer-080, 20px) !important;
|
|
4488
|
+
}
|
|
4489
|
+
|
|
4490
|
+
.adyen-kyc-u-margin-left-20 {
|
|
4491
|
+
margin-left: var(--adyen-sdk-spacer-080, 20px) !important;
|
|
4492
|
+
}
|
|
4493
|
+
|
|
4494
|
+
.adyen-kyc-u-margin-right-20 {
|
|
4495
|
+
margin-right: var(--adyen-sdk-spacer-080, 20px) !important;
|
|
4496
|
+
}
|
|
4497
|
+
|
|
4498
|
+
.adyen-kyc-u-margin-top-20 {
|
|
4499
|
+
margin-top: var(--adyen-sdk-spacer-080, 20px) !important;
|
|
4500
|
+
}
|
|
4501
|
+
|
|
4502
|
+
.adyen-kyc-u-margin-x-20 {
|
|
4503
|
+
margin-left: var(--adyen-sdk-spacer-080, 20px) !important;
|
|
4504
|
+
margin-right: var(--adyen-sdk-spacer-080, 20px) !important;
|
|
4505
|
+
}
|
|
4506
|
+
|
|
4507
|
+
.adyen-kyc-u-margin-y-20 {
|
|
4508
|
+
margin-bottom: var(--adyen-sdk-spacer-080, 20px) !important;
|
|
4509
|
+
margin-top: var(--adyen-sdk-spacer-080, 20px) !important;
|
|
4510
|
+
}
|
|
4511
|
+
|
|
4512
|
+
.adyen-kyc-u-margin-24 {
|
|
4513
|
+
margin: var(--adyen-sdk-spacer-090, 24px) !important;
|
|
4514
|
+
}
|
|
4515
|
+
|
|
4516
|
+
.adyen-kyc-u-margin-bottom-24 {
|
|
4517
|
+
margin-bottom: var(--adyen-sdk-spacer-090, 24px) !important;
|
|
4518
|
+
}
|
|
4519
|
+
|
|
4520
|
+
.adyen-kyc-u-margin-left-24 {
|
|
4521
|
+
margin-left: var(--adyen-sdk-spacer-090, 24px) !important;
|
|
4522
|
+
}
|
|
4523
|
+
|
|
4524
|
+
.adyen-kyc-u-margin-right-24 {
|
|
4525
|
+
margin-right: var(--adyen-sdk-spacer-090, 24px) !important;
|
|
4526
|
+
}
|
|
4527
|
+
|
|
4528
|
+
.adyen-kyc-u-margin-top-24 {
|
|
4529
|
+
margin-top: var(--adyen-sdk-spacer-090, 24px) !important;
|
|
4530
|
+
}
|
|
4531
|
+
|
|
4532
|
+
.adyen-kyc-u-margin-x-24 {
|
|
4533
|
+
margin-left: var(--adyen-sdk-spacer-090, 24px) !important;
|
|
4534
|
+
margin-right: var(--adyen-sdk-spacer-090, 24px) !important;
|
|
4535
|
+
}
|
|
4536
|
+
|
|
4537
|
+
.adyen-kyc-u-margin-y-24 {
|
|
4538
|
+
margin-bottom: var(--adyen-sdk-spacer-090, 24px) !important;
|
|
4539
|
+
margin-top: var(--adyen-sdk-spacer-090, 24px) !important;
|
|
4540
|
+
}
|
|
4541
|
+
|
|
4542
|
+
.adyen-kyc-u-margin-32 {
|
|
4543
|
+
margin: var(--adyen-sdk-spacer-100, 32px) !important;
|
|
4544
|
+
}
|
|
4545
|
+
|
|
4546
|
+
.adyen-kyc-u-margin-bottom-32 {
|
|
4547
|
+
margin-bottom: var(--adyen-sdk-spacer-100, 32px) !important;
|
|
4548
|
+
}
|
|
4549
|
+
|
|
4550
|
+
.adyen-kyc-u-margin-left-32 {
|
|
4551
|
+
margin-left: var(--adyen-sdk-spacer-100, 32px) !important;
|
|
4552
|
+
}
|
|
4553
|
+
|
|
4554
|
+
.adyen-kyc-u-margin-right-32 {
|
|
4555
|
+
margin-right: var(--adyen-sdk-spacer-100, 32px) !important;
|
|
4556
|
+
}
|
|
4557
|
+
|
|
4558
|
+
.adyen-kyc-u-margin-top-32 {
|
|
4559
|
+
margin-top: var(--adyen-sdk-spacer-100, 32px) !important;
|
|
4560
|
+
}
|
|
4561
|
+
|
|
4562
|
+
.adyen-kyc-u-margin-x-32 {
|
|
4563
|
+
margin-left: var(--adyen-sdk-spacer-100, 32px) !important;
|
|
4564
|
+
margin-right: var(--adyen-sdk-spacer-100, 32px) !important;
|
|
4565
|
+
}
|
|
4566
|
+
|
|
4567
|
+
.adyen-kyc-u-margin-y-32 {
|
|
4568
|
+
margin-bottom: var(--adyen-sdk-spacer-100, 32px) !important;
|
|
4569
|
+
margin-top: var(--adyen-sdk-spacer-100, 32px) !important;
|
|
4570
|
+
}
|
|
4571
|
+
|
|
4572
|
+
.adyen-kyc-u-margin-40 {
|
|
4573
|
+
margin: var(--adyen-sdk-spacer-110, 40px) !important;
|
|
4574
|
+
}
|
|
4575
|
+
|
|
4576
|
+
.adyen-kyc-u-margin-bottom-40 {
|
|
4577
|
+
margin-bottom: var(--adyen-sdk-spacer-110, 40px) !important;
|
|
4578
|
+
}
|
|
4579
|
+
|
|
4580
|
+
.adyen-kyc-u-margin-left-40 {
|
|
4581
|
+
margin-left: var(--adyen-sdk-spacer-110, 40px) !important;
|
|
4582
|
+
}
|
|
4583
|
+
|
|
4584
|
+
.adyen-kyc-u-margin-right-40 {
|
|
4585
|
+
margin-right: var(--adyen-sdk-spacer-110, 40px) !important;
|
|
4586
|
+
}
|
|
4587
|
+
|
|
4588
|
+
.adyen-kyc-u-margin-top-40 {
|
|
4589
|
+
margin-top: var(--adyen-sdk-spacer-110, 40px) !important;
|
|
4590
|
+
}
|
|
4591
|
+
|
|
4592
|
+
.adyen-kyc-u-margin-x-40 {
|
|
4593
|
+
margin-left: var(--adyen-sdk-spacer-110, 40px) !important;
|
|
4594
|
+
margin-right: var(--adyen-sdk-spacer-110, 40px) !important;
|
|
4595
|
+
}
|
|
4596
|
+
|
|
4597
|
+
.adyen-kyc-u-margin-y-40 {
|
|
4598
|
+
margin-bottom: var(--adyen-sdk-spacer-110, 40px) !important;
|
|
4599
|
+
margin-top: var(--adyen-sdk-spacer-110, 40px) !important;
|
|
4600
|
+
}
|
|
4601
|
+
|
|
4602
|
+
.adyen-kyc-u-margin-48 {
|
|
4603
|
+
margin: var(--adyen-sdk-spacer-120, 48px) !important;
|
|
4604
|
+
}
|
|
4605
|
+
|
|
4606
|
+
.adyen-kyc-u-margin-bottom-48 {
|
|
4607
|
+
margin-bottom: var(--adyen-sdk-spacer-120, 48px) !important;
|
|
4608
|
+
}
|
|
4609
|
+
|
|
4610
|
+
.adyen-kyc-u-margin-left-48 {
|
|
4611
|
+
margin-left: var(--adyen-sdk-spacer-120, 48px) !important;
|
|
4612
|
+
}
|
|
4613
|
+
|
|
4614
|
+
.adyen-kyc-u-margin-right-48 {
|
|
4615
|
+
margin-right: var(--adyen-sdk-spacer-120, 48px) !important;
|
|
4616
|
+
}
|
|
4617
|
+
|
|
4618
|
+
.adyen-kyc-u-margin-top-48 {
|
|
4619
|
+
margin-top: var(--adyen-sdk-spacer-120, 48px) !important;
|
|
4620
|
+
}
|
|
4621
|
+
|
|
4622
|
+
.adyen-kyc-u-margin-x-48 {
|
|
4623
|
+
margin-left: var(--adyen-sdk-spacer-120, 48px) !important;
|
|
4624
|
+
margin-right: var(--adyen-sdk-spacer-120, 48px) !important;
|
|
4625
|
+
}
|
|
4626
|
+
|
|
4627
|
+
.adyen-kyc-u-margin-y-48 {
|
|
4628
|
+
margin-bottom: var(--adyen-sdk-spacer-120, 48px) !important;
|
|
4629
|
+
margin-top: var(--adyen-sdk-spacer-120, 48px) !important;
|
|
4630
|
+
}
|
|
4631
|
+
|
|
4632
|
+
.adyen-kyc-ui-element-container-wrapper {
|
|
4633
|
+
width: 100%;
|
|
4634
|
+
}
|
|
4635
|
+
|
|
4636
|
+
.adyen-kyc-ui-element-container {
|
|
4637
|
+
box-sizing: border-box;
|
|
4638
|
+
background-color: var(--adyen-sdk-color-background-primary, #ffffff);
|
|
4085
4639
|
position: relative;
|
|
4640
|
+
padding: var(--adyen-sdk-spacer-100, 32px);
|
|
4641
|
+
border-radius: var(--adyen-sdk-border-radius-m, 8px);
|
|
4642
|
+
}
|
|
4643
|
+
.adyen-layout-xs-only .adyen-kyc-ui-element-container {
|
|
4644
|
+
padding: var(--adyen-sdk-spacer-040, 8px);
|
|
4086
4645
|
}/* #region Borders */
|
|
4087
4646
|
/* #endregion */
|
|
4088
4647
|
/* #region Z-index */
|