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';
|
2021-02-03 00:30:39 +00:00
|
|
|
import {storeFunctions} from './functions';
|
2021-02-02 16:24:38 +00:00
|
|
|
import {storePalette} from "./palette";
|
2021-02-09 18:42:00 +00:00
|
|
|
import {storeTextSettings} from "./textSettings";
|
2021-02-23 14:17:44 +00:00
|
|
|
import {storeApplicationSettings} from "./applicationSettings";
|
2021-02-02 16:24:38 +00:00
|
|
|
import {storeShapeSettings} from "./shapeSettings";
|
2021-02-04 18:00:21 +00:00
|
|
|
import {storeCellSettings} from "./cellSettings";
|
2020-12-10 13:14:52 +00:00
|
|
|
// import {storeImageSettings} from "./imageSettings";
|
|
|
|
// import {storeTableSettings} from "./tableSettings";
|
2021-01-30 22:19:20 +00:00
|
|
|
import {storeChartSettings} from "./chartSettings";
|
2021-02-18 19:15:50 +00:00
|
|
|
import {storeSpreadsheetSettings} from "./spreadsheetSettings";
|
2020-12-10 13:14:52 +00:00
|
|
|
|
|
|
|
export const stores = {
|
2021-01-28 11:45:38 +00:00
|
|
|
storeFocusObjects: new storeFocusObjects(),
|
2021-02-18 19:15:50 +00:00
|
|
|
storeSpreadsheetSettings: new storeSpreadsheetSettings(),
|
2021-02-23 14:17:44 +00:00
|
|
|
storeApplicationSettings: new storeApplicationSettings(),
|
2020-12-10 13:14:52 +00:00
|
|
|
users: new storeUsers(),
|
2021-01-30 22:19:20 +00:00
|
|
|
sheets: new storeWorksheets(),
|
2021-02-03 00:30:39 +00:00
|
|
|
storeFunctions: new storeFunctions(),
|
2021-02-09 18:42:00 +00:00
|
|
|
storeTextSettings: new storeTextSettings(),
|
2020-12-10 13:14:52 +00:00
|
|
|
// storeParagraphSettings: new storeParagraphSettings(),
|
2021-02-02 16:24:38 +00:00
|
|
|
storeShapeSettings: new storeShapeSettings(),
|
2021-01-30 22:19:20 +00:00
|
|
|
storeChartSettings: new storeChartSettings(),
|
2021-02-04 18:00:21 +00:00
|
|
|
storePalette: new storePalette(),
|
|
|
|
storeCellSettings: new storeCellSettings()
|
2020-12-10 13:14:52 +00:00
|
|
|
// storeImageSettings: new storeImageSettings(),
|
|
|
|
// storeTableSettings: new storeTableSettings()
|
|
|
|
};
|
|
|
|
|