AAE-40269 Add storybook v10 (#11401)

This commit is contained in:
Wojciech Duda
2026-01-09 18:17:43 +00:00
committed by GitHub
parent f0c6cc0ff7
commit 5f9de1fde8
119 changed files with 11010 additions and 753 deletions
+23
View File
@@ -0,0 +1,23 @@
import { fileURLToPath } from 'node:url';
import { dirname } from 'node:path';
import type { StorybookConfig } from '@storybook/angular';
import rootMain from '../../../.storybook/main';
const config: StorybookConfig = {
...rootMain,
stories: ['../**/*.stories.@(js|jsx|ts|tsx)'],
framework: {
name: getAbsolutePath('@storybook/angular'),
options: {}
},
staticDirs: [
{ from: '../src/lib/i18n', to: 'assets/adf-core/i18n' },
{ from: '../src/lib/assets/images', to: 'assets/images' }
]
};
export default config;
function getAbsolutePath(value: string): any {
return dirname(fileURLToPath(import.meta.resolve(`${value}/package.json`)));
}
+9
View File
@@ -0,0 +1,9 @@
import type { Preview } from '@storybook/angular';
import rootPreview from '../../../.storybook/preview';
const preview: Preview = {
...rootPreview,
tags: ['autodocs']
};
export default preview;
+10
View File
@@ -0,0 +1,10 @@
{
"extends": "../../../tsconfig.json",
"compilerOptions": {
"emitDecoratorMetadata": true,
"moduleResolution": "bundler"
},
"exclude": ["../**/*.spec.ts" ],
"include": ["../**/*.ts", "*.ts"]
}