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
description: '[Action groups in schemas only] A function for retrieving values from the schema data. Validation is not run on form fields.',
154
+
},
155
+
{
156
+
name: 'Schema component state',
157
+
type: 'mixed',
158
+
parameter: '$schemaComponentState',
159
+
description: '[Action groups in schemas only] The current value of the schema component.',
160
+
},
161
+
{
162
+
name: 'Schema operation',
163
+
type: 'string',
164
+
parameter: '$schemaOperation',
165
+
description: '[Action groups in schemas only] The current operation being performed by the schema. Usually <code>create</code>, <code>edit</code>, or <code>view</code>.',
166
+
},
167
+
{
168
+
name: 'Table',
169
+
type: 'Filament\\Tables\\Table',
170
+
parameter: '$table',
171
+
description: '[Action groups in tables only] The table object that this action group belongs to.',
172
+
},
173
+
],
106
174
formFields: [
107
175
{
108
176
name: 'Field',
@@ -153,6 +221,70 @@ let utilities = [
153
221
description: 'The Eloquent record for the current schema.',
154
222
},
155
223
],
224
+
exportColumns: [
225
+
{
226
+
name: 'Export column',
227
+
type: 'Filament\\Actions\\Exports\\ExportColumn',
228
+
parameter: '$column',
229
+
description: 'The current export column instance.',
230
+
},
231
+
{
232
+
name: 'Exporter',
233
+
type: '?Filament\\Actions\\Exports\\Exporter',
234
+
parameter: '$exporter',
235
+
description: 'The instance of the exporter class that is currently being used for exporting data.',
236
+
},
237
+
{
238
+
name: 'Options',
239
+
type: 'array<string, mixed>',
240
+
parameter: '$options',
241
+
description: 'The options that were defined when the export started.',
242
+
},
243
+
{
244
+
name: 'Eloquent record',
245
+
type: '?Illuminate\\Database\\Eloquent\\Model',
246
+
parameter: '$record',
247
+
description: 'The Eloquent record that is currently being exported.',
248
+
},
249
+
],
250
+
importColumns: [
251
+
{
252
+
name: 'Import column',
253
+
type: 'Filament\\Actions\\Imports\\ImportColumn',
254
+
parameter: '$column',
255
+
description: 'The current import column instance.',
256
+
},
257
+
{
258
+
name: 'Data',
259
+
type: 'array<string, mixed>',
260
+
parameter: '$data',
261
+
description: 'The processed data for the record that is currently being imported.',
262
+
},
263
+
{
264
+
name: 'Importer',
265
+
type: '?Filament\\Actions\\Imports\\Importer',
266
+
parameter: '$importer',
267
+
description: 'The instance of the importer class that is currently being used for importing data.',
268
+
},
269
+
{
270
+
name: 'Options',
271
+
type: 'array<string, mixed>',
272
+
parameter: '$options',
273
+
description: 'The options that were defined when the import started.',
274
+
},
275
+
{
276
+
name: 'Original data',
277
+
type: 'array<string, mixed>',
278
+
parameter: '$originalData',
279
+
description: 'The original data for the record that is currently being imported, before it was processed.',
280
+
},
281
+
{
282
+
name: 'Eloquent record',
283
+
type: '?Illuminate\\Database\\Eloquent\\Model',
284
+
parameter: '$record',
285
+
description: 'The Eloquent record that is currently being imported.',
0 commit comments