@@ -73,7 +73,7 @@ You may display the image using a 1:1 aspect ratio:
73
73
use Filament\Infolists\Components\ImageEntry;
74
74
75
75
ImageEntry::make('author.avatar')
76
- ->height (40)
76
+ ->imageHeight (40)
77
77
->square()
78
78
```
79
79
@@ -85,7 +85,7 @@ Optionally, you may pass a boolean value to control if the image should be squar
85
85
use Filament\Infolists\Components\ImageEntry;
86
86
87
87
ImageEntry::make('author.avatar')
88
- ->height (40)
88
+ ->imageHeight (40)
89
89
->square(FeatureFlag::active())
90
90
```
91
91
@@ -99,7 +99,7 @@ You may make the image fully rounded, which is useful for rendering avatars:
99
99
use Filament\Infolists\Components\ImageEntry;
100
100
101
101
ImageEntry::make('author.avatar')
102
- ->height (40)
102
+ ->imageHeight (40)
103
103
->circular()
104
104
```
105
105
@@ -111,7 +111,7 @@ Optionally, you may pass a boolean value to control if the image should be circu
111
111
use Filament\Infolists\Components\ImageEntry;
112
112
113
113
ImageEntry::make('author.avatar')
114
- ->height (40)
114
+ ->imageHeight (40)
115
115
->circular(FeatureFlag::active())
116
116
```
117
117
@@ -138,7 +138,7 @@ You may display multiple images as a stack of overlapping images by using `stack
138
138
use Filament\Infolists\Components\ImageEntry;
139
139
140
140
ImageEntry::make('colleagues.avatar')
141
- ->height (40)
141
+ ->imageHeight (40)
142
142
->circular()
143
143
->stacked()
144
144
```
@@ -151,7 +151,7 @@ Optionally, you may pass a boolean value to control if the images should be stac
151
151
use Filament\Infolists\Components\ImageEntry;
152
152
153
153
ImageEntry::make('colleagues.avatar')
154
- ->height (40)
154
+ ->imageHeight (40)
155
155
->circular()
156
156
->stacked(FeatureFlag::active())
157
157
```
@@ -166,7 +166,7 @@ The default ring width is `3`, but you may customize it to be from `0` to `8`:
166
166
use Filament\Infolists\Components\ImageEntry;
167
167
168
168
ImageEntry::make('colleagues.avatar')
169
- ->height (40)
169
+ ->imageHeight (40)
170
170
->circular()
171
171
->stacked()
172
172
->ring(5)
@@ -182,7 +182,7 @@ The default overlap is `4`, but you may customize it to be from `0` to `8`:
182
182
use Filament\Infolists\Components\ImageEntry;
183
183
184
184
ImageEntry::make('colleagues.avatar')
185
- ->height (40)
185
+ ->imageHeight (40)
186
186
->circular()
187
187
->stacked()
188
188
->overlap(2)
@@ -198,7 +198,7 @@ You may limit the maximum number of images you want to display by passing `limit
198
198
use Filament\Infolists\Components\ImageEntry;
199
199
200
200
ImageEntry::make('colleagues.avatar')
201
- ->height (40)
201
+ ->imageHeight (40)
202
202
->circular()
203
203
->stacked()
204
204
->limit(3)
@@ -216,7 +216,7 @@ When you set a limit you may also display the count of remaining images by passi
216
216
use Filament\Infolists\Components\ImageEntry;
217
217
218
218
ImageEntry::make('colleagues.avatar')
219
- ->height (40)
219
+ ->imageHeight (40)
220
220
->circular()
221
221
->stacked()
222
222
->limit(3)
@@ -231,7 +231,7 @@ Optionally, you may pass a boolean value to control if the remaining text should
231
231
use Filament\Infolists\Components\ImageEntry;
232
232
233
233
ImageEntry::make('colleagues.avatar')
234
- ->height (40)
234
+ ->imageHeight (40)
235
235
->circular()
236
236
->stacked()
237
237
->limit(3)
@@ -249,7 +249,7 @@ use Filament\Infolists\Components\ImageEntry;
249
249
use Filament\Support\Enums\TextSize;
250
250
251
251
ImageEntry::make('colleagues.avatar')
252
- ->height (40)
252
+ ->imageHeight (40)
253
253
->circular()
254
254
->stacked()
255
255
->limit(3)
0 commit comments