Add: components/_ShareComponent/DummyLandscapeImage. Job Add: - edit & status per id - BoxDetailSectio - ButtonStatusSection Fix: - index, status, archive: penyesuaian ui # No Issue
111 lines
2.9 KiB
TypeScript
111 lines
2.9 KiB
TypeScript
// Alert
|
|
import AlertCustom from "./Alert/AlertCustom";
|
|
import AlertDefaultSystem from "./Alert/AlertDefaultSystem";
|
|
// Button
|
|
import LeftButtonCustom from "./Button/BackButton";
|
|
import ButtonCenteredOnly from "./Button/ButtonCenteredOnly";
|
|
import ButtonCustom from "./Button/ButtonCustom";
|
|
import DotButton from "./Button/DotButton";
|
|
import FloatingButton from "./Button/FloatingButton";
|
|
// Checkbox
|
|
import CheckboxCustom from "./Checkbox/CheckboxCustom";
|
|
import CheckboxGroup from "./Checkbox/CheckboxGroup";
|
|
// Drawer
|
|
import DrawerCustom from "./Drawer/DrawerCustom";
|
|
import MenuDrawerDynamicGrid from "./Drawer/MenuDrawerDynamicGird";
|
|
// Text
|
|
import TextCustom from "./Text/TextCustom";
|
|
// TextInput
|
|
import TextInputCustom from "./TextInput/TextInputCustom";
|
|
// TextArea
|
|
import TextAreaCustom from "./TextArea/TextAreaCustom";
|
|
// Grid
|
|
import Grid from "./Grid/GridCustom";
|
|
// Box
|
|
import BaseBox from "./Box/BaseBox";
|
|
import BoxButtonOnFooter from "./Box/BoxButtonOnFooter";
|
|
import BoxWithHeaderSection from "./Box/BoxWithHeaderInformation";
|
|
import InformationBox from "./Box/InformationBox";
|
|
// Stack
|
|
import StackCustom from "./Stack/StackCustom";
|
|
// Select
|
|
import SelectCustom from "./Select/SelectCustom";
|
|
// Image
|
|
import AvatarCustom from "./Image/AvatarCustom";
|
|
import LandscapeFrameUploaded from "./Image/LandscapeFrameUploaded";
|
|
// Divider
|
|
import Divider from "./Divider/Divider";
|
|
import DividerCustom from "./Divider/DividerCustom";
|
|
// Map
|
|
import MapCustom from "./Map/MapCustom";
|
|
// Center
|
|
import CenterCustom from "./Center/CenterCustom";
|
|
// Clickable
|
|
import ClickableCustom from "./Clickable/ClickableCustom";
|
|
// Scroll
|
|
import ScrollableCustom from "./Scroll/ScrollCustom";
|
|
// ShareComponent
|
|
import AvatarUsernameAndOtherComponent from "./_ShareComponent/AvataraAndOtherHeaderComponent";
|
|
import Spacing from "./_ShareComponent/Spacing";
|
|
import TabBarBackground from "./_ShareComponent/TabBarBackground";
|
|
import ViewWrapper from "./_ShareComponent/ViewWrapper";
|
|
import SearchInput from "./_ShareComponent/SearchInput";
|
|
import DummyLandscapeImage from "./_ShareComponent/DummyLandscapeImage";
|
|
|
|
export {
|
|
AlertCustom,
|
|
AlertDefaultSystem,
|
|
// Image
|
|
AvatarCustom,
|
|
// ShareComponent
|
|
AvatarUsernameAndOtherComponent,
|
|
// Button
|
|
LeftButtonCustom as BackButton,
|
|
// Box
|
|
BaseBox,
|
|
BoxButtonOnFooter,
|
|
BoxWithHeaderSection,
|
|
ButtonCenteredOnly,
|
|
ButtonCustom,
|
|
DotButton,
|
|
// Center
|
|
CenterCustom,
|
|
// Checkbox
|
|
CheckboxCustom,
|
|
CheckboxGroup,
|
|
// Clickable
|
|
ClickableCustom,
|
|
// Divider
|
|
Divider,
|
|
DividerCustom,
|
|
// Drawer
|
|
DrawerCustom,
|
|
FloatingButton,
|
|
// Grid
|
|
Grid,
|
|
InformationBox,
|
|
LandscapeFrameUploaded,
|
|
// Map
|
|
MapCustom,
|
|
MenuDrawerDynamicGrid,
|
|
// Scroll
|
|
ScrollableCustom,
|
|
// Select
|
|
SelectCustom,
|
|
// ShareComponent
|
|
SearchInput,
|
|
DummyLandscapeImage,
|
|
Spacing,
|
|
// Stack
|
|
StackCustom,
|
|
TabBarBackground,
|
|
// TextArea
|
|
TextAreaCustom,
|
|
// Text
|
|
TextCustom,
|
|
// TextInput
|
|
TextInputCustom,
|
|
// ViewWrapper
|
|
ViewWrapper,
|
|
};
|