@fle-ui/next 1.0.5-alpha.0 → 1.0.5-alpha.1
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/package.json +1 -1
- package/.history/.dumi/theme/Link_20211224151001.tsx +0 -0
- package/.history/.dumi/theme/Link_20211224151003.tsx +0 -8
- package/.history/.dumi/theme/Link_20211224151013.tsx +0 -64
- package/.history/.dumi/theme/Link_20211224151019.tsx +0 -64
- package/.history/.dumi/theme/Link_20211224151048.tsx +0 -66
- package/.history/.dumi/theme/Link_20211224151051.tsx +0 -66
- package/.history/.dumi/theme/Link_20211224151057.tsx +0 -66
- package/.history/.dumi/theme/Link_20211224151820.tsx +0 -66
- package/.history/.dumi/theme/NavLink_20211224150935.tsx +0 -0
- package/.history/.dumi/theme/NavLink_20211224150937.tsx +0 -8
- package/.history/.dumi/theme/NavLink_20211224150942.tsx +0 -4
- package/.history/.dumi/theme/builtins/Link_20211224153113.tsx +0 -66
- package/.history/.dumi/theme/builtins/Link_20211224153117.tsx +0 -66
- package/.history/.dumi/theme/builtins/Link_20211224153821.tsx +0 -65
- package/.history/.dumi/theme/builtins/Link_20211224153823.tsx +0 -73
- package/.history/.dumi/theme/builtins/Link_20211224153825.tsx +0 -65
- package/.history/.dumi/theme/builtins/NavLink_20211224153113.tsx +0 -4
- package/.history/.dumi/theme/builtins/NavLink_20211224153856.tsx +0 -4
- package/.history/.dumi/theme/builtins/NavLink_20211224153857.tsx +0 -12
- package/.history/.dumi/theme/builtins/NavLink_20211224154244.tsx +0 -12
- package/.history/.dumi/theme/builtins/NavLink_20211224154245.tsx +0 -12
- package/.history/.dumi/theme/context_20211224155924.ts +0 -0
- package/.history/.dumi/theme/context_20211224155926.ts +0 -8
- package/.history/.dumi/theme/context_20211224155942.ts +0 -136
- package/.history/.dumi/theme/layout_20211224155840.tsx +0 -0
- package/.history/.dumi/theme/layout_20211224155841.tsx +0 -8
- package/.history/.dumi/theme/layout_20211224155903.tsx +0 -176
- package/.history/.dumi/theme/layout_20211227133806.tsx +0 -8
- package/.history/.dumi/theme/layout_20211227134054.tsx +0 -23
- package/.history/.dumi/theme/layout_20211227134056.tsx +0 -24
- package/.history/.dumi/theme/layout_20211227134246.tsx +0 -26
- package/.history/.dumi/theme/layout_20211227141142.tsx +0 -26
- package/.history/.dumi/theme/layout_20211227161540.tsx +0 -26
- package/.history/.dumi/theme/layouyt_20211224160056.ts +0 -0
- package/.history/.dumi/theme/layouyt_20211224160058.ts +0 -8
- package/.history/.gitignore_20210922213827 +0 -27
- package/.history/.gitignore_20211029154108 +0 -29
- package/.history/.gitignore_20211029154109 +0 -29
- package/.history/.gitignore_20211029173434 +0 -29
- package/.history/.umirc_20211224102827.ts +0 -155
- package/.history/.umirc_20211224103050.ts +0 -155
- package/.history/.umirc_20211224142413.ts +0 -163
- package/.history/.umirc_20211224142930.ts +0 -159
- package/.history/.umirc_20211224142939.ts +0 -159
- package/.history/.umirc_20211224142940.ts +0 -159
- package/.history/package_20220223140434.json +0 -147
- package/.history/package_20220223140435.json +0 -147
- package/.history/report_20211228211733.html +0 -45
- package/.history/report_20211228211748.html +0 -37
- package/.history/report_20211228211749.html +0 -45
@@ -1,159 +0,0 @@
|
|
1
|
-
import { defineConfig } from 'dumi';
|
2
|
-
import { readdirSync } from 'fs';
|
3
|
-
import { join } from 'path';
|
4
|
-
|
5
|
-
const headPkgList: any = [];
|
6
|
-
// utils must build before core
|
7
|
-
// runtime must build before renderer-react
|
8
|
-
const pkgList = readdirSync(join(__dirname, 'components')).filter(
|
9
|
-
(pkg) => pkg.charAt(0) !== '.' && !headPkgList.includes(pkg),
|
10
|
-
);
|
11
|
-
|
12
|
-
const tailPkgList = pkgList
|
13
|
-
.map((path) => [join('components', path)])
|
14
|
-
.reduce((acc, val) => acc.concat(val), []);
|
15
|
-
|
16
|
-
export default defineConfig({
|
17
|
-
title: 'Fle-UI',
|
18
|
-
mode: 'site',
|
19
|
-
favicon:
|
20
|
-
'https://oss.elebuys.com/resource/programme/202106211028580003961886.png',
|
21
|
-
logo: 'https://oss.elebuys.com/resource/programme/202106211028580003961886.png',
|
22
|
-
resolve: {
|
23
|
-
includes: [...tailPkgList, 'docs'],
|
24
|
-
},
|
25
|
-
outputPath: 'docs-dist',
|
26
|
-
alias: {
|
27
|
-
'@fle-ui/next': join(__dirname, 'components'),
|
28
|
-
'@fle-ui/next/es': join(__dirname, 'components'),
|
29
|
-
'@fle-ui/next/lib': join(__dirname, 'components'),
|
30
|
-
},
|
31
|
-
define: {
|
32
|
-
'process.env.BUILD_TYPE_CUS': 'docs',
|
33
|
-
},
|
34
|
-
dynamicImport: {},
|
35
|
-
navs: [
|
36
|
-
{
|
37
|
-
title: '文档',
|
38
|
-
path: '/document',
|
39
|
-
},
|
40
|
-
{
|
41
|
-
title: '组件',
|
42
|
-
path: '/components',
|
43
|
-
},
|
44
|
-
{
|
45
|
-
title: 'pro组件',
|
46
|
-
path: 'https://fle-ui-pro.fxqifu.com/pro-components/components',
|
47
|
-
},
|
48
|
-
{
|
49
|
-
title: '业务组件',
|
50
|
-
path: 'https://fle-ui-pro.fxqifu.com/components',
|
51
|
-
},
|
52
|
-
{
|
53
|
-
title: '社区资源',
|
54
|
-
children: [
|
55
|
-
{ title: 'fle-cli', path: 'https://flecli.fxqifu.com/' },
|
56
|
-
{ title: 'fle-git', path: 'https://flecli.fxqifu.com/fle-git' },
|
57
|
-
{ title: '常用工具', path: 'https://flecli.fxqifu.com/community/copy' },
|
58
|
-
],
|
59
|
-
},
|
60
|
-
{
|
61
|
-
title: '发布记录',
|
62
|
-
path: '/story',
|
63
|
-
},
|
64
|
-
{
|
65
|
-
title: 'GitLab',
|
66
|
-
path: 'https://gitlab.fxqifu.com.cn/fle-ui/fle-ui-next',
|
67
|
-
},
|
68
|
-
],
|
69
|
-
// mfsu: {},
|
70
|
-
menus: {
|
71
|
-
'/components': [
|
72
|
-
{
|
73
|
-
title: '通用',
|
74
|
-
children: ['button', 'icon', 'typography'],
|
75
|
-
},
|
76
|
-
{
|
77
|
-
title: '布局',
|
78
|
-
children: ['divider', 'grid', 'layout', 'space'],
|
79
|
-
},
|
80
|
-
{
|
81
|
-
title: '导航',
|
82
|
-
children: [
|
83
|
-
'affix',
|
84
|
-
'breadcrumb',
|
85
|
-
'steps',
|
86
|
-
'dropdown',
|
87
|
-
'menu',
|
88
|
-
'pagination',
|
89
|
-
'page-header',
|
90
|
-
],
|
91
|
-
},
|
92
|
-
{
|
93
|
-
title: '数据录入',
|
94
|
-
children: [
|
95
|
-
'autoComplete',
|
96
|
-
'cascader',
|
97
|
-
'checkbox',
|
98
|
-
'date-picker',
|
99
|
-
'form',
|
100
|
-
'input',
|
101
|
-
'inputNumber',
|
102
|
-
'mentions',
|
103
|
-
'radio',
|
104
|
-
'select',
|
105
|
-
'slider',
|
106
|
-
'switch',
|
107
|
-
'time-picker',
|
108
|
-
'transfer',
|
109
|
-
'tree-select',
|
110
|
-
'upload',
|
111
|
-
'rate',
|
112
|
-
],
|
113
|
-
},
|
114
|
-
{
|
115
|
-
title: '数据展示',
|
116
|
-
children: [
|
117
|
-
'avatar',
|
118
|
-
'badge',
|
119
|
-
'calendar',
|
120
|
-
'card',
|
121
|
-
'carousel',
|
122
|
-
'collapse',
|
123
|
-
'comment',
|
124
|
-
'descriptions',
|
125
|
-
'empty',
|
126
|
-
'image',
|
127
|
-
'list',
|
128
|
-
'statistic',
|
129
|
-
'table',
|
130
|
-
'tabs',
|
131
|
-
'tag',
|
132
|
-
'timeline',
|
133
|
-
'tooltip',
|
134
|
-
'popover',
|
135
|
-
'tree',
|
136
|
-
],
|
137
|
-
},
|
138
|
-
{
|
139
|
-
title: '反馈',
|
140
|
-
children: [
|
141
|
-
'alert',
|
142
|
-
'drawer',
|
143
|
-
'message',
|
144
|
-
'modal',
|
145
|
-
'notification',
|
146
|
-
'popconfirm',
|
147
|
-
'progress',
|
148
|
-
'result',
|
149
|
-
'skeleton',
|
150
|
-
'spin',
|
151
|
-
],
|
152
|
-
},
|
153
|
-
{
|
154
|
-
title: '其他',
|
155
|
-
children: ['anchor', 'backTop', 'configProvider'],
|
156
|
-
},
|
157
|
-
],
|
158
|
-
},
|
159
|
-
});
|
@@ -1,159 +0,0 @@
|
|
1
|
-
import { defineConfig } from 'dumi';
|
2
|
-
import { readdirSync } from 'fs';
|
3
|
-
import { join } from 'path';
|
4
|
-
|
5
|
-
const headPkgList: any = [];
|
6
|
-
// utils must build before core
|
7
|
-
// runtime must build before renderer-react
|
8
|
-
const pkgList = readdirSync(join(__dirname, 'components')).filter(
|
9
|
-
(pkg) => pkg.charAt(0) !== '.' && !headPkgList.includes(pkg),
|
10
|
-
);
|
11
|
-
|
12
|
-
const tailPkgList = pkgList
|
13
|
-
.map((path) => [join('components', path)])
|
14
|
-
.reduce((acc, val) => acc.concat(val), []);
|
15
|
-
|
16
|
-
export default defineConfig({
|
17
|
-
title: 'Fle-UI',
|
18
|
-
mode: 'site',
|
19
|
-
favicon:
|
20
|
-
'https://oss.elebuys.com/resource/programme/202106211028580003961886.png',
|
21
|
-
logo: 'https://oss.elebuys.com/resource/programme/202106211028580003961886.png',
|
22
|
-
resolve: {
|
23
|
-
includes: [...tailPkgList, 'docs'],
|
24
|
-
},
|
25
|
-
outputPath: 'docs-dist',
|
26
|
-
alias: {
|
27
|
-
'@fle-ui/next': join(__dirname, 'components'),
|
28
|
-
'@fle-ui/next/es': join(__dirname, 'components'),
|
29
|
-
'@fle-ui/next/lib': join(__dirname, 'components'),
|
30
|
-
},
|
31
|
-
define: {
|
32
|
-
'process.env.BUILD_TYPE_CUS': 'docs',
|
33
|
-
},
|
34
|
-
dynamicImport: {},
|
35
|
-
navs: [
|
36
|
-
{
|
37
|
-
title: '文档',
|
38
|
-
path: '/document',
|
39
|
-
},
|
40
|
-
{
|
41
|
-
title: '组件',
|
42
|
-
path: '/components',
|
43
|
-
},
|
44
|
-
{
|
45
|
-
title: 'pro组件',
|
46
|
-
path: 'https://fle-ui-pro.fxqifu.com/pro-components/components',
|
47
|
-
},
|
48
|
-
{
|
49
|
-
title: '业务组件',
|
50
|
-
path: 'https://fle-ui-pro.fxqifu.com/components',
|
51
|
-
},
|
52
|
-
{
|
53
|
-
title: '社区资源',
|
54
|
-
children: [
|
55
|
-
{ title: 'fle-cli', path: 'https://fle-cli.fxqifu.com/' },
|
56
|
-
{ title: 'fle-git', path: 'https://fle-cli.fxqifu.com/fle-git' },
|
57
|
-
{ title: '常用工具', path: 'https://fle-cli.fxqifu.com/community/copy' },
|
58
|
-
],
|
59
|
-
},
|
60
|
-
{
|
61
|
-
title: '发布记录',
|
62
|
-
path: '/story',
|
63
|
-
},
|
64
|
-
{
|
65
|
-
title: 'GitLab',
|
66
|
-
path: 'https://gitlab.fxqifu.com.cn/fle-ui/fle-ui-next',
|
67
|
-
},
|
68
|
-
],
|
69
|
-
// mfsu: {},
|
70
|
-
menus: {
|
71
|
-
'/components': [
|
72
|
-
{
|
73
|
-
title: '通用',
|
74
|
-
children: ['button', 'icon', 'typography'],
|
75
|
-
},
|
76
|
-
{
|
77
|
-
title: '布局',
|
78
|
-
children: ['divider', 'grid', 'layout', 'space'],
|
79
|
-
},
|
80
|
-
{
|
81
|
-
title: '导航',
|
82
|
-
children: [
|
83
|
-
'affix',
|
84
|
-
'breadcrumb',
|
85
|
-
'steps',
|
86
|
-
'dropdown',
|
87
|
-
'menu',
|
88
|
-
'pagination',
|
89
|
-
'page-header',
|
90
|
-
],
|
91
|
-
},
|
92
|
-
{
|
93
|
-
title: '数据录入',
|
94
|
-
children: [
|
95
|
-
'autoComplete',
|
96
|
-
'cascader',
|
97
|
-
'checkbox',
|
98
|
-
'date-picker',
|
99
|
-
'form',
|
100
|
-
'input',
|
101
|
-
'inputNumber',
|
102
|
-
'mentions',
|
103
|
-
'radio',
|
104
|
-
'select',
|
105
|
-
'slider',
|
106
|
-
'switch',
|
107
|
-
'time-picker',
|
108
|
-
'transfer',
|
109
|
-
'tree-select',
|
110
|
-
'upload',
|
111
|
-
'rate',
|
112
|
-
],
|
113
|
-
},
|
114
|
-
{
|
115
|
-
title: '数据展示',
|
116
|
-
children: [
|
117
|
-
'avatar',
|
118
|
-
'badge',
|
119
|
-
'calendar',
|
120
|
-
'card',
|
121
|
-
'carousel',
|
122
|
-
'collapse',
|
123
|
-
'comment',
|
124
|
-
'descriptions',
|
125
|
-
'empty',
|
126
|
-
'image',
|
127
|
-
'list',
|
128
|
-
'statistic',
|
129
|
-
'table',
|
130
|
-
'tabs',
|
131
|
-
'tag',
|
132
|
-
'timeline',
|
133
|
-
'tooltip',
|
134
|
-
'popover',
|
135
|
-
'tree',
|
136
|
-
],
|
137
|
-
},
|
138
|
-
{
|
139
|
-
title: '反馈',
|
140
|
-
children: [
|
141
|
-
'alert',
|
142
|
-
'drawer',
|
143
|
-
'message',
|
144
|
-
'modal',
|
145
|
-
'notification',
|
146
|
-
'popconfirm',
|
147
|
-
'progress',
|
148
|
-
'result',
|
149
|
-
'skeleton',
|
150
|
-
'spin',
|
151
|
-
],
|
152
|
-
},
|
153
|
-
{
|
154
|
-
title: '其他',
|
155
|
-
children: ['anchor', 'backTop', 'configProvider'],
|
156
|
-
},
|
157
|
-
],
|
158
|
-
},
|
159
|
-
});
|
@@ -1,159 +0,0 @@
|
|
1
|
-
import { defineConfig } from 'dumi';
|
2
|
-
import { readdirSync } from 'fs';
|
3
|
-
import { join } from 'path';
|
4
|
-
|
5
|
-
const headPkgList: any = [];
|
6
|
-
// utils must build before core
|
7
|
-
// runtime must build before renderer-react
|
8
|
-
const pkgList = readdirSync(join(__dirname, 'components')).filter(
|
9
|
-
(pkg) => pkg.charAt(0) !== '.' && !headPkgList.includes(pkg),
|
10
|
-
);
|
11
|
-
|
12
|
-
const tailPkgList = pkgList
|
13
|
-
.map((path) => [join('components', path)])
|
14
|
-
.reduce((acc, val) => acc.concat(val), []);
|
15
|
-
|
16
|
-
export default defineConfig({
|
17
|
-
title: 'Fle-UI',
|
18
|
-
mode: 'site',
|
19
|
-
favicon:
|
20
|
-
'https://oss.elebuys.com/resource/programme/202106211028580003961886.png',
|
21
|
-
logo: 'https://oss.elebuys.com/resource/programme/202106211028580003961886.png',
|
22
|
-
resolve: {
|
23
|
-
includes: [...tailPkgList, 'docs'],
|
24
|
-
},
|
25
|
-
outputPath: 'docs-dist',
|
26
|
-
alias: {
|
27
|
-
'@fle-ui/next': join(__dirname, 'components'),
|
28
|
-
'@fle-ui/next/es': join(__dirname, 'components'),
|
29
|
-
'@fle-ui/next/lib': join(__dirname, 'components'),
|
30
|
-
},
|
31
|
-
define: {
|
32
|
-
'process.env.BUILD_TYPE_CUS': 'docs',
|
33
|
-
},
|
34
|
-
dynamicImport: {},
|
35
|
-
navs: [
|
36
|
-
{
|
37
|
-
title: '文档',
|
38
|
-
path: '/document',
|
39
|
-
},
|
40
|
-
{
|
41
|
-
title: '组件',
|
42
|
-
path: '/components',
|
43
|
-
},
|
44
|
-
{
|
45
|
-
title: 'pro组件',
|
46
|
-
path: 'https://fle-ui-pro.fxqifu.com/pro-components/components',
|
47
|
-
},
|
48
|
-
{
|
49
|
-
title: '业务组件',
|
50
|
-
path: 'https://fle-ui-pro.fxqifu.com/components',
|
51
|
-
},
|
52
|
-
{
|
53
|
-
title: '社区资源',
|
54
|
-
children: [
|
55
|
-
{ title: 'fle-cli', path: 'https://fle-cli.fxqifu.com/' },
|
56
|
-
{ title: 'fle-git', path: 'https://fle-cli.fxqifu.com/fle-git' },
|
57
|
-
{ title: '常用工具', path: 'https://fle-cli.fxqifu.com/community/copy' },
|
58
|
-
],
|
59
|
-
},
|
60
|
-
{
|
61
|
-
title: '发布记录',
|
62
|
-
path: '/story',
|
63
|
-
},
|
64
|
-
{
|
65
|
-
title: 'GitLab',
|
66
|
-
path: 'https://gitlab.fxqifu.com.cn/fle-ui/fle-ui-next',
|
67
|
-
},
|
68
|
-
],
|
69
|
-
// mfsu: {},
|
70
|
-
menus: {
|
71
|
-
'/components': [
|
72
|
-
{
|
73
|
-
title: '通用',
|
74
|
-
children: ['button', 'icon', 'typography'],
|
75
|
-
},
|
76
|
-
{
|
77
|
-
title: '布局',
|
78
|
-
children: ['divider', 'grid', 'layout', 'space'],
|
79
|
-
},
|
80
|
-
{
|
81
|
-
title: '导航',
|
82
|
-
children: [
|
83
|
-
'affix',
|
84
|
-
'breadcrumb',
|
85
|
-
'steps',
|
86
|
-
'dropdown',
|
87
|
-
'menu',
|
88
|
-
'pagination',
|
89
|
-
'page-header',
|
90
|
-
],
|
91
|
-
},
|
92
|
-
{
|
93
|
-
title: '数据录入',
|
94
|
-
children: [
|
95
|
-
'autoComplete',
|
96
|
-
'cascader',
|
97
|
-
'checkbox',
|
98
|
-
'date-picker',
|
99
|
-
'form',
|
100
|
-
'input',
|
101
|
-
'inputNumber',
|
102
|
-
'mentions',
|
103
|
-
'radio',
|
104
|
-
'select',
|
105
|
-
'slider',
|
106
|
-
'switch',
|
107
|
-
'time-picker',
|
108
|
-
'transfer',
|
109
|
-
'tree-select',
|
110
|
-
'upload',
|
111
|
-
'rate',
|
112
|
-
],
|
113
|
-
},
|
114
|
-
{
|
115
|
-
title: '数据展示',
|
116
|
-
children: [
|
117
|
-
'avatar',
|
118
|
-
'badge',
|
119
|
-
'calendar',
|
120
|
-
'card',
|
121
|
-
'carousel',
|
122
|
-
'collapse',
|
123
|
-
'comment',
|
124
|
-
'descriptions',
|
125
|
-
'empty',
|
126
|
-
'image',
|
127
|
-
'list',
|
128
|
-
'statistic',
|
129
|
-
'table',
|
130
|
-
'tabs',
|
131
|
-
'tag',
|
132
|
-
'timeline',
|
133
|
-
'tooltip',
|
134
|
-
'popover',
|
135
|
-
'tree',
|
136
|
-
],
|
137
|
-
},
|
138
|
-
{
|
139
|
-
title: '反馈',
|
140
|
-
children: [
|
141
|
-
'alert',
|
142
|
-
'drawer',
|
143
|
-
'message',
|
144
|
-
'modal',
|
145
|
-
'notification',
|
146
|
-
'popconfirm',
|
147
|
-
'progress',
|
148
|
-
'result',
|
149
|
-
'skeleton',
|
150
|
-
'spin',
|
151
|
-
],
|
152
|
-
},
|
153
|
-
{
|
154
|
-
title: '其他',
|
155
|
-
children: ['anchor', 'backTop', 'configProvider'],
|
156
|
-
},
|
157
|
-
],
|
158
|
-
},
|
159
|
-
});
|
@@ -1,147 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"private": false,
|
3
|
-
"name": "@fle-ui/next",
|
4
|
-
"version": "1.0.5-alpha.0",
|
5
|
-
"license": "MIT",
|
6
|
-
"scripts": {
|
7
|
-
"start": "dumi dev UMI_ENV=docs",
|
8
|
-
"docs:build": "dumi build UMI_ENV=docs",
|
9
|
-
"docs:deploy": "gh-pages -d docs-dist",
|
10
|
-
"build": "cross-env BUILD_TYPE_CUS=components npm run compile && NODE_OPTIONS='--max-old-space-size=4096' npm run dist",
|
11
|
-
"compile": "npm run clean && fle-ui-tools run compile",
|
12
|
-
"clean": "fle-ui-tools run clean && rm -rf es lib coverage dist report.html",
|
13
|
-
"dist": "fle-ui-tools run dist",
|
14
|
-
"deploy": "npm run docs:build && npm run docs:deploy",
|
15
|
-
"release": "npm run build && npm publish",
|
16
|
-
"prettier": "prettier --write \"**/*.{js,jsx,tsx,ts,less,md,json}\"",
|
17
|
-
"test": "umi-test",
|
18
|
-
"test:coverage": "umi-test --coverage"
|
19
|
-
},
|
20
|
-
"main": "lib/index.js",
|
21
|
-
"module": "es/index.js",
|
22
|
-
"unpkg": "dist/fle-ui.min.js",
|
23
|
-
"typings": "lib/index.d.ts",
|
24
|
-
"gitHooks": {
|
25
|
-
"pre-commit": "lint-staged"
|
26
|
-
},
|
27
|
-
"lint-staged": {
|
28
|
-
"*.{js,jsx,less,md,json}": [
|
29
|
-
"prettier --write"
|
30
|
-
],
|
31
|
-
"*.ts?(x)": [
|
32
|
-
"prettier --parser=typescript --write"
|
33
|
-
]
|
34
|
-
},
|
35
|
-
"dependencies": {
|
36
|
-
"@ant-design/colors": "^6.0.0",
|
37
|
-
"@ant-design/icons": "^4.7.0",
|
38
|
-
"@ant-design/react-slick": "~0.28.1",
|
39
|
-
"@babel/runtime": "^7.12.5",
|
40
|
-
"@ctrl/tinycolor": "^3.4.0",
|
41
|
-
"@fle-ui/rc-select": "^1.0.0",
|
42
|
-
"array-tree-filter": "^2.1.0",
|
43
|
-
"classnames": "^2.2.6",
|
44
|
-
"copy-to-clipboard": "^3.2.0",
|
45
|
-
"lodash": "^4.17.21",
|
46
|
-
"moment": "^2.25.3",
|
47
|
-
"rc-cascader": "~2.1.0",
|
48
|
-
"rc-checkbox": "~2.3.0",
|
49
|
-
"rc-collapse": "~3.1.0",
|
50
|
-
"rc-dialog": "~8.6.0",
|
51
|
-
"rc-drawer": "~4.4.2",
|
52
|
-
"rc-dropdown": "~3.2.0",
|
53
|
-
"rc-field-form": "~1.21.0",
|
54
|
-
"rc-image": "~5.2.5",
|
55
|
-
"rc-input-number": "~7.3.0",
|
56
|
-
"rc-mentions": "~1.6.1",
|
57
|
-
"rc-menu": "~9.0.12",
|
58
|
-
"rc-motion": "^2.4.4",
|
59
|
-
"rc-notification": "~4.5.7",
|
60
|
-
"rc-pagination": "~3.1.9",
|
61
|
-
"rc-picker": "~2.5.17",
|
62
|
-
"rc-progress": "~3.1.0",
|
63
|
-
"rc-rate": "~2.9.0",
|
64
|
-
"rc-resize-observer": "^1.0.0",
|
65
|
-
"rc-select": "~13.1.0-alpha.0",
|
66
|
-
"rc-slider": "~9.7.4",
|
67
|
-
"rc-steps": "~4.1.0",
|
68
|
-
"rc-switch": "~3.2.0",
|
69
|
-
"rc-table": "~7.19.0",
|
70
|
-
"rc-tabs": "~11.10.0",
|
71
|
-
"rc-textarea": "~0.3.0",
|
72
|
-
"rc-tooltip": "~5.1.1",
|
73
|
-
"rc-tree": "~5.2.0",
|
74
|
-
"rc-tree-select": "~4.6.0",
|
75
|
-
"rc-trigger": "^5.2.10",
|
76
|
-
"rc-upload": "~4.3.0",
|
77
|
-
"rc-util": "^5.14.0",
|
78
|
-
"scroll-into-view-if-needed": "^2.2.25"
|
79
|
-
},
|
80
|
-
"peerDependencies": {
|
81
|
-
"react": ">=16.9.0",
|
82
|
-
"react-dom": ">=16.9.0"
|
83
|
-
},
|
84
|
-
"devDependencies": {
|
85
|
-
"@fle-ui/tools": "^1.0.0-alpha.1",
|
86
|
-
"@types/lodash": "^4.14.172",
|
87
|
-
"@types/react-color": "^3.0.5",
|
88
|
-
"@types/react-dom": "^17.0.9",
|
89
|
-
"@types/react-highlight-words": "^0.16.3",
|
90
|
-
"@types/react-infinite-scroller": "^1.2.2",
|
91
|
-
"@types/react-sticky": "^6.0.4",
|
92
|
-
"@types/react-virtualized": "^9.21.13",
|
93
|
-
"@types/react-window": "^1.8.5",
|
94
|
-
"@umijs/test": "^3.0.5",
|
95
|
-
"antd-img-crop": "^3.16.0",
|
96
|
-
"antd-pro-merge-less": "^3.0.11",
|
97
|
-
"antd-theme-generator": "^1.2.10",
|
98
|
-
"array-move": "^4.0.0",
|
99
|
-
"autoprefixer": "8.0.0",
|
100
|
-
"chalk": "^4.1.2",
|
101
|
-
"cheerio": "^1.0.0-rc.10",
|
102
|
-
"cross-env": "^7.0.3",
|
103
|
-
"dumi": "^1.0.16",
|
104
|
-
"duplicate-package-checker-webpack-plugin": "^3.0.0",
|
105
|
-
"esbuild-loader": "^2.15.1",
|
106
|
-
"father-build": "^1.17.2",
|
107
|
-
"fetch-jsonp": "^1.2.1",
|
108
|
-
"fs-extra": "^10.0.0",
|
109
|
-
"gh-pages": "^3.0.0",
|
110
|
-
"glob": "^7.1.7",
|
111
|
-
"http-server": "^13.0.2",
|
112
|
-
"ignore-emit-webpack-plugin": "^2.0.6",
|
113
|
-
"immutability-helper": "^3.1.1",
|
114
|
-
"inquirer": "^8.1.5",
|
115
|
-
"less-vars-to-js": "^1.3.0",
|
116
|
-
"lint-staged": "^10.0.7",
|
117
|
-
"node-fetch": "^3.0.0",
|
118
|
-
"open": "^8.2.1",
|
119
|
-
"prettier": "^2.2.1",
|
120
|
-
"rc-tween-one": "^2.7.3",
|
121
|
-
"react-color": "^2.19.3",
|
122
|
-
"react-dnd": "^14.0.3",
|
123
|
-
"react-dnd-html5-backend": "^14.0.1",
|
124
|
-
"react-draggable": "^4.4.4",
|
125
|
-
"react-highlight-words": "^0.17.0",
|
126
|
-
"react-infinite-scroller": "^1.2.4",
|
127
|
-
"react-sortable-hoc": "^2.0.0",
|
128
|
-
"react-sticky": "^6.0.3",
|
129
|
-
"react-text-loop": "^2.3.0",
|
130
|
-
"react-virtualized": "^9.22.3",
|
131
|
-
"react-window": "^1.8.6",
|
132
|
-
"reqwest": "^2.0.5",
|
133
|
-
"simple-git": "^2.45.1",
|
134
|
-
"string-replace-loader": "^3.0.3",
|
135
|
-
"webpack-bundle-analyzer": "^4.4.2",
|
136
|
-
"yaml-front-matter": "^4.1.1",
|
137
|
-
"yorkie": "^2.0.0"
|
138
|
-
},
|
139
|
-
"browserslist": [
|
140
|
-
"> 0.5%",
|
141
|
-
"last 2 versions",
|
142
|
-
"Firefox ESR",
|
143
|
-
"not dead",
|
144
|
-
"IE 11",
|
145
|
-
"not IE 10"
|
146
|
-
]
|
147
|
-
}
|