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
Copy file name to clipboardExpand all lines: src/stores/props.ts
+111-1Lines changed: 111 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ const propsSupported = {
9
9
key: 'name',
10
10
sortable: true,
11
11
title: 'Name',
12
-
width: '15%',
12
+
width: '20%',
13
13
},
14
14
{
15
15
align: 'start',
@@ -85,6 +85,30 @@ const sharedProps = [
85
85
name: 'cancel-icon-color',
86
86
type: 'string',
87
87
},
88
+
{
89
+
default: 'false',
90
+
desc: 'Displays the field as a card instead of inline. <code class="ic">card-field</code> overrides the <code class="ic">field-only</code> prop',
91
+
name: 'card-field',
92
+
type: 'boolean',
93
+
},
94
+
{
95
+
default: '0',
96
+
desc: 'Offsets the card field horizontally',
97
+
name: 'card-offset-x',
98
+
type: 'number',
99
+
},
100
+
{
101
+
default: '0',
102
+
desc: 'Offsets the card field vertically',
103
+
name: 'card-offset-y',
104
+
type: 'number',
105
+
},
106
+
{
107
+
default: undefined,
108
+
desc: 'Prop to pass to the card component',
109
+
name: 'card-props',
110
+
type: 'number',
111
+
},
88
112
{
89
113
default: false,
90
114
desc: 'If <code class="ic">true</code>, the field will close when the user opens another inline form element',
@@ -109,6 +133,7 @@ const sharedProps = [
109
133
name: 'disabled',
110
134
type: 'boolean',
111
135
},
136
+
112
137
{
113
138
default: 'empty',
114
139
desc: 'Text to display when the field is empty',
@@ -139,6 +164,12 @@ const sharedProps = [
139
164
name: 'label',
140
165
type: 'string',
141
166
},
167
+
{
168
+
default: 'true',
169
+
desc: 'The loading state of the component. This is what is used to determine when to close the field. If the <code class="ic">loading-wait</code> prop is set to <code class="ic">true</code> the field will close without waiting for the loading process to complete',
170
+
name: 'loading',
171
+
type: 'boolean',
172
+
},
142
173
{
143
174
default: 'true',
144
175
desc: 'The cursor for unopened fields, with the same loading prop value, is set to "wait" and their selection is disabled until the loading process is completed. Additionally, the saving field will remain visible but disabled until the loading is finished',
desc: 'Creates a <code class="ic">v-icon</code> component after displayed value in the <a href="#slots-display-append"><code class="ic">display.append</code></a> slot',
desc: 'Sets the height and width of the <code class="ic">display-append-icon</code> component. Can use the following predefined sizes: x-small, small, default, large, and x-large.',
314
+
name: 'display-append-icon-size',
315
+
type: 'string',
316
+
},
317
+
{
318
+
default: undefined,
319
+
desc: 'Creates a <code class="ic">v-icon</code> component after displayed value in the <a href="#slots-display-append-inner"><code class="ic">display.appendInner</code></a> slot',
desc: 'Sets the height and width of the <code class="ic">display-append-inner-icon</code> component. Can use the following predefined sizes: x-small, small, default, large, and x-large.',
332
+
name: 'display-append-inner-icon-size',
333
+
type: 'string',
334
+
},
335
+
{
336
+
default: undefined,
337
+
desc: 'Creates a <code class="ic">v-icon</code> component before displayed value in the <a href="#slots-display-prepend"><code class="ic">display.prepend</code></a> slot',
desc: 'Sets the height and width of the <code class="ic">display-prepend-icon</code> component. Can use the following predefined sizes: x-small, small, default, large, and x-large.',
350
+
name: 'display-prepend-icon-size',
351
+
type: 'string',
352
+
},
353
+
{
354
+
default: undefined,
355
+
desc: 'Creates a <code class="ic">v-icon</code> component before displayed value in the <a href="#slots-display-prepend-inner"><code class="ic">display.prependInner</code></a> slot',
desc: 'Sets the height and width of the <code class="ic">display-prepend-inner-icon</code> component. Can use the following predefined sizes: x-small, small, default, large, and x-large.',
0 commit comments