2020-12-10 13:14:52 +00:00
|
|
|
|
|
|
|
// import {storeDocumentSettings} from './documentSettings';
|
2021-01-28 11:45:38 +00:00
|
|
|
import {storeFocusObjects} from "./focusObjects";
|
2020-12-10 13:14:52 +00:00
|
|
|
import {storeUsers} from '../../../../common/mobile/lib/store/users';
|
2020-12-28 20:52:32 +00:00
|
|
|
import {storeWorksheets} from './sheets';
|
2020-12-10 13:14:52 +00:00
|
|
|
// import {storeTextSettings} from "./textSettings";
|
|
|
|
// import {storeParagraphSettings} from "./paragraphSettings";
|
|
|
|
// import {storeShapeSettings} from "./shapeSettings";
|
|
|
|
// import {storeImageSettings} from "./imageSettings";
|
|
|
|
// import {storeTableSettings} from "./tableSettings";
|
2021-01-30 22:19:20 +00:00
|
|
|
import {storeChartSettings} from "./chartSettings";
|
2020-12-10 13:14:52 +00:00
|
|
|
|
|
|
|
export const stores = {
|
2021-01-28 11:45:38 +00:00
|
|
|
storeFocusObjects: new storeFocusObjects(),
|
2020-12-10 13:14:52 +00:00
|
|
|
// storeDocumentSettings: new storeDocumentSettings(),
|
|
|
|
users: new storeUsers(),
|
2021-01-30 22:19:20 +00:00
|
|
|
sheets: new storeWorksheets(),
|
2020-12-10 13:14:52 +00:00
|
|
|
// storeTextSettings: new storeTextSettings(),
|
|
|
|
// storeParagraphSettings: new storeParagraphSettings(),
|
|
|
|
// storeShapeSettings: new storeShapeSettings(),
|
2021-01-30 22:19:20 +00:00
|
|
|
storeChartSettings: new storeChartSettings(),
|
2020-12-10 13:14:52 +00:00
|
|
|
// storeImageSettings: new storeImageSettings(),
|
|
|
|
// storeTableSettings: new storeTableSettings()
|
|
|
|
};
|
|
|
|
|