@gisce/react-ooui 2.0.0-alpha.11 → 2.0.0-alpha.12
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gisce/react-ooui",
|
|
3
|
-
"version": "2.0.0-alpha.
|
|
3
|
+
"version": "2.0.0-alpha.12",
|
|
4
4
|
"engines": {
|
|
5
5
|
"node": "20.5.0"
|
|
6
6
|
},
|
|
@@ -27,7 +27,9 @@
|
|
|
27
27
|
"dev:tsc": "tsc --noEmit --watch",
|
|
28
28
|
"prepare": "husky install",
|
|
29
29
|
"start": "concurrently npm:dev:*",
|
|
30
|
-
"check": "lint-staged"
|
|
30
|
+
"check": "lint-staged",
|
|
31
|
+
"storybook": "storybook dev -p 6006",
|
|
32
|
+
"build-storybook": "storybook build"
|
|
31
33
|
},
|
|
32
34
|
"dependencies": {
|
|
33
35
|
"@ant-design/plots": "^1.0.9",
|
|
@@ -57,6 +59,15 @@
|
|
|
57
59
|
"@semantic-release/exec": "6.0.3",
|
|
58
60
|
"@semantic-release/git": "10.0.1",
|
|
59
61
|
"@semantic-release/npm": "10.0.4",
|
|
62
|
+
"@storybook/addon-essentials": "^7.4.6",
|
|
63
|
+
"@storybook/addon-interactions": "^7.4.6",
|
|
64
|
+
"@storybook/addon-knobs": "^7.0.2",
|
|
65
|
+
"@storybook/addon-links": "^7.4.6",
|
|
66
|
+
"@storybook/addon-onboarding": "^1.0.8",
|
|
67
|
+
"@storybook/blocks": "^7.4.6",
|
|
68
|
+
"@storybook/react": "^7.4.6",
|
|
69
|
+
"@storybook/react-vite": "^7.4.6",
|
|
70
|
+
"@storybook/testing-library": "^0.2.2",
|
|
60
71
|
"@types/lodash": "^4.14.170",
|
|
61
72
|
"@types/md5": "^2.3.2",
|
|
62
73
|
"@types/react": "^17.0.1",
|
|
@@ -87,6 +98,7 @@
|
|
|
87
98
|
"prettier": "3.0.1",
|
|
88
99
|
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
89
100
|
"semantic-release": "21.0.7",
|
|
101
|
+
"storybook": "^7.4.6",
|
|
90
102
|
"typescript": "^5.0.4",
|
|
91
103
|
"vite": "4.4.8",
|
|
92
104
|
"vite-plugin-dts": "^3.6.0",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import React, {useState} from "react";
|
|
1
|
+
import React, { useState } from "react";
|
|
2
2
|
|
|
3
3
|
import { Avatar as AvatarOoui } from "@gisce/ooui";
|
|
4
|
-
import Avatar from "
|
|
4
|
+
import Avatar from "../../widgets/custom/Avatar";
|
|
5
5
|
import LocaleProvider from "../../context/LocaleContext";
|
|
6
6
|
|
|
7
7
|
export default {
|
|
@@ -20,7 +20,3 @@ export const Default = (): React.ReactElement => {
|
|
|
20
20
|
</LocaleProvider>
|
|
21
21
|
);
|
|
22
22
|
};
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|