elseware-ui 2.4.1 → 2.5.0
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/build/components/data-entry/input/index.d.ts +2 -1
- package/build/components/data-entry/input/input-label/InputLabel.d.ts +9 -0
- package/build/components/data-entry/input-list/InputList.d.ts +6 -0
- package/build/index.d.ts +3 -2
- package/build/index.es.js +42160 -554
- package/build/index.js +42131 -523
- package/package.json +3 -1
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/// <reference types="@types/react" />
|
|
2
|
+
import React from "react";
|
|
3
|
+
export interface FormDataEntryLabelProps {
|
|
4
|
+
text?: string;
|
|
5
|
+
children?: React.ReactNode;
|
|
6
|
+
styles?: string;
|
|
7
|
+
}
|
|
8
|
+
declare function InputLabel({ text, children, styles }: FormDataEntryLabelProps): import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
export default InputLabel;
|
package/build/index.d.ts
CHANGED
|
@@ -23,7 +23,8 @@ import Checkbox from "./components/data-entry/checkbox/Checkbox";
|
|
|
23
23
|
import DateSelector from "./components/data-entry/date-selector/DateSelector";
|
|
24
24
|
import { Form, FormResponse } from "./components/data-entry/form";
|
|
25
25
|
import ImageInput from "./components/data-entry/image-input/ImageInput";
|
|
26
|
-
import { Input, InputResponse } from "./components/data-entry/input";
|
|
26
|
+
import { Input, InputResponse, InputLabel } from "./components/data-entry/input";
|
|
27
|
+
import { InputList } from "./components/data-entry/input-list/InputList";
|
|
27
28
|
import MultiImageInput from "./components/data-entry/multi-image-input/MultiImageInput";
|
|
28
29
|
import Radio from "./components/data-entry/radio/Radio";
|
|
29
30
|
import { StarRatingInput } from "./components/data-entry/rating";
|
|
@@ -59,4 +60,4 @@ import useModal from "./utils/hooks/components/useModal";
|
|
|
59
60
|
import useDrawer from "./utils/hooks/components/useDrawer";
|
|
60
61
|
import useClickOutside from "./utils/hooks/useClickOutside";
|
|
61
62
|
import useIsMobile from "./utils/hooks/useIsMobile";
|
|
62
|
-
export { Avatar, Badge, TitleBanner, Brand, BarChart, LineChart, PieChart, Chip, Image, CloudinaryImage, Info, List, ListItem, PriceTag, StarRating, StarRatingDistribution, Slider, Table, Tag, Typography, Chapter, Section, Paragraph, Quote, YoutubeVideoPlayer, Button, Checkbox, DateSelector, Form, FormResponse, ImageInput, Input,
|
|
63
|
+
export { Avatar, Badge, TitleBanner, Brand, BarChart, LineChart, PieChart, Chip, Image, CloudinaryImage, Info, List, ListItem, PriceTag, StarRating, StarRatingDistribution, Slider, Table, Tag, Typography, Chapter, Section, Paragraph, Quote, YoutubeVideoPlayer, Button, Checkbox, DateSelector, Form, FormResponse, ImageInput, Input, InputResponse, InputLabel, InputList, MultiImageInput, Radio, StarRatingInput, Select, Switch, TextArea, Backdrop, Skeleton, Toast, sendToast, Transition, ContentArea, FooterNavbar, Sidebar, Flex, FlexCol, FlexRow, Grid, Layout, Header, Content, Footer, Breadcrumb, BreadcrumbItem, Drawer, DrawerToggler, HeaderNav, HeaderNavGroup, HeaderNavItem, HeaderNavItemTitle, Link, Menu, MenuGroup, MenuItem, MenuItemTitle, RouteTab, RouteTabs, Modal, Accordion, Card, CardHeader, CardContent, CardFooter, ThemeContext, ThemeProvider, ThemeSwitch, AsyncComponentWrapper, ShowMore, useModal, useDrawer, useClickOutside, useIsMobile, };
|