@edm-sdui/sdui 1.0.1 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fesm2022/edm-sdui-sdui.mjs +2324 -0
- package/fesm2022/edm-sdui-sdui.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/lib/components/navigation-controls/navigation-controls.component.d.ts +11 -0
- package/lib/components/uicomponent/button/button.component.d.ts +16 -0
- package/lib/components/uicomponent/column/column.component.d.ts +10 -0
- package/lib/components/uicomponent/image/image.component.d.ts +14 -0
- package/lib/components/uicomponent/label/label.component.d.ts +14 -0
- package/lib/components/uicomponent/row/row.component.d.ts +10 -0
- package/lib/components/uicomponent/row-divisor/row-divisor.component.d.ts +10 -0
- package/lib/components/uicomponent/search-bar/search-bar.component.d.ts +16 -0
- package/lib/components/uicomponent/space/space.component.d.ts +10 -0
- package/lib/components/uicomponent/tag/tag.component.d.ts +16 -0
- package/lib/components/uicomponent/uicomponent.component.d.ts +16 -0
- package/lib/components/uicomponent/zstack/zstack.component.d.ts +10 -0
- package/lib/components/uilayout/centered-content-layout/centered-content-layout.component.d.ts +9 -0
- package/lib/components/uilayout/single-column-layout/single-column-layout.component.d.ts +9 -0
- package/lib/components/uilayout/uinavigation/uinavigation.component.d.ts +7 -0
- package/lib/components/uiscreen/uiscreen.component.d.ts +10 -0
- package/lib/core/services/ui-action.service.d.ts +10 -0
- package/lib/core/services/uiscreen.service.d.ts +23 -0
- package/lib/core/tokens/sdui-config.token.d.ts +2 -0
- package/lib/core/uicomposition/enums/uicomponent-type.d.ts +19 -0
- package/lib/core/uicomposition/enums/uiplatform-type.d.ts +4 -0
- package/lib/core/uicomposition/enums/uiscene.d.ts +3 -0
- package/lib/core/uicomposition/enums/uiscreen-identifier.d.ts +4 -0
- package/lib/core/uicomposition/mapping/component-mapping.d.ts +3 -0
- package/{src/lib/core/uicomposition/models/uicentered-content-layout.ts → lib/core/uicomposition/models/uicentered-content-layout.d.ts} +5 -6
- package/{src/lib/core/uicomposition/models/uicomponent.ts → lib/core/uicomposition/models/uicomponent.d.ts} +4 -5
- package/lib/core/uicomposition/models/uielement.d.ts +24 -0
- package/lib/core/uicomposition/models/uilayout.d.ts +3 -0
- package/{src/lib/core/uicomposition/models/uinavigation.ts → lib/core/uicomposition/models/uinavigation.d.ts} +2 -3
- package/{src/lib/core/uicomposition/models/uiscreen.ts → lib/core/uicomposition/models/uiscreen.d.ts} +5 -6
- package/{src/lib/core/uicomposition/models/uisingle-column-layout.ts → lib/core/uicomposition/models/uisingle-column-layout.d.ts} +4 -5
- package/{src/lib/core/uicomposition/models/uiview.ts → lib/core/uicomposition/models/uiview.d.ts} +7 -9
- package/lib/core/uitheme/enums/uiaction-type.d.ts +9 -0
- package/lib/core/uitheme/enums/uialignment-type.d.ts +5 -0
- package/lib/core/uitheme/enums/uiaspect-type.d.ts +4 -0
- package/lib/core/uitheme/enums/uiasset.d.ts +353 -0
- package/lib/core/uitheme/enums/uicolor.d.ts +129 -0
- package/lib/core/uitheme/enums/uicontent-type.d.ts +8 -0
- package/lib/core/uitheme/enums/uipadding-level.d.ts +10 -0
- package/lib/core/uitheme/enums/uipresentation-style.d.ts +5 -0
- package/lib/core/uitheme/enums/uiradius-level.d.ts +8 -0
- package/lib/core/uitheme/enums/uishadow-blur-radius.d.ts +3 -0
- package/lib/core/uitheme/enums/uishadow-offset.d.ts +3 -0
- package/lib/core/uitheme/enums/uisize.d.ts +11 -0
- package/lib/core/uitheme/enums/uispacing-level.d.ts +6 -0
- package/lib/core/uitheme/enums/uitext-style.d.ts +13 -0
- package/lib/core/uitheme/mapping/alignment-mapping.d.ts +2 -0
- package/lib/core/uitheme/mapping/asset-mapping.d.ts +2 -0
- package/lib/core/uitheme/mapping/color-mapping.d.ts +2 -0
- package/lib/core/uitheme/mapping/pad-mapping.d.ts +2 -0
- package/lib/core/uitheme/mapping/radius-mapping.d.ts +2 -0
- package/lib/core/uitheme/mapping/size-mapping.d.ts +3 -0
- package/lib/core/uitheme/mapping/space-mapping.d.ts +2 -0
- package/lib/core/uitheme/mapping/text-style-mapping.d.ts +2 -0
- package/lib/core/uitheme/models/uiaction.d.ts +9 -0
- package/{src/lib/core/uitheme/models/uialignment.ts → lib/core/uitheme/models/uialignment.d.ts} +1 -2
- package/{src/lib/core/uitheme/models/uibackground.ts → lib/core/uitheme/models/uibackground.d.ts} +1 -2
- package/lib/core/uitheme/models/uipadding.d.ts +7 -0
- package/lib/core/uitheme/models/uiradius.d.ts +7 -0
- package/{src/lib/core/uitheme/models/uishadow.ts → lib/core/uitheme/models/uishadow.d.ts} +5 -6
- package/{src/lib/core/uitheme/models/uispacing.ts → lib/core/uitheme/models/uispacing.d.ts} +1 -2
- package/lib/core/utils/url-parser.util.d.ts +2 -0
- package/lib/core/view-models/uiscreen.viewmodel.d.ts +39 -0
- package/lib/directives/uiview.directive.d.ts +28 -0
- package/lib/sdui-routing.module.d.ts +9 -0
- package/lib/sdui.component.d.ts +16 -0
- package/lib/sdui.module.d.ts +34 -0
- package/package.json +16 -14
- package/public-api.d.ts +4 -0
- package/ng-package.json +0 -9
- package/src/index.ts +0 -1
- package/src/lib/components/navigation-controls/navigation-controls.component.html +0 -9
- package/src/lib/components/navigation-controls/navigation-controls.component.scss +0 -35
- package/src/lib/components/navigation-controls/navigation-controls.component.ts +0 -27
- package/src/lib/components/uicomponent/button/button.component.html +0 -4
- package/src/lib/components/uicomponent/button/button.component.scss +0 -11
- package/src/lib/components/uicomponent/button/button.component.ts +0 -64
- package/src/lib/components/uicomponent/column/column.component.html +0 -7
- package/src/lib/components/uicomponent/column/column.component.scss +0 -9
- package/src/lib/components/uicomponent/column/column.component.ts +0 -16
- package/src/lib/components/uicomponent/image/image.component.html +0 -1
- package/src/lib/components/uicomponent/image/image.component.scss +0 -3
- package/src/lib/components/uicomponent/image/image.component.ts +0 -69
- package/src/lib/components/uicomponent/label/label.component.html +0 -3
- package/src/lib/components/uicomponent/label/label.component.scss +0 -3
- package/src/lib/components/uicomponent/label/label.component.ts +0 -66
- package/src/lib/components/uicomponent/row/row.component.html +0 -7
- package/src/lib/components/uicomponent/row/row.component.scss +0 -8
- package/src/lib/components/uicomponent/row/row.component.ts +0 -16
- package/src/lib/components/uicomponent/row-divisor/row-divisor.component.html +0 -5
- package/src/lib/components/uicomponent/row-divisor/row-divisor.component.scss +0 -8
- package/src/lib/components/uicomponent/row-divisor/row-divisor.component.ts +0 -16
- package/src/lib/components/uicomponent/search-bar/search-bar.component.html +0 -7
- package/src/lib/components/uicomponent/search-bar/search-bar.component.scss +0 -7
- package/src/lib/components/uicomponent/search-bar/search-bar.component.ts +0 -129
- package/src/lib/components/uicomponent/space/space.component.html +0 -1
- package/src/lib/components/uicomponent/space/space.component.scss +0 -10
- package/src/lib/components/uicomponent/space/space.component.ts +0 -16
- package/src/lib/components/uicomponent/tag/tag.component.html +0 -3
- package/src/lib/components/uicomponent/tag/tag.component.scss +0 -7
- package/src/lib/components/uicomponent/tag/tag.component.ts +0 -54
- package/src/lib/components/uicomponent/uicomponent.component.html +0 -5
- package/src/lib/components/uicomponent/uicomponent.component.scss +0 -3
- package/src/lib/components/uicomponent/uicomponent.component.ts +0 -53
- package/src/lib/components/uicomponent/zstack/zstack.component.html +0 -6
- package/src/lib/components/uicomponent/zstack/zstack.component.scss +0 -12
- package/src/lib/components/uicomponent/zstack/zstack.component.ts +0 -16
- package/src/lib/components/uilayout/centered-content-layout/centered-content-layout.component.html +0 -20
- package/src/lib/components/uilayout/centered-content-layout/centered-content-layout.component.scss +0 -36
- package/src/lib/components/uilayout/centered-content-layout/centered-content-layout.component.ts +0 -21
- package/src/lib/components/uilayout/single-column-layout/single-column-layout.component.html +0 -22
- package/src/lib/components/uilayout/single-column-layout/single-column-layout.component.scss +0 -37
- package/src/lib/components/uilayout/single-column-layout/single-column-layout.component.ts +0 -27
- package/src/lib/components/uilayout/uinavigation/uinavigation.component.html +0 -8
- package/src/lib/components/uilayout/uinavigation/uinavigation.component.scss +0 -4
- package/src/lib/components/uilayout/uinavigation/uinavigation.component.ts +0 -12
- package/src/lib/components/uiscreen/uiscreen.component.html +0 -29
- package/src/lib/components/uiscreen/uiscreen.component.scss +0 -12
- package/src/lib/components/uiscreen/uiscreen.component.ts +0 -15
- package/src/lib/core/interfaces/sdui-config.interface.ts +0 -3
- package/src/lib/core/services/navigation.service.ts +0 -25
- package/src/lib/core/services/sdui-config.service.ts +0 -19
- package/src/lib/core/services/ui-action.service.ts +0 -36
- package/src/lib/core/services/uiscreen.service.ts +0 -185
- package/src/lib/core/tokens/sdui-config.token.ts +0 -3
- package/src/lib/core/uicomposition/enums/uicomponent-type.ts +0 -32
- package/src/lib/core/uicomposition/enums/uiplatform-type.ts +0 -4
- package/src/lib/core/uicomposition/enums/uiscene.ts +0 -3
- package/src/lib/core/uicomposition/enums/uiscreen-identifier.ts +0 -4
- package/src/lib/core/uicomposition/mapping/component-mapping.ts +0 -90
- package/src/lib/core/uicomposition/models/uielement.ts +0 -25
- package/src/lib/core/uicomposition/models/uilayout.ts +0 -4
- package/src/lib/core/uitheme/enums/uiaction-type.ts +0 -14
- package/src/lib/core/uitheme/enums/uialignment-type.ts +0 -5
- package/src/lib/core/uitheme/enums/uiaspect-type.ts +0 -4
- package/src/lib/core/uitheme/enums/uiasset.ts +0 -361
- package/src/lib/core/uitheme/enums/uicolor.ts +0 -129
- package/src/lib/core/uitheme/enums/uicontent-type.ts +0 -8
- package/src/lib/core/uitheme/enums/uipadding-level.ts +0 -10
- package/src/lib/core/uitheme/enums/uipresentation-style.ts +0 -5
- package/src/lib/core/uitheme/enums/uiradius-level.ts +0 -8
- package/src/lib/core/uitheme/enums/uishadow-blur-radius.ts +0 -3
- package/src/lib/core/uitheme/enums/uishadow-offset.ts +0 -3
- package/src/lib/core/uitheme/enums/uisize.ts +0 -12
- package/src/lib/core/uitheme/enums/uispacing-level.ts +0 -6
- package/src/lib/core/uitheme/enums/uitext-style.ts +0 -13
- package/src/lib/core/uitheme/mapping/alignment-mapping.ts +0 -7
- package/src/lib/core/uitheme/mapping/asset-mapping.ts +0 -363
- package/src/lib/core/uitheme/mapping/color-mapping.ts +0 -131
- package/src/lib/core/uitheme/mapping/pad-mapping.ts +0 -12
- package/src/lib/core/uitheme/mapping/radius-mapping.ts +0 -10
- package/src/lib/core/uitheme/mapping/size-mapping.ts +0 -25
- package/src/lib/core/uitheme/mapping/space-mapping.ts +0 -8
- package/src/lib/core/uitheme/mapping/text-style-mapping.ts +0 -15
- package/src/lib/core/uitheme/models/uiaction.ts +0 -10
- package/src/lib/core/uitheme/models/uipadding.ts +0 -8
- package/src/lib/core/uitheme/models/uiradius.ts +0 -8
- package/src/lib/core/uitheme/models/uiview.ts +0 -0
- package/src/lib/core/utils/url-parser.util.ts +0 -24
- package/src/lib/core/view-models/uiscreen.viewmodel.ts +0 -115
- package/src/lib/directives/uiview.directive.ts +0 -207
- package/src/lib/sdui-routing.module.ts +0 -22
- package/src/lib/sdui.component.html +0 -3
- package/src/lib/sdui.component.scss +0 -11
- package/src/lib/sdui.component.ts +0 -65
- package/src/lib/sdui.module.ts +0 -84
- package/src/public-api.ts +0 -16
- package/tsconfig.lib.json +0 -16
- package/tsconfig.spec.json +0 -12
|
@@ -1,361 +0,0 @@
|
|
|
1
|
-
export enum UIAsset {
|
|
2
|
-
BG_ASSINATURAS = 'bg_assinaturas',
|
|
3
|
-
BG_CHALLENGE_ACTIVITY_FINAL = 'bg_challenge_activity_final',
|
|
4
|
-
BG_LIGHT = 'bg_light',
|
|
5
|
-
BG_LOGIN = 'bg_login',
|
|
6
|
-
BG_POST = 'bg_post',
|
|
7
|
-
BG_QUIZ_FINAL = 'bg_quiz_final',
|
|
8
|
-
BG_RATING_PROGRAM = 'bg_rating_program',
|
|
9
|
-
BG_SPLASH = 'bg_splash',
|
|
10
|
-
BG_STORY = 'bg_story',
|
|
11
|
-
BG_SURVEY = 'bg_survey',
|
|
12
|
-
|
|
13
|
-
BT_ABOUT_ACTIONS_OFF = 'bt_about_actions_off',
|
|
14
|
-
BT_ANONYMOUS_COMMENT_OFF = 'bt_anonymous_comment_off',
|
|
15
|
-
BT_ANONYMOUS_COMMENT_ON = 'bt_anonymous_comment_on',
|
|
16
|
-
BT_BACK = 'bt_back',
|
|
17
|
-
BT_BACK_LIVE = 'bt_back_live',
|
|
18
|
-
BT_BACK_NEW = 'bt_back_new',
|
|
19
|
-
BT_BACK_PLAYER = 'bt_back_player',
|
|
20
|
-
BT_BACK_STORY = 'bt_back_story',
|
|
21
|
-
BT_CANCEL_LIST = 'bt_cancel_list',
|
|
22
|
-
BT_CAPTURE_PHOTO = 'bt_capture_photo',
|
|
23
|
-
BT_CAPTURE_VIDEO = 'bt_capture_video',
|
|
24
|
-
BT_CAPTURE_VIDEO_LINE = 'bt_capture_video_line',
|
|
25
|
-
BT_CERTIFICATION_ACTIONS_OFF = 'bt_certification_actions_off',
|
|
26
|
-
BT_CERTIFICATION_ACTIONS_ON = 'bt_certification_actions_on',
|
|
27
|
-
BT_CHECK_ACTION_OFF = 'bt_check_action_off',
|
|
28
|
-
BT_CHECK_ACTION_ON = 'bt_check_action_on',
|
|
29
|
-
BT_CHECK_FIX_OFF = 'bt_check_fix_off',
|
|
30
|
-
BT_CHECK_OFF = 'bt_check_off',
|
|
31
|
-
BT_CHECK_ON = 'bt_check_on',
|
|
32
|
-
BT_CHECK_TERMS_OFF = 'bt_check_terms_off',
|
|
33
|
-
BT_CHECK_TERMS_ON = 'bt_check_terms_on',
|
|
34
|
-
BT_CLIPS_TAB = 'bt_clips_tab',
|
|
35
|
-
BT_CLIPS_TAB_ON = 'bt_clips_tab_on',
|
|
36
|
-
BT_CLOSE = 'bt_close',
|
|
37
|
-
BT_CLOSE_COMMENT = 'bt_close_comment',
|
|
38
|
-
BT_CLOSE_FULL_IMAGE = 'bt_close_full_image',
|
|
39
|
-
BT_CLOSE_LIST = 'bt_close_list',
|
|
40
|
-
BT_CLOSE_LIVE = 'bt_close_live',
|
|
41
|
-
BT_CLOSE_RATING = 'bt_close_rating',
|
|
42
|
-
BT_CLOSE_SCREEN_PLAYER = 'bt_close_screen_player',
|
|
43
|
-
BT_CLOSE_STORY = 'bt_close_story',
|
|
44
|
-
BT_CLOSE_TAGS = 'bt_close_tags',
|
|
45
|
-
BT_COMMENT_OFF = 'bt_comment_off',
|
|
46
|
-
BT_COMMENT_ON = 'bt_comment_on',
|
|
47
|
-
BT_COMUNIDADE_TAB = 'bt_comunidade_tab',
|
|
48
|
-
BT_COMUNIDADE_TAB_ON = 'bt_comunidade_tab_on',
|
|
49
|
-
BT_CONFIG_NAVBAR = 'bt_config_navbar',
|
|
50
|
-
BT_CONFIG_PLAYER = 'bt_config_player',
|
|
51
|
-
BT_DELETE_STORY = 'bt_delete_story',
|
|
52
|
-
BT_DISABLED = 'bt_disabled',
|
|
53
|
-
BT_DOWNLOAD_ACTION_OFF = 'bt_download_action_off',
|
|
54
|
-
BT_DOWNLOAD_LIST = 'bt_download_list',
|
|
55
|
-
BT_DOWNLOAD_NAV = 'bt_download_nav',
|
|
56
|
-
BT_DOWNLOAD_TAB = 'bt_download_tab',
|
|
57
|
-
BT_DOWNLOAD_TAB_ON = 'bt_download_tab_on',
|
|
58
|
-
BT_EVALUATION_ACTION = 'bt_evaluation_action',
|
|
59
|
-
BT_EVALUATION_ACTION_OFF = 'bt_evaluation_action_off',
|
|
60
|
-
BT_EVALUATION_ACTION_ON = 'bt_evaluation_action_on',
|
|
61
|
-
BT_FAV_ACTIONS_OFF = 'bt_fav_actions_off',
|
|
62
|
-
BT_FAV_ACTIONS_ON = 'bt_fav_actions_on',
|
|
63
|
-
BT_FAV_OFF = 'bt_fav_off',
|
|
64
|
-
BT_FAV_ON = 'bt_fav_on',
|
|
65
|
-
BT_FILE = 'bt_file',
|
|
66
|
-
BT_FULL_SCREEN_PLAYER = 'bt_full_screen_player',
|
|
67
|
-
BT_GALLERY = 'bt_gallery',
|
|
68
|
-
BT_INFO = 'bt_info',
|
|
69
|
-
BT_LIKE_COMMENT = 'bt_like_comment',
|
|
70
|
-
BT_LIKE_COMMENT_ON = 'bt_like_comment_on',
|
|
71
|
-
BT_LIKE_LIVE = 'bt_like_live',
|
|
72
|
-
BT_LIKE_LIVE_ON = 'bt_like_live_on',
|
|
73
|
-
BT_LIKE_OFF = 'bt_like_off',
|
|
74
|
-
BT_LIKE_ON = 'bt_like_on',
|
|
75
|
-
BT_LINK_GENERIC = 'bt_link_generic',
|
|
76
|
-
BT_LOCK = 'bt_lock',
|
|
77
|
-
BT_LOGOUT = 'bt_logout',
|
|
78
|
-
BT_MATERIAL = 'bt_material',
|
|
79
|
-
BT_MATERIALS_ACTIONS_OFF = 'bt_materials_actions_off',
|
|
80
|
-
BT_MENU = 'bt_menu',
|
|
81
|
-
BT_MY_LIST_ACTION_OFF = 'bt_my_list_action_off',
|
|
82
|
-
BT_MY_LIST_ACTION_ON = 'bt_my_list_action_on',
|
|
83
|
-
BT_MY_LIST_NAV_OFF = 'bt_my_list_nav_off',
|
|
84
|
-
BT_MY_LIST_NAV_ON = 'bt_my_list_nav_on',
|
|
85
|
-
BT_NEW_STORY = 'bt_new_story',
|
|
86
|
-
BT_NEXT = 'bt_next',
|
|
87
|
-
BT_NEXT_ACTIONS = 'bt_next_actions',
|
|
88
|
-
BT_NEXT_CHALLENGE = 'bt_next_challenge',
|
|
89
|
-
BT_NEXT_CLIPS = 'bt_next_clips',
|
|
90
|
-
BT_NEXT_MAIN = 'bt_next_main',
|
|
91
|
-
BT_NOTE_ACTIONS_OFF = 'bt_note_actions_off',
|
|
92
|
-
BT_NOTE_ACTIONS_ON = 'bt_note_actions_on',
|
|
93
|
-
BT_NOTIFICATION = 'bt_notification',
|
|
94
|
-
BT_NOTIFICATION_ON = 'bt_notification_on',
|
|
95
|
-
BT_NOTIFICATIONS_TAB = 'bt_notifications_tab',
|
|
96
|
-
BT_OPEN = 'bt_open',
|
|
97
|
-
BT_OPEN_LIST = 'bt_open_list',
|
|
98
|
-
BT_OPEN_LIST_AUDIO = 'bt_open_list_audio',
|
|
99
|
-
BT_OPORTUNIDADES_TAB = 'bt_oportunidades_tab',
|
|
100
|
-
BT_OPORTUNIDADES_TAB_ON = 'bt_oportunidades_tab_on',
|
|
101
|
-
BT_OPTIONS = 'bt_options',
|
|
102
|
-
BT_PAUSE_VIEW_AUDIO = 'bt_pause_view_audio',
|
|
103
|
-
BT_PAUSE_VIEW_CLIPS = 'bt_pause_view_clips',
|
|
104
|
-
BT_PERFIL = 'bt_perfil',
|
|
105
|
-
BT_PERFIL_TAB = 'bt_perfil_tab',
|
|
106
|
-
BT_PHOTO_COMMENT = 'bt_photo_comment',
|
|
107
|
-
BT_PIMP_PLAYER = 'bt_pimp_player',
|
|
108
|
-
BT_PLAY_VIEW_AUDIO = 'bt_play_view_audio',
|
|
109
|
-
BT_PLAY_VIEW_CLIPS = 'bt_play_view_clips',
|
|
110
|
-
BT_POST = 'bt_post',
|
|
111
|
-
BT_RATING_OFF = 'bt_rating_off',
|
|
112
|
-
BT_RATING_ON = 'bt_rating_on',
|
|
113
|
-
BT_RESTART_ACTIONS_OFF = 'bt_restart_actions_off',
|
|
114
|
-
BT_SEARCH = 'bt_search',
|
|
115
|
-
BT_SEEK = 'bt_seek',
|
|
116
|
-
BT_SELFIE = 'bt_selfie',
|
|
117
|
-
BT_SEND_OFF = 'bt_send_off',
|
|
118
|
-
BT_SEND_ON = 'bt_send_on',
|
|
119
|
-
BT_SHARE_LIVE = 'bt_share_live',
|
|
120
|
-
BT_SHARE_POST_OFF = 'bt_share_post_off',
|
|
121
|
-
BT_SPEED_PLAYER = 'bt_speed_player',
|
|
122
|
-
BT_TEXT_STORIES = 'bt_text_stories',
|
|
123
|
-
BT_TIME24_STORY = 'bt_time24_story',
|
|
124
|
-
BT_TIME48_STORY = 'bt_time48_story',
|
|
125
|
-
BT_TIME72_STORY = 'bt_time72_story',
|
|
126
|
-
BT_TRASH = 'bt_trash',
|
|
127
|
-
BT_TV = 'bt_tv',
|
|
128
|
-
BT_TV_ON = 'bt_tv_on',
|
|
129
|
-
BT_TV_ON_LIST = 'bt_tv_on_list',
|
|
130
|
-
BT_TV_ON_MAIN = 'bt_tv_on_main',
|
|
131
|
-
BT_VIDEO_HELP_PLAYER = 'bt_video_help_player',
|
|
132
|
-
|
|
133
|
-
IC_ACTIVITE = 'ic_activite',
|
|
134
|
-
IC_ACTIVITY = 'ic_activity',
|
|
135
|
-
IC_ACTIVITY_MY_APP = 'ic_activity_my_app',
|
|
136
|
-
IC_AI_STAR = 'ic_ai_star',
|
|
137
|
-
IC_AI_TAG = 'ic_ai_tag',
|
|
138
|
-
IC_ALERT_NEW_POST = 'ic_alert_new_post',
|
|
139
|
-
IC_ALERT_NOTIFICATION = 'ic_alert_notification',
|
|
140
|
-
IC_ANONYMOUS_POST = 'ic_anonymous_post',
|
|
141
|
-
IC_ATTENTION = 'ic_attention',
|
|
142
|
-
IC_ATTENTION_RULES = 'ic_attention_rules',
|
|
143
|
-
IC_AUDIO_CLIPS = 'ic_audio_clips',
|
|
144
|
-
IC_AUDIO_LIST = 'ic_audio_list',
|
|
145
|
-
IC_AUDIO_LIST_DISABLED = 'ic_audio_list_disabled',
|
|
146
|
-
IC_AVATAR = 'ic_avatar',
|
|
147
|
-
IC_AVATAR_COMMENT = 'ic_avatar_comment',
|
|
148
|
-
IC_AVATAR_LIVE = 'ic_avatar_live',
|
|
149
|
-
IC_AVATAR_RANKING_LIST = 'ic_avatar_ranking_list',
|
|
150
|
-
IC_AVATAR_RANKING_ONE = 'ic_avatar_ranking_one',
|
|
151
|
-
IC_AVATAR_RANKING_TWO = 'ic_avatar_ranking_two',
|
|
152
|
-
IC_AVATAR_REGISTER = 'ic_avatar_register',
|
|
153
|
-
IC_CERTIFICATION = 'ic_certification',
|
|
154
|
-
IC_CERTIFICATION_MAIN = 'ic_certification_main',
|
|
155
|
-
IC_CERTIFICATION_MY_APP = 'ic_certification_my_app',
|
|
156
|
-
IC_CHALLENGE_PTS = 'ic_challenge_pts',
|
|
157
|
-
IC_CHALLENGE_PTS_DETAIL = 'ic_challenge_pts_detail',
|
|
158
|
-
IC_CHALLENGE_PTS_LIST = 'ic_challenge_pts_list',
|
|
159
|
-
IC_CHALLENGE_PTS_LIST_DISABLED = 'ic_challenge_pts_list_disabled',
|
|
160
|
-
IC_CHALLENGE_RANKING = 'ic_challenge_ranking',
|
|
161
|
-
IC_CHECK = 'ic_check',
|
|
162
|
-
IC_CHROMECAST = 'ic_chromecast',
|
|
163
|
-
IC_CLIP_EMPTY = 'ic_clip_empty',
|
|
164
|
-
IC_COMMENT_SEARCH_LIST = 'ic_comment_search_list',
|
|
165
|
-
IC_CONTACT = 'ic_contact',
|
|
166
|
-
IC_DADOS_CHECK = 'ic_dados_check',
|
|
167
|
-
IC_DELETE_ACCOUNT = 'ic_delete_account',
|
|
168
|
-
IC_DISABLED_LESSON = 'ic_disabled_lesson',
|
|
169
|
-
IC_DOWNLOAD_EMPTY = 'ic_download_empty',
|
|
170
|
-
IC_DOWNLOAD_MY_APP = 'ic_download_my_app',
|
|
171
|
-
IC_DOWNLOADS_LIST = 'ic_downloads_list',
|
|
172
|
-
IC_EMAIL = 'ic_email',
|
|
173
|
-
IC_EMPTY_CLASS = 'ic_empty_class',
|
|
174
|
-
IC_ERROR = 'ic_error',
|
|
175
|
-
IC_ERROR_CHALLENGE = 'ic_error_challenge',
|
|
176
|
-
IC_FILE = 'ic_file',
|
|
177
|
-
IC_FILE_CLIPS = 'ic_file_clips',
|
|
178
|
-
IC_FILE_DISABLED = 'ic_file_disabled',
|
|
179
|
-
IC_FIX_POST = 'ic_fix_post',
|
|
180
|
-
IC_FLAG_END = 'ic_flag_end',
|
|
181
|
-
IC_FLAG_START = 'ic_flag_start',
|
|
182
|
-
IC_FULL_IMAGE = 'ic_full_image',
|
|
183
|
-
IC_LAST_SEARCH = 'ic_last_search',
|
|
184
|
-
IC_LEVEL_ONE = 'ic_level_one',
|
|
185
|
-
IC_LEVEL_ONE_PROFILE = 'ic_level_one_profile',
|
|
186
|
-
IC_LEVEL_THREE = 'ic_level_three',
|
|
187
|
-
IC_LEVEL_TWO = 'ic_level_two',
|
|
188
|
-
IC_LIKE_SEARCH_LIST = 'ic_like_search_list',
|
|
189
|
-
IC_LINK_CLIPS = 'ic_link_clips',
|
|
190
|
-
IC_LINK_GENERIC = 'ic_link_generic',
|
|
191
|
-
IC_LINK_LIST = 'ic_link_list',
|
|
192
|
-
IC_LINK_LIST_DISABLED = 'ic_link_list_disabled',
|
|
193
|
-
IC_LIVE_WAITING = 'ic_live_waiting',
|
|
194
|
-
IC_LOCK = 'ic_lock',
|
|
195
|
-
IC_LOCK_CHECK = 'ic_lock_check',
|
|
196
|
-
IC_LOCK_LESSON = 'ic_lock_lesson',
|
|
197
|
-
IC_MY_LIST = 'ic_my_list',
|
|
198
|
-
IC_MY_LIST_EMPTY = 'ic_my_list_empty',
|
|
199
|
-
IC_MY_LIST_MY_APP = 'ic_my_list_my_app',
|
|
200
|
-
IC_MY_SHOP = 'ic_my_shop',
|
|
201
|
-
IC_MY_SHOP_MY_APP = 'ic_my_shop_my_app',
|
|
202
|
-
IC_MY_VOTE = 'ic_my_vote',
|
|
203
|
-
IC_NOT_FOUND = 'ic_not_found',
|
|
204
|
-
IC_NOTE = 'ic_note',
|
|
205
|
-
IC_NOTE_MY_APP = 'ic_note_my_app',
|
|
206
|
-
IC_NOTIFICATION_EMPTY = 'ic_notification_empty',
|
|
207
|
-
IC_NOTIFICATION_MY_APP = 'ic_notification_my_app',
|
|
208
|
-
IC_NOTIFICATION_MY_APP_ON = 'ic_notification_my_app_on',
|
|
209
|
-
IC_NOTIFICATION_OFF = 'ic_notification_off',
|
|
210
|
-
IC_NOTIFICATION_ON = 'ic_notification_on',
|
|
211
|
-
IC_PAUSE_VIEW = 'ic_pause_view',
|
|
212
|
-
IC_PAUSE_VIEW_AUDIO = 'ic_pause_view_audio',
|
|
213
|
-
IC_PAUSE_VIEW_SOUND = 'ic_pause_view_sound',
|
|
214
|
-
IC_PERGUNTAS = 'ic_perguntas',
|
|
215
|
-
IC_PIN_CARD = 'ic_pin_card',
|
|
216
|
-
IC_PLAY_CLIPS = 'ic_play_clips',
|
|
217
|
-
IC_PLAY_LIST = 'ic_play_list',
|
|
218
|
-
IC_PLAY_LIST_DISABLED = 'ic_play_list_disabled',
|
|
219
|
-
IC_PLAY_VIEW = 'ic_play_view',
|
|
220
|
-
IC_PLAY_VIEW_AUDIO = 'ic_play_view_audio',
|
|
221
|
-
IC_PLAY_VIEW_SOUND = 'ic_play_view_sound',
|
|
222
|
-
IC_POLITICS = 'ic_politics',
|
|
223
|
-
IC_POST = 'ic_post',
|
|
224
|
-
IC_POST_AUDIO = 'ic_post_audio',
|
|
225
|
-
IC_POST_EMPTY = 'ic_post_empty',
|
|
226
|
-
IC_POST_IMAGE = 'ic_post_image',
|
|
227
|
-
IC_POST_TEXT = 'ic_post_text',
|
|
228
|
-
IC_POST_VIDEO = 'ic_post_video',
|
|
229
|
-
IC_POST_VIDEO_FULL = 'ic_post_video_full',
|
|
230
|
-
IC_PTS = 'ic_pts',
|
|
231
|
-
IC_QUIZ_CLIPS = 'ic_quiz_clips',
|
|
232
|
-
IC_QUIZ_FINAL = 'ic_quiz_final',
|
|
233
|
-
IC_QUIZ_LIST = 'ic_quiz_list',
|
|
234
|
-
IC_QUIZ_LIST_DISABLED = 'ic_quiz_list_disabled',
|
|
235
|
-
IC_RANKING_LOCK = 'ic_ranking_lock',
|
|
236
|
-
IC_RANKING_N1 = 'ic_ranking_n1',
|
|
237
|
-
IC_RANKING_N2 = 'ic_ranking_n2',
|
|
238
|
-
IC_RANKING_N3 = 'ic_ranking_n3',
|
|
239
|
-
IC_RATING_LIST = 'ic_rating_list',
|
|
240
|
-
IC_RATING_LIST_DISABLED = 'ic_rating_list_disabled',
|
|
241
|
-
IC_RATING_PROGRAM = 'ic_rating_program',
|
|
242
|
-
IC_SEARCH = 'ic_search',
|
|
243
|
-
IC_SEARCH_EMPTY = 'ic_search_empty',
|
|
244
|
-
IC_SHARE_SEARCH_LIST = 'ic_share_search_list',
|
|
245
|
-
IC_SHOP = 'ic_shop',
|
|
246
|
-
IC_SHOP_MY_APP = 'ic_shop_my_app',
|
|
247
|
-
IC_SMARTTV = 'ic_smarttv',
|
|
248
|
-
IC_SPEED = 'ic_speed',
|
|
249
|
-
IC_STATUS_CHALLENGE_WAIT = 'ic_status_challenge_wait',
|
|
250
|
-
IC_STORY_CHECK = 'ic_story_check',
|
|
251
|
-
IC_SUBSCRIBE = 'ic_subscribe',
|
|
252
|
-
IC_SUBSCRIBE_MY_APP = 'ic_subscribe_my_app',
|
|
253
|
-
IC_TAG_CHALLENGE = 'ic_tag_challenge',
|
|
254
|
-
IC_TAG_RANKING = 'ic_tag_ranking',
|
|
255
|
-
IC_TAG_RANKING_MAIN = 'ic_tag_ranking_main',
|
|
256
|
-
IC_TAG_VIP = 'ic_tag_vip',
|
|
257
|
-
IC_TERMS = 'ic_terms',
|
|
258
|
-
IC_TEXT_CLIPS = 'ic_text_clips',
|
|
259
|
-
IC_TEXT_LIST = 'ic_text_list',
|
|
260
|
-
IC_TEXT_LIST_DISABLED = 'ic_text_list_disabled',
|
|
261
|
-
IC_TV = 'ic_tv',
|
|
262
|
-
IC_TV_MIRROR = 'ic_tv_mirror',
|
|
263
|
-
IC_TYPE_FILE = 'ic_type_file',
|
|
264
|
-
IC_TYPE_TEXT = 'ic_type_text',
|
|
265
|
-
IC_VERIFIED = 'ic_verified',
|
|
266
|
-
IC_VERIFIED_COMMENT = 'ic_verified_comment',
|
|
267
|
-
IC_VIEW = 'ic_view',
|
|
268
|
-
IC_VIEW_LIVE = 'ic_view_live',
|
|
269
|
-
IC_VIEW_STORY = 'ic_view_story',
|
|
270
|
-
IC_VOTE = 'ic_vote',
|
|
271
|
-
|
|
272
|
-
IMG = 'img',
|
|
273
|
-
IMG_AVATAR_STORY = 'img_avatar_story',
|
|
274
|
-
IMG_AVATAR_STORY_VIEW = 'img_avatar_story_view',
|
|
275
|
-
IMG_BG_ASSINATURAS = 'img_bg_assinaturas',
|
|
276
|
-
IMG_BG_PAINEL = 'img_bg_painel',
|
|
277
|
-
IMG_BT_APPLESTORE = 'img_bt_applestore',
|
|
278
|
-
IMG_BT_GOOGLEPLAY = 'img_bt_googleplay',
|
|
279
|
-
IMG_CAPA_VIDEO = 'img_capa_video',
|
|
280
|
-
IMG_CHECKOUT_DESKTOP = 'img_checkout_desktop',
|
|
281
|
-
IMG_CHECKOUT_MOBILE = 'img_checkout_mobile',
|
|
282
|
-
IMG_CHECKOUT_RIGHT = 'img_checkout_right',
|
|
283
|
-
IMG_CLASS_FILE = 'img_class_file',
|
|
284
|
-
IMG_COMUNIDADE = 'img_comunidade',
|
|
285
|
-
IMG_FAV = 'img_fav',
|
|
286
|
-
IMG_LOGO = 'img_logo',
|
|
287
|
-
IMG_LOGO_EMAIL = 'img_logo_email',
|
|
288
|
-
IMG_LOGO_HORIZ = 'img_logo_horiz',
|
|
289
|
-
IMG_LOGO_LOGIN = 'img_logo_login',
|
|
290
|
-
IMG_LOGO_NAV = 'img_logo_nav',
|
|
291
|
-
IMG_LOGO_NORMAL = 'img_logo_normal',
|
|
292
|
-
IMG_LOGO_PAYMENT = 'img_logo_payment',
|
|
293
|
-
IMG_MASK_AUDIO_BLUR = 'img_mask_audio_blur',
|
|
294
|
-
IMG_MASK_BANNER_BLUR = 'img_mask_banner_blur',
|
|
295
|
-
IMG_MASK_BANNER_MAIN = 'img_mask_banner_main',
|
|
296
|
-
IMG_MASK_CAST_LIST = 'img_mask_cast_list',
|
|
297
|
-
IMG_MASK_CATEGORY_HIGHLIGHT = 'img_mask_category_highlight',
|
|
298
|
-
IMG_MASK_CHALLENGE_ACTIVITY = 'img_mask_challenge_activity',
|
|
299
|
-
IMG_MASK_FILE = 'img_mask_file',
|
|
300
|
-
IMG_MASK_LIVE = 'img_mask_live',
|
|
301
|
-
IMG_MASK_LIVE_TOP = 'img_mask_live_top',
|
|
302
|
-
IMG_MASK_LIVE_WAITING = 'img_mask_live_waiting',
|
|
303
|
-
IMG_MASK_MAIN_BANNERS = 'img_mask_main_banners',
|
|
304
|
-
IMG_MASK_PROFILE = 'img_mask_profile',
|
|
305
|
-
IMG_MASK_PROGRAM = 'img_mask_program',
|
|
306
|
-
IMG_MASK_RATING = 'img_mask_rating',
|
|
307
|
-
IMG_MASK_SOUND_BLUR = 'img_mask_sound_blur',
|
|
308
|
-
IMG_PLACEHOLDER_CAST = 'img_placeholder_cast',
|
|
309
|
-
IMG_PLACEHOLDER_FILE = 'img_placeholder_file',
|
|
310
|
-
IMG_PLACEHOLDER_LEVEL = 'img_placeholder_level',
|
|
311
|
-
IMG_PLACEHOLDER_MAIN = 'img_placeholder_main',
|
|
312
|
-
IMG_PLACEHOLDER_MEUS_VIDEOS = 'img_placeholder_meus_videos',
|
|
313
|
-
IMG_PLACEHOLDER_NOTIFICATION = 'img_placeholder_notification',
|
|
314
|
-
IMG_PLACEHOLDER_POST_IMAGEM = 'img_placeholder_post_imagem',
|
|
315
|
-
IMG_PLACEHOLDER_POST_VIP = 'img_placeholder_post_vip',
|
|
316
|
-
IMG_PLACEHOLDER_PROGRAM = 'img_placeholder_program',
|
|
317
|
-
IMG_PLACEHOLDER_RANKING = 'img_placeholder_ranking',
|
|
318
|
-
IMG_PLACEHOLDER_STORY = 'img_placeholder_story',
|
|
319
|
-
IMG_PLACEHOLDER_TEXT = 'img_placeholder_text',
|
|
320
|
-
IMG_PLACEHOLDER_VIDEO_MAIN = 'img_placeholder_video_main',
|
|
321
|
-
IMG_SHARE_WHATSAPP = 'img_share_whatsapp',
|
|
322
|
-
IMG_SYMBOL80 = 'img_symbol80',
|
|
323
|
-
IMG_THUMB_HORIZ = 'img_thumb_horiz',
|
|
324
|
-
IMG_THUMB_PROG_VERT = 'img_thumb_prog_vert',
|
|
325
|
-
IMG_THUMB_PROG_VERT1 = 'img_thumb_prog_vert1',
|
|
326
|
-
IMG_THUMB_PROG_VERT2 = 'img_thumb_prog_vert2',
|
|
327
|
-
IMG_THUMB_PROG_VERT3 = 'img_thumb_prog_vert3',
|
|
328
|
-
|
|
329
|
-
MASK_DETAIL = 'mask_detail',
|
|
330
|
-
MASK_DETAIL_CERTIFICATION = 'mask_detail_certification',
|
|
331
|
-
MASK_DETAIL_CHALLENGE = 'mask_detail_challenge',
|
|
332
|
-
MASK_DETAIL_POST_VIP = 'mask_detail_post_vip',
|
|
333
|
-
MASK_DETAIL_RANKING = 'mask_detail_ranking',
|
|
334
|
-
MASK_IMG_CARROSEL = 'mask_img_carrosel',
|
|
335
|
-
MASK_IMG_MAIN = 'mask_img_main',
|
|
336
|
-
MASK_IMG_TOP_STORY = 'mask_img_top_story',
|
|
337
|
-
MASK_NEXT_CLASS = 'mask_next_class',
|
|
338
|
-
|
|
339
|
-
REPEAT_BACK = 'repeat_back',
|
|
340
|
-
REPEAT_BACK_SOUND = 'repeat_back_sound',
|
|
341
|
-
REPEAT_FRONT = 'repeat_front',
|
|
342
|
-
REPEAT_FRONT_SOUND = 'repeat_front_sound',
|
|
343
|
-
|
|
344
|
-
SPACE_GRAY = 'space_gray',
|
|
345
|
-
|
|
346
|
-
VIDEO_REPEAT_BACK = 'video_repeat_back',
|
|
347
|
-
VIDEO_REPEAT_FRONT = 'video_repeat_front',
|
|
348
|
-
|
|
349
|
-
WAY_LEFT_END_OFF = 'way_left_end_off',
|
|
350
|
-
WAY_LEFT_END_ON = 'way_left_end_on',
|
|
351
|
-
WAY_ONE_OFF = 'way_one_off',
|
|
352
|
-
WAY_ONE_ON = 'way_one_on',
|
|
353
|
-
WAY_RIGHT_END_OFF = 'way_right_end_off',
|
|
354
|
-
WAY_RIGHT_END_ON = 'way_right_end_on',
|
|
355
|
-
WAY_START_OFF = 'way_start_off',
|
|
356
|
-
WAY_START_ON = 'way_start_on',
|
|
357
|
-
WAY_TASK_OFF = 'way_task_off',
|
|
358
|
-
WAY_TASK_ON = 'way_task_on',
|
|
359
|
-
WAY_TWO_OFF = 'way_two_off',
|
|
360
|
-
WAY_TWO_ON = 'way_two_on',
|
|
361
|
-
}
|
|
@@ -1,129 +0,0 @@
|
|
|
1
|
-
export enum UIColor {
|
|
2
|
-
ALERT = 'alert',
|
|
3
|
-
BG_TAG = 'bg_tag',
|
|
4
|
-
ACTINDCOLOR = 'actindcolor',
|
|
5
|
-
TEXT_WEB = 'text_web',
|
|
6
|
-
TEXT_RANKING_HIGHLIGHT = 'text_ranking_highlight',
|
|
7
|
-
RANKING_HIGHLIGHT = 'ranking_highlight',
|
|
8
|
-
TEXT_RANKING_MAIN = 'text_ranking_main',
|
|
9
|
-
TEXT_RANKING_AUX = 'text_ranking_aux',
|
|
10
|
-
BT_SELECT_ACTIVITY = 'bt_select_activity',
|
|
11
|
-
FONT_BT = 'font_bt',
|
|
12
|
-
FONT_BT_PRICE = 'font_bt_price',
|
|
13
|
-
FONT_TAG = 'font_tag',
|
|
14
|
-
FONT_LIVE = 'font_live',
|
|
15
|
-
QUIZ_SELECT = 'quiz_select',
|
|
16
|
-
MAIN1 = 'main1',
|
|
17
|
-
AUX = 'aux',
|
|
18
|
-
VOTE_OFF = 'vote_off',
|
|
19
|
-
BG_VOTE = 'bg_vote',
|
|
20
|
-
VOTE_ON = 'vote_on',
|
|
21
|
-
STORY_OFF = 'story_off',
|
|
22
|
-
STORY_ON = 'story_on',
|
|
23
|
-
FONT_ACTIONS = 'font_actions',
|
|
24
|
-
FONT_SEARCH_OFF = 'font_search_off',
|
|
25
|
-
FONT_SEARCH_ON = 'font_search_on',
|
|
26
|
-
SLIDER_OFF = 'slider_off',
|
|
27
|
-
SLIDER_ON = 'slider_on',
|
|
28
|
-
PROGRESS_VIEW_OFF = 'progress_view_off',
|
|
29
|
-
PROGRESS_VIEW_RANKING_OFF = 'progress_view_ranking_off',
|
|
30
|
-
PROGRESS_STORY_OFF = 'progress_story_off',
|
|
31
|
-
PROGRESS_STORY_ON = 'progress_story_on',
|
|
32
|
-
PROGRESS_VIEW_ON = 'progress_view_on',
|
|
33
|
-
FONT_DISABLED = 'font_disabled',
|
|
34
|
-
BT_TAB_OFF = 'bt_tab_off',
|
|
35
|
-
BG = 'bg',
|
|
36
|
-
FONT_BT_PROGRAM = 'font_bt_program',
|
|
37
|
-
BG_RANKING = 'bg_ranking',
|
|
38
|
-
BG_STORY = 'bg_story',
|
|
39
|
-
BG_NEW_COMMENT = 'bg_new_comment',
|
|
40
|
-
SHADOW = 'shadow',
|
|
41
|
-
BG_SURVEY = 'bg_survey',
|
|
42
|
-
BG_LIVE = 'bg_live',
|
|
43
|
-
BG_VIEW_LIVE = 'bg_view_live',
|
|
44
|
-
MAIN2 = 'main2',
|
|
45
|
-
BT_TAG_ON = 'bt_tag_on',
|
|
46
|
-
TEXT_COLOR = 'text_color',
|
|
47
|
-
TEXT_STORY = 'text_story',
|
|
48
|
-
BT_REGISTER = 'bt_register',
|
|
49
|
-
BT_SHADOW_PROFILE = 'bt_shadow_profile',
|
|
50
|
-
FONT_REGISTER = 'font_register',
|
|
51
|
-
FONT_BT_MAIN = 'font_bt_main',
|
|
52
|
-
FONT_BT_QUIZ = 'font_bt_quiz',
|
|
53
|
-
FONT_BT_VIEW = 'font_bt_view',
|
|
54
|
-
FONT_BT_TAG_OFF = 'font_bt_tag_off',
|
|
55
|
-
FONT_BT_TAG_ON = 'font_bt_tag_on',
|
|
56
|
-
ATTENTION_COLOR = 'attention_color',
|
|
57
|
-
QUIZ_ERROR = 'quiz_error',
|
|
58
|
-
BG_NAV = 'bg_nav',
|
|
59
|
-
BT_OPEN_E_CLOSE = 'bt_open_e_close',
|
|
60
|
-
IC_TYPE_CLASS = 'ic_type_class',
|
|
61
|
-
IC_TYPE_LIVE = 'ic_type_live',
|
|
62
|
-
IC_TYPE_DISABLED = 'ic_type_disabled',
|
|
63
|
-
BT_DOWNLOAD = 'bt_download',
|
|
64
|
-
BT_DISABLED = 'bt_disabled',
|
|
65
|
-
BT_DISABLED_HOME = 'bt_disabled_home',
|
|
66
|
-
BT_CHECK_OFF = 'bt_check_off',
|
|
67
|
-
ACTIONS_OFF = 'actions_off',
|
|
68
|
-
BT_PROGRAM = 'bt_program',
|
|
69
|
-
PLAYER_CONTROLS = 'player_controls',
|
|
70
|
-
RATING_OFF = 'rating_off',
|
|
71
|
-
RATING_ON = 'rating_on',
|
|
72
|
-
ACTIONS_ON = 'actions_on',
|
|
73
|
-
TAG_VIP_HIGHLIGHT = 'tag_vip_highlight',
|
|
74
|
-
BT_CHECK_ON = 'bt_check_on',
|
|
75
|
-
BT_TAB_ON = 'bt_tab_on',
|
|
76
|
-
BT_VIEW_DEG1 = 'bt_view_deg1',
|
|
77
|
-
LINE_DIVISER = 'line_diviser',
|
|
78
|
-
BG_SEC = 'bg_sec',
|
|
79
|
-
BG_SEARCH = 'bg_search',
|
|
80
|
-
FONT_PRICE = 'font_price',
|
|
81
|
-
BT_LIKE_ON = 'bt_like_on',
|
|
82
|
-
BG_CARD = 'bg_card',
|
|
83
|
-
BT_TAG_OFF = 'bt_tag_off',
|
|
84
|
-
BT_TAG_VIP = 'bt_tag_vip',
|
|
85
|
-
BT_PROFILE = 'bt_profile',
|
|
86
|
-
BT_PRICE_DEG1 = 'bt_price_deg1',
|
|
87
|
-
BT_PRICE_DEG2 = 'bt_price_deg2',
|
|
88
|
-
BT_LIKE_OFF = 'bt_like_off',
|
|
89
|
-
BT_LOCK = 'bt_lock',
|
|
90
|
-
BT_TRASH = 'bt_trash',
|
|
91
|
-
BG_COMMENT = 'bg_comment',
|
|
92
|
-
BG_POST = 'bg_post',
|
|
93
|
-
BT_HIGHLIGHT = 'bt_highlight',
|
|
94
|
-
ATTENTION_BADGE = 'attention_badge',
|
|
95
|
-
BT_BORDER_PROFILE = 'bt_border_profile',
|
|
96
|
-
BT_MAIN_DEG1 = 'bt_main_deg1',
|
|
97
|
-
BT_MAIN_DEG2 = 'bt_main_deg2',
|
|
98
|
-
BT_VIEW_DEG2 = 'bt_view_deg2',
|
|
99
|
-
BG_MODULO = 'bg_modulo',
|
|
100
|
-
BG_MODULO_RANKING = 'bg_modulo_ranking',
|
|
101
|
-
QUIZ_RIGHT = 'quiz_right',
|
|
102
|
-
BT_BANNER_MAIN = 'bt_banner_main',
|
|
103
|
-
FONT_BT_BANNER = 'font_bt_banner',
|
|
104
|
-
BT_BANNER = 'bt_banner',
|
|
105
|
-
FONT_BT_BANNER_MAIN = 'font_bt_banner_main',
|
|
106
|
-
BORDER_BANNER = 'border_banner',
|
|
107
|
-
INPUT_ERROR = 'input_error',
|
|
108
|
-
BT_BACK = 'bt_back',
|
|
109
|
-
TEXT_COMMENT_SEC = 'text_comment_sec',
|
|
110
|
-
BT_IA_DEG1 = 'bt_ia_deg1',
|
|
111
|
-
BT_IA_DEG2 = 'bt_ia_deg2',
|
|
112
|
-
NORMAL = 'normal',
|
|
113
|
-
BG_CLIPS = 'bg_clips',
|
|
114
|
-
FONT_CLIPS = 'font_clips',
|
|
115
|
-
BG_MASK_0 = 'bg_mask_0',
|
|
116
|
-
BG_MASK_80 = 'bg_mask_80',
|
|
117
|
-
BG_MASK_20 = 'bg_mask_20',
|
|
118
|
-
TEXT_CHALLENGE_AUX = 'text_challenge_aux',
|
|
119
|
-
TEXT_CHALLENGE_HIGHLIGHT = 'text_challenge_highlight',
|
|
120
|
-
BG_CHALLENGE = 'bg_challenge',
|
|
121
|
-
BG_MODULO_CHALLENGE = 'bg_modulo_challenge',
|
|
122
|
-
CHALLENGE_HIGHLIGHT = 'challenge_highlight',
|
|
123
|
-
BT_CHALLENGE = 'bt_challenge',
|
|
124
|
-
FONT_BT_CHALLENGE = 'font_bt_challenge',
|
|
125
|
-
CHALLENGE_OFF = 'challenge_off',
|
|
126
|
-
TEXT_CHALLENGE_DISABLED = 'text_challenge_disabled',
|
|
127
|
-
TEXT_CHALLENGE_MAIN = 'text_challenge_main',
|
|
128
|
-
CHALLENGE_WAY = 'challenge_way',
|
|
129
|
-
}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
export enum UISize {
|
|
2
|
-
THUMB_1 = 'thumb_1', // 100x56
|
|
3
|
-
|
|
4
|
-
ASSET_1 = 'asset_1', // 26x26
|
|
5
|
-
ASSET_2 = 'asset_2', // 16x16
|
|
6
|
-
ASSET_3 = 'asset_3', // 80x80
|
|
7
|
-
ASSET_4 = 'asset_4', // 60x60
|
|
8
|
-
ASSET_5 = 'asset_5', // 18x18
|
|
9
|
-
ASSET_6 = 'asset_6', // 20x20
|
|
10
|
-
ASSET_7 = 'asset_7', // 22x22
|
|
11
|
-
ASSET_8 = 'asset_8', // 24x24
|
|
12
|
-
}
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
export enum UITextStyle {
|
|
2
|
-
LARGE_TITLE = 'large_title',
|
|
3
|
-
TITLE_1 = 'title_1',
|
|
4
|
-
TITLE_2 = 'title_2',
|
|
5
|
-
TITLE_3 = 'title_3',
|
|
6
|
-
CALLOUT = 'callout',
|
|
7
|
-
HEADLINE = 'headline',
|
|
8
|
-
SUBHEADLINE = 'subheadline',
|
|
9
|
-
BODY = 'body',
|
|
10
|
-
CAPTION_1 = 'caption_1',
|
|
11
|
-
CAPTION_2 = 'caption_2',
|
|
12
|
-
FOOTNOTE = 'footnote',
|
|
13
|
-
}
|