Skip to content

Latest commit

 

History

History
125 lines (67 loc) · 5.17 KB

CHANGELOG.md

File metadata and controls

125 lines (67 loc) · 5.17 KB

0.4.0 (2020-07-22)

Bug Fixes

  • buttons: update icon Buttons syntax as recommended in @windmill/react-ui (15260fd)
  • sidebar: hide sidebar until lg breakpoint for a better experience on tablets (57293d9), closes #3

Features

  • app: add antialiased font smoothing (2355363)

BREAKING CHANGES

  • sidebar: The sidebar now only shows from lg breakpoint up, instead of md. This should create a better experience on smaller screens, especially tablets.

0.3.2 (2020-07-21)

Bug Fixes

  • modal: improve button visibility between sm and md breakpoints (f9dc194)

0.3.1 (2020-07-21)

Bug Fixes

  • windmill: bump @windmill/react-ui from 0.3.0 to 0.3.1 (2d3499c)

0.3.0 (2020-07-21)

Bug Fixes

  • windmill: bump windmill to the scoped package (dad6261)

BREAKING CHANGES

  • windmill: Changed every occurrence of windmill-react-ui with the scoped @windmill/react-ui. You should see no difference updating and you should update, as the other project is now deprecated and will no longer be developed. This was needed because the windmill org was in dispute and npm solved it today.

0.2.2 (2020-07-19)

Bug Fixes

  • env: use cross-env for env variables (18fdfda)
  • windmill: bump windmill-react-ui from 0.1.2-beta.0 to 0.1.2 (07dcf08)

0.2.1 (2020-07-17)

Bug Fixes

  • header: fix bleeding header shadow (4eef708)

0.2.0 (2020-07-17)

Bug Fixes

  • favicon: update logo for pwa (5e788d2)

Features

  • global: update windmill-react-ui (6c5c3c0)
  • serviceworker: activate service worker (984dd8b)

BREAKING CHANGES

  • global: Now you need to wrap the entire tailwind config object with Windmill's config wrapper. There is no need to use Windmill plugin or purge anymore.

Complete example:

const defaultTheme = require('tailwindcss/defaultTheme')
const windmill = require('windmill-react-ui/config')

module.exports = windmill({
  purge: ['src/**/*.js'],
  theme: {
    extend: {
      fontFamily: {
        sans: ['Inter', ...defaultTheme.fontFamily.sans],
      },
    },
  },
})

0.1.0 (2020-07-14)

Features

  • global: upgrade to last windmill-ui version (708fce4)

0.1.0-alpha.2 (2020-07-07)

Bug Fixes

  • avatar: update avatar image syntax (e16ea68)
  • layout: increase header and sidebar z-index (c948638)
  • routes: redirect index to login (06405ac)

BREAKING CHANGES

  • avatar: Avatar, with the udate to windmill-react-ui-alpha.10, now uses src instead of img to pass the image path to the inner image, to better resemble the actual element underneath
  • layout: increased z-index for header and sidebar

0.1.0-alpha.1 (2020-07-01)