@marigold/system 0.1.0 → 0.3.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (47) hide show
  1. package/CHANGELOG.md +57 -0
  2. package/dist/Box.d.ts +14 -0
  3. package/dist/Global.d.ts +2 -0
  4. package/dist/SVG.d.ts +6 -0
  5. package/dist/SVG.stories.d.ts +5 -0
  6. package/dist/index.d.ts +6 -3
  7. package/dist/normalize.d.ts +144 -0
  8. package/dist/system.cjs.development.js +350 -144
  9. package/dist/system.cjs.development.js.map +1 -1
  10. package/dist/system.cjs.production.min.js +1 -1
  11. package/dist/system.cjs.production.min.js.map +1 -1
  12. package/dist/system.esm.js +342 -140
  13. package/dist/system.esm.js.map +1 -1
  14. package/dist/theme.d.ts +136 -0
  15. package/dist/types.d.ts +1 -2
  16. package/dist/useTheme.d.ts +11 -5
  17. package/dist/variant.d.ts +29 -0
  18. package/package.json +4 -6
  19. package/src/Box.test.tsx +308 -0
  20. package/src/Box.tsx +199 -0
  21. package/src/Global.test.tsx +57 -0
  22. package/src/Global.tsx +34 -0
  23. package/src/SVG.stories.tsx +48 -0
  24. package/src/SVG.test.tsx +82 -0
  25. package/src/SVG.tsx +24 -0
  26. package/src/index.ts +6 -3
  27. package/src/normalize.test.tsx +15 -0
  28. package/src/normalize.ts +100 -0
  29. package/src/theme.ts +157 -0
  30. package/src/types.ts +0 -2
  31. package/src/useTheme.test.tsx +22 -14
  32. package/src/useTheme.tsx +37 -9
  33. package/src/variant.test.ts +93 -0
  34. package/src/variant.ts +54 -0
  35. package/dist/cache.d.ts +0 -4
  36. package/dist/reset.d.ts +0 -24
  37. package/dist/useClassname.d.ts +0 -2
  38. package/dist/useStyles.d.ts +0 -15
  39. package/src/Colors.stories.mdx +0 -455
  40. package/src/cache.ts +0 -4
  41. package/src/concepts-principles.mdx +0 -84
  42. package/src/reset.ts +0 -108
  43. package/src/useClassname.test.tsx +0 -70
  44. package/src/useClassname.ts +0 -23
  45. package/src/useStyles.test.tsx +0 -286
  46. package/src/useStyles.ts +0 -63
  47. package/src/writeComponent.stories.mdx +0 -126
@@ -1 +1 @@
1
- {"version":3,"file":"system.esm.js","sources":["../src/useTheme.tsx","../src/useClassname.ts","../src/reset.ts","../src/useStyles.ts"],"sourcesContent":["import React, { createContext, useCallback, useContext } from 'react';\nimport { css as themeUi } from '@theme-ui/css';\nimport { Theme } from '@marigold/system';\n\nimport { StyleObject } from './types';\n\nconst Context = createContext<Theme>({});\n\nexport const useTheme = () => {\n const theme = useContext(Context);\n const css = useCallback(\n (style: StyleObject) => themeUi(style)(theme),\n [theme]\n );\n return { theme, css };\n};\n\nexport type ThemeProviderProps = { theme: any };\nexport const ThemeProvider: React.FC<ThemeProviderProps> = ({\n theme,\n children,\n}) => <Context.Provider value={theme}>{children}</Context.Provider>;\n","import { css as emotion } from '@emotion/css';\nimport { StyleObject } from './types';\nimport { useTheme } from './useTheme';\n\n// 🤫 https://stackoverflow.com/questions/679915/how-do-i-test-for-an-empty-javascript-object\n// lodash.isEmpty is tooo much KBs!\nconst isEmpty = (val: any) =>\n val && Object.keys(val).length === 0 && val.constructor === Object;\n\nexport const useClassname = (...styles: StyleObject[]) => {\n const { css } = useTheme();\n return styles\n .map(style => {\n /**\n * emotion will create a `css-0` class whenever an empty object is\n * passed. Since this makes debugging harder we'll do not pass empty\n * objects to emotion.\n */\n const themedStyle = css(style);\n return isEmpty(themedStyle) ? '' : emotion(themedStyle);\n })\n .join(' ');\n};\n","import { css } from '@emotion/css';\n\nconst base = css({\n boxSizing: 'border-box',\n margin: 0,\n padding: 0,\n minWidth: 0,\n fontSize: '100%',\n font: 'inherit',\n verticalAlign: 'baseline',\n WebkitTapHighlightColor: 'transparent',\n});\n\n// Content\n// ---------------\nconst block = css({\n display: 'block',\n});\n\nconst list = css({\n listStyle: 'none',\n});\n\nconst table = css({\n borderCollapse: 'collapse',\n borderSpacing: 0,\n});\n\n// Typography\n// ---------------\nconst a = css({\n textDecoration: 'none',\n touchAction: 'manipulation'\n});\n\nconst quote = css({\n quotes: 'none',\n selectors: {\n '&:before, &:after': {\n content: \"''\",\n },\n },\n});\n\n// Form Elements\n// ---------------\nconst button = css({\n display: 'block',\n appearance: 'none',\n background: 'transparent',\n textAlign: 'center',\n touchAction: 'manipulation'\n});\n\nconst input = css({\n display: 'block',\n appearance: 'none',\n selectors: {\n '&::-ms-clear': {\n display: 'none',\n },\n '&::-webkit-search-cancel-button': {\n WebkitAppearance: 'none',\n },\n },\n});\n\nconst select = css({\n display: 'block',\n appearance: 'none',\n selectors: {\n '&::-ms-expand': {\n display: 'none',\n },\n },\n});\n\nconst textarea = css({\n display: 'block',\n appearance: 'none',\n});\n\n// Reset\n// ---------------\nexport const reset = {\n article: block,\n aside: block,\n details: block,\n figcaption: block,\n figure: block,\n footer: block,\n header: block,\n hgroup: block,\n menu: block,\n nav: block,\n section: block,\n ul: list,\n ol: list,\n blockquote: quote,\n q: quote,\n a,\n base,\n table,\n select,\n button,\n textarea,\n input,\n} as const;\n","import { ElementType } from 'react';\nimport { reset } from './reset';\nimport { CSSObject } from './types';\nimport { useClassname } from './useClassname';\n\nexport type UseStyleInput = {\n element?: ElementType;\n css?: Omit<CSSObject, 'variant' | 'element'> & {\n variant?: never;\n element?: never;\n };\n variant?: string | string[];\n className?: string;\n};\n\n/**\n * Hook that can adds base styles, reset for certain elements, variants and custom styles\n */\nexport const useStyles = ({\n element,\n css: styles = {},\n variant,\n className = '',\n}: UseStyleInput) => {\n /**\n * Get reset styles. Base is always applied. An additional reset maybe applied\n * based on the passed element.\n *\n * We check the passed className if it already includes the reset styles so no\n * duplicates are applied.\n */\n const baseClassName = className.includes(reset.base) ? '' : reset.base;\n const resetClassName =\n typeof element === 'string'\n ? className.includes((reset as { [key: string]: string })[element])\n ? ''\n : (reset as { [key: string]: string })[element]\n : '';\n\n /**\n * Get variant styles (from theme).\n */\n const variants = Array.isArray(variant)\n ? variant.map(v => ({ variant: v }))\n : [{ variant }];\n const variantsClassName = useClassname(...variants);\n\n /**\n * Custom styles are applied \"on runtime\". They are usually controlled via component\n * props and can change between component instances.\n */\n const customClassName = useClassname(styles);\n\n return [\n baseClassName,\n resetClassName,\n variantsClassName,\n customClassName,\n className,\n ]\n .filter(Boolean)\n .join(' ');\n};\n"],"names":["Context","createContext","useTheme","theme","useContext","css","useCallback","style","themeUi","ThemeProvider","children","React","Provider","value","isEmpty","val","Object","keys","length","constructor","useClassname","styles","map","themedStyle","emotion","join","base","boxSizing","margin","padding","minWidth","fontSize","font","verticalAlign","WebkitTapHighlightColor","block","display","list","listStyle","table","borderCollapse","borderSpacing","a","textDecoration","touchAction","quote","quotes","selectors","content","button","appearance","background","textAlign","input","WebkitAppearance","select","textarea","reset","article","aside","details","figcaption","figure","footer","header","hgroup","menu","nav","section","ul","ol","blockquote","q","useStyles","element","variant","className","baseClassName","includes","resetClassName","variants","Array","isArray","v","variantsClassName","customClassName","filter","Boolean"],"mappings":";;;;;AAMA,IAAMA,OAAO,gBAAGC,aAAa,CAAQ,EAAR,CAA7B;IAEaC,QAAQ,GAAG,SAAXA,QAAW;AACtB,MAAMC,KAAK,GAAGC,UAAU,CAACJ,OAAD,CAAxB;AACA,MAAMK,KAAG,GAAGC,WAAW,CACrB,UAACC,KAAD;AAAA,WAAwBC,GAAO,CAACD,KAAD,CAAP,CAAeJ,KAAf,CAAxB;AAAA,GADqB,EAErB,CAACA,KAAD,CAFqB,CAAvB;AAIA,SAAO;AAAEA,IAAAA,KAAK,EAALA,KAAF;AAASE,IAAAA,GAAG,EAAHA;AAAT,GAAP;AACD;IAGYI,aAAa,GAAiC,SAA9CA,aAA8C;AAAA,MACzDN,KADyD,QACzDA,KADyD;AAAA,MAEzDO,QAFyD,QAEzDA,QAFyD;AAAA,SAGrDC,mBAAA,CAACX,OAAO,CAACY,QAAT;AAAkBC,IAAAA,KAAK,EAAEV;GAAzB,EAAiCO,QAAjC,CAHqD;AAAA;;ACb3D;;AACA,IAAMI,OAAO,GAAG,SAAVA,OAAU,CAACC,GAAD;AAAA,SACdA,GAAG,IAAIC,MAAM,CAACC,IAAP,CAAYF,GAAZ,EAAiBG,MAAjB,KAA4B,CAAnC,IAAwCH,GAAG,CAACI,WAAJ,KAAoBH,MAD9C;AAAA,CAAhB;;AAGA,IAAaI,YAAY,GAAG,SAAfA,YAAe;kBACVlB,QAAQ;MAAhBG,gBAAAA;;oCADsBgB;AAAAA,IAAAA;;;AAE9B,SAAOA,MAAM,CACVC,GADI,CACA,UAAAf,KAAK;AACR;;;;;AAKA,QAAMgB,WAAW,GAAGlB,GAAG,CAACE,KAAD,CAAvB;AACA,WAAOO,OAAO,CAACS,WAAD,CAAP,GAAuB,EAAvB,GAA4BC,KAAO,CAACD,WAAD,CAA1C;AACD,GATI,EAUJE,IAVI,CAUC,GAVD,CAAP;AAWD,CAbM;;ACPP,IAAMC,IAAI,gBAAGrB,KAAG,CAAC;AACfsB,EAAAA,SAAS,EAAE,YADI;AAEfC,EAAAA,MAAM,EAAE,CAFO;AAGfC,EAAAA,OAAO,EAAE,CAHM;AAIfC,EAAAA,QAAQ,EAAE,CAJK;AAKfC,EAAAA,QAAQ,EAAE,MALK;AAMfC,EAAAA,IAAI,EAAE,SANS;AAOfC,EAAAA,aAAa,EAAE,UAPA;AAQfC,EAAAA,uBAAuB,EAAE;AARV,CAAD,CAAhB;AAYA;;AACA,IAAMC,KAAK,gBAAG9B,KAAG,CAAC;AAChB+B,EAAAA,OAAO,EAAE;AADO,CAAD,CAAjB;AAIA,IAAMC,IAAI,gBAAGhC,KAAG,CAAC;AACfiC,EAAAA,SAAS,EAAE;AADI,CAAD,CAAhB;AAIA,IAAMC,KAAK,gBAAGlC,KAAG,CAAC;AAChBmC,EAAAA,cAAc,EAAE,UADA;AAEhBC,EAAAA,aAAa,EAAE;AAFC,CAAD,CAAjB;AAMA;;AACA,IAAMC,CAAC,gBAAGrC,KAAG,CAAC;AACZsC,EAAAA,cAAc,EAAE,MADJ;AAEZC,EAAAA,WAAW,EAAE;AAFD,CAAD,CAAb;AAKA,IAAMC,KAAK,gBAAGxC,KAAG,CAAC;AAChByC,EAAAA,MAAM,EAAE,MADQ;AAEhBC,EAAAA,SAAS,EAAE;AACT,yBAAqB;AACnBC,MAAAA,OAAO,EAAE;AADU;AADZ;AAFK,CAAD,CAAjB;AAUA;;AACA,IAAMC,MAAM,gBAAG5C,KAAG,CAAC;AACjB+B,EAAAA,OAAO,EAAE,OADQ;AAEjBc,EAAAA,UAAU,EAAE,MAFK;AAGjBC,EAAAA,UAAU,EAAE,aAHK;AAIjBC,EAAAA,SAAS,EAAE,QAJM;AAKjBR,EAAAA,WAAW,EAAE;AALI,CAAD,CAAlB;AAQA,IAAMS,KAAK,gBAAGhD,KAAG,CAAC;AAChB+B,EAAAA,OAAO,EAAE,OADO;AAEhBc,EAAAA,UAAU,EAAE,MAFI;AAGhBH,EAAAA,SAAS,EAAE;AACT,oBAAgB;AACdX,MAAAA,OAAO,EAAE;AADK,KADP;AAIT,uCAAmC;AACjCkB,MAAAA,gBAAgB,EAAE;AADe;AAJ1B;AAHK,CAAD,CAAjB;AAaA,IAAMC,MAAM,gBAAGlD,KAAG,CAAC;AACjB+B,EAAAA,OAAO,EAAE,OADQ;AAEjBc,EAAAA,UAAU,EAAE,MAFK;AAGjBH,EAAAA,SAAS,EAAE;AACT,qBAAiB;AACfX,MAAAA,OAAO,EAAE;AADM;AADR;AAHM,CAAD,CAAlB;AAUA,IAAMoB,QAAQ,gBAAGnD,KAAG,CAAC;AACnB+B,EAAAA,OAAO,EAAE,OADU;AAEnBc,EAAAA,UAAU,EAAE;AAFO,CAAD,CAApB;AAMA;;AACA,AAAO,IAAMO,KAAK,GAAG;AACnBC,EAAAA,OAAO,EAAEvB,KADU;AAEnBwB,EAAAA,KAAK,EAAExB,KAFY;AAGnByB,EAAAA,OAAO,EAAEzB,KAHU;AAInB0B,EAAAA,UAAU,EAAE1B,KAJO;AAKnB2B,EAAAA,MAAM,EAAE3B,KALW;AAMnB4B,EAAAA,MAAM,EAAE5B,KANW;AAOnB6B,EAAAA,MAAM,EAAE7B,KAPW;AAQnB8B,EAAAA,MAAM,EAAE9B,KARW;AASnB+B,EAAAA,IAAI,EAAE/B,KATa;AAUnBgC,EAAAA,GAAG,EAAEhC,KAVc;AAWnBiC,EAAAA,OAAO,EAAEjC,KAXU;AAYnBkC,EAAAA,EAAE,EAAEhC,IAZe;AAanBiC,EAAAA,EAAE,EAAEjC,IAbe;AAcnBkC,EAAAA,UAAU,EAAE1B,KAdO;AAenB2B,EAAAA,CAAC,EAAE3B,KAfgB;AAgBnBH,EAAAA,CAAC,EAADA,CAhBmB;AAiBnBhB,EAAAA,IAAI,EAAJA,IAjBmB;AAkBnBa,EAAAA,KAAK,EAALA,KAlBmB;AAmBnBgB,EAAAA,MAAM,EAANA,MAnBmB;AAoBnBN,EAAAA,MAAM,EAANA,MApBmB;AAqBnBO,EAAAA,QAAQ,EAARA,QArBmB;AAsBnBH,EAAAA,KAAK,EAALA;AAtBmB,CAAd;;ACrEP;;;;AAGA,IAAaoB,SAAS,GAAG,SAAZA,SAAY;MACvBC,eAAAA;sBACArE;MAAKgB,+BAAS;MACdsD,eAAAA;4BACAC;MAAAA,wCAAY;;AAEZ;;;;;;;AAOA,MAAMC,aAAa,GAAGD,SAAS,CAACE,QAAV,CAAmBrB,KAAK,CAAC/B,IAAzB,IAAiC,EAAjC,GAAsC+B,KAAK,CAAC/B,IAAlE;AACA,MAAMqD,cAAc,GAClB,OAAOL,OAAP,KAAmB,QAAnB,GACIE,SAAS,CAACE,QAAV,CAAoBrB,KAAmC,CAACiB,OAAD,CAAvD,IACE,EADF,GAEGjB,KAAmC,CAACiB,OAAD,CAH1C,GAII,EALN;AAOA;;;;AAGA,MAAMM,QAAQ,GAAGC,KAAK,CAACC,OAAN,CAAcP,OAAd,IACbA,OAAO,CAACrD,GAAR,CAAY,UAAA6D,CAAC;AAAA,WAAK;AAAER,MAAAA,OAAO,EAAEQ;AAAX,KAAL;AAAA,GAAb,CADa,GAEb,CAAC;AAAER,IAAAA,OAAO,EAAPA;AAAF,GAAD,CAFJ;AAGA,MAAMS,iBAAiB,GAAGhE,YAAY,MAAZ,SAAgB4D,QAAhB,CAA1B;AAEA;;;;;AAIA,MAAMK,eAAe,GAAGjE,YAAY,CAACC,MAAD,CAApC;AAEA,SAAO,CACLwD,aADK,EAELE,cAFK,EAGLK,iBAHK,EAILC,eAJK,EAKLT,SALK,EAOJU,MAPI,CAOGC,OAPH,EAQJ9D,IARI,CAQC,GARD,CAAP;AASD,CA5CM;;;;"}
1
+ {"version":3,"file":"system.esm.js","sources":["../src/normalize.ts","../src/variant.ts","../src/Box.tsx","../src/useTheme.tsx","../src/Global.tsx","../src/SVG.tsx"],"sourcesContent":["/**\n * Normalize styling of certain elements between browsers.\n * Based on https://www.joshwcomeau.com/css/custom-css-reset/\n */\nimport { ElementType } from 'react';\n\nconst base = {\n boxSizing: 'border-box',\n margin: 0,\n minWidth: 0,\n} as const;\n\nconst a = {\n ...base,\n textDecoration: 'none',\n} as const;\n\nconst text = {\n ...base,\n overflowWrap: 'break-word',\n} as const;\n\nconst media = {\n ...base,\n display: 'block',\n maxWidth: '100%',\n} as const;\n\nconst button = {\n ...base,\n display: 'block',\n appearance: 'none',\n font: 'inherit',\n background: 'transparent',\n textAlign: 'center',\n} as const;\n\nconst input = {\n ...base,\n display: 'block',\n appearance: 'none',\n font: 'inherit',\n '&::-ms-clear': {\n display: 'none',\n },\n '&::-webkit-search-cancel-button': {\n WebkitAppearance: 'none',\n },\n} as const;\n\nconst select = {\n ...base,\n display: 'block',\n appearance: 'none',\n font: 'inherit',\n '&::-ms-expand': {\n display: 'none',\n },\n} as const;\n\nconst textarea = {\n ...base,\n display: 'block',\n appearance: 'none',\n font: 'inherit',\n} as const;\n\n// Normalize\n// ---------------\nexport const normalize = {\n base,\n a,\n p: text,\n h1: text,\n h2: text,\n h3: text,\n h4: text,\n h5: text,\n h6: text,\n img: media,\n picture: media,\n video: media,\n canvas: media,\n svg: media,\n select,\n button,\n textarea,\n input,\n} as const;\n\nexport type NormalizedElement = keyof typeof normalize;\n\n/**\n * Type-safe helper to get normalization. If no normalization is found,\n * returns the *base* normalization.\n */\nexport const getNormalizedStyles = (val?: ElementType) =>\n typeof val === 'string' && val in normalize\n ? normalize[val as NormalizedElement] // Typescript doesn't infer this correctly\n : normalize.base;\n","const isNil = (value: any): value is null | undefined =>\n value === null || value === undefined;\n\n/**\n * Ensures that the `val` is an array. Will return an empty array if `val` is falsy.\n */\nexport const ensureArray = <T>(val?: T | T[]) =>\n isNil(val) ? [] : Array.isArray(val) ? val : [val];\n\n/**\n * Removes trailing dot from variant, if necessary. This is necessary to support\n * `__default` styles. See https://github.com/system-ui/theme-ui/pull/951\n */\nexport const ensureVariantDefault = (val: string) => val.replace(/\\.$/, '');\n\n/**\n * Ensures that the `variant` is an array and supports the `__default` key.\n */\nexport const ensureArrayVariant = <T extends string>(variant?: T | T[]) =>\n ensureArray(variant).map(ensureVariantDefault);\n\nexport type State = {\n checked?: boolean;\n focus?: boolean;\n hover?: boolean;\n disabled?: boolean;\n error?: boolean;\n};\n\n/**\n * Appends given `state` to a `variant`.\n */\nexport const appendVariantState = (variant: string, state: keyof State) => {\n return `${ensureVariantDefault(variant)}.:${state}`;\n};\n\n/**\n * Create a variant array from a `variant` and `state` containing\n * passed states, if they are truthy.\n */\nexport const conditional = (\n variant: string,\n { disabled = false, ...states }: State\n) => {\n const entries = [...Object.entries(states), ['disabled', disabled]] as [\n keyof State,\n boolean\n ][];\n const stateVariants = entries\n .filter(([, val]) => Boolean(val))\n .map(([key]) => appendVariantState(variant, key));\n\n return [variant, ...stateVariants];\n};\n","import { jsx, Theme } from '@emotion/react';\nimport { css as transformStyleObject } from '@theme-ui/css';\nimport { forwardRef } from 'react';\nimport {\n PolymorphicPropsWithRef,\n PolymorphicComponentWithRef,\n} from '@marigold/types';\n\nimport { getNormalizedStyles } from './normalize';\nimport { CSSObject } from './types';\nimport { ensureArrayVariant } from './variant';\n\nexport type StyleProps = Pick<\n CSSObject,\n | 'display'\n | 'height'\n | 'width'\n | 'minWidth'\n | 'maxWidth'\n | 'position'\n | 'top'\n | 'bottom'\n | 'right'\n | 'left'\n | 'zIndex'\n | 'p'\n | 'px'\n | 'py'\n | 'pt'\n | 'pb'\n | 'pl'\n | 'pr'\n | 'm'\n | 'mx'\n | 'my'\n | 'mt'\n | 'mb'\n | 'ml'\n | 'mr'\n | 'flexDirection'\n | 'flexWrap'\n | 'flexShrink'\n | 'flexGrow'\n | 'alignItems'\n | 'justifyContent'\n | 'bg'\n | 'border'\n | 'borderRadius'\n | 'boxShadow'\n | 'opacity'\n | 'overflow'\n | 'transition'\n>;\n\nexport type BoxOwnProps = {\n css?: CSSObject;\n variant?: string | string[];\n /**\n * Use to set base styles for the component\n * @internal Used to set default styles for Marigold components\n */\n __baseCSS?: CSSObject;\n} & StyleProps;\n\nexport type BoxProps = PolymorphicPropsWithRef<BoxOwnProps, 'div'>;\n\n/**\n * Check if there is any falsy value or empty object\n */\nconst isNotEmpty = (val: any) =>\n !(val && Object.keys(val).length === 0 && val.constructor === Object);\n\ntype CreateStyleProps = {\n as?: BoxProps['as'];\n __baseCSS?: BoxOwnProps['__baseCSS'];\n variant?: BoxOwnProps['variant'];\n css?: BoxOwnProps['css'];\n styles?: StyleProps;\n};\n\nconst createThemedStyle =\n ({ as, __baseCSS, variant, styles, css }: CreateStyleProps) =>\n (theme: Theme) => {\n return [\n getNormalizedStyles(as),\n transformStyleObject(__baseCSS)(theme),\n ...ensureArrayVariant(variant).map(v =>\n transformStyleObject({ variant: v })(theme)\n ),\n transformStyleObject(styles)(theme),\n transformStyleObject(css)(theme),\n ].filter(isNotEmpty);\n };\n\nexport const Box: PolymorphicComponentWithRef<BoxOwnProps, 'div'> = forwardRef(\n (\n {\n as = 'div',\n children,\n __baseCSS,\n variant,\n css = {},\n display,\n height,\n width,\n minWidth,\n maxWidth,\n position,\n top,\n bottom,\n right,\n left,\n zIndex,\n p,\n px,\n py,\n pt,\n pb,\n pl,\n pr,\n m,\n mx,\n my,\n mt,\n mb,\n ml,\n mr,\n flexDirection,\n flexWrap,\n flexShrink,\n flexGrow,\n alignItems,\n justifyContent,\n bg,\n border,\n borderRadius,\n boxShadow,\n opacity,\n overflow,\n transition,\n ...props\n },\n ref\n ) =>\n jsx(\n as,\n {\n ...props,\n css: createThemedStyle({\n as,\n __baseCSS,\n variant,\n css,\n styles: {\n display,\n height,\n width,\n minWidth,\n maxWidth,\n position,\n top,\n bottom,\n right,\n left,\n zIndex,\n p,\n px,\n py,\n pt,\n pb,\n pl,\n pr,\n m,\n mx,\n my,\n mt,\n mb,\n ml,\n mr,\n flexDirection,\n flexWrap,\n flexShrink,\n flexGrow,\n alignItems,\n justifyContent,\n bg,\n border,\n borderRadius,\n boxShadow,\n opacity,\n overflow,\n transition,\n },\n }),\n ref,\n },\n children\n )\n);\n","import React, {\n createContext,\n ReactNode,\n useCallback,\n useContext,\n} from 'react';\nimport { css as transformStyleObject } from '@theme-ui/css';\nimport { ThemeProvider as EmotionProvider } from '@emotion/react';\n\nimport { Theme } from './theme';\nimport { StyleObject } from './types';\n\n/**\n * @internal\n */\nexport const __defaultTheme: Theme = {};\n\nconst InternalContext = createContext<Theme>(__defaultTheme);\n\nexport const useTheme = () => {\n const theme = useContext(InternalContext);\n /**\n * We cast the theme here to `any` since our subset is not\n * compatible with the typings of `theme-ui`, since they\n * also support arrays as scale values, while we don't.\n */\n const css = useCallback(\n (style: StyleObject) => transformStyleObject(style)(theme as any),\n [theme]\n );\n return { theme, css };\n};\n\nexport type ThemeProviderProps<T extends Theme> = {\n theme: T;\n children: ReactNode;\n};\n\nexport function ThemeProvider<T extends Theme>({\n theme,\n children,\n}: ThemeProviderProps<T>) {\n return (\n <EmotionProvider theme={theme}>\n <InternalContext.Provider value={theme}>\n {children}\n </InternalContext.Provider>\n </EmotionProvider>\n );\n}\n","import React from 'react';\nimport { Global as EmotionGlobal } from '@emotion/react';\nimport { useTheme } from './useTheme';\n\n/**\n * CSS snippet and idea from:\n * https://css-tricks.com/revisiting-prefers-reduced-motion-the-reduced-motion-media-query/\n */\nconst reduceMotionStyles = {\n '@media screen and (prefers-reduced-motion: reduce), (update: slow)': {\n '*': {\n animationDuration: '0.001ms !important',\n animationIterationCount: '1 !important',\n transitionDuration: '0.001ms !important',\n },\n },\n};\n\nexport const Global = () => {\n const { css } = useTheme();\n const styles = css({\n html: {\n height: '100%',\n variant: 'root.html',\n },\n body: {\n height: '100%',\n lineHeight: 1.5,\n WebkitFontSmoothing: 'antialiased',\n variant: 'root.body',\n },\n });\n return <EmotionGlobal styles={{ reduceMotionStyles, ...styles }} />;\n};\n","import React from 'react';\nimport { jsx } from '@emotion/react';\nimport { ComponentProps } from '@marigold/types';\nimport { getNormalizedStyles } from '@marigold/system';\n\nconst css = getNormalizedStyles('svg');\n\nexport type SVGProps = {\n size?: number;\n} & ComponentProps<'svg'>;\n\nexport const SVG: React.FC<SVGProps> = ({ size = 24, children, ...props }) =>\n jsx(\n 'svg',\n {\n width: size,\n height: size,\n viewBox: '0 0 24 24',\n fill: 'currentcolor',\n ...props,\n css,\n },\n children\n );\n"],"names":["base","boxSizing","margin","minWidth","a","textDecoration","text","overflowWrap","media","display","maxWidth","button","appearance","font","background","textAlign","input","WebkitAppearance","select","textarea","normalize","p","h1","h2","h3","h4","h5","h6","img","picture","video","canvas","svg","getNormalizedStyles","val","isNil","value","undefined","ensureArray","Array","isArray","ensureVariantDefault","replace","ensureArrayVariant","variant","map","appendVariantState","state","conditional","disabled","states","entries","Object","stateVariants","filter","Boolean","key","isNotEmpty","keys","length","constructor","createThemedStyle","as","__baseCSS","styles","css","theme","transformStyleObject","v","Box","forwardRef","ref","children","height","width","position","top","bottom","right","left","zIndex","px","py","pt","pb","pl","pr","m","mx","my","mt","mb","ml","mr","flexDirection","flexWrap","flexShrink","flexGrow","alignItems","justifyContent","bg","border","borderRadius","boxShadow","opacity","overflow","transition","props","jsx","__defaultTheme","InternalContext","createContext","useTheme","useContext","useCallback","style","ThemeProvider","React","EmotionProvider","Provider","reduceMotionStyles","animationDuration","animationIterationCount","transitionDuration","Global","html","body","lineHeight","WebkitFontSmoothing","EmotionGlobal","SVG","size","viewBox","fill"],"mappings":"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"}
@@ -0,0 +1,136 @@
1
+ import * as CSS from 'csstype';
2
+ import { NestedScaleDict } from '@theme-ui/css';
3
+ /**
4
+ * Value used to define a scale.
5
+ *
6
+ * Can be nested to support a default value.
7
+ *
8
+ * @example
9
+ * Given a theme
10
+ * ```
11
+ * {
12
+ * colors: {
13
+ * primary: { __default: '#00f', light: '#33f' }
14
+ * }
15
+ * }
16
+ * ```
17
+ * `css{{ color: 'primary' }}` resolves to `color: #00f`.
18
+ */
19
+ export declare type ScaleValue<T> = T | T[] | NestedScaleDict<T> | undefined;
20
+ /**
21
+ * Scales are a set of named, pre-defined CSS values which are used
22
+ * to create consitency in sizing across visual elements. They give
23
+ * plain values semantics meaning.
24
+ *
25
+ * Marigold uses a plain object to define scales, where the key should be a
26
+ * descriptive name for the scale (e.g. `small`/`medium`/.. or `body`/`heading`/...),
27
+ * and the value is the CSS value.
28
+ */
29
+ export declare type Scale<T> = {
30
+ [key: string]: ScaleValue<T>;
31
+ };
32
+ /**
33
+ * Predefined {@link Scale} scale which uses size values.
34
+ */
35
+ export declare type SizeScale<T> = {
36
+ xxsmall?: ScaleValue<T>;
37
+ xsmall?: ScaleValue<T>;
38
+ small?: ScaleValue<T>;
39
+ medium?: ScaleValue<T>;
40
+ large?: ScaleValue<T>;
41
+ xlarge?: ScaleValue<T>;
42
+ xxlarge?: ScaleValue<T>;
43
+ };
44
+ /**
45
+ * A {@link SizeScale} that also includes a required `none` value, which is
46
+ * usually used to define the blank value (e.g `0`).
47
+ */
48
+ export declare type ZeroScale<T> = {
49
+ none: ScaleValue<T>;
50
+ } & Scale<T>;
51
+ /**
52
+ * Base theme with typings for available scales properties.
53
+ */
54
+ export interface Theme {
55
+ /**
56
+ * To configure the default breakpoints used in responsive array values,
57
+ * add a breakpoints array to your theme.
58
+ *
59
+ * Each breakpoint should be a string with a CSS length unit included or a
60
+ * string including a CSS media query. String values with a CSS length unit
61
+ * will be used to generate a mobile-first (i.e. min-width) media query.
62
+ *
63
+ * @example
64
+ * ```ts
65
+ * {
66
+ * breakpoints: [
67
+ * '40em', '@media (min-width: 56em) and (orientation: landscape)', '64em',
68
+ * ],
69
+ * }
70
+ * ```
71
+ */
72
+ breakpoints?: Array<string>;
73
+ colors?: Scale<CSS.Property.Color | NestedScaleDict<CSS.Property.Color>>;
74
+ /**
75
+ * Used to define a scale for whitspace values,
76
+ * like `padding`, `margin`, `gap`, etc.
77
+ */
78
+ space?: ZeroScale<CSS.Property.Margin<number | string>>;
79
+ /**
80
+ * Used to define a `font-size` scale.
81
+ */
82
+ fontSizes?: Scale<CSS.Property.FontSize<number>>;
83
+ /**
84
+ * Used to define a `font-family` scale.
85
+ */
86
+ fonts?: Scale<CSS.Property.FontFamily>;
87
+ /**
88
+ * Used to define a `font-weight` scale.
89
+ */
90
+ fontWeights?: Scale<CSS.Property.FontWeight>;
91
+ /**
92
+ * Used to define a `line-height` scale.
93
+ */
94
+ lineHeights?: Scale<CSS.Property.LineHeight<string | 0 | number>>;
95
+ /**
96
+ * Used to define a `letter-spacing` scale.
97
+ */
98
+ letterSpacings?: ZeroScale<CSS.Property.LetterSpacing<string | 0 | number>>;
99
+ /**
100
+ * Used to define a scale for size values,
101
+ * like `height`, `width`, `flexBasis`, etc.
102
+ */
103
+ sizes?: ZeroScale<CSS.Property.Height<{}> | CSS.Property.Width<{}>>;
104
+ /**
105
+ * Used to define different `border` styles.
106
+ */
107
+ borders?: ZeroScale<CSS.Property.Border<{}>>;
108
+ /**
109
+ * Used to define `border-style` styles.
110
+ */
111
+ borderStyles?: Scale<CSS.Property.Border<{}>>;
112
+ /**
113
+ * Used to define `border-width` styles.
114
+ */
115
+ borderWidths?: ZeroScale<CSS.Property.BorderWidth<string | 0 | number>>;
116
+ /**
117
+ * Used to define `border-radius` styles.
118
+ */
119
+ radii?: ZeroScale<CSS.Property.BorderRadius<string | 0 | number>>;
120
+ /**
121
+ * Used to define `Shadow` styles.
122
+ */
123
+ shadows?: ZeroScale<CSS.Property.BoxShadow>;
124
+ /**
125
+ * Used to define a `z-index` scake.
126
+ */
127
+ zIndices?: Scale<CSS.Property.ZIndex>;
128
+ /**
129
+ * Used to define a `opacity` scale.
130
+ */
131
+ opacities?: Scale<CSS.Property.Opacity>;
132
+ /**
133
+ * Used to define a `transition` styles.
134
+ */
135
+ transitions?: ZeroScale<CSS.Property.Transition>;
136
+ }
package/dist/types.d.ts CHANGED
@@ -1,9 +1,8 @@
1
1
  /**
2
2
  * Create type aliases for `theme-ui` so that it doesn't leak too much into our code.
3
3
  */
4
- import { Theme as ThemeUITheme, ThemeUIStyleObject, ThemeUICSSObject, ThemeUICSSProperties, ResponsiveStyleValue as RSV } from '@theme-ui/css';
4
+ import { ThemeUIStyleObject, ThemeUICSSObject, ThemeUICSSProperties, ResponsiveStyleValue as RSV } from '@theme-ui/css';
5
5
  export declare type ResponsiveStyleValue<T> = RSV<T>;
6
6
  export declare type StyleObject = ThemeUIStyleObject;
7
7
  export declare type CSSObject = ThemeUICSSObject;
8
8
  export declare type CSSProperties = ThemeUICSSProperties;
9
- export declare type Theme = ThemeUITheme;
@@ -1,10 +1,16 @@
1
- import React from 'react';
1
+ import { ReactNode } from 'react';
2
+ import { Theme } from './theme';
2
3
  import { StyleObject } from './types';
4
+ /**
5
+ * @internal
6
+ */
7
+ export declare const __defaultTheme: Theme;
3
8
  export declare const useTheme: () => {
4
- theme: any;
9
+ theme: Theme;
5
10
  css: (style: StyleObject) => import("@theme-ui/css").CSSObject;
6
11
  };
7
- export declare type ThemeProviderProps = {
8
- theme: any;
12
+ export declare type ThemeProviderProps<T extends Theme> = {
13
+ theme: T;
14
+ children: ReactNode;
9
15
  };
10
- export declare const ThemeProvider: React.FC<ThemeProviderProps>;
16
+ export declare function ThemeProvider<T extends Theme>({ theme, children, }: ThemeProviderProps<T>): JSX.Element;
@@ -0,0 +1,29 @@
1
+ /**
2
+ * Ensures that the `val` is an array. Will return an empty array if `val` is falsy.
3
+ */
4
+ export declare const ensureArray: <T>(val?: T | T[] | undefined) => T[];
5
+ /**
6
+ * Removes trailing dot from variant, if necessary. This is necessary to support
7
+ * `__default` styles. See https://github.com/system-ui/theme-ui/pull/951
8
+ */
9
+ export declare const ensureVariantDefault: (val: string) => string;
10
+ /**
11
+ * Ensures that the `variant` is an array and supports the `__default` key.
12
+ */
13
+ export declare const ensureArrayVariant: <T extends string>(variant?: T | T[] | undefined) => string[];
14
+ export declare type State = {
15
+ checked?: boolean;
16
+ focus?: boolean;
17
+ hover?: boolean;
18
+ disabled?: boolean;
19
+ error?: boolean;
20
+ };
21
+ /**
22
+ * Appends given `state` to a `variant`.
23
+ */
24
+ export declare const appendVariantState: (variant: string, state: keyof State) => string;
25
+ /**
26
+ * Create a variant array from a `variant` and `state` containing
27
+ * passed states, if they are truthy.
28
+ */
29
+ export declare const conditional: (variant: string, { disabled, ...states }: State) => string[];
package/package.json CHANGED
@@ -1,22 +1,20 @@
1
1
  {
2
2
  "name": "@marigold/system",
3
- "version": "0.1.0",
3
+ "version": "0.3.2",
4
4
  "description": "Marigold System Library",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/system.esm.js",
7
7
  "typings": "dist/index.d.ts",
8
8
  "license": "MIT",
9
9
  "dependencies": {
10
- "@emotion/css": "11.1.3",
11
- "@theme-ui/css": "0.10.1"
10
+ "@emotion/react": "11.7.1",
11
+ "@theme-ui/css": "0.13.1",
12
+ "csstype": "3.0.10"
12
13
  },
13
14
  "peerDependencies": {
14
15
  "react": "^16.x || ^17.0.0",
15
16
  "react-dom": "^16.x || ^17.0.0"
16
17
  },
17
- "devDependencies": {
18
- "csstype": "3.0.8"
19
- },
20
18
  "scripts": {
21
19
  "build": "tsdx build --tsconfig tsconfig.build.json --transpileOnly",
22
20
  "watch": "tsdx watch --tsconfig tsconfig.build.json --transpileOnly"
@@ -0,0 +1,308 @@
1
+ import React from 'react';
2
+ import { render, screen } from '@testing-library/react';
3
+ import { ThemeProvider } from './useTheme';
4
+ import { Box, StyleProps } from './Box';
5
+ import { normalize } from './normalize';
6
+
7
+ const theme = {
8
+ colors: {
9
+ primary: 'black',
10
+ secondary: 'hotpink',
11
+ black: '#000',
12
+ white: '#fff',
13
+ blue: 'cornflowerblue',
14
+ },
15
+ fontSizes: {
16
+ body: 16,
17
+ small: 12,
18
+ large: 24,
19
+ },
20
+ space: {
21
+ none: 0,
22
+ xsmall: 2,
23
+ small: 4,
24
+ medium: 8,
25
+ large: 16,
26
+ },
27
+ sizes: {
28
+ none: 0,
29
+ small: 8,
30
+ medium: 16,
31
+ large: 32,
32
+ },
33
+ borders: { none: 'none', regular: '1px solid black' },
34
+ radii: { none: 0, small: 2, medium: 4 },
35
+ opacities: {
36
+ hidden: 0,
37
+ faded: 0.5,
38
+ visible: 1,
39
+ },
40
+ transitions: { none: 'none', regular: '1s opacity' },
41
+ shadows: {
42
+ none: 'none',
43
+ regular: '3px 3px 5px 6px #ccc',
44
+ inset: 'inset 0 0 10px #000000',
45
+ },
46
+ text: {
47
+ body: {
48
+ fontSize: 'body',
49
+ color: 'primary',
50
+ bg: 'white',
51
+ },
52
+ headline1: {
53
+ fontSize: 'large',
54
+ color: 'secondary',
55
+ },
56
+ whitespace: {
57
+ p: 'medium',
58
+ },
59
+ },
60
+ variant: {
61
+ spacing: {
62
+ m: 'large',
63
+ p: 'large',
64
+ },
65
+ },
66
+ };
67
+
68
+ test('renders a <div> by default', () => {
69
+ render(<Box>Test</Box>);
70
+ const testelem = screen.getByText('Test');
71
+
72
+ expect(testelem instanceof HTMLDivElement).toBeTruthy();
73
+ });
74
+
75
+ test('changes rendered element via "as" prop', () => {
76
+ render(<Box as="p">Test</Box>);
77
+ const testelem = screen.getByText('Test');
78
+
79
+ expect(testelem instanceof HTMLParagraphElement).toBeTruthy();
80
+ });
81
+
82
+ test('supports custom className', () => {
83
+ render(<Box className="my-custom-class">Test</Box>);
84
+ const element = screen.getByText('Test');
85
+
86
+ expect(element.getAttribute('class')).toMatch('my-custom-class');
87
+ });
88
+
89
+ test('passes down HTML attributes', () => {
90
+ render(
91
+ <Box className="my-custom-class" id="element-id" disabled>
92
+ Test
93
+ </Box>
94
+ );
95
+ const element = screen.getByText('Test');
96
+
97
+ expect(element.getAttribute('id')).toEqual('element-id');
98
+ expect(element.getAttribute('disabled')).toMatch('');
99
+ });
100
+
101
+ test('forwards ref', () => {
102
+ const ref = React.createRef<HTMLButtonElement>();
103
+ render(
104
+ <Box as="button" ref={ref}>
105
+ button
106
+ </Box>
107
+ );
108
+
109
+ expect(ref.current instanceof HTMLButtonElement).toBeTruthy();
110
+ });
111
+
112
+ test('apply normalized styles', () => {
113
+ render(<Box>Test</Box>);
114
+ const element = screen.getByText('Test');
115
+ const { base } = normalize;
116
+
117
+ // Smoketest
118
+ expect(element).toHaveStyle(`box-sizing: ${base.boxSizing}`);
119
+ expect(element).toHaveStyle(`margin: ${base.margin}px`);
120
+ expect(element).toHaveStyle(`min-width: ${base.minWidth}`);
121
+ });
122
+
123
+ test('base normalization is always applied', () => {
124
+ render(<Box as="button">Test</Box>);
125
+ const element = screen.getByText('Test');
126
+ const { base } = normalize;
127
+
128
+ expect(element).toHaveStyle(`box-sizing: ${base.boxSizing}`);
129
+ expect(element).toHaveStyle(`margin: ${base.margin}px`);
130
+ expect(element).toHaveStyle(`min-width: ${base.minWidth}`);
131
+ });
132
+
133
+ test('apply normalized styles based on element', () => {
134
+ render(<Box as="h1">Test</Box>);
135
+ const element = screen.getByText('Test');
136
+ const { h1 } = normalize;
137
+
138
+ expect(element).toHaveStyle(`overflow-wrap: ${h1.overflowWrap}`);
139
+ });
140
+
141
+ test('accepts default styling via "__baseCSS" prop', () => {
142
+ render(<Box __baseCSS={{ color: 'hotpink' }}>Test</Box>);
143
+ const element = screen.getByText('Test');
144
+
145
+ expect(element).toHaveStyle('color: hotpink');
146
+ });
147
+
148
+ test('default styling overrides normalization', () => {
149
+ render(
150
+ <ThemeProvider theme={theme}>
151
+ <Box __baseCSS={{ m: 'medium' }}>Test</Box>
152
+ </ThemeProvider>
153
+ );
154
+ const element = screen.getByText('Test');
155
+
156
+ expect(element).toHaveStyle(`margin: ${theme.space.medium}px`);
157
+ });
158
+
159
+ test('variants are applied correctly', () => {
160
+ render(
161
+ <ThemeProvider theme={theme}>
162
+ <Box variant="text.body">Test</Box>
163
+ </ThemeProvider>
164
+ );
165
+ const element = screen.getByText('Test');
166
+
167
+ expect(element).toHaveStyle(`font-size: ${theme.fontSizes.body}px`);
168
+ expect(element).toHaveStyle(`color: ${theme.colors.primary}`);
169
+ });
170
+
171
+ test('accept an array of variants', () => {
172
+ render(
173
+ <ThemeProvider theme={theme}>
174
+ <Box as="p" variant={['text.headline1', 'text.whitespace']}>
175
+ Test
176
+ </Box>
177
+ </ThemeProvider>
178
+ );
179
+ const element = screen.getByText('Test');
180
+
181
+ expect(element).toHaveStyle(`font-size: ${theme.fontSizes.large}px`);
182
+ expect(element).toHaveStyle(`color: ${theme.colors.secondary}`);
183
+ expect(element).toHaveStyle(`padding: ${theme.space.medium}px`);
184
+ });
185
+
186
+ test('variants override normalization and default styles', () => {
187
+ render(
188
+ <ThemeProvider theme={theme}>
189
+ <Box __baseCSS={{ p: 'small' }} variant="variant.spacing">
190
+ Test
191
+ </Box>
192
+ </ThemeProvider>
193
+ );
194
+ const element = screen.getByText('Test');
195
+
196
+ expect(element).toHaveStyle(`margin: ${theme.space.large}px`);
197
+ expect(element).toHaveStyle(`padding: ${theme.space.large}px`);
198
+ });
199
+
200
+ test.each([
201
+ [{ display: 'flex' }, 'display: flex'],
202
+ [{ height: 'small' }, 'height: 8px'],
203
+ [{ width: 'medium' }, 'width: 16px'],
204
+ [{ minWidth: 'small' }, 'min-width: 8px'],
205
+ [{ maxWidth: 'large' }, 'max-width: 32px'],
206
+ [{ position: 'absolute' }, 'position: absolute'],
207
+ [{ top: 'none' }, 'top: 0px'],
208
+ [{ bottom: 'xsmall' }, 'bottom: 2px'],
209
+ [{ right: 'medium' }, 'right: 8px'],
210
+ [{ left: 'small' }, 'left: 4px'],
211
+ [{ zIndex: 1000 }, 'z-index: 1000'],
212
+ [{ p: 'xsmall' }, 'padding: 2px'],
213
+ [{ px: 'xsmall' }, 'padding-left: 2px', 'padding-right: 2px'],
214
+ [{ py: 'small' }, 'padding-top: 4px', 'padding-bottom: 4px'],
215
+ [{ pt: 'xsmall' }, 'padding-top: 2px'],
216
+ [{ pb: 'xsmall' }, 'padding-bottom: 2px'],
217
+ [{ pl: 'xsmall' }, 'padding-left: 2px'],
218
+ [{ pr: 'xsmall' }, 'padding-right: 2px'],
219
+ [{ m: 'xsmall' }, 'margin: 2px'],
220
+ [{ mx: 'xsmall' }, 'margin-left: 2px', 'margin-right: 2px'],
221
+ [{ my: 'small' }, 'margin-top: 4px', 'margin-bottom: 4px'],
222
+ [{ mt: 'xsmall' }, 'margin-top: 2px'],
223
+ [{ mb: 'xsmall' }, 'margin-bottom: 2px'],
224
+ [{ ml: 'xsmall' }, 'margin-left: 2px'],
225
+ [{ mr: 'xsmall' }, 'margin-right: 2px'],
226
+ [{ flexDirection: 'column' }, 'flex-direction: column'],
227
+ [{ flexWrap: 'wrap' }, 'flex-wrap: wrap'],
228
+ [{ flexShrink: 5 }, 'flex-shrink: 5'],
229
+ [{ flexGrow: 1 }, 'flex-grow: 1'],
230
+ [{ alignItems: 'baseline' }, 'align-items: baseline'],
231
+ [{ justifyContent: 'space-between' }, 'justify-content: space-between'],
232
+ [{ bg: 'secondary' }, 'background-color: hotpink'],
233
+ [{ border: 'regular' }, 'border: 1px solid black'],
234
+ [{ borderRadius: 'medium' }, 'border-radius: 4px'],
235
+ [{ boxShadow: 'regular' }, 'box-shadow: 3px 3px 5px 6px #ccc'],
236
+ [{ opacity: 'faded' }, 'opacity: 0.5'],
237
+ [{ overflow: 'hidden' }, 'overflow: hidden'],
238
+ [{ transition: 'regular' }, 'transition: 1s opacity'],
239
+ ])('supports style prop (%o)', (...args) => {
240
+ const props = args.shift() as StyleProps;
241
+
242
+ render(
243
+ <ThemeProvider theme={theme}>
244
+ <Box {...props}>What's in the box!</Box>
245
+ </ThemeProvider>
246
+ );
247
+
248
+ const box = screen.getByText(`What's in the box!`);
249
+ args.forEach((style: any) => {
250
+ expect(box).toHaveStyle(style);
251
+ });
252
+ });
253
+
254
+ test('style props override normalization, defaults and variants', () => {
255
+ render(
256
+ <ThemeProvider theme={theme}>
257
+ <Box
258
+ __baseCSS={{ p: 'small' }}
259
+ variant="text.body"
260
+ bg="blue"
261
+ m="medium"
262
+ p="large"
263
+ >
264
+ Test
265
+ </Box>
266
+ </ThemeProvider>
267
+ );
268
+ const element = screen.getByText('Test');
269
+
270
+ expect(element).toHaveStyle(`margin: ${theme.space.medium}px`); // overrides normalization
271
+ expect(element).toHaveStyle(`padding: ${theme.space.large}px`); // overrides default
272
+ expect(element).toHaveStyle(`background: ${theme.colors.blue}`); // overrides variant
273
+ });
274
+
275
+ test('apply custom styling via css prop', () => {
276
+ render(
277
+ <ThemeProvider theme={theme}>
278
+ <Box css={{ color: 'secondary', padding: '1rem' }}>Test</Box>
279
+ </ThemeProvider>
280
+ );
281
+ const element = screen.getByText('Test');
282
+
283
+ expect(element).toHaveStyle(`padding: 1rem`);
284
+ expect(element).toHaveStyle(`color: ${theme.colors.secondary}`);
285
+ });
286
+
287
+ test('custom styling overrides normalization, defaults, variants and style props', () => {
288
+ render(
289
+ <ThemeProvider theme={theme}>
290
+ <Box
291
+ __baseCSS={{ p: 'small' }}
292
+ variant="text.body"
293
+ bg="black"
294
+ css={{ fontSize: 'large', m: 'small', p: 'large', bg: 'blue' }}
295
+ >
296
+ Test
297
+ </Box>
298
+ </ThemeProvider>
299
+ );
300
+ const element = screen.getByText('Test');
301
+
302
+ expect(element).toHaveStyle(`margin: ${theme.space.small}px`); // overrides normalization
303
+ expect(element).toHaveStyle(`padding: ${theme.space.large}px`); // overrides default
304
+ expect(element).toHaveStyle(`font-size: ${theme.fontSizes.large}px`); // overrides variant
305
+ expect(element).toHaveStyle(`background: ${theme.colors.blue}`); // overrides style prop
306
+
307
+ expect(element).not.toHaveStyle(`color: ${theme.colors.primary}px`); // variant part that is not overriden
308
+ });