dga-ui-react 1.8.1 → 1.8.2
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 +105 -36
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +117 -48
- package/dist/esm/index.js.map +1 -1
- package/dist/index.d.ts +21 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -679,4 +679,24 @@ interface DGA_CodeSnippetProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
|
679
679
|
}
|
|
680
680
|
declare const CodeSnippet: React.FC<DGA_CodeSnippetProps>;
|
|
681
681
|
|
|
682
|
-
|
|
682
|
+
type SlideoutMenuBgColor = "white" | "gray";
|
|
683
|
+
interface DGA_SlideoutMenuProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
684
|
+
open?: boolean;
|
|
685
|
+
backdrop?: boolean;
|
|
686
|
+
backgroundColor?: SlideoutMenuBgColor;
|
|
687
|
+
onCloseClicked?: Function;
|
|
688
|
+
onClose?: Function;
|
|
689
|
+
navHeader?: {
|
|
690
|
+
titleText?: React.ReactNode;
|
|
691
|
+
descriptionText?: React.ReactNode;
|
|
692
|
+
icon?: React.ReactNode;
|
|
693
|
+
showFeaturedIcon?: boolean;
|
|
694
|
+
showDescription?: boolean;
|
|
695
|
+
showDivider?: boolean;
|
|
696
|
+
};
|
|
697
|
+
border?: boolean;
|
|
698
|
+
children?: React.ReactNode;
|
|
699
|
+
}
|
|
700
|
+
declare const SlideoutMenu: React.FC<DGA_SlideoutMenuProps>;
|
|
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 };
|