@@ -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 ,
@@ -14,11 +15,7 @@ import {
1415 TaskProgressService
1516} from "@mendix/widget-plugin-grid/main" ;
1617import { SelectAllFeature } from "@mendix/widget-plugin-grid/select-all/select-all.feature" ;
17- import {
18- BarStore ,
19- ObservableSelectAllTexts ,
20- SelectAllEvents
21- } from "@mendix/widget-plugin-grid/select-all/select-all.model" ;
18+ import { BarStore , SelectAllEvents } from "@mendix/widget-plugin-grid/select-all/select-all.model" ;
2219import { SelectionCounterViewModel } from "@mendix/widget-plugin-grid/selection-counter/SelectionCounter.viewModel-atoms" ;
2320import { ComputedAtom , DerivedPropsGate , Emitter } from "@mendix/widget-plugin-mobx-kit/main" ;
2421import { token } from "brandi" ;
@@ -79,7 +76,8 @@ export const CORE_TOKENS = {
7976 selectedCounterTextsStore : token < {
8077 clearSelectionButtonLabel : string ;
8178 selectedCountText : string ;
82- } > ( "@store:selectedCounterTextsStore" )
79+ } > ( "@store:selectedCounterTextsStore" ) ,
80+ selectAllTexts : token < ObservableSelectAllTexts > ( "@store:SelectAllTexts" )
8381 } ,
8482
8583 setupService : token < DatagridSetupService > ( "DatagridSetupService" ) ,
@@ -155,7 +153,6 @@ export const SA_TOKENS = {
155153 emitter : token < Emitter < SelectAllEvents > > ( "SelectAllEmitter" ) ,
156154 gate : token < DerivedPropsGate < MainGateProps > > ( "MainGateForSelectAllContainer" ) ,
157155 progressService : token < TaskProgressService > ( "SelectAllProgressService" ) ,
158- selectAllTextsStore : token < ObservableSelectAllTexts > ( "SelectAllTextsStore" ) ,
159156 selectAllBarVM : token < SelectAllBarViewModel > ( "SelectAllBarViewModel" ) ,
160157 selectAllService : token < SelectAllService > ( "SelectAllService" ) ,
161158 selectionDialogVM : token < SelectionProgressDialogViewModel > ( "SelectionProgressDialogViewModel" ) ,
0 commit comments