bianic-ui 2.2.0 → 2.3.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/cjs/index.js +232 -73
- package/dist/cjs/lib.css +1 -1
- package/dist/cjs/types/components/Card/config.d.ts +6 -0
- package/dist/cjs/types/components/Card/index.d.ts +8 -0
- package/dist/cjs/types/components/FileTree/FileTreeSimulation.d.ts +3 -0
- package/dist/cjs/types/components/FileTree/TreeItem.d.ts +13 -0
- package/dist/cjs/types/components/FileTree/useFileTree.d.ts +12 -0
- package/dist/cjs/types/components/Forms/SelectInput/Example/CustomDropdown.d.ts +2 -1
- package/dist/cjs/types/components/PaginationBar/SelectedPage.d.ts +7 -0
- package/dist/cjs/types/components/Popover/PropInterface.d.ts +21 -0
- package/dist/cjs/types/components/Popover/index.d.ts +2 -10
- package/dist/cjs/types/components/Tooltip/PropsInterface.d.ts +6 -2
- package/dist/cjs/types/components/index.d.ts +3 -0
- package/dist/cjs/types/stories/Card/Card.stories.d.ts +17 -0
- package/dist/cjs/types/stories/FileTree/FileTreeSimulation.stories.d.ts +12 -0
- package/dist/cjs/types/stories/Form/LiveSearch/LivesearchCustomDropdownExample.stories.d.ts +2 -2
- package/dist/cjs/types/stories/Form/SelectInput/SelectInputCustom.stories.d.ts +1 -1
- package/dist/cjs/types/utility/public/words.d.ts +13 -0
- package/dist/esm/index.js +230 -74
- package/dist/esm/lib.css +1 -1
- package/dist/esm/types/components/Card/config.d.ts +6 -0
- package/dist/esm/types/components/Card/index.d.ts +8 -0
- package/dist/esm/types/components/FileTree/FileTreeSimulation.d.ts +3 -0
- package/dist/esm/types/components/FileTree/TreeItem.d.ts +13 -0
- package/dist/esm/types/components/FileTree/useFileTree.d.ts +12 -0
- package/dist/esm/types/components/Forms/SelectInput/Example/CustomDropdown.d.ts +2 -1
- package/dist/esm/types/components/PaginationBar/SelectedPage.d.ts +7 -0
- package/dist/esm/types/components/Popover/PropInterface.d.ts +21 -0
- package/dist/esm/types/components/Popover/index.d.ts +2 -10
- package/dist/esm/types/components/Tooltip/PropsInterface.d.ts +6 -2
- package/dist/esm/types/components/index.d.ts +3 -0
- package/dist/esm/types/stories/Card/Card.stories.d.ts +17 -0
- package/dist/esm/types/stories/FileTree/FileTreeSimulation.stories.d.ts +12 -0
- package/dist/esm/types/stories/Form/LiveSearch/LivesearchCustomDropdownExample.stories.d.ts +2 -2
- package/dist/esm/types/stories/Form/SelectInput/SelectInputCustom.stories.d.ts +1 -1
- package/dist/esm/types/utility/public/words.d.ts +13 -0
- package/dist/index.d.ts +40 -6
- package/package.json +8 -2
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import config from './config';
|
|
3
|
+
declare const Card: ({ children, disabled, variant, }: {
|
|
4
|
+
children: React.ReactNode;
|
|
5
|
+
disabled?: boolean | undefined;
|
|
6
|
+
variant?: "dark-background" | "light-background" | "outline-light-background" | undefined;
|
|
7
|
+
}) => React.JSX.Element;
|
|
8
|
+
export default Card;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import React, { ComponentPropsWithRef } from 'react';
|
|
2
|
+
interface TreeItemInterface extends Omit<ComponentPropsWithRef<'button'>, 'children'> {
|
|
3
|
+
data: any;
|
|
4
|
+
expandedData: Map<string, boolean>;
|
|
5
|
+
setExpandedData: (data: Map<string, boolean>) => void;
|
|
6
|
+
dataMap: Map<string, any>;
|
|
7
|
+
activeUnitId?: string;
|
|
8
|
+
handleChevronClick?: (data: any) => void;
|
|
9
|
+
handleRightClick?: (data: any) => void;
|
|
10
|
+
handleCLick?: (data: any) => void;
|
|
11
|
+
}
|
|
12
|
+
declare const TreeItem: ({ data, expandedData, setExpandedData, dataMap, activeUnitId, handleChevronClick, handleRightClick, handleCLick, }: TreeItemInterface) => React.JSX.Element;
|
|
13
|
+
export default TreeItem;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
declare const useFileTree: (data: any[], alias?: {
|
|
3
|
+
id: null;
|
|
4
|
+
label: null;
|
|
5
|
+
parent: null;
|
|
6
|
+
}) => {
|
|
7
|
+
tree: any[];
|
|
8
|
+
map: Map<any, any>;
|
|
9
|
+
expandedData: Map<string, boolean>;
|
|
10
|
+
setExpandedData: React.Dispatch<React.SetStateAction<Map<string, boolean>>>;
|
|
11
|
+
};
|
|
12
|
+
export default useFileTree;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
|
|
2
|
+
import SelectInputProps from '../PropsInterface';
|
|
3
|
+
declare const CustomDropdown: ({ descText, disabled, size, id, isValid, label, options, required, selected, setSelected, onClickDropdown, children, dropContProps: { className: dropContClassName, ...restDropContProps }, ...props }: SelectInputProps) => React.JSX.Element;
|
|
3
4
|
export default CustomDropdown;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export interface PopoverProps {
|
|
3
|
+
className?: string;
|
|
4
|
+
children: React.ReactNode;
|
|
5
|
+
content: string;
|
|
6
|
+
delay?: number;
|
|
7
|
+
maxWidth?: string;
|
|
8
|
+
title?: string;
|
|
9
|
+
style?: React.CSSProperties;
|
|
10
|
+
zIndex?: number;
|
|
11
|
+
direction?: 'top' | 'right' | 'bottom' | 'left' | 'bottom-right' | 'bottom-left' | 'top-right' | 'top-left';
|
|
12
|
+
}
|
|
13
|
+
export interface PopoverItemProps {
|
|
14
|
+
anchorRef: React.RefObject<HTMLElement>;
|
|
15
|
+
className?: string;
|
|
16
|
+
content: string;
|
|
17
|
+
style?: React.CSSProperties;
|
|
18
|
+
title: string;
|
|
19
|
+
zIndex?: number;
|
|
20
|
+
direction: 'top' | 'right' | 'bottom' | 'left' | 'bottom-right' | 'bottom-left' | 'top-right' | 'top-left';
|
|
21
|
+
}
|
|
@@ -1,16 +1,8 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
content: string;
|
|
5
|
-
delay?: number;
|
|
6
|
-
direction?: 'top' | 'right' | 'bottom' | 'left' | 'bottom-right' | 'bottom-left' | 'top-right' | 'top-left';
|
|
7
|
-
title?: string;
|
|
8
|
-
maxWidth?: string;
|
|
9
|
-
}
|
|
10
|
-
declare function Popover({ children, content, delay, direction, title, maxWidth, }: PopoverProps): React.JSX.Element;
|
|
2
|
+
import { PopoverProps } from './PropInterface';
|
|
3
|
+
declare function Popover({ className, children, content, direction, maxWidth, title, style, zIndex, }: PopoverProps): React.JSX.Element;
|
|
11
4
|
declare namespace Popover {
|
|
12
5
|
var defaultProps: {
|
|
13
|
-
delay: number;
|
|
14
6
|
direction: string;
|
|
15
7
|
title: string;
|
|
16
8
|
};
|
|
@@ -1,16 +1,20 @@
|
|
|
1
|
-
import { ComponentPropsWithoutRef, ReactNode, RefObject } from 'react';
|
|
1
|
+
import { ComponentPropsWithoutRef, ComponentPropsWithRef, ReactNode, RefObject } from 'react';
|
|
2
2
|
interface TooltipProps extends Omit<ComponentPropsWithoutRef<'div'>, 'content'> {
|
|
3
3
|
children: ReactNode;
|
|
4
4
|
content: ReactNode | string;
|
|
5
5
|
delay?: number;
|
|
6
6
|
maxWidth?: string;
|
|
7
|
+
zIndex?: number;
|
|
7
8
|
direction?: 'top' | 'right' | 'bottom' | 'left' | 'bottom-right' | 'bottom-left' | 'top-right' | 'top-left';
|
|
8
9
|
}
|
|
9
10
|
interface TooltipItemProps {
|
|
10
11
|
anchorRef: RefObject<HTMLDivElement>;
|
|
11
|
-
|
|
12
|
+
className?: string;
|
|
12
13
|
content: ReactNode | string;
|
|
13
14
|
tooltipContainerRef: React.RefObject<HTMLDivElement>;
|
|
14
15
|
tooltipContainerStyle: React.CSSProperties;
|
|
16
|
+
style?: ComponentPropsWithRef<'div'>['style'];
|
|
17
|
+
zIndex: number;
|
|
18
|
+
direction?: 'top' | 'right' | 'bottom' | 'left' | 'bottom-right' | 'bottom-left' | 'top-right' | 'top-left';
|
|
15
19
|
}
|
|
16
20
|
export { TooltipProps, TooltipItemProps };
|
|
@@ -6,9 +6,12 @@ export { default as Banner } from './Banner';
|
|
|
6
6
|
export { default as Brand } from './Brand/Brand';
|
|
7
7
|
export { default as Breadcrumb } from './Breadcrumb/Breadcrumb';
|
|
8
8
|
export { Button, ButtonApp, ContextualButton } from './Button';
|
|
9
|
+
export { default as Card } from './Card';
|
|
9
10
|
export { default as Color } from './Color';
|
|
10
11
|
export { default as Divider } from './Divider/Divider';
|
|
11
12
|
export { default as FileTree } from './FileTree';
|
|
13
|
+
export { default as TreeItem } from './FileTree/TreeItem';
|
|
14
|
+
export { default as useFileTree } from './FileTree/useFileTree';
|
|
12
15
|
export { MenuContainer, MenuItem } from './Menu';
|
|
13
16
|
export { TextInput, Radio, TextArea, Checkbox, SelectInput, LiveSearch, Toggle, SegmentButtonItem, SegmentButtonGroup, FormLabel, FormGroup, FormGroupButton, FormGroupLabel, DropdownItem, DropdownContainer, DatePicker, PickerCalendar, } from './Forms';
|
|
14
17
|
export * from './Icons';
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import type { StoryObj } from '@storybook/react';
|
|
3
|
+
declare const meta: {
|
|
4
|
+
title: string;
|
|
5
|
+
component: ({ children, disabled, variant, }: {
|
|
6
|
+
children: import("react").ReactNode;
|
|
7
|
+
disabled?: boolean | undefined;
|
|
8
|
+
variant?: "dark-background" | "light-background" | "outline-light-background" | undefined;
|
|
9
|
+
}) => import("react").JSX.Element;
|
|
10
|
+
parameters: {
|
|
11
|
+
layout: string;
|
|
12
|
+
};
|
|
13
|
+
argTypes: {};
|
|
14
|
+
};
|
|
15
|
+
export default meta;
|
|
16
|
+
type Story = StoryObj<typeof meta>;
|
|
17
|
+
export declare const Demo: Story;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import type { StoryObj } from '@storybook/react';
|
|
3
|
+
declare const meta: {
|
|
4
|
+
title: string;
|
|
5
|
+
component: () => import("react").JSX.Element;
|
|
6
|
+
parameters: {
|
|
7
|
+
layout: string;
|
|
8
|
+
};
|
|
9
|
+
};
|
|
10
|
+
export default meta;
|
|
11
|
+
type Story = StoryObj<typeof meta>;
|
|
12
|
+
export declare const NewFileTreeSimulation: Story;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { StoryObj } from
|
|
2
|
-
import React from
|
|
1
|
+
import { StoryObj } from '@storybook/react/*';
|
|
2
|
+
import React from 'react';
|
|
3
3
|
declare const meta: {
|
|
4
4
|
title: string;
|
|
5
5
|
component: ({ children, ...props }: import("../../../components/Forms/LiveSearch/types").LiveSearchProps) => React.JSX.Element;
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
import type { StoryObj } from '@storybook/react';
|
|
3
3
|
declare const meta: {
|
|
4
4
|
title: string;
|
|
5
|
-
component: () => import("react").JSX.Element;
|
|
5
|
+
component: ({ descText, disabled, size, id, isValid, label, options, required, selected, setSelected, onClickDropdown, children, dropContProps: { className: dropContClassName, ...restDropContProps }, ...props }: import("../../../components/Forms/SelectInput/PropsInterface").default) => import("react").JSX.Element;
|
|
6
6
|
parameters: {
|
|
7
7
|
layout: string;
|
|
8
8
|
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* getRelativeTime
|
|
3
|
+
* Accepts a JavaScript Date and returns a human friendly relative time string.
|
|
4
|
+
* Rules:
|
|
5
|
+
* - < 1 minute: "just now"
|
|
6
|
+
* - < 1 hour: "x minutes ago"
|
|
7
|
+
* - < 1 day: "x hours ago"
|
|
8
|
+
* - < 30 days: "x days ago"
|
|
9
|
+
* - < 12 months: "x months ago" (uses 30-day months approximation)
|
|
10
|
+
* - >= 1 year: "x years ago" (uses 365-day years approximation; floors to whole years,
|
|
11
|
+
* so e.g. 1 year 11 months => "1 years ago" as requested)
|
|
12
|
+
*/
|
|
13
|
+
export declare function getRelativeTime(date: Date): string;
|