Jesse Leite

Results 59 issues of Jesse Leite

Adds form namespaces. Usage example: ```php Form::name('profile')->open() Form::bind($bindProfileInputs) // Form inputs Form::close() Form::name('survey')->open() Form::bind($bindSurveyInputs) // Form inputs Form::close() ``` If both forms have an explicit namespace, when you submit one...

Similar to the existing magic attribute setters: ```php Form::text('meme')->lol('catz') // ``` This PR proposes conditional magic attribute setters: ```php Form::text('name')->disabledIf(true) // Form::text('name')->disabledIf(false) // Form::text('name')->maxlengthIf(true, '5') // Form::text('name')->maxlengthIf(false, '5') // ```...

- Category - [ ] Question - [ ] Bug - [x] Suggestion Would it be possible to add a mapping like `ALT-Q` to select all grep/ag/rg results and populate/open...

Update preview functionality? See https://github.com/junegunn/fzf.vim/pull/1023#issuecomment-767956597

### Description For those of us using Neovim's recommended autocmd for last position jump on `BufEnter` (see `:help last-position-jump`), Neovim will restore last cursor position when re-opening a file. This...

bug

Closes https://github.com/statamic/cms/issues/6610 - [x] Add replace asset action. - [x] Replace from asset editor. ![CleanShot 2022-08-23 at 14 17 50](https://user-images.githubusercontent.com/5187394/186234218-dbbb3026-511c-49c5-b348-d534818c2242.png) - [x] Replace from listing. ![CleanShot 2022-08-23 at 14 19...

### Bug description Field handles have no validation ensuring `snake_case`, which causes edge case JS errors when using field conditions (due to our omitter trying to access a JS key...

bug

As [documented here](https://statamic.dev/conditional-fields#data-flow), field conditions have the following data flow behaviour: > Only visible fields are submitted with your form data. This allows you to control data flow, and [conditionally...

Closes statamic/ideas#485 Closes statamic/ideas#804 References statamic/ideas#300 - [x] Add new glide config to asset container edit form. ![image (20)](https://user-images.githubusercontent.com/5187394/177851247-497b83f8-f8d9-48ca-8e0f-19f9b7d83da9.png) - [x] Wire up new `glide_source_preset` config. - [x] Glide process...