File tree 2 files changed +14
-0
lines changed
2 files changed +14
-0
lines changed Original file line number Diff line number Diff line change 7
7
DefaultableMixin ,
8
8
HasDescriptionMixin ,
9
9
HasMetadataMixin ,
10
+ HasScopeTrackMixin ,
10
11
NamedEntityMixin ,
11
12
TaggableMixin ,
12
13
} from "./mixins/props" ;
@@ -43,6 +44,7 @@ export {
43
44
HasDescriptionMixin ,
44
45
HasMetadataMixin ,
45
46
TaggableMixin ,
47
+ HasScopeTrackMixin ,
46
48
NamedEntityMixin ,
47
49
RuntimeItemsMixin ,
48
50
RuntimeContextFieldMixin ,
Original file line number Diff line number Diff line change @@ -32,6 +32,18 @@ export const TaggableMixin = (superclass) => {
32
32
} ;
33
33
} ;
34
34
35
+ export const HasScopeTrackMixin = ( superclass ) => {
36
+ return class extends superclass {
37
+ get scopeTrack ( ) {
38
+ return this . prop ( "scopeTrack" , [ ] ) ;
39
+ }
40
+
41
+ set scopeTrack ( array ) {
42
+ this . setProp ( "scopeTrack" , array ) ;
43
+ }
44
+ } ;
45
+ } ;
46
+
35
47
export const HasMetadataMixin = ( superclass ) => {
36
48
return class extends superclass {
37
49
get metadata ( ) {
You can’t perform that action at this time.
0 commit comments