bianic-ui 2.2.0-beta.2 → 2.2.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 +20 -27
- package/dist/cjs/lib.css +1 -1
- package/dist/cjs/types/components/Forms/SelectInput/Example/CustomDropdown.d.ts +1 -2
- 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/esm/index.js +20 -27
- package/dist/esm/lib.css +1 -1
- package/dist/esm/types/components/Forms/SelectInput/Example/CustomDropdown.d.ts +1 -2
- 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/package.json +45 -7
|
@@ -1,4 +1,3 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
|
|
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;
|
|
2
|
+
declare const CustomDropdown: () => React.JSX.Element;
|
|
4
3
|
export default CustomDropdown;
|
|
@@ -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: (
|
|
5
|
+
component: () => import("react").JSX.Element;
|
|
6
6
|
parameters: {
|
|
7
7
|
layout: string;
|
|
8
8
|
};
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"@biaenergi:registry": "https://gitlab.com/api/v4/projects/50905269/packages/npm/"
|
|
5
5
|
},
|
|
6
|
-
"version": "2.2.0
|
|
6
|
+
"version": "2.2.0",
|
|
7
7
|
"description": "Design Language System develop by BIAENERGI",
|
|
8
8
|
"scripts": {
|
|
9
9
|
"rollup": "rollup -c",
|
|
@@ -12,7 +12,45 @@
|
|
|
12
12
|
"publish-storybook": "npx chromatic --project-token=chpt_2ced61576f9e1e6",
|
|
13
13
|
"lint": "npx eslint src/components",
|
|
14
14
|
"lint:fix": "npx eslint src/components --fix",
|
|
15
|
-
"prepare": "husky install"
|
|
15
|
+
"prepare": "husky install",
|
|
16
|
+
"release": "standard-version"
|
|
17
|
+
},
|
|
18
|
+
"standard-version": {
|
|
19
|
+
"types": [
|
|
20
|
+
{
|
|
21
|
+
"type": "feat",
|
|
22
|
+
"section": "✨ Features",
|
|
23
|
+
"hidden": false
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"type": "fix",
|
|
27
|
+
"section": "🐛 Bug Fixes",
|
|
28
|
+
"hidden": false
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"type": "perf",
|
|
32
|
+
"section": "🚀 Performance Improvements",
|
|
33
|
+
"hidden": false
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"type": "style",
|
|
37
|
+
"section": "🎨 Styling Changes",
|
|
38
|
+
"hidden": false
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"type": "docs",
|
|
42
|
+
"section": "📖 Documentation",
|
|
43
|
+
"hidden": false
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"type": "chore",
|
|
47
|
+
"hidden": true
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"type": "refactor",
|
|
51
|
+
"hidden": true
|
|
52
|
+
}
|
|
53
|
+
]
|
|
16
54
|
},
|
|
17
55
|
"author": {
|
|
18
56
|
"name": "Biaenergi"
|
|
@@ -59,8 +97,9 @@
|
|
|
59
97
|
"postcss-url": "^10.1.3",
|
|
60
98
|
"prettier": "^3.3.2",
|
|
61
99
|
"prettier-plugin-tailwindcss": "^0.5.6",
|
|
62
|
-
"react-icons": "^5.2.1",
|
|
63
100
|
"react-dom": "^18.0.0 || ^19.0.0-beta",
|
|
101
|
+
"react-draggable": "^4.5.0",
|
|
102
|
+
"react-icons": "^5.2.1",
|
|
64
103
|
"rollup": "^3.29.4",
|
|
65
104
|
"rollup-plugin-copy": "^3.5.0",
|
|
66
105
|
"rollup-plugin-dts": "^6.0.2",
|
|
@@ -68,6 +107,7 @@
|
|
|
68
107
|
"rollup-plugin-postcss": "^4.0.2",
|
|
69
108
|
"sass": "^1.77.6",
|
|
70
109
|
"sass-loader": "^14.2.1",
|
|
110
|
+
"standard-version": "^9.5.0",
|
|
71
111
|
"storybook": "^8.1.6",
|
|
72
112
|
"style-loader": "^4.0.0",
|
|
73
113
|
"tailwindcss": "^3.4.4",
|
|
@@ -75,8 +115,7 @@
|
|
|
75
115
|
"typescript": "^5.2.2",
|
|
76
116
|
"typescript-eslint": "^7.13.1",
|
|
77
117
|
"url-loader": "^4.1.1",
|
|
78
|
-
"webpack": "^5.88.2"
|
|
79
|
-
"react-draggable": "^4.5.0"
|
|
118
|
+
"webpack": "^5.88.2"
|
|
80
119
|
},
|
|
81
120
|
"main": "dist/cjs/index.js",
|
|
82
121
|
"module": "dist/esm/index.js",
|
|
@@ -92,6 +131,5 @@
|
|
|
92
131
|
"react-dom": "^18.0.0 || ^19.0.0-beta",
|
|
93
132
|
"react-icons": "^5.2.1"
|
|
94
133
|
},
|
|
95
|
-
"types": "dist/index.d.ts"
|
|
96
|
-
"dependencies": {}
|
|
134
|
+
"types": "dist/index.d.ts"
|
|
97
135
|
}
|