Dennis Torres

Results 18 issues of Dennis Torres

Images within client-side-only loaded components aren’t optimized. For example: ✅ This works ```ts import dynamic from 'next/dynamic'; import type { NextPage } from 'next'; import ComponentWithImage from './ComponentWithImage'; export const...

enhancement
help wanted

## Description In production, repo-based image upload fails with the alert "Failed to upload file". I _can_ edit other content. Also, image upload does work locally. ### Steps to reproduce...

bug

## 🚀 Feature request Support attribute docstrings like [SimpleParsing does here](https://github.com/lebrice/SimpleParsing/blob/master/examples/docstrings/README.md). For example: **train.py** ```py from dataclasses import dataclass from jsonargparse import ArgumentParser from typing import Literal @dataclass class Hyperparameters:...

enhancement

Add vendor support for "filter" property

I'm not even sure if this is possible, but it would be awesome if writing something like this: .button:placeholder color gray gets converted into this: .button::-webkit-input-placeholder, .button:-moz-placeholder, .button::-moz-placeholder, .button:-ms-input-placeholder {...

Add vendor support for calc() function. This can be tricky because there may be multiple instances of calc() attached to a property: ``` css background-size calc(10% \- 10px) calc(20% \-...

feature request

## Description `tinacms build` doesn't load environment variables from `.env.production`. ### Expected result Expected `tinacms build` to follow the same environment variable loading rules as `next build`. ### What should...

enhancement

TailwindCSS recently added an additional `950` shade that works really well for dark mode. It allows for a gorgeous dark background without falling back to **black**. The [TailwindUI Commit Template](https://commit.tailwindui.com/)...

### Feature description It would be a great developer experience if the Owner and Authenticator roles could be created on `reset` if they don't already exist. The tool could create...

What is the recommended way to validate input? Some more questions: * Is it preferred to handle validation in a plugin or handle it in the database with constraints *...