New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@css-panda/types

Package Overview
Dependencies
Maintainers
1
Versions
171
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@css-panda/types - npm Package Compare versions

Comparing version 0.0.0-dev-20220911144405 to 0.0.0-dev-20220911145543

2

package.json
{
"name": "@css-panda/types",
"version": "0.0.0-dev-20220911144405",
"version": "0.0.0-dev-20220911145543",
"description": "The types for css panda",

@@ -5,0 +5,0 @@ "main": "src/index.d.ts",

@@ -23,22 +23,86 @@ import type { Conditions as TConditions } from './conditions'

> = {
preflight?: boolean
/**
* Whether to include css reset styles in the generated css.
*/
preflight?: boolean | { scope: string }
/**
* Whether to minify the generated css.
*/
minify?: boolean
/**
* The current working directory.
*/
cwd?: string
/**
* Whether to hash the generated class names.
* This is useful if want to shorten the class names.
*/
hash?: boolean
/**
* Whether to clean the output directory before generating the css.
*/
clean?: boolean
/**
* The output directory.
*/
outdir?: string
/**
* The css variable options for the generated design tokens
*/
cssVar?: {
/**
* The prefix for the css variables.
*/
prefix?: string
/**
* The root selector for the css variables.
* @default ':where(:host, :root)'
*/
root?: string
}
/**
* Files to watch for changes.
*/
include?: string[]
/**
* Files to ignore.
*/
exclude?: string[]
/**
* Whether to watch for changes and regenerate the css.
*/
watch?: boolean
/**
* The css selectors or media queries shortcuts.
* @example `{ hover: "&:hover" }`
*/
conditions?: TConditions
/**
* The breakpoints for your project.
*/
breakpoints?: Breakpoints
/**
* The css animation keyframes definitions.
*/
keyframes?: Keyframes
/**
* The design tokens for your project.
*/
tokens?: Tokens
/**
* The semantic design tokens for your project.
*/
semanticTokens?: SemanticTokens<Tokens, Conditions, Breakpoints>
/**
* The css utility definitions.
*/
utilities?: Utility<Tokens>[]
/**
* Multi-variant style definitions for your project.
* Useful for defining component styles.
*/
recipes?: Recipe[]
/**
* Common styling or layout patterns for your project.
*/
patterns?: Pattern[]

@@ -45,0 +109,0 @@ }

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc