@policystudio/policy-studio-ui-vue 1.0.79 → 1.0.80
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
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
<table
|
|
4
4
|
ref="table"
|
|
5
5
|
class="psui-el-table-results"
|
|
6
|
+
:style="{ maxHeight: tableMaxHeight }"
|
|
6
7
|
>
|
|
7
8
|
<slot name="header"></slot>
|
|
8
9
|
|
|
@@ -138,6 +139,13 @@ export default {
|
|
|
138
139
|
name: 'PsTableResults',
|
|
139
140
|
components: { PsProgressBar, PsIcon, PsRichTooltip },
|
|
140
141
|
props: {
|
|
142
|
+
/**
|
|
143
|
+
* It sets the max-height to table.
|
|
144
|
+
*/
|
|
145
|
+
tableMaxHeight: {
|
|
146
|
+
type: String,
|
|
147
|
+
default: '540px'
|
|
148
|
+
},
|
|
141
149
|
/**
|
|
142
150
|
* It sets if the lines should start collapsed.
|
|
143
151
|
*/
|