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/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
- export { Accordion, Autocomplete, Avatar, Breadcrumb, Button, Card, Carousel, Checkbox, Chip, 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 };
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 };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dga-ui-react",
3
- "version": "1.8.6",
3
+ "version": "1.8.7",
4
4
  "description": "DGA ui library",
5
5
  "author": "Ashraf Ainia",
6
6
  "license": "MIT",