@proprioo/salatim 28.3.1 → 28.4.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  ## Changelog
2
2
 
3
+ **28.4.1**
4
+
5
+ * Fix: build trouble with styled-component (n.div is not a function)
6
+
7
+ **28.4.0**
8
+
9
+ * Chore: bump packages
10
+
11
+ **28.3.2**
12
+
13
+ * Fix: <Tag/> add hover to delete button
14
+
3
15
  **28.3.1**
4
16
 
5
17
  * Fix: avoid propagation click scrollbar
@@ -1,3 +1,3 @@
1
1
  import { Moment } from 'moment';
2
- export declare type nullOrDate = Date | null;
3
- export declare type CustomDate = Moment | nullOrDate;
2
+ export type nullOrDate = Date | null;
3
+ export type CustomDate = Moment | nullOrDate;