messages styling, add conversation dropdown, show tooltip on filters

This commit is contained in:
Tykayn 2025-08-18 18:14:22 +02:00 committed by tykayn
parent c3319a6e84
commit 0e9a0aa21e
39 changed files with 537 additions and 180 deletions

View file

@ -27,6 +27,27 @@ const config: StorybookConfig = {
generator: {filename: 'fonts/[name].[contenthash][ext]'},
});
// Support for remixicon font files specifically
config.module.rules.push({
test: /remixicon.*\.(woff|woff2|eot|ttf|svg)$/,
type: 'asset/resource',
generator: {filename: 'fonts/[name].[contenthash][ext]'},
});
// Add CSS loader rule to handle @font-face declarations
config.module.rules.push({
test: /\.css$/,
use: [
'style-loader',
{
loader: 'css-loader',
options: {
url: true
}
}
]
});
// NOUVELLE SOLUTION : Configurer css-loader pour gérer les URLs
const scssRules = config.module.rules.filter(rule => {
if (rule && typeof rule === 'object' && 'test' in rule && rule.test) {

View file

@ -1,4 +1,5 @@
import type {Preview} from '@storybook/angular';
import 'remixicon/fonts/remixicon.css';
const preview: Preview = {
parameters: {