elseware-ui 2.12.3 → 2.12.5

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/README.md CHANGED
@@ -1,10 +1,19 @@
1
1
  # elseware UI
2
2
 
3
- # Setup
3
+ ## Folder Hierarchy
4
+ - components: Base UI primitives (buttons, inputs, modals, etc.)
5
+ - compositions: Composite reusable structures built from primitives
6
+ - data: Metadata used on the components/compositions
7
+ - layouts: Page layouts that can be used to quickly structure the page formats
8
+ - styles: Tailwind/CSS stylings
9
+ - types: Custom react types
10
+ - utils: Reusable utility functions and hooks
11
+
12
+ ## Setup
4
13
 
5
14
  Install the dependendecies via `npm i`.
6
15
 
7
- # Run Storybook
16
+ ## Run Storybook
8
17
 
9
18
  To test the components and its features start storybook using `npm run storybook`.
10
19
 
@@ -0,0 +1,4 @@
1
+ export interface UnderConstructionBannerProps {
2
+ text?: string;
3
+ }
4
+ export declare function UnderConstructionBanner({ text, }: UnderConstructionBannerProps): import("react/jsx-runtime").JSX.Element;
package/build/index.d.ts CHANGED
@@ -55,6 +55,7 @@ import { Menu, MenuGroup, MenuItem, MenuItemTitle } from "./components/navigatio
55
55
  import RouteTab from "./components/navigation/route-tabs/RouteTab";
56
56
  import RouteTabs from "./components/navigation/route-tabs/RouteTabs";
57
57
  import Modal from "./components/other/modal/Modal";
58
+ import { UnderConstructionBanner } from "./components/other/under-construction-banner/UnderConstructionBanner";
58
59
  import Accordion from "./components/surfaces/accordion/Accordion";
59
60
  import { Card, CardHeader, CardContent, CardFooter } from "./components/surfaces/card";
60
61
  import { ThemeContext, ThemeProvider } from "./components/theme";
@@ -65,4 +66,4 @@ import useModal from "./utils/hooks/components/useModal";
65
66
  import useDrawer from "./utils/hooks/components/useDrawer";
66
67
  import useClickOutside from "./utils/hooks/useClickOutside";
67
68
  import useIsMobile from "./utils/hooks/useIsMobile";
68
- export { AdvancedTable, AdvancedTableColumnConfig, Avatar, Badge, TitleBanner, Brand, BarChart, LineChart, PieChart, Chip, Flag, Image, CloudinaryImage, Info, List, ListItem, PriceTag, StarRating, StarRatingDistribution, Slider, Table, Tag, Typography, Chapter, Section, Paragraph, Quote, YoutubeVideoPlayer, Button, Checkbox, DateSelector, Form, FormResponse, ImageInput, InputResponse, InputLabel, Input, InputFile, InputList, InputListGroup, MultiImageInput, Radio, StarRatingInput, Select, Switch, Tags, TextArea, Backdrop, Skeleton, Toast, sendToast, Transition, ContentArea, Sidebar, Flex, FlexCol, FlexRow, Grid, Layout, Header, Content, Footer, MarkdownEditor, MarkdownViewer, Breadcrumb, BreadcrumbItem, Drawer, DrawerToggler, FooterNav, FooterNavGroup, FooterNavItem, FooterNavItemTitle, FooterNavItemContext, HeaderNav, HeaderNavGroup, HeaderNavItem, HeaderNavItemTitle, HeaderNavItemContext, Link, Menu, MenuGroup, MenuItem, MenuItemTitle, RouteTab, RouteTabs, Modal, Accordion, Card, CardHeader, CardContent, CardFooter, ThemeContext, ThemeProvider, ThemeSwitch, AsyncComponentWrapper, ShowMore, useModal, useDrawer, useClickOutside, useIsMobile, };
69
+ export { AdvancedTable, AdvancedTableColumnConfig, Avatar, Badge, TitleBanner, Brand, BarChart, LineChart, PieChart, Chip, Flag, Image, CloudinaryImage, Info, List, ListItem, PriceTag, StarRating, StarRatingDistribution, Slider, Table, Tag, Typography, Chapter, Section, Paragraph, Quote, YoutubeVideoPlayer, Button, Checkbox, DateSelector, Form, FormResponse, ImageInput, InputResponse, InputLabel, Input, InputFile, InputList, InputListGroup, MultiImageInput, Radio, StarRatingInput, Select, Switch, Tags, TextArea, Backdrop, Skeleton, Toast, sendToast, Transition, ContentArea, Sidebar, Flex, FlexCol, FlexRow, Grid, Layout, Header, Content, Footer, MarkdownEditor, MarkdownViewer, Breadcrumb, BreadcrumbItem, Drawer, DrawerToggler, FooterNav, FooterNavGroup, FooterNavItem, FooterNavItemTitle, FooterNavItemContext, HeaderNav, HeaderNavGroup, HeaderNavItem, HeaderNavItemTitle, HeaderNavItemContext, Link, Menu, MenuGroup, MenuItem, MenuItemTitle, RouteTab, RouteTabs, Modal, UnderConstructionBanner, Accordion, Card, CardHeader, CardContent, CardFooter, ThemeContext, ThemeProvider, ThemeSwitch, AsyncComponentWrapper, ShowMore, useModal, useDrawer, useClickOutside, useIsMobile, };