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
+27-68Lines changed: 27 additions & 68 deletions
Original file line number
Diff line number
Diff line change
@@ -53,13 +53,13 @@ const sharedProps = [
53
53
default: 'default',
54
54
desc: `${colorDesc} cancel button`,
55
55
name: 'cancel-button-color',
56
-
type: "VBtn['$props']['color']",
56
+
type: "string | undefined",
57
57
},
58
58
{
59
59
default: 'x-small',
60
60
desc: 'Sets the height and width of the cancel button',
61
61
name: 'cancel-button-size',
62
-
type: "VBtn['$props']['size']",
62
+
type: "string | number | undefined",
63
63
},
64
64
{
65
65
default: 'Cancel',
@@ -87,7 +87,7 @@ const sharedProps = [
87
87
},
88
88
{
89
89
default: false,
90
-
desc: 'If <code>true</code>, the field will close when the user opens another inline form element',
90
+
desc: 'If <code class="ic">true</code>, the field will close when the user opens another inline form element',
91
91
name: 'close-siblings',
92
92
type: 'boolean',
93
93
},
@@ -117,7 +117,7 @@ const sharedProps = [
117
117
},
118
118
{
119
119
default: false,
120
-
desc: 'If set to <code>true</code> will only show the field',
120
+
desc: 'If set to <code class="ic">true</code> will only show the field',
121
121
name: 'field-only',
122
122
type: 'boolean',
123
123
},
@@ -135,13 +135,13 @@ const sharedProps = [
135
135
},
136
136
{
137
137
default: undefined,
138
-
desc: 'Sets the text of the <code>v-label</code> or <code>v-field-label</code> component',
138
+
desc: 'Sets the text of the <code class="ic">v-label</code> or <code class="ic">v-field-label</code> component',
139
139
name: 'label',
140
140
type: 'string',
141
141
},
142
142
{
143
143
default: 'true',
144
-
desc: 'Sets the text of the field cursor to <code>wait</code> and prevents the field from opening until <code>loading</code> has returned to false',
144
+
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',
145
145
name: 'loading-wait',
146
146
type: 'boolean',
147
147
},
@@ -192,7 +192,7 @@ const sharedProps = [
192
192
constautofocusProp=[
193
193
{
194
194
default: false,
195
-
desc: 'If <code>true</code>, the field will autofocus',
195
+
desc: 'If <code class="ic">true</code>, the field will autofocus',
0 commit comments