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 padFolderLayoutInfo = { 17 folderLayoutTable: { 18 id: 0, 19 layout: '3X3', 20 name: '3X3', 21 row: 3, 22 column: 3, 23 area: [2, 2], 24 checked: false, 25 }, 26 folderOpenLayoutTable: { 27 id: 1, 28 layout: '4X4', 29 name: '4X4', 30 row: 4, 31 column: 4, 32 checked: false, 33 }, 34 folderAddAppLayoutTable: { 35 id: 2, 36 layout: '6X4', 37 name: '6X4', 38 row: 6, 39 column: 4, 40 checked: false, 41 }, 42}; 43 44export default padFolderLayoutInfo; 45