Luke Secomb
Luke Secomb
Would be a handy feature to "bulkify" the intervals config. Looks like there might be a bit of work involved as the schema currently only supports a `start`/`end` time, and...
fix(FieldApi): onChangeListenTo should not block onChangeAsync validator on field it is listening to
Running into similar issues with inter-dependant fields. ```ts new FieldApi({ name: 'field_1', validators: { onChangeListenTo: ['field_2', 'field_3'], onChangeAsync: async (props) => { // magical async stuff } }, }) new...
Looks to be an issue with dragula not properly supporting shadow dom. This (https://github.com/bevacqua/dragula/pull/470) PR (sadly never merged) looks to solve the issues, but its quite fiddly to jam into...
I'm attempting to load the Formio builder inside a Shadow DOM element. It seems to load fine, but the Drag and Drop does not work due to Dragula not having...