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

@meetdomaine/tailwind-syrah

Package Overview
Dependencies
Maintainers
1
Versions
32
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@meetdomaine/tailwind-syrah - npm Package Compare versions

Comparing version 1.0.15 to 1.0.16

2

package.json
{
"name": "@meetdomaine/tailwind-syrah",
"version": "1.0.15",
"version": "1.0.16",
"description": "A TailwindCSS plugin for Domaine",

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

@@ -9,3 +9,3 @@ import { consoleError, rem } from "../utils";

import type { PluginAPI } from "tailwindcss/types/config";
import get from "lodash/get";
import { get } from "lodash";
import { ManifestKeys, ScreenSizeMapping } from "../enums";

@@ -12,0 +12,0 @@ import { FontFamilyMapping } from "../types";

import { z } from "zod";
import kebabCase from "lodash/kebabcase";
import { kebabCase } from "lodash";
import {

@@ -4,0 +4,0 @@ schema as BaseTypographySchema,

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

import set from "lodash/set";
import { set } from "lodash";
import { consoleError } from "../utils";

@@ -3,0 +3,0 @@ import { schema } from "./schema";

import { CSSRuleObject } from "tailwindcss/types/config";
import { z } from "zod";
import ColorInstance from "color";
import set from "lodash/set";
import kebabcase from "lodash/kebabcase";
import { set, kebabCase } from "lodash";
import createDebugger from "debug";

@@ -53,3 +52,3 @@

Object.entries(data).forEach(([key, value]) => {
const [colorGroup, colorName]: string[] = key.split("/").map(kebabcase);
const [colorGroup, colorName]: string[] = key.split("/").map(kebabCase);
if (!colorGroup || !colorName) return;

@@ -56,0 +55,0 @@

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

import set from "lodash/set";
import { set } from "lodash";
import { consoleError, getFluidSize, rem } from "../utils";

@@ -3,0 +3,0 @@ import {

import { z } from "zod";
import { getFluidSize, rem } from "../utils";
import { ScreenSizeMapping } from "../enums";
import kebabcase from "lodash/kebabcase";
import { kebabCase } from "lodash";

@@ -120,3 +120,3 @@ const ResponsiveValuesSchema = z.object({

Object.entries(data).map(([key, value]) => [
kebabcase(
kebabCase(
key

@@ -123,0 +123,0 @@ .replace("Border/Radius", "")

@@ -13,5 +13,3 @@ import type {

import { ScreenSizeMapping } from "../enums";
import kebabcase from "lodash/kebabcase";
import set from "lodash/set";
import get from "lodash/get";
import { kebabCase, get, set } from "lodash";

@@ -30,3 +28,3 @@ const debug = createDebugger("plugin:typography");

([kind, sizeMap]): void | [string, CSSRuleObject] => {
const kindTag: string = kebabcase(kind);
const kindTag: string = kebabCase(kind);
const targetTag: string | void | null = get(

@@ -33,0 +31,0 @@ TypographyBaseKeyToTag,

@@ -9,4 +9,3 @@ import set from "lodash/set";

import type { ManifestTextStyle } from "./schemas";
import kamelCase from "lodash/kebabcase";
import get from "lodash/get";
import { kebabCase, get } from "lodash";
import { consoleError, getFluidSize, rem } from "../utils";

@@ -39,3 +38,3 @@ import { CSSRuleObject } from "tailwindcss/types/config";

export const getFontFamilyVariable = (fontFamily: FontFamilyKey): string =>
`var(--font-family-${kamelCase(fontFamily)})`;
`var(--font-family-${kebabCase(fontFamily)})`;

@@ -42,0 +41,0 @@ export const getFontFamilyFromMapping = (

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