Albert

Results 14 comments of Albert

I created a component using this library https://github.com/albertcito/texarea-autosize-reactjs

I have this issue in vs-code: > Could not find a declaration file for module 'vuelidate/lib/validators/email'. '/Users/albert/Documents/code/mma/node_modules/vuelidate/lib/validators/email.js' implicitly has an 'any' type. > If the 'vuelidate' package actually exposes this...

Also interested in Mac version 🙏

I added `style={{ height: 48 }}` but the value is replaced by `style="height: 32px !important;"`. Also, I'm using TS so I tried to add `minHeight` but it is not allowed.

The idea that the `min-height` could be `48px`. But with `minRows={2}` is `height: 56px !important;`. So I don't have way to set that value as `min-height` [](https://play.tailwindcss.com/NagUN0sheX) [source here](https://play.tailwindcss.com/NagUN0sheX)

> // Many react-native libraries do not compile their ES6 JS. > test: /\.js$/, > include: /node_modules\/react-native-/, > // react-native-web is already compiled. > exclude: /node_modules\/react-native-web\//, > loader: 'babel-loader', >...

I was able to use `react-native-animatable` with `react-native-web ` with expo, just do it: ``` npm install -g expo-cli expo init myapp cd myapp npm i react-native-web npm i react-native-animatable...

This issue https://github.com/Folkloreatelier/laravel-graphql/pull/301 has the answer: > you can use the dev branch in your composer.json

I had a similar issue and I solved in this way. I set the error manage in the file config/graphql.php for this: `‘error_formatter’ => [App\Exceptions\GraphQLExceptions::class, ‘formatError’],` And my class GraphQLExceptions...

The Folkloreatelier GraphQL has not been updated for 3 months, maybe the [Rebing GraphQL] (https://github.com/rebing/graphql-laravel) is a good option to change. ¿?