Skip to content

Commit 84ee56d

Browse files
committed
Initial commit
1 parent 0cc3de4 commit 84ee56d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

79 files changed

+44
-9006
lines changed

.dumirc.ts

+3-14
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,12 @@
11
import { defineConfig } from 'dumi';
2-
import path from 'path';
32

43
export default defineConfig({
5-
alias: {
6-
'rc-trigger$': path.resolve('src'),
7-
'rc-trigger/es': path.resolve('src'),
8-
},
94
mfsu: false,
105
favicons: ['https://avatars0.githubusercontent.com/u/9441414?s=200&v=4'],
116
themeConfig: {
12-
name: 'Trigger',
7+
name: 'cssinjs-util',
138
logo: 'https://avatars0.githubusercontent.com/u/9441414?s=200&v=4',
149
},
15-
styles: [
16-
`
17-
.dumi-default-previewer-demo {
18-
position: relative;
19-
min-height: 300px;
20-
}
21-
`,
22-
]
2310
});
11+
12+

.fatherrc.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ import { defineConfig } from 'father';
22

33
export default defineConfig({
44
plugins: ['@rc-component/father-plugin'],
5-
});
5+
});

.gitignore

+12-8
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1+
~*
12
.storybook
23
*.iml
34
*.log
4-
.idea
5+
.idea/
56
.ipr
67
.iws
78
*~
@@ -13,28 +14,31 @@
1314
Thumbs.db
1415
.project
1516
.*proj
16-
.svn
17+
.svn/
1718
*.swp
1819
*.swo
1920
*.pyc
2021
*.pyo
22+
.build
2123
node_modules
2224
.cache
23-
*.css
25+
assets/**/*.css
2426
build
2527
lib
2628
es
27-
coverage
29+
dist
2830
yarn.lock
2931
package-lock.json
32+
coverage/
33+
.doc
3034

31-
# dumi
35+
# umi
3236
.umi
3337
.umi-production
3438
.umi-test
35-
.docs
36-
39+
.env.local
3740

3841
# dumi
3942
.dumi/tmp
40-
.dumi/tmp-production
43+
.dumi/tmp-production
44+
.dumi/tmp-test

HISTORY.md

-56
Original file line numberDiff line numberDiff line change
@@ -1,58 +1,2 @@
11
# History
22
----
3-
4-
## 4.1.0 / 2020-05-08
5-
6-
- upgrade rc-animate to `3.x`
7-
8-
## 2.5.0 / 2018-06-05
9-
10-
- support `alignPoint`
11-
12-
## 2.1.0 / 2017-10-16
13-
14-
- add action `contextMenu`
15-
16-
## 2.0.0 / 2017-09-25
17-
18-
- support React 16
19-
20-
## 1.11.0 / 2017-06-07
21-
22-
- add es
23-
24-
## 1.9.0 / 2017-02-27
25-
26-
- add getDocument prop
27-
28-
## 1.8.2 / 2017-02-24
29-
30-
- change default container to absolute to fix scrollbar change problem
31-
32-
## 1.7.0 / 2016-07-18
33-
34-
- use getContainerRenderMixin from 'rc-util'
35-
36-
## 1.6.0 / 2016-05-26
37-
38-
- support popup as function
39-
40-
## 1.5.0 / 2016-05-26
41-
42-
- add forcePopupAlign method
43-
44-
## 1.4.0 / 2016-04-06
45-
46-
- support onPopupAlign
47-
48-
## 1.3.0 / 2016-03-25
49-
50-
- support mask/maskTransitionName/zIndex
51-
52-
## 1.2.0 / 2016-03-01
53-
54-
- add showAction/hideAction
55-
56-
## 1.1.0 / 2016-01-06
57-
58-
- add root trigger node as parameter of getPopupContainer

0 commit comments

Comments
 (0)