bianic-ui 2.6.0 → 2.7.0-beta.1

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.
Files changed (28) hide show
  1. package/README.md +49 -49
  2. package/dist/cjs/index.js +138 -123
  3. package/dist/cjs/lib.css +1 -1
  4. package/dist/cjs/types/components/Avatar/Avatar.d.ts +6 -2
  5. package/dist/cjs/types/components/Forms/DatePicker/DatePicker.d.ts +2 -2
  6. package/dist/cjs/types/components/Forms/LiveSearch/Example/OutsideControl.d.ts +3 -0
  7. package/dist/cjs/types/components/Icons/Rhombus.d.ts +4 -0
  8. package/dist/cjs/types/components/Icons/index.d.ts +18 -17
  9. package/dist/cjs/types/components/Tooltip/PropsInterface.d.ts +4 -0
  10. package/dist/cjs/types/components/Tooltip/Simulation.d.ts +1 -1
  11. package/dist/cjs/types/stories/Form/LiveSearch/OutsideControlSimulation.stories.d.ts +12 -0
  12. package/dist/cjs/types/stories/Icons/Rhombus.stories.d.ts +14 -0
  13. package/dist/esm/index.js +138 -124
  14. package/dist/esm/lib.css +1 -1
  15. package/dist/esm/types/components/Avatar/Avatar.d.ts +6 -2
  16. package/dist/esm/types/components/Forms/DatePicker/DatePicker.d.ts +2 -2
  17. package/dist/esm/types/components/Forms/LiveSearch/Example/OutsideControl.d.ts +3 -0
  18. package/dist/esm/types/components/Icons/Rhombus.d.ts +4 -0
  19. package/dist/esm/types/components/Icons/index.d.ts +18 -17
  20. package/dist/esm/types/components/Tooltip/PropsInterface.d.ts +4 -0
  21. package/dist/esm/types/components/Tooltip/Simulation.d.ts +1 -1
  22. package/dist/esm/types/stories/Form/LiveSearch/OutsideControlSimulation.stories.d.ts +12 -0
  23. package/dist/esm/types/stories/Icons/Rhombus.stories.d.ts +14 -0
  24. package/dist/index.d.ts +33 -25
  25. package/package.json +141 -141
  26. package/src/style/color.css +650 -627
  27. package/src/style/scrollbar.css +78 -78
  28. 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: 'image' | 'picture' | 'initial';
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
  }
@@ -11,9 +11,9 @@ interface DatePickerProps extends Omit<HTMLAttributes<HTMLInputElement>, 'onChan
11
11
  minDate?: string;
12
12
  maxDate?: string;
13
13
  nullDisplay?: string;
14
- inputclassName?: string;
14
+ inputClassName?: string;
15
15
  containerClassName?: string;
16
16
  zIndexCalendar?: number;
17
17
  }
18
- declare function DatePicker({ zIndexCalendar, value, onChange, size, disabled, placeholder, label, minDate, maxDate, required, nullDisplay, inputclassName, containerClassName, }: DatePickerProps): React.JSX.Element;
18
+ declare function DatePicker({ zIndexCalendar, value, onChange, size, disabled, placeholder, label, minDate, maxDate, required, nullDisplay, inputClassName, containerClassName, }: DatePickerProps): React.JSX.Element;
19
19
  export default DatePicker;
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ declare const OutsideControl: () => React.JSX.Element;
3
+ export default OutsideControl;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconProps } from './interface';
3
+ declare const Rhombus: ({ className, fill, size, }: IconProps) => React.JSX.Element;
4
+ export default Rhombus;
@@ -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 BCLegend } from './Legend';
11
- export { default as BCSelectAllRemove } from './SelectAllRemove';
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 BCSpinner } from './Spinner';
20
- export { default as BCOutlet } from './Outlet';
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 };
@@ -1,5 +1,5 @@
1
1
  import React from 'react';
2
- import TooltipProps from './PropsInterface';
2
+ import { TooltipProps } from './PropsInterface';
3
3
  declare function TooltipDemo(props: TooltipProps): React.JSX.Element;
4
4
  declare namespace TooltipDemo {
5
5
  var defaultProps: {
@@ -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: 'image' | 'picture' | 'initial';
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
  }
@@ -493,11 +497,11 @@ interface DatePickerProps extends Omit<HTMLAttributes<HTMLInputElement>, 'onChan
493
497
  minDate?: string;
494
498
  maxDate?: string;
495
499
  nullDisplay?: string;
496
- inputclassName?: string;
500
+ inputClassName?: string;
497
501
  containerClassName?: string;
498
502
  zIndexCalendar?: number;
499
503
  }
500
- declare function DatePicker({ zIndexCalendar, value, onChange, size, disabled, placeholder, label, minDate, maxDate, required, nullDisplay, inputclassName, containerClassName, }: DatePickerProps): React$1.JSX.Element;
504
+ declare function DatePicker({ zIndexCalendar, value, onChange, size, disabled, placeholder, label, minDate, maxDate, required, nullDisplay, inputClassName, containerClassName, }: DatePickerProps): React$1.JSX.Element;
501
505
 
502
506
  interface PickerCalendarProps extends ComponentPropsWithRef<'div'> {
503
507
  zIndex?: number | 'auto' | 'inherit';
@@ -541,49 +545,51 @@ interface IconProps {
541
545
  strokeWidth?: number | string;
542
546
  }
543
547
 
544
- declare const Node: ({ className, fill, size }: IconProps) => React$1.JSX.Element;
548
+ declare const AlertRoundedSquare: ({ className, fill, size, }: IconProps) => React$1.JSX.Element;
545
549
 
546
- declare const Port: ({ className, fill, size }: IconProps) => React$1.JSX.Element;
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 VirtualPort: ({ className, fill, size }: IconProps) => React$1.JSX.Element;
556
+ declare const Flowqount: ({ className, fill, size }: IconProps) => React$1.JSX.Element;
551
557
 
552
- declare const AlertRoundedSquare: ({ className, fill, size, }: IconProps) => React$1.JSX.Element;
558
+ declare const FQAnalytical: ({ className, fill, size, }: IconProps) => React$1.JSX.Element;
553
559
 
554
- declare const Stack: ({ className, fill, size }: IconProps) => React$1.JSX.Element;
560
+ declare const FQGetaway: ({ className, fill, size }: IconProps) => React$1.JSX.Element;
555
561
 
556
- declare const Discrepancy: ({ className, fill, size }: IconProps) => React$1.JSX.Element;
562
+ declare const FQModeler: ({ className, fill, size }: IconProps) => React$1.JSX.Element;
557
563
 
558
- declare const ModalBalance: ({ className, fill, size, }: IconProps) => React$1.JSX.Element;
564
+ declare const FQOperation: ({ className, fill, size }: IconProps) => React$1.JSX.Element;
559
565
 
560
- declare const CubeHeader: ({ className, fill, size }: IconProps) => React$1.JSX.Element;
566
+ declare const FQWelldone: ({ className, fill, size }: IconProps) => React$1.JSX.Element;
561
567
 
562
- declare const Legend: ({ className, fill, size }: IconProps) => React$1.JSX.Element;
568
+ declare const Inlet: ({ className, fill, size }: IconProps) => React$1.JSX.Element;
563
569
 
564
- declare const SelectAllRemove: ({ className, fill, size, }: IconProps) => React$1.JSX.Element;
570
+ declare const Legend: ({ className, fill, size }: IconProps) => React$1.JSX.Element;
565
571
 
566
- declare const SelectAllAdd: ({ className, fill, size, }: IconProps) => React$1.JSX.Element;
572
+ declare const ModalBalance: ({ className, fill, size, }: IconProps) => React$1.JSX.Element;
567
573
 
568
- declare const FQWelldone: ({ className, fill, size }: IconProps) => React$1.JSX.Element;
574
+ declare const Neutral: ({ className, fill, size, }: IconProps) => React$1.JSX.Element;
569
575
 
570
- declare const FQOperation: ({ className, fill, size }: IconProps) => React$1.JSX.Element;
576
+ declare const Node: ({ className, fill, size }: IconProps) => React$1.JSX.Element;
571
577
 
572
- declare const FQModeler: ({ className, fill, size }: IconProps) => React$1.JSX.Element;
578
+ declare const Outlet: ({ className, fill, size }: IconProps) => React$1.JSX.Element;
573
579
 
574
- declare const FQGetaway: ({ className, fill, size }: IconProps) => React$1.JSX.Element;
580
+ declare const Port: ({ className, fill, size }: IconProps) => React$1.JSX.Element;
575
581
 
576
- declare const FQAnalytical: ({ className, fill, size, }: IconProps) => React$1.JSX.Element;
582
+ declare const SelectAllAdd: ({ className, fill, size, }: IconProps) => React$1.JSX.Element;
577
583
 
578
- declare const Flowqount: ({ className, fill, size }: IconProps) => React$1.JSX.Element;
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 Outlet: ({ className, fill, size }: IconProps) => React$1.JSX.Element;
588
+ declare const Stack: ({ className, fill, size }: IconProps) => React$1.JSX.Element;
583
589
 
584
- declare const Inlet: ({ className, fill, size }: IconProps) => React$1.JSX.Element;
590
+ declare const Rhombus: ({ className, fill, size, }: IconProps) => React$1.JSX.Element;
585
591
 
586
- declare const Neutral: ({ className, fill, size, }: IconProps) => React$1.JSX.Element;
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.6.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
- }
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-beta.1",
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
+ }