@oliasoft-open-source/react-ui-library 5.10.0-beta-4 → 5.11.0

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
@@ -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)