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
+64-64Lines changed: 64 additions & 64 deletions
Original file line number
Diff line number
Diff line change
@@ -52,43 +52,43 @@ const sharedProps = [
52
52
{
53
53
default: 'default',
54
54
desc: `${colorDesc} cancel button`,
55
-
name: 'cancelButtonColor',
55
+
name: 'cancel-button-color',
56
56
type: "VBtn['$props']['color']",
57
57
},
58
58
{
59
59
default: 'x-small',
60
60
desc: 'Sets the height and width of the cancel button',
61
-
name: 'cancelButtonSize',
61
+
name: 'cancel-button-size',
62
62
type: "VBtn['$props']['size']",
63
63
},
64
64
{
65
65
default: 'Cancel',
66
66
desc: 'The title of the cancel button',
67
-
name: 'cancelButtonTitle',
67
+
name: 'cancel-button-title',
68
68
type: 'string | undefined',
69
69
},
70
70
{
71
71
default: 'tonal',
72
72
desc: `${variantDesc} cancel button`,
73
-
name: 'cancelButtonVariant',
73
+
name: 'cancel-button-variant',
74
74
type: "VBtn['$props']['variant']",
75
75
},
76
76
{
77
-
default: 'mdi:mdi-close',
77
+
default: undefined,
78
78
desc: 'The icon to use to cancel',
79
-
name: 'cancelIcon',
80
-
type: 'string',
79
+
name: 'cancel-icon',
80
+
type: 'string | undefined',
81
81
},
82
82
{
83
83
default: 'default',
84
84
desc: `${colorDesc} cancel icon`,
85
-
name: 'cancelIconColor',
85
+
name: 'cancel-icon-color',
86
86
type: 'string',
87
87
},
88
88
{
89
89
default: false,
90
90
desc: 'If <code>true</code>, the field will close when the user opens another inline form element',
91
-
name: 'closeSiblings',
91
+
name: 'close-siblings',
92
92
type: 'boolean',
93
93
},
94
94
{
@@ -112,19 +112,19 @@ const sharedProps = [
112
112
{
113
113
default: 'empty',
114
114
desc: 'Text to display when the field is empty',
115
-
name: 'emptyText',
115
+
name: 'empty-text',
116
116
type: 'string',
117
117
},
118
118
{
119
119
default: false,
120
120
desc: 'If set to <code>true</code> will only show the field',
121
-
name: 'fieldOnly',
121
+
name: 'field-only',
122
122
type: 'boolean',
123
123
},
124
124
{
125
125
default: true,
126
126
desc: 'Hides hint and validation errors. When set to auto messages will be rendered only if there\'s a message (hint, error message, counter value etc) to display',
127
-
name: 'hideDetails',
127
+
name: 'hide-details',
128
128
type: 'boolean'
129
129
},
130
130
{
@@ -134,45 +134,45 @@ const sharedProps = [
134
134
type: 'Record<string, unknown>',
135
135
},
136
136
{
137
-
default: 'undefined',
137
+
default: undefined,
138
138
desc: 'Sets the text of the <code>v-label</code> or <code>v-field-label</code> component',
139
139
name: 'label',
140
140
type: 'string',
141
141
},
142
142
{
143
-
default: 'PUT',
144
-
desc: 'The http method to use when saving the text field',
145
-
name: 'method',
146
-
type: 'string',
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',
145
+
name: 'loading-wait',
146
+
type: 'boolean',
147
147
},
148
148
{
149
-
default: 'undefined',
149
+
default: undefined,
150
150
desc: "Sets the component's name attribute",
151
151
name: 'name',
152
152
type: 'string',
153
153
},
154
154
{
155
155
default: true,
156
156
desc: 'Adjusts padding to help the field to be vertically centered in the table cell',
157
-
name: 'tableField',
157
+
name: 'table-field',
158
158
type: 'boolean',
159
159
},
160
160
{
161
161
default: 'primary',
162
162
desc: `${colorDesc} display value underline`,
163
-
name: 'underlineColor',
163
+
name: 'underline-color',
164
164
type: 'string',
165
165
},
166
166
{
167
167
default: 'dotted',
168
168
desc: 'The style of the display value underline',
169
-
name: 'underlineStyle',
169
+
name: 'underline-style',
170
170
type: 'string',
171
171
},
172
172
{
173
173
default: '1px',
174
174
desc: 'The width of the display value underline',
175
-
name: 'underlineWidth',
175
+
name: 'underline-width',
176
176
type: 'string',
177
177
},
178
178
{
@@ -184,7 +184,7 @@ const sharedProps = [
184
184
{
185
185
default: 'default',
186
186
desc: `${colorDesc} value`,
187
-
name: 'valueColor',
187
+
name: 'value-color',
188
188
type: 'string',
189
189
},
190
190
];
@@ -193,7 +193,7 @@ const autofocusProp = [
193
193
{
194
194
default: false,
195
195
desc: 'If <code>true</code>, the field will autofocus',
0 commit comments