@oliasoft-open-source/react-ui-library 5.8.10-beta-1 → 5.8.10-beta-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/index.d.ts +7 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -82,6 +82,8 @@ export declare const CheckBox: ({ noMargin, dataix, isInTable, tabIndex, checked
|
|
|
82
82
|
|
|
83
83
|
export declare const Chevron: ({ expanded }: IChevronProps) => JSX_2.Element;
|
|
84
84
|
|
|
85
|
+
export declare const Collapse: ({ children, expanded }: ICollapseProps) => JSX_2.Element;
|
|
86
|
+
|
|
85
87
|
export declare enum Color {
|
|
86
88
|
DANGER = "danger",
|
|
87
89
|
RED = "red",
|
|
@@ -323,6 +325,11 @@ export declare interface IChevronProps {
|
|
|
323
325
|
expanded: boolean;
|
|
324
326
|
}
|
|
325
327
|
|
|
328
|
+
export declare interface ICollapseProps {
|
|
329
|
+
children: default_2.ReactNode;
|
|
330
|
+
expanded: boolean;
|
|
331
|
+
}
|
|
332
|
+
|
|
326
333
|
/**
|
|
327
334
|
* Icon wrapper component to support different icon formats:
|
|
328
335
|
* - string names (default recommendation)
|
package/dist/index.js
CHANGED
|
@@ -8775,4 +8775,4 @@ const ComparisonViewModal = ({ auditLog: e, auditLogs: t, data: n, isOpen: r, se
|
|
|
8775
8775
|
}
|
|
8776
8776
|
});
|
|
8777
8777
|
};
|
|
8778
|
-
export { Accordion, AccordionWithDefaultToggle, Actions, Align, AuditLog, Badge, Breadcrumb, BreadcrumbLinkType, Button, ButtonGroup, ButtonPosition, ButtonType, Card, CheckBox, Chevron, Color, Column, Dialog, DiffViewer, DisabledContext, Divider, Drawer, ElementType, Empty, Field, FileButton, FileInput, Flex, FormRow, Grid, GroupOrder, Heading, HelpIcon, Icon, IconType, Input, InputGroup, InputGroupAddon, InputReaderMethods, InputType, Label, List, ListHeading, ListSubheading, Loader, Menu, MenuCarat, MenuType, Message, MessageType, Modal, NativeSelect, NumberInput, OptionDropdown, Page, Pagination, PopConfirm, Popover, Portal, PrintHeader, ProgressBar, RadioButton, RichTextInput, Row, Select, SettingField, SideBar, Slider, SmartUploadModal, Spacer, Spinner, Table, TableImportExport, Tabs, Text, TextArea, TextLink, TextTransform, Theme, Toaster, Toggle, Tooltip, TopBar, Tree, TriggerType, UnitInput, UnitTable, dismissToast, initializeContext, initializeGuiLibrary, readFile, toast, useFocus, useKeyboardEvent, useWindowWidth };
|
|
8778
|
+
export { Accordion, AccordionWithDefaultToggle, Actions, Align, AuditLog, Badge, Breadcrumb, BreadcrumbLinkType, Button, ButtonGroup, ButtonPosition, ButtonType, Card, CheckBox, Chevron, Collapse, Color, Column, Dialog, DiffViewer, DisabledContext, Divider, Drawer, ElementType, Empty, Field, FileButton, FileInput, Flex, FormRow, Grid, GroupOrder, Heading, HelpIcon, Icon, IconType, Input, InputGroup, InputGroupAddon, InputReaderMethods, InputType, Label, List, ListHeading, ListSubheading, Loader, Menu, MenuCarat, MenuType, Message, MessageType, Modal, NativeSelect, NumberInput, OptionDropdown, Page, Pagination, PopConfirm, Popover, Portal, PrintHeader, ProgressBar, RadioButton, RichTextInput, Row, Select, SettingField, SideBar, Slider, SmartUploadModal, Spacer, Spinner, Table, TableImportExport, Tabs, Text, TextArea, TextLink, TextTransform, Theme, Toaster, Toggle, Tooltip, TopBar, Tree, TriggerType, UnitInput, UnitTable, dismissToast, initializeContext, initializeGuiLibrary, readFile, toast, useFocus, useKeyboardEvent, useWindowWidth };
|
package/package.json
CHANGED