@adyen/kyc-components 2.45.0 → 2.45.1
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.
|
@@ -7819,8 +7819,9 @@ const Accordion = ({
|
|
|
7819
7819
|
};
|
|
7820
7820
|
return jsxs("details", {
|
|
7821
7821
|
onToggle: handleToggle,
|
|
7822
|
-
className,
|
|
7822
|
+
className: cx(className, "adyen-kyc-accordion__details"),
|
|
7823
7823
|
children: [jsxs("summary", {
|
|
7824
|
+
className: "adyen-kyc-accordion__summary",
|
|
7824
7825
|
children: [expandOnLeft && jsx("img", {
|
|
7825
7826
|
className: "adyen-kyc-accordion__arrow",
|
|
7826
7827
|
src: ChevronDownIcon,
|
|
@@ -35711,7 +35712,7 @@ const ConfigurationApiProvider = ({
|
|
|
35711
35712
|
isEmbeddedDropin,
|
|
35712
35713
|
loadingContext
|
|
35713
35714
|
} = authContext;
|
|
35714
|
-
const sdkVersion = "2.45.
|
|
35715
|
+
const sdkVersion = "2.45.1";
|
|
35715
35716
|
useAnalytics({
|
|
35716
35717
|
onUserEvent,
|
|
35717
35718
|
legalEntityId: rootLegalEntityId,
|
package/dist/style.css
CHANGED
|
@@ -2218,17 +2218,17 @@ a.adyen-kyc-button:disabled, a.adyen-kyc-button.adyen-kyc-button--disabled {
|
|
|
2218
2218
|
/* #endregion */
|
|
2219
2219
|
/* #region Inline components */
|
|
2220
2220
|
/* #endregion */
|
|
2221
|
-
|
|
2222
|
-
|
|
2221
|
+
.adyen-kyc-accordion__details,
|
|
2222
|
+
.adyen-kyc-accordion__summary {
|
|
2223
2223
|
background-color: #f3f6f9;
|
|
2224
2224
|
color: #00112c;
|
|
2225
2225
|
}
|
|
2226
2226
|
|
|
2227
|
-
|
|
2227
|
+
.adyen-kyc-accordion__details {
|
|
2228
2228
|
margin: var(--adyen-sdk-spacer-050, 10px) var(--adyen-sdk-spacer-000, 0px);
|
|
2229
2229
|
}
|
|
2230
2230
|
|
|
2231
|
-
|
|
2231
|
+
.adyen-kyc-accordion__summary {
|
|
2232
2232
|
display: flex;
|
|
2233
2233
|
align-items: center;
|
|
2234
2234
|
gap: var(--adyen-sdk-spacer-050, 10px);
|
|
@@ -2236,21 +2236,21 @@ summary {
|
|
|
2236
2236
|
font-weight: bold;
|
|
2237
2237
|
}
|
|
2238
2238
|
|
|
2239
|
-
|
|
2239
|
+
.adyen-kyc-accordion__summary > .adyen-kyc-accordion__arrow {
|
|
2240
2240
|
cursor: pointer;
|
|
2241
2241
|
height: 1em;
|
|
2242
2242
|
}
|
|
2243
2243
|
|
|
2244
|
-
|
|
2244
|
+
.adyen-kyc-accordion__summary > .adyen-kyc-accordion__arrow--right {
|
|
2245
2245
|
margin-left: auto;
|
|
2246
2246
|
margin-right: var(--adyen-sdk-spacer-050, 10px);
|
|
2247
2247
|
}
|
|
2248
2248
|
|
|
2249
|
-
|
|
2249
|
+
.adyen-kyc-accordion__details[open] .adyen-kyc-accordion__arrow {
|
|
2250
2250
|
transform: rotate(-180deg);
|
|
2251
2251
|
}
|
|
2252
2252
|
|
|
2253
|
-
|
|
2253
|
+
.adyen-kyc-accordion__details summary::-webkit-details-marker {
|
|
2254
2254
|
display: none;
|
|
2255
2255
|
}
|
|
2256
2256
|
|