@australiangreens/ag-internal-components 0.0.45 → 0.0.47

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.
@@ -0,0 +1,6 @@
1
+ interface SettingsEtcPlaceholderProps {
2
+ navBarOpen: boolean;
3
+ }
4
+ export default function SettingsEtcPlaceholder({ navBarOpen }: SettingsEtcPlaceholderProps): JSX.Element;
5
+ export {};
6
+ //# sourceMappingURL=SettingsEtcPlaceholder.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"SettingsEtcPlaceholder.d.ts","sourceRoot":"","sources":["../../../../../src/layouts/AppLayout/NavBar/SettingsEtcPlaceholder.tsx"],"names":[],"mappings":"AAUA,UAAU,2BAA2B;IACnC,UAAU,EAAE,OAAO,CAAC;CACrB;AAED,MAAM,CAAC,OAAO,UAAU,sBAAsB,CAAC,EAAE,UAAU,EAAE,EAAE,2BAA2B,eA0CzF"}
@@ -1 +1 @@
1
- {"version":3,"file":"Styling.d.ts","sourceRoot":"","sources":["../../../../../src/layouts/AppLayout/NavBar/Styling.tsx"],"names":[],"mappings":";AAAA,OAAO,EAAqB,KAAK,EAAE,MAAM,sBAAsB,CAAC;AAKhE,eAAO,MAAM,OAAO;;;;;CAQnB,CAAC;AAEF,eAAO,MAAM,IAAI,yTAuBd,CAAC;AA+BJ,UAAU,cAAc;IACtB,IAAI,EAAE,OAAO,CAAC;IACd,SAAS,EAAE,MAAM,CAAC;IAClB,WAAW,EAAE,MAAM,CAAC;IACpB,SAAS,EAAE,MAAM,CAAC;CACnB;AAED,eAAO,MAAM,SAAS,oKAgBnB,CAAC"}
1
+ {"version":3,"file":"Styling.d.ts","sourceRoot":"","sources":["../../../../../src/layouts/AppLayout/NavBar/Styling.tsx"],"names":[],"mappings":";AAAA,OAAO,EAAqB,KAAK,EAAE,MAAM,sBAAsB,CAAC;AAKhE,eAAO,MAAM,OAAO;;;;;CAQnB,CAAC;AAEF,eAAO,MAAM,IAAI,yTAuBd,CAAC;AA+BJ,UAAU,cAAc;IACtB,IAAI,EAAE,OAAO,CAAC;IACd,SAAS,EAAE,MAAM,CAAC;IAClB,WAAW,EAAE,MAAM,CAAC;IACpB,SAAS,EAAE,MAAM,CAAC;CACnB;AAED,eAAO,MAAM,SAAS,oKAkBnB,CAAC"}
@@ -3,6 +3,7 @@ import { User } from './types';
3
3
  export interface UserInfoProps {
4
4
  user?: User;
5
5
  domainCode?: DomainCode;
6
+ open: boolean;
6
7
  }
7
8
  /**
8
9
  * If user has a defined name and a valid url for picture, the picture will for
@@ -15,5 +16,5 @@ export interface UserInfoProps {
15
16
  * If user is undefined or the name is undefined, a generic empty avatar image
16
17
  * will be displayed.
17
18
  */
18
- export default function UserInfo({ user, domainCode }: UserInfoProps): JSX.Element;
19
+ export default function UserInfo({ user, domainCode, open }: UserInfoProps): JSX.Element;
19
20
  //# sourceMappingURL=UserInfo.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"UserInfo.d.ts","sourceRoot":"","sources":["../../../../../src/layouts/AppLayout/NavBar/UserInfo.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAEjD,OAAO,EAAE,IAAI,EAAE,MAAM,SAAS,CAAC;AAmB/B,MAAM,WAAW,aAAa;IAC5B,IAAI,CAAC,EAAE,IAAI,CAAC;IACZ,UAAU,CAAC,EAAE,UAAU,CAAC;CACzB;AAED;;;;;;;;;;GAUG;AACH,MAAM,CAAC,OAAO,UAAU,QAAQ,CAAC,EAAE,IAAI,EAAE,UAAU,EAAE,EAAE,aAAa,eAgCnE"}
1
+ {"version":3,"file":"UserInfo.d.ts","sourceRoot":"","sources":["../../../../../src/layouts/AppLayout/NavBar/UserInfo.tsx"],"names":[],"mappings":"AAGA,OAAO,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAEjD,OAAO,EAAE,IAAI,EAAE,MAAM,SAAS,CAAC;AAe/B,MAAM,WAAW,aAAa;IAC5B,IAAI,CAAC,EAAE,IAAI,CAAC;IACZ,UAAU,CAAC,EAAE,UAAU,CAAC;IACxB,IAAI,EAAE,OAAO,CAAC;CACf;AAED;;;;;;;;;;GAUG;AACH,MAAM,CAAC,OAAO,UAAU,QAAQ,CAAC,EAAE,IAAI,EAAE,UAAU,EAAE,IAAI,EAAE,EAAE,aAAa,eAyEzE"}
@@ -1,4 +1,4 @@
1
- import { createStore, useAtom, useAtomValue, useSetAtom } from 'jotai';
1
+ import { createStore } from 'jotai';
2
2
  import { PropsWithChildren } from 'react';
3
3
  export declare const atomStore: {
4
4
  get: <Value>(atom: import("jotai").Atom<Value>) => Value;
@@ -96,7 +96,4 @@ export declare const AtomProvider: ({ children, store, }: PropsWithChildren<{
96
96
  dev_restore_atoms?: undefined;
97
97
  } | undefined;
98
98
  }>) => JSX.Element;
99
- export declare const useLibraryAtom: typeof useAtom;
100
- export declare const useSetLibraryAtom: typeof useSetAtom;
101
- export declare const useLibraryAtomValue: typeof useAtomValue;
102
99
  //# sourceMappingURL=AtomProvider.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"AtomProvider.d.ts","sourceRoot":"","sources":["../../../../src/providers/Atom/AtomProvider.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAY,WAAW,EAAmB,OAAO,EAAE,YAAY,EAAE,UAAU,EAAE,MAAM,OAAO,CAAC;AAClG,OAAO,EAAE,iBAAiB,EAAE,MAAM,OAAO,CAAC;AAE1C,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAAoB,CAAC;AAE3C,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBAKxB,CAAC;AAEF,eAAO,MAAM,cAAc,EAAE,OAAO,OAClB,CAAC;AAEnB,eAAO,MAAM,iBAAiB,EAAE,OAAO,UAEf,CAAC;AAEzB,eAAO,MAAM,mBAAmB,EAAE,OAAO,YAER,CAAC"}
1
+ {"version":3,"file":"AtomProvider.d.ts","sourceRoot":"","sources":["../../../../src/providers/Atom/AtomProvider.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAY,WAAW,EAAmB,MAAM,OAAO,CAAC;AAC/D,OAAO,EAAE,iBAAiB,EAAE,MAAM,OAAO,CAAC;AAE1C,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAAoB,CAAC;AAE3C,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBAKxB,CAAC"}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@australiangreens/ag-internal-components",
3
3
  "private": false,
4
- "version": "0.0.45",
4
+ "version": "0.0.47",
5
5
  "type": "module",
6
6
  "homepage": "https://github.com/australiangreens/ag-internal-components#readme",
7
7
  "license": "MIT",