npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@styled/typescript-styled-plugin

v1.0.1

Published

TypeScript language service plugin that adds IntelliSense for styled components

Downloads

183,217

Readme

TypeScript Styled Plugin

TypeScript server plugin that adds intellisense to styled component css strings

Build Status

Features

  • IntelliSense for CSS property names and values.
  • Syntax error reporting.
  • Quick fixes for misspelled property names.

Usage

This plugin requires TypeScript 2.4 or later. It can provide intellisense in both JavaScript and TypeScript files within any editor that uses TypeScript to power their language features. This includes VS Code, Sublime with the TypeScript plugin, Atom with the TypeScript plugin, Visual Studio, and others.

With VS Code

Just install the VS Code Styled Components extension. This extension adds syntax highlighting and IntelliSense for styled components in JavaScript and TypeScript files.

If you are using a workspace version of TypeScript however, you must manually install the plugin along side the version of TypeScript in your workspace:

npm install --save-dev @styled/typescript-styled-plugin typescript

Then add a plugins section to your tsconfig.json or jsconfig.json

{
    "compilerOptions": {
        "plugins": [
            {
                "name": "@styled/typescript-styled-plugin"
            }
        ]
    }
}

Finally, run the Select TypeScript version command in VS Code to switch to use the workspace version of TypeScript for VS Code's JavaScript and TypeScript language support. You can find more information about managing typescript versions in the VS Code documentation.

With Sublime

This plugin works with the Sublime TypeScript plugin.

First install the plugin and a copy of TypeScript in your workspace:

npm install --save-dev @styled/typescript-styled-plugin typescript

And configure Sublime to use the workspace version of TypeScript by setting the typescript_tsdk setting in Sublime:

{
    "typescript_tsdk": "/Users/matb/my-amazing-project/node_modules/typescript/lib"
}

Finally add a plugins section to your tsconfig.json or jsconfig.json and restart Sublime.

{
    "compilerOptions": {
        "plugins": [
            {
                "name": "typescript-styled-plugin"
            }
        ]
    }
}

With Visual Studio

This plugin works Visual Studio 2022 using the TypeScript 4.9+ SDK.

First install the plugin in your project:

npm install --save-dev @styled/typescript-styled-plugin

Then add a plugins section to your tsconfig.json.

{
    "compilerOptions": {
        "plugins": [
            {
                "name": "@styled/typescript-styled-plugin"
            }
        ]
    }
}

Then reload your project to make sure the plugin has been loaded properly. Note that jsconfig.json projects are currently not supported in VS.

Configuration

Tags

This plugin adds styled component IntelliSense to any template literal tagged with styled, css, injectGlobal, keyframes or createGlobalStyle:

import styled from 'styled-components';

styled.button`
    color: blue;
`;

You can enable IntelliSense for other tag names by configuring "tags":

{
    "compilerOptions": {
        "plugins": [
            {
                "name": "@styled/typescript-styled-plugin",
                "tags": ["styled", "css", "sty"]
            }
        ]
    }
}

Now strings tagged with either styled, css, or sty will have styled component IntelliSense:

import sty from 'styled-components';

sty.button`
    color: blue;
`;

Tags also apply to methods on styled components. This is enabled for extend by default:

import sty from 'styled-components';

const BlueButton = sty.button`
    color: blue;
`;

const MyFancyBlueButton = BlueButton.extend`
    border: 10px solid hotpink;
`;

Linting

To disable error reporting, set "validate": false in the plugin configuration:

{
    "compilerOptions": {
        "plugins": [
            {
                "name": "typescript-styled-plugin",
                "validate": false
            }
        ]
    }
}

You can also configure how errors are reported using linter settings.

{
    "compilerOptions": {
        "plugins": [
            {
                "name": "typescript-styled-plugin",
                "lint": {
                    "vendorPrefix": "error",
                    "zeroUnits": "ignore"
                }
            }
        ]
    }
}

The following lint options are supported:

validProperties

["property1", "property2", ....]

List of properties that are treated as valid.

unknownProperties

"ignore" | "warning" | "error"

Should unknown properties show an error or warning? Default is "warning".

compatibleVendorPrefixes

"ignore" | "warning" | "error"

When using a vendor-specific prefix make sure to also include all other vendor-specific properties. Default is "ignore".

vendorPrefix

"ignore" | "warning" | "error"

When using a vendor-specific prefix also include the standard property. Default is "warning".

duplicateProperties

"ignore" | "warning" | "error"

Do not use duplicate style definitions. Default is "ignore".

emptyRules

"ignore" | "warning" | "error"

Do not use empty rulesets. Default is "ignore".

importStatement

"ignore" | "warning" | "error"

Import statements do not load in parallel. Default is "ignore".

boxModel

"ignore" | "warning" | "error"

Do not use width or height when using padding or border. Default is "ignore".

universalSelector

"ignore" | "warning" | "error"

The universal selector (*) is known to be slow. Default is "ignore".

zeroUnits

"ignore" | "warning" | "error"

No unit for zero needed. Default is "ignore".

fontFaceProperties

"ignore" | "warning" | "error"

@font-face rule must define 'src' and 'font-family' properties. Default is "warning".

hexColorLength

"ignore" | "warning" | "error"

Hex colors must consist of three or six hex numbers. Default is "error".

argumentsInColorFunction

"ignore" | "warning" | "error"

Invalid number of parameters. Default is "error".

ieHack

"ignore" | "warning" | "error"

IE hacks are only necessary when supporting IE7 and older. Default is "ignore".

unknownVendorSpecificProperties

"ignore" | "warning" | "error"

Unknown vendor specific property. Default is "ignore".

propertyIgnoredDueToDisplay

"ignore" | "warning" | "error"

Property is ignored due to the display. E.g. with 'display: inline', the width, height, margin-top, margin-bottom, and float properties have no effect. Default is "warning"

important

"ignore" | "warning" | "error"

Avoid using !important. It is an indication that the specificity of the entire CSS has gotten out of control and needs to be refactored. Default is "ignore".

float

"ignore" | "warning" | "error"

Avoid using 'float'. Floats lead to fragile CSS that is easy to break if one aspect of the layout changes. Default is "ignore".

idSelector

"ignore" | "warning" | "error"

Selectors should not contain IDs because these rules are too tightly coupled with the HTML. Default is "ignore".

Emmet in completion list

You can now see your Emmet abbreviations expanded and included in the completion list. An upstream issue with typescript blocks the Emmet entry in the completion list to get updated as you type. So for now you will have to press Ctrl+Space after typing out the abbreviation.

The below settings which are in sync with general Emmet settings in VS Code control the expanded Emmet abbreviations in the auto-completion list.

showExpandedAbbreviation

"always" | "never"

Controls whether or not expanded Emmet abbreviations should show up in the completion list

showSuggestionsAsSnippets

`true` | `false`

If true, then Emmet suggestions will show up as snippets allowing you to order them as per editor.snippetSuggestions setting.

preferences

Preferences used to modify behavior of some actions and resolvers of Emmet.

Contributing

To build the typescript-styled-plugin, you'll need Git and Node.js.

First, fork the typescript-styled-plugin repo and clone your fork:

git clone https://github.com/YOUR_GITHUB_ACCOUNT_NAME/typescript-styled-plugin.git
cd typescript-styled-plugin

Then install dev dependencies:

npm install

The plugin is written in TypeScript. The source code is in the src/ directory with the compiled JavaScript output to the lib/ directory. Kick off a build using the compile script:

npm run compile

switch to e2 to install or update test dependencies:

(cd e2e && npm install)

and then navigate back to the project root and run the end to end tests with the e2e script:

cd ..
npm run e2e

You can submit bug fixes and features through pull requests. To get started, first checkout a new feature branch on your local repo:

git checkout -b my-awesome-new-feature-branch

Make the desired code changes, commit them, and then push the changes up to your forked repository:

git push origin my-awesome-new-feature-branch

Then submit a pull request against the Microsoft typescript-styled-plugin repository.

Please also see our Code of Conduct.

Credits

Code originally forked from: https://github.com/Quramy/ts-graphql-plugin