Paweł Suwiński

Results 17 issues of Paweł Suwiński

Fixes m1/Env#17

```sh $ cat /tmp/test.env TEST="namespace\\class" $ source /tmp/test.env && echo $TEST namespace\class $ php -r 'require_once "vendor/autoload.php"; echo M1\Env\Parser::parse(file_get_contents("/tmp/test.env"))["TEST"].PHP_EOL;' namespace\\class ``` expected: `namespace\class`

**Description** Singularized form of adder/remover method name for collections is hardcoded to the first item from the list returned by EnglishInflector: https://github.com/api-platform/schema-generator/blob/ed297c7e7c7670c23102176b22667efcaab8dcac/src/Model/Class_.php#L335 If transformation is ambiguous inflector return list of...

enhancement

**What you were expecting:** Case of autocomplete on reference input with paging data provider. Initial list shows only limited, first page of fetched data. Autocomplete query filter reload the list....

needs more info

I seems that PR #515 broke violations list processing based on error body so validation messages are not shown any more in the form (?), this would never happen: https://github.com/api-platform/admin/blob/a3292d81ddab39c04152e239e641920dd6f156ff/src/hydra/fetchHydra.ts#L79-L81...

In Create/EditGuesser form component can be customised by passing down `formComponent` prop as renamed `component` prop (to avoid name collision). Guessers use base RA components that also can take `component`...

By default any reference field links to edit view. To change it RA uses [`link` prop](https://marmelab.com/react-admin/ReferenceField.html#link) for single field and [`linkType` prop](https://marmelab.com/react-admin/SingleFieldList.html#linktype) for array. So that works fine: ``` ```...

Hi, Adds possibility to sort of compound filed, ex. ``` const UserList = (props) => ( // ... `${record.lastName} ${record.firstName}`} /> ) ``` On column sort it gives queries with...

ListGuesser exposures RA Datagrid `expand` panel feature, but without [ `expandSingle`](https://marmelab.com/react-admin/Datagrid.html#expandsingle) settings that makes it a bit incomplete, so here's an addition for that.

Hi It is very nice piece of work, I am using pipe-operator in my projects. It really rocks, especially in combination with symfony expression language. When I upgraded to 5.x...