diff --git a/entry/src/main/ets/common/CommonConstants.ets b/entry/src/main/ets/common/CommonConstants.ets index bea3c179cd2a9a42d425f08e2ad038be8a9e203f..652a8b4d640ecd5b0291d8107724d84a12ddbfba 100644 --- a/entry/src/main/ets/common/CommonConstants.ets +++ b/entry/src/main/ets/common/CommonConstants.ets @@ -21,43 +21,43 @@ export class CommonConstants { /** * font weight is 500. */ - static readonly FONT_WEIGHT_FIVE: number = 500; + public static readonly FONT_WEIGHT_FIVE: number = 500; /** * font weight is 500. */ - static readonly FONT_WEIGHT_FOUR: number = 400; + public static readonly FONT_WEIGHT_FOUR: number = 400; /** * Index page padding top size. */ - static readonly PADDING_TOP_INDEX: number = 64; + public static readonly PADDING_TOP_INDEX: number = 64; /** * Index page padding bottom size. */ - static readonly PADDING_BOTTOM_INDEX: number = 16; + public static readonly PADDING_BOTTOM_INDEX: number = 16; /** * Width the percentage of the 100. */ - static readonly FULL_WIDTH: string = '100%'; + public static readonly FULL_WIDTH: string = '100%'; /** * Height the percentage of the 100. */ - static readonly FULL_HEIGHT: string = '100%'; + public static readonly FULL_HEIGHT: string = '100%'; /** * Breakpoint sm. */ - static readonly BREAK_POINT_SM: string = 'sm'; + public static readonly BREAK_POINT_SM: string = 'sm'; /** * Breakpoint md. */ - static readonly BREAK_POINT_MD: string = 'md'; + public static readonly BREAK_POINT_MD: string = 'md'; /** * Breakpoint lg. */ - static readonly BREAK_POINT_LG: string = 'lg'; + public static readonly BREAK_POINT_LG: string = 'lg'; /** * Routes */ - static readonly ROUTES: Route[] = [ + public static readonly ROUTES: Route[] = [ { text: $r('app.string.first_title'), to: 'application/MailBox' },