Skip to content

Releases: epignosis/gnosis

v2.1.2

01 Feb 12:47
Compare
Choose a tag to compare

2.1.2 (2022-02-01)

v2.1.1

27 Jan 13:32
Compare
Choose a tag to compare

2.1.1 (2022-01-27)

v2.1.0

27 Jan 12:39
Compare
Choose a tag to compare

2.1.0 (2022-01-27)

Features

  • new API of Badge component (9da145c)

v2.0.0

21 Jan 08:26
Compare
Choose a tag to compare

2.0.0 (2022-01-21)

💥 Breaking changes

There 2 breaking changes:

  • remove responsiveView from Pagination component
// before v2.0.0
<Pagination
  current={1}
  totalPages={3}
  onChange={() => {}}
  responsiveView={true}
/>

// after v2.0.0
<Pagination
  current={1}
  totalPages={3}
  onChange={() => {}}
/>
  • removereact-toastify wrapper component and styles. We strongly recommend to upgrade to the latest react-toastify and just move your styles there.
// before v2.0.0
import { Toaster, toast } from "@epignosis_llc/gnosis";

// after v2.0.0
// Create your custom Toaster component and theme it (example code below): 
import React from "react";
import { ToastContainer } from "react-toastify";
import "react-toastify/dist/ReactToastify.css";
import "./custom/styles.css";

const Toaster = () => (
  <ToastContainer
    position="top-right"
    icon={false}
  />
);

// fix the imports
import { toast, ToastOptions } from "react-toastify";
import Toaster from "./path/to/Toaster";

v2.0.0-beta.1

20 Jan 13:13
Compare
Choose a tag to compare
v2.0.0-beta.1 Pre-release
Pre-release

2.0.0-beta.1 (2022-01-20)

v1.3.4

24 Dec 09:35
Compare
Choose a tag to compare

1.3.4 (2021-12-24)

v1.3.3

09 Dec 09:37
Compare
Choose a tag to compare

1.3.3 (2021-12-09)

v1.3.2

22 Nov 14:37
Compare
Choose a tag to compare

1.3.2 (2021-11-22)

Bug Fixes

  • toaster: export toaster's notification function (34b6dba)

v1.3.1

22 Nov 11:38
Compare
Choose a tag to compare

1.3.1 (2021-11-22)

Bug Fixes

v1.3.0

18 Nov 10:34
Compare
Choose a tag to compare

1.3.0 (2021-11-18)

Features

  • add container attributes (ids, classNames, etc.) to ALL components (85882b2)