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 formLayoutInfo = {
17  formLayoutDimension1X2:
18  {
19    id: 0,
20    layout: '1X2',
21    name: '1X2',
22    row: 1,
23    column: 2,
24    area: [1, 2],
25    checked: false
26  },
27  formLayoutDimension2X2:
28  {
29    id: 1,
30    layout: '2X2',
31    name: '2X2',
32    row: 2,
33    column: 2,
34    checked: false
35  },
36  formLayoutDimension2X4:
37  {
38    id: 2,
39    layout: '2X4',
40    name: '2X4',
41    row: 2,
42    column: 4,
43    checked: false
44  },
45  formLayoutDimension4X4:
46  {
47    id: 3,
48    layout: '4X4',
49    name: '4X4',
50    row: 4,
51    column: 4,
52    checked: false
53  },
54  formLayoutDimension2X1:
55  {
56    id: 4,
57    layout: '2X1',
58    name: '2X1',
59    row: 2,
60    column: 1,
61    checked: false
62  },
63  formLayoutDimension1X1:
64  {
65    id: 5,
66    layout: '1X1',
67    name: '1X1',
68    row: 1,
69    column: 1,
70    checked: false
71  },
72  formLayoutDimension6X4:
73  {
74    id: 6,
75    layout: '6X4',
76    name: '6X4',
77    row: 6,
78    column: 4,
79    checked: false
80  }
81};
82
83export default formLayoutInfo;