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
@@ -299,21 +299,22 @@ class RepeaterField extends Base
299
299
```
300
300
301
301
Available base fields that can be excluded:
302
-
-`required` - Required field toggle
303
-
-`disabled` - Disabled field toggle
304
-
-`hidden` - Hidden field toggle
305
-
-`helperText` - Helper text input
306
-
-`hint` - Hint text input
307
-
-`hintColor` - Hint color picker
308
-
-`hintIcon` - Hint icon input
309
-
-`defaultValue` - Default value input
302
+
303
+
-`required` - Required field toggle
304
+
-`disabled` - Disabled field toggle
305
+
-`hidden` - Hidden field toggle
306
+
-`helperText` - Helper text input
307
+
-`hint` - Hint text input
308
+
-`hintColor` - Hint color picker
309
+
-`hintIcon` - Hint icon input
310
+
-`defaultValue` - Default value input
310
311
311
312
#### Best practices for field exclusion
312
313
313
-
-**Only exclude what doesn't apply**: Don't exclude fields just because you don't use them - only exclude fields that conceptually don't make sense for your field type
314
-
-**Document your exclusions**: Add comments explaining why certain fields are excluded
315
-
-**Test thoroughly**: Make sure your field still works correctly after excluding base fields
316
-
-**Consider inheritance**: If your field extends another custom field, make sure to call `parent::excludeFromBaseSchema()` if you need to add more exclusions
314
+
-**Only exclude what doesn't apply**: Don't exclude fields just because you don't use them - only exclude fields that conceptually don't make sense for your field type
315
+
-**Document your exclusions**: Add comments explaining why certain fields are excluded
316
+
-**Test thoroughly**: Make sure your field still works correctly after excluding base fields
317
+
-**Consider inheritance**: If your field extends another custom field, make sure to call `parent::excludeFromBaseSchema()` if you need to add more exclusions
317
318
318
319
Example of a field that excludes multiple base fields:
319
320
@@ -342,6 +343,14 @@ To register your own fields, you can add them to the `fields.fields` config arra
342
343
],
343
344
```
344
345
346
+
## Documentation
347
+
348
+
### Rich Editor Plugins
349
+
350
+
The package includes a powerful Rich Editor with custom plugins:
351
+
352
+
-**[Jump Anchor Plugin](docs/jump-anchor-plugin.md)** - Add anchor links to selected text for navigation and jumping to specific sections
353
+
345
354
## Testing
346
355
347
356
```bash
@@ -362,8 +371,8 @@ Please review [our security policy](../../security/policy) on how to report secu
0 commit comments