Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

@morfeo/web

morfeojs49MIT0.9.3TypeScript support: included

Morfeo logo

design, system, theming, css, css-in-js, css-in-ts, morfeo, morfeo-js

readme

@morfeo/spec

Morfeo logo

@morfeo/web adds to @morfeo/core additional parsers and typings to make it perfect for a web environment.

@morfeo/web is part of the @morfeo eco-system, a set of framework-agnostic tools that help you to create beautiful design systems for your web and mobile apps.


Documentation | API | Contributing | Discord


Table of contents

Installation

Usage

Supported Pseudos

Installation

with npm:

npm install @morfeo/web

or yarn:

yarn add @morfeo/web

Usage

@morfeo/web re-export all the @morfeo/core library, check out its documentation before continue.

In addition to the core library, the web package adds the parsers to handle pseudo classes, pseudo elements and gradients.

pseudos

You can pass to the resolve method any pseudo class with the format '&:{pseudo}', for example:

import { morfeo } from '@morfeo/web';

const style = morfeo.resolve({
  bg: 'primary',
  '&:hover': {
    bg: 'secondary',
  },
});

Will generate the style:

{
  "backgroundColor": "black",
  "&:hover": {
    "backgroundColor": "grey"
  }
}

If you're using @morfeo/web to directly style a component without any other css-in-js library, you can use getStyles :

import { getStyles } from '@morfeo/web';

const element = document.querySelector('#myButton');

const { classes } = getStyles({
  button: {
    bg: 'primary',
    '&:hover': {
      bg: 'secondary',
    },
  },
});

element.classList.add(classes.button);

In this case, @morfeo will generate plain css. To understand more about this topic we suggest you check our documentation about @morfeo/jss, in fact, the function getStyles is re-exported from @morfeo/jss.

Supported Pseudos

For now morfeo support this pseudos:

&:active
&:checked
&:disabled
&:empty
&:enabled
&:first-child
&:first-of-type
&:focus
&:hover
&:in-range
&:invalid
&:last-child
&:last-of-type
&:link
&:only-of-type
&:only-child
&:optional
&:out-of-range
&:read-only
&:read-write
&:required
&:root
&:target
&:valid
&:visited
&::after
&::before

as specified here yuo can always add more parser to extends morfeo, or simply add more pseudos in this list by editing this file and open a pull request.

gradients

You can specify inside the theme a set of gradients to use inside your application by using the gradients theme slice:

const myTheme = {
  ...restOfTheTheme,
  gradients: {
    ...restOfTheTheme.gradients,
    primary: {
      start: 0,
      angle: 90,
      end: 100,
      colors: ['primary', 'secondary'],
      kind: 'linear',
    },
  },
};

An example of usage is:

const buttonStyle = button.resolve({ gradient: 'primary' });
const textStyle = button.resolve({ textGradient: 'primary' });

with the results:

gradient-Button.png

gradient-Text.png

check out @morfeo/spec for the complete specification of the type GradientConfig used inside the gradients theme slice.

changelog

Change Log

All notable changes to this project will be documented in this file. See Conventional Commits for commit guidelines.

0.9.0 (2023-04-16)

Bug Fixes

  • applied review suggestion (4743e74)
  • colors schemas typing (09679b5)
  • colors schemas typing (08142ba)
  • deploy web-extension pipeline (ee1d17a)
  • deploy web-extension pipeline (e06ebc8)
  • deps: update babel monorepo (e131832)
  • deps: update babel monorepo to v7.19.0 (ae4029f)
  • deps: update babel monorepo to v7.19.1 (971ba74)
  • deps: update dependency @babel/core to v7.18.13 (418b75b)
  • deps: update dependency @babel/core to v7.18.5 (7088ab6)
  • deps: update dependency @babel/core to v7.19.6 (931d7d2)
  • deps: update dependency @babel/core to v7.20.12 (a572cc2)
  • deps: update dependency @babel/core to v7.20.5 (da8d92b)
  • deps: update dependency @svgr/webpack to v6.3.0 (4ed347a)
  • deps: update dependency @svgr/webpack to v6.3.1 (74bfb9c)
  • deps: update dependency @svgr/webpack to v6.4.0 (07fa5ce)
  • deps: update dependency @svgr/webpack to v6.5.0 (0c4fd93)
  • deps: update dependency @svgr/webpack to v6.5.1 (3225c49)
  • deps: update dependency @testing-library/jest-dom to v5.16.5 (d2af729)
  • deps: update dependency @testing-library/react to v13.4.0 (55a1dc1)
  • deps: update dependency @testing-library/react to v14 (#671) (3606151)
  • deps: update dependency @testing-library/user-event to v14.2.1 (0004444)
  • deps: update dependency @testing-library/user-event to v14.2.3 (222240d)
  • deps: update dependency @testing-library/user-event to v14.2.5 (7601640)
  • deps: update dependency @testing-library/user-event to v14.2.6 (58963a4)
  • deps: update dependency @testing-library/user-event to v14.3.0 (9597afa)
  • deps: update dependency @testing-library/user-event to v14.4.1 (ff6c138)
  • deps: update dependency @testing-library/user-event to v14.4.2 (174886e)
  • deps: update dependency @testing-library/user-event to v14.4.3 (6aa77a6)
  • deps: update dependency @types/jest to v27.5.2 (6b852f1)
  • deps: update dependency @types/jest to v28 (b42e00d)
  • deps: update dependency @types/jest to v28.1.1 (ecae789)
  • deps: update dependency @types/jest to v28.1.2 (b111a59)
  • deps: update dependency @types/jest to v28.1.3 (716dca9)
  • deps: update dependency @types/jest to v28.1.4 (24a1985)
  • deps: update dependency @types/jest to v28.1.5 (29eb17d)
  • deps: update dependency @types/jest to v28.1.6 (057d78a)
  • deps: update dependency @types/jest to v28.1.7 (2867de7)
  • deps: update dependency @types/jest to v28.1.8 (54a81a1)
  • deps: update dependency @types/jest to v29 (eb72138)
  • deps: update dependency @types/jest to v29.0.1 (62ba67c)
  • deps: update dependency @types/jest to v29.0.3 (011a4c5)
  • deps: update dependency @types/jest to v29.1.2 (e0cdb94)
  • deps: update dependency @types/jest to v29.2.3 (4060504)
  • deps: update dependency @types/jest to v29.2.4 (b636908)
  • deps: update dependency @types/jest to v29.2.5 (bb98e94)
  • deps: update dependency @types/jest to v29.2.6 (2df8554)
  • deps: update dependency @types/jest to v29.4.0 (3f4538c)
  • deps: update dependency @types/node to v16.11.37 (74d3ecf)
  • deps: update dependency @types/node to v16.11.38 (8079d43)
  • deps: update dependency @types/node to v16.11.39 (1a22d66)
  • deps: update dependency @types/node to v16.11.41 (f2ee9d3)
  • deps: update dependency @types/node to v16.11.42 (5b377af)
  • deps: update dependency @types/node to v16.11.43 (ab6f7bf)
  • deps: update dependency @types/node to v16.11.44 (9f7bcf2)
  • deps: update dependency @types/node to v16.11.45 (b16e589)
  • deps: update dependency @types/node to v16.11.46 (37f6998)
  • deps: update dependency @types/node to v16.11.47 (43c038d)
  • deps: update dependency @types/node to v16.11.48 (5b6b75a)
  • deps: update dependency @types/node to v16.11.49 (bf604ae)
  • deps: update dependency @types/node to v16.11.50 (3a34526)
  • deps: update dependency @types/node to v16.11.54 (c2f0e22)
  • deps: update dependency @types/node to v16.11.56 (64ac4ad)
  • deps: update dependency @types/node to v16.11.58 (bf71c3f)
  • deps: update dependency @types/node to v16.11.59 (ff45145)
  • deps: update dependency @types/node to v16.11.60 (b1aadd6)
  • deps: update dependency @types/node to v16.11.62 (a497a0d)
  • deps: update dependency @types/node to v16.11.64 (da1071b)
  • deps: update dependency @types/node to v16.11.65 (07c07ad)
  • deps: update dependency @types/node to v16.11.66 (03e7d24)
  • deps: update dependency @types/node to v16.11.68 (45cb751)
  • deps: update dependency @types/node to v16.18.0 (2f1ae81)
  • deps: update dependency @types/node to v18 (5f069c1)
  • deps: update dependency @types/node to v18.11.10 (d41348d)
  • deps: update dependency @types/node to v18.11.11 (0c845d4)
  • deps: update dependency @types/node to v18.11.13 (447d3cc)
  • deps: update dependency @types/node to v18.11.15 (07f44f4)
  • deps: update dependency @types/node to v18.11.17 (3fcbfc9)
  • deps: update dependency @types/node to v18.11.18 (fe8fdf5)
  • deps: update dependency @types/node to v18.11.19 (#656) (260246b)
  • deps: update dependency @types/node to v18.11.9 (1fbf052)
  • deps: update dependency @types/node to v18.13.0 (#658) (6501c70)
  • deps: update dependency @types/node to v18.14.0 (#672) (a33aa9f)
  • deps: update dependency @types/node to v18.14.6 (#676) (8da58aa)
  • deps: update dependency @types/node to v18.15.0 (#686) (a477f20)
  • deps: update dependency @types/react to v18.0.10 (b277896)
  • deps: update dependency @types/react to v18.0.11 (aea617d)
  • deps: update dependency @types/react to v18.0.12 (2795806)
  • deps: update dependency @types/react to v18.0.14 (117c829)
  • deps: update dependency @types/react to v18.0.15 (4921bb2)
  • deps: update dependency @types/react to v18.0.16 (5f83ba9)
  • deps: update dependency @types/react to v18.0.17 (5ec5fd5)
  • deps: update dependency @types/react to v18.0.18 (1ca7e35)
  • deps: update dependency @types/react to v18.0.19 (a54044b)
  • deps: update dependency @types/react to v18.0.20 (5b8ab35)
  • deps: update dependency @types/react to v18.0.21 (a700575)
  • deps: update dependency @types/react to v18.0.23 (0f8ea94)
  • deps: update dependency @types/react to v18.0.24 (730d7ec)
  • deps: update dependency @types/react to v18.0.25 (25deeca)
  • deps: update dependency @types/react to v18.0.26 (a9ccd8a)
  • deps: update dependency @types/react to v18.0.27 (2b9cdc1)
  • deps: update dependency @types/react to v18.0.28 (#663) (a22af07)
  • deps: update dependency @types/react-dom to v18.0.10 (c1f82fd)
  • deps: update dependency @types/react-dom to v18.0.11 (#678) (7ac515c)
  • deps: update dependency @types/react-dom to v18.0.6 (af341ac)
  • deps: update dependency @types/react-dom to v18.0.7 (d17d6c8)
  • deps: update dependency @types/react-dom to v18.0.8 (34a7e79)
  • deps: update dependency @types/react-dom to v18.0.9 (327869f)
  • deps: update dependency @types/react-native to ^0.68.0 (d36ace7)
  • deps: update dependency @types/react-native to ^0.69.0 (b5a26ff)
  • deps: update dependency @types/react-native to ^0.70.0 (5f0351d)
  • deps: update dependency camelcase to v7 (56effde)
  • deps: update dependency camelcase to v7.0.1 (38b7ed6)
  • deps: update dependency clsx to v1.2.0 (df5f107)
  • deps: update dependency clsx to v1.2.1 (c030e49)
  • deps: update dependency csstype to v3.1.1 (7581d24)
  • deps: update dependency dotenv to v16.0.2 (7e126ff)
  • deps: update dependency dotenv to v16.0.3 (0a639e7)
  • deps: update dependency dotenv-expand to v10 (1538634)
  • deps: update dependency dotenv-expand to v9 (559bbb7)
  • deps: update dependency eslint to v8.17.0 (e18ceab)
  • deps: update dependency eslint to v8.18.0 (9fa1b90)
  • deps: update dependency eslint to v8.19.0 (434516a)
  • deps: update dependency eslint to v8.20.0 (e588ca3)
  • deps: update dependency eslint to v8.21.0 (171845a)
  • deps: update dependency eslint to v8.22.0 (b8433f7)
  • deps: update dependency eslint to v8.23.0 (9f7aa67)
  • deps: update dependency eslint to v8.23.1 (ad9fa1c)
  • deps: update dependency eslint to v8.24.0 (3c4f4c1)
  • deps: update dependency eslint to v8.25.0 (5fee4d1)
  • deps: update dependency eslint to v8.26.0 (30de25a)
  • deps: update dependency eslint to v8.27.0 (44667ba)
  • deps: update dependency eslint to v8.28.0 (99fbbb8)
  • deps: update dependency eslint to v8.29.0 (61211ac)
  • deps: update dependency eslint to v8.30.0 (64fe1ad)
  • deps: update dependency eslint to v8.31.0 (e97b369)
  • deps: update dependency eslint to v8.32.0 (0e83a93)
  • deps: update dependency eslint to v8.33.0 (10fc736)
  • deps: update dependency eslint to v8.34.0 (#662) (fa3d12b)
  • deps: update dependency eslint to v8.36.0 (#679) (561adba)
  • deps: update dependency eslint-plugin-import to v2.27.4 (1df40ca)
  • deps: update dependency eslint-plugin-import to v2.27.5 (66f7205)
  • deps: update dependency eslint-plugin-jest to v26.5.1 (0b2d535)
  • deps: update dependency eslint-plugin-jest to v26.5.3 (cf26040)
  • deps: update dependency eslint-plugin-jest to v26.6.0 (dce43df)
  • deps: update dependency eslint-plugin-jest to v26.7.0 (90ea5fe)
  • deps: update dependency eslint-plugin-jest to v26.8.0 (37f18ef)
  • deps: update dependency eslint-plugin-jest to v26.8.1 (e113048)
  • deps: update dependency eslint-plugin-jest to v26.8.2 (7ced718)
  • deps: update dependency eslint-plugin-jest to v26.8.3 (d4321c0)
  • deps: update dependency eslint-plugin-jest to v26.8.7 (f769999)
  • deps: update dependency eslint-plugin-jest to v27 (ee5fd2a)
  • deps: update dependency eslint-plugin-jest to v27.0.4 (e8ce0a0)
  • deps: update dependency eslint-plugin-jest to v27.1.0 (8e433f0)
  • deps: update dependency eslint-plugin-jest to v27.1.1 (be2e585)
  • deps: update dependency eslint-plugin-jest to v27.1.2 (76a2cac)
  • deps: update dependency eslint-plugin-jest to v27.1.3 (529ad73)
  • deps: update dependency eslint-plugin-jest to v27.1.5 (fd5062c)
  • deps: update dependency eslint-plugin-jest to v27.1.6 (9c46d17)
  • deps: update dependency eslint-plugin-jest to v27.1.7 (53cbb5e)
  • deps: update dependency eslint-plugin-jest to v27.2.1 (429444c)
  • deps: update dependency eslint-plugin-jsx-a11y to v6.6.0 (2082a01)
  • deps: update dependency eslint-plugin-jsx-a11y to v6.6.1 (345696d)
  • deps: update dependency eslint-plugin-jsx-a11y to v6.7.1 (751314a)
  • deps: update dependency eslint-plugin-react to v7.30.1 (87e568c)
  • deps: update dependency eslint-plugin-react to v7.31.0 (5ee8ccc)
  • deps: update dependency eslint-plugin-react to v7.31.10 (8cfca09)
  • deps: update dependency eslint-plugin-react to v7.31.11 (5061b0f)
  • deps: update dependency eslint-plugin-react to v7.31.4 (168d111)
  • deps: update dependency eslint-plugin-react to v7.31.7 (147373e)
  • deps: update dependency eslint-plugin-react to v7.31.8 (d101a98)
  • deps: update dependency eslint-plugin-react to v7.31.9 (da77d40)
  • deps: update dependency eslint-plugin-react to v7.32.0 (d204a71)
  • deps: update dependency eslint-plugin-react to v7.32.1 (13f9a27)
  • deps: update dependency eslint-plugin-react to v7.32.2 (caa535d)
  • deps: update dependency eslint-plugin-testing-library to v5.10.0 (c03e4b1)
  • deps: update dependency eslint-plugin-testing-library to v5.10.1 (#661) (af255be)
  • deps: update dependency eslint-plugin-testing-library to v5.10.2 (#670) (3810bd6)
  • deps: update dependency eslint-plugin-testing-library to v5.6.0 (b08bd63)
  • deps: update dependency eslint-plugin-testing-library to v5.6.3 (1dbe040)
  • deps: update dependency eslint-plugin-testing-library to v5.6.4 (7602a96)
  • deps: update dependency eslint-plugin-testing-library to v5.7.0 (e3b6050)
  • deps: update dependency eslint-plugin-testing-library to v5.7.1 (f3777b0)
  • deps: update dependency eslint-plugin-testing-library to v5.7.3 (da2df45)
  • deps: update dependency eslint-plugin-testing-library to v5.9.1 (74c72e3)
  • deps: update dependency eslint-webpack-plugin to v3.2.0 (dbcdb1b)
  • deps: update dependency fs-extra to v11 (8b91caa)
  • deps: update dependency jest-watch-typeahead to v2 (64b0391)
  • deps: update dependency jest-watch-typeahead to v2.1.1 (3f80213)
  • deps: update dependency jest-watch-typeahead to v2.2.0 (1a6508c)
  • deps: update dependency jest-watch-typeahead to v2.2.1 (ded8ae3)
  • deps: update dependency jest-watch-typeahead to v2.2.2 (a1154bb)
  • deps: update dependency prismjs to v1.29.0 (df754e0)
  • deps: update dependency react-native to v0.69.1 (7b7464f)
  • deps: update dependency react-native to v0.69.2 (d0de595)
  • deps: update dependency react-native to v0.69.3 (396ac66)
  • deps: update dependency react-native to v0.69.4 (dd887c4)
  • deps: update dependency react-native to v0.69.5 (b3cacdd)
  • deps: update dependency react-native to v0.70.1 (e77d23f)
  • deps: update dependency react-native to v0.70.2 (af3d44b)
  • deps: update dependency react-native to v0.70.3 (bec0e9e)
  • deps: update dependency react-native to v0.70.4 (9c94187)
  • deps: update dependency react-native to v0.70.5 (60f9880)
  • deps: update dependency react-native to v0.70.6 (749f757)
  • deps: update dependency react-native to v0.71.1 (29d0b80)
  • deps: update dependency react-native to v0.71.2 (#653) (cf8c29e)
  • deps: update dependency react-native to v0.71.3 (#667) (ddbd0f0)
  • deps: update dependency react-transition-group to v4.4.4 (1cd50e9)
  • deps: update dependency react-transition-group to v4.4.5 (24e21b9)
  • deps: update dependency resolve to v1.22.1 (d09260e)
  • deps: update dependency sass-loader to v13.0.1 (c15fb8e)
  • deps: update dependency sass-loader to v13.0.2 (dc12fb6)
  • deps: update dependency sass-loader to v13.1.0 (1c33bf2)
  • deps: update dependency sass-loader to v13.2.0 (58e83e9)
  • deps: update dependency semver to v7.3.8 (62d4a8f)
  • deps: update dependency typescript to v4.7.2 (1eb8384)
  • deps: update dependency typescript to v4.7.3 (ff6e98c)
  • deps: update dependency typescript to v4.7.4 (ca81d64)
  • deps: update dependency typescript to v4.9.5 (#649) (9143596)
  • deps: update dependency web-vitals to v3 (8b05003)
  • deps: update dependency web-vitals to v3.0.1 (0e266f5)
  • deps: update dependency web-vitals to v3.0.2 (a28a48f)
  • deps: update dependency web-vitals to v3.0.3 (6df6642)
  • deps: update dependency web-vitals to v3.0.4 (01ce275)
  • deps: update dependency web-vitals to v3.1.0 (482f226)
  • deps: update dependency web-vitals to v3.1.1 (cc1d9ea)
  • deps: update dependency webextension-polyfill to v0.10.0 (98dd3c4)
  • deps: update dependency webpack-dev-server to v4.10.0 (0542f55)
  • deps: update dependency webpack-dev-server to v4.10.1 (8c4df1d)
  • deps: update dependency webpack-dev-server to v4.11.0 (839bab6)
  • deps: update dependency webpack-dev-server to v4.11.1 (57fcac9)
  • deps: update dependency webpack-dev-server to v4.9.1 (fa83df7)
  • deps: update dependency webpack-dev-server to v4.9.2 (aab06ff)
  • deps: update dependency webpack-dev-server to v4.9.3 (137c3b4)
  • deps: update dependency workbox-webpack-plugin to v6.5.4 (c80b312)
  • deps: update docusaurus monorepo to v2.0.0-beta.22 (8b4de10)
  • deps: update docusaurus monorepo to v2.0.0-rc.1 (b2f1384)
  • deps: update docusaurus monorepo to v2.0.1 (771eab9)
  • deps: update docusaurus monorepo to v2.1.0 (e4fcc5c)
  • deps: update docusaurus monorepo to v2.2.0 (273351b)
  • deps: update docusaurus monorepo to v2.3.1 (#654) (3ec1d43)
  • deps: update jest monorepo (3c325ea)
  • deps: update jest monorepo (b51b1f8)
  • deps: update jest monorepo (dd00667)
  • deps: update jest monorepo (e9b6f0f)
  • deps: update jest monorepo to v28.1.1 (97ab786)
  • deps: update jest monorepo to v28.1.2 (07d23d4)
  • deps: update jest monorepo to v28.1.3 (a2549c7)
  • deps: update jest monorepo to v29 (77100b8)
  • deps: update jest monorepo to v29.0.2 (9163a89)
  • deps: update jest monorepo to v29.0.3 (2f1e237)
  • deps: update jest monorepo to v29.2.0 (c70eba5)
  • deps: update jest monorepo to v29.2.2 (a81c881)
  • deps: update jest monorepo to v29.4.0 (bd586ca)
  • deps: update jest monorepo to v29.4.1 (74b2e54)
  • deps: update jest monorepo to v29.4.2 (#659) (9c61fd4)
  • deps: update jest monorepo to v29.4.3 (#669) (288bad6)
  • deps: update react monorepo (1a46688)
  • deps: update typescript-eslint monorepo to v5.27.1 (3de52ec)
  • deps: update typescript-eslint monorepo to v5.28.0 (e8b1e16)
  • deps: update typescript-eslint monorepo to v5.29.0 (f24c338)
  • deps: update typescript-eslint monorepo to v5.30.0 (7522381)
  • deps: update typescript-eslint monorepo to v5.30.3 (3c0a114)
  • deps: update typescript-eslint monorepo to v5.30.4 (bf4f089)
  • deps: update typescript-eslint monorepo to v5.30.5 (078f79d)
  • deps: update typescript-eslint monorepo to v5.30.6 (e28dbaa)
  • deps: update typescript-eslint monorepo to v5.30.7 (7975ac5)
  • deps: update typescript-eslint monorepo to v5.31.0 (5df2958)
  • deps: update typescript-eslint monorepo to v5.32.0 (c32a70f)
  • deps: update typescript-eslint monorepo to v5.33.0 (3742309)
  • deps: update typescript-eslint monorepo to v5.33.1 (cd042ea)
  • deps: update typescript-eslint monorepo to v5.34.0 (256f5f8)
  • deps: update typescript-eslint monorepo to v5.35.1 (8e4cbe3)
  • deps: update typescript-eslint monorepo to v5.36.2 (8a6a2a2)
  • deps: update typescript-eslint monorepo to v5.37.0 (567b226)
  • deps: update typescript-eslint monorepo to v5.38.0 (626f54e)
  • deps: update typescript-eslint monorepo to v5.38.1 (c887365)
  • deps: update typescript-eslint monorepo to v5.39.0 (00276f8)
  • deps: update typescript-eslint monorepo to v5.40.0 (c57234b)
  • deps: update typescript-eslint monorepo to v5.40.1 (71ee56b)
  • deps: update typescript-eslint monorepo to v5.41.0 (97ddbb8)
  • deps: update typescript-eslint monorepo to v5.42.0 (9eebd69)
  • deps: update typescript-eslint monorepo to v5.43.0 (a354a0d)
  • deps: update typescript-eslint monorepo to v5.44.0 (b0fa85d)
  • deps: update typescript-eslint monorepo to v5.45.0 (4e91f91)
  • deps: update typescript-eslint monorepo to v5.45.1 (4c62404)
  • deps: update typescript-eslint monorepo to v5.46.0 (fc1a1d4)
  • deps: update typescript-eslint monorepo to v5.46.1 (77c1c53)
  • deps: update typescript-eslint monorepo to v5.47.0 (63cd6a6)
  • deps: update typescript-eslint monorepo to v5.47.1 (83bf171)
  • deps: update typescript-eslint monorepo to v5.48.0 (a33fbee)
  • deps: update typescript-eslint monorepo to v5.48.1 (41f92fc)
  • deps: update typescript-eslint monorepo to v5.48.2 (11c07b4)
  • deps: update typescript-eslint monorepo to v5.49.0 (9e50628)
  • deps: update typescript-eslint monorepo to v5.50.0 (6572fda)
  • deps: update typescript-eslint monorepo to v5.51.0 (#657) (5227135)
  • deps: update typescript-eslint monorepo to v5.52.0 (#666) (5de3665)
  • deps: update typescript-eslint monorepo to v5.53.0 (#674) (e5badda)
  • docs: removed unused import (1b60485)
  • fixed test theme slice (14e46fc)
  • linter (b8bce8c)
  • linting (da733f3)
  • linting (30b00c5)
  • missing dependency added (2ab8682)
  • next: fixed issue for multi pages next applications (#702) (9101675)
  • removed useless spread og object (02504ab)
  • resolve MR comments (979bff1)
  • restore fallback on getElementName (1f1ce8d)
  • typo in createUseClasses test (c2ccb30)
  • typo in documentation (25471b6)
  • typo in loader test (09b9ac4)
  • typo on docs (8ecb642)
  • value from theme casted to string (5866700)
  • web-extension (08a3d95)

Features

0.8.0 (2023-01-28)

Bug Fixes

  • applied review suggestion (4743e74)
  • colors schemas typing (09679b5)
  • colors schemas typing (08142ba)
  • deploy web-extension pipeline (ee1d17a)
  • deploy web-extension pipeline (e06ebc8)
  • deps: update babel monorepo (e131832)
  • deps: update babel monorepo to v7.19.0 (ae4029f)
  • deps: update babel monorepo to v7.19.1 (971ba74)
  • deps: update dependency @babel/core to v7.18.13 (418b75b)
  • deps: update dependency @babel/core to v7.18.5 (7088ab6)
  • deps: update dependency @babel/core to v7.19.6 (931d7d2)
  • deps: update dependency @babel/core to v7.20.12 (a572cc2)
  • deps: update dependency @babel/core to v7.20.5 (da8d92b)
  • deps: update dependency @svgr/webpack to v6.3.0 (4ed347a)
  • deps: update dependency @svgr/webpack to v6.3.1 (74bfb9c)
  • deps: update dependency @svgr/webpack to v6.4.0 (07fa5ce)
  • deps: update dependency @svgr/webpack to v6.5.0 (0c4fd93)
  • deps: update dependency @svgr/webpack to v6.5.1 (3225c49)
  • deps: update dependency @testing-library/jest-dom to v5.16.5 (d2af729)
  • deps: update dependency @testing-library/react to v13.4.0 (55a1dc1)
  • deps: update dependency @testing-library/user-event to v14.2.1 (0004444)
  • deps: update dependency @testing-library/user-event to v14.2.3 (222240d)
  • deps: update dependency @testing-library/user-event to v14.2.5 (7601640)
  • deps: update dependency @testing-library/user-event to v14.2.6 (58963a4)
  • deps: update dependency @testing-library/user-event to v14.3.0 (9597afa)
  • deps: update dependency @testing-library/user-event to v14.4.1 (ff6c138)
  • deps: update dependency @testing-library/user-event to v14.4.2 (174886e)
  • deps: update dependency @testing-library/user-event to v14.4.3 (6aa77a6)
  • deps: update dependency @types/jest to v27.5.2 (6b852f1)
  • deps: update dependency @types/jest to v28 (b42e00d)
  • deps: update dependency @types/jest to v28.1.1 (ecae789)
  • deps: update dependency @types/jest to v28.1.2 (b111a59)
  • deps: update dependency @types/jest to v28.1.3 (716dca9)
  • deps: update dependency @types/jest to v28.1.4 (24a1985)
  • deps: update dependency @types/jest to v28.1.5 (29eb17d)
  • deps: update dependency @types/jest to v28.1.6 (057d78a)
  • deps: update dependency @types/jest to v28.1.7 (2867de7)
  • deps: update dependency @types/jest to v28.1.8 (54a81a1)
  • deps: update dependency @types/jest to v29 (eb72138)
  • deps: update dependency @types/jest to v29.0.1 (62ba67c)
  • deps: update dependency @types/jest to v29.0.3 (011a4c5)
  • deps: update dependency @types/jest to v29.1.2 (e0cdb94)
  • deps: update dependency @types/jest to v29.2.3 (4060504)
  • deps: update dependency @types/jest to v29.2.4 (b636908)
  • deps: update dependency @types/jest to v29.2.5 (bb98e94)
  • deps: update dependency @types/jest to v29.2.6 (2df8554)
  • deps: update dependency @types/jest to v29.4.0 (3f4538c)
  • deps: update dependency @types/node to v16.11.37 (74d3ecf)
  • deps: update dependency @types/node to v16.11.38 (8079d43)
  • deps: update dependency @types/node to v16.11.39 (1a22d66)
  • deps: update dependency @types/node to v16.11.41 (f2ee9d3)
  • deps: update dependency @types/node to v16.11.42 (5b377af)
  • deps: update dependency @types/node to v16.11.43 (ab6f7bf)
  • deps: update dependency @types/node to v16.11.44 (9f7bcf2)
  • deps: update dependency @types/node to v16.11.45 (b16e589)
  • deps: update dependency @types/node to v16.11.46 (37f6998)
  • deps: update dependency @types/node to v16.11.47 (43c038d)
  • deps: update dependency @types/node to v16.11.48 (5b6b75a)
  • deps: update dependency @types/node to v16.11.49 (bf604ae)
  • deps: update dependency @types/node to v16.11.50 (3a34526)
  • deps: update dependency @types/node to v16.11.54 (c2f0e22)
  • deps: update dependency @types/node to v16.11.56 (64ac4ad)
  • deps: update dependency @types/node to v16.11.58 (bf71c3f)
  • deps: update dependency @types/node to v16.11.59 (ff45145)
  • deps: update dependency @types/node to v16.11.60 (b1aadd6)
  • deps: update dependency @types/node to v16.11.62 (a497a0d)
  • deps: update dependency @types/node to v16.11.64 (da1071b)
  • deps: update dependency @types/node to v16.11.65 (07c07ad)
  • deps: update dependency @types/node to v16.11.66 (03e7d24)
  • deps: update dependency @types/node to v16.11.68 (45cb751)
  • deps: update dependency @types/node to v16.18.0 (2f1ae81)
  • deps: update dependency @types/node to v18 (5f069c1)
  • deps: update dependency @types/node to v18.11.10 (d41348d)
  • deps: update dependency @types/node to v18.11.11 (0c845d4)
  • deps: update dependency @types/node to v18.11.13 (447d3cc)
  • deps: update dependency @types/node to v18.11.15 (07f44f4)
  • deps: update dependency @types/node to v18.11.17 (3fcbfc9)
  • deps: update dependency @types/node to v18.11.18 (fe8fdf5)
  • deps: update dependency @types/node to v18.11.9 (1fbf052)
  • deps: update dependency @types/react to v18.0.10 (b277896)
  • deps: update dependency @types/react to v18.0.11 (aea617d)
  • deps: update dependency @types/react to v18.0.12 (2795806)
  • deps: update dependency @types/react to v18.0.14 (117c829)
  • deps: update dependency @types/react to v18.0.15 (4921bb2)
  • deps: update dependency @types/react to v18.0.16 (5f83ba9)
  • deps: update dependency @types/react to v18.0.17 (5ec5fd5)
  • deps: update dependency @types/react to v18.0.18 (1ca7e35)
  • deps: update dependency @types/react to v18.0.19 (a54044b)
  • deps: update dependency @types/react to v18.0.20 (5b8ab35)
  • deps: update dependency @types/react to v18.0.21 (a700575)
  • deps: update dependency @types/react to v18.0.23 (0f8ea94)
  • deps: update dependency @types/react to v18.0.24 (730d7ec)
  • deps: update dependency @types/react to v18.0.25 (25deeca)
  • deps: update dependency @types/react to v18.0.26 (a9ccd8a)
  • deps: update dependency @types/react to v18.0.27 (2b9cdc1)
  • deps: update dependency @types/react-dom to v18.0.10 (c1f82fd)
  • deps: update dependency @types/react-dom to v18.0.6 (af341ac)
  • deps: update dependency @types/react-dom to v18.0.7 (d17d6c8)
  • deps: update dependency @types/react-dom to v18.0.8 (34a7e79)
  • deps: update dependency @types/react-dom to v18.0.9 (327869f)
  • deps: update dependency @types/react-native to ^0.68.0 (d36ace7)
  • deps: update dependency @types/react-native to ^0.69.0 (b5a26ff)
  • deps: update dependency @types/react-native to ^0.70.0 (5f0351d)
  • deps: update dependency camelcase to v7 (56effde)
  • deps: update dependency camelcase to v7.0.1 (38b7ed6)
  • deps: update dependency clsx to v1.2.0 (df5f107)
  • deps: update dependency clsx to v1.2.1 (c030e49)
  • deps: update dependency csstype to v3.1.1 (7581d24)
  • deps: update dependency dotenv to v16.0.2 (7e126ff)
  • deps: update dependency dotenv to v16.0.3 (0a639e7)
  • deps: update dependency dotenv-expand to v10 (1538634)
  • deps: update dependency dotenv-expand to v9 (559bbb7)
  • deps: update dependency eslint to v8.17.0 (e18ceab)
  • deps: update dependency eslint to v8.18.0 (9fa1b90)
  • deps: update dependency eslint to v8.19.0 (434516a)
  • deps: update dependency eslint to v8.20.0 (e588ca3)
  • deps: update dependency eslint to v8.21.0 (171845a)
  • deps: update dependency eslint to v8.22.0 (b8433f7)
  • deps: update dependency eslint to v8.23.0 (9f7aa67)
  • deps: update dependency eslint to v8.23.1 (ad9fa1c)
  • deps: update dependency eslint to v8.24.0 (3c4f4c1)
  • deps: update dependency eslint to v8.25.0 (5fee4d1)
  • deps: update dependency eslint to v8.26.0 (30de25a)
  • deps: update dependency eslint to v8.27.0 (44667ba)
  • deps: update dependency eslint to v8.28.0 (99fbbb8)
  • deps: update dependency eslint to v8.29.0 (61211ac)
  • deps: update dependency eslint to v8.30.0 (64fe1ad)
  • deps: update dependency eslint to v8.31.0 (e97b369)
  • deps: update dependency eslint to v8.32.0 (0e83a93)
  • deps: update dependency eslint-plugin-import to v2.27.4 (1df40ca)
  • deps: update dependency eslint-plugin-import to v2.27.5 (66f7205)
  • deps: update dependency eslint-plugin-jest to v26.5.1 (0b2d535)
  • deps: update dependency eslint-plugin-jest to v26.5.3 (cf26040)
  • deps: update dependency eslint-plugin-jest to v26.6.0 (dce43df)
  • deps: update dependency eslint-plugin-jest to v26.7.0 (90ea5fe)
  • deps: update dependency eslint-plugin-jest to v26.8.0 (37f18ef)
  • deps: update dependency eslint-plugin-jest to v26.8.1 (e113048)
  • deps: update dependency eslint-plugin-jest to v26.8.2 (7ced718)
  • deps: update dependency eslint-plugin-jest to v26.8.3 (d4321c0)
  • deps: update dependency eslint-plugin-jest to v26.8.7 (f769999)
  • deps: update dependency eslint-plugin-jest to v27 (ee5fd2a)
  • deps: update dependency eslint-plugin-jest to v27.0.4 (e8ce0a0)
  • deps: update dependency eslint-plugin-jest to v27.1.0 (8e433f0)
  • deps: update dependency eslint-plugin-jest to v27.1.1 (be2e585)
  • deps: update dependency eslint-plugin-jest to v27.1.2 (76a2cac)
  • deps: update dependency eslint-plugin-jest to v27.1.3 (529ad73)
  • deps: update dependency eslint-plugin-jest to v27.1.5 (fd5062c)
  • deps: update dependency eslint-plugin-jest to v27.1.6 (9c46d17)
  • deps: update dependency eslint-plugin-jest to v27.1.7 (53cbb5e)
  • deps: update dependency eslint-plugin-jest to v27.2.1 (429444c)
  • deps: update dependency eslint-plugin-jsx-a11y to v6.6.0 (2082a01)
  • deps: update dependency eslint-plugin-jsx-a11y to v6.6.1 (345696d)
  • deps: update dependency eslint-plugin-jsx-a11y to v6.7.1 (751314a)
  • deps: update dependency eslint-plugin-react to v7.30.1 (87e568c)
  • deps: update dependency eslint-plugin-react to v7.31.0 (5ee8ccc)
  • deps: update dependency eslint-plugin-react to v7.31.10 (8cfca09)
  • deps: update dependency eslint-plugin-react to v7.31.11 (5061b0f)
  • deps: update dependency eslint-plugin-react to v7.31.4 (168d111)
  • deps: update dependency eslint-plugin-react to v7.31.7 (147373e)
  • deps: update dependency eslint-plugin-react to v7.31.8 (d101a98)
  • deps: update dependency eslint-plugin-react to v7.31.9 (da77d40)
  • deps: update dependency eslint-plugin-react to v7.32.0 (d204a71)
  • deps: update dependency eslint-plugin-react to v7.32.1 (13f9a27)
  • deps: update dependency eslint-plugin-testing-library to v5.10.0 (c03e4b1)
  • deps: update dependency eslint-plugin-testing-library to v5.6.0 (b08bd63)
  • deps: update dependency eslint-plugin-testing-library to v5.6.3 (1dbe040)
  • deps: update dependency eslint-plugin-testing-library to v5.6.4 (7602a96)
  • deps: update dependency eslint-plugin-testing-library to v5.7.0 (e3b6050)
  • deps: update dependency eslint-plugin-testing-library to v5.7.1 (f3777b0)
  • deps: update dependency eslint-plugin-testing-library to v5.7.3 (da2df45)
  • deps: update dependency eslint-plugin-testing-library to v5.9.1 (74c72e3)
  • deps: update dependency eslint-webpack-plugin to v3.2.0 (dbcdb1b)
  • deps: update dependency fs-extra to v11 (8b91caa)
  • deps: update dependency jest-watch-typeahead to v2 (64b0391)
  • deps: update dependency jest-watch-typeahead to v2.1.1 (3f80213)
  • deps: update dependency jest-watch-typeahead to v2.2.0 (1a6508c)
  • deps: update dependency jest-watch-typeahead to v2.2.1 (ded8ae3)
  • deps: update dependency jest-watch-typeahead to v2.2.2 (a1154bb)
  • deps: update dependency prismjs to v1.29.0 (df754e0)
  • deps: update dependency react-native to v0.69.1 (7b7464f)
  • deps: update dependency react-native to v0.69.2 (d0de595)
  • deps: update dependency react-native to v0.69.3 (396ac66)
  • deps: update dependency react-native to v0.69.4 (dd887c4)
  • deps: update dependency react-native to v0.69.5 (b3cacdd)
  • deps: update dependency react-native to v0.70.1 (e77d23f)
  • deps: update dependency react-native to v0.70.2 (af3d44b)
  • deps: update dependency react-native to v0.70.3 (bec0e9e)
  • deps: update dependency react-native to v0.70.4 (9c94187)
  • deps: update dependency react-native to v0.70.5 (60f9880)
  • deps: update dependency react-native to v0.70.6 (749f757)
  • deps: update dependency react-native to v0.71.1 (29d0b80)
  • deps: update dependency react-transition-group to v4.4.4 (1cd50e9)
  • deps: update dependency react-transition-group to v4.4.5 (24e21b9)
  • deps: update dependency resolve to v1.22.1 (d09260e)
  • deps: update dependency sass-loader to v13.0.1 (c15fb8e)
  • deps: update dependency sass-loader to v13.0.2 (dc12fb6)
  • deps: update dependency sass-loader to v13.1.0 (1c33bf2)
  • deps: update dependency sass-loader to v13.2.0 (58e83e9)
  • deps: update dependency semver to v7.3.8 (62d4a8f)
  • deps: update dependency typescript to v4.7.2 (1eb8384)
  • deps: update dependency typescript to v4.7.3 (ff6e98c)
  • deps: update dependency typescript to v4.7.4 (ca81d64)
  • deps: update dependency web-vitals to v3 (8b05003)
  • deps: update dependency web-vitals to v3.0.1 (0e266f5)
  • deps: update dependency web-vitals to v3.0.2 (a28a48f)
  • deps: update dependency web-vitals to v3.0.3 (6df6642)
  • deps: update dependency web-vitals to v3.0.4 (01ce275)
  • deps: update dependency web-vitals to v3.1.0 (482f226)
  • deps: update dependency web-vitals to v3.1.1 (cc1d9ea)
  • deps: update dependency webextension-polyfill to v0.10.0 (98dd3c4)
  • deps: update dependency webpack-dev-server to v4.10.0 (0542f55)
  • deps: update dependency webpack-dev-server to v4.10.1 (8c4df1d)
  • deps: update dependency webpack-dev-server to v4.11.0 (839bab6)
  • deps: update dependency webpack-dev-server to v4.11.1 (57fcac9)
  • deps: update dependency webpack-dev-server to v4.9.1 (fa83df7)
  • deps: update dependency webpack-dev-server to v4.9.2 (aab06ff)
  • deps: update dependency webpack-dev-server to v4.9.3 (137c3b4)
  • deps: update dependency workbox-webpack-plugin to v6.5.4 (c80b312)
  • deps: update docusaurus monorepo to v2.0.0-beta.22 (8b4de10)
  • deps: update docusaurus monorepo to v2.0.0-rc.1 (b2f1384)
  • deps: update docusaurus monorepo to v2.0.1 (771eab9)
  • deps: update docusaurus monorepo to v2.1.0 (e4fcc5c)
  • deps: update docusaurus monorepo to v2.2.0 (273351b)
  • deps: update jest monorepo (3c325ea)
  • deps: update jest monorepo (b51b1f8)
  • deps: update jest monorepo (dd00667)
  • deps: update jest monorepo (e9b6f0f)
  • deps: update jest monorepo to v28.1.1 (97ab786)
  • deps: update jest monorepo to v28.1.2 (07d23d4)
  • deps: update jest monorepo to v28.1.3 (a2549c7)
  • deps: update jest monorepo to v29 (77100b8)
  • deps: update jest monorepo to v29.0.2 (9163a89)
  • deps: update jest monorepo to v29.0.3 (2f1e237)
  • deps: update jest monorepo to v29.2.0 (c70eba5)
  • deps: update jest monorepo to v29.2.2 (a81c881)
  • deps: update jest monorepo to v29.4.0 (bd586ca)
  • deps: update jest monorepo to v29.4.1 (74b2e54)
  • deps: update react monorepo (1a46688)
  • deps: update typescript-eslint monorepo to v5.27.1 (3de52ec)
  • deps: update typescript-eslint monorepo to v5.28.0 (e8b1e16)
  • deps: update typescript-eslint monorepo to v5.29.0 (f24c338)
  • deps: update typescript-eslint monorepo to v5.30.0 (7522381)
  • deps: update typescript-eslint monorepo to v5.30.3 (3c0a114)
  • deps: update typescript-eslint monorepo to v5.30.4 (bf4f089)
  • deps: update typescript-eslint monorepo to v5.30.5 (078f79d)
  • deps: update typescript-eslint monorepo to v5.30.6 (e28dbaa)
  • deps: update typescript-eslint monorepo to v5.30.7 (7975ac5)
  • deps: update typescript-eslint monorepo to v5.31.0 (5df2958)
  • deps: update typescript-eslint monorepo to v5.32.0 (c32a70f)
  • deps: update typescript-eslint monorepo to v5.33.0 (3742309)
  • deps: update typescript-eslint monorepo to v5.33.1 (cd042ea)
  • deps: update typescript-eslint monorepo to v5.34.0 (256f5f8)
  • deps: update typescript-eslint monorepo to v5.35.1 (8e4cbe3)
  • deps: update typescript-eslint monorepo to v5.36.2 (8a6a2a2)
  • deps: update typescript-eslint monorepo to v5.37.0 (567b226)
  • deps: update typescript-eslint monorepo to v5.38.0 (626f54e)
  • deps: update typescript-eslint monorepo to v5.38.1 (c887365)
  • deps: update typescript-eslint monorepo to v5.39.0 (00276f8)
  • deps: update typescript-eslint monorepo to v5.40.0 (c57234b)
  • deps: update typescript-eslint monorepo to v5.40.1 (71ee56b)
  • deps: update typescript-eslint monorepo to v5.41.0 (97ddbb8)
  • deps: update typescript-eslint monorepo to v5.42.0 (9eebd69)
  • deps: update typescript-eslint monorepo to v5.43.0 (a354a0d)
  • deps: update typescript-eslint monorepo to v5.44.0 (b0fa85d)
  • deps: update typescript-eslint monorepo to v5.45.0 (4e91f91)
  • deps: update typescript-eslint monorepo to v5.45.1 (4c62404)
  • deps: update typescript-eslint monorepo to v5.46.0 (fc1a1d4)
  • deps: update typescript-eslint monorepo to v5.46.1 (77c1c53)
  • deps: update typescript-eslint monorepo to v5.47.0 (63cd6a6)
  • deps: update typescript-eslint monorepo to v5.47.1 (83bf171)
  • deps: update typescript-eslint monorepo to v5.48.0 (a33fbee)
  • deps: update typescript-eslint monorepo to v5.48.1 (41f92fc)
  • deps: update typescript-eslint monorepo to v5.48.2 (11c07b4)
  • deps: update typescript-eslint monorepo to v5.49.0 (9e50628)
  • docs: removed unused import (1b60485)
  • fixed test theme slice (14e46fc)
  • linter (b8bce8c)
  • linting (da733f3)
  • linting (30b00c5)
  • missing dependency added (2ab8682)
  • removed useless spread og object (02504ab)
  • resolve MR comments (979bff1)
  • restore fallback on getElementName (1f1ce8d)
  • typo in createUseClasses test (c2ccb30)
  • typo in documentation (25471b6)
  • typo in loader test (09b9ac4)
  • typo on docs (8ecb642)
  • value from theme casted to string (5866700)
  • web-extension (08a3d95)

Features

0.7.0 (2022-05-30)

Bug Fixes

  • #116 extends components from theme (803c13e)
  • #136 (50ca5e4)
  • #154 (2edfeb6)
  • adaptation for last npm version (95b88bc)
  • added ci script inside package.json (1f435cc)
  • added server side snapshot callback (5cd5ceb)
  • augmentation of preset default and web sandbox react types (8d58426)
  • benchmarks fixed (fc59036)
  • bootstrap packages command (54e170e)
  • broken links fixed (c6a32c2)
  • build web extension command (da107ad)
  • cli examples and usage (7f08db4)
  • cli handling of shadows fixed and shadow parser improved (7cc1a0a)
  • cli tests timeout (3934743)
  • Closes #113 (f3b7f8a)
  • color detail and extension manifests (d1d38f0)
  • commented unused code (24168ab)
  • commonjs export fixed (bcaca44)
  • cover image and contributors added in readme (abe4ddb)
  • crash by navigating to a font slice if the fonts slice has no font (cdce5df)
  • custom action (7c3e0db)
  • custom action (5c2e095)
  • custom action (fba8110)
  • custom action name (d298644)
  • deepscan fixes and layout improvements (cf892be)
  • deepscan issue fixed (5a50010)
  • deploy script (383b8d7)
  • deps: update dependency @mdx-js/react to v2 (e5e0007)
  • deps: update dependency @morfeo/core to v0.6.0 (7de0232)
  • deps: update dependency @morfeo/dev-tools to v0.6.0 (fea2a61)
  • deps: update dependency @morfeo/jss to v0.6.0 (6512c9b)
  • deps: update dependency @morfeo/preset-default to v0.6.0 (5c87a4b)
  • deps: update dependency @morfeo/react to v0.6.0 (4f96cf9)
  • deps: update dependency @svgr/webpack to v6 (552b424)
  • deps: update dependency @testing-library/react to v13.2.0 (f8a52be)
  • deps: update dependency @testing-library/user-event to v14.2.0 (8560e15)
  • deps: update dependency @types/node to v12.20.52 (3f60255)
  • deps: update dependency @types/node to v16 (1ad07de)
  • deps: update dependency @types/react to v18.0.9 (2e76a72)
  • deps: update dependency case-sensitive-paths-webpack-plugin to v2.4.0 (dc30cb8)
  • deps: update dependency dotenv to v16 (25f4bd6)
  • deps: update dependency dotenv to v8.6.0 (68ab8da)
  • deps: update dependency dotenv-expand to v8 (e29a148)
  • deps: update dependency eslint to v8 (a323f4c)
  • deps: update dependency eslint-config-react-app to v7 (637262b)
  • deps: update dependency eslint-plugin-flowtype to v8 (9d309fb)
  • deps: update dependency eslint-plugin-import to v2.26.0 (a705ec8)
  • deps: update dependency eslint-plugin-jest to v26 (b05d9de)
  • deps: update dependency eslint-plugin-jest to v26.4.2 (e5ca239)
  • deps: update dependency eslint-plugin-jest to v26.4.5 (f73ef59)
  • deps: update dependency eslint-plugin-react to v7.30.0 (cb77c43)
  • deps: update dependency eslint-plugin-react-hooks to v4.5.0 (a3f70c0)
  • deps: update dependency eslint-plugin-testing-library to v5 (ab6c0f9)
  • deps: update dependency eslint-webpack-plugin to v3 (bef8d0d)
  • deps: update dependency file-loader to v6.2.0 (33ad985)
  • deps: update dependency fs-extra to v10 (26af134)
  • deps: update dependency html-webpack-plugin to v4.5.2 (4bca31b)
  • deps: update dependency jest-watch-typeahead to v0.6.5 (8d5536c)
  • deps: update dependency jest-watch-typeahead to v1 (7797734)
  • deps: update dependency mini-css-extract-plugin to v0.12.0 (b851f60)
  • deps: update dependency optimize-css-assets-webpack-plugin to v5.0.8 (2a9a0c0)
  • deps: update dependency optimize-css-assets-webpack-plugin to v6 (7278ce0)
  • deps: update dependency pnp-webpack-plugin to v1.7.0 (c04d8e9)
  • deps: update dependency polished to v4.2.2 (b5f07a9)
  • deps: update dependency postcss-preset-env to v6.7.1 (3e38f52)
  • deps: update dependency prismjs to v1.28.0 (e512c8d)
  • deps: update dependency prompts to v2.4.2 (881c29f)
  • deps: update dependency react-app-polyfill to v3 (a4e4577)
  • deps: update dependency resolve to v1.22.0 (47689a8)
  • deps: update dependency resolve-url-loader to v5 (40597b3)
  • deps: update dependency sass-loader to v13 (e74f23f)
  • deps: update dependency semver to v7.3.7 (a9f9ade)
  • deps: update dependency style-loader to v3 (e4e8849)
  • deps: update dependency web-vitals to v2 (c131016)
  • deps: update dependency webextension-polyfill to v0.9.0 (b18915c)
  • deps: update dependency webpack to v4.46.0 (dd04cb2)
  • deps: update dependency webpack-dev-server to v3.11.3 (8984d5a)
  • deps: update dependency webpack-dev-server to v4 (3a330f1)
  • deps: update dependency workbox-webpack-plugin to v6 (98430cf)
  • deps: update docusaurus monorepo to v2.0.0-beta.21 (14937e1)
  • deps: update jest monorepo (6fc6898)
  • deps: update jest monorepo (9027fcb)
  • deps: update typescript-eslint monorepo to v5 (6cf5725)
  • devtool README broken link (7945379)
  • devtool: fix back chevron and slice title (991eb86)
  • devtool: lint (fc92054)
  • docs (15fbfc3)
  • docs script updated (96358f6)
  • docs updated (f23106d)
  • documentation (31c7c6a)
  • documentation website fixes (c15bc81)
  • edited radii tests and removed max workers from jest.onfig (125b3d5)
  • enable dev tool fixed (75cb87c)
  • ensure bootstrap uses legacy peer dependencies resolution (1c2900b)
  • fix codecov pipelin attempt (773025d)
  • fix codecov workflow (243958c)
  • fix wrong import on web-sandbox (91cebec)
  • fixed @morfeo/cli tests warnings (605a2ad)
  • fixed types of web sandbox components (45ce774)
  • fixed typing of packages (57267c5)
  • fixed wrong import inside @morfeo/dev-tools package (a7796e9)
  • fonts: fix package.json repo urls (1f0cafe)
  • fonts: prettier (c97f825)
  • google analytics (fdc31af)
  • google analytics (3e68797)
  • hooks commonjs build (d5ac23f)
  • max workers set to 2 in jest.onfig (358b1e8)
  • morfeo packages version inside docs (0a46661)
  • package-lock re-introduced (658b335)
  • pipeline (5fd8b3b)
  • pipeline (ec17f22)
  • pipeline (1894ec4)
  • pipelines (75ec47c)
  • preset default fixes (f558a11)
  • preset-default and react example (5a1f28c)
  • prettier (25a1023)
  • prettier (1fd04bb)
  • prettier (7b37d32)
  • prettier (6dfc59e)
  • prettier (2ab1020)
  • prettier (066639a)
  • prettier (57516db)
  • prettier (2c39593)
  • publish workflows (cb79123), closes #106
  • readme files fix and licenses added (c71286a)
  • removed fixed npm version from workflow (eb83b91)
  • removed styled-component-web package and fixed tets (7bccfc0)
  • removed useless imports (1c37cf0)
  • responsive fix and blog post added (ce4ecd5)
  • responsive values typing (648c4b1), closes #46
  • shadow parser fix & improvements (bb8b7a2)
  • spec, web, devtool (8c8bb90)
  • styled-components-web packages (9f41713), closes #42
  • svelte init script (70bc8ec)
  • tests (61e4593)
  • tests coverage restored to 100% (9abb112)
  • used globalThis instead of window inside the dev tool (6f028eb)
  • used yarn instead of npm (6d0b777)
  • web-sandbox style fixed (a2aa352)
  • workflow name (23aa7f8)

chore

Features

Reverts

  • Revert "Update getting-started.mdx" (8a275d9)

BREAKING CHANGES

  • @morfeo/core: breaking change the the core api:

  • morfeo.useTheme renamed into morfeo.setCurrentTheme

  • morfeo.getCurrent renamed into morfeo.getCurrentTheme

0.6.0 (2022-05-26)

Bug Fixes

Features

  • #158 upgrade to React 18 (d02d2a6)
  • package @morfeo/styled-components-web removed (ff6fd3c)

0.5.1 (2022-04-30)

Bug Fixes

  • #116 extends components from theme (803c13e)
  • #136 (50ca5e4)
  • #154 (2edfeb6)
  • adaptation for last npm version (95b88bc)
  • augmentation of preset default and web sandbox react types (8d58426)
  • benchmarks fixed (fc59036)
  • broken links fixed (c6a32c2)
  • cli handling of shadows fixed and shadow parser improved (7cc1a0a)
  • cli tests timeout (3934743)
  • Closes #113 (f3b7f8a)
  • color detail and extension manifests (d1d38f0)
  • commented unused code (24168ab)
  • commonjs export fixed (bcaca44)
  • cover image and contributors added in readme (abe4ddb)
  • crash by navigating to a font slice if the fonts slice has no font (cdce5df)
  • deepscan fixes and layout improvements (cf892be)
  • deepscan issue fixed (5a50010)
  • devtool README broken link (7945379)
  • devtool: fix back chevron and slice title (991eb86)
  • devtool: lint (fc92054)
  • docs script updated (96358f6)
  • docs updated (f23106d)
  • documentation (31c7c6a)
  • documentation website fixes (c15bc81)
  • edited radii tests and removed max workers from jest.onfig (125b3d5)
  • enable dev tool fixed (75cb87c)
  • ensure bootstrap uses legacy peer dependencies resolution (1c2900b)
  • fix codecov pipelin attempt (773025d)
  • fix codecov workflow (243958c)
  • fix wrong import on web-sandbox (91cebec)
  • fixed @morfeo/cli tests warnings (605a2ad)
  • fixed types of web sandbox components (45ce774)
  • fixed typing of packages (57267c5)
  • fixed wrong import inside @morfeo/dev-tools package (a7796e9)
  • fonts: fix package.json repo urls (1f0cafe)
  • fonts: prettier (c97f825)
  • google analytics (fdc31af)
  • google analytics (3e68797)
  • hooks commonjs build (d5ac23f)
  • max workers set to 2 in jest.onfig (358b1e8)
  • package-lock re-introduced (658b335)
  • preset default fixes (f558a11)
  • prettier (25a1023)
  • prettier (1fd04bb)
  • prettier (7b37d32)
  • prettier (6dfc59e)
  • prettier (2ab1020)
  • prettier (066639a)
  • prettier (57516db)
  • prettier (2c39593)
  • publish workflows (cb79123), closes #106
  • readme files fix and licenses added (c71286a)
  • removed fixed npm version from workflow (eb83b91)
  • removed useless imports (1c37cf0)
  • responsive fix and blog post added (ce4ecd5)
  • responsive values typing (648c4b1), closes #46
  • shadow parser fix & improvements (bb8b7a2)
  • spec, web, devtool (8c8bb90)
  • styled-components-web packages (9f41713), closes #42
  • svelte init script (70bc8ec)
  • tests (61e4593)
  • tests coverage restored to 100% (9abb112)
  • used globalThis instead of window inside the dev tool (6f028eb)
  • used yarn instead of npm (6d0b777)
  • web-sandbox style fixed (a2aa352)

chore

Features

Reverts

  • Revert "Update getting-started.mdx" (8a275d9)

BREAKING CHANGES

  • @morfeo/core: breaking change the the core api:

  • morfeo.useTheme renamed into morfeo.setCurrentTheme

  • morfeo.getCurrent renamed into morfeo.getCurrentTheme

0.5.0 (2022-02-13)

Bug Fixes

  • #116 extends components from theme (803c13e)
  • #136 (50ca5e4)
  • adaptation for last npm version (95b88bc)
  • augmentation of preset default and web sandbox react types (8d58426)
  • benchmarks fixed (fc59036)
  • broken links fixed (c6a32c2)
  • cli handling of shadows fixed and shadow parser improved (7cc1a0a)
  • cli tests timeout (3934743)
  • Closes #113 (f3b7f8a)
  • color detail and extension manifests (d1d38f0)
  • commented unused code (24168ab)
  • commonjs export fixed (bcaca44)
  • cover image and contributors added in readme (abe4ddb)
  • crash by navigating to a font slice if the fonts slice has no font (cdce5df)
  • deepscan fixes and layout improvements (cf892be)
  • deepscan issue fixed (5a50010)
  • devtool: fix back chevron and slice title (991eb86)
  • devtool: lint (fc92054)
  • docs script updated (96358f6)
  • docs updated (f23106d)
  • documentation (31c7c6a)
  • documentation website fixes (c15bc81)
  • edited radii tests and removed max workers from jest.onfig (125b3d5)
  • enable dev tool fixed (75cb87c)
  • ensure bootstrap uses legacy peer dependencies resolution (1c2900b)
  • fix codecov pipelin attempt (773025d)
  • fix codecov workflow (243958c)
  • fix wrong import on web-sandbox (91cebec)
  • fixed @morfeo/cli tests warnings (605a2ad)
  • fixed types of web sandbox components (45ce774)
  • fixed typing of packages (57267c5)
  • fixed wrong import inside @morfeo/dev-tools package (a7796e9)
  • fonts: fix package.json repo urls (1f0cafe)
  • fonts: prettier (c97f825)
  • google analytics (fdc31af)
  • google analytics (3e68797)
  • hooks commonjs build (d5ac23f)
  • max workers set to 2 in jest.onfig (358b1e8)
  • package-lock re-introduced (658b335)
  • preset default fixes (f558a11)
  • prettier (25a1023)
  • prettier (1fd04bb)
  • prettier (7b37d32)
  • prettier (6dfc59e)
  • prettier (2ab1020)
  • prettier (066639a)
  • prettier (57516db)
  • prettier (2c39593)
  • publish workflows (cb79123), closes #106
  • readme files fix and licenses added (c71286a)
  • removed fixed npm version from workflow (eb83b91)
  • removed useless imports (1c37cf0)
  • responsive fix and blog post added (ce4ecd5)
  • responsive values typing (648c4b1), closes #46
  • shadow parser fix & improvements (bb8b7a2)
  • spec, web, devtool (8c8bb90)
  • styled-components-web packages (9f41713), closes #42
  • svelte init script (70bc8ec)
  • tests (61e4593)
  • tests coverage restored to 100% (9abb112)
  • used globalThis instead of window inside the dev tool (6f028eb)
  • used yarn instead of npm (6d0b777)
  • web-sandbox style fixed (a2aa352)

Features

Reverts

  • Revert "Update getting-started.mdx" (8a275d9)

0.4.2 (2021-11-18)

Bug Fixes

  • #116 extends components from theme (803c13e)
  • augmentation of preset default and web sandbox react types (8d58426)
  • benchmarks fixed (fc59036)
  • broken links fixed (c6a32c2)
  • cli handling of shadows fixed and shadow parser improved (7cc1a0a)
  • cli tests timeout (3934743)
  • Closes #113 (f3b7f8a)
  • color detail and extension manifests (d1d38f0)
  • commonjs export fixed (bcaca44)
  • cover image and contributors added in readme (abe4ddb)
  • crash by navigating to a font slice if the fonts slice has no font (cdce5df)
  • deepscan fixes and layout improvements (cf892be)
  • deepscan issue fixed (5a50010)
  • docs updated (f23106d)
  • documentation (31c7c6a)
  • documentation website fixes (c15bc81)
  • enable dev tool fixed (75cb87c)
  • fix wrong import on web-sandbox (91cebec)
  • fixed @morfeo/cli tests warnings (605a2ad)
  • fixed types of web sandbox components (45ce774)
  • fixed typing of packages (57267c5)
  • fixed wrong import inside @morfeo/dev-tools package (a7796e9)
  • google analytics (fdc31af)
  • google analytics (3e68797)
  • hooks commonjs build (d5ac23f)
  • package-lock re-introduced (658b335)
  • preset default fixes (f558a11)
  • prettier (1fd04bb)
  • prettier (7b37d32)
  • prettier (6dfc59e)
  • prettier (2ab1020)
  • prettier (066639a)
  • prettier (57516db)
  • prettier (2c39593)
  • publish workflows (cb79123), closes #106
  • readme files fix and licenses added (c71286a)
  • responsive fix and blog post added (ce4ecd5)
  • responsive values typing (648c4b1), closes #46
  • shadow parser fix & improvements (bb8b7a2)
  • spec, web, devtool (8c8bb90)
  • styled-components-web packages (9f41713), closes #42
  • svelte init script (70bc8ec)
  • tests (61e4593)
  • tests coverage restored to 100% (9abb112)
  • web-sandbox style fixed (a2aa352)
  • devtool: fix back chevron and slice title (991eb86)
  • devtool: lint (fc92054)
  • used globalThis instead of window inside the dev tool (6f028eb)
  • fonts: fix package.json repo urls (1f0cafe)
  • fonts: prettier (c97f825)

Features

  • added components inside documentation website (b16a780)
  • preset-default: added components to preset default (3d924c5)
  • react: Closes #125 (1fa2f95)
  • 76 (0a3a065)
  • add benchmarks to website (759950d)
  • add theme removal (fb20b50)
  • added borders slice (3cc7c5c)
  • added credits page (51f8da3)
  • added docusaurus and morfeo logo (3dc54f4)
  • added missing icons for slices and new morfeo icon (0c4fdfa)
  • added privacy policy page (162a75a)
  • added pubish config to packages (23241fc)
  • added pwa plugin to documentation website (1808781)
  • added slices and optimizations to dev tool (a53f5e8)
  • added slices handled by dev tools (392779f)
  • all css props mapped and styled components package improved (c3771c6)
  • border slices (746228a)
  • cache and benchmarks (aa360dd)
  • cards list improvements (7a2a13f)
  • class used in morfeo component (38bac81)
  • cli improvements (2ffb4a6)
  • closes #51 (0ab4270)
  • closes #65 (bbf6e32)
  • closes #79 (069f55e)
  • commonjs build included (1b3baa5)
  • component utility introduced (d502a59)
  • compose command wip #40 (199a1c6)
  • compose command wip #40 (0b186f4)
  • cookie acceptance added to docusaurus website (b7b5b23)
  • copy button and stiling improvements (91c30ac)
  • credits page improved (46b95ef)
  • deep scan improvements (014aed3)
  • dev tool documentation added (0c18f58)
  • dev tool refactor (669d709)
  • dev tools improvements (3b5b9d9)
  • devtool config (842b8ff), closes #101
  • devtool massage changed to enable multi theming inside devtool and layout improvement (153fdbc)
  • devtool style improvements for large screens (5ec7145)
  • docs improvements (c25202e)
  • documentation improvements (4ad3b5d)
  • documentation update (2bf10e7)
  • enabled algolia docsearch closes #55 (07950d2)
  • fixed @morfeo/fonts for imported fonts and added utility to add application font inside the web extension (455c83d)
  • flatted parser.resolve method (5ce2c10)
  • gradients parsers added to @morfeo/web package (9bcac4e)
  • gradients slice added and bugfixing (aafb36c)
  • hide feture added to devtool (eee23ce)
  • hooks package added (0637789)
  • improved build command (00084bc)
  • improved build command an multi-theme support (c32c006)
  • init of morfeo cli (7a17f70)
  • init of morfeo cli (70a2333)
  • introduce a set of a morfeo component (ef606a5)
  • introucing svelte package and sandbox (0e8e9e2)
  • jss package and fix to native test (30b6c4a)
  • lcov reeporter added (2be77a6)
  • morfeo dev tool init (e7975d7)
  • morfeo instance singleton (913370e)
  • moved cli inside packages (b8b3b7d)
  • native package (356cbd6)
  • post-versioning script (6abf645), closes #90
  • preset-default improvements (56d0862)
  • readme files added to all the packages (819e60b)
  • removed style dictionary (019f4fb)
  • replaced space slice with spacings (9aaf30a)
  • replacement of assets inside docs and dev-tool, wip of algolia search (c15efe1)
  • spec improvements (71d83f4), closes #109
  • styled components for web (e5dee4c)
  • update callback to jss function (6218907)
  • useStyles hooks added (fee9d48)
  • useSubscribe hook introduced (8de68f2)
  • web extension version upgraded (266a9f6)
  • devtool: generic slice route and ui improvements (dcc13dd)
  • devtool: grid (cc93a2c)
  • devtool: init of the new version of the browser extension (cc52f63)
  • preset-default: improved colors, shadows and zindices inside preset-default (f4cf3f2)
  • useClassName and useClassNames hooks (7825ddd)
  • watch command tests and optimization (7e2ddb9)
  • preset-default: preset theme package (7a66269)
  • react: added tests (135e445)
  • website link replaced inside readme files (1e55a6d)
  • wip of morfeo cli (476d48d)
  • @morfeo/web: reset css utility (41c291a)
  • @morfeo/web: reset css utility prettier (6695398)
  • fonts: new @morfeo/fonts package (68ba391)
  • react: import replacing (d07c084)
  • react: introducing react package (f99da40)
  • svelte: added support to default properties, docs and tests (a734021)
  • web sandbox improvement (d25758c)
  • web styled-components package introduced (a7677c3)

Reverts

  • Revert "Update getting-started.mdx" (8a275d9)

0.4.1 (2021-11-18)

Bug Fixes

  • #116 extends components from theme (803c13e)
  • augmentation of preset default and web sandbox react types (8d58426)
  • benchmarks fixed (fc59036)
  • broken links fixed (c6a32c2)
  • cli handling of shadows fixed and shadow parser improved (7cc1a0a)
  • cli tests timeout (3934743)
  • Closes #113 (f3b7f8a)
  • color detail and extension manifests (d1d38f0)
  • commonjs export fixed (bcaca44)
  • cover image and contributors added in readme (abe4ddb)
  • crash by navigating to a font slice if the fonts slice has no font (cdce5df)
  • deepscan fixes and layout improvements (cf892be)
  • deepscan issue fixed (5a50010)
  • docs updated (f23106d)
  • documentation (31c7c6a)
  • documentation website fixes (c15bc81)
  • enable dev tool fixed (75cb87c)
  • fix wrong import on web-sandbox (91cebec)
  • fixed @morfeo/cli tests warnings (605a2ad)
  • fixed types of web sandbox components (45ce774)
  • fixed typing of packages (57267c5)
  • fixed wrong import inside @morfeo/dev-tools package (a7796e9)
  • google analytics (fdc31af)
  • google analytics (3e68797)
  • package-lock re-introduced (658b335)
  • preset default fixes (f558a11)
  • prettier (1fd04bb)
  • prettier (7b37d32)
  • prettier (6dfc59e)
  • prettier (2ab1020)
  • prettier (066639a)
  • prettier (57516db)
  • prettier (2c39593)
  • publish workflows (cb79123), closes #106
  • readme files fix and licenses added (c71286a)
  • responsive fix and blog post added (ce4ecd5)
  • responsive values typing (648c4b1), closes #46
  • shadow parser fix & improvements (bb8b7a2)
  • spec, web, devtool (8c8bb90)
  • styled-components-web packages (9f41713), closes #42
  • svelte init script (70bc8ec)
  • tests (61e4593)
  • tests coverage restored to 100% (9abb112)
  • web-sandbox style fixed (a2aa352)
  • devtool: fix back chevron and slice title (991eb86)
  • devtool: lint (fc92054)
  • used globalThis instead of window inside the dev tool (6f028eb)
  • fonts: fix package.json repo urls (1f0cafe)
  • fonts: prettier (c97f825)

Features

  • added components inside documentation website (b16a780)
  • preset-default: added components to preset default (3d924c5)
  • react: Closes #125 (1fa2f95)
  • 76 (0a3a065)
  • add benchmarks to website (759950d)
  • add theme removal (fb20b50)
  • added borders slice (3cc7c5c)
  • added credits page (51f8da3)
  • added docusaurus and morfeo logo (3dc54f4)
  • added missing icons for slices and new morfeo icon (0c4fdfa)
  • added privacy policy page (162a75a)
  • added pubish config to packages (23241fc)
  • added pwa plugin to documentation website (1808781)
  • added slices and optimizations to dev tool (a53f5e8)
  • added slices handled by dev tools (392779f)
  • all css props mapped and styled components package improved (c3771c6)
  • border slices (746228a)
  • cache and benchmarks (aa360dd)
  • cards list improvements (7a2a13f)
  • class used in morfeo component (38bac81)
  • cli improvements (2ffb4a6)
  • closes #51 (0ab4270)
  • closes #65 (bbf6e32)
  • closes #79 (069f55e)
  • commonjs build included (1b3baa5)
  • component utility introduced (d502a59)
  • compose command wip #40 (199a1c6)
  • compose command wip #40 (0b186f4)
  • cookie acceptance added to docusaurus website (b7b5b23)
  • copy button and stiling improvements (91c30ac)
  • credits page improved (46b95ef)
  • deep scan improvements (014aed3)
  • dev tool documentation added (0c18f58)
  • dev tool refactor (669d709)
  • dev tools improvements (3b5b9d9)
  • devtool config (842b8ff), closes #101
  • devtool massage changed to enable multi theming inside devtool and layout improvement (153fdbc)
  • devtool style improvements for large screens (5ec7145)
  • docs improvements (c25202e)
  • documentation improvements (4ad3b5d)
  • documentation update (2bf10e7)
  • enabled algolia docsearch closes #55 (07950d2)
  • fixed @morfeo/fonts for imported fonts and added utility to add application font inside the web extension (455c83d)
  • flatted parser.resolve method (5ce2c10)
  • gradients parsers added to @morfeo/web package (9bcac4e)
  • gradients slice added and bugfixing (aafb36c)
  • hide feture added to devtool (eee23ce)
  • hooks package added (0637789)
  • improved build command (00084bc)
  • improved build command an multi-theme support (c32c006)
  • init of morfeo cli (7a17f70)
  • init of morfeo cli (70a2333)
  • introduce a set of a morfeo component (ef606a5)
  • introucing svelte package and sandbox (0e8e9e2)
  • jss package and fix to native test (30b6c4a)
  • lcov reeporter added (2be77a6)
  • morfeo dev tool init (e7975d7)
  • morfeo instance singleton (913370e)
  • moved cli inside packages (b8b3b7d)
  • native package (356cbd6)
  • post-versioning script (6abf645), closes #90
  • preset-default improvements (56d0862)
  • readme files added to all the packages (819e60b)
  • removed style dictionary (019f4fb)
  • replaced space slice with spacings (9aaf30a)
  • replacement of assets inside docs and dev-tool, wip of algolia search (c15efe1)
  • spec improvements (71d83f4), closes #109
  • styled components for web (e5dee4c)
  • update callback to jss function (6218907)
  • useStyles hooks added (fee9d48)
  • useSubscribe hook introduced (8de68f2)
  • web extension version upgraded (266a9f6)
  • devtool: generic slice route and ui improvements (dcc13dd)
  • devtool: grid (cc93a2c)
  • devtool: init of the new version of the browser extension (cc52f63)
  • preset-default: improved colors, shadows and zindices inside preset-default (f4cf3f2)
  • useClassName and useClassNames hooks (7825ddd)
  • watch command tests and optimization (7e2ddb9)
  • preset-default: preset theme package (7a66269)
  • react: added tests (135e445)
  • website link replaced inside readme files (1e55a6d)
  • wip of morfeo cli (476d48d)
  • @morfeo/web: reset css utility (41c291a)
  • @morfeo/web: reset css utility prettier (6695398)
  • fonts: new @morfeo/fonts package (68ba391)
  • react: import replacing (d07c084)
  • react: introducing react package (f99da40)
  • svelte: added support to default properties, docs and tests (a734021)
  • web sandbox improvement (d25758c)
  • web styled-components package introduced (a7677c3)

Reverts

  • Revert "Update getting-started.mdx" (8a275d9)

0.4.0 (2021-11-18)

Bug Fixes

  • #116 extends components from theme (803c13e)
  • augmentation of preset default and web sandbox react types (8d58426)
  • benchmarks fixed (fc59036)
  • broken links fixed (c6a32c2)
  • cli handling of shadows fixed and shadow parser improved (7cc1a0a)
  • cli tests timeout (3934743)
  • Closes #113 (f3b7f8a)
  • color detail and extension manifests (d1d38f0)
  • cover image and contributors added in readme (abe4ddb)
  • crash by navigating to a font slice if the fonts slice has no font (cdce5df)
  • deepscan fixes and layout improvements (cf892be)
  • deepscan issue fixed (5a50010)
  • docs updated (f23106d)
  • documentation (31c7c6a)
  • documentation website fixes (c15bc81)
  • enable dev tool fixed (75cb87c)
  • fix wrong import on web-sandbox (91cebec)
  • fixed @morfeo/cli tests warnings (605a2ad)
  • fixed types of web sandbox components (45ce774)
  • fixed typing of packages (57267c5)
  • fixed wrong import inside @morfeo/dev-tools package (a7796e9)
  • google analytics (fdc31af)
  • google analytics (3e68797)
  • package-lock re-introduced (658b335)
  • preset default fixes (f558a11)
  • prettier (1fd04bb)
  • prettier (7b37d32)
  • prettier (6dfc59e)
  • prettier (2ab1020)
  • prettier (066639a)
  • prettier (57516db)
  • prettier (2c39593)
  • publish workflows (cb79123), closes #106
  • readme files fix and licenses added (c71286a)
  • responsive fix and blog post added (ce4ecd5)
  • responsive values typing (648c4b1), closes #46
  • shadow parser fix & improvements (bb8b7a2)
  • spec, web, devtool (8c8bb90)
  • styled-components-web packages (9f41713), closes #42
  • svelte init script (70bc8ec)
  • tests (61e4593)
  • tests coverage restored to 100% (9abb112)
  • web-sandbox style fixed (a2aa352)
  • devtool: fix back chevron and slice title (991eb86)
  • devtool: lint (fc92054)
  • used globalThis instead of window inside the dev tool (6f028eb)
  • fonts: fix package.json repo urls (1f0cafe)
  • fonts: prettier (c97f825)

Features

  • added components inside documentation website (b16a780)
  • preset-default: added components to preset default (3d924c5)
  • react: Closes #125 (1fa2f95)
  • 76 (0a3a065)
  • add benchmarks to website (759950d)
  • add theme removal (fb20b50)
  • added borders slice (3cc7c5c)
  • added credits page (51f8da3)
  • added docusaurus and morfeo logo (3dc54f4)
  • added missing icons for slices and new morfeo icon (0c4fdfa)
  • added privacy policy page (162a75a)
  • added pubish config to packages (23241fc)
  • added pwa plugin to documentation website (1808781)
  • added slices and optimizations to dev tool (a53f5e8)
  • added slices handled by dev tools (392779f)
  • all css props mapped and styled components package improved (c3771c6)
  • border slices (746228a)
  • cache and benchmarks (aa360dd)
  • cards list improvements (7a2a13f)
  • class used in morfeo component (38bac81)
  • cli improvements (2ffb4a6)
  • closes #51 (0ab4270)
  • closes #65 (bbf6e32)
  • closes #79 (069f55e)
  • commonjs build included (1b3baa5)
  • component utility introduced (d502a59)
  • compose command wip #40 (199a1c6)
  • compose command wip #40 (0b186f4)
  • cookie acceptance added to docusaurus website (b7b5b23)
  • copy button and stiling improvements (91c30ac)
  • credits page improved (46b95ef)
  • deep scan improvements (014aed3)
  • dev tool documentation added (0c18f58)
  • dev tool refactor (669d709)
  • dev tools improvements (3b5b9d9)
  • devtool config (842b8ff), closes #101
  • devtool massage changed to enable multi theming inside devtool and layout improvement (153fdbc)
  • devtool style improvements for large screens (5ec7145)
  • docs improvements (c25202e)
  • documentation improvements (4ad3b5d)
  • documentation update (2bf10e7)
  • enabled algolia docsearch closes #55 (07950d2)
  • fixed @morfeo/fonts for imported fonts and added utility to add application font inside the web extension (455c83d)
  • flatted parser.resolve method (5ce2c10)
  • gradients parsers added to @morfeo/web package (9bcac4e)
  • gradients slice added and bugfixing (aafb36c)
  • hide feture added to devtool (eee23ce)
  • hooks package added (0637789)
  • improved build command (00084bc)
  • improved build command an multi-theme support (c32c006)
  • init of morfeo cli (7a17f70)
  • init of morfeo cli (70a2333)
  • introduce a set of a morfeo component (ef606a5)
  • introucing svelte package and sandbox (0e8e9e2)
  • jss package and fix to native test (30b6c4a)
  • lcov reeporter added (2be77a6)
  • morfeo dev tool init (e7975d7)
  • morfeo instance singleton (913370e)
  • moved cli inside packages (b8b3b7d)
  • native package (356cbd6)
  • post-versioning script (6abf645), closes #90
  • preset-default improvements (56d0862)
  • readme files added to all the packages (819e60b)
  • removed style dictionary (019f4fb)
  • replaced space slice with spacings (9aaf30a)
  • replacement of assets inside docs and dev-tool, wip of algolia search (c15efe1)
  • spec improvements (71d83f4), closes #109
  • styled components for web (e5dee4c)
  • update callback to jss function (6218907)
  • useStyles hooks added (fee9d48)
  • useSubscribe hook introduced (8de68f2)
  • web extension version upgraded (266a9f6)
  • devtool: generic slice route and ui improvements (dcc13dd)
  • devtool: grid (cc93a2c)
  • devtool: init of the new version of the browser extension (cc52f63)
  • preset-default: improved colors, shadows and zindices inside preset-default (f4cf3f2)
  • useClassName and useClassNames hooks (7825ddd)
  • watch command tests and optimization (7e2ddb9)
  • preset-default: preset theme package (7a66269)
  • react: added tests (135e445)
  • website link replaced inside readme files (1e55a6d)
  • wip of morfeo cli (476d48d)
  • @morfeo/web: reset css utility (41c291a)
  • @morfeo/web: reset css utility prettier (6695398)
  • fonts: new @morfeo/fonts package (68ba391)
  • react: import replacing (d07c084)
  • react: introducing react package (f99da40)
  • svelte: added support to default properties, docs and tests (a734021)
  • web sandbox improvement (d25758c)
  • web styled-components package introduced (a7677c3)

Reverts

  • Revert "Update getting-started.mdx" (8a275d9)

0.3.2 (2021-11-04)

Bug Fixes

  • benchmarks fixed (fc59036)
  • broken links fixed (c6a32c2)
  • cli handling of shadows fixed and shadow parser improved (7cc1a0a)
  • cli tests timeout (3934743)
  • color detail and extension manifests (d1d38f0)
  • cover image and contributors added in readme (abe4ddb)
  • crash by navigating to a font slice if the fonts slice has no font (cdce5df)
  • deepscan fixes and layout improvements (cf892be)
  • deepscan issue fixed (5a50010)
  • documentation (31c7c6a)
  • documentation website fixes (c15bc81)
  • enable dev tool fixed (75cb87c)
  • fix wrong import on web-sandbox (91cebec)
  • fixed @morfeo/cli tests warnings (605a2ad)
  • fixed typing of packages (57267c5)
  • fixed wrong import inside @morfeo/dev-tools package (a7796e9)
  • google analytics (fdc31af)
  • google analytics (3e68797)
  • package-lock re-introduced (658b335)
  • preset default fixes (f558a11)
  • prettier (2ab1020)
  • prettier (066639a)
  • prettier (57516db)
  • prettier (2c39593)
  • publish workflows (cb79123), closes #106
  • readme files fix and licenses added (c71286a)
  • responsive fix and blog post added (ce4ecd5)
  • responsive values typing (648c4b1), closes #46
  • shadow parser fix & improvements (bb8b7a2)
  • svelte init script (70bc8ec)
  • tests coverage restored to 100% (9abb112)
  • devtool: fix back chevron and slice title (991eb86)
  • devtool: lint (fc92054)
  • styled-components-web packages (9f41713), closes #42
  • used globalThis instead of window inside the dev tool (6f028eb)
  • fonts: fix package.json repo urls (1f0cafe)
  • fonts: prettier (c97f825)

Features

  • 76 (0a3a065)
  • add benchmarks to website (759950d)
  • add theme removal (fb20b50)
  • added borders slice (3cc7c5c)
  • added credits page (51f8da3)
  • added docusaurus and morfeo logo (3dc54f4)
  • added missing icons for slices and new morfeo icon (0c4fdfa)
  • added privacy policy page (162a75a)
  • added pubish config to packages (23241fc)
  • added pwa plugin to documentation website (1808781)
  • added slices and optimizations to dev tool (a53f5e8)
  • added slices handled by dev tools (392779f)
  • all css props mapped and styled components package improved (c3771c6)
  • border slices (746228a)
  • cache and benchmarks (aa360dd)
  • cards list improvements (7a2a13f)
  • class used in morfeo component (38bac81)
  • cli improvements (2ffb4a6)
  • closes #51 (0ab4270)
  • closes #65 (bbf6e32)
  • closes #79 (069f55e)
  • commonjs build included (1b3baa5)
  • component utility introduced (d502a59)
  • compose command wip #40 (199a1c6)
  • compose command wip #40 (0b186f4)
  • cookie acceptance added to docusaurus website (b7b5b23)
  • copy button and stiling improvements (91c30ac)
  • credits page improved (46b95ef)
  • deep scan improvements (014aed3)
  • dev tool documentation added (0c18f58)
  • dev tool refactor (669d709)
  • dev tools improvements (3b5b9d9)
  • devtool config (842b8ff), closes #101
  • devtool massage changed to enable multi theming inside devtool and layout improvement (153fdbc)
  • devtool style improvements for large screens (5ec7145)
  • docs improvements (c25202e)
  • documentation improvements (4ad3b5d)
  • enabled algolia docsearch closes #55 (07950d2)
  • fixed @morfeo/fonts for imported fonts and added utility to add application font inside the web extension (455c83d)
  • flatted parser.resolve method (5ce2c10)
  • gradients slice added and bugfixing (aafb36c)
  • hooks package added (0637789)
  • init of morfeo cli (70a2333)
  • introucing svelte package and sandbox (0e8e9e2)
  • morfeo instance singleton (913370e)
  • native package (356cbd6)
  • post-versioning script (6abf645), closes #90
  • devtool: generic slice route and ui improvements (dcc13dd)
  • devtool: grid (cc93a2c)
  • devtool: init of the new version of the browser extension (cc52f63)
  • preset-default: improved colors, shadows and zindices inside preset-default (f4cf3f2)
  • documentation update (2bf10e7)
  • improved build command (00084bc)
  • improved build command an multi-theme support (c32c006)
  • init of morfeo cli (7a17f70)
  • moved cli inside packages (b8b3b7d)
  • removed style dictionary (019f4fb)
  • watch command tests and optimization (7e2ddb9)
  • preset-default: preset theme package (7a66269)
  • react: added tests (135e445)
  • replacement of assets inside docs and dev-tool, wip of algolia search (c15efe1)
  • useClassName and useClassNames hooks (7825ddd)
  • website link replaced inside readme files (1e55a6d)
  • @morfeo/web: reset css utility (41c291a)
  • @morfeo/web: reset css utility prettier (6695398)
  • fonts: new @morfeo/fonts package (68ba391)
  • react: introducing react package (f99da40)
  • svelte: added support to default properties, docs and tests (a734021)
  • gradients parsers added to @morfeo/web package (9bcac4e)
  • lcov reeporter added (2be77a6)
  • morfeo dev tool init (e7975d7)
  • replaced space slice with spacings (9aaf30a)
  • react: import replacing (d07c084)
  • jss package and fix to native test (30b6c4a)
  • readme files added to all the packages (819e60b)
  • styled components for web (e5dee4c)
  • update callback to jss function (6218907)
  • useStyles hooks added (fee9d48)
  • useSubscribe hook introduced (8de68f2)
  • web sandbox improvement (d25758c)
  • web styled-components package introduced (a7677c3)
  • wip of morfeo cli (476d48d)

Reverts

  • Revert "Update getting-started.mdx" (8a275d9)

0.3.1 (2021-11-04)

Bug Fixes

  • benchmarks fixed (fc59036)
  • broken links fixed (c6a32c2)
  • cli handling of shadows fixed and shadow parser improved (7cc1a0a)
  • cli tests timeout (3934743)
  • color detail and extension manifests (d1d38f0)
  • cover image and contributors added in readme (abe4ddb)
  • crash by navigating to a font slice if the fonts slice has no font (cdce5df)
  • deepscan fixes and layout improvements (cf892be)
  • deepscan issue fixed (5a50010)
  • documentation (31c7c6a)
  • documentation website fixes (c15bc81)
  • enable dev tool fixed (75cb87c)
  • fix wrong import on web-sandbox (91cebec)
  • fixed @morfeo/cli tests warnings (605a2ad)
  • fixed typing of packages (57267c5)
  • fixed wrong import inside @morfeo/dev-tools package (a7796e9)
  • google analytics (fdc31af)
  • google analytics (3e68797)
  • package-lock re-introduced (658b335)
  • preset default fixes (f558a11)
  • prettier (2ab1020)
  • prettier (066639a)
  • prettier (57516db)
  • prettier (2c39593)
  • publish workflows (cb79123), closes #106
  • readme files fix and licenses added (c71286a)
  • responsive fix and blog post added (ce4ecd5)
  • responsive values typing (648c4b1), closes #46
  • shadow parser fix & improvements (bb8b7a2)
  • svelte init script (70bc8ec)
  • tests coverage restored to 100% (9abb112)
  • devtool: fix back chevron and slice title (991eb86)
  • devtool: lint (fc92054)
  • styled-components-web packages (9f41713), closes #42
  • used globalThis instead of window inside the dev tool (6f028eb)
  • fonts: fix package.json repo urls (1f0cafe)
  • fonts: prettier (c97f825)

Features

  • 76 (0a3a065)
  • add benchmarks to website (759950d)
  • add theme removal (fb20b50)
  • added borders slice (3cc7c5c)
  • added credits page (51f8da3)
  • added docusaurus and morfeo logo (3dc54f4)
  • added missing icons for slices and new morfeo icon (0c4fdfa)
  • added privacy policy page (162a75a)
  • added pubish config to packages (23241fc)
  • added pwa plugin to documentation website (1808781)
  • added slices and optimizations to dev tool (a53f5e8)
  • added slices handled by dev tools (392779f)
  • all css props mapped and styled components package improved (c3771c6)
  • border slices (746228a)
  • cache and benchmarks (aa360dd)
  • cards list improvements (7a2a13f)
  • class used in morfeo component (38bac81)
  • cli improvements (2ffb4a6)
  • closes #51 (0ab4270)
  • closes #65 (bbf6e32)
  • closes #79 (069f55e)
  • commonjs build included (1b3baa5)
  • component utility introduced (d502a59)
  • compose command wip #40 (199a1c6)
  • compose command wip #40 (0b186f4)
  • cookie acceptance added to docusaurus website (b7b5b23)
  • copy button and stiling improvements (91c30ac)
  • credits page improved (46b95ef)
  • deep scan improvements (014aed3)
  • dev tool documentation added (0c18f58)
  • dev tool refactor (669d709)
  • dev tools improvements (3b5b9d9)
  • devtool config (842b8ff), closes #101
  • devtool massage changed to enable multi theming inside devtool and layout improvement (153fdbc)
  • devtool style improvements for large screens (5ec7145)
  • docs improvements (c25202e)
  • documentation improvements (4ad3b5d)
  • enabled algolia docsearch closes #55 (07950d2)
  • fixed @morfeo/fonts for imported fonts and added utility to add application font inside the web extension (455c83d)
  • flatted parser.resolve method (5ce2c10)
  • gradients slice added and bugfixing (aafb36c)
  • hooks package added (0637789)
  • init of morfeo cli (70a2333)
  • introucing svelte package and sandbox (0e8e9e2)
  • morfeo instance singleton (913370e)
  • native package (356cbd6)
  • post-versioning script (6abf645), closes #90
  • devtool: generic slice route and ui improvements (dcc13dd)
  • devtool: grid (cc93a2c)
  • devtool: init of the new version of the browser extension (cc52f63)
  • preset-default: improved colors, shadows and zindices inside preset-default (f4cf3f2)
  • documentation update (2bf10e7)
  • improved build command (00084bc)
  • improved build command an multi-theme support (c32c006)
  • init of morfeo cli (7a17f70)
  • moved cli inside packages (b8b3b7d)
  • removed style dictionary (019f4fb)
  • watch command tests and optimization (7e2ddb9)
  • preset-default: preset theme package (7a66269)
  • react: added tests (135e445)
  • replacement of assets inside docs and dev-tool, wip of algolia search (c15efe1)
  • useClassName and useClassNames hooks (7825ddd)
  • website link replaced inside readme files (1e55a6d)
  • @morfeo/web: reset css utility (41c291a)
  • @morfeo/web: reset css utility prettier (6695398)
  • fonts: new @morfeo/fonts package (68ba391)
  • react: introducing react package (f99da40)
  • svelte: added support to default properties, docs and tests (a734021)
  • gradients parsers added to @morfeo/web package (9bcac4e)
  • lcov reeporter added (2be77a6)
  • morfeo dev tool init (e7975d7)
  • replaced space slice with spacings (9aaf30a)
  • react: import replacing (d07c084)
  • jss package and fix to native test (30b6c4a)
  • readme files added to all the packages (819e60b)
  • styled components for web (e5dee4c)
  • update callback to jss function (6218907)
  • useStyles hooks added (fee9d48)
  • useSubscribe hook introduced (8de68f2)
  • web sandbox improvement (d25758c)
  • web styled-components package introduced (a7677c3)
  • wip of morfeo cli (476d48d)

Reverts

  • Revert "Update getting-started.mdx" (8a275d9)

0.3.0 (2021-10-30)

Bug Fixes

  • benchmarks fixed (fc59036)
  • broken links fixed (c6a32c2)
  • cli handling of shadows fixed and shadow parser improved (7cc1a0a)
  • cli tests timeout (3934743)
  • color detail and extension manifests (d1d38f0)
  • cover image and contributors added in readme (abe4ddb)
  • deepscan fixes and layout improvements (cf892be)
  • deepscan issue fixed (5a50010)
  • documentation (31c7c6a)
  • enable dev tool fixed (75cb87c)
  • fix wrong import on web-sandbox (91cebec)
  • fixed @morfeo/cli tests warnings (605a2ad)
  • fixed typing of packages (57267c5)
  • fixed wrong import inside @morfeo/dev-tools package (a7796e9)
  • google analytics (fdc31af)
  • google analytics (3e68797)
  • package-lock re-introduced (658b335)
  • preset default fixes (f558a11)
  • prettier (066639a)
  • readme files fix and licenses added (c71286a)
  • svelte init script (70bc8ec)
  • tests coverage restored to 100% (9abb112)
  • devtool: fix back chevron and slice title (991eb86)
  • devtool: lint (fc92054)
  • prettier (57516db)
  • prettier (2c39593)
  • responsive fix and blog post added (ce4ecd5)
  • responsive values typing (648c4b1), closes #46
  • shadow parser fix & improvements (bb8b7a2)
  • styled-components-web packages (9f41713), closes #42
  • used globalThis instead of window inside the dev tool (6f028eb)
  • fonts: fix package.json repo urls (1f0cafe)
  • fonts: prettier (c97f825)

Features

  • 76 (0a3a065)
  • add theme removal (fb20b50)
  • added borders slice (3cc7c5c)
  • added credits page (51f8da3)
  • added docusaurus and morfeo logo (3dc54f4)
  • added missing icons for slices and new morfeo icon (0c4fdfa)
  • added privacy policy page (162a75a)
  • added pubish config to packages (23241fc)
  • added slices and optimizations to dev tool (a53f5e8)
  • added slices handled by dev tools (392779f)
  • all css props mapped and styled components package improved (c3771c6)
  • border slices (746228a)
  • cache and benchmarks (aa360dd)
  • cards list improvements (7a2a13f)
  • class used in morfeo component (38bac81)
  • cli improvements (2ffb4a6)
  • closes #51 (0ab4270)
  • closes #65 (bbf6e32)
  • closes #79 (069f55e)
  • commonjs build included (1b3baa5)
  • component utility introduced (d502a59)
  • compose command wip #40 (199a1c6)
  • compose command wip #40 (0b186f4)
  • cookie acceptance added to docusaurus website (b7b5b23)
  • copy button and stiling improvements (91c30ac)
  • credits page improved (46b95ef)
  • dev tool documentation added (0c18f58)
  • dev tool refactor (669d709)
  • dev tools improvements (3b5b9d9)
  • devtool massage changed to enable multi theming inside devtool and layout improvement (153fdbc)
  • devtool style improvements for large screens (5ec7145)
  • docs improvements (c25202e)
  • documentation improvements (4ad3b5d)
  • enabled algolia docsearch closes #55 (07950d2)
  • fixed @morfeo/fonts for imported fonts and added utility to add application font inside the web extension (455c83d)
  • flatted parser.resolve method (5ce2c10)
  • gradients slice added and bugfixing (aafb36c)
  • hooks package added (0637789)
  • init of morfeo cli (70a2333)
  • introucing svelte package and sandbox (0e8e9e2)
  • jss package and fix to native test (30b6c4a)
  • native package (356cbd6)
  • post-versioning script (6abf645), closes #90
  • devtool: generic slice route and ui improvements (dcc13dd)
  • devtool: grid (cc93a2c)
  • devtool: init of the new version of the browser extension (cc52f63)
  • preset-default: improved colors, shadows and zindices inside preset-default (f4cf3f2)
  • deep scan improvements (014aed3)
  • documentation update (2bf10e7)
  • improved build command (00084bc)
  • improved build command an multi-theme support (c32c006)
  • morfeo instance singleton (913370e)
  • moved cli inside packages (b8b3b7d)
  • removed style dictionary (019f4fb)
  • watch command tests and optimization (7e2ddb9)
  • preset-default: preset theme package (7a66269)
  • react: added tests (135e445)
  • init of morfeo cli (7a17f70)
  • readme files added to all the packages (819e60b)
  • replacement of assets inside docs and dev-tool, wip of algolia search (c15efe1)
  • useClassName and useClassNames hooks (7825ddd)
  • website link replaced inside readme files (1e55a6d)
  • @morfeo/web: reset css utility (41c291a)
  • @morfeo/web: reset css utility prettier (6695398)
  • fonts: new @morfeo/fonts package (68ba391)
  • react: import replacing (d07c084)
  • svelte: added support to default properties, docs and tests (a734021)
  • gradients parsers added to @morfeo/web package (9bcac4e)
  • lcov reeporter added (2be77a6)
  • morfeo dev tool init (e7975d7)
  • replaced space slice with spacings (9aaf30a)
  • react: introducing react package (f99da40)
  • styled components for web (e5dee4c)
  • update callback to jss function (6218907)
  • useStyles hooks added (fee9d48)
  • useSubscribe hook introduced (8de68f2)
  • web sandbox improvement (d25758c)
  • web styled-components package introduced (a7677c3)
  • wip of morfeo cli (476d48d)

Reverts

  • Revert "Update getting-started.mdx" (8a275d9)

0.2.0 (2021-08-08)

Bug Fixes

  • benchmarks fixed (fc59036)
  • broken links fixed (c6a32c2)
  • cli tests timeout (3934743)
  • documentation (31c7c6a)
  • enable dev tool fixed (75cb87c)
  • fix wrong import on web-sandbox (91cebec)
  • fixed @morfeo/cli tests warnings (605a2ad)
  • fixed typing of packages (57267c5)
  • fixed wrong import inside @morfeo/dev-tools package (a7796e9)
  • google analytics (fdc31af)
  • google analytics (3e68797)
  • package-lock re-introduced (658b335)
  • prettier (2c39593)
  • readme files fix and licenses added (c71286a)
  • responsive fix and blog post added (ce4ecd5)
  • responsive values typing (648c4b1), closes #46
  • styled-components-web packages (9f41713), closes #42
  • used globalThis instead of window inside the dev tool (6f028eb)
  • fonts: fix package.json repo urls (1f0cafe)
  • fonts: prettier (c97f825)

Features

  • add theme removal (fb20b50)
  • added docusaurus and morfeo logo (3dc54f4)
  • added privacy policy page (162a75a)
  • added pubish config to packages (23241fc)
  • added slices and optimizations to dev tool (a53f5e8)
  • added slices handled by dev tools (392779f)
  • all css props mapped and styled components package improved (c3771c6)
  • cache and benchmarks (aa360dd)
  • closes #51 (0ab4270)
  • closes #65 (bbf6e32)
  • commonjs build included (1b3baa5)
  • component utility introduced (d502a59)
  • cookie acceptance added to docusaurus website (b7b5b23)
  • dev tool documentation added (0c18f58)
  • dev tools improvements (3b5b9d9)
  • docs improvements (c25202e)
  • documentation update (2bf10e7)
  • preset-default: preset theme package (7a66269)
  • dev tool refactor (669d709)
  • documentation improvements (4ad3b5d)
  • enabled algolia docsearch closes #55 (07950d2)
  • flatted parser.resolve method (5ce2c10)
  • gradients parsers added to @morfeo/web package (9bcac4e)
  • hooks package added (0637789)
  • improved build command (00084bc)
  • improved build command an multi-theme support (c32c006)
  • init of morfeo cli (7a17f70)
  • init of morfeo cli (70a2333)
  • introucing svelte package and sandbox (0e8e9e2)
  • jss package and fix to native test (30b6c4a)
  • lcov reeporter added (2be77a6)
  • morfeo dev tool init (e7975d7)
  • moved cli inside packages (b8b3b7d)
  • native package (356cbd6)
  • readme files added to all the packages (819e60b)
  • removed style dictionary (019f4fb)
  • replaced space slice with spacings (9aaf30a)
  • replacement of assets inside docs and dev-tool, wip of algolia search (c15efe1)
  • useStyles hooks added (fee9d48)
  • web sandbox improvement (d25758c)
  • web styled-components package introduced (a7677c3)
  • website link replaced inside readme files (1e55a6d)
  • wip of morfeo cli (476d48d)
  • @morfeo/web: reset css utility (41c291a)
  • @morfeo/web: reset css utility prettier (6695398)
  • fonts: new @morfeo/fonts package (68ba391)
  • react: import replacing (d07c084)
  • react: introducing react package (f99da40)
  • svelte: added support to default properties, docs and tests (a734021)
  • styled components for web (e5dee4c)
  • update callback to jss function (6218907)
  • useSubscribe hook introduced (8de68f2)

Reverts

  • Revert "Update getting-started.mdx" (8a275d9)

0.1.8 (2021-07-19)

Bug Fixes

  • benchmarks fixed (fc59036)
  • documentation (31c7c6a)
  • fix wrong import on web-sandbox (91cebec)
  • fixed typing of packages (57267c5)
  • fixed wrong import inside @morfeo/dev-tools package (a7796e9)
  • google analytics (fdc31af)
  • google analytics (3e68797)
  • package-lock re-introduced (658b335)
  • prettier (2c39593)
  • readme files fix and licenses added (c71286a)
  • responsive fix and blog post added (ce4ecd5)
  • responsive values typing (648c4b1), closes #46
  • styled-components-web packages (9f41713), closes #42
  • used globalThis instead of window inside the dev tool (6f028eb)
  • fonts: fix package.json repo urls (1f0cafe)
  • fonts: prettier (c97f825)

Features

  • added docusaurus and morfeo logo (3dc54f4)
  • added privacy policy page (162a75a)
  • added pubish config to packages (23241fc)
  • added slices and optimizations to dev tool (a53f5e8)
  • added slices handled by dev tools (392779f)
  • all css props mapped and styled components package improved (c3771c6)
  • cache and benchmarks (aa360dd)
  • closes #51 (0ab4270)
  • component utility introduced (d502a59)
  • cookie acceptance added to docusaurus website (b7b5b23)
  • dev tool documentation added (0c18f58)
  • dev tool refactor (669d709)
  • dev tools improvements (3b5b9d9)
  • docs improvements (c25202e)
  • documentation improvements (4ad3b5d)
  • flatted parser.resolve method (5ce2c10)
  • hooks package added (0637789)
  • introucing svelte package and sandbox (0e8e9e2)
  • jss package and fix to native test (30b6c4a)
  • native package (356cbd6)
  • readme files added to all the packages (819e60b)
  • replacement of assets inside docs and dev-tool, wip of algolia search (c15efe1)
  • website link replaced inside readme files (1e55a6d)
  • @morfeo/web: reset css utility (41c291a)
  • @morfeo/web: reset css utility prettier (6695398)
  • fonts: new @morfeo/fonts package (68ba391)
  • react: import replacing (d07c084)
  • svelte: added support to default properties, docs and tests (a734021)
  • gradients parsers added to @morfeo/web package (9bcac4e)
  • lcov reeporter added (2be77a6)
  • morfeo dev tool init (e7975d7)
  • replaced space slice with spacings (9aaf30a)
  • react: introducing react package (f99da40)
  • styled components for web (e5dee4c)
  • update callback to jss function (6218907)
  • useStyles hooks added (fee9d48)
  • useSubscribe hook introduced (8de68f2)
  • web sandbox improvement (d25758c)
  • web styled-components package introduced (a7677c3)

Reverts

  • Revert "Update getting-started.mdx" (8a275d9)

0.1.7 (2021-07-14)

Bug Fixes

  • benchmarks fixed (fc59036)
  • documentation (31c7c6a)
  • fix wrong import on web-sandbox (91cebec)
  • fixed typing of packages (57267c5)
  • fixed wrong import inside @morfeo/dev-tools package (a7796e9)
  • google analytics (fdc31af)
  • google analytics (3e68797)
  • package-lock re-introduced (658b335)
  • prettier (2c39593)
  • readme files fix and licenses added (c71286a)
  • responsive fix and blog post added (ce4ecd5)
  • responsive values typing (648c4b1), closes #46
  • styled-components-web packages (9f41713), closes #42
  • used globalThis instead of window inside the dev tool (6f028eb)
  • fonts: fix package.json repo urls (1f0cafe)
  • fonts: prettier (c97f825)

Features

  • added docusaurus and morfeo logo (3dc54f4)
  • added privacy policy page (162a75a)
  • added pubish config to packages (23241fc)
  • added slices and optimizations to dev tool (a53f5e8)
  • added slices handled by dev tools (392779f)
  • all css props mapped and styled components package improved (c3771c6)
  • cache and benchmarks (aa360dd)
  • component utility introduced (d502a59)
  • cookie acceptance added to docusaurus website (b7b5b23)
  • dev tool documentation added (0c18f58)
  • dev tool refactor (669d709)
  • dev tools improvements (3b5b9d9)
  • documentation improvements (4ad3b5d)
  • flatted parser.resolve method (5ce2c10)
  • hooks package added (0637789)
  • introucing svelte package and sandbox (0e8e9e2)
  • jss package and fix to native test (30b6c4a)
  • native package (356cbd6)
  • readme files added to all the packages (819e60b)
  • replaced space slice with spacings (9aaf30a)
  • replacement of assets inside docs and dev-tool, wip of algolia search (c15efe1)
  • website link replaced inside readme files (1e55a6d)
  • @morfeo/web: reset css utility (41c291a)
  • @morfeo/web: reset css utility prettier (6695398)
  • fonts: new @morfeo/fonts package (68ba391)
  • react: introducing react package (f99da40)
  • svelte: added support to default properties, docs and tests (a734021)
  • gradients parsers added to @morfeo/web package (9bcac4e)
  • lcov reeporter added (2be77a6)
  • morfeo dev tool init (e7975d7)
  • react: import replacing (d07c084)
  • styled components for web (e5dee4c)
  • update callback to jss function (6218907)
  • useStyles hooks added (fee9d48)
  • useSubscribe hook introduced (8de68f2)
  • web sandbox improvement (d25758c)
  • web styled-components package introduced (a7677c3)

Reverts

  • Revert "Update getting-started.mdx" (8a275d9)

0.1.6 (2021-06-27)

Bug Fixes

  • responsive fix and blog post added (ce4ecd5)
  • fonts: fix package.json repo urls (1f0cafe)
  • fonts: prettier (c97f825)
  • benchmarks fixed (fc59036)
  • documentation (31c7c6a)
  • fix wrong import on web-sandbox (91cebec)
  • fixed typing of packages (57267c5)
  • fixed wrong import inside @morfeo/dev-tools package (a7796e9)
  • package-lock re-introduced (658b335)
  • prettier (2c39593)
  • readme files fix and licenses added (c71286a)

Features

  • added docusaurus and morfeo logo (3dc54f4)
  • website link replaced inside readme files (1e55a6d)
  • @morfeo/web: reset css utility (41c291a)
  • @morfeo/web: reset css utility prettier (6695398)
  • fonts: new @morfeo/fonts package (68ba391)
  • svelte: added support to default properties, docs and tests (a734021)
  • added pubish config to packages (23241fc)
  • added slices and optimizations to dev tool (a53f5e8)
  • added slices handled by dev tools (392779f)
  • all css props mapped and styled components package improved (c3771c6)
  • cache and benchmarks (aa360dd)
  • component utility introduced (d502a59)
  • dev tool refactor (669d709)
  • dev tools improvements (3b5b9d9)
  • gradients parsers added to @morfeo/web package (9bcac4e)
  • hooks package added (0637789)
  • lcov reeporter added (2be77a6)
  • morfeo dev tool init (e7975d7)
  • replaced space slice with spacings (9aaf30a)
  • react: import replacing (d07c084)
  • react: introducing react package (f99da40)
  • flatted parser.resolve method (5ce2c10)
  • introucing svelte package and sandbox (0e8e9e2)
  • jss package and fix to native test (30b6c4a)
  • native package (356cbd6)
  • readme files added to all the packages (819e60b)
  • styled components for web (e5dee4c)
  • update callback to jss function (6218907)
  • useStyles hooks added (fee9d48)
  • useSubscribe hook introduced (8de68f2)
  • web sandbox improvement (d25758c)
  • web styled-components package introduced (a7677c3)

0.1.5 (2021-05-23)

Bug Fixes

  • fix wrong import on web-sandbox (91cebec)
  • fixed typing of packages (57267c5)
  • prettier (2c39593)
  • readme files fix and licenses added (c71286a)

Features

  • react: import replacing (d07c084)
  • react: introducing react package (f99da40)
  • added pubish config to packages (23241fc)
  • all css props mapped and styled components package improved (c3771c6)
  • cache and benchmarks (aa360dd)
  • flatted parser.resolve method (5ce2c10)
  • hooks package added (0637789)
  • introucing svelte package and sandbox (0e8e9e2)
  • jss package and fix to native test (30b6c4a)
  • native package (356cbd6)
  • readme files added to all the packages (819e60b)
  • styled components for web (e5dee4c)
  • update callback to jss function (6218907)
  • useStyles hooks added (fee9d48)
  • useSubscribe hook introduced (8de68f2)
  • web sandbox improvement (d25758c)
  • web styled-components package introduced (a7677c3)

0.1.4 (2021-05-22)

Bug Fixes

Features

  • added pubish config to packages (23241fc)
  • all css props mapped and styled components package improved (c3771c6)
  • cache and benchmarks (aa360dd)
  • flatted parser.resolve method (5ce2c10)
  • hooks package added (0637789)
  • introucing svelte package and sandbox (0e8e9e2)
  • jss package and fix to native test (30b6c4a)
  • native package (356cbd6)
  • readme files added to all the packages (819e60b)
  • styled components for web (e5dee4c)
  • update callback to jss function (6218907)
  • useStyles hooks added (fee9d48)
  • useSubscribe hook introduced (8de68f2)
  • web sandbox improvement (d25758c)
  • web styled-components package introduced (a7677c3)

0.1.3 (2021-05-21)

Bug Fixes

Features

  • added pubish config to packages (23241fc)
  • all css props mapped and styled components package improved (c3771c6)
  • cache and benchmarks (aa360dd)
  • flatted parser.resolve method (5ce2c10)
  • hooks package added (0637789)
  • introucing svelte package and sandbox (0e8e9e2)
  • jss package and fix to native test (30b6c4a)
  • native package (356cbd6)
  • styled components for web (e5dee4c)
  • update callback to jss function (6218907)
  • useStyles hooks added (fee9d48)
  • useSubscribe hook introduced (8de68f2)
  • web sandbox improvement (d25758c)
  • web styled-components package introduced (a7677c3)

0.1.2 (2021-05-20)

Bug Fixes

Features

  • added pubish config to packages (23241fc)
  • all css props mapped and styled components package improved (c3771c6)
  • cache and benchmarks (aa360dd)
  • flatted parser.resolve method (5ce2c10)
  • hooks package added (0637789)
  • introucing svelte package and sandbox (0e8e9e2)
  • jss package and fix to native test (30b6c4a)
  • native package (356cbd6)
  • styled components for web (e5dee4c)
  • update callback to jss function (6218907)
  • useStyles hooks added (fee9d48)
  • web sandbox improvement (d25758c)
  • web styled-components package introduced (a7677c3)

0.1.1 (2021-05-20)

Bug Fixes

Features

  • added pubish config to packages (23241fc)
  • all css props mapped and styled components package improved (c3771c6)
  • cache and benchmarks (aa360dd)
  • flatted parser.resolve method (5ce2c10)
  • hooks package added (0637789)
  • introucing svelte package and sandbox (0e8e9e2)
  • jss package and fix to native test (30b6c4a)
  • native package (356cbd6)
  • styled components for web (e5dee4c)
  • useStyles hooks added (fee9d48)
  • web sandbox improvement (d25758c)
  • web styled-components package introduced (a7677c3)

0.1.0 (2021-05-19)

Bug Fixes

  • fixed typing of packages (57267c5)

Features

  • added pubish config to packages (23241fc)
  • all css props mapped and styled components package improved (c3771c6)
  • cache and benchmarks (aa360dd)
  • flatted parser.resolve method (5ce2c10)
  • hooks package added (0637789)
  • jss package and fix to native test (30b6c4a)
  • native package (356cbd6)
  • styled components for web (e5dee4c)
  • useStyles hooks added (fee9d48)
  • web sandbox improvement (d25758c)
  • web styled-components package introduced (a7677c3)

0.0.9 (2021-05-18)

Bug Fixes

  • fixed typing of packages (57267c5)

Features

  • added pubish config to packages (23241fc)
  • all css props mapped and styled components package improved (c3771c6)
  • cache and benchmarks (aa360dd)
  • hooks package added (0637789)
  • jss package and fix to native test (30b6c4a)
  • native package (356cbd6)
  • styled components for web (e5dee4c)
  • useStyles hooks added (fee9d48)
  • web sandbox improvement (d25758c)
  • web styled-components package introduced (a7677c3)

0.0.8 (2021-05-16)

Bug Fixes

  • fixed typing of packages (57267c5)

Features

  • added pubish config to packages (23241fc)
  • all css props mapped and styled components package improved (c3771c6)
  • cache and benchmarks (aa360dd)
  • hooks package added (0637789)
  • native package (356cbd6)
  • styled components for web (e5dee4c)
  • useStyles hooks added (fee9d48)
  • web sandbox improvement (d25758c)
  • web styled-components package introduced (a7677c3)

0.0.7 (2021-05-14)

Bug Fixes

  • fixed typing of packages (57267c5)

Features

  • added pubish config to packages (23241fc)
  • all css props mapped and styled components package improved (c3771c6)
  • hooks package added (0637789)
  • native package (356cbd6)
  • styled components for web (e5dee4c)
  • useStyles hooks added (fee9d48)
  • web sandbox improvement (d25758c)
  • web styled-components package introduced (a7677c3)

0.0.6 (2021-05-13)

Bug Fixes

  • fixed typing of packages (57267c5)

Features

  • added pubish config to packages (23241fc)
  • all css props mapped and styled components package improved (c3771c6)
  • hooks package added (0637789)
  • native package (356cbd6)
  • styled components for web (e5dee4c)
  • useStyles hooks added (fee9d48)
  • web sandbox improvement (d25758c)
  • web styled-components package introduced (a7677c3)

0.0.5 (2021-05-13)

Bug Fixes

  • fixed typing of packages (57267c5)

Features

  • added pubish config to packages (23241fc)
  • all css props mapped and styled components package improved (c3771c6)
  • hooks package added (0637789)
  • native package (356cbd6)
  • styled components for web (e5dee4c)
  • useStyles hooks added (fee9d48)
  • web sandbox improvement (d25758c)
  • web styled-components package introduced (a7677c3)

0.0.4 (2021-05-13)

Bug Fixes

  • fixed typing of packages (57267c5)

Features

  • added pubish config to packages (23241fc)
  • all css props mapped and styled components package improved (c3771c6)
  • hooks package added (0637789)
  • native package (356cbd6)
  • styled components for web (e5dee4c)
  • useStyles hooks added (fee9d48)
  • web sandbox improvement (d25758c)
  • web styled-components package introduced (a7677c3)

0.0.3 (2021-05-06)

Bug Fixes

  • fixed typing of packages (57267c5)

Features

  • added pubish config to packages (23241fc)
  • hooks package added (0637789)
  • web sandbox improvement (d25758c)

0.0.2 (2021-05-06)

Bug Fixes

  • fixed typing of packages (57267c5)

Features

  • added pubish config to packages (23241fc)
  • hooks package added (0637789)
  • web sandbox improvement (d25758c)