* Copyright (c) Huawei Device Co., Ltd. 2024-2025. All rights reserved.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import DesktopApplicationColumns from './DesktopApplicationColumns';
* GridLayoutInfo Columns
*/
export default class GridLayoutInfoColumns extends DesktopApplicationColumns {
public static readonly CARD_ID: string = 'card_id';
public static readonly FOLDER_ID: string = 'folder_id';
public static readonly CONTAINER: string = 'container';
public static readonly FOLDER_NAME: string = 'folder_name';
public static readonly TYPE_ID: string = 'type_id';
public static readonly AREA: string = 'area';
public static readonly PAGE: string = 'page';
public static readonly COLUMN: string = 'column';
public static readonly ROW: string = 'row';
public static readonly PORTRAIT_PAGE: string = 'portrait_page';
public static readonly PORTRAIT_COLUMN: string = 'portrait_column';
public static readonly PORTRAIT_ROW: string = 'portrait_row';
public static readonly PORTRAIT_WIDTH: string = 'portrait_width';
public static readonly PORTRAIT_HEIGHT: string = 'portrait_height';
public static readonly LANDSCAPE_PAGE: string = 'landscape_page';
public static readonly LANDSCAPE_COLUMN: string = 'landscape_column';
public static readonly LANDSCAPE_ROW: string = 'landscape_row';
public static readonly LANDSCAPE_WIDTH: string = 'landscape_width';
public static readonly LANDSCAPE_HEIGHT: string = 'landscape_height';
public static readonly URI: string = 'uri';
public static readonly MODE: string = 'mode';
public static readonly FILE_INO: string = 'file_ino';
public static readonly FILE_TYPE: string = 'file_type';
public static readonly FILE_FOLDER_NAME: string = 'file_folder_name';
public static readonly THEME_ID: string = 'theme_id';
public static readonly THEME_FORM_ID: string = 'theme_form_id';
public static readonly TARGET_FORM_DATA: string = 'target_form_data';
public static readonly SCREEN_ID: string = 'screen_id';
}