bianic-ui 2.6.0 → 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/README.md +49 -49
- package/dist/cjs/index.js +133 -118
- package/dist/cjs/lib.css +1 -1
- package/dist/cjs/types/components/Avatar/Avatar.d.ts +6 -2
- 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 +133 -119
- package/dist/esm/lib.css +1 -1
- package/dist/esm/types/components/Avatar/Avatar.d.ts +6 -2
- 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 +31 -23
- package/package.json +141 -141
- package/src/style/color.css +650 -627
- package/src/style/scrollbar.css +78 -78
- package/tailwind.config.js +574 -543
|
@@ -1,13 +1,17 @@
|
|
|
1
1
|
import React, { ComponentPropsWithoutRef } from 'react';
|
|
2
2
|
export interface AvatarProps extends ComponentPropsWithoutRef<'div'> {
|
|
3
3
|
size?: 'sm' | 'md' | 'lg' | 'xl' | 'xxl';
|
|
4
|
-
variant
|
|
4
|
+
variant?: 'image' | 'picture' | 'initial';
|
|
5
|
+
imageSrc: string;
|
|
5
6
|
name?: string;
|
|
7
|
+
bgColor?: string;
|
|
8
|
+
outlineColor?: string;
|
|
6
9
|
}
|
|
7
|
-
declare function Avatar({ size, variant, name }: AvatarProps): React.JSX.Element | null;
|
|
10
|
+
declare function Avatar({ size, variant, name, bgColor, outlineColor, className, }: AvatarProps): React.JSX.Element | null;
|
|
8
11
|
declare namespace Avatar {
|
|
9
12
|
var defaultProps: {
|
|
10
13
|
name: string;
|
|
14
|
+
variant: string;
|
|
11
15
|
size: string;
|
|
12
16
|
};
|
|
13
17
|
}
|
|
@@ -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;
|
package/dist/index.d.ts
CHANGED
|
@@ -33,13 +33,17 @@ declare namespace Alert {
|
|
|
33
33
|
|
|
34
34
|
interface AvatarProps extends ComponentPropsWithoutRef<'div'> {
|
|
35
35
|
size?: 'sm' | 'md' | 'lg' | 'xl' | 'xxl';
|
|
36
|
-
variant
|
|
36
|
+
variant?: 'image' | 'picture' | 'initial';
|
|
37
|
+
imageSrc: string;
|
|
37
38
|
name?: string;
|
|
39
|
+
bgColor?: string;
|
|
40
|
+
outlineColor?: string;
|
|
38
41
|
}
|
|
39
|
-
declare function Avatar({ size, variant, name }: AvatarProps): React$1.JSX.Element | null;
|
|
42
|
+
declare function Avatar({ size, variant, name, bgColor, outlineColor, className, }: AvatarProps): React$1.JSX.Element | null;
|
|
40
43
|
declare namespace Avatar {
|
|
41
44
|
var defaultProps: {
|
|
42
45
|
name: string;
|
|
46
|
+
variant: string;
|
|
43
47
|
size: string;
|
|
44
48
|
};
|
|
45
49
|
}
|
|
@@ -541,49 +545,51 @@ interface IconProps {
|
|
|
541
545
|
strokeWidth?: number | string;
|
|
542
546
|
}
|
|
543
547
|
|
|
544
|
-
declare const
|
|
548
|
+
declare const AlertRoundedSquare: ({ className, fill, size, }: IconProps) => React$1.JSX.Element;
|
|
545
549
|
|
|
546
|
-
declare const
|
|
550
|
+
declare const CubeHeader: ({ className, fill, size }: IconProps) => React$1.JSX.Element;
|
|
551
|
+
|
|
552
|
+
declare const Discrepancy: ({ className, fill, size }: IconProps) => React$1.JSX.Element;
|
|
547
553
|
|
|
548
554
|
declare const ExposedPort: ({ className, fill, size }: IconProps) => React$1.JSX.Element;
|
|
549
555
|
|
|
550
|
-
declare const
|
|
556
|
+
declare const Flowqount: ({ className, fill, size }: IconProps) => React$1.JSX.Element;
|
|
551
557
|
|
|
552
|
-
declare const
|
|
558
|
+
declare const FQAnalytical: ({ className, fill, size, }: IconProps) => React$1.JSX.Element;
|
|
553
559
|
|
|
554
|
-
declare const
|
|
560
|
+
declare const FQGetaway: ({ className, fill, size }: IconProps) => React$1.JSX.Element;
|
|
555
561
|
|
|
556
|
-
declare const
|
|
562
|
+
declare const FQModeler: ({ className, fill, size }: IconProps) => React$1.JSX.Element;
|
|
557
563
|
|
|
558
|
-
declare const
|
|
564
|
+
declare const FQOperation: ({ className, fill, size }: IconProps) => React$1.JSX.Element;
|
|
559
565
|
|
|
560
|
-
declare const
|
|
566
|
+
declare const FQWelldone: ({ className, fill, size }: IconProps) => React$1.JSX.Element;
|
|
561
567
|
|
|
562
|
-
declare const
|
|
568
|
+
declare const Inlet: ({ className, fill, size }: IconProps) => React$1.JSX.Element;
|
|
563
569
|
|
|
564
|
-
declare const
|
|
570
|
+
declare const Legend: ({ className, fill, size }: IconProps) => React$1.JSX.Element;
|
|
565
571
|
|
|
566
|
-
declare const
|
|
572
|
+
declare const ModalBalance: ({ className, fill, size, }: IconProps) => React$1.JSX.Element;
|
|
567
573
|
|
|
568
|
-
declare const
|
|
574
|
+
declare const Neutral: ({ className, fill, size, }: IconProps) => React$1.JSX.Element;
|
|
569
575
|
|
|
570
|
-
declare const
|
|
576
|
+
declare const Node: ({ className, fill, size }: IconProps) => React$1.JSX.Element;
|
|
571
577
|
|
|
572
|
-
declare const
|
|
578
|
+
declare const Outlet: ({ className, fill, size }: IconProps) => React$1.JSX.Element;
|
|
573
579
|
|
|
574
|
-
declare const
|
|
580
|
+
declare const Port: ({ className, fill, size }: IconProps) => React$1.JSX.Element;
|
|
575
581
|
|
|
576
|
-
declare const
|
|
582
|
+
declare const SelectAllAdd: ({ className, fill, size, }: IconProps) => React$1.JSX.Element;
|
|
577
583
|
|
|
578
|
-
declare const
|
|
584
|
+
declare const SelectAllRemove: ({ className, fill, size, }: IconProps) => React$1.JSX.Element;
|
|
579
585
|
|
|
580
586
|
declare const Spinner$1: ({ className, fill, size }: IconProps) => React$1.JSX.Element;
|
|
581
587
|
|
|
582
|
-
declare const
|
|
588
|
+
declare const Stack: ({ className, fill, size }: IconProps) => React$1.JSX.Element;
|
|
583
589
|
|
|
584
|
-
declare const
|
|
590
|
+
declare const Rhombus: ({ className, fill, size, }: IconProps) => React$1.JSX.Element;
|
|
585
591
|
|
|
586
|
-
declare const
|
|
592
|
+
declare const VirtualPort: ({ className, fill, size }: IconProps) => React$1.JSX.Element;
|
|
587
593
|
|
|
588
594
|
interface InfoPanelProps {
|
|
589
595
|
variant?: 'container' | 'form-sm' | 'form-md';
|
|
@@ -781,6 +787,8 @@ interface TooltipProps extends Omit<ComponentPropsWithoutRef<'div'>, 'content'>
|
|
|
781
787
|
delay?: number;
|
|
782
788
|
maxWidth?: string;
|
|
783
789
|
zIndex?: number;
|
|
790
|
+
bgColor?: string;
|
|
791
|
+
textColor?: string;
|
|
784
792
|
direction?: 'top' | 'right' | 'bottom' | 'left' | 'bottom-right' | 'bottom-left' | 'top-right' | 'top-left';
|
|
785
793
|
}
|
|
786
794
|
|
|
@@ -884,4 +892,4 @@ declare function Window({ size, title, zIndex, onClose, ...rest }: WindowProps):
|
|
|
884
892
|
*/
|
|
885
893
|
declare function getRelativeTime(date: Date): string;
|
|
886
894
|
|
|
887
|
-
export { Accordions, Alert, Avatar, AlertRoundedSquare as BCAlertRoundedSquare, CubeHeader as BCCubeHeader, Discrepancy as BCDiscrepancy, ExposedPort as BCExposedPort, FQAnalytical as BCFQAnalytical, FQGetaway as BCFQGetaway, FQModeler as BCFQModeler, FQOperation as BCFQOperation, FQWelldone as BCFQWelldone, Flowqount as BCFlowqount, Inlet as BCInlet, Legend as BCLegend, ModalBalance as BCModalBalance, Neutral as BCNeutral, Node as BCNode, Outlet as BCOutlet, Port as BCPort, SelectAllAdd as BCSelectAllAdd, SelectAllRemove as BCSelectAllRemove, Spinner$1 as BCSpinner, Stack as BCStack, VirtualPort as BCVirtualPort, Badge, Banner, Brand, Breadcrumb, Button, ButtonApp, Card, Checkbox, Color, ContextualButton, DatePicker, Display, Divider, DropdownContainer, DropdownItem, FileTree, FormGroup, FormGroupButton, FormGroupLabel, FormLabel, Heading, InfoPanel, Link, LiveSearch, MenuContainer, MenuItem, Modal, Notification, P, PaginationBar, PickerCalendar, Pills, Popover, ProgressBar, ProgressCircle, Radio, ResizeableDiv, SegmentButtonGroup, SegmentButtonItem, SelectInput, Slider, Spinner, Tab, TabMenu, TableCell, TagLabel, Text, TextArea, TextInput, Toaster, Toggle, Tooltip, TreeItem, Window, getRelativeTime, useFileTree };
|
|
895
|
+
export { Accordions, Alert, Avatar, AlertRoundedSquare as BCAlertRoundedSquare, CubeHeader as BCCubeHeader, Discrepancy as BCDiscrepancy, ExposedPort as BCExposedPort, FQAnalytical as BCFQAnalytical, FQGetaway as BCFQGetaway, FQModeler as BCFQModeler, FQOperation as BCFQOperation, FQWelldone as BCFQWelldone, Flowqount as BCFlowqount, Inlet as BCInlet, Legend as BCLegend, ModalBalance as BCModalBalance, Neutral as BCNeutral, Node as BCNode, Outlet as BCOutlet, Port as BCPort, Rhombus as BCRhombus, SelectAllAdd as BCSelectAllAdd, SelectAllRemove as BCSelectAllRemove, Spinner$1 as BCSpinner, Stack as BCStack, VirtualPort as BCVirtualPort, Badge, Banner, Brand, Breadcrumb, Button, ButtonApp, Card, Checkbox, Color, ContextualButton, DatePicker, Display, Divider, DropdownContainer, DropdownItem, FileTree, FormGroup, FormGroupButton, FormGroupLabel, FormLabel, Heading, InfoPanel, Link, LiveSearch, MenuContainer, MenuItem, Modal, Notification, P, PaginationBar, PickerCalendar, Pills, Popover, ProgressBar, ProgressCircle, Radio, ResizeableDiv, SegmentButtonGroup, SegmentButtonItem, SelectInput, Slider, Spinner, Tab, TabMenu, TableCell, TagLabel, Text, TextArea, TextInput, Toaster, Toggle, Tooltip, TreeItem, Window, getRelativeTime, useFileTree };
|
package/package.json
CHANGED
|
@@ -1,141 +1,141 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "bianic-ui",
|
|
3
|
-
"publishConfig": {
|
|
4
|
-
"@biaenergi:registry": "https://gitlab.com/api/v4/projects/50905269/packages/npm/"
|
|
5
|
-
},
|
|
6
|
-
"version": "2.
|
|
7
|
-
"description": "Design Language System develop by BIAENERGI",
|
|
8
|
-
"repository": {
|
|
9
|
-
"type": "git",
|
|
10
|
-
"url": "git@github.com:bia-energi/bianic-2.0.git"
|
|
11
|
-
},
|
|
12
|
-
"scripts": {
|
|
13
|
-
"rollup": "rollup -c",
|
|
14
|
-
"storybook": "storybook dev -p 6006",
|
|
15
|
-
"build-storybook": "storybook build",
|
|
16
|
-
"publish-storybook": "npx chromatic --project-token=chpt_2ced61576f9e1e6",
|
|
17
|
-
"lint": "npx eslint src/components",
|
|
18
|
-
"lint:fix": "npx eslint src/components --fix",
|
|
19
|
-
"prepare": "husky install",
|
|
20
|
-
"release": "standard-version",
|
|
21
|
-
"full-release": "npm run rollup && npm run release && git push --follow-tags origin development-temporary && npm publish",
|
|
22
|
-
"release:beta": "npm run rollup && npm run release -- --prerelease beta && git push --follow-tags origin development-temporary && npm publish --tag beta"
|
|
23
|
-
},
|
|
24
|
-
"standard-version": {
|
|
25
|
-
"types": [
|
|
26
|
-
{
|
|
27
|
-
"type": "feat",
|
|
28
|
-
"section": "✨ Features",
|
|
29
|
-
"hidden": false
|
|
30
|
-
},
|
|
31
|
-
{
|
|
32
|
-
"type": "fix",
|
|
33
|
-
"section": "🐛 Bug Fixes",
|
|
34
|
-
"hidden": false
|
|
35
|
-
},
|
|
36
|
-
{
|
|
37
|
-
"type": "perf",
|
|
38
|
-
"section": "🚀 Performance Improvements",
|
|
39
|
-
"hidden": false
|
|
40
|
-
},
|
|
41
|
-
{
|
|
42
|
-
"type": "style",
|
|
43
|
-
"section": "🎨 Styling Changes",
|
|
44
|
-
"hidden": false
|
|
45
|
-
},
|
|
46
|
-
{
|
|
47
|
-
"type": "docs",
|
|
48
|
-
"section": "📖 Documentation",
|
|
49
|
-
"hidden": false
|
|
50
|
-
},
|
|
51
|
-
{
|
|
52
|
-
"type": "chore",
|
|
53
|
-
"hidden": true
|
|
54
|
-
},
|
|
55
|
-
{
|
|
56
|
-
"type": "refactor",
|
|
57
|
-
"hidden": true
|
|
58
|
-
}
|
|
59
|
-
]
|
|
60
|
-
},
|
|
61
|
-
"author": {
|
|
62
|
-
"name": "Biaenergi"
|
|
63
|
-
},
|
|
64
|
-
"license": "ISC",
|
|
65
|
-
"devDependencies": {
|
|
66
|
-
"@chromatic-com/storybook": "^1.5.0",
|
|
67
|
-
"@eslint/js": "^9.5.0",
|
|
68
|
-
"@rollup/plugin-commonjs": "^25.0.4",
|
|
69
|
-
"@rollup/plugin-node-resolve": "^15.2.1",
|
|
70
|
-
"@rollup/plugin-typescript": "^11.1.4",
|
|
71
|
-
"@rollup/plugin-url": "^8.0.2",
|
|
72
|
-
"@storybook/addon-essentials": "^8.1.11",
|
|
73
|
-
"@storybook/addon-interactions": "^8.1.6",
|
|
74
|
-
"@storybook/addon-links": "^8.1.6",
|
|
75
|
-
"@storybook/addon-onboarding": "^8.1.6",
|
|
76
|
-
"@storybook/addon-styling-webpack": "^1.0.0",
|
|
77
|
-
"@storybook/addon-webpack5-compiler-swc": "^1.0.3",
|
|
78
|
-
"@storybook/blocks": "^8.1.6",
|
|
79
|
-
"@storybook/react": "^8.1.11",
|
|
80
|
-
"@storybook/react-webpack5": "^8.1.6",
|
|
81
|
-
"@storybook/test": "^8.1.6",
|
|
82
|
-
"@types/react": "^18.2.24",
|
|
83
|
-
"@typescript-eslint/eslint-plugin": "^7.13.1",
|
|
84
|
-
"@typescript-eslint/parser": "^7.13.1",
|
|
85
|
-
"autoprefixer": "^10.4.19",
|
|
86
|
-
"chromatic": "^11.5.3",
|
|
87
|
-
"css-loader": "^7.1.2",
|
|
88
|
-
"eslint": "^8.57.0",
|
|
89
|
-
"eslint-config-airbnb": "^19.0.4",
|
|
90
|
-
"eslint-config-airbnb-typescript": "^18.0.0",
|
|
91
|
-
"eslint-config-node": "^4.1.0",
|
|
92
|
-
"eslint-config-prettier": "^9.1.0",
|
|
93
|
-
"eslint-plugin-import": "^2.25.3",
|
|
94
|
-
"eslint-plugin-jsx-a11y": "^6.5.1",
|
|
95
|
-
"eslint-plugin-node": "^11.1.0",
|
|
96
|
-
"eslint-plugin-prettier": "^5.1.3",
|
|
97
|
-
"eslint-plugin-react": "^7.34.3",
|
|
98
|
-
"eslint-plugin-react-hooks": "^4.3.0",
|
|
99
|
-
"globals": "^15.6.0",
|
|
100
|
-
"husky": "^9.0.11",
|
|
101
|
-
"postcss": "^8.4.31",
|
|
102
|
-
"postcss-loader": "^8.1.1",
|
|
103
|
-
"postcss-url": "^10.1.3",
|
|
104
|
-
"prettier": "^3.3.2",
|
|
105
|
-
"prettier-plugin-tailwindcss": "^0.5.6",
|
|
106
|
-
"react-dom": "^18.0.0 || ^19.0.0-beta",
|
|
107
|
-
"react-draggable": "^4.5.0",
|
|
108
|
-
"react-icons": "^5.2.1",
|
|
109
|
-
"rollup": "^3.29.4",
|
|
110
|
-
"rollup-plugin-copy": "^3.5.0",
|
|
111
|
-
"rollup-plugin-dts": "^6.0.2",
|
|
112
|
-
"rollup-plugin-image": "^1.0.2",
|
|
113
|
-
"rollup-plugin-postcss": "^4.0.2",
|
|
114
|
-
"sass": "^1.77.6",
|
|
115
|
-
"sass-loader": "^14.2.1",
|
|
116
|
-
"standard-version": "^9.5.0",
|
|
117
|
-
"storybook": "^8.1.6",
|
|
118
|
-
"style-loader": "^4.0.0",
|
|
119
|
-
"tailwindcss": "^3.4.4",
|
|
120
|
-
"tslib": "^2.6.2",
|
|
121
|
-
"typescript": "^5.2.2",
|
|
122
|
-
"typescript-eslint": "^7.13.1",
|
|
123
|
-
"url-loader": "^4.1.1",
|
|
124
|
-
"webpack": "^5.88.2"
|
|
125
|
-
},
|
|
126
|
-
"main": "dist/cjs/index.js",
|
|
127
|
-
"module": "dist/esm/index.js",
|
|
128
|
-
"files": [
|
|
129
|
-
"dist",
|
|
130
|
-
"dist/*.css",
|
|
131
|
-
"src/style",
|
|
132
|
-
"src/font",
|
|
133
|
-
"tailwind.config.js"
|
|
134
|
-
],
|
|
135
|
-
"peerDependencies": {
|
|
136
|
-
"react": "^18.0.0 || ^19.0.0-beta",
|
|
137
|
-
"react-dom": "^18.0.0 || ^19.0.0-beta",
|
|
138
|
-
"react-icons": "^5.2.1"
|
|
139
|
-
},
|
|
140
|
-
"types": "dist/index.d.ts"
|
|
141
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "bianic-ui",
|
|
3
|
+
"publishConfig": {
|
|
4
|
+
"@biaenergi:registry": "https://gitlab.com/api/v4/projects/50905269/packages/npm/"
|
|
5
|
+
},
|
|
6
|
+
"version": "2.7.0",
|
|
7
|
+
"description": "Design Language System develop by BIAENERGI",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "git@github.com:bia-energi/bianic-2.0.git"
|
|
11
|
+
},
|
|
12
|
+
"scripts": {
|
|
13
|
+
"rollup": "rollup -c",
|
|
14
|
+
"storybook": "storybook dev -p 6006",
|
|
15
|
+
"build-storybook": "storybook build",
|
|
16
|
+
"publish-storybook": "npx chromatic --project-token=chpt_2ced61576f9e1e6",
|
|
17
|
+
"lint": "npx eslint src/components",
|
|
18
|
+
"lint:fix": "npx eslint src/components --fix",
|
|
19
|
+
"prepare": "husky install",
|
|
20
|
+
"release": "standard-version",
|
|
21
|
+
"full-release": "npm run rollup && npm run release && git push --follow-tags origin development-temporary && npm publish",
|
|
22
|
+
"release:beta": "npm run rollup && npm run release -- --prerelease beta && git push --follow-tags origin development-temporary && npm publish --tag beta"
|
|
23
|
+
},
|
|
24
|
+
"standard-version": {
|
|
25
|
+
"types": [
|
|
26
|
+
{
|
|
27
|
+
"type": "feat",
|
|
28
|
+
"section": "✨ Features",
|
|
29
|
+
"hidden": false
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"type": "fix",
|
|
33
|
+
"section": "🐛 Bug Fixes",
|
|
34
|
+
"hidden": false
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"type": "perf",
|
|
38
|
+
"section": "🚀 Performance Improvements",
|
|
39
|
+
"hidden": false
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"type": "style",
|
|
43
|
+
"section": "🎨 Styling Changes",
|
|
44
|
+
"hidden": false
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"type": "docs",
|
|
48
|
+
"section": "📖 Documentation",
|
|
49
|
+
"hidden": false
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"type": "chore",
|
|
53
|
+
"hidden": true
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
"type": "refactor",
|
|
57
|
+
"hidden": true
|
|
58
|
+
}
|
|
59
|
+
]
|
|
60
|
+
},
|
|
61
|
+
"author": {
|
|
62
|
+
"name": "Biaenergi"
|
|
63
|
+
},
|
|
64
|
+
"license": "ISC",
|
|
65
|
+
"devDependencies": {
|
|
66
|
+
"@chromatic-com/storybook": "^1.5.0",
|
|
67
|
+
"@eslint/js": "^9.5.0",
|
|
68
|
+
"@rollup/plugin-commonjs": "^25.0.4",
|
|
69
|
+
"@rollup/plugin-node-resolve": "^15.2.1",
|
|
70
|
+
"@rollup/plugin-typescript": "^11.1.4",
|
|
71
|
+
"@rollup/plugin-url": "^8.0.2",
|
|
72
|
+
"@storybook/addon-essentials": "^8.1.11",
|
|
73
|
+
"@storybook/addon-interactions": "^8.1.6",
|
|
74
|
+
"@storybook/addon-links": "^8.1.6",
|
|
75
|
+
"@storybook/addon-onboarding": "^8.1.6",
|
|
76
|
+
"@storybook/addon-styling-webpack": "^1.0.0",
|
|
77
|
+
"@storybook/addon-webpack5-compiler-swc": "^1.0.3",
|
|
78
|
+
"@storybook/blocks": "^8.1.6",
|
|
79
|
+
"@storybook/react": "^8.1.11",
|
|
80
|
+
"@storybook/react-webpack5": "^8.1.6",
|
|
81
|
+
"@storybook/test": "^8.1.6",
|
|
82
|
+
"@types/react": "^18.2.24",
|
|
83
|
+
"@typescript-eslint/eslint-plugin": "^7.13.1",
|
|
84
|
+
"@typescript-eslint/parser": "^7.13.1",
|
|
85
|
+
"autoprefixer": "^10.4.19",
|
|
86
|
+
"chromatic": "^11.5.3",
|
|
87
|
+
"css-loader": "^7.1.2",
|
|
88
|
+
"eslint": "^8.57.0",
|
|
89
|
+
"eslint-config-airbnb": "^19.0.4",
|
|
90
|
+
"eslint-config-airbnb-typescript": "^18.0.0",
|
|
91
|
+
"eslint-config-node": "^4.1.0",
|
|
92
|
+
"eslint-config-prettier": "^9.1.0",
|
|
93
|
+
"eslint-plugin-import": "^2.25.3",
|
|
94
|
+
"eslint-plugin-jsx-a11y": "^6.5.1",
|
|
95
|
+
"eslint-plugin-node": "^11.1.0",
|
|
96
|
+
"eslint-plugin-prettier": "^5.1.3",
|
|
97
|
+
"eslint-plugin-react": "^7.34.3",
|
|
98
|
+
"eslint-plugin-react-hooks": "^4.3.0",
|
|
99
|
+
"globals": "^15.6.0",
|
|
100
|
+
"husky": "^9.0.11",
|
|
101
|
+
"postcss": "^8.4.31",
|
|
102
|
+
"postcss-loader": "^8.1.1",
|
|
103
|
+
"postcss-url": "^10.1.3",
|
|
104
|
+
"prettier": "^3.3.2",
|
|
105
|
+
"prettier-plugin-tailwindcss": "^0.5.6",
|
|
106
|
+
"react-dom": "^18.0.0 || ^19.0.0-beta",
|
|
107
|
+
"react-draggable": "^4.5.0",
|
|
108
|
+
"react-icons": "^5.2.1",
|
|
109
|
+
"rollup": "^3.29.4",
|
|
110
|
+
"rollup-plugin-copy": "^3.5.0",
|
|
111
|
+
"rollup-plugin-dts": "^6.0.2",
|
|
112
|
+
"rollup-plugin-image": "^1.0.2",
|
|
113
|
+
"rollup-plugin-postcss": "^4.0.2",
|
|
114
|
+
"sass": "^1.77.6",
|
|
115
|
+
"sass-loader": "^14.2.1",
|
|
116
|
+
"standard-version": "^9.5.0",
|
|
117
|
+
"storybook": "^8.1.6",
|
|
118
|
+
"style-loader": "^4.0.0",
|
|
119
|
+
"tailwindcss": "^3.4.4",
|
|
120
|
+
"tslib": "^2.6.2",
|
|
121
|
+
"typescript": "^5.2.2",
|
|
122
|
+
"typescript-eslint": "^7.13.1",
|
|
123
|
+
"url-loader": "^4.1.1",
|
|
124
|
+
"webpack": "^5.88.2"
|
|
125
|
+
},
|
|
126
|
+
"main": "dist/cjs/index.js",
|
|
127
|
+
"module": "dist/esm/index.js",
|
|
128
|
+
"files": [
|
|
129
|
+
"dist",
|
|
130
|
+
"dist/*.css",
|
|
131
|
+
"src/style",
|
|
132
|
+
"src/font",
|
|
133
|
+
"tailwind.config.js"
|
|
134
|
+
],
|
|
135
|
+
"peerDependencies": {
|
|
136
|
+
"react": "^18.0.0 || ^19.0.0-beta",
|
|
137
|
+
"react-dom": "^18.0.0 || ^19.0.0-beta",
|
|
138
|
+
"react-icons": "^5.2.1"
|
|
139
|
+
},
|
|
140
|
+
"types": "dist/index.d.ts"
|
|
141
|
+
}
|