bianic-ui 2.6.0-beta.5 → 2.7.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 +117 -106
- package/dist/cjs/lib.css +1 -1
- package/dist/cjs/types/components/Forms/LiveSearch/Example/OutsideControl.d.ts +3 -0
- package/dist/cjs/types/components/Icons/Rhombus.d.ts +4 -0
- package/dist/cjs/types/components/Icons/index.d.ts +18 -17
- package/dist/cjs/types/components/Tooltip/PropsInterface.d.ts +4 -0
- package/dist/cjs/types/components/Tooltip/Simulation.d.ts +1 -1
- package/dist/cjs/types/stories/Form/LiveSearch/OutsideControlSimulation.stories.d.ts +12 -0
- package/dist/cjs/types/stories/Icons/Rhombus.stories.d.ts +14 -0
- package/dist/esm/index.js +117 -107
- package/dist/esm/lib.css +1 -1
- package/dist/esm/types/components/Forms/LiveSearch/Example/OutsideControl.d.ts +3 -0
- package/dist/esm/types/components/Icons/Rhombus.d.ts +4 -0
- package/dist/esm/types/components/Icons/index.d.ts +18 -17
- package/dist/esm/types/components/Tooltip/PropsInterface.d.ts +4 -0
- package/dist/esm/types/components/Tooltip/Simulation.d.ts +1 -1
- package/dist/esm/types/stories/Form/LiveSearch/OutsideControlSimulation.stories.d.ts +12 -0
- package/dist/esm/types/stories/Icons/Rhombus.stories.d.ts +14 -0
- package/dist/index.d.ts +25 -21
- package/package.json +1 -1
- package/src/style/color.css +23 -0
- package/tailwind.config.js +29 -0
|
@@ -1,22 +1,23 @@
|
|
|
1
|
-
export { default as BCNode } from './Node';
|
|
2
|
-
export { default as BCPort } from './Port';
|
|
3
|
-
export { default as BCExposedPort } from './ExposedPort';
|
|
4
|
-
export { default as BCVirtualPort } from './VirtualPort';
|
|
5
1
|
export { default as BCAlertRoundedSquare } from './AlertRoundedSquare';
|
|
6
|
-
export { default as BCStack } from './Stack';
|
|
7
|
-
export { default as BCDiscrepancy } from './Discrepancy';
|
|
8
|
-
export { default as BCModalBalance } from './ModelBalance';
|
|
9
2
|
export { default as BCCubeHeader } from './CubeHeader';
|
|
10
|
-
export { default as
|
|
11
|
-
export { default as
|
|
12
|
-
export { default as BCSelectAllAdd } from './SelectAllAdd';
|
|
13
|
-
export { default as BCFQWelldone } from './FQWelldone';
|
|
14
|
-
export { default as BCFQOperation } from './FQOperation';
|
|
15
|
-
export { default as BCFQModeler } from './FQModeler';
|
|
16
|
-
export { default as BCFQGetaway } from './FQGetaway';
|
|
17
|
-
export { default as BCFQAnalytical } from './FQAnalytical';
|
|
3
|
+
export { default as BCDiscrepancy } from './Discrepancy';
|
|
4
|
+
export { default as BCExposedPort } from './ExposedPort';
|
|
18
5
|
export { default as BCFlowqount } from './Flowqount';
|
|
19
|
-
export { default as
|
|
20
|
-
export { default as
|
|
6
|
+
export { default as BCFQAnalytical } from './FQAnalytical';
|
|
7
|
+
export { default as BCFQGetaway } from './FQGetaway';
|
|
8
|
+
export { default as BCFQModeler } from './FQModeler';
|
|
9
|
+
export { default as BCFQOperation } from './FQOperation';
|
|
10
|
+
export { default as BCFQWelldone } from './FQWelldone';
|
|
21
11
|
export { default as BCInlet } from './Inlet';
|
|
12
|
+
export { default as BCLegend } from './Legend';
|
|
13
|
+
export { default as BCModalBalance } from './ModelBalance';
|
|
22
14
|
export { default as BCNeutral } from './Neutral';
|
|
15
|
+
export { default as BCNode } from './Node';
|
|
16
|
+
export { default as BCOutlet } from './Outlet';
|
|
17
|
+
export { default as BCPort } from './Port';
|
|
18
|
+
export { default as BCSelectAllAdd } from './SelectAllAdd';
|
|
19
|
+
export { default as BCSelectAllRemove } from './SelectAllRemove';
|
|
20
|
+
export { default as BCSpinner } from './Spinner';
|
|
21
|
+
export { default as BCStack } from './Stack';
|
|
22
|
+
export { default as BCRhombus } from './Rhombus';
|
|
23
|
+
export { default as BCVirtualPort } from './VirtualPort';
|
|
@@ -5,6 +5,8 @@ interface TooltipProps extends Omit<ComponentPropsWithoutRef<'div'>, 'content'>
|
|
|
5
5
|
delay?: number;
|
|
6
6
|
maxWidth?: string;
|
|
7
7
|
zIndex?: number;
|
|
8
|
+
bgColor?: string;
|
|
9
|
+
textColor?: string;
|
|
8
10
|
direction?: 'top' | 'right' | 'bottom' | 'left' | 'bottom-right' | 'bottom-left' | 'top-right' | 'top-left';
|
|
9
11
|
}
|
|
10
12
|
interface TooltipItemProps {
|
|
@@ -15,6 +17,8 @@ interface TooltipItemProps {
|
|
|
15
17
|
tooltipContainerStyle: React.CSSProperties;
|
|
16
18
|
style?: ComponentPropsWithRef<'div'>['style'];
|
|
17
19
|
zIndex: number;
|
|
20
|
+
bgColor?: string;
|
|
21
|
+
textColor?: string;
|
|
18
22
|
direction?: 'top' | 'right' | 'bottom' | 'left' | 'bottom-right' | 'bottom-left' | 'top-right' | 'top-left';
|
|
19
23
|
}
|
|
20
24
|
export { TooltipProps, TooltipItemProps };
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import type { StoryObj } from '@storybook/react';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
declare const meta: {
|
|
4
|
+
title: string;
|
|
5
|
+
component: () => React.JSX.Element;
|
|
6
|
+
parameters: {
|
|
7
|
+
layout: string;
|
|
8
|
+
};
|
|
9
|
+
};
|
|
10
|
+
export default meta;
|
|
11
|
+
type Story = StoryObj<typeof meta>;
|
|
12
|
+
export declare const OutsideControlDemo: Story;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import type { StoryObj } from '@storybook/react';
|
|
3
|
+
declare const meta: {
|
|
4
|
+
title: string;
|
|
5
|
+
component: ({ className, fill, size, }: import("../../components/Icons/interface").IconProps) => import("react").JSX.Element;
|
|
6
|
+
parameters: {
|
|
7
|
+
layout: string;
|
|
8
|
+
};
|
|
9
|
+
tags: string[];
|
|
10
|
+
args: {};
|
|
11
|
+
};
|
|
12
|
+
export default meta;
|
|
13
|
+
type Story = StoryObj<typeof meta>;
|
|
14
|
+
export declare const Preview: Story;
|