@appscode/design-system 2.4.21 → 2.4.23
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
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
width: 100%;
|
|
8
8
|
border-radius: 4px;
|
|
9
9
|
border: 1px solid $color-border-dark;
|
|
10
|
-
padding: 6px 30px 8px
|
|
10
|
+
padding: 6px 30px 8px 15px;
|
|
11
11
|
font-size: 13px;
|
|
12
12
|
border-radius: 4px;
|
|
13
13
|
|
|
@@ -319,7 +319,7 @@
|
|
|
319
319
|
|
|
320
320
|
.multiselect .multiselect__tags {
|
|
321
321
|
min-height: 32px !important;
|
|
322
|
-
padding: 3px 30px 4px
|
|
322
|
+
padding: 3px 30px 4px 15px;
|
|
323
323
|
font-size: 13px;
|
|
324
324
|
display: flex;
|
|
325
325
|
align-items: center;
|
|
@@ -527,7 +527,7 @@ li {
|
|
|
527
527
|
-webkit-line-clamp: 1;
|
|
528
528
|
box-orient: vertical;
|
|
529
529
|
-webkit-box-orient: vertical;
|
|
530
|
-
top:
|
|
530
|
+
top: 1.5px;
|
|
531
531
|
}
|
|
532
532
|
}
|
|
533
533
|
|
|
@@ -21,6 +21,7 @@ interface Props {
|
|
|
21
21
|
collapsible?: boolean;
|
|
22
22
|
collapsibleContentMaxHeight?: string;
|
|
23
23
|
collapsibleOverflowX?: OverflowType;
|
|
24
|
+
collapsibleCellCustomClass?: string;
|
|
24
25
|
}
|
|
25
26
|
|
|
26
27
|
const prop = withDefaults(defineProps<Props>(), {
|
|
@@ -31,6 +32,7 @@ const prop = withDefaults(defineProps<Props>(), {
|
|
|
31
32
|
collapsible: false,
|
|
32
33
|
collapsibleContentMaxHeight: "60vh",
|
|
33
34
|
overflowX: "unset",
|
|
35
|
+
collapsibleCellCustomClass: "",
|
|
34
36
|
});
|
|
35
37
|
|
|
36
38
|
const emit = defineEmits(["rowselect", "rowexpand", "rowcollapse"]);
|
|
@@ -115,7 +117,7 @@ const toggleCollapse = () => {
|
|
|
115
117
|
</tr>
|
|
116
118
|
<transition name="slide-down" mode="out-in" appear>
|
|
117
119
|
<tr v-if="collapsible && !isCollapsed" v-bind="$attrs">
|
|
118
|
-
<table-cell colspan="1000" class="table-inner-shadow">
|
|
120
|
+
<table-cell colspan="1000" class="table-inner-shadow" :class="collapsibleCellCustomClass">
|
|
119
121
|
<div
|
|
120
122
|
ref="collapsibleRow"
|
|
121
123
|
class="collapsible-row"
|