File tree 3 files changed +13
-2
lines changed
packages/vchart/src/compile/mark
3 files changed +13
-2
lines changed Original file line number Diff line number Diff line change @@ -2,3 +2,6 @@ packages/lark-vchart
2
2
packages /block-vchart
3
3
packages /vchart-types
4
4
tools /typescript-json-schema
5
+ packages /tt-vchart
6
+ packages /vchart-schema
7
+ packages /wx-vchart
Original file line number Diff line number Diff line change 27
27
** /vchart /index.js
28
28
** /* .min.js
29
29
vchart-types
30
+ packages /lark-vchart
31
+ packages /block-vchart
32
+ packages /vchart-types
33
+ tools /typescript-json-schema
34
+ packages /tt-vchart
35
+ packages /vchart-schema
36
+ packages /wx-vchart
37
+
Original file line number Diff line number Diff line change @@ -335,7 +335,7 @@ export abstract class CompilableMark extends GrammarItem implements ICompilableM
335
335
return ;
336
336
}
337
337
const { enterStyles } = this . _separateStyle ( ) ;
338
- this . _product . encodeState ( this . _facet ? 'group' : 'enter ', enterStyles ) ;
338
+ this . _product . encodeState ( 'group' , enterStyles ) ;
339
339
}
340
340
341
341
protected _separateStyle ( ) {
@@ -365,7 +365,7 @@ export abstract class CompilableMark extends GrammarItem implements ICompilableM
365
365
const { [ STATE_VALUE_ENUM . STATE_NORMAL ] : normalStyle , ...temp } = this . stateStyle ;
366
366
const { enterStyles, updateStyles } = this . _separateStyle ( ) ;
367
367
this . _product . encode ( updateStyles ) ;
368
- this . _product . encodeState ( this . _facet ? 'group' : 'enter ', enterStyles ) ;
368
+ this . _product . encodeState ( 'group' , enterStyles ) ;
369
369
370
370
Object . keys ( temp ) . forEach ( state => {
371
371
const styles : Record < string , MarkFunctionType < any > > = { } ;
You can’t perform that action at this time.
0 commit comments