@appscode/design-system 2.6.22-alpha-0.0.23 → 2.6.22-alpha-0.0.25
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/package.json
CHANGED
|
@@ -135,12 +135,10 @@
|
|
|
135
135
|
}
|
|
136
136
|
}
|
|
137
137
|
|
|
138
|
-
label {
|
|
139
|
-
padding: 8px 16px;
|
|
138
|
+
.label {
|
|
140
139
|
border-bottom: 1px solid $color-border;
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
color: #616161;
|
|
140
|
+
font-weight: 400 !important;
|
|
141
|
+
color: $color-heading;
|
|
144
142
|
}
|
|
145
143
|
}
|
|
146
144
|
}
|
|
@@ -22,31 +22,29 @@ const isOpen = ref(true)
|
|
|
22
22
|
|
|
23
23
|
<template>
|
|
24
24
|
<div class="content-body">
|
|
25
|
-
<div class="
|
|
26
|
-
<div class="section-
|
|
27
|
-
<
|
|
28
|
-
<header-
|
|
29
|
-
<
|
|
30
|
-
<
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
<
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
<
|
|
40
|
-
|
|
41
|
-
<
|
|
42
|
-
|
|
43
|
-
</AcButton>
|
|
44
|
-
</div>
|
|
25
|
+
<div class="section-card is-fullwidth">
|
|
26
|
+
<div class="section-heading is-fullwidth is-flex is-align-items-center is-justify-content-space-between">
|
|
27
|
+
<header-items>
|
|
28
|
+
<header-item>
|
|
29
|
+
<div v-if="custom">
|
|
30
|
+
<slot name="custom-header" />
|
|
31
|
+
</div>
|
|
32
|
+
<div v-else>
|
|
33
|
+
<h4 :key="title">{{ title }}</h4>
|
|
34
|
+
</div>
|
|
35
|
+
</header-item>
|
|
36
|
+
</header-items>
|
|
37
|
+
<!-- Add buttons here -->
|
|
38
|
+
<div class="buttons is-right">
|
|
39
|
+
<slot name="header-buttons" />
|
|
40
|
+
<AcButton modifier-classes="is-white" v-if="isExpandable" @click="isOpen = !isOpen">
|
|
41
|
+
<ArrowIcon :direction="isOpen ? 'down' : 'up'" />
|
|
42
|
+
</AcButton>
|
|
45
43
|
</div>
|
|
44
|
+
</div>
|
|
46
45
|
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
</div>
|
|
46
|
+
<div v-show="isOpen" class="section-body">
|
|
47
|
+
<slot name="section-body" />
|
|
50
48
|
</div>
|
|
51
49
|
</div>
|
|
52
50
|
</div>
|