utopia-ui 3.0.0-alpha.88 → 3.0.0-alpha.89
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/dist/Components/AppShell/Content.d.ts +1 -1
- package/dist/Components/AppShell/NavBar.d.ts +1 -2
- package/dist/Components/AppShell/SideBar.d.ts +1 -1
- package/dist/Components/AppShell/SidebarSubmenu.d.ts +1 -1
- package/dist/Components/Gaming/Modal.d.ts +1 -1
- package/dist/Components/Gaming/Quests.d.ts +1 -2
- package/dist/Components/Input/Autocomplete.d.ts +1 -2
- package/dist/Components/Input/SelectBox.d.ts +1 -2
- package/dist/Components/Input/TextAreaInput.d.ts +1 -2
- package/dist/Components/Input/TextInput.d.ts +1 -2
- package/dist/Components/Map/Subcomponents/AddButton.d.ts +1 -1
- package/dist/Components/Map/Subcomponents/Controls/Control.d.ts +1 -1
- package/dist/Components/Map/Subcomponents/Controls/LayerControl.d.ts +1 -2
- package/dist/Components/Map/Subcomponents/Controls/LocateControl.d.ts +1 -2
- package/dist/Components/Map/Subcomponents/Controls/QuestControl.d.ts +1 -2
- package/dist/Components/Map/Subcomponents/Controls/TagsControl.d.ts +1 -2
- package/dist/Components/Profile/ColorPicker.d.ts +1 -2
- package/dist/Components/Templates/CircleLayout.d.ts +1 -2
- package/dist/Components/Templates/DialogModal.d.ts +1 -1
- package/dist/Components/Templates/MapOverlayPage.d.ts +1 -1
- package/dist/Components/Templates/MoonCalendar.d.ts +1 -2
- package/dist/Components/Templates/TitleCard.d.ts +1 -1
- package/dist/Components/Typography/Subtitle.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/types.d.ts +1 -1
- package/package.json +1 -1
@@ -2,5 +2,5 @@ import * as React from 'react';
|
|
2
2
|
declare type ContentProps = {
|
3
3
|
children?: React.ReactNode;
|
4
4
|
};
|
5
|
-
export declare function Content({ children }: ContentProps): JSX.Element;
|
5
|
+
export declare function Content({ children }: ContentProps): import("react/jsx-runtime").JSX.Element;
|
6
6
|
export {};
|
@@ -1,2 +1 @@
|
|
1
|
-
|
2
|
-
export declare function Quests(): JSX.Element;
|
1
|
+
export declare function Quests(): import("react/jsx-runtime").JSX.Element;
|
@@ -1,8 +1,7 @@
|
|
1
|
-
/// <reference types="react" />
|
2
1
|
export declare const Autocomplete: ({ inputProps, suggestions, onSelected, pushFilteredSuggestions, setFocus }: {
|
3
2
|
inputProps: any;
|
4
3
|
suggestions: Array<any>;
|
5
4
|
onSelected: (suggestion: any) => void;
|
6
5
|
pushFilteredSuggestions?: any[] | undefined;
|
7
6
|
setFocus?: boolean | undefined;
|
8
|
-
}) => JSX.Element;
|
7
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
@@ -1,4 +1,3 @@
|
|
1
|
-
/// <reference types="react" />
|
2
1
|
declare type SelectBoxProps = {
|
3
2
|
labelTitle?: string;
|
4
3
|
labelStyle?: string;
|
@@ -13,5 +12,5 @@ declare type SelectBoxProps = {
|
|
13
12
|
}[];
|
14
13
|
labelDescription?: string;
|
15
14
|
};
|
16
|
-
export declare function SelectBox(props: SelectBoxProps): JSX.Element;
|
15
|
+
export declare function SelectBox(props: SelectBoxProps): import("react/jsx-runtime").JSX.Element;
|
17
16
|
export {};
|
@@ -1,4 +1,3 @@
|
|
1
|
-
/// <reference types="react" />
|
2
1
|
declare type TextAreaProps = {
|
3
2
|
labelTitle?: string;
|
4
3
|
labelStyle?: string;
|
@@ -9,5 +8,5 @@ declare type TextAreaProps = {
|
|
9
8
|
placeholder?: string;
|
10
9
|
updateFormValue?: (value: string) => void;
|
11
10
|
};
|
12
|
-
export declare function TextAreaInput({ labelTitle, dataField, labelStyle, containerStyle, inputStyle, defaultValue, placeholder, updateFormValue }: TextAreaProps): JSX.Element;
|
11
|
+
export declare function TextAreaInput({ labelTitle, dataField, labelStyle, containerStyle, inputStyle, defaultValue, placeholder, updateFormValue }: TextAreaProps): import("react/jsx-runtime").JSX.Element;
|
13
12
|
export {};
|
@@ -1,4 +1,3 @@
|
|
1
|
-
/// <reference types="react" />
|
2
1
|
declare type InputTextProps = {
|
3
2
|
labelTitle?: string;
|
4
3
|
labelStyle?: string;
|
@@ -11,5 +10,5 @@ declare type InputTextProps = {
|
|
11
10
|
autocomplete?: string;
|
12
11
|
updateFormValue?: (value: string) => void;
|
13
12
|
};
|
14
|
-
export declare function TextInput({ labelTitle, labelStyle, type, dataField, containerStyle, inputStyle, defaultValue, placeholder, autocomplete, updateFormValue }: InputTextProps): JSX.Element;
|
13
|
+
export declare function TextInput({ labelTitle, labelStyle, type, dataField, containerStyle, inputStyle, defaultValue, placeholder, autocomplete, updateFormValue }: InputTextProps): import("react/jsx-runtime").JSX.Element;
|
15
14
|
export {};
|
@@ -1,2 +1 @@
|
|
1
|
-
|
2
|
-
export declare function LayerControl(): JSX.Element;
|
1
|
+
export declare function LayerControl(): import("react/jsx-runtime").JSX.Element;
|
@@ -1,2 +1 @@
|
|
1
|
-
|
2
|
-
export declare function QuestControl(): JSX.Element;
|
1
|
+
export declare function QuestControl(): import("react/jsx-runtime").JSX.Element;
|
@@ -1,2 +1 @@
|
|
1
|
-
|
2
|
-
export declare const TagsControl: () => JSX.Element;
|
1
|
+
export declare const TagsControl: () => import("react/jsx-runtime").JSX.Element;
|
@@ -6,5 +6,5 @@ declare type Props = {
|
|
6
6
|
children: React.ReactNode;
|
7
7
|
showCloseButton?: boolean;
|
8
8
|
};
|
9
|
-
declare const DialogModal: ({ title, isOpened, onClose, children, showCloseButton }: Props) => JSX.Element;
|
9
|
+
declare const DialogModal: ({ title, isOpened, onClose, children, showCloseButton }: Props) => import("react/jsx-runtime").JSX.Element;
|
10
10
|
export default DialogModal;
|
@@ -1,2 +1 @@
|
|
1
|
-
|
2
|
-
export declare const MoonCalendar: () => JSX.Element;
|
1
|
+
export declare const MoonCalendar: () => import("react/jsx-runtime").JSX.Element;
|
@@ -7,5 +7,5 @@ interface TitleCardProps {
|
|
7
7
|
className?: string;
|
8
8
|
TopSideButtons?: any;
|
9
9
|
}
|
10
|
-
export declare function TitleCard({ title, hideTitle, children, topMargin, TopSideButtons, className }: TitleCardProps): JSX.Element;
|
10
|
+
export declare function TitleCard({ title, hideTitle, children, topMargin, TopSideButtons, className }: TitleCardProps): import("react/jsx-runtime").JSX.Element;
|
11
11
|
export {};
|