-
Notifications
You must be signed in to change notification settings - Fork 0
/
styleguide.config.js
81 lines (78 loc) · 2.13 KB
/
styleguide.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
const path = require('path');
const componentPath = component => `src/components/${component}/index.js`;
const componentSection = component => ({
name: component,
components: componentPath(component)
});
module.exports = {
logger: {
// Suppress warnings about files not exporting components
warn: (message) => {
const ignored =
'matches a pattern defined in “components” or “sections” options in your style guide config but doesn’t export a component.';
if (message.includes(ignored)) return;
console.warn(message);
}
},
webpackConfig: {
module: {
rules: [
{
test: /\.js?$/,
exclude: /node_modules/,
loader: 'babel-loader'
},
{
test: /\.css$/,
use: ['style-loader', 'css-loader']
}
]
}
},
require: [
path.join(__dirname, 'styleguide/app.css')
],
sections: [
{
name: 'Introduction',
content: 'docs/introduction.md'
},
componentSection('Button'),
componentSection('LinkButton'),
componentSection('TextField'),
componentSection('SelectField'),
componentSection('Checkbox'),
componentSection('Radio'),
componentSection('Switch'),
componentSection('Label'),
componentSection('Card'),
componentSection('GradientCard'),
componentSection('Gradients'),
componentSection('LinearGradient'),
componentSection('Dialog'),
componentSection('Link'),
componentSection('LoadingSpinner'),
componentSection('SimpleLoadingSpinner'),
componentSection('ProgressBar'),
componentSection('Code'),
componentSection('BlockQuote'),
componentSection('Tabs'),
componentSection('Tab'),
componentSection('Avatar'),
componentSection('Chip'),
componentSection('ExpansionPanel'),
componentSection('Badge'),
componentSection('WithBadge'),
componentSection('BigTitle'),
componentSection('EnormousTitle'),
componentSection('Space'),
{
name: 'VxThemeProvider',
components: componentPath('ThemeContext/VxThemeProvider')
},
{
name: 'Utils',
content: 'docs/utils.md'
}
]
};