@@ -5,6 +5,7 @@ import { ClickActionHelper } from "@mendix/widget-plugin-grid/helpers/ClickActio
55import { FocusTargetController } from "@mendix/widget-plugin-grid/keyboard-navigation/FocusTargetController" ;
66import { VirtualGridLayout } from "@mendix/widget-plugin-grid/keyboard-navigation/VirtualGridLayout" ;
77import {
8+ ObservableSelectAllTexts ,
89 QueryService ,
910 SelectActionsService ,
1011 SelectAllService ,
@@ -13,11 +14,7 @@ import {
1314 TaskProgressService
1415} from "@mendix/widget-plugin-grid/main" ;
1516import { SelectAllFeature } from "@mendix/widget-plugin-grid/select-all/select-all.feature" ;
16- import {
17- BarStore ,
18- ObservableSelectAllTexts ,
19- SelectAllEvents
20- } from "@mendix/widget-plugin-grid/select-all/select-all.model" ;
17+ import { BarStore , SelectAllEvents } from "@mendix/widget-plugin-grid/select-all/select-all.model" ;
2118import { SelectionCounterViewModel } from "@mendix/widget-plugin-grid/selection-counter/SelectionCounter.viewModel-atoms" ;
2219import { ComputedAtom , DerivedPropsGate , Emitter } from "@mendix/widget-plugin-mobx-kit/main" ;
2320import { token } from "brandi" ;
@@ -75,7 +72,8 @@ export const CORE_TOKENS = {
7572 selectedCounterTextsStore : token < {
7673 clearSelectionButtonLabel : string ;
7774 selectedCountText : string ;
78- } > ( "@store:selectedCounterTextsStore" )
75+ } > ( "@store:selectedCounterTextsStore" ) ,
76+ selectAllTexts : token < ObservableSelectAllTexts > ( "@store:SelectAllTexts" )
7977 } ,
8078
8179 setupService : token < DatagridSetupService > ( "DatagridSetupService" ) ,
@@ -140,7 +138,6 @@ export const SA_TOKENS = {
140138 emitter : token < Emitter < SelectAllEvents > > ( "SelectAllEmitter" ) ,
141139 gate : token < DerivedPropsGate < MainGateProps > > ( "MainGateForSelectAllContainer" ) ,
142140 progressService : token < TaskProgressService > ( "SelectAllProgressService" ) ,
143- selectAllTextsStore : token < ObservableSelectAllTexts > ( "SelectAllTextsStore" ) ,
144141 selectAllBarVM : token < SelectAllBarViewModel > ( "SelectAllBarViewModel" ) ,
145142 selectAllService : token < SelectAllService > ( "SelectAllService" ) ,
146143 selectionDialogVM : token < SelectionProgressDialogViewModel > ( "SelectionProgressDialogViewModel" ) ,
0 commit comments