@ssa-ui-kit/widgets 0.0.31-alpha → 0.0.34-alpha
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/.storybook/main.ts +4 -0
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +5 -4
- package/src/components/AccountBalance/AccountBalance.spec.tsx +3 -9
- package/src/components/ExchangeAccount/ExchangeAccount.spec.tsx +3 -9
- package/tsconfig.build.json +4 -6
- package/webpack.config.js +1 -0
package/.storybook/main.ts
CHANGED
|
@@ -38,6 +38,10 @@ const config: StorybookConfig = {
|
|
|
38
38
|
docs: {
|
|
39
39
|
autodocs: true, // cspell:disable-line
|
|
40
40
|
},
|
|
41
|
+
managerHead: (head) => `
|
|
42
|
+
${head}
|
|
43
|
+
<meta name="description" content="SSA UI kit is an open-source React-based library that accelerates frontend development of dashboard and administrative panels" />
|
|
44
|
+
`,
|
|
41
45
|
};
|
|
42
46
|
|
|
43
47
|
export default config;
|