-
Notifications
You must be signed in to change notification settings - Fork 24
/
styleguide.config.js
134 lines (128 loc) · 3.28 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
const path = require("path");
module.exports = {
title: 'Elementz',
ribbon: {
url: 'https://github.com/elementz-ui/elementz',
text: 'Fork me on GitHub'
},
require: [
path.join(__dirname, 'docs/options/style.css'),
],
styleguideComponents: {
LogoRenderer: path.join(__dirname, 'docs/options/Logo'),
},
assetsDir: './src/Assets',
template: {
favicon: 'favicon.ico',
/*
body: {
scripts: [
{
src: 'ezTheme.js'
}
]
},
*/
head: {
meta: [
{
name: 'description',
content: 'A React UI Library for modern and easier development, including React Table component, React Skeleton and Bootstrap Layot'
}
]
},
},
sortProps: props => props,
getExampleFilename: (componentPath) => {
var dir = path.dirname(componentPath);
var file = path.basename(componentPath);
var example = path.join(dir, "../../docs/", file.replace(/\.jsx?$/, '.md'));
return example;
},
getComponentPathLine: (componentPath) => {
var name = path.basename(componentPath, ".jsx");
return `import {${name}} from 'elementz';`
},
ignore: ['**/Components/Box.jsx','**/Components/Nav.jsx','**/Components/Progress.jsx'],
moduleAliases: {
'elementz': path.resolve(__dirname, 'src/Elementz.jsx'),
'Flag': path.resolve(__dirname, 'src/Components/Flag.jsx')
},
sections: [
{
name: 'Introduction',
content: './docs/README.md'
},
{
name: 'Components',
components: [
'src/Components/Button.jsx',
'src/Components/Badge.jsx',
'src/Components/Input.jsx',
'src/Components/Select.jsx',
'src/Components/Group.jsx',
'src/Components/Switch.jsx',
'src/Components/Radio.jsx',
'src/Components/Dropdown.jsx',
'src/Components/Loading.jsx',
'src/Components/Table.jsx',
],
exampleMode: 'collapse', // 'hide' | 'collapse' | 'expand'
usageMode: 'collapse', // 'hide' | 'collapse' | 'expand'
// Will show "Components" as single page, filtering its children
//sectionDepth: 1
},
{
name: 'Customization',
content: './docs/Customization.md'
},
{
name: 'Icons',
external: true,
href: 'https://www.zwicon.com/cheatsheet.html'
}
],
webpackConfig: {
watch: true,
module: {
rules: [
{
test: /\.jsx?/,
loader: 'babel-loader',
exclude: path.resolve(__dirname, 'node_modules'),
options: {
presets: [
"@babel/preset-env", "@babel/preset-react"
],
"plugins": [
"@babel/plugin-proposal-class-properties"
]
}
},
{
test: /\.tsx?$/,
use: 'ts-loader',
exclude: path.resolve(__dirname, 'node_modules'),
},
{
test: /\.(scss|sass|css)$/,
exclude: path.resolve(__dirname, 'node_modules'),
use: [
'style-loader',
'css-loader',
'sass-loader',
],
},
{
test: /\.(png|woff|woff2|eot|ttf|svg)$/,
exclude: path.resolve(__dirname, 'node_modules'),
use: [
{
loader: 'url-loader',
},
]
}
]
}
}
};