jiffy-ui 1.2.4 → 1.2.6

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.
@@ -1,5 +1,6 @@
1
1
  import React from "react";
2
2
  import "./actionlist.css";
3
+ declare const ActionList: ({ children, items, trigger, placement, size, variant, disabled, closeOnSelect, maxHeight, className, style, onItemSelect, onOpenChange, ...props }: ActionListProps) => React.JSX.Element;
3
4
  export interface ActionItem {
4
5
  /** Unique identifier */
5
6
  id?: string | number;
@@ -121,6 +122,4 @@ export interface ActionListItemsI {
121
122
  badgeVariant?: "default" | "primary" | "success" | "warning" | "error";
122
123
  divider?: boolean;
123
124
  }
124
- declare const ActionList: React.MemoExoticComponent<({ children, items, trigger, placement, size, variant, disabled, closeOnSelect, maxHeight, className, style, onItemSelect, onOpenChange, ...props }: ActionListProps) => React.JSX.Element>;
125
125
  export default ActionList;
126
- export { ActionList as Actionlist };
@@ -1,7 +1,7 @@
1
1
  import React from "react";
2
2
  declare const _default: {
3
3
  title: string;
4
- component: React.MemoExoticComponent<({ children, items, trigger, placement, size, variant, disabled, closeOnSelect, maxHeight, className, style, onItemSelect, onOpenChange, ...props }: import("./Actionlist").ActionListProps) => React.JSX.Element>;
4
+ component: ({ children, items, trigger, placement, size, variant, disabled, closeOnSelect, maxHeight, className, style, onItemSelect, onOpenChange, ...props }: import("./Actionlist").ActionListProps) => React.JSX.Element;
5
5
  tags: string[];
6
6
  argTypes: {
7
7
  trigger: {
@@ -38,6 +38,9 @@ export { default as StepWizard } from './StepWizard/StepWizard';
38
38
  export { default as Switcher } from './Switcher/Switcher';
39
39
  export { default as Table } from './Table/Table';
40
40
  export { default as Tabs } from './Tabs/Tabs';
41
+ export { default as TabsContent } from './Tabs/Tabs';
42
+ export { default as TabsList } from './Tabs/Tabs';
43
+ export { default as TabsTrigger } from './Tabs/Tabs';
41
44
  export { default as Tag } from './Tag/Tag';
42
45
  export { default as TextLink } from './TextLink/TextLink';
43
46
  export { default as TextStyle } from './TextStyle/TextStyle';