rbro-tat-uds 2.2.10 → 2.2.11
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.
@@ -38,19 +38,23 @@ const AccordionStyled = styled.div`
|
|
38
38
|
& > div {
|
39
39
|
padding: 0px 16px;
|
40
40
|
overflow: hidden;
|
41
|
-
transition:
|
41
|
+
transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1),
|
42
|
+
opacity 0.2s ease-in-out, transform 0.2s ease-in-out,
|
43
|
+
padding 0.2s ease-in-out;
|
42
44
|
transform-origin: top;
|
43
45
|
|
44
46
|
&[data-open="true"] {
|
45
47
|
transform: scaleY(1);
|
46
48
|
padding: 16px;
|
47
49
|
opacity: 1;
|
50
|
+
max-height: 1000px;
|
48
51
|
}
|
49
52
|
|
50
53
|
&[data-open="false"] {
|
51
54
|
transform: scaleY(0);
|
52
55
|
opacity: 0;
|
53
56
|
padding: 0px 16px;
|
57
|
+
max-height: 0;
|
54
58
|
}
|
55
59
|
}
|
56
60
|
`;
|
package/build/cjs/index.cjs
CHANGED
@@ -26616,19 +26616,23 @@ const AccordionStyled = styled__default.default.div`
|
|
26616
26616
|
& > div {
|
26617
26617
|
padding: 0px 16px;
|
26618
26618
|
overflow: hidden;
|
26619
|
-
transition:
|
26619
|
+
transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1),
|
26620
|
+
opacity 0.2s ease-in-out, transform 0.2s ease-in-out,
|
26621
|
+
padding 0.2s ease-in-out;
|
26620
26622
|
transform-origin: top;
|
26621
26623
|
|
26622
26624
|
&[data-open="true"] {
|
26623
26625
|
transform: scaleY(1);
|
26624
26626
|
padding: 16px;
|
26625
26627
|
opacity: 1;
|
26628
|
+
max-height: 1000px;
|
26626
26629
|
}
|
26627
26630
|
|
26628
26631
|
&[data-open="false"] {
|
26629
26632
|
transform: scaleY(0);
|
26630
26633
|
opacity: 0;
|
26631
26634
|
padding: 0px 16px;
|
26635
|
+
max-height: 0;
|
26632
26636
|
}
|
26633
26637
|
}
|
26634
26638
|
`;
|
@@ -34,19 +34,23 @@ const AccordionStyled = styled.div`
|
|
34
34
|
& > div {
|
35
35
|
padding: 0px 16px;
|
36
36
|
overflow: hidden;
|
37
|
-
transition:
|
37
|
+
transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1),
|
38
|
+
opacity 0.2s ease-in-out, transform 0.2s ease-in-out,
|
39
|
+
padding 0.2s ease-in-out;
|
38
40
|
transform-origin: top;
|
39
41
|
|
40
42
|
&[data-open="true"] {
|
41
43
|
transform: scaleY(1);
|
42
44
|
padding: 16px;
|
43
45
|
opacity: 1;
|
46
|
+
max-height: 1000px;
|
44
47
|
}
|
45
48
|
|
46
49
|
&[data-open="false"] {
|
47
50
|
transform: scaleY(0);
|
48
51
|
opacity: 0;
|
49
52
|
padding: 0px 16px;
|
53
|
+
max-height: 0;
|
50
54
|
}
|
51
55
|
}
|
52
56
|
`;
|
package/build/esm/index.js
CHANGED
@@ -26593,19 +26593,23 @@ const AccordionStyled = styled.div`
|
|
26593
26593
|
& > div {
|
26594
26594
|
padding: 0px 16px;
|
26595
26595
|
overflow: hidden;
|
26596
|
-
transition:
|
26596
|
+
transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1),
|
26597
|
+
opacity 0.2s ease-in-out, transform 0.2s ease-in-out,
|
26598
|
+
padding 0.2s ease-in-out;
|
26597
26599
|
transform-origin: top;
|
26598
26600
|
|
26599
26601
|
&[data-open="true"] {
|
26600
26602
|
transform: scaleY(1);
|
26601
26603
|
padding: 16px;
|
26602
26604
|
opacity: 1;
|
26605
|
+
max-height: 1000px;
|
26603
26606
|
}
|
26604
26607
|
|
26605
26608
|
&[data-open="false"] {
|
26606
26609
|
transform: scaleY(0);
|
26607
26610
|
opacity: 0;
|
26608
26611
|
padding: 0px 16px;
|
26612
|
+
max-height: 0;
|
26609
26613
|
}
|
26610
26614
|
}
|
26611
26615
|
`;
|