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 GridLayoutConfigs = {
17  GridLayoutTable: [
18    {
19      id: 0,
20      layout: '4X4',
21      name: '4X4',
22      value: 1,
23      row: 4,
24      column: 4,
25      checked: false
26    },
27
28    {
29      id: 1,
30      layout: '5X4',
31      name: '5X4',
32      value: 0,
33      row: 5,
34      column: 4,
35      checked: false
36    },
37
38    {
39      id: 2,
40      layout: '6X4',
41      name: '6X4',
42      value: 2,
43      row: 6,
44      column: 4,
45      checked: false
46    },
47  ],
48  GridLayoutTableHorizontal: [
49    {
50      id: 0,
51      layout: '2X6',
52      name: '2X6',
53      value: 0,
54      row: 2,
55      column: 6,
56      checked: false
57    }
58  ],
59  PadGridLayoutTableHorizontal: [
60    {
61      id: 0,
62      layout: '5X11',
63      name: '5X11',
64      value: 0,
65      row: 5,
66      column: 11,
67      checked: false
68    },
69    {
70      id: 1,
71      layout: '4X10',
72      name: '4X10',
73      value: 1,
74      row: 4,
75      column: 10,
76      checked: false
77    },
78    {
79      id: 2,
80      layout: '4X9',
81      name: '4X9',
82      value: 2,
83      row: 4,
84      column: 9,
85      checked: false
86    }
87  ],
88};
89
90export default GridLayoutConfigs;