@trackunit/css-tailwind-custom-properties-plugin
Advanced tools
Comparing version 0.0.11 to 0.0.12
{ | ||
"name": "@trackunit/css-tailwind-custom-properties-plugin", | ||
"version": "0.0.11", | ||
"version": "0.0.12", | ||
"main": "./index.cjs", | ||
@@ -5,0 +5,0 @@ "repository": "https://github.com/Trackunit/manager", |
@@ -9,3 +9,3 @@ import { CSSRuleObject } from "tailwindcss/types/config"; | ||
* @param keys An array of strings representing the keys to be converted to a CSS custom property name. | ||
* @returns A string representing the CSS custom property name. | ||
* @returns { string } A string representing the CSS custom property name. | ||
*/ | ||
@@ -21,3 +21,3 @@ export declare const keysToCssVariableName: (keys: string[]) => string; | ||
* @param {string[]} [keys] - An array of keys representing the current path of the object being processed | ||
* @returns {object} - The generated flat object containing the CSS variable names and values | ||
* @returns {VariablesDeclerationObject} - The generated flat object containing the CSS variable names and values | ||
*/ | ||
@@ -29,4 +29,4 @@ export declare const flattenVariablesDeclerationValues: (values: object, output?: VariablesDeclerationObject, keys?: string[]) => VariablesDeclerationObject; | ||
* @param variablesDecleration An object containing the CSS variables and their corresponding values. | ||
* @returns An array of CSS rules. | ||
* @returns {CSSRuleObject[]} An array of CSS rules. | ||
*/ | ||
export declare const variablesToCSSRules: (variablesDecleration: object) => CSSRuleObject[]; |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
6052