Socket
Socket
Sign inDemoInstall

@vanilla-extract/css

Package Overview
Dependencies
Maintainers
4
Versions
124
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vanilla-extract/css - npm Package Compare versions

Comparing version 0.0.0-dts-bundle-20228303510 to 0.0.0-dts-bundle-202283041239

3

adapter/dist/vanilla-extract-css-adapter.cjs.d.ts

@@ -1,4 +0,5 @@

import { CSSVarFunction } from '@vanilla-extract/private';
import { AtRule, Properties } from 'csstype';
declare type CSSVarFunction = `var(--${string})` | `var(--${string}, ${string | number})`;
declare const simplePseudoMap: {

@@ -5,0 +6,0 @@ readonly ':-moz-any-link': true;

@@ -1,4 +0,12 @@

import { CSSVarFunction, MapLeafNodes, Contract } from '@vanilla-extract/private';
import { Properties, AtRule } from 'csstype';
declare type CSSVarFunction = `var(--${string})` | `var(--${string}, ${string | number})`;
declare type Contract = {
[key: string]: CSSVarFunction | null | Contract;
};
declare type Primitive = string | boolean | number | null | undefined;
declare type MapLeafNodes<Obj, LeafType> = {
[Prop in keyof Obj]: Obj[Prop] extends Primitive ? LeafType : Obj[Prop] extends Record<string | number, any> ? MapLeafNodes<Obj[Prop], LeafType> : never;
};
declare const simplePseudoMap: {

@@ -5,0 +13,0 @@ readonly ':-moz-any-link': true;

{
"name": "@vanilla-extract/css",
"version": "0.0.0-dts-bundle-20228303510",
"version": "0.0.0-dts-bundle-202283041239",
"description": "Zero-runtime Stylesheets-in-TypeScript",

@@ -111,3 +111,3 @@ "sideEffects": true,

"@emotion/hash": "^0.8.0",
"@vanilla-extract/private": "^0.0.0-dts-bundle-20228303510",
"@vanilla-extract/private": "^1.0.3",
"ahocorasick": "1.0.2",

@@ -114,0 +114,0 @@ "chalk": "^4.1.1",

@@ -1,2 +0,1 @@

import { CSSVarFunction } from '@vanilla-extract/private';
import { AtRule, Properties } from 'csstype';

@@ -12,2 +11,4 @@

declare type CSSVarFunction = `var(--${string})` | `var(--${string}, ${string | number})`;
declare const simplePseudoMap: {

@@ -14,0 +15,0 @@ readonly ':-moz-any-link': true;

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