utopia-ui 3.0.0-alpha.84 → 3.0.0-alpha.86

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,6 @@
1
1
  /// <reference types="react" />
2
2
  export declare const CircleLayout: ({ items, radius, fontSize }: {
3
3
  items: any;
4
- radius: any;
4
+ radius: number;
5
5
  fontSize: any;
6
6
  }) => JSX.Element;
@@ -1,6 +1,7 @@
1
1
  import * as React from 'react';
2
- export declare function MapOverlayPage({ children, className, backdrop }: {
2
+ export declare function MapOverlayPage({ children, className, backdrop, card }: {
3
3
  children: React.ReactNode;
4
4
  className?: string;
5
5
  backdrop?: boolean;
6
+ card?: boolean;
6
7
  }): JSX.Element;
@@ -1,3 +1,7 @@
1
1
  export declare const LUNAR_MONTH: number;
2
- export declare const getNextNewMoon: (date?: Date) => Date;
2
+ export declare const getJulianDate: (date?: Date) => number;
3
+ export declare const normalize: (value: number) => number;
4
+ export declare const getLunarAgePercent: (date?: Date) => number;
5
+ export declare const getLunarAge: (date?: Date) => number;
6
+ export declare const getNextNewMoon: () => Date;
3
7
  export declare const getLastNewMoon: (date?: Date) => Date;