utopia-ui 3.0.0-alpha.78 → 3.0.0-alpha.79

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.
@@ -1,6 +1,7 @@
1
1
  /// <reference types="react" />
2
2
  import { Item } from '../../../../types';
3
- export declare const TextView: ({ item, truncate }: {
3
+ export declare const TextView: ({ item, truncate, itemTextField }: {
4
4
  item?: Item | undefined;
5
5
  truncate?: boolean | undefined;
6
+ itemTextField?: string | undefined;
6
7
  }) => JSX.Element;
@@ -0,0 +1,6 @@
1
+ /// <reference types="react" />
2
+ export declare const CircleLayout: ({ items, radius, fontSize }: {
3
+ items: any;
4
+ radius: any;
5
+ fontSize: any;
6
+ }) => JSX.Element;
@@ -0,0 +1,2 @@
1
+ /// <reference types="react" />
2
+ export declare const MoonCalendar: () => JSX.Element;
@@ -1,3 +1,5 @@
1
1
  export { CardPage } from './CardPage';
2
2
  export { TitleCard } from './TitleCard';
3
3
  export { MapOverlayPage } from './MapOverlayPage';
4
+ export { CircleLayout } from './CircleLayout';
5
+ export { MoonCalendar } from './MoonCalendar';
@@ -0,0 +1,3 @@
1
+ export declare const LUNAR_MONTH: number;
2
+ export declare const getNextNewMoon: (date?: Date) => Date;
3
+ export declare const getLastNewMoon: (date?: Date) => Date;
package/dist/index.d.ts CHANGED
@@ -3,7 +3,7 @@ export { AppShell, Content, SideBar } from "./Components/AppShell";
3
3
  export { AuthProvider, useAuth, LoginPage, SignupPage, RequestPasswordPage, SetNewPasswordPage } from "./Components/Auth";
4
4
  export { UserSettings, ProfileSettings, OverlayProfile, OverlayProfileSettings, OverlayUserSettings } from './Components/Profile';
5
5
  export { Quests, Modal } from './Components/Gaming';
6
- export { TitleCard, CardPage } from './Components/Templates';
6
+ export { TitleCard, CardPage, MapOverlayPage, CircleLayout, MoonCalendar } from './Components/Templates';
7
7
  export { TextInput, TextAreaInput, SelectBox } from './Components/Input';
8
8
  import "./index.css";
9
9
  declare global {