dga-ui-react 1.8.6 → 1.8.7
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/cjs/index.js +180 -80
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +241 -141
- package/dist/esm/index.js.map +1 -1
- package/dist/index.d.ts +10 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -699,4 +699,13 @@ interface DGA_SlideoutMenuProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
|
699
699
|
}
|
|
700
700
|
declare const SlideoutMenu: React.FC<DGA_SlideoutMenuProps>;
|
|
701
701
|
|
|
702
|
-
|
|
702
|
+
type CircularProgressBarSize = "64px" | "80px" | "120px" | "160px" | "200px";
|
|
703
|
+
interface DGA_CircularProgressBarProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "style"> {
|
|
704
|
+
size?: CircularProgressBarSize;
|
|
705
|
+
style?: "primary" | "neutral" | "success" | "error";
|
|
706
|
+
text?: string;
|
|
707
|
+
percentage?: number;
|
|
708
|
+
}
|
|
709
|
+
declare const CircularProgressBar: React.FC<DGA_CircularProgressBarProps>;
|
|
710
|
+
|
|
711
|
+
export { Accordion, Autocomplete, Avatar, Breadcrumb, Button, Card, Carousel, Checkbox, Chip, CircularProgressBar, CodeSnippet, ContentSwitcher, DatePicker, Divider, DropZone, Dropdown, DropdownItem, FileCard, FileUpload, FloatingButton, Grid, HeaderMenuItem, InlineAlert, Link, List, Loading, Menu, MenuItem, MenuItemGroup, Modal, NavigationDrawerItem, Notification, NumberInput, Pagination, ProgressBar, ProgressIndicator, Quote, RadialStepper, Radio, RadioGroup, RangeSlider, Rating, SearchBox, SecondNavHeader, Skeleton, SkeletonCircle, SkeletonLine, SkeletonRectangle, SkeletonSquare, SlideoutMenu, NormalSlider as Slider, StatusTag, Switch, Tab, TabList, Table, Tag, TextInput, Textarea, ThemeProvider, Tooltip, toast, useTheme, withRtl };
|