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}; 55 56export default formLayoutInfo;