@oliasoft-open-source/react-ui-library 3.11.5 → 3.11.6-beta-2
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/index.js +4 -1
- package/package.json +3 -2
- package/dist/index.js.map +0 -1
package/dist/index.js
CHANGED
|
@@ -11806,7 +11806,10 @@ const Button$1 = ({
|
|
|
11806
11806
|
),
|
|
11807
11807
|
disabled: disabled2 || disabledContext,
|
|
11808
11808
|
name: name2,
|
|
11809
|
-
onClick
|
|
11809
|
+
onClick: () => {
|
|
11810
|
+
onClick();
|
|
11811
|
+
throw new Error("Button error in gui");
|
|
11812
|
+
},
|
|
11810
11813
|
...title2 ? { title: title2 } : {},
|
|
11811
11814
|
style: { width },
|
|
11812
11815
|
"data-testid": testId,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oliasoft-open-source/react-ui-library",
|
|
3
|
-
"version": "3.11.
|
|
3
|
+
"version": "3.11.6-beta-2",
|
|
4
4
|
"description": "Reusable UI components for React projects",
|
|
5
5
|
"homepage": "https://oliasoft-open-source.gitlab.io/react-ui-library",
|
|
6
6
|
"bugs": {
|
|
@@ -16,7 +16,8 @@
|
|
|
16
16
|
"main": "./dist/index.js",
|
|
17
17
|
"module": "./dist/index.js",
|
|
18
18
|
"files": [
|
|
19
|
-
"dist"
|
|
19
|
+
"dist/global.css",
|
|
20
|
+
"dist/index.js"
|
|
20
21
|
],
|
|
21
22
|
"scripts": {
|
|
22
23
|
"build": "yarn run build:docs && yarn run build:storybook",
|