@autobusal/providers 1.0.21 → 1.0.23

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.
@@ -51,7 +51,7 @@ const GlobalStyles = createGlobalStyle`
51
51
  padding: 0;
52
52
  font-weight: 700;
53
53
  line-height: ${ props => props.theme.lineHeight.title };
54
- font-family: ${ props => props.theme.fontFamily.title };
54
+ font-family: ${ props => props.theme.fontFamily.title }, sans-serif;
55
55
  }
56
56
 
57
57
  h1 {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@autobusal/providers",
3
- "version": "1.0.21",
3
+ "version": "1.0.23",
4
4
  "type": "module",
5
5
  "main": "index.ts",
6
6
  "dependencies": {
package/stores/user.ts CHANGED
@@ -1,8 +1,5 @@
1
1
  import { create } from 'zustand';
2
-
3
- export interface UserData {
4
- user: any
5
- }
2
+ import { UserData } from '../types';
6
3
 
7
4
  const user = localStorage.getItem('user') ? JSON.parse(localStorage.getItem('user') ?? '[]') : null;
8
5
 
package/types.ts CHANGED
@@ -40,4 +40,8 @@ export interface MenuData {
40
40
  new: 'yes' | 'no'
41
41
  children: MenuData[]
42
42
  location: 'any' | 'left' | 'right'
43
+ }
44
+
45
+ export interface UserData {
46
+ user: any
43
47
  }