web-apps/apps/spreadsheeteditor/mobile/src/store/mainStore.js

26 lines
1.1 KiB
JavaScript
Raw Normal View History

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';
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";
// import {storeChartSettings} from "./chartSettings";
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(),
sheets: new storeWorksheets()
2020-12-10 13:14:52 +00:00
// storeTextSettings: new storeTextSettings(),
// storeParagraphSettings: new storeParagraphSettings(),
// storeShapeSettings: new storeShapeSettings(),
// storeChartSettings: new storeChartSettings(),
// storeImageSettings: new storeImageSettings(),
// storeTableSettings: new storeTableSettings()
};