@@ -26,6 +26,10 @@ const matchComponents = [
26
26
pattern : / ^ C a r o u s e l I t e m $ / ,
27
27
componentDir : 'carousel' ,
28
28
} ,
29
+ {
30
+ pattern : / ^ C a s c a d e r P a n e l $ / ,
31
+ componentDir : 'cascader' ,
32
+ } ,
29
33
{
30
34
pattern : / ^ C h e c k b o x G r o u p $ / ,
31
35
componentDir : 'checkbox' ,
@@ -38,6 +42,10 @@ const matchComponents = [
38
42
pattern : / ^ ( W e e k P i c k e r | M o n t h P i c k e r | Y e a r P i c k e r | Q u a r t e r P i c k e r | R a n g e P i c k e r ) $ / ,
39
43
componentDir : 'date-picker' ,
40
44
} ,
45
+ {
46
+ pattern : / ^ D e s c r i p t i o n s I t e m $ / ,
47
+ componentDir : 'descriptions' ,
48
+ } ,
41
49
{
42
50
pattern : / ^ ( D o p t i o n | D g r o u p | D s u b m e n u | D r o p d o w n B u t t o n ) $ / ,
43
51
componentDir : 'dropdown' ,
@@ -50,7 +58,6 @@ const matchComponents = [
50
58
pattern : / ^ ( C o l | R o w | G r i d I t e m ) $ / ,
51
59
componentDir : 'grid' ,
52
60
} ,
53
-
54
61
{
55
62
pattern : / ^ ( I m a g e P r e v i e w | I m a g e P r e v i e w G r o u p ) $ / ,
56
63
componentDir : 'image' ,
@@ -83,23 +90,24 @@ const matchComponents = [
83
90
84
91
{
85
92
pattern : / ^ ( S k e l e t o n L i n e | S k e l e t o n S h a p e ) $ / ,
86
- componentDir : 'table ' ,
93
+ componentDir : 'skeleton ' ,
87
94
} ,
88
95
{
89
96
pattern : / ^ C o u n t d o w n $ / ,
90
97
componentDir : 'statistic' ,
91
98
} ,
92
-
93
99
{
94
100
pattern : / ^ S t e p $ / ,
95
101
componentDir : 'steps' ,
96
102
} ,
97
-
98
103
{
99
104
pattern : / ^ ( T h e a d | T d | T h | T r | T b o d y | T a b l e C o l u m n ) $ / ,
100
105
componentDir : 'table' ,
101
106
} ,
102
-
107
+ {
108
+ pattern : / ^ T a g G r o u p $ / ,
109
+ componentDir : 'tag' ,
110
+ } ,
103
111
{
104
112
pattern : / ^ T a b P a n e $ / ,
105
113
componentDir : 'tabs' ,
@@ -108,16 +116,10 @@ const matchComponents = [
108
116
pattern : / ^ T i m e l i n e I t e m $ / ,
109
117
componentDir : 'timeline' ,
110
118
} ,
111
-
112
119
{
113
120
pattern : / ^ ( T y p o g r a p h y P a r a g r a p h | T y p o g r a p h y T i t l e | T y p o g r a p h y T e x t ) $ / ,
114
121
componentDir : 'typography' ,
115
122
} ,
116
-
117
- {
118
- pattern : / ^ D e s c r i p t i o n s I t e m $ / ,
119
- componentDir : 'descriptions' ,
120
- } ,
121
123
]
122
124
123
125
function getComponentStyleDir ( importName : string , importStyle : boolean | 'css' | 'less' ) {
0 commit comments