playbook_ui 7.3.0.pre.alpha10 → 7.3.0.pre.alpha11
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 978fe49deeba23a103d0206e9968d8acbec5720297bb1bea15242c48b051eab8
|
4
|
+
data.tar.gz: 168c0caf650628fa82778f76029aeac0d43d51748be95ed73e49ddfc9fd7ec7c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2ba26ebfdfa913136e4dabcdd9b95c0113e395f253e68422aff739a2208a1b82269e6a957b6ab0471046f6442719a00f4d5747fff552531850e1d1ba386086f2
|
7
|
+
data.tar.gz: eff455bb86c9157aeae0b89eaa7dd24640349331c48d4190c72a07693f2c35261f89dd23699b6034e3e33c9c40e138560a2919584da012d5d73a4db82969a37a
|
@@ -40,9 +40,6 @@ const Main = (props: CollapsibleMainProps) => {
|
|
40
40
|
)
|
41
41
|
}
|
42
42
|
|
43
|
-
const MainType = (<Main />).type
|
44
|
-
|
45
|
-
|
46
43
|
const Content = (props: CollapsibleContentProps) => {
|
47
44
|
const { children, className, padding = "md" } = props
|
48
45
|
const contentCSS = buildCss("pb_collapsible_content_kit")
|
@@ -93,7 +90,7 @@ const Collapsible = (props: CollapsibleProps) => {
|
|
93
90
|
|
94
91
|
return (
|
95
92
|
<div key={direction} style={{ verticalAlign: "middle" }}>
|
96
|
-
<i className={`far fa-
|
93
|
+
<i className={`far fa-chevron-${direction} fa-fw`} />
|
97
94
|
</div>
|
98
95
|
)
|
99
96
|
}
|
@@ -113,7 +110,7 @@ const Collapsible = (props: CollapsibleProps) => {
|
|
113
110
|
|
114
111
|
const renderContent = () => {
|
115
112
|
const nonMainChildren = collapsibleChildren.filter(
|
116
|
-
(child) => child.
|
113
|
+
(child) => get(child, "type.name") !== "Main"
|
117
114
|
)
|
118
115
|
console.log("NonMainChildren:", nonMainChildren)
|
119
116
|
return (
|
data/lib/playbook/version.rb
CHANGED