Skip to content

Commit a0a9897

Browse files
authored
fix(Field): hide action buttons on update/detail/creation views by default, #2
1 parent fef44f0 commit a0a9897

File tree

2 files changed

+48
-0
lines changed

2 files changed

+48
-0
lines changed

src/ActionButton.php

+23
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,29 @@ class ActionButton extends Field
1414
*/
1515
public $component = 'action-button';
1616

17+
18+
/**
19+
* Indicates if the element should be shown on the update view.
20+
*
21+
* @var bool
22+
*/
23+
public $showOnUpdate = false;
24+
25+
26+
/**
27+
* Indicates if the element should be shown on the detail view.
28+
*
29+
* @var bool
30+
*/
31+
public $showOnDetail = false;
32+
33+
34+
/**
35+
* Indicates if the element should be shown on the creation view.
36+
*
37+
* @var bool
38+
*/
39+
public $showOnCreation = false;
1740

1841
/**
1942
* @param Action $action

src/ActionButtons.php

+25
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ class ActionButtons extends Field
1313
*/
1414
public $component = 'action-buttons';
1515

16+
1617
/**
1718
* The text alignment for the field's text in tables.
1819
*
@@ -21,6 +22,30 @@ class ActionButtons extends Field
2122
public $textAlign = 'center';
2223

2324

25+
/**
26+
* Indicates if the element should be shown on the update view.
27+
*
28+
* @var bool
29+
*/
30+
public $showOnUpdate = false;
31+
32+
33+
/**
34+
* Indicates if the element should be shown on the detail view.
35+
*
36+
* @var bool
37+
*/
38+
public $showOnDetail = false;
39+
40+
41+
/**
42+
* Indicates if the element should be shown on the creation view.
43+
*
44+
* @var bool
45+
*/
46+
public $showOnCreation = false;
47+
48+
2449
/**
2550
* @param array<ActionButton> $collection
2651
* @return $this

0 commit comments

Comments
 (0)