Joseph Blythe

Results 6 comments of Joseph Blythe

I had same issue try setting the initial state for `v-model` eg. ```javascript query: { logicalOperator: 'all', children: [], }, ```

You can still access the `constants` in latest release via the `MapboxDraw` import eg: ```js import MapboxDraw from '@mapbox/mapbox-gl-draw'; console.log(MapboxDraw.constants.modes); ``` outputs: ```js { DRAW_LINE_STRING: 'draw_line_string', DRAW_POLYGON: 'draw_polygon', DRAW_POINT: 'draw_point',...

@LukeTowers We are most likely be looking at this shortly, in past projects we using packages that compiled a json file from the laravel translation files which was then added...

Yeah that got chnaged a while ago you can still access these via the `MapboxDraw` import. ```javascaript import MapboxDraw from '@mapbox/mapbox-gl-draw'; console.log(MapboxDraw.lib); ``` eg. The following code would replace the...

@sorrentix @dabernathy89 I had to do this recently using `vue-treeselect`, I used `loadOptions` to add the root options async, this can all be achieved by just extending `QueryBuilderRule.vue` and using...