Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Extra inset shadow styles that don't exist #1110

Open
quick007 opened this issue Dec 16, 2024 · 1 comment
Open

Extra inset shadow styles that don't exist #1110

quick007 opened this issue Dec 16, 2024 · 1 comment
Assignees
Labels
bug Something isn't working

Comments

@quick007
Copy link

What version of VS Code are you using?

1.96.0

What version of Tailwind CSS IntelliSense are you using?

0.12.16

What version of Tailwind CSS are you using?

4.0.0-beta.6

What package manager are you using?

Deno v2

What operating system are you using?

Windows

Tailwind config

@import "tailwindcss";

@plugin "tailwindcss-animate";
@plugin "@tailwindcss/forms";

@font-face {
	font-family: "Nunito";
	src: url("fonts/Nunito-Italic.ttf");
	font-style: italic;
}

@font-face {
	font-family: "Nunito";
	src: url("fonts/Nunito.ttf");
}

@source "./src";

@theme {
	--default-font-family: "Nunito"
}

VS Code settings

{
  "explorer.confirmDragAndDrop": false,
  "javascript.updateImportsOnFileMove.enabled": "always",
  "typescript.updateImportsOnFileMove.enabled": "always",
  "editor.inlineSuggest.enabled": true,
  "editor.acceptSuggestionOnEnter": "smart",
  "editor.tabSize": 2,
  "editor.insertSpaces": false,
  "[typescriptreact]": {
    "editor.defaultFormatter": "esbenp.prettier-vscode"
  },
  "github.copilot.enable": {
    "*": true,
    "yaml": false,
    "plaintext": true,
    "markdown": false,
    "typescript": false,
    "typescriptreact": false
  },
  "[html]": {
    "editor.defaultFormatter": "esbenp.prettier-vscode"
  },
  "[javascript]": {
    "editor.defaultFormatter": "esbenp.prettier-vscode"
  },
  "editor.suggestSelection": "first",
  "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
  "files.exclude": {
    "**/.classpath": true,
    "**/.project": true,
    "**/.settings": true,
    "**/.factorypath": true
  },
  "sonarlint.rules": {
    "typescript:S125": {
      "level": "off"
    },
    "typescript:S3358": {
      "level": "off"
    },
    "typescript:S1854": {
      "level": "off"
    },
    "typescript:S1117": {
      "level": "off"
    },
    "typescript:S4123": {
      "level": "off"
    }
  },
  "[javascriptreact]": {
    "editor.defaultFormatter": "esbenp.prettier-vscode"
  },
  "[jsonc]": {
    "editor.defaultFormatter": "esbenp.prettier-vscode"
  },
  "[typescript]": {
    "editor.defaultFormatter": "esbenp.prettier-vscode"
  },
  "liveshare.connectionMode": "relay",
  "editor.bracketPairColorization.enabled": false,
  "[json]": {
    "editor.defaultFormatter": "esbenp.prettier-vscode"
  },
  "editor.accessibilitySupport": "off",
  "[css]": {
    "editor.defaultFormatter": "esbenp.prettier-vscode"
  },
  "files.associations": {
    "*.mdx": "markdown",
    "*.iaentitymodel": "json",
    "*.bbmodel": "jsonc",
    ".env.local": "env",
    "*.css": "tailwindcss"
  },
  "security.workspace.trust.untrustedFiles": "open",
  "git.openRepositoryInParentFolders": "never",
  "totalTypeScript.hideAllTips": false,
  "totalTypeScript.hideBasicTips": true,
  "files.autoSave": "afterDelay",
  "workbench.editor.customLabels.patterns": {
    "**/app/**/page.tsx": "${dirname} - Page",
    "**/app/**/layout.tsx": "${dirname} - Layout",
    "**/component/**/index.tsx": "${dirname} - Component"
  },
  "workbench.colorTheme": "Vercel (Dark)",
  "[markdown]": {
    "editor.defaultFormatter": "esbenp.prettier-vscode"
  },
  "git.confirmSync": false,
  "git.enableSmartCommit": true,
  "npm.packageManager": "pnpm"
}

Reproduction URL

https://play.tailwindcss.com/TYzpS64fSP

Describe your issue

Tailwind v4 only ships with inset-shadow xs, 2xs, and sm, but intellisense incorrectly has values for above that, such as md.

@thecrypticace thecrypticace self-assigned this Dec 20, 2024
@thecrypticace
Copy link
Contributor

Ah this is a bug in Tailwind itself. We're suggesting from the wrong theme key.

@thecrypticace thecrypticace added the bug Something isn't working label Dec 20, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants