1/**
2 * Copyright (c) 2021-2022 Huawei Device Co., Ltd.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at
6 *
7 *     http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16const defaultLayoutConfig = {
17  defaultAppPageStartConfig: 'Grid',
18  defaultLayoutOptions: [
19    { name: 'List', value: 'List', checked: false },
20    { name: 'Grid', value: 'Grid', checked: false }
21  ],
22  defaultGridConfig: 0,
23  defaultRecentMissionsLimit: 20,
24  defaultRecentMissionsRowConfig: 'single',
25  defaultRecentMissionsLimitArray: [
26    { name: '5', value: 5, checked: false },
27    { name: '10', value: 10, checked: false },
28    { name: '15', value: 15, checked: false },
29    { name: '20', value: 20, checked: false }
30  ],
31  defaultDeviceType: 'phone'
32};
33
34export default defaultLayoutConfig;