@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
|
@@ -0,0 +1,353 @@
|
|
|
1
|
+
export declare 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
|
+
BT_ABOUT_ACTIONS_OFF = "bt_about_actions_off",
|
|
13
|
+
BT_ANONYMOUS_COMMENT_OFF = "bt_anonymous_comment_off",
|
|
14
|
+
BT_ANONYMOUS_COMMENT_ON = "bt_anonymous_comment_on",
|
|
15
|
+
BT_BACK = "bt_back",
|
|
16
|
+
BT_BACK_LIVE = "bt_back_live",
|
|
17
|
+
BT_BACK_NEW = "bt_back_new",
|
|
18
|
+
BT_BACK_PLAYER = "bt_back_player",
|
|
19
|
+
BT_BACK_STORY = "bt_back_story",
|
|
20
|
+
BT_CANCEL_LIST = "bt_cancel_list",
|
|
21
|
+
BT_CAPTURE_PHOTO = "bt_capture_photo",
|
|
22
|
+
BT_CAPTURE_VIDEO = "bt_capture_video",
|
|
23
|
+
BT_CAPTURE_VIDEO_LINE = "bt_capture_video_line",
|
|
24
|
+
BT_CERTIFICATION_ACTIONS_OFF = "bt_certification_actions_off",
|
|
25
|
+
BT_CERTIFICATION_ACTIONS_ON = "bt_certification_actions_on",
|
|
26
|
+
BT_CHECK_ACTION_OFF = "bt_check_action_off",
|
|
27
|
+
BT_CHECK_ACTION_ON = "bt_check_action_on",
|
|
28
|
+
BT_CHECK_FIX_OFF = "bt_check_fix_off",
|
|
29
|
+
BT_CHECK_OFF = "bt_check_off",
|
|
30
|
+
BT_CHECK_ON = "bt_check_on",
|
|
31
|
+
BT_CHECK_TERMS_OFF = "bt_check_terms_off",
|
|
32
|
+
BT_CHECK_TERMS_ON = "bt_check_terms_on",
|
|
33
|
+
BT_CLIPS_TAB = "bt_clips_tab",
|
|
34
|
+
BT_CLIPS_TAB_ON = "bt_clips_tab_on",
|
|
35
|
+
BT_CLOSE = "bt_close",
|
|
36
|
+
BT_CLOSE_COMMENT = "bt_close_comment",
|
|
37
|
+
BT_CLOSE_FULL_IMAGE = "bt_close_full_image",
|
|
38
|
+
BT_CLOSE_LIST = "bt_close_list",
|
|
39
|
+
BT_CLOSE_LIVE = "bt_close_live",
|
|
40
|
+
BT_CLOSE_RATING = "bt_close_rating",
|
|
41
|
+
BT_CLOSE_SCREEN_PLAYER = "bt_close_screen_player",
|
|
42
|
+
BT_CLOSE_STORY = "bt_close_story",
|
|
43
|
+
BT_CLOSE_TAGS = "bt_close_tags",
|
|
44
|
+
BT_COMMENT_OFF = "bt_comment_off",
|
|
45
|
+
BT_COMMENT_ON = "bt_comment_on",
|
|
46
|
+
BT_COMUNIDADE_TAB = "bt_comunidade_tab",
|
|
47
|
+
BT_COMUNIDADE_TAB_ON = "bt_comunidade_tab_on",
|
|
48
|
+
BT_CONFIG_NAVBAR = "bt_config_navbar",
|
|
49
|
+
BT_CONFIG_PLAYER = "bt_config_player",
|
|
50
|
+
BT_DELETE_STORY = "bt_delete_story",
|
|
51
|
+
BT_DISABLED = "bt_disabled",
|
|
52
|
+
BT_DOWNLOAD_ACTION_OFF = "bt_download_action_off",
|
|
53
|
+
BT_DOWNLOAD_LIST = "bt_download_list",
|
|
54
|
+
BT_DOWNLOAD_NAV = "bt_download_nav",
|
|
55
|
+
BT_DOWNLOAD_TAB = "bt_download_tab",
|
|
56
|
+
BT_DOWNLOAD_TAB_ON = "bt_download_tab_on",
|
|
57
|
+
BT_EVALUATION_ACTION = "bt_evaluation_action",
|
|
58
|
+
BT_EVALUATION_ACTION_OFF = "bt_evaluation_action_off",
|
|
59
|
+
BT_EVALUATION_ACTION_ON = "bt_evaluation_action_on",
|
|
60
|
+
BT_FAV_ACTIONS_OFF = "bt_fav_actions_off",
|
|
61
|
+
BT_FAV_ACTIONS_ON = "bt_fav_actions_on",
|
|
62
|
+
BT_FAV_OFF = "bt_fav_off",
|
|
63
|
+
BT_FAV_ON = "bt_fav_on",
|
|
64
|
+
BT_FILE = "bt_file",
|
|
65
|
+
BT_FULL_SCREEN_PLAYER = "bt_full_screen_player",
|
|
66
|
+
BT_GALLERY = "bt_gallery",
|
|
67
|
+
BT_INFO = "bt_info",
|
|
68
|
+
BT_LIKE_COMMENT = "bt_like_comment",
|
|
69
|
+
BT_LIKE_COMMENT_ON = "bt_like_comment_on",
|
|
70
|
+
BT_LIKE_LIVE = "bt_like_live",
|
|
71
|
+
BT_LIKE_LIVE_ON = "bt_like_live_on",
|
|
72
|
+
BT_LIKE_OFF = "bt_like_off",
|
|
73
|
+
BT_LIKE_ON = "bt_like_on",
|
|
74
|
+
BT_LINK_GENERIC = "bt_link_generic",
|
|
75
|
+
BT_LOCK = "bt_lock",
|
|
76
|
+
BT_LOGOUT = "bt_logout",
|
|
77
|
+
BT_MATERIAL = "bt_material",
|
|
78
|
+
BT_MATERIALS_ACTIONS_OFF = "bt_materials_actions_off",
|
|
79
|
+
BT_MENU = "bt_menu",
|
|
80
|
+
BT_MY_LIST_ACTION_OFF = "bt_my_list_action_off",
|
|
81
|
+
BT_MY_LIST_ACTION_ON = "bt_my_list_action_on",
|
|
82
|
+
BT_MY_LIST_NAV_OFF = "bt_my_list_nav_off",
|
|
83
|
+
BT_MY_LIST_NAV_ON = "bt_my_list_nav_on",
|
|
84
|
+
BT_NEW_STORY = "bt_new_story",
|
|
85
|
+
BT_NEXT = "bt_next",
|
|
86
|
+
BT_NEXT_ACTIONS = "bt_next_actions",
|
|
87
|
+
BT_NEXT_CHALLENGE = "bt_next_challenge",
|
|
88
|
+
BT_NEXT_CLIPS = "bt_next_clips",
|
|
89
|
+
BT_NEXT_MAIN = "bt_next_main",
|
|
90
|
+
BT_NOTE_ACTIONS_OFF = "bt_note_actions_off",
|
|
91
|
+
BT_NOTE_ACTIONS_ON = "bt_note_actions_on",
|
|
92
|
+
BT_NOTIFICATION = "bt_notification",
|
|
93
|
+
BT_NOTIFICATION_ON = "bt_notification_on",
|
|
94
|
+
BT_NOTIFICATIONS_TAB = "bt_notifications_tab",
|
|
95
|
+
BT_OPEN = "bt_open",
|
|
96
|
+
BT_OPEN_LIST = "bt_open_list",
|
|
97
|
+
BT_OPEN_LIST_AUDIO = "bt_open_list_audio",
|
|
98
|
+
BT_OPORTUNIDADES_TAB = "bt_oportunidades_tab",
|
|
99
|
+
BT_OPORTUNIDADES_TAB_ON = "bt_oportunidades_tab_on",
|
|
100
|
+
BT_OPTIONS = "bt_options",
|
|
101
|
+
BT_PAUSE_VIEW_AUDIO = "bt_pause_view_audio",
|
|
102
|
+
BT_PAUSE_VIEW_CLIPS = "bt_pause_view_clips",
|
|
103
|
+
BT_PERFIL = "bt_perfil",
|
|
104
|
+
BT_PERFIL_TAB = "bt_perfil_tab",
|
|
105
|
+
BT_PHOTO_COMMENT = "bt_photo_comment",
|
|
106
|
+
BT_PIMP_PLAYER = "bt_pimp_player",
|
|
107
|
+
BT_PLAY_VIEW_AUDIO = "bt_play_view_audio",
|
|
108
|
+
BT_PLAY_VIEW_CLIPS = "bt_play_view_clips",
|
|
109
|
+
BT_POST = "bt_post",
|
|
110
|
+
BT_RATING_OFF = "bt_rating_off",
|
|
111
|
+
BT_RATING_ON = "bt_rating_on",
|
|
112
|
+
BT_RESTART_ACTIONS_OFF = "bt_restart_actions_off",
|
|
113
|
+
BT_SEARCH = "bt_search",
|
|
114
|
+
BT_SEEK = "bt_seek",
|
|
115
|
+
BT_SELFIE = "bt_selfie",
|
|
116
|
+
BT_SEND_OFF = "bt_send_off",
|
|
117
|
+
BT_SEND_ON = "bt_send_on",
|
|
118
|
+
BT_SHARE_LIVE = "bt_share_live",
|
|
119
|
+
BT_SHARE_POST_OFF = "bt_share_post_off",
|
|
120
|
+
BT_SPEED_PLAYER = "bt_speed_player",
|
|
121
|
+
BT_TEXT_STORIES = "bt_text_stories",
|
|
122
|
+
BT_TIME24_STORY = "bt_time24_story",
|
|
123
|
+
BT_TIME48_STORY = "bt_time48_story",
|
|
124
|
+
BT_TIME72_STORY = "bt_time72_story",
|
|
125
|
+
BT_TRASH = "bt_trash",
|
|
126
|
+
BT_TV = "bt_tv",
|
|
127
|
+
BT_TV_ON = "bt_tv_on",
|
|
128
|
+
BT_TV_ON_LIST = "bt_tv_on_list",
|
|
129
|
+
BT_TV_ON_MAIN = "bt_tv_on_main",
|
|
130
|
+
BT_VIDEO_HELP_PLAYER = "bt_video_help_player",
|
|
131
|
+
IC_ACTIVITE = "ic_activite",
|
|
132
|
+
IC_ACTIVITY = "ic_activity",
|
|
133
|
+
IC_ACTIVITY_MY_APP = "ic_activity_my_app",
|
|
134
|
+
IC_AI_STAR = "ic_ai_star",
|
|
135
|
+
IC_AI_TAG = "ic_ai_tag",
|
|
136
|
+
IC_ALERT_NEW_POST = "ic_alert_new_post",
|
|
137
|
+
IC_ALERT_NOTIFICATION = "ic_alert_notification",
|
|
138
|
+
IC_ANONYMOUS_POST = "ic_anonymous_post",
|
|
139
|
+
IC_ATTENTION = "ic_attention",
|
|
140
|
+
IC_ATTENTION_RULES = "ic_attention_rules",
|
|
141
|
+
IC_AUDIO_CLIPS = "ic_audio_clips",
|
|
142
|
+
IC_AUDIO_LIST = "ic_audio_list",
|
|
143
|
+
IC_AUDIO_LIST_DISABLED = "ic_audio_list_disabled",
|
|
144
|
+
IC_AVATAR = "ic_avatar",
|
|
145
|
+
IC_AVATAR_COMMENT = "ic_avatar_comment",
|
|
146
|
+
IC_AVATAR_LIVE = "ic_avatar_live",
|
|
147
|
+
IC_AVATAR_RANKING_LIST = "ic_avatar_ranking_list",
|
|
148
|
+
IC_AVATAR_RANKING_ONE = "ic_avatar_ranking_one",
|
|
149
|
+
IC_AVATAR_RANKING_TWO = "ic_avatar_ranking_two",
|
|
150
|
+
IC_AVATAR_REGISTER = "ic_avatar_register",
|
|
151
|
+
IC_CERTIFICATION = "ic_certification",
|
|
152
|
+
IC_CERTIFICATION_MAIN = "ic_certification_main",
|
|
153
|
+
IC_CERTIFICATION_MY_APP = "ic_certification_my_app",
|
|
154
|
+
IC_CHALLENGE_PTS = "ic_challenge_pts",
|
|
155
|
+
IC_CHALLENGE_PTS_DETAIL = "ic_challenge_pts_detail",
|
|
156
|
+
IC_CHALLENGE_PTS_LIST = "ic_challenge_pts_list",
|
|
157
|
+
IC_CHALLENGE_PTS_LIST_DISABLED = "ic_challenge_pts_list_disabled",
|
|
158
|
+
IC_CHALLENGE_RANKING = "ic_challenge_ranking",
|
|
159
|
+
IC_CHECK = "ic_check",
|
|
160
|
+
IC_CHROMECAST = "ic_chromecast",
|
|
161
|
+
IC_CLIP_EMPTY = "ic_clip_empty",
|
|
162
|
+
IC_COMMENT_SEARCH_LIST = "ic_comment_search_list",
|
|
163
|
+
IC_CONTACT = "ic_contact",
|
|
164
|
+
IC_DADOS_CHECK = "ic_dados_check",
|
|
165
|
+
IC_DELETE_ACCOUNT = "ic_delete_account",
|
|
166
|
+
IC_DISABLED_LESSON = "ic_disabled_lesson",
|
|
167
|
+
IC_DOWNLOAD_EMPTY = "ic_download_empty",
|
|
168
|
+
IC_DOWNLOAD_MY_APP = "ic_download_my_app",
|
|
169
|
+
IC_DOWNLOADS_LIST = "ic_downloads_list",
|
|
170
|
+
IC_EMAIL = "ic_email",
|
|
171
|
+
IC_EMPTY_CLASS = "ic_empty_class",
|
|
172
|
+
IC_ERROR = "ic_error",
|
|
173
|
+
IC_ERROR_CHALLENGE = "ic_error_challenge",
|
|
174
|
+
IC_FILE = "ic_file",
|
|
175
|
+
IC_FILE_CLIPS = "ic_file_clips",
|
|
176
|
+
IC_FILE_DISABLED = "ic_file_disabled",
|
|
177
|
+
IC_FIX_POST = "ic_fix_post",
|
|
178
|
+
IC_FLAG_END = "ic_flag_end",
|
|
179
|
+
IC_FLAG_START = "ic_flag_start",
|
|
180
|
+
IC_FULL_IMAGE = "ic_full_image",
|
|
181
|
+
IC_LAST_SEARCH = "ic_last_search",
|
|
182
|
+
IC_LEVEL_ONE = "ic_level_one",
|
|
183
|
+
IC_LEVEL_ONE_PROFILE = "ic_level_one_profile",
|
|
184
|
+
IC_LEVEL_THREE = "ic_level_three",
|
|
185
|
+
IC_LEVEL_TWO = "ic_level_two",
|
|
186
|
+
IC_LIKE_SEARCH_LIST = "ic_like_search_list",
|
|
187
|
+
IC_LINK_CLIPS = "ic_link_clips",
|
|
188
|
+
IC_LINK_GENERIC = "ic_link_generic",
|
|
189
|
+
IC_LINK_LIST = "ic_link_list",
|
|
190
|
+
IC_LINK_LIST_DISABLED = "ic_link_list_disabled",
|
|
191
|
+
IC_LIVE_WAITING = "ic_live_waiting",
|
|
192
|
+
IC_LOCK = "ic_lock",
|
|
193
|
+
IC_LOCK_CHECK = "ic_lock_check",
|
|
194
|
+
IC_LOCK_LESSON = "ic_lock_lesson",
|
|
195
|
+
IC_MY_LIST = "ic_my_list",
|
|
196
|
+
IC_MY_LIST_EMPTY = "ic_my_list_empty",
|
|
197
|
+
IC_MY_LIST_MY_APP = "ic_my_list_my_app",
|
|
198
|
+
IC_MY_SHOP = "ic_my_shop",
|
|
199
|
+
IC_MY_SHOP_MY_APP = "ic_my_shop_my_app",
|
|
200
|
+
IC_MY_VOTE = "ic_my_vote",
|
|
201
|
+
IC_NOT_FOUND = "ic_not_found",
|
|
202
|
+
IC_NOTE = "ic_note",
|
|
203
|
+
IC_NOTE_MY_APP = "ic_note_my_app",
|
|
204
|
+
IC_NOTIFICATION_EMPTY = "ic_notification_empty",
|
|
205
|
+
IC_NOTIFICATION_MY_APP = "ic_notification_my_app",
|
|
206
|
+
IC_NOTIFICATION_MY_APP_ON = "ic_notification_my_app_on",
|
|
207
|
+
IC_NOTIFICATION_OFF = "ic_notification_off",
|
|
208
|
+
IC_NOTIFICATION_ON = "ic_notification_on",
|
|
209
|
+
IC_PAUSE_VIEW = "ic_pause_view",
|
|
210
|
+
IC_PAUSE_VIEW_AUDIO = "ic_pause_view_audio",
|
|
211
|
+
IC_PAUSE_VIEW_SOUND = "ic_pause_view_sound",
|
|
212
|
+
IC_PERGUNTAS = "ic_perguntas",
|
|
213
|
+
IC_PIN_CARD = "ic_pin_card",
|
|
214
|
+
IC_PLAY_CLIPS = "ic_play_clips",
|
|
215
|
+
IC_PLAY_LIST = "ic_play_list",
|
|
216
|
+
IC_PLAY_LIST_DISABLED = "ic_play_list_disabled",
|
|
217
|
+
IC_PLAY_VIEW = "ic_play_view",
|
|
218
|
+
IC_PLAY_VIEW_AUDIO = "ic_play_view_audio",
|
|
219
|
+
IC_PLAY_VIEW_SOUND = "ic_play_view_sound",
|
|
220
|
+
IC_POLITICS = "ic_politics",
|
|
221
|
+
IC_POST = "ic_post",
|
|
222
|
+
IC_POST_AUDIO = "ic_post_audio",
|
|
223
|
+
IC_POST_EMPTY = "ic_post_empty",
|
|
224
|
+
IC_POST_IMAGE = "ic_post_image",
|
|
225
|
+
IC_POST_TEXT = "ic_post_text",
|
|
226
|
+
IC_POST_VIDEO = "ic_post_video",
|
|
227
|
+
IC_POST_VIDEO_FULL = "ic_post_video_full",
|
|
228
|
+
IC_PTS = "ic_pts",
|
|
229
|
+
IC_QUIZ_CLIPS = "ic_quiz_clips",
|
|
230
|
+
IC_QUIZ_FINAL = "ic_quiz_final",
|
|
231
|
+
IC_QUIZ_LIST = "ic_quiz_list",
|
|
232
|
+
IC_QUIZ_LIST_DISABLED = "ic_quiz_list_disabled",
|
|
233
|
+
IC_RANKING_LOCK = "ic_ranking_lock",
|
|
234
|
+
IC_RANKING_N1 = "ic_ranking_n1",
|
|
235
|
+
IC_RANKING_N2 = "ic_ranking_n2",
|
|
236
|
+
IC_RANKING_N3 = "ic_ranking_n3",
|
|
237
|
+
IC_RATING_LIST = "ic_rating_list",
|
|
238
|
+
IC_RATING_LIST_DISABLED = "ic_rating_list_disabled",
|
|
239
|
+
IC_RATING_PROGRAM = "ic_rating_program",
|
|
240
|
+
IC_SEARCH = "ic_search",
|
|
241
|
+
IC_SEARCH_EMPTY = "ic_search_empty",
|
|
242
|
+
IC_SHARE_SEARCH_LIST = "ic_share_search_list",
|
|
243
|
+
IC_SHOP = "ic_shop",
|
|
244
|
+
IC_SHOP_MY_APP = "ic_shop_my_app",
|
|
245
|
+
IC_SMARTTV = "ic_smarttv",
|
|
246
|
+
IC_SPEED = "ic_speed",
|
|
247
|
+
IC_STATUS_CHALLENGE_WAIT = "ic_status_challenge_wait",
|
|
248
|
+
IC_STORY_CHECK = "ic_story_check",
|
|
249
|
+
IC_SUBSCRIBE = "ic_subscribe",
|
|
250
|
+
IC_SUBSCRIBE_MY_APP = "ic_subscribe_my_app",
|
|
251
|
+
IC_TAG_CHALLENGE = "ic_tag_challenge",
|
|
252
|
+
IC_TAG_RANKING = "ic_tag_ranking",
|
|
253
|
+
IC_TAG_RANKING_MAIN = "ic_tag_ranking_main",
|
|
254
|
+
IC_TAG_VIP = "ic_tag_vip",
|
|
255
|
+
IC_TERMS = "ic_terms",
|
|
256
|
+
IC_TEXT_CLIPS = "ic_text_clips",
|
|
257
|
+
IC_TEXT_LIST = "ic_text_list",
|
|
258
|
+
IC_TEXT_LIST_DISABLED = "ic_text_list_disabled",
|
|
259
|
+
IC_TV = "ic_tv",
|
|
260
|
+
IC_TV_MIRROR = "ic_tv_mirror",
|
|
261
|
+
IC_TYPE_FILE = "ic_type_file",
|
|
262
|
+
IC_TYPE_TEXT = "ic_type_text",
|
|
263
|
+
IC_VERIFIED = "ic_verified",
|
|
264
|
+
IC_VERIFIED_COMMENT = "ic_verified_comment",
|
|
265
|
+
IC_VIEW = "ic_view",
|
|
266
|
+
IC_VIEW_LIVE = "ic_view_live",
|
|
267
|
+
IC_VIEW_STORY = "ic_view_story",
|
|
268
|
+
IC_VOTE = "ic_vote",
|
|
269
|
+
IMG = "img",
|
|
270
|
+
IMG_AVATAR_STORY = "img_avatar_story",
|
|
271
|
+
IMG_AVATAR_STORY_VIEW = "img_avatar_story_view",
|
|
272
|
+
IMG_BG_ASSINATURAS = "img_bg_assinaturas",
|
|
273
|
+
IMG_BG_PAINEL = "img_bg_painel",
|
|
274
|
+
IMG_BT_APPLESTORE = "img_bt_applestore",
|
|
275
|
+
IMG_BT_GOOGLEPLAY = "img_bt_googleplay",
|
|
276
|
+
IMG_CAPA_VIDEO = "img_capa_video",
|
|
277
|
+
IMG_CHECKOUT_DESKTOP = "img_checkout_desktop",
|
|
278
|
+
IMG_CHECKOUT_MOBILE = "img_checkout_mobile",
|
|
279
|
+
IMG_CHECKOUT_RIGHT = "img_checkout_right",
|
|
280
|
+
IMG_CLASS_FILE = "img_class_file",
|
|
281
|
+
IMG_COMUNIDADE = "img_comunidade",
|
|
282
|
+
IMG_FAV = "img_fav",
|
|
283
|
+
IMG_LOGO = "img_logo",
|
|
284
|
+
IMG_LOGO_EMAIL = "img_logo_email",
|
|
285
|
+
IMG_LOGO_HORIZ = "img_logo_horiz",
|
|
286
|
+
IMG_LOGO_LOGIN = "img_logo_login",
|
|
287
|
+
IMG_LOGO_NAV = "img_logo_nav",
|
|
288
|
+
IMG_LOGO_NORMAL = "img_logo_normal",
|
|
289
|
+
IMG_LOGO_PAYMENT = "img_logo_payment",
|
|
290
|
+
IMG_MASK_AUDIO_BLUR = "img_mask_audio_blur",
|
|
291
|
+
IMG_MASK_BANNER_BLUR = "img_mask_banner_blur",
|
|
292
|
+
IMG_MASK_BANNER_MAIN = "img_mask_banner_main",
|
|
293
|
+
IMG_MASK_CAST_LIST = "img_mask_cast_list",
|
|
294
|
+
IMG_MASK_CATEGORY_HIGHLIGHT = "img_mask_category_highlight",
|
|
295
|
+
IMG_MASK_CHALLENGE_ACTIVITY = "img_mask_challenge_activity",
|
|
296
|
+
IMG_MASK_FILE = "img_mask_file",
|
|
297
|
+
IMG_MASK_LIVE = "img_mask_live",
|
|
298
|
+
IMG_MASK_LIVE_TOP = "img_mask_live_top",
|
|
299
|
+
IMG_MASK_LIVE_WAITING = "img_mask_live_waiting",
|
|
300
|
+
IMG_MASK_MAIN_BANNERS = "img_mask_main_banners",
|
|
301
|
+
IMG_MASK_PROFILE = "img_mask_profile",
|
|
302
|
+
IMG_MASK_PROGRAM = "img_mask_program",
|
|
303
|
+
IMG_MASK_RATING = "img_mask_rating",
|
|
304
|
+
IMG_MASK_SOUND_BLUR = "img_mask_sound_blur",
|
|
305
|
+
IMG_PLACEHOLDER_CAST = "img_placeholder_cast",
|
|
306
|
+
IMG_PLACEHOLDER_FILE = "img_placeholder_file",
|
|
307
|
+
IMG_PLACEHOLDER_LEVEL = "img_placeholder_level",
|
|
308
|
+
IMG_PLACEHOLDER_MAIN = "img_placeholder_main",
|
|
309
|
+
IMG_PLACEHOLDER_MEUS_VIDEOS = "img_placeholder_meus_videos",
|
|
310
|
+
IMG_PLACEHOLDER_NOTIFICATION = "img_placeholder_notification",
|
|
311
|
+
IMG_PLACEHOLDER_POST_IMAGEM = "img_placeholder_post_imagem",
|
|
312
|
+
IMG_PLACEHOLDER_POST_VIP = "img_placeholder_post_vip",
|
|
313
|
+
IMG_PLACEHOLDER_PROGRAM = "img_placeholder_program",
|
|
314
|
+
IMG_PLACEHOLDER_RANKING = "img_placeholder_ranking",
|
|
315
|
+
IMG_PLACEHOLDER_STORY = "img_placeholder_story",
|
|
316
|
+
IMG_PLACEHOLDER_TEXT = "img_placeholder_text",
|
|
317
|
+
IMG_PLACEHOLDER_VIDEO_MAIN = "img_placeholder_video_main",
|
|
318
|
+
IMG_SHARE_WHATSAPP = "img_share_whatsapp",
|
|
319
|
+
IMG_SYMBOL80 = "img_symbol80",
|
|
320
|
+
IMG_THUMB_HORIZ = "img_thumb_horiz",
|
|
321
|
+
IMG_THUMB_PROG_VERT = "img_thumb_prog_vert",
|
|
322
|
+
IMG_THUMB_PROG_VERT1 = "img_thumb_prog_vert1",
|
|
323
|
+
IMG_THUMB_PROG_VERT2 = "img_thumb_prog_vert2",
|
|
324
|
+
IMG_THUMB_PROG_VERT3 = "img_thumb_prog_vert3",
|
|
325
|
+
MASK_DETAIL = "mask_detail",
|
|
326
|
+
MASK_DETAIL_CERTIFICATION = "mask_detail_certification",
|
|
327
|
+
MASK_DETAIL_CHALLENGE = "mask_detail_challenge",
|
|
328
|
+
MASK_DETAIL_POST_VIP = "mask_detail_post_vip",
|
|
329
|
+
MASK_DETAIL_RANKING = "mask_detail_ranking",
|
|
330
|
+
MASK_IMG_CARROSEL = "mask_img_carrosel",
|
|
331
|
+
MASK_IMG_MAIN = "mask_img_main",
|
|
332
|
+
MASK_IMG_TOP_STORY = "mask_img_top_story",
|
|
333
|
+
MASK_NEXT_CLASS = "mask_next_class",
|
|
334
|
+
REPEAT_BACK = "repeat_back",
|
|
335
|
+
REPEAT_BACK_SOUND = "repeat_back_sound",
|
|
336
|
+
REPEAT_FRONT = "repeat_front",
|
|
337
|
+
REPEAT_FRONT_SOUND = "repeat_front_sound",
|
|
338
|
+
SPACE_GRAY = "space_gray",
|
|
339
|
+
VIDEO_REPEAT_BACK = "video_repeat_back",
|
|
340
|
+
VIDEO_REPEAT_FRONT = "video_repeat_front",
|
|
341
|
+
WAY_LEFT_END_OFF = "way_left_end_off",
|
|
342
|
+
WAY_LEFT_END_ON = "way_left_end_on",
|
|
343
|
+
WAY_ONE_OFF = "way_one_off",
|
|
344
|
+
WAY_ONE_ON = "way_one_on",
|
|
345
|
+
WAY_RIGHT_END_OFF = "way_right_end_off",
|
|
346
|
+
WAY_RIGHT_END_ON = "way_right_end_on",
|
|
347
|
+
WAY_START_OFF = "way_start_off",
|
|
348
|
+
WAY_START_ON = "way_start_on",
|
|
349
|
+
WAY_TASK_OFF = "way_task_off",
|
|
350
|
+
WAY_TASK_ON = "way_task_on",
|
|
351
|
+
WAY_TWO_OFF = "way_two_off",
|
|
352
|
+
WAY_TWO_ON = "way_two_on"
|
|
353
|
+
}
|
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
export declare 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
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export declare enum UISize {
|
|
2
|
+
THUMB_1 = "thumb_1",// 100x56
|
|
3
|
+
ASSET_1 = "asset_1",// 26x26
|
|
4
|
+
ASSET_2 = "asset_2",// 16x16
|
|
5
|
+
ASSET_3 = "asset_3",// 80x80
|
|
6
|
+
ASSET_4 = "asset_4",// 60x60
|
|
7
|
+
ASSET_5 = "asset_5",// 18x18
|
|
8
|
+
ASSET_6 = "asset_6",// 20x20
|
|
9
|
+
ASSET_7 = "asset_7",// 22x22
|
|
10
|
+
ASSET_8 = "asset_8"
|
|
11
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export declare 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
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { UIActionType } from '../enums/uiaction-type';
|
|
2
|
+
import { UIPresentationStyle } from '../enums/uipresentation-style';
|
|
3
|
+
export interface UIAction {
|
|
4
|
+
canAccess?: boolean | null;
|
|
5
|
+
url?: string | null;
|
|
6
|
+
type?: UIActionType | null;
|
|
7
|
+
presentationStyle?: UIPresentationStyle | null;
|
|
8
|
+
param?: string | null;
|
|
9
|
+
}
|
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
import { UIColor } from '../enums/uicolor';
|
|
2
2
|
import { UIShadowBlurRadius } from '../enums/uishadow-blur-radius';
|
|
3
3
|
import { UIShadowOffset } from '../enums/uishadow-offset';
|
|
4
|
-
|
|
5
4
|
export interface UIShadow {
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
5
|
+
color?: UIColor;
|
|
6
|
+
offsetX?: UIShadowOffset;
|
|
7
|
+
offsetY?: UIShadowOffset;
|
|
8
|
+
blurRadius?: UIShadowBlurRadius;
|
|
9
|
+
opacity?: number;
|
|
11
10
|
}
|