dga-ui-react 1.8.6 → 1.8.8

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
@@ -296,7 +296,7 @@ interface DGA_ModalProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "tit
296
296
  declare const Modal: React.FC<DGA_ModalProps>;
297
297
 
298
298
  interface DGA_NotificationProps {
299
- style: 'success' | 'info' | 'neutral' | 'warning' | 'critical';
299
+ style: "success" | "info" | "neutral" | "warning" | "critical";
300
300
  className?: string;
301
301
  icon?: boolean;
302
302
  leadText?: string;
@@ -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.8",
4
4
  "description": "DGA ui library",
5
5
  "author": "Ashraf Ainia",
6
6
  "license": "MIT",