Socket
Socket
Sign inDemoInstall

ununura-shared

Package Overview
Dependencies
0
Maintainers
1
Versions
59
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.6.2 to 1.6.7

68

dist/index.d.ts

@@ -1,18 +0,1 @@

declare const UNUNURA_FLAG = "__UNUNURACSS__";
declare const VIRTUAL_CSS_INJECT_FILENAME = "ununura.css";
declare const RESOLVED_VIRTUAL_CSS_INJECT_FILENAME: string;
declare const STANDARD_INCLUDE_SCAN: string[];
declare const STANDARD_EXCLUDE_SCAN: string[];
declare const STANDARD_INCLUDE_FILTER_SCAN: RegExp[];
declare const STANDARD_EXCLUDE_FILTER_SCAN: RegExp[];
declare const NULLABLE = "__NULLABLE__";
declare const DEFAULT_UNIT: [string, number];
declare const DEFAULT_RESPONSIVE: {
xs: string;
sm: string;
md: string;
lg: string;
xl: string;
};
type Maybe<T> = T | undefined | null;

@@ -24,6 +7,6 @@ type Awaitable<T> = T | Promise<T>;

type Tuple<T extends Symbol> = [T, T];
type TupleWithOptions<T extends Symbol, K = Record<T, unknown>> = [T, T, K];
type TupleWithOptions<T extends Symbol, K = Record<T, any>> = [T, T, K];
type ArrTuple<T extends Symbol> = Tuple<T>[];
type ArrTupleWithOptions<T extends Symbol, K = {}> = TupleWithOptions<T, K>[];
type TupleOption<K extends Symbol = Symbol, O = Record<K, unknown>> = (Tuple<K> | TupleWithOptions<K, O>)[];
type TupleOption<K extends Symbol = Symbol, O = Record<K, any>> = (Tuple<K> | TupleWithOptions<K, O>)[];
type Object$1 = Record<Symbol, Symbol>;

@@ -42,2 +25,3 @@ type ObjectWithOptions<T> = Record<Symbol, {

type SFCType = 'vue' | 'svelte' | 'astro';
type FontStack = 'system-ui' | 'transitional' | 'old-style' | 'humanist' | 'geometric-humanist' | 'classical-humanist' | 'neo-grotesque' | 'monospace-slab-serif' | 'monospace-code' | 'industrial' | 'rounded-sans' | 'slab-serif' | 'antique' | 'didone' | 'handwritten';
type UnunuraDefOrExtended = string;

@@ -53,2 +37,23 @@ type UnunuraBounce = 'padding' | 'margin' | 'border' | 'text' | 'background' | 'flex' | 'grid' | UnunuraDefOrExtended;

declare const UNUNURA_FLAG = "__UNUNURACSS__";
declare const VIRTUAL_CSS_INJECT_FILENAME = "ununura.css";
declare const RESOLVED_VIRTUAL_CSS_INJECT_FILENAME: string;
declare const STANDARD_INCLUDE_SCAN: string[];
declare const STANDARD_EXCLUDE_SCAN: string[];
declare const STANDARD_INCLUDE_FILTER_SCAN: RegExp[];
declare const STANDARD_EXCLUDE_FILTER_SCAN: RegExp[];
declare const NULLABLE = "__NULLABLE__";
declare const DEFAULT_UNIT: [string, number];
declare const DEFAULT_FONT_STACK: FontStack;
declare const DEFAULT_BROWSERSLIST: string[];
declare const DEFAULT_RESPONSIVE: {
xs: string;
sm: string;
md: string;
lg: string;
xl: string;
};
declare const DEFAULT_ADAPTERS: () => string[];
declare const DEFAULT_CL: () => string[];
declare const ANTIALIASED_RESET_CSS: () => string;

@@ -181,2 +186,3 @@ declare const NOVOUT_RESET_CSS: () => string;

interface UnunuraDefaultsValues {
fontStack?: FontStack;
unit?: [string, number];

@@ -301,2 +307,8 @@ }

/**
* Use https://github.com/danielroe/fontaine
*
* @default true
*/
fontainePlugin?: boolean;
/**
* Apply the PostCSS autoprefixer package.

@@ -450,2 +462,8 @@ *

/**
* Use https://github.com/danielroe/fontaine
*
* @default true
*/
fontainePlugin?: boolean;
/**
* Apply the PostCSS autoprefixer package.

@@ -507,3 +525,3 @@ *

declare const isJSXFile: (i: string) => boolean;
declare const isJSXEntryFile: (i: string) => RegExpMatchArray | null;
declare const isJSXEntryFile: (i: string) => RegExpMatchArray;
declare const isCSSColor: (i: string) => boolean;

@@ -524,2 +542,4 @@ declare const isDefaultFont: (i: string) => boolean;

declare const isScroll: (i: string) => boolean;
declare const isListType: (i: string) => boolean;
declare const isListPosition: (i: string) => boolean;
declare const isCursor: (i: string) => boolean;

@@ -538,9 +558,9 @@ declare const isTouch: (i: string) => boolean;

declare const isGlobal: (str: string) => Maybe<string>;
declare const isThemeContextIdentifier: (str: string) => string | undefined;
declare const isThemeContextIdentifier: (str: string) => string;
declare const isResponsiveContextIdentifier: (str: string) => Maybe<UnunuraContextualizeResponsive>;
declare const isPseudoClassContextIdentifier: (str: string) => Maybe<UnunuraContextualizePseudoClasses>;
declare const isPseudoElementContextIdentifier: (str: string) => Maybe<UnunuraContextualizePseudoElement>;
declare const isContextIdentifier: (str: string) => Maybe<string>;
declare const isContextIdentifier: (str: string) => string;
declare const isCommonIdentifier: (str: string) => boolean;
declare const isIdentifier: (str: string) => true | Maybe<string>;
declare const isIdentifier: (str: string) => string | true;
declare const isTransitionProperty: (i: string) => boolean;

@@ -554,2 +574,2 @@ declare const isTransitionTimingFunction: (i: string) => boolean;

export { ANTIALIASED_RESET_CSS, ArrTuple, ArrTupleWithOptions, AstroSFC, Awaitable, CSSInject, CSSResourceSizer, DEFAULT_RESPONSIVE, DEFAULT_UNIT, JSXSFC, MEYER_RESET_CSS, Maybe, NOVOUT_RESET_CSS, NULLABLE, Nullable, Object$1 as Object, ObjectWithOptions, Option, RESOLVED_VIRTUAL_CSS_INJECT_FILENAME, SFC, SFCType, STANDARD_EXCLUDE_FILTER_SCAN, STANDARD_EXCLUDE_SCAN, STANDARD_INCLUDE_FILTER_SCAN, STANDARD_INCLUDE_SCAN, SvelteSFC, Symbol, Tuple, TupleOption, TupleWithOptions, UNUNURA_FLAG, UNUNURA_RESPONSIVE, UnunuraASTNode, UnunuraBounce, UnunuraContextualize, UnunuraContextualizePseudoClasses, UnunuraContextualizePseudoElement, UnunuraContextualizeResponsive, UnunuraContextualizeStack, UnunuraContextualizeTheme, UnunuraCoreOptions, UnunuraDefOrExtended, UnunuraDefaults, UnunuraDefaultsContexts, UnunuraDefaultsContextsResponsive, UnunuraDefaultsValues, UnunuraExtend, UnunuraExtendContexts, UnunuraExtendSupporters, UnunuraExtendSupportersColorOptions, UnunuraGenerateContext, UnunuraGlobals, UnunuraIdentifier, UnunuraKeys, UnunuraOptions, UnunuraResolvableOptions, UnunuraScannerFile, UnunuraSetterCSSOptions, VIRTUAL_CSS_INJECT_FILENAME, ValueOption, VueSFC, browserFonts, getFilename, isAstroFile, isBorderStyle, isCSSColor, isCloseMultipleKey, isCommonIdentifier, isContextCloseKey, isContextIdentifier, isContextKey, isContextOpenKey, isCursor, isDefaultCentralize, isDefaultFont, isFlexHorizontal, isFlexVertical, isGlobal, isHTTPSImage, isHex, isIdentifier, isImage, isImageRepeat, isImageSize, isJSXEntryFile, isJSXFile, isJustifyAlign, isJustifySelf, isKey, isNullable, isNumber, isNumberSuffix, isOpenKey, isOpenMultipleKey, isOutlineStyle, isPseudoClassContextIdentifier, isPseudoElementContextIdentifier, isResponsiveContextIdentifier, isScopedSFCFile, isScroll, isSizer, isSlashImage, isSvelteFile, isThemeContextIdentifier, isTouch, isTransitionProperty, isTransitionTimingFunction, isTypographyOverflow, isTypographyTransform, isUniqueKey, isVueFile, isVueSFC, pseudoClass, pseudoElement };
export { ANTIALIASED_RESET_CSS, ArrTuple, ArrTupleWithOptions, AstroSFC, Awaitable, CSSInject, CSSResourceSizer, DEFAULT_ADAPTERS, DEFAULT_BROWSERSLIST, DEFAULT_CL, DEFAULT_FONT_STACK, DEFAULT_RESPONSIVE, DEFAULT_UNIT, FontStack, JSXSFC, MEYER_RESET_CSS, Maybe, NOVOUT_RESET_CSS, NULLABLE, Nullable, Object$1 as Object, ObjectWithOptions, Option, RESOLVED_VIRTUAL_CSS_INJECT_FILENAME, SFC, SFCType, STANDARD_EXCLUDE_FILTER_SCAN, STANDARD_EXCLUDE_SCAN, STANDARD_INCLUDE_FILTER_SCAN, STANDARD_INCLUDE_SCAN, SvelteSFC, Symbol, Tuple, TupleOption, TupleWithOptions, UNUNURA_FLAG, UNUNURA_RESPONSIVE, UnunuraASTNode, UnunuraBounce, UnunuraContextualize, UnunuraContextualizePseudoClasses, UnunuraContextualizePseudoElement, UnunuraContextualizeResponsive, UnunuraContextualizeStack, UnunuraContextualizeTheme, UnunuraCoreOptions, UnunuraDefOrExtended, UnunuraDefaults, UnunuraDefaultsContexts, UnunuraDefaultsContextsResponsive, UnunuraDefaultsValues, UnunuraExtend, UnunuraExtendContexts, UnunuraExtendSupporters, UnunuraExtendSupportersColorOptions, UnunuraGenerateContext, UnunuraGlobals, UnunuraIdentifier, UnunuraKeys, UnunuraOptions, UnunuraResolvableOptions, UnunuraScannerFile, UnunuraSetterCSSOptions, VIRTUAL_CSS_INJECT_FILENAME, ValueOption, VueSFC, browserFonts, getFilename, isAstroFile, isBorderStyle, isCSSColor, isCloseMultipleKey, isCommonIdentifier, isContextCloseKey, isContextIdentifier, isContextKey, isContextOpenKey, isCursor, isDefaultCentralize, isDefaultFont, isFlexHorizontal, isFlexVertical, isGlobal, isHTTPSImage, isHex, isIdentifier, isImage, isImageRepeat, isImageSize, isJSXEntryFile, isJSXFile, isJustifyAlign, isJustifySelf, isKey, isListPosition, isListType, isNullable, isNumber, isNumberSuffix, isOpenKey, isOpenMultipleKey, isOutlineStyle, isPseudoClassContextIdentifier, isPseudoElementContextIdentifier, isResponsiveContextIdentifier, isScopedSFCFile, isScroll, isSizer, isSlashImage, isSvelteFile, isThemeContextIdentifier, isTouch, isTransitionProperty, isTransitionTimingFunction, isTypographyOverflow, isTypographyTransform, isUniqueKey, isVueFile, isVueSFC, pseudoClass, pseudoElement };

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

"use strict";var p=Object.defineProperty;var D=Object.getOwnPropertyDescriptor;var G=Object.getOwnPropertyNames;var A=Object.prototype.hasOwnProperty;var B=(e,o)=>{for(var s in o)p(e,s,{get:o[s],enumerable:!0})},R=(e,o,s,b)=>{if(o&&typeof o=="object"||typeof o=="function")for(let i of G(o))!A.call(e,i)&&i!==s&&p(e,i,{get:()=>o[i],enumerable:!(b=D(o,i))||b.enumerable});return e};var z=e=>R(p({},"__esModule",{value:!0}),e);var Ge={};B(Ge,{ANTIALIASED_RESET_CSS:()=>C,DEFAULT_RESPONSIVE:()=>d,DEFAULT_UNIT:()=>V,MEYER_RESET_CSS:()=>j,NOVOUT_RESET_CSS:()=>W,NULLABLE:()=>c,RESOLVED_VIRTUAL_CSS_INJECT_FILENAME:()=>P,STANDARD_EXCLUDE_FILTER_SCAN:()=>q,STANDARD_EXCLUDE_SCAN:()=>_,STANDARD_INCLUDE_FILTER_SCAN:()=>O,STANDARD_INCLUDE_SCAN:()=>F,UNUNURA_FLAG:()=>N,UNUNURA_RESPONSIVE:()=>H,UnunuraGlobals:()=>a,UnunuraIdentifier:()=>n,UnunuraKeys:()=>l,VIRTUAL_CSS_INJECT_FILENAME:()=>u,browserFonts:()=>m,getFilename:()=>De,isAstroFile:()=>K,isBorderStyle:()=>pe,isCSSColor:()=>I,isCloseMultipleKey:()=>L,isCommonIdentifier:()=>k,isContextCloseKey:()=>ue,isContextIdentifier:()=>T,isContextKey:()=>Ce,isContextOpenKey:()=>f,isCursor:()=>ge,isDefaultCentralize:()=>Y,isDefaultFont:()=>U,isFlexHorizontal:()=>oe,isFlexVertical:()=>te,isGlobal:()=>Ee,isHTTPSImage:()=>ae,isHex:()=>J,isIdentifier:()=>fe,isImage:()=>le,isImageRepeat:()=>re,isImageSize:()=>ee,isJSXEntryFile:()=>Q,isJSXFile:()=>Z,isJustifyAlign:()=>se,isJustifySelf:()=>ie,isKey:()=>ye,isNullable:()=>Se,isNumber:()=>$,isNumberSuffix:()=>he,isOpenKey:()=>be,isOpenMultipleKey:()=>S,isOutlineStyle:()=>ce,isPseudoClassContextIdentifier:()=>v,isPseudoElementContextIdentifier:()=>Le,isResponsiveContextIdentifier:()=>M,isScopedSFCFile:()=>X,isScroll:()=>xe,isSizer:()=>de,isSlashImage:()=>ne,isSvelteFile:()=>E,isThemeContextIdentifier:()=>w,isTouch:()=>me,isTransitionProperty:()=>we,isTransitionTimingFunction:()=>Me,isTypographyOverflow:()=>ve,isTypographyTransform:()=>Te,isUniqueKey:()=>h,isVueFile:()=>y,isVueSFC:()=>ke,pseudoClass:()=>x,pseudoElement:()=>g});module.exports=z(Ge);var N="__UNUNURACSS__",u="ununura.css",P="\0"+u,F=["**/*.{vue,svelte,jsx,tsx,astro}"],_=["**/.{nuxt,output}"],O=[/\.(vue|svelte|[jt]sx|astro)($|\?)/],q=[/\.(css|sass|scss|less|stylus|styl)($|\?)/],c="__NULLABLE__",V=["px",1],d={xs:"538px",sm:"640px",md:"768px",lg:"1024px",xl:"1536px"};var C=()=>`-webkit-font-smoothing: antialiased;
var p=Object.defineProperty;var k=Object.getOwnPropertyDescriptor;var A=Object.getOwnPropertyNames;var G=Object.prototype.hasOwnProperty;var R=(e,o)=>{for(var s in o)p(e,s,{get:o[s],enumerable:!0})},B=(e,o,s,b)=>{if(o&&typeof o=="object"||typeof o=="function")for(let i of A(o))!G.call(e,i)&&i!==s&&p(e,i,{get:()=>o[i],enumerable:!(b=k(o,i))||b.enumerable});return e};var F=e=>B(p({},"__esModule",{value:!0}),e);var _e={};R(_e,{ANTIALIASED_RESET_CSS:()=>C,DEFAULT_ADAPTERS:()=>H,DEFAULT_BROWSERSLIST:()=>j,DEFAULT_CL:()=>Y,DEFAULT_FONT_STACK:()=>W,DEFAULT_RESPONSIVE:()=>d,DEFAULT_UNIT:()=>V,MEYER_RESET_CSS:()=>$,NOVOUT_RESET_CSS:()=>J,NULLABLE:()=>c,RESOLVED_VIRTUAL_CSS_INJECT_FILENAME:()=>_,STANDARD_EXCLUDE_FILTER_SCAN:()=>q,STANDARD_EXCLUDE_SCAN:()=>z,STANDARD_INCLUDE_FILTER_SCAN:()=>O,STANDARD_INCLUDE_SCAN:()=>P,UNUNURA_FLAG:()=>N,UNUNURA_RESPONSIVE:()=>K,UnunuraGlobals:()=>a,UnunuraIdentifier:()=>n,UnunuraKeys:()=>l,VIRTUAL_CSS_INJECT_FILENAME:()=>u,browserFonts:()=>g,getFilename:()=>Ne,isAstroFile:()=>U,isBorderStyle:()=>me,isCSSColor:()=>te,isCloseMultipleKey:()=>L,isCommonIdentifier:()=>D,isContextCloseKey:()=>Te,isContextIdentifier:()=>M,isContextKey:()=>we,isContextOpenKey:()=>f,isCursor:()=>Ce,isDefaultCentralize:()=>X,isDefaultFont:()=>se,isFlexHorizontal:()=>re,isFlexVertical:()=>ne,isGlobal:()=>Me,isHTTPSImage:()=>de,isHex:()=>Z,isIdentifier:()=>ke,isImage:()=>xe,isImageRepeat:()=>pe,isImageSize:()=>ie,isJSXEntryFile:()=>oe,isJSXFile:()=>ee,isJustifyAlign:()=>ae,isJustifySelf:()=>le,isKey:()=>ve,isListPosition:()=>ue,isListType:()=>be,isNullable:()=>Le,isNumber:()=>Q,isNumberSuffix:()=>Ee,isOpenKey:()=>fe,isOpenMultipleKey:()=>S,isOutlineStyle:()=>ge,isPseudoClassContextIdentifier:()=>v,isPseudoElementContextIdentifier:()=>De,isResponsiveContextIdentifier:()=>w,isScopedSFCFile:()=>I,isScroll:()=>Se,isSizer:()=>he,isSlashImage:()=>ce,isSvelteFile:()=>E,isThemeContextIdentifier:()=>T,isTouch:()=>ye,isTransitionProperty:()=>Ae,isTransitionTimingFunction:()=>Ge,isTypographyOverflow:()=>Re,isTypographyTransform:()=>Be,isUniqueKey:()=>h,isVueFile:()=>y,isVueSFC:()=>Fe,pseudoClass:()=>x,pseudoElement:()=>m});module.exports=F(_e);var N="__UNUNURACSS__",u="ununura.css",_="\0"+u,P=["**/*.{vue,svelte,jsx,tsx,astro}"],z=["**/.{nuxt,output}"],O=[/\.(vue|svelte|[jt]sx|astro)($|\?)/],q=[/\.(css|sass|scss|less|stylus|styl)($|\?)/],c="__NULLABLE__",V=["px",1],W="system-ui",j=["last 4 versions"],d={xs:"538px",sm:"640px",md:"768px",lg:"1024px",xl:"1536px"},H=()=>["exactClassName","exact-class-name",":exactClassName",":exact-class-name"],Y=()=>[":class",":className"];var C=()=>`-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
`,W=()=>`* {
`,J=()=>`* {
padding: 0;

@@ -16,3 +16,3 @@ margin: 0;

}
`,j=()=>`/* http://meyerweb.com/eric/tools/css/reset/
`,$=()=>`/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126

@@ -65,2 +65,2 @@ License: none (public domain)

}
`,x=["hover","focus","active","checked","disabled","empty","enabled","first-child","first-of-type","in-range","invalid","last-child","last-of-type","link","only-child","optional","out-of-range","read-only","read-write","required","valid","visited"],g=["after","before","cue","first-letter","first-line","selection","slotted","backdrop","placeholder","marker","spelling-error","grammar-error"],m=["Arial","Arial Black","Bahnschrift","Calibri","Cambria","Cambria Math","Candara","Comic Sans MS","Consolas","Constantia","Corbel","Courier New","Ebrima","Franklin Gothic Medium","Gabriola","Gadugi","Georgia","HoloLens MDL2 Assets","Impact","Ink Free","Javanese Text","Leelawadee UI","Lucida Console","Lucida Sans Unicode","Malgun Gothic","Marlett","Microsoft Himalaya","Microsoft JhengHei","Microsoft New Tai Lue","Microsoft PhagsPa","Microsoft Sans Serif","Microsoft Tai Le","Microsoft YaHei","Microsoft Yi Baiti","MingLiU-ExtB","Mongolian Baiti","MS Gothic","MV Boli","Myanmar Text","Nirmala UI","Palatino Linotype","Segoe MDL2 Assets","Segoe Print","Segoe Script","Segoe UI","Segoe UI Historic","Segoe UI Emoji","Segoe UI Symbol","SimSun","Sitka","Sylfaen","Symbol","Tahoma","Times New Roman","Trebuchet MS","Verdana","Webdings","Wingdings","Yu Gothic"],H=e=>d[e]??e;var n=(t=>(t.Padding="p",t.PaddingExtended="padding",t.Margin="m",t.MarginExtended="m",t.Height="h",t.HeightExtended="height",t.Width="w",t.WidthExtended="width",t.Border="b",t.BorderExtended="border",t.Outline="o",t.OutlineExtended="outline",t.Text="text",t.TextFont="font",t.Background="bg",t.BackgroundExtended="background",t.Flexbox="f",t.FlexboxExtended="flex",t.Grid="g",t.GridExtended="grid",t.Position="pos",t.PositionExtended="position",t.Scroll="sc",t.ScrollExtended="scroll",t.Shadow="sh",t.ShadowExtended="shadow",t.Rounded="r",t.RoundedExtended="rounded",t.ZIndex="z",t.ZIndexExtended="zindex",t.Display="d",t.DisplayExtended="display",t.Float="fl",t.FloatExtended="float",t.Transition="tr",t.TransitionExtended="transition",t.Transform="tf",t.TransformExtended="transform",t.Typography="typo",t.TypographyExtended="typography",t.Filter="fi",t.FilterExtended="filter",t.Style="st",t.StyleExtended="style",t.Gradient="gr",t.GradientExtended="gradient",t.Animation="an",t.AnimationExtended="animation",t.Collection="cl",t.CollectionExtended="collection",t.Reset="reset",t))(n||{}),a=(s=>(s.None="?",s.Important="!",s))(a||{}),l=(r=>(r.MultipleContextOpen="[",r.MultipleContextClose="]",r.SpecificContextOpen="(",r.SpecificContextClose=")",r.UniqueContext=":",r))(l||{});var Y=e=>["center","left","right","justify"].some(o=>e===o),J=e=>/^#[0-9a-fA-F]{6}/i.test(e),$=e=>/[-]{0,1}[\d]*[.]{0,1}[\d]+/i.test(e),y=e=>/\.(vue)$/.test(e),E=e=>/\.(svelte)$/.test(e),K=e=>/\.(astro)$/.test(e),X=e=>y(e)||E(e),Z=e=>/\.(jsx|tsx)$/.test(e),Q=e=>e.match(/main.(jsx|tsx)/),I=e=>["AliceBlue","AntiqueWhite","Aqua","Aquamarine","Azure","Beige","Bisque","Black","BlanchedAlmond","Blue","BlueViolet","Brown","BurlyWood","CadetBlue","Chartreuse","Chocolate","Coral","CornflowerBlue","Cornsilk","Crimson","Cyan","DarkBlue","DarkCyan","DarkGoldenRod","DarkGray","DarkGrey","DarkGreen","DarkKhaki","DarkMagenta","DarkOliveGreen","DarkOrange","DarkOrchid","DarkRed","DarkSalmon","DarkSeaGreen","DarkSlateBlue","DarkSlateGray","DarkSlateGrey","DarkTurquoise","DarkViolet","DeepPink","DeepSkyBlue","DimGray","DimGrey","DodgerBlue","FireBrick","FloralWhite","ForestGreen","Fuchsia","Gainsboro","GhostWhite","Gold","GoldenRod","Gray","Grey","Green","GreenYellow","HoneyDew","HotPink","IndianRed","Indigo","Ivory","Khaki","Lavender","LavenderBlush","LawnGreen","LemonChiffon","LightBlue","LightCoral","LightCyan","LightGoldenRodYellow","LightGray","LightGrey","LightGreen","LightPink","LightSalmon","LightSeaGreen","LightSkyBlue","LightSlateGray","LightSlateGrey","LightSteelBlue","LightYellow","Lime","LimeGreen","Linen","Magenta","Maroon","MediumAquaMarine","MediumBlue","MediumOrchid","MediumPurple","MediumSeaGreen","MediumSlateBlue","MediumSpringGreen","MediumTurquoise","MediumVioletRed","MidnightBlue","MintCream","MistyRose","Moccasin","NavajoWhite","Navy","OldLace","Olive","OliveDrab","Orange","OrangeRed","Orchid","PaleGoldenRod","PaleGreen","PaleTurquoise","PaleVioletRed","PapayaWhip","PeachPuff","Peru","Pink","Plum","PowderBlue","Purple","RebeccaPurple","Red","RosyBrown","RoyalBlue","SaddleBrown","Salmon","SandyBrown","SeaGreen","SeaShell","Sienna","Silver","SkyBlue","SlateBlue","SlateGray","SlateGrey","Snow","SpringGreen","SteelBlue","Tan","Teal","Thistle","Tomato","Turquoise","Violet","Wheat","White","WhiteSmoke","Yellow","YellowGreen"].some(o=>o.toLowerCase()===e.toLowerCase()),U=e=>[...m].some(o=>o.toLowerCase()===e.toLowerCase()),ee=e=>["auto","cover","contain"].some(o=>e.toLowerCase()===o.toLowerCase()),oe=e=>["start","end","center","between","around","evenly","initial","inherit"].some(o=>e===o),te=e=>["stretch","center","start","end","baseline","initial","inherit"].some(o=>e===o),se=e=>["stretch","center","start","end"].some(o=>e===o),ie=e=>["auto","stretch","center","start","end"].some(o=>e===o),re=e=>["repeat","no-repeat","repeat-x","repeat-y","repeat-round","repeat-space"].some(o=>e.toLowerCase()===o.toLowerCase()),ne=e=>e.startsWith("//"),ae=e=>/(https?:\/\/.*\.(?:png|jpg|gif|jpe?g|tiff?|png|webp|bmp))/i.test(e),le=e=>/\.(gif|jpe?g|tiff?|png|webp|bmp)$/i.test(e),pe=e=>["solid","dotted","dashed"].some(o=>o===e),ce=e=>["solid","dotted","dashed","double"].some(o=>o===e),de=e=>["xs","sm","base","lg","xl"].some(o=>o===e),xe=e=>["scroll","hidden","auto","clip","visible"].some(o=>o===e),ge=e=>["auto","default","pointer","wait","text","move","help","not-allowed","none","context-menu","progress","cell","crosshair","vertical-text","alias","copy","no-drop","grap","grabbing","all-scroll","col-resize","row-resize","n-resize","e-resize","s-resize","w-resize","ne-resize","nw-resize","se-resize","sw-resize","ew-resize","ns-resize","nesw-resize","nwse-resize","zoom-in","zoom-out"].some(o=>o===e),me=e=>["auto","none","pan-x","pan-left","pan-right","pan-y","pan-up","pan-down","pinch-down","manipulation"].some(o=>o===e),he=e=>["cm","mm","pc","pt","em","ex","ch","%","rem","lh","rlh","vw","vh","vmin","vmax","vb","vi","svw","svh","lvw","lvh","dvw","dvh"].some(o=>e.toLowerCase().endsWith(o.toLowerCase())),Se=e=>e===c||e===void 0||e===null,h=e=>e===":",be=e=>h(e)||S(e)||f(e),S=e=>e==="[",L=e=>e==="]",f=e=>e==="(",ue=e=>e===")",Ce=e=>h(e)||S(e)||L(e),ye=e=>Object.values(l).some(o=>o===e),Ee=e=>Object.values(a).find(o=>e.startsWith(o)),w=e=>["dark","light","sepia"].find(o=>o===e),M=e=>["xs","sm","md","lg","xl"].find(o=>o===e),v=e=>x?.find(o=>o===e),Le=e=>g?.find(o=>o===e),T=e=>w(e)||M(e)||v(e),k=e=>Object.values(n).some(o=>o===e),fe=e=>k(e)||T(e),we=e=>["all","none","background","color","transform"].some(o=>e===o),Me=e=>["ease","ease-in","ease-out","ease-in-out","linear","step-start","step-end"].some(o=>e===o),ve=e=>["clip","ellipsis"].some(o=>e===o),Te=e=>["uppercase","lowercase","capitalize"].some(o=>e===o),ke=e=>e==="vue";var De=e=>e.substring(e.lastIndexOf("/")+1);0&&(module.exports={ANTIALIASED_RESET_CSS,DEFAULT_RESPONSIVE,DEFAULT_UNIT,MEYER_RESET_CSS,NOVOUT_RESET_CSS,NULLABLE,RESOLVED_VIRTUAL_CSS_INJECT_FILENAME,STANDARD_EXCLUDE_FILTER_SCAN,STANDARD_EXCLUDE_SCAN,STANDARD_INCLUDE_FILTER_SCAN,STANDARD_INCLUDE_SCAN,UNUNURA_FLAG,UNUNURA_RESPONSIVE,UnunuraGlobals,UnunuraIdentifier,UnunuraKeys,VIRTUAL_CSS_INJECT_FILENAME,browserFonts,getFilename,isAstroFile,isBorderStyle,isCSSColor,isCloseMultipleKey,isCommonIdentifier,isContextCloseKey,isContextIdentifier,isContextKey,isContextOpenKey,isCursor,isDefaultCentralize,isDefaultFont,isFlexHorizontal,isFlexVertical,isGlobal,isHTTPSImage,isHex,isIdentifier,isImage,isImageRepeat,isImageSize,isJSXEntryFile,isJSXFile,isJustifyAlign,isJustifySelf,isKey,isNullable,isNumber,isNumberSuffix,isOpenKey,isOpenMultipleKey,isOutlineStyle,isPseudoClassContextIdentifier,isPseudoElementContextIdentifier,isResponsiveContextIdentifier,isScopedSFCFile,isScroll,isSizer,isSlashImage,isSvelteFile,isThemeContextIdentifier,isTouch,isTransitionProperty,isTransitionTimingFunction,isTypographyOverflow,isTypographyTransform,isUniqueKey,isVueFile,isVueSFC,pseudoClass,pseudoElement});
`,x=["hover","focus","active","checked","disabled","empty","enabled","first-child","first-of-type","in-range","invalid","last-child","last-of-type","link","only-child","optional","out-of-range","read-only","read-write","required","valid","visited"],m=["after","before","cue","first-letter","first-line","selection","slotted","backdrop","placeholder","marker","spelling-error","grammar-error"],g=["Arial","Arial Black","Bahnschrift","Calibri","Cambria","Cambria Math","Candara","Comic Sans MS","Consolas","Constantia","Corbel","Courier New","Ebrima","Franklin Gothic Medium","Gabriola","Gadugi","Georgia","HoloLens MDL2 Assets","Impact","Ink Free","Javanese Text","Leelawadee UI","Lucida Console","Lucida Sans Unicode","Malgun Gothic","Marlett","Microsoft Himalaya","Microsoft JhengHei","Microsoft New Tai Lue","Microsoft PhagsPa","Microsoft Sans Serif","Microsoft Tai Le","Microsoft YaHei","Microsoft Yi Baiti","MingLiU-ExtB","Mongolian Baiti","MS Gothic","MV Boli","Myanmar Text","Nirmala UI","Palatino Linotype","Segoe MDL2 Assets","Segoe Print","Segoe Script","Segoe UI","Segoe UI Historic","Segoe UI Emoji","Segoe UI Symbol","SimSun","Sitka","Sylfaen","Symbol","Tahoma","Times New Roman","Trebuchet MS","Verdana","Webdings","Wingdings","Yu Gothic"],K=e=>d[e]??e;var n=(t=>(t.Padding="p",t.PaddingExtended="padding",t.Margin="m",t.MarginExtended="m",t.Height="h",t.HeightExtended="height",t.Width="w",t.WidthExtended="width",t.Border="b",t.BorderExtended="border",t.Outline="o",t.OutlineExtended="outline",t.Text="text",t.TextFont="font",t.Background="bg",t.BackgroundExtended="background",t.Flexbox="f",t.FlexboxExtended="flex",t.Grid="g",t.GridExtended="grid",t.Position="pos",t.PositionExtended="position",t.Scroll="sc",t.ScrollExtended="scroll",t.Shadow="sh",t.ShadowExtended="shadow",t.Rounded="r",t.RoundedExtended="rounded",t.ZIndex="z",t.ZIndexExtended="zindex",t.Display="d",t.DisplayExtended="display",t.Float="fl",t.FloatExtended="float",t.Transition="tr",t.TransitionExtended="transition",t.Transform="tf",t.TransformExtended="transform",t.Typography="typo",t.TypographyExtended="typography",t.Filter="fi",t.FilterExtended="filter",t.Style="st",t.StyleExtended="style",t.Gradient="gr",t.GradientExtended="gradient",t.Animation="an",t.AnimationExtended="animation",t.Collection="cl",t.CollectionExtended="collection",t.Reset="reset",t))(n||{}),a=(s=>(s.None="?",s.Important="!",s))(a||{}),l=(r=>(r.MultipleContextOpen="[",r.MultipleContextClose="]",r.SpecificContextOpen="(",r.SpecificContextClose=")",r.UniqueContext=":",r))(l||{});var X=e=>["center","left","right","justify"].some(o=>e===o),Z=e=>/^#[0-9a-fA-F]{6}/i.test(e),Q=e=>/[-]{0,1}[\d]*[.]{0,1}[\d]+/i.test(e),y=e=>/\.(vue)$/.test(e),E=e=>/\.(svelte)$/.test(e),U=e=>/\.(astro)$/.test(e),I=e=>y(e)||E(e),ee=e=>/\.(jsx|tsx)$/.test(e),oe=e=>e.match(/main.(jsx|tsx)/),te=e=>["AliceBlue","AntiqueWhite","Aqua","Aquamarine","Azure","Beige","Bisque","Black","BlanchedAlmond","Blue","BlueViolet","Brown","BurlyWood","CadetBlue","Chartreuse","Chocolate","Coral","CornflowerBlue","Cornsilk","Crimson","Cyan","DarkBlue","DarkCyan","DarkGoldenRod","DarkGray","DarkGrey","DarkGreen","DarkKhaki","DarkMagenta","DarkOliveGreen","DarkOrange","DarkOrchid","DarkRed","DarkSalmon","DarkSeaGreen","DarkSlateBlue","DarkSlateGray","DarkSlateGrey","DarkTurquoise","DarkViolet","DeepPink","DeepSkyBlue","DimGray","DimGrey","DodgerBlue","FireBrick","FloralWhite","ForestGreen","Fuchsia","Gainsboro","GhostWhite","Gold","GoldenRod","Gray","Grey","Green","GreenYellow","HoneyDew","HotPink","IndianRed","Indigo","Ivory","Khaki","Lavender","LavenderBlush","LawnGreen","LemonChiffon","LightBlue","LightCoral","LightCyan","LightGoldenRodYellow","LightGray","LightGrey","LightGreen","LightPink","LightSalmon","LightSeaGreen","LightSkyBlue","LightSlateGray","LightSlateGrey","LightSteelBlue","LightYellow","Lime","LimeGreen","Linen","Magenta","Maroon","MediumAquaMarine","MediumBlue","MediumOrchid","MediumPurple","MediumSeaGreen","MediumSlateBlue","MediumSpringGreen","MediumTurquoise","MediumVioletRed","MidnightBlue","MintCream","MistyRose","Moccasin","NavajoWhite","Navy","OldLace","Olive","OliveDrab","Orange","OrangeRed","Orchid","PaleGoldenRod","PaleGreen","PaleTurquoise","PaleVioletRed","PapayaWhip","PeachPuff","Peru","Pink","Plum","PowderBlue","Purple","RebeccaPurple","Red","RosyBrown","RoyalBlue","SaddleBrown","Salmon","SandyBrown","SeaGreen","SeaShell","Sienna","Silver","SkyBlue","SlateBlue","SlateGray","SlateGrey","Snow","SpringGreen","SteelBlue","Tan","Teal","Thistle","Tomato","Turquoise","Violet","Wheat","White","WhiteSmoke","Yellow","YellowGreen"].some(o=>o.toLowerCase()===e.toLowerCase()),se=e=>[...g].some(o=>o.toLowerCase()===e.toLowerCase()),ie=e=>["auto","cover","contain"].some(o=>e.toLowerCase()===o.toLowerCase()),re=e=>["start","end","center","between","around","evenly","initial","inherit"].some(o=>e===o),ne=e=>["stretch","center","start","end","baseline","initial","inherit"].some(o=>e===o),ae=e=>["stretch","center","start","end"].some(o=>e===o),le=e=>["auto","stretch","center","start","end"].some(o=>e===o),pe=e=>["repeat","no-repeat","repeat-x","repeat-y","repeat-round","repeat-space"].some(o=>e.toLowerCase()===o.toLowerCase()),ce=e=>e.startsWith("//"),de=e=>/(https?:\/\/.*\.(?:png|jpg|gif|jpe?g|tiff?|png|webp|bmp))/i.test(e),xe=e=>/\.(gif|jpe?g|tiff?|png|webp|bmp)$/i.test(e),me=e=>["solid","dotted","dashed"].some(o=>o===e),ge=e=>["solid","dotted","dashed","double"].some(o=>o===e),he=e=>["xs","sm","base","lg","xl"].some(o=>o===e),Se=e=>["scroll","hidden","auto","clip","visible"].some(o=>o===e),be=e=>["none","disc","decimal"].some(o=>o===e),ue=e=>["inside","outside"].some(o=>o===e),Ce=e=>["auto","default","pointer","wait","text","move","help","not-allowed","none","context-menu","progress","cell","crosshair","vertical-text","alias","copy","no-drop","grap","grabbing","all-scroll","col-resize","row-resize","n-resize","e-resize","s-resize","w-resize","ne-resize","nw-resize","se-resize","sw-resize","ew-resize","ns-resize","nesw-resize","nwse-resize","zoom-in","zoom-out"].some(o=>o===e),ye=e=>["auto","none","pan-x","pan-left","pan-right","pan-y","pan-up","pan-down","pinch-down","manipulation"].some(o=>o===e),Ee=e=>["cm","mm","pc","pt","em","ex","ch","%","rem","lh","rlh","vw","vh","vmin","vmax","vb","vi","svw","svh","lvw","lvh","dvw","dvh"].some(o=>e.toLowerCase().endsWith(o.toLowerCase())),Le=e=>e===c||e===void 0||e===null,h=e=>e===":",fe=e=>h(e)||S(e)||f(e),S=e=>e==="[",L=e=>e==="]",f=e=>e==="(",Te=e=>e===")",we=e=>h(e)||S(e)||L(e),ve=e=>Object.values(l).some(o=>o===e),Me=e=>Object.values(a).find(o=>e.startsWith(o)),T=e=>["dark","light","sepia"].find(o=>o===e),w=e=>["xs","sm","md","lg","xl"].find(o=>o===e),v=e=>x?.find(o=>o===e),De=e=>m?.find(o=>o===e),M=e=>T(e)||w(e)||v(e),D=e=>Object.values(n).some(o=>o===e),ke=e=>D(e)||M(e),Ae=e=>["all","none","background","color","transform"].some(o=>e===o),Ge=e=>["ease","ease-in","ease-out","ease-in-out","linear","step-start","step-end"].some(o=>e===o),Re=e=>["clip","ellipsis"].some(o=>e===o),Be=e=>["uppercase","lowercase","capitalize"].some(o=>e===o),Fe=e=>e==="vue";var Ne=e=>e.substring(e.lastIndexOf("/")+1);0&&(module.exports={ANTIALIASED_RESET_CSS,DEFAULT_ADAPTERS,DEFAULT_BROWSERSLIST,DEFAULT_CL,DEFAULT_FONT_STACK,DEFAULT_RESPONSIVE,DEFAULT_UNIT,MEYER_RESET_CSS,NOVOUT_RESET_CSS,NULLABLE,RESOLVED_VIRTUAL_CSS_INJECT_FILENAME,STANDARD_EXCLUDE_FILTER_SCAN,STANDARD_EXCLUDE_SCAN,STANDARD_INCLUDE_FILTER_SCAN,STANDARD_INCLUDE_SCAN,UNUNURA_FLAG,UNUNURA_RESPONSIVE,UnunuraGlobals,UnunuraIdentifier,UnunuraKeys,VIRTUAL_CSS_INJECT_FILENAME,browserFonts,getFilename,isAstroFile,isBorderStyle,isCSSColor,isCloseMultipleKey,isCommonIdentifier,isContextCloseKey,isContextIdentifier,isContextKey,isContextOpenKey,isCursor,isDefaultCentralize,isDefaultFont,isFlexHorizontal,isFlexVertical,isGlobal,isHTTPSImage,isHex,isIdentifier,isImage,isImageRepeat,isImageSize,isJSXEntryFile,isJSXFile,isJustifyAlign,isJustifySelf,isKey,isListPosition,isListType,isNullable,isNumber,isNumberSuffix,isOpenKey,isOpenMultipleKey,isOutlineStyle,isPseudoClassContextIdentifier,isPseudoElementContextIdentifier,isResponsiveContextIdentifier,isScopedSFCFile,isScroll,isSizer,isSlashImage,isSvelteFile,isThemeContextIdentifier,isTouch,isTransitionProperty,isTransitionTimingFunction,isTypographyOverflow,isTypographyTransform,isUniqueKey,isVueFile,isVueSFC,pseudoClass,pseudoElement});
{
"name": "ununura-shared",
"version": "1.6.2",
"version": "1.6.7",
"description": "Atomic CSS Engine.",

@@ -5,0 +5,0 @@ "author": "Novout",

@@ -0,0 +0,0 @@ # UnunuraCSS

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc