bianic-ui 2.10.1 → 2.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/README.md +49 -49
- package/dist/cjs/Empty.svg +12 -12
- package/dist/cjs/index.js +124 -70
- package/dist/cjs/lib.css +1 -1
- package/dist/cjs/types/components/Countdown/index.d.ts +1 -0
- package/dist/cjs/types/components/Forms/SelectInput/index.d.ts +1 -1
- package/dist/cjs/types/components/Icons/Unlinked.d.ts +4 -0
- package/dist/cjs/types/components/Icons/index.d.ts +2 -1
- package/dist/cjs/types/components/Popover/PropInterface.d.ts +2 -0
- package/dist/cjs/types/components/Popover/configs.d.ts +8 -8
- package/dist/cjs/types/components/Popover/index.d.ts +1 -1
- package/dist/cjs/types/components/Table/TableUtility/TableFooterController.d.ts +2 -1
- package/dist/cjs/types/components/Table/TableUtility/TableHeaderController.d.ts +2 -1
- package/dist/cjs/types/components/Tooltip/PropsInterface.d.ts +1 -0
- package/dist/cjs/types/stories/Banner.stories.d.ts +1 -0
- package/dist/cjs/types/stories/Icons/Unlinked.stories.d.ts +14 -0
- package/dist/esm/Empty.svg +12 -12
- package/dist/esm/index.js +125 -72
- package/dist/esm/lib.css +1 -1
- package/dist/esm/types/components/Countdown/index.d.ts +1 -0
- package/dist/esm/types/components/Forms/SelectInput/index.d.ts +1 -1
- package/dist/esm/types/components/Icons/Unlinked.d.ts +4 -0
- package/dist/esm/types/components/Icons/index.d.ts +2 -1
- package/dist/esm/types/components/Popover/PropInterface.d.ts +2 -0
- package/dist/esm/types/components/Popover/configs.d.ts +8 -8
- package/dist/esm/types/components/Popover/index.d.ts +1 -1
- package/dist/esm/types/components/Table/TableUtility/TableFooterController.d.ts +2 -1
- package/dist/esm/types/components/Table/TableUtility/TableHeaderController.d.ts +2 -1
- package/dist/esm/types/components/Tooltip/PropsInterface.d.ts +1 -0
- package/dist/esm/types/stories/Banner.stories.d.ts +1 -0
- package/dist/esm/types/stories/Icons/Unlinked.stories.d.ts +14 -0
- package/dist/index.d.ts +12 -6
- package/package.json +143 -143
- package/src/font/SansCode/README.txt +88 -88
- package/src/style/color.css +650 -650
- package/src/style/scrollbar.css +78 -78
- package/tailwind.config.js +592 -574
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
export interface CountdownProps extends React.ComponentPropsWithoutRef<'div'> {
|
|
3
3
|
seconds: number;
|
|
4
|
+
maxSeconds: number;
|
|
4
5
|
variant?: 'countdown' | 'success';
|
|
5
6
|
}
|
|
6
7
|
declare const Countdown: React.ForwardRefExoticComponent<CountdownProps & React.RefAttributes<HTMLDivElement>>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import SelectInputProps from './PropsInterface';
|
|
3
|
-
declare function SelectInput({ descText, disabled, size, id, isValid, label, options, required, selected, setSelected, onClickDropdown, children, dropContProps: { className: dropContClassName, ...restDropContProps }, ...props }: SelectInputProps): React.JSX.Element;
|
|
3
|
+
declare function SelectInput({ descText, disabled, size, id, isValid, label, options, readOnly, required, selected, setSelected, onClickDropdown, children, dropContProps: { className: dropContClassName, ...restDropContProps }, ...props }: SelectInputProps): React.JSX.Element;
|
|
4
4
|
declare namespace SelectInput {
|
|
5
5
|
var defaultProps: {
|
|
6
6
|
descText: string;
|
|
@@ -15,9 +15,10 @@ export { default as BCNeutral } from './Neutral';
|
|
|
15
15
|
export { default as BCNode } from './Node';
|
|
16
16
|
export { default as BCOutlet } from './Outlet';
|
|
17
17
|
export { default as BCPort } from './Port';
|
|
18
|
+
export { default as BCRhombus } from './Rhombus';
|
|
18
19
|
export { default as BCSelectAllAdd } from './SelectAllAdd';
|
|
19
20
|
export { default as BCSelectAllRemove } from './SelectAllRemove';
|
|
20
21
|
export { default as BCSpinner } from './Spinner';
|
|
21
22
|
export { default as BCStack } from './Stack';
|
|
22
|
-
export { default as
|
|
23
|
+
export { default as BCUnlinked } from './Unlinked';
|
|
23
24
|
export { default as BCVirtualPort } from './VirtualPort';
|
|
@@ -7,6 +7,7 @@ export interface PopoverProps {
|
|
|
7
7
|
title?: string;
|
|
8
8
|
style?: React.CSSProperties;
|
|
9
9
|
zIndex?: number;
|
|
10
|
+
color?: 'black' | 'white';
|
|
10
11
|
direction?: 'top' | 'right' | 'bottom' | 'left' | 'bottom-right' | 'bottom-left' | 'top-right' | 'top-left';
|
|
11
12
|
}
|
|
12
13
|
export interface PopoverItemProps {
|
|
@@ -16,5 +17,6 @@ export interface PopoverItemProps {
|
|
|
16
17
|
style?: React.CSSProperties;
|
|
17
18
|
title: string;
|
|
18
19
|
zIndex?: number;
|
|
20
|
+
color?: 'black' | 'white';
|
|
19
21
|
direction: 'top' | 'right' | 'bottom' | 'left' | 'bottom-right' | 'bottom-left' | 'top-right' | 'top-left';
|
|
20
22
|
}
|
|
@@ -2,42 +2,42 @@ declare const classConfig: {
|
|
|
2
2
|
top: {
|
|
3
3
|
tooltipContainer: string;
|
|
4
4
|
triangleContainer: string;
|
|
5
|
-
|
|
5
|
+
triangleBorders: string;
|
|
6
6
|
};
|
|
7
7
|
right: {
|
|
8
8
|
tooltipContainer: string;
|
|
9
9
|
triangleContainer: string;
|
|
10
|
-
|
|
10
|
+
triangleBorders: string;
|
|
11
11
|
};
|
|
12
12
|
bottom: {
|
|
13
13
|
tooltipContainer: string;
|
|
14
14
|
triangleContainer: string;
|
|
15
|
-
|
|
15
|
+
triangleBorders: string;
|
|
16
16
|
};
|
|
17
17
|
left: {
|
|
18
18
|
tooltipContainer: string;
|
|
19
19
|
triangleContainer: string;
|
|
20
|
-
|
|
20
|
+
triangleBorders: string;
|
|
21
21
|
};
|
|
22
22
|
'top-right': {
|
|
23
23
|
tooltipContainer: string;
|
|
24
24
|
triangleContainer: string;
|
|
25
|
-
|
|
25
|
+
triangleBorders: string;
|
|
26
26
|
};
|
|
27
27
|
'top-left': {
|
|
28
28
|
tooltipContainer: string;
|
|
29
29
|
triangleContainer: string;
|
|
30
|
-
|
|
30
|
+
triangleBorders: string;
|
|
31
31
|
};
|
|
32
32
|
'bottom-right': {
|
|
33
33
|
tooltipContainer: string;
|
|
34
34
|
triangleContainer: string;
|
|
35
|
-
|
|
35
|
+
triangleBorders: string;
|
|
36
36
|
};
|
|
37
37
|
'bottom-left': {
|
|
38
38
|
tooltipContainer: string;
|
|
39
39
|
triangleContainer: string;
|
|
40
|
-
|
|
40
|
+
triangleBorders: string;
|
|
41
41
|
};
|
|
42
42
|
};
|
|
43
43
|
export default classConfig;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { PopoverProps } from './PropInterface';
|
|
3
|
-
declare function Popover({ className, children, content, direction, maxWidth, title, style, zIndex, }: PopoverProps): React.JSX.Element;
|
|
3
|
+
declare function Popover({ className, children, content, direction, maxWidth, title, style, zIndex, color, }: PopoverProps): React.JSX.Element;
|
|
4
4
|
declare namespace Popover {
|
|
5
5
|
var defaultProps: {
|
|
6
6
|
direction: string;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ComponentPropsWithoutRef, Dispatch, SetStateAction } from 'react';
|
|
2
2
|
import React from 'react';
|
|
3
3
|
interface TableFooterControllerProps extends ComponentPropsWithoutRef<'div'> {
|
|
4
|
+
size: 'sm' | 'md';
|
|
4
5
|
currentPage: number;
|
|
5
6
|
totalPages: number;
|
|
6
7
|
pageSize: number;
|
|
@@ -8,5 +9,5 @@ interface TableFooterControllerProps extends ComponentPropsWithoutRef<'div'> {
|
|
|
8
9
|
setPageSize: Dispatch<SetStateAction<number>>;
|
|
9
10
|
isLoading?: boolean;
|
|
10
11
|
}
|
|
11
|
-
declare const TableFooterController: ({ currentPage, totalPages, pageSize, setCurrentPage, setPageSize, isLoading, }: TableFooterControllerProps) => React.JSX.Element;
|
|
12
|
+
declare const TableFooterController: ({ currentPage, totalPages, pageSize, setCurrentPage, setPageSize, isLoading, size, }: TableFooterControllerProps) => React.JSX.Element;
|
|
12
13
|
export default TableFooterController;
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import React, { ComponentPropsWithoutRef, ReactNode } from 'react';
|
|
2
2
|
interface TableHeaderControllerProps extends ComponentPropsWithoutRef<'div'> {
|
|
3
|
+
size?: 'sm' | 'md';
|
|
3
4
|
buttonActions?: ReactNode[];
|
|
4
5
|
totalData?: number;
|
|
5
6
|
firstIndex?: number;
|
|
6
7
|
lastIndex?: number;
|
|
7
8
|
}
|
|
8
|
-
declare const TableHeaderController: ({ buttonActions, totalData, firstIndex, lastIndex, }: TableHeaderControllerProps) => React.JSX.Element;
|
|
9
|
+
declare const TableHeaderController: ({ size, buttonActions, totalData, firstIndex, lastIndex, }: TableHeaderControllerProps) => React.JSX.Element;
|
|
9
10
|
export default TableHeaderController;
|
|
@@ -10,6 +10,7 @@ interface TooltipProps extends Omit<ComponentPropsWithoutRef<'div'>, 'content'>
|
|
|
10
10
|
direction?: 'top' | 'right' | 'bottom' | 'left' | 'bottom-right' | 'bottom-left' | 'top-right' | 'top-left';
|
|
11
11
|
}
|
|
12
12
|
interface TooltipItemProps {
|
|
13
|
+
active?: boolean;
|
|
13
14
|
anchorRef: RefObject<HTMLDivElement>;
|
|
14
15
|
className?: string;
|
|
15
16
|
content: ReactNode | string;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import type { StoryObj } from '@storybook/react-webpack5';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
declare const meta: {
|
|
4
|
+
title: string;
|
|
5
|
+
component: ({ className, fill, size, }: import("../../components/Icons/interface").IconProps) => 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
|
@@ -153,6 +153,7 @@ declare function Color(): React$1.JSX.Element;
|
|
|
153
153
|
|
|
154
154
|
interface CountdownProps extends React$1.ComponentPropsWithoutRef<'div'> {
|
|
155
155
|
seconds: number;
|
|
156
|
+
maxSeconds: number;
|
|
156
157
|
variant?: 'countdown' | 'success';
|
|
157
158
|
}
|
|
158
159
|
declare const Countdown: React$1.ForwardRefExoticComponent<CountdownProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
@@ -380,7 +381,7 @@ interface SelectInputProps extends Omit<ComponentPropsWithoutRef<'input'>, 'size
|
|
|
380
381
|
dropContProps?: Omit<DropdownContainerProps, 'children'>;
|
|
381
382
|
}
|
|
382
383
|
|
|
383
|
-
declare function SelectInput({ descText, disabled, size, id, isValid, label, options, required, selected, setSelected, onClickDropdown, children, dropContProps: { className: dropContClassName, ...restDropContProps }, ...props }: SelectInputProps): React$1.JSX.Element;
|
|
384
|
+
declare function SelectInput({ descText, disabled, size, id, isValid, label, options, readOnly, required, selected, setSelected, onClickDropdown, children, dropContProps: { className: dropContClassName, ...restDropContProps }, ...props }: SelectInputProps): React$1.JSX.Element;
|
|
384
385
|
declare namespace SelectInput {
|
|
385
386
|
var defaultProps: {
|
|
386
387
|
descText: string;
|
|
@@ -601,6 +602,8 @@ declare const Outlet: ({ className, fill, size }: IconProps) => React$1.JSX.Elem
|
|
|
601
602
|
|
|
602
603
|
declare const Port: ({ className, fill, size }: IconProps) => React$1.JSX.Element;
|
|
603
604
|
|
|
605
|
+
declare const Rhombus: ({ className, fill, size, }: IconProps) => React$1.JSX.Element;
|
|
606
|
+
|
|
604
607
|
declare const SelectAllAdd: ({ className, fill, size, }: IconProps) => React$1.JSX.Element;
|
|
605
608
|
|
|
606
609
|
declare const SelectAllRemove: ({ className, fill, size, }: IconProps) => React$1.JSX.Element;
|
|
@@ -609,7 +612,7 @@ declare const Spinner$1: ({ className, fill, size }: IconProps) => React$1.JSX.E
|
|
|
609
612
|
|
|
610
613
|
declare const Stack: ({ className, fill, size }: IconProps) => React$1.JSX.Element;
|
|
611
614
|
|
|
612
|
-
declare const
|
|
615
|
+
declare const Unlinked: ({ className, fill, size, }: IconProps) => React$1.JSX.Element;
|
|
613
616
|
|
|
614
617
|
declare const VirtualPort: ({ className, fill, size }: IconProps) => React$1.JSX.Element;
|
|
615
618
|
|
|
@@ -679,10 +682,11 @@ interface PopoverProps {
|
|
|
679
682
|
title?: string;
|
|
680
683
|
style?: React.CSSProperties;
|
|
681
684
|
zIndex?: number;
|
|
685
|
+
color?: 'black' | 'white';
|
|
682
686
|
direction?: 'top' | 'right' | 'bottom' | 'left' | 'bottom-right' | 'bottom-left' | 'top-right' | 'top-left';
|
|
683
687
|
}
|
|
684
688
|
|
|
685
|
-
declare function Popover({ className, children, content, direction, maxWidth, title, style, zIndex, }: PopoverProps): React$1.JSX.Element;
|
|
689
|
+
declare function Popover({ className, children, content, direction, maxWidth, title, style, zIndex, color, }: PopoverProps): React$1.JSX.Element;
|
|
686
690
|
declare namespace Popover {
|
|
687
691
|
var defaultProps: {
|
|
688
692
|
direction: string;
|
|
@@ -860,6 +864,7 @@ interface EmptyTableProps {
|
|
|
860
864
|
declare const EmptyTable: ({ content, subContent }: EmptyTableProps) => React$1.JSX.Element;
|
|
861
865
|
|
|
862
866
|
interface TableFooterControllerProps extends ComponentPropsWithoutRef<'div'> {
|
|
867
|
+
size: 'sm' | 'md';
|
|
863
868
|
currentPage: number;
|
|
864
869
|
totalPages: number;
|
|
865
870
|
pageSize: number;
|
|
@@ -867,15 +872,16 @@ interface TableFooterControllerProps extends ComponentPropsWithoutRef<'div'> {
|
|
|
867
872
|
setPageSize: Dispatch<SetStateAction<number>>;
|
|
868
873
|
isLoading?: boolean;
|
|
869
874
|
}
|
|
870
|
-
declare const TableFooterController: ({ currentPage, totalPages, pageSize, setCurrentPage, setPageSize, isLoading, }: TableFooterControllerProps) => React$1.JSX.Element;
|
|
875
|
+
declare const TableFooterController: ({ currentPage, totalPages, pageSize, setCurrentPage, setPageSize, isLoading, size, }: TableFooterControllerProps) => React$1.JSX.Element;
|
|
871
876
|
|
|
872
877
|
interface TableHeaderControllerProps extends ComponentPropsWithoutRef<'div'> {
|
|
878
|
+
size?: 'sm' | 'md';
|
|
873
879
|
buttonActions?: ReactNode[];
|
|
874
880
|
totalData?: number;
|
|
875
881
|
firstIndex?: number;
|
|
876
882
|
lastIndex?: number;
|
|
877
883
|
}
|
|
878
|
-
declare const TableHeaderController: ({ buttonActions, totalData, firstIndex, lastIndex, }: TableHeaderControllerProps) => React$1.JSX.Element;
|
|
884
|
+
declare const TableHeaderController: ({ size, buttonActions, totalData, firstIndex, lastIndex, }: TableHeaderControllerProps) => React$1.JSX.Element;
|
|
879
885
|
|
|
880
886
|
interface TableSearchInputProps extends ComponentPropsWithoutRef<'input'> {
|
|
881
887
|
isShow: boolean;
|
|
@@ -1097,4 +1103,4 @@ declare const useTableDataHandler: (initialData: any[], options?: UseTableDataOp
|
|
|
1097
1103
|
handleSortChange: (key: string) => void;
|
|
1098
1104
|
};
|
|
1099
1105
|
|
|
1100
|
-
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, BlockLoading, Brand, Breadcrumb, Button, ButtonApp, Card, Checkbox, Color, ContextualButton, Countdown, DatePicker, Display, Divider, DropdownContainer, DropdownItem, EmptyTable, FileTree, FormGroup, FormGroupButton, FormGroupLabel, FormLabel, Heading, InfoPanel, Link, LiveSearch, MenuContainer, MenuItem, Modal, MonospaceBadge, Notification, P, PaginationBar, PickerCalendar, Pills, Popover, ProgressBar, ProgressCircle, Radio, ResizeableDiv, SegmentButtonGroup, SegmentButtonItem, SelectInput, SidebarContainer, SidebarItem, SidebarMenu, SidebarProfile, Slider, Spinner, Tab, TabMenu, Table, TableBody, TableCell, TableFooterController, TableHead, TableHeaderController, TableRow, TableSearchInput, TagLabel, Text, TextArea, TextInput, Toaster, Toggle, Tooltip, TreeItem, StepperItem as VerticalStepper, Window, getRelativeTime, useFileTree, useTableDataHandler };
|
|
1106
|
+
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, Unlinked as BCUnlinked, VirtualPort as BCVirtualPort, Badge, Banner, BlockLoading, Brand, Breadcrumb, Button, ButtonApp, Card, Checkbox, Color, ContextualButton, Countdown, DatePicker, Display, Divider, DropdownContainer, DropdownItem, EmptyTable, FileTree, FormGroup, FormGroupButton, FormGroupLabel, FormLabel, Heading, InfoPanel, Link, LiveSearch, MenuContainer, MenuItem, Modal, MonospaceBadge, Notification, P, PaginationBar, PickerCalendar, Pills, Popover, ProgressBar, ProgressCircle, Radio, ResizeableDiv, SegmentButtonGroup, SegmentButtonItem, SelectInput, SidebarContainer, SidebarItem, SidebarMenu, SidebarProfile, Slider, Spinner, Tab, TabMenu, Table, TableBody, TableCell, TableFooterController, TableHead, TableHeaderController, TableRow, TableSearchInput, TagLabel, Text, TextArea, TextInput, Toaster, Toggle, Tooltip, TreeItem, StepperItem as VerticalStepper, Window, getRelativeTime, useFileTree, useTableDataHandler };
|
package/package.json
CHANGED
|
@@ -1,143 +1,143 @@
|
|
|
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
|
-
"chromatic": "echo 'Chromatic not configured'",
|
|
18
|
-
"lint": "npx eslint src/components",
|
|
19
|
-
"lint:fix": "npx eslint src/components --fix",
|
|
20
|
-
"prepare": "husky install",
|
|
21
|
-
"release": "standard-version",
|
|
22
|
-
"release:alpha": "node scripts/release.js alpha",
|
|
23
|
-
"release:beta": "node scripts/release.js beta",
|
|
24
|
-
"release:stable": "node scripts/release.js"
|
|
25
|
-
},
|
|
26
|
-
"standard-version": {
|
|
27
|
-
"types": [
|
|
28
|
-
{
|
|
29
|
-
"type": "feat",
|
|
30
|
-
"section": "✨ Features",
|
|
31
|
-
"hidden": false
|
|
32
|
-
},
|
|
33
|
-
{
|
|
34
|
-
"type": "fix",
|
|
35
|
-
"section": "🐛 Bug Fixes",
|
|
36
|
-
"hidden": false
|
|
37
|
-
},
|
|
38
|
-
{
|
|
39
|
-
"type": "perf",
|
|
40
|
-
"section": "🚀 Performance Improvements",
|
|
41
|
-
"hidden": false
|
|
42
|
-
},
|
|
43
|
-
{
|
|
44
|
-
"type": "style",
|
|
45
|
-
"section": "🎨 Styling Changes",
|
|
46
|
-
"hidden": false
|
|
47
|
-
},
|
|
48
|
-
{
|
|
49
|
-
"type": "docs",
|
|
50
|
-
"section": "📖 Documentation",
|
|
51
|
-
"hidden": false
|
|
52
|
-
},
|
|
53
|
-
{
|
|
54
|
-
"type": "chore",
|
|
55
|
-
"hidden": true
|
|
56
|
-
},
|
|
57
|
-
{
|
|
58
|
-
"type": "refactor",
|
|
59
|
-
"hidden": true
|
|
60
|
-
}
|
|
61
|
-
]
|
|
62
|
-
},
|
|
63
|
-
"author": {
|
|
64
|
-
"name": "Biaenergi"
|
|
65
|
-
},
|
|
66
|
-
"license": "ISC",
|
|
67
|
-
"devDependencies": {
|
|
68
|
-
"@chromatic-com/storybook": "^5.2.1",
|
|
69
|
-
"@eslint/js": "^9.5.0",
|
|
70
|
-
"@rollup/plugin-commonjs": "^25.0.4",
|
|
71
|
-
"@rollup/plugin-node-resolve": "^15.2.1",
|
|
72
|
-
"@rollup/plugin-typescript": "^11.1.4",
|
|
73
|
-
"@rollup/plugin-url": "^8.0.2",
|
|
74
|
-
"@storybook/addon-docs": "^10.4.2",
|
|
75
|
-
"@storybook/addon-links": "^10.4.2",
|
|
76
|
-
"@storybook/addon-onboarding": "^10.4.2",
|
|
77
|
-
"@storybook/addon-styling-webpack": "^1.0.0",
|
|
78
|
-
"@storybook/addon-webpack5-compiler-swc": "^4.0.3",
|
|
79
|
-
"@storybook/react-webpack5": "^10.4.2",
|
|
80
|
-
"@types/react": "^18.2.24",
|
|
81
|
-
"@typescript-eslint/eslint-plugin": "^7.13.1",
|
|
82
|
-
"@typescript-eslint/parser": "^7.13.1",
|
|
83
|
-
"autoprefixer": "^10.4.19",
|
|
84
|
-
"chromatic": "^11.5.3",
|
|
85
|
-
"css-loader": "^7.1.2",
|
|
86
|
-
"eslint": "^8.57.0",
|
|
87
|
-
"eslint-config-airbnb": "^19.0.4",
|
|
88
|
-
"eslint-config-airbnb-typescript": "^18.0.0",
|
|
89
|
-
"eslint-config-node": "^4.1.0",
|
|
90
|
-
"eslint-config-prettier": "^9.1.0",
|
|
91
|
-
"eslint-plugin-import": "^2.25.3",
|
|
92
|
-
"eslint-plugin-jsx-a11y": "^6.5.1",
|
|
93
|
-
"eslint-plugin-node": "^11.1.0",
|
|
94
|
-
"eslint-plugin-prettier": "^5.1.3",
|
|
95
|
-
"eslint-plugin-react": "^7.34.3",
|
|
96
|
-
"eslint-plugin-react-hooks": "^4.3.0",
|
|
97
|
-
"eslint-plugin-storybook": "10.4.2",
|
|
98
|
-
"globals": "^15.6.0",
|
|
99
|
-
"husky": "^9.0.11",
|
|
100
|
-
"postcss": "^8.4.31",
|
|
101
|
-
"postcss-loader": "^8.1.1",
|
|
102
|
-
"postcss-url": "^10.1.3",
|
|
103
|
-
"prettier": "^3.3.2",
|
|
104
|
-
"prettier-plugin-tailwindcss": "^0.5.6",
|
|
105
|
-
"react-dom": "^18.0.0 || ^19.0.0-beta",
|
|
106
|
-
"react-draggable": "^4.5.0",
|
|
107
|
-
"react-icons": "^5.2.1",
|
|
108
|
-
"rollup": "^3.29.4",
|
|
109
|
-
"rollup-plugin-copy": "^3.5.0",
|
|
110
|
-
"rollup-plugin-dts": "^6.0.2",
|
|
111
|
-
"rollup-plugin-image": "^1.0.2",
|
|
112
|
-
"rollup-plugin-postcss": "^4.0.2",
|
|
113
|
-
"sass": "^1.77.6",
|
|
114
|
-
"sass-loader": "^14.2.1",
|
|
115
|
-
"standard-version": "^9.5.0",
|
|
116
|
-
"storybook": "^10.4.2",
|
|
117
|
-
"style-loader": "^4.0.0",
|
|
118
|
-
"tailwindcss": "^3.4.4",
|
|
119
|
-
"tslib": "^2.6.2",
|
|
120
|
-
"typescript": "^5.2.2",
|
|
121
|
-
"typescript-eslint": "^7.13.1",
|
|
122
|
-
"url-loader": "^4.1.1",
|
|
123
|
-
"webpack": "^5.88.2"
|
|
124
|
-
},
|
|
125
|
-
"main": "dist/cjs/index.js",
|
|
126
|
-
"module": "dist/esm/index.js",
|
|
127
|
-
"files": [
|
|
128
|
-
"dist",
|
|
129
|
-
"dist/*.css",
|
|
130
|
-
"src/style",
|
|
131
|
-
"src/font",
|
|
132
|
-
"tailwind.config.js"
|
|
133
|
-
],
|
|
134
|
-
"peerDependencies": {
|
|
135
|
-
"react": "^18.0.0 || ^19.0.0-beta",
|
|
136
|
-
"react-dom": "^18.0.0 || ^19.0.0-beta",
|
|
137
|
-
"react-icons": "^5.2.1"
|
|
138
|
-
},
|
|
139
|
-
"types": "dist/index.d.ts",
|
|
140
|
-
"dependencies": {
|
|
141
|
-
"tailwind-merge": "^3.6.0"
|
|
142
|
-
}
|
|
143
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "bianic-ui",
|
|
3
|
+
"publishConfig": {
|
|
4
|
+
"@biaenergi:registry": "https://gitlab.com/api/v4/projects/50905269/packages/npm/"
|
|
5
|
+
},
|
|
6
|
+
"version": "2.11.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
|
+
"chromatic": "echo 'Chromatic not configured'",
|
|
18
|
+
"lint": "npx eslint src/components",
|
|
19
|
+
"lint:fix": "npx eslint src/components --fix",
|
|
20
|
+
"prepare": "husky install",
|
|
21
|
+
"release": "standard-version",
|
|
22
|
+
"release:alpha": "node scripts/release.js alpha",
|
|
23
|
+
"release:beta": "node scripts/release.js beta",
|
|
24
|
+
"release:stable": "node scripts/release.js"
|
|
25
|
+
},
|
|
26
|
+
"standard-version": {
|
|
27
|
+
"types": [
|
|
28
|
+
{
|
|
29
|
+
"type": "feat",
|
|
30
|
+
"section": "✨ Features",
|
|
31
|
+
"hidden": false
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"type": "fix",
|
|
35
|
+
"section": "🐛 Bug Fixes",
|
|
36
|
+
"hidden": false
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"type": "perf",
|
|
40
|
+
"section": "🚀 Performance Improvements",
|
|
41
|
+
"hidden": false
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"type": "style",
|
|
45
|
+
"section": "🎨 Styling Changes",
|
|
46
|
+
"hidden": false
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"type": "docs",
|
|
50
|
+
"section": "📖 Documentation",
|
|
51
|
+
"hidden": false
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"type": "chore",
|
|
55
|
+
"hidden": true
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"type": "refactor",
|
|
59
|
+
"hidden": true
|
|
60
|
+
}
|
|
61
|
+
]
|
|
62
|
+
},
|
|
63
|
+
"author": {
|
|
64
|
+
"name": "Biaenergi"
|
|
65
|
+
},
|
|
66
|
+
"license": "ISC",
|
|
67
|
+
"devDependencies": {
|
|
68
|
+
"@chromatic-com/storybook": "^5.2.1",
|
|
69
|
+
"@eslint/js": "^9.5.0",
|
|
70
|
+
"@rollup/plugin-commonjs": "^25.0.4",
|
|
71
|
+
"@rollup/plugin-node-resolve": "^15.2.1",
|
|
72
|
+
"@rollup/plugin-typescript": "^11.1.4",
|
|
73
|
+
"@rollup/plugin-url": "^8.0.2",
|
|
74
|
+
"@storybook/addon-docs": "^10.4.2",
|
|
75
|
+
"@storybook/addon-links": "^10.4.2",
|
|
76
|
+
"@storybook/addon-onboarding": "^10.4.2",
|
|
77
|
+
"@storybook/addon-styling-webpack": "^1.0.0",
|
|
78
|
+
"@storybook/addon-webpack5-compiler-swc": "^4.0.3",
|
|
79
|
+
"@storybook/react-webpack5": "^10.4.2",
|
|
80
|
+
"@types/react": "^18.2.24",
|
|
81
|
+
"@typescript-eslint/eslint-plugin": "^7.13.1",
|
|
82
|
+
"@typescript-eslint/parser": "^7.13.1",
|
|
83
|
+
"autoprefixer": "^10.4.19",
|
|
84
|
+
"chromatic": "^11.5.3",
|
|
85
|
+
"css-loader": "^7.1.2",
|
|
86
|
+
"eslint": "^8.57.0",
|
|
87
|
+
"eslint-config-airbnb": "^19.0.4",
|
|
88
|
+
"eslint-config-airbnb-typescript": "^18.0.0",
|
|
89
|
+
"eslint-config-node": "^4.1.0",
|
|
90
|
+
"eslint-config-prettier": "^9.1.0",
|
|
91
|
+
"eslint-plugin-import": "^2.25.3",
|
|
92
|
+
"eslint-plugin-jsx-a11y": "^6.5.1",
|
|
93
|
+
"eslint-plugin-node": "^11.1.0",
|
|
94
|
+
"eslint-plugin-prettier": "^5.1.3",
|
|
95
|
+
"eslint-plugin-react": "^7.34.3",
|
|
96
|
+
"eslint-plugin-react-hooks": "^4.3.0",
|
|
97
|
+
"eslint-plugin-storybook": "10.4.2",
|
|
98
|
+
"globals": "^15.6.0",
|
|
99
|
+
"husky": "^9.0.11",
|
|
100
|
+
"postcss": "^8.4.31",
|
|
101
|
+
"postcss-loader": "^8.1.1",
|
|
102
|
+
"postcss-url": "^10.1.3",
|
|
103
|
+
"prettier": "^3.3.2",
|
|
104
|
+
"prettier-plugin-tailwindcss": "^0.5.6",
|
|
105
|
+
"react-dom": "^18.0.0 || ^19.0.0-beta",
|
|
106
|
+
"react-draggable": "^4.5.0",
|
|
107
|
+
"react-icons": "^5.2.1",
|
|
108
|
+
"rollup": "^3.29.4",
|
|
109
|
+
"rollup-plugin-copy": "^3.5.0",
|
|
110
|
+
"rollup-plugin-dts": "^6.0.2",
|
|
111
|
+
"rollup-plugin-image": "^1.0.2",
|
|
112
|
+
"rollup-plugin-postcss": "^4.0.2",
|
|
113
|
+
"sass": "^1.77.6",
|
|
114
|
+
"sass-loader": "^14.2.1",
|
|
115
|
+
"standard-version": "^9.5.0",
|
|
116
|
+
"storybook": "^10.4.2",
|
|
117
|
+
"style-loader": "^4.0.0",
|
|
118
|
+
"tailwindcss": "^3.4.4",
|
|
119
|
+
"tslib": "^2.6.2",
|
|
120
|
+
"typescript": "^5.2.2",
|
|
121
|
+
"typescript-eslint": "^7.13.1",
|
|
122
|
+
"url-loader": "^4.1.1",
|
|
123
|
+
"webpack": "^5.88.2"
|
|
124
|
+
},
|
|
125
|
+
"main": "dist/cjs/index.js",
|
|
126
|
+
"module": "dist/esm/index.js",
|
|
127
|
+
"files": [
|
|
128
|
+
"dist",
|
|
129
|
+
"dist/*.css",
|
|
130
|
+
"src/style",
|
|
131
|
+
"src/font",
|
|
132
|
+
"tailwind.config.js"
|
|
133
|
+
],
|
|
134
|
+
"peerDependencies": {
|
|
135
|
+
"react": "^18.0.0 || ^19.0.0-beta",
|
|
136
|
+
"react-dom": "^18.0.0 || ^19.0.0-beta",
|
|
137
|
+
"react-icons": "^5.2.1"
|
|
138
|
+
},
|
|
139
|
+
"types": "dist/index.d.ts",
|
|
140
|
+
"dependencies": {
|
|
141
|
+
"tailwind-merge": "^3.6.0"
|
|
142
|
+
}
|
|
143
|
+
}
|