You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// const colorDesc = 'Applies specified color to the';
9
-
// const densityDesc = 'Adjusts the vertical height used by the component';
10
-
// const variantDesc = 'Applies a distinct style to the';
11
-
12
8
consttableLoaderProps=[
13
9
{
14
10
default: '1px',
15
11
desc: `Sets the height for the linear progress loader. See <a href="${links.vuetify}/en/api/v-progress-linear/#props-height" target="_blank"><code class="inline-code">VProgressLinear</code></a> for more information.`,
16
12
name: 'loaderHeight',
17
13
type: 'VProgressLinear["$props"]["height"]',
18
14
},
15
+
{
16
+
default: 'default',
17
+
desc: `Sets the diameter of the circular progress loader circle in pixels. See <a href="${links.vuetify}/en/api/v-progress-circular/#props-size" target="_blank"><code class="inline-code">VProgressCircular</code></a> for more information.`,
18
+
name: 'loaderSize',
19
+
type: 'VProgressCircular["$props"]["size"]',
20
+
},
19
21
{
20
22
default: 'linear',
21
23
desc: 'Sets the type of loader. Available types are <code class="inline-code">linear</code>, <code class="inline-code">circular</code>, <code class="inline-code">text</code> and <code class="inline-code">skelton</code>. You can also use multiple loaders by passing an array of types. The order of the array determines the order of the loaders. To use the <a href="#slots-supported-loader"><code class="inline-code">loader</code></a> slot, set this prop to <code class="inline-code">null</code> or <code class="inline-code">false</code>.',
desc: 'An array of objects that each describe a footer column. The formatting of the objects are the same as the <a href="#props-all-headers"><code class="inline-code">headers</code></a> prop and should be the same (mostly) to create the same columns. See <a href="#cell-rendering">Cell Rendering</a> for more information about rendering.',
75
+
desc: 'An array of objects that each describe a footer column. The formatting of the objects are the same as the <a href="#props-all-headers"><code class="inline-code">headers</code></a> prop and should be the same (mostly) to create the same columns. To enabled the <code class="inline-code">footers</code> row you will need to set the <a href="#props-all-showfooterrow"><code class="inline-code">showFooterRow</code></a> prop to true. See <a href="#cell-rendering">Cell Rendering</a> for more information about rendering.',
desc: 'Determines if the table should show the footer row, which by default shows the same values as the header row. To customize the footer row, use the <a href="#props-all-footers"><code class="inline-code">footers</code></a> prop.',
196
+
name: 'showFooterRow',
197
+
type: 'boolean',
198
+
},
197
199
{
198
200
default: false,
199
201
desc: 'Determines if the table should show the <code class="inline-code">VTextField</code> in the <code class="inline-code">top</code> slot',
0 commit comments