@adyen/kyc-components 3.30.1 → 3.30.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.
@@ -35294,11 +35294,14 @@ function RoleAndTypeDropinComponent({
35294
35294
  setActiveForm(targetForm);
35295
35295
  };
35296
35296
  const content = jsxs(Fragment, {
35297
- children: [jsx(FormNavigation, {
35298
- forms: formsWithValidity,
35299
- activeForm: formsWithValidity.find((form) => form.formId === activeForm.formId),
35300
- taskName: "trustMembers",
35301
- gotoForm: gotoFormByFormIndex
35297
+ children: [jsx("div", {
35298
+ className: "adyen-kyc-dropin__sidebar-wrapper",
35299
+ children: jsx(FormNavigation, {
35300
+ forms: formsWithValidity,
35301
+ activeForm: formsWithValidity.find((form) => form.formId === activeForm.formId),
35302
+ taskName: "trustMembers",
35303
+ gotoForm: gotoFormByFormIndex
35304
+ })
35302
35305
  }), jsxs("div", {
35303
35306
  className: "adyen-kyc-form-container",
35304
35307
  children: [jsx("div", {
@@ -37661,7 +37664,9 @@ function DropinComposerComponent({
37661
37664
  handleDownloadAcceptedTermsOfServiceDocument: args.handleDownloadAcceptedTermsOfServiceDocument,
37662
37665
  handleDownloadUnacceptedTermsOfServiceDocument: args.handleDownloadUnacceptedTermsOfServiceDocument,
37663
37666
  handleHomeClick: () => navigateTo(TaskTypes.TASKS_OVERVIEW),
37664
- handleAddSigner: () => navigateTo(TaskTypes.DECISION_MAKER),
37667
+ handleAddSigner: () => {
37668
+ onNavigateToDecisionMakerIndividual(TaskTypes.DECISION_MAKER);
37669
+ },
37665
37670
  handleSign: async (...params) => {
37666
37671
  await args.handleSignServiceAgreement(...params);
37667
37672
  await getServiceAgreementStatus2();
@@ -41797,7 +41802,7 @@ const ConfigurationApiProvider = ({
41797
41802
  isEmbeddedDropin,
41798
41803
  loadingContext
41799
41804
  } = authContext;
41800
- const sdkVersion = "3.30.1";
41805
+ const sdkVersion = "3.30.3";
41801
41806
  useAnalytics({
41802
41807
  onUserEvent,
41803
41808
  legalEntityId: rootLegalEntityId,
@@ -42482,7 +42487,7 @@ const DebugModal = ({
42482
42487
  };
42483
42488
  const copyToClipboard = async () => {
42484
42489
  const toCopy = {
42485
- sdkVersion: "3.30.1",
42490
+ sdkVersion: "3.30.3",
42486
42491
  experiments: Object.fromEntries(allExperimentsWithValues),
42487
42492
  settings: Object.fromEntries(allSettingsWithValues)
42488
42493
  };
@@ -42521,7 +42526,7 @@ const DebugModal = ({
42521
42526
  children: [jsxs("div", {
42522
42527
  className: "adyen-kyc-debug-modal__meta",
42523
42528
  children: [jsxs("span", {
42524
- children: ["SDK version: ", "3.30.1"]
42529
+ children: ["SDK version: ", "3.30.3"]
42525
42530
  }), jsxs("span", {
42526
42531
  children: ["rootLegalEntityId: ", rootLegalEntityId]
42527
42532
  })]
@@ -42669,9 +42674,7 @@ class UIElement extends BaseElement {
42669
42674
  rootLegalEntityId,
42670
42675
  handleGetLegalEntity: "handleGetLegalEntity" in this.props.componentProps ? this.props.componentProps.handleGetLegalEntity : void 0,
42671
42676
  children: jsx("div", {
42672
- style: {
42673
- width: "100%"
42674
- },
42677
+ className: "adyen-kyc-ui-element-container-wrapper",
42675
42678
  children: jsx(AutoResizer, {
42676
42679
  children: jsx("div", {
42677
42680
  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;
@@ -4159,8 +4155,571 @@ button[disabled]:hover {
4159
4155
  .adyen-view-verification-status__button {
4160
4156
  font-size: var(--adyen-sdk-text-body-font-size, 14px);
4161
4157
  line-height: var(--adyen-sdk-text-body-line-height, 20px);
4162
- }.adyen-kyc-ui-element-container {
4158
+ }/* #region Borders */
4159
+ /* #endregion */
4160
+ /* #region Z-index */
4161
+ /* #endregion */
4162
+ /* #region Timing functions */
4163
+ /* #endregion */
4164
+ /* #region Inline components */
4165
+ /* #endregion */
4166
+ .adyen-kyc-u-display-flex {
4167
+ display: flex !important;
4168
+ }
4169
+
4170
+ .adyen-kyc-u-display-inline-flex {
4171
+ display: inline-flex !important;
4172
+ }
4173
+
4174
+ .adyen-kyc-u-flex-direction-row {
4175
+ flex-direction: row !important;
4176
+ }
4177
+
4178
+ .adyen-kyc-u-flex-direction-row-reverse {
4179
+ flex-direction: row-reverse !important;
4180
+ }
4181
+
4182
+ .adyen-kyc-u-flex-direction-column {
4183
+ flex-direction: column !important;
4184
+ }
4185
+
4186
+ .adyen-kyc-u-flex-direction-column-reverse {
4187
+ flex-direction: column-reverse !important;
4188
+ }
4189
+
4190
+ .adyen-kyc-u-flex-wrap-wrap {
4191
+ flex-wrap: wrap !important;
4192
+ }
4193
+
4194
+ .adyen-kyc-u-flex-wrap-nowrap {
4195
+ flex-wrap: nowrap !important;
4196
+ }
4197
+
4198
+ .adyen-kyc-u-align-items-start {
4199
+ align-items: start !important;
4200
+ }
4201
+
4202
+ .adyen-kyc-u-align-items-flex-start {
4203
+ align-items: flex-start !important;
4204
+ }
4205
+
4206
+ .adyen-kyc-u-align-items-flex-end {
4207
+ align-items: flex-end !important;
4208
+ }
4209
+
4210
+ .adyen-kyc-u-align-items-center {
4211
+ align-items: center !important;
4212
+ }
4213
+
4214
+ .adyen-kyc-u-align-items-stretch {
4215
+ align-items: stretch !important;
4216
+ }
4217
+
4218
+ .adyen-kyc-u-align-items-baseline {
4219
+ align-items: baseline !important;
4220
+ }
4221
+
4222
+ .adyen-kyc-u-align-items-end {
4223
+ align-items: end !important;
4224
+ }
4225
+
4226
+ .adyen-kyc-u-justify-content-center {
4227
+ justify-content: center !important;
4228
+ }
4229
+
4230
+ .adyen-kyc-u-justify-content-flex-start {
4231
+ justify-content: flex-start !important;
4232
+ }
4233
+
4234
+ .adyen-kyc-u-justify-content-flex-end {
4235
+ justify-content: flex-end !important;
4236
+ }
4237
+
4238
+ .adyen-kyc-u-justify-content-start {
4239
+ justify-content: start !important;
4240
+ }
4241
+
4242
+ .adyen-kyc-u-justify-content-end {
4243
+ justify-content: end !important;
4244
+ }
4245
+
4246
+ .adyen-kyc-u-justify-content-left {
4247
+ justify-content: left !important;
4248
+ }
4249
+
4250
+ .adyen-kyc-u-justify-content-right {
4251
+ justify-content: right !important;
4252
+ }
4253
+
4254
+ .adyen-kyc-u-justify-content-space-between {
4255
+ justify-content: space-between !important;
4256
+ }
4257
+
4258
+ .adyen-kyc-u-justify-content-space-around {
4259
+ justify-content: space-around !important;
4260
+ }
4261
+
4262
+ .adyen-kyc-u-justify-content-space-evenly {
4263
+ justify-content: space-evenly !important;
4264
+ }
4265
+
4266
+ .adyen-kyc-u-justify-content-stretch {
4267
+ justify-content: stretch !important;
4268
+ }
4269
+
4270
+ .adyen-kyc-u-flex-1 {
4271
+ flex: 1 !important;
4272
+ }
4273
+
4274
+ .adyen-kyc-u-flex-2 {
4275
+ flex: 2 !important;
4276
+ }
4277
+
4278
+ .adyen-kyc-u-flex-3 {
4279
+ flex: 3 !important;
4280
+ }
4281
+
4282
+ .adyen-kyc-u-flex-4 {
4283
+ flex: 4 !important;
4284
+ }
4285
+
4286
+ .adyen-kyc-u-width-full {
4287
+ width: 100% !important;
4288
+ }
4289
+
4290
+ .adyen-kyc-u-margin-auto {
4291
+ margin: auto !important;
4292
+ }
4293
+
4294
+ .adyen-kyc-u-margin-bottom-auto {
4295
+ margin-bottom: auto !important;
4296
+ }
4297
+
4298
+ .adyen-kyc-u-margin-left-auto {
4299
+ margin-left: auto !important;
4300
+ }
4301
+
4302
+ .adyen-kyc-u-margin-right-auto {
4303
+ margin-right: auto !important;
4304
+ }
4305
+
4306
+ .adyen-kyc-u-margin-top-auto {
4307
+ margin-top: auto !important;
4308
+ }
4309
+
4310
+ .adyen-kyc-u-margin-x-auto {
4311
+ margin-left: auto !important;
4312
+ margin-right: auto !important;
4313
+ }
4314
+
4315
+ .adyen-kyc-u-margin-y-auto {
4316
+ margin-bottom: auto !important;
4317
+ margin-top: auto !important;
4318
+ }
4319
+
4320
+ .adyen-kyc-u-margin-0 {
4321
+ margin: var(--adyen-sdk-spacer-000, 0px) !important;
4322
+ }
4323
+
4324
+ .adyen-kyc-u-margin-bottom-0 {
4325
+ margin-bottom: var(--adyen-sdk-spacer-000, 0px) !important;
4326
+ }
4327
+
4328
+ .adyen-kyc-u-margin-left-0 {
4329
+ margin-left: var(--adyen-sdk-spacer-000, 0px) !important;
4330
+ }
4331
+
4332
+ .adyen-kyc-u-margin-right-0 {
4333
+ margin-right: var(--adyen-sdk-spacer-000, 0px) !important;
4334
+ }
4335
+
4336
+ .adyen-kyc-u-margin-top-0 {
4337
+ margin-top: var(--adyen-sdk-spacer-000, 0px) !important;
4338
+ }
4339
+
4340
+ .adyen-kyc-u-margin-x-0 {
4341
+ margin-left: var(--adyen-sdk-spacer-000, 0px) !important;
4342
+ margin-right: var(--adyen-sdk-spacer-000, 0px) !important;
4343
+ }
4344
+
4345
+ .adyen-kyc-u-margin-y-0 {
4346
+ margin-bottom: var(--adyen-sdk-spacer-000, 0px) !important;
4347
+ margin-top: var(--adyen-sdk-spacer-000, 0px) !important;
4348
+ }
4349
+
4350
+ .adyen-kyc-u-margin-2 {
4351
+ margin: var(--adyen-sdk-spacer-010, 2px) !important;
4352
+ }
4353
+
4354
+ .adyen-kyc-u-margin-bottom-2 {
4355
+ margin-bottom: var(--adyen-sdk-spacer-010, 2px) !important;
4356
+ }
4357
+
4358
+ .adyen-kyc-u-margin-left-2 {
4359
+ margin-left: var(--adyen-sdk-spacer-010, 2px) !important;
4360
+ }
4361
+
4362
+ .adyen-kyc-u-margin-right-2 {
4363
+ margin-right: var(--adyen-sdk-spacer-010, 2px) !important;
4364
+ }
4365
+
4366
+ .adyen-kyc-u-margin-top-2 {
4367
+ margin-top: var(--adyen-sdk-spacer-010, 2px) !important;
4368
+ }
4369
+
4370
+ .adyen-kyc-u-margin-x-2 {
4371
+ margin-left: var(--adyen-sdk-spacer-010, 2px) !important;
4372
+ margin-right: var(--adyen-sdk-spacer-010, 2px) !important;
4373
+ }
4374
+
4375
+ .adyen-kyc-u-margin-y-2 {
4376
+ margin-bottom: var(--adyen-sdk-spacer-010, 2px) !important;
4377
+ margin-top: var(--adyen-sdk-spacer-010, 2px) !important;
4378
+ }
4379
+
4380
+ .adyen-kyc-u-margin-4 {
4381
+ margin: var(--adyen-sdk-spacer-020, 4px) !important;
4382
+ }
4383
+
4384
+ .adyen-kyc-u-margin-bottom-4 {
4385
+ margin-bottom: var(--adyen-sdk-spacer-020, 4px) !important;
4386
+ }
4387
+
4388
+ .adyen-kyc-u-margin-left-4 {
4389
+ margin-left: var(--adyen-sdk-spacer-020, 4px) !important;
4390
+ }
4391
+
4392
+ .adyen-kyc-u-margin-right-4 {
4393
+ margin-right: var(--adyen-sdk-spacer-020, 4px) !important;
4394
+ }
4395
+
4396
+ .adyen-kyc-u-margin-top-4 {
4397
+ margin-top: var(--adyen-sdk-spacer-020, 4px) !important;
4398
+ }
4399
+
4400
+ .adyen-kyc-u-margin-x-4 {
4401
+ margin-left: var(--adyen-sdk-spacer-020, 4px) !important;
4402
+ margin-right: var(--adyen-sdk-spacer-020, 4px) !important;
4403
+ }
4404
+
4405
+ .adyen-kyc-u-margin-y-4 {
4406
+ margin-bottom: var(--adyen-sdk-spacer-020, 4px) !important;
4407
+ margin-top: var(--adyen-sdk-spacer-020, 4px) !important;
4408
+ }
4409
+
4410
+ .adyen-kyc-u-margin-6 {
4411
+ margin: var(--adyen-sdk-spacer-030, 6px) !important;
4412
+ }
4413
+
4414
+ .adyen-kyc-u-margin-bottom-6 {
4415
+ margin-bottom: var(--adyen-sdk-spacer-030, 6px) !important;
4416
+ }
4417
+
4418
+ .adyen-kyc-u-margin-left-6 {
4419
+ margin-left: var(--adyen-sdk-spacer-030, 6px) !important;
4420
+ }
4421
+
4422
+ .adyen-kyc-u-margin-right-6 {
4423
+ margin-right: var(--adyen-sdk-spacer-030, 6px) !important;
4424
+ }
4425
+
4426
+ .adyen-kyc-u-margin-top-6 {
4427
+ margin-top: var(--adyen-sdk-spacer-030, 6px) !important;
4428
+ }
4429
+
4430
+ .adyen-kyc-u-margin-x-6 {
4431
+ margin-left: var(--adyen-sdk-spacer-030, 6px) !important;
4432
+ margin-right: var(--adyen-sdk-spacer-030, 6px) !important;
4433
+ }
4434
+
4435
+ .adyen-kyc-u-margin-y-6 {
4436
+ margin-bottom: var(--adyen-sdk-spacer-030, 6px) !important;
4437
+ margin-top: var(--adyen-sdk-spacer-030, 6px) !important;
4438
+ }
4439
+
4440
+ .adyen-kyc-u-margin-8 {
4441
+ margin: var(--adyen-sdk-spacer-040, 8px) !important;
4442
+ }
4443
+
4444
+ .adyen-kyc-u-margin-bottom-8 {
4445
+ margin-bottom: var(--adyen-sdk-spacer-040, 8px) !important;
4446
+ }
4447
+
4448
+ .adyen-kyc-u-margin-left-8 {
4449
+ margin-left: var(--adyen-sdk-spacer-040, 8px) !important;
4450
+ }
4451
+
4452
+ .adyen-kyc-u-margin-right-8 {
4453
+ margin-right: var(--adyen-sdk-spacer-040, 8px) !important;
4454
+ }
4455
+
4456
+ .adyen-kyc-u-margin-top-8 {
4457
+ margin-top: var(--adyen-sdk-spacer-040, 8px) !important;
4458
+ }
4459
+
4460
+ .adyen-kyc-u-margin-x-8 {
4461
+ margin-left: var(--adyen-sdk-spacer-040, 8px) !important;
4462
+ margin-right: var(--adyen-sdk-spacer-040, 8px) !important;
4463
+ }
4464
+
4465
+ .adyen-kyc-u-margin-y-8 {
4466
+ margin-bottom: var(--adyen-sdk-spacer-040, 8px) !important;
4467
+ margin-top: var(--adyen-sdk-spacer-040, 8px) !important;
4468
+ }
4469
+
4470
+ .adyen-kyc-u-margin-10 {
4471
+ margin: var(--adyen-sdk-spacer-050, 10px) !important;
4472
+ }
4473
+
4474
+ .adyen-kyc-u-margin-bottom-10 {
4475
+ margin-bottom: var(--adyen-sdk-spacer-050, 10px) !important;
4476
+ }
4477
+
4478
+ .adyen-kyc-u-margin-left-10 {
4479
+ margin-left: var(--adyen-sdk-spacer-050, 10px) !important;
4480
+ }
4481
+
4482
+ .adyen-kyc-u-margin-right-10 {
4483
+ margin-right: var(--adyen-sdk-spacer-050, 10px) !important;
4484
+ }
4485
+
4486
+ .adyen-kyc-u-margin-top-10 {
4487
+ margin-top: var(--adyen-sdk-spacer-050, 10px) !important;
4488
+ }
4489
+
4490
+ .adyen-kyc-u-margin-x-10 {
4491
+ margin-left: var(--adyen-sdk-spacer-050, 10px) !important;
4492
+ margin-right: var(--adyen-sdk-spacer-050, 10px) !important;
4493
+ }
4494
+
4495
+ .adyen-kyc-u-margin-y-10 {
4496
+ margin-bottom: var(--adyen-sdk-spacer-050, 10px) !important;
4497
+ margin-top: var(--adyen-sdk-spacer-050, 10px) !important;
4498
+ }
4499
+
4500
+ .adyen-kyc-u-margin-12 {
4501
+ margin: var(--adyen-sdk-spacer-060, 12px) !important;
4502
+ }
4503
+
4504
+ .adyen-kyc-u-margin-bottom-12 {
4505
+ margin-bottom: var(--adyen-sdk-spacer-060, 12px) !important;
4506
+ }
4507
+
4508
+ .adyen-kyc-u-margin-left-12 {
4509
+ margin-left: var(--adyen-sdk-spacer-060, 12px) !important;
4510
+ }
4511
+
4512
+ .adyen-kyc-u-margin-right-12 {
4513
+ margin-right: var(--adyen-sdk-spacer-060, 12px) !important;
4514
+ }
4515
+
4516
+ .adyen-kyc-u-margin-top-12 {
4517
+ margin-top: var(--adyen-sdk-spacer-060, 12px) !important;
4518
+ }
4519
+
4520
+ .adyen-kyc-u-margin-x-12 {
4521
+ margin-left: var(--adyen-sdk-spacer-060, 12px) !important;
4522
+ margin-right: var(--adyen-sdk-spacer-060, 12px) !important;
4523
+ }
4524
+
4525
+ .adyen-kyc-u-margin-y-12 {
4526
+ margin-bottom: var(--adyen-sdk-spacer-060, 12px) !important;
4527
+ margin-top: var(--adyen-sdk-spacer-060, 12px) !important;
4528
+ }
4529
+
4530
+ .adyen-kyc-u-margin-16 {
4531
+ margin: var(--adyen-sdk-spacer-070, 16px) !important;
4532
+ }
4533
+
4534
+ .adyen-kyc-u-margin-bottom-16 {
4535
+ margin-bottom: var(--adyen-sdk-spacer-070, 16px) !important;
4536
+ }
4537
+
4538
+ .adyen-kyc-u-margin-left-16 {
4539
+ margin-left: var(--adyen-sdk-spacer-070, 16px) !important;
4540
+ }
4541
+
4542
+ .adyen-kyc-u-margin-right-16 {
4543
+ margin-right: var(--adyen-sdk-spacer-070, 16px) !important;
4544
+ }
4545
+
4546
+ .adyen-kyc-u-margin-top-16 {
4547
+ margin-top: var(--adyen-sdk-spacer-070, 16px) !important;
4548
+ }
4549
+
4550
+ .adyen-kyc-u-margin-x-16 {
4551
+ margin-left: var(--adyen-sdk-spacer-070, 16px) !important;
4552
+ margin-right: var(--adyen-sdk-spacer-070, 16px) !important;
4553
+ }
4554
+
4555
+ .adyen-kyc-u-margin-y-16 {
4556
+ margin-bottom: var(--adyen-sdk-spacer-070, 16px) !important;
4557
+ margin-top: var(--adyen-sdk-spacer-070, 16px) !important;
4558
+ }
4559
+
4560
+ .adyen-kyc-u-margin-20 {
4561
+ margin: var(--adyen-sdk-spacer-080, 20px) !important;
4562
+ }
4563
+
4564
+ .adyen-kyc-u-margin-bottom-20 {
4565
+ margin-bottom: var(--adyen-sdk-spacer-080, 20px) !important;
4566
+ }
4567
+
4568
+ .adyen-kyc-u-margin-left-20 {
4569
+ margin-left: var(--adyen-sdk-spacer-080, 20px) !important;
4570
+ }
4571
+
4572
+ .adyen-kyc-u-margin-right-20 {
4573
+ margin-right: var(--adyen-sdk-spacer-080, 20px) !important;
4574
+ }
4575
+
4576
+ .adyen-kyc-u-margin-top-20 {
4577
+ margin-top: var(--adyen-sdk-spacer-080, 20px) !important;
4578
+ }
4579
+
4580
+ .adyen-kyc-u-margin-x-20 {
4581
+ margin-left: var(--adyen-sdk-spacer-080, 20px) !important;
4582
+ margin-right: var(--adyen-sdk-spacer-080, 20px) !important;
4583
+ }
4584
+
4585
+ .adyen-kyc-u-margin-y-20 {
4586
+ margin-bottom: var(--adyen-sdk-spacer-080, 20px) !important;
4587
+ margin-top: var(--adyen-sdk-spacer-080, 20px) !important;
4588
+ }
4589
+
4590
+ .adyen-kyc-u-margin-24 {
4591
+ margin: var(--adyen-sdk-spacer-090, 24px) !important;
4592
+ }
4593
+
4594
+ .adyen-kyc-u-margin-bottom-24 {
4595
+ margin-bottom: var(--adyen-sdk-spacer-090, 24px) !important;
4596
+ }
4597
+
4598
+ .adyen-kyc-u-margin-left-24 {
4599
+ margin-left: var(--adyen-sdk-spacer-090, 24px) !important;
4600
+ }
4601
+
4602
+ .adyen-kyc-u-margin-right-24 {
4603
+ margin-right: var(--adyen-sdk-spacer-090, 24px) !important;
4604
+ }
4605
+
4606
+ .adyen-kyc-u-margin-top-24 {
4607
+ margin-top: var(--adyen-sdk-spacer-090, 24px) !important;
4608
+ }
4609
+
4610
+ .adyen-kyc-u-margin-x-24 {
4611
+ margin-left: var(--adyen-sdk-spacer-090, 24px) !important;
4612
+ margin-right: var(--adyen-sdk-spacer-090, 24px) !important;
4613
+ }
4614
+
4615
+ .adyen-kyc-u-margin-y-24 {
4616
+ margin-bottom: var(--adyen-sdk-spacer-090, 24px) !important;
4617
+ margin-top: var(--adyen-sdk-spacer-090, 24px) !important;
4618
+ }
4619
+
4620
+ .adyen-kyc-u-margin-32 {
4621
+ margin: var(--adyen-sdk-spacer-100, 32px) !important;
4622
+ }
4623
+
4624
+ .adyen-kyc-u-margin-bottom-32 {
4625
+ margin-bottom: var(--adyen-sdk-spacer-100, 32px) !important;
4626
+ }
4627
+
4628
+ .adyen-kyc-u-margin-left-32 {
4629
+ margin-left: var(--adyen-sdk-spacer-100, 32px) !important;
4630
+ }
4631
+
4632
+ .adyen-kyc-u-margin-right-32 {
4633
+ margin-right: var(--adyen-sdk-spacer-100, 32px) !important;
4634
+ }
4635
+
4636
+ .adyen-kyc-u-margin-top-32 {
4637
+ margin-top: var(--adyen-sdk-spacer-100, 32px) !important;
4638
+ }
4639
+
4640
+ .adyen-kyc-u-margin-x-32 {
4641
+ margin-left: var(--adyen-sdk-spacer-100, 32px) !important;
4642
+ margin-right: var(--adyen-sdk-spacer-100, 32px) !important;
4643
+ }
4644
+
4645
+ .adyen-kyc-u-margin-y-32 {
4646
+ margin-bottom: var(--adyen-sdk-spacer-100, 32px) !important;
4647
+ margin-top: var(--adyen-sdk-spacer-100, 32px) !important;
4648
+ }
4649
+
4650
+ .adyen-kyc-u-margin-40 {
4651
+ margin: var(--adyen-sdk-spacer-110, 40px) !important;
4652
+ }
4653
+
4654
+ .adyen-kyc-u-margin-bottom-40 {
4655
+ margin-bottom: var(--adyen-sdk-spacer-110, 40px) !important;
4656
+ }
4657
+
4658
+ .adyen-kyc-u-margin-left-40 {
4659
+ margin-left: var(--adyen-sdk-spacer-110, 40px) !important;
4660
+ }
4661
+
4662
+ .adyen-kyc-u-margin-right-40 {
4663
+ margin-right: var(--adyen-sdk-spacer-110, 40px) !important;
4664
+ }
4665
+
4666
+ .adyen-kyc-u-margin-top-40 {
4667
+ margin-top: var(--adyen-sdk-spacer-110, 40px) !important;
4668
+ }
4669
+
4670
+ .adyen-kyc-u-margin-x-40 {
4671
+ margin-left: var(--adyen-sdk-spacer-110, 40px) !important;
4672
+ margin-right: var(--adyen-sdk-spacer-110, 40px) !important;
4673
+ }
4674
+
4675
+ .adyen-kyc-u-margin-y-40 {
4676
+ margin-bottom: var(--adyen-sdk-spacer-110, 40px) !important;
4677
+ margin-top: var(--adyen-sdk-spacer-110, 40px) !important;
4678
+ }
4679
+
4680
+ .adyen-kyc-u-margin-48 {
4681
+ margin: var(--adyen-sdk-spacer-120, 48px) !important;
4682
+ }
4683
+
4684
+ .adyen-kyc-u-margin-bottom-48 {
4685
+ margin-bottom: var(--adyen-sdk-spacer-120, 48px) !important;
4686
+ }
4687
+
4688
+ .adyen-kyc-u-margin-left-48 {
4689
+ margin-left: var(--adyen-sdk-spacer-120, 48px) !important;
4690
+ }
4691
+
4692
+ .adyen-kyc-u-margin-right-48 {
4693
+ margin-right: var(--adyen-sdk-spacer-120, 48px) !important;
4694
+ }
4695
+
4696
+ .adyen-kyc-u-margin-top-48 {
4697
+ margin-top: var(--adyen-sdk-spacer-120, 48px) !important;
4698
+ }
4699
+
4700
+ .adyen-kyc-u-margin-x-48 {
4701
+ margin-left: var(--adyen-sdk-spacer-120, 48px) !important;
4702
+ margin-right: var(--adyen-sdk-spacer-120, 48px) !important;
4703
+ }
4704
+
4705
+ .adyen-kyc-u-margin-y-48 {
4706
+ margin-bottom: var(--adyen-sdk-spacer-120, 48px) !important;
4707
+ margin-top: var(--adyen-sdk-spacer-120, 48px) !important;
4708
+ }
4709
+
4710
+ .adyen-kyc-ui-element-container-wrapper {
4711
+ width: 100%;
4712
+ }
4713
+
4714
+ .adyen-kyc-ui-element-container {
4715
+ box-sizing: border-box;
4716
+ background-color: var(--adyen-sdk-color-background-primary, #ffffff);
4163
4717
  position: relative;
4718
+ padding: var(--adyen-sdk-spacer-100, 32px);
4719
+ border-radius: var(--adyen-sdk-border-radius-m, 8px);
4720
+ }
4721
+ .adyen-layout-xs-only .adyen-kyc-ui-element-container {
4722
+ padding: var(--adyen-sdk-spacer-040, 8px);
4164
4723
  }/* #region Borders */
4165
4724
  /* #endregion */
4166
4725
  /* #region Z-index */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adyen/kyc-components",
3
- "version": "3.30.1",
3
+ "version": "3.30.3",
4
4
  "keywords": [
5
5
  "adyen",
6
6
  "adyen-kyc",