@edm-sdui/sdui 1.0.1 → 1.0.3

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.
Files changed (312) hide show
  1. package/edm-sdui-sdui.d.ts.map +1 -0
  2. package/esm2022/edm-sdui-sdui.mjs +5 -0
  3. package/esm2022/lib/components/navigation-controls/navigation-controls.component.mjs +27 -0
  4. package/esm2022/lib/components/uicomponent/button/button.component.mjs +47 -0
  5. package/esm2022/lib/components/uicomponent/column/column.component.mjs +23 -0
  6. package/esm2022/lib/components/uicomponent/image/image.component.mjs +48 -0
  7. package/esm2022/lib/components/uicomponent/label/label.component.mjs +49 -0
  8. package/esm2022/lib/components/uicomponent/row/row.component.mjs +23 -0
  9. package/esm2022/lib/components/uicomponent/row-divisor/row-divisor.component.mjs +22 -0
  10. package/esm2022/lib/components/uicomponent/search-bar/search-bar.component.mjs +99 -0
  11. package/esm2022/lib/components/uicomponent/space/space.component.mjs +20 -0
  12. package/esm2022/lib/components/uicomponent/tag/tag.component.mjs +50 -0
  13. package/esm2022/lib/components/uicomponent/uicomponent.component.mjs +41 -0
  14. package/esm2022/lib/components/uicomponent/zstack/zstack.component.mjs +23 -0
  15. package/esm2022/lib/components/uilayout/centered-content-layout/centered-content-layout.component.mjs +21 -0
  16. package/esm2022/lib/components/uilayout/single-column-layout/single-column-layout.component.mjs +21 -0
  17. package/esm2022/lib/components/uilayout/uinavigation/uinavigation.component.mjs +15 -0
  18. package/esm2022/lib/components/uiscreen/uiscreen.component.mjs +23 -0
  19. package/esm2022/lib/core/services/ui-action.service.mjs +42 -0
  20. package/esm2022/lib/core/services/uiscreen.service.mjs +150 -0
  21. package/esm2022/lib/core/tokens/sdui-config.token.mjs +3 -0
  22. package/esm2022/lib/core/uicomposition/enums/uicomponent-type.mjs +28 -0
  23. package/esm2022/lib/core/uicomposition/enums/uiplatform-type.mjs +6 -0
  24. package/esm2022/lib/core/uicomposition/enums/uiscene.mjs +5 -0
  25. package/esm2022/lib/core/uicomposition/enums/uiscreen-identifier.mjs +6 -0
  26. package/esm2022/lib/core/uicomposition/mapping/component-mapping.mjs +28 -0
  27. package/esm2022/lib/core/uicomposition/models/uicentered-content-layout.mjs +2 -0
  28. package/esm2022/lib/core/uicomposition/models/uicomponent.mjs +2 -0
  29. package/esm2022/lib/core/uicomposition/models/uielement.mjs +2 -0
  30. package/esm2022/lib/core/uicomposition/models/uilayout.mjs +2 -0
  31. package/esm2022/lib/core/uicomposition/models/uinavigation.mjs +2 -0
  32. package/esm2022/lib/core/uicomposition/models/uiscreen.mjs +2 -0
  33. package/esm2022/lib/core/uicomposition/models/uisingle-column-layout.mjs +2 -0
  34. package/esm2022/lib/core/uicomposition/models/uiview.mjs +2 -0
  35. package/esm2022/lib/core/uitheme/enums/uiaction-type.mjs +14 -0
  36. package/esm2022/lib/core/uitheme/enums/uialignment-type.mjs +7 -0
  37. package/esm2022/lib/core/uitheme/enums/uiaspect-type.mjs +6 -0
  38. package/esm2022/lib/core/uitheme/enums/uiasset.mjs +355 -0
  39. package/esm2022/lib/core/uitheme/enums/uicolor.mjs +131 -0
  40. package/esm2022/lib/core/uitheme/enums/uicontent-type.mjs +10 -0
  41. package/esm2022/lib/core/uitheme/enums/uipadding-level.mjs +12 -0
  42. package/esm2022/lib/core/uitheme/enums/uipresentation-style.mjs +7 -0
  43. package/esm2022/lib/core/uitheme/enums/uiradius-level.mjs +10 -0
  44. package/esm2022/lib/core/uitheme/enums/uishadow-blur-radius.mjs +5 -0
  45. package/esm2022/lib/core/uitheme/enums/uishadow-offset.mjs +5 -0
  46. package/esm2022/lib/core/uitheme/enums/uisize.mjs +13 -0
  47. package/esm2022/lib/core/uitheme/enums/uispacing-level.mjs +8 -0
  48. package/esm2022/lib/core/uitheme/enums/uitext-style.mjs +15 -0
  49. package/esm2022/lib/core/uitheme/mapping/alignment-mapping.mjs +7 -0
  50. package/esm2022/lib/core/uitheme/mapping/asset-mapping.mjs +355 -0
  51. package/esm2022/lib/core/uitheme/mapping/color-mapping.mjs +131 -0
  52. package/esm2022/lib/core/uitheme/mapping/pad-mapping.mjs +12 -0
  53. package/esm2022/lib/core/uitheme/mapping/radius-mapping.mjs +10 -0
  54. package/esm2022/lib/core/uitheme/mapping/size-mapping.mjs +24 -0
  55. package/esm2022/lib/core/uitheme/mapping/space-mapping.mjs +8 -0
  56. package/esm2022/lib/core/uitheme/mapping/text-style-mapping.mjs +15 -0
  57. package/esm2022/lib/core/uitheme/models/uiaction.mjs +2 -0
  58. package/esm2022/lib/core/uitheme/models/uialignment.mjs +2 -0
  59. package/esm2022/lib/core/uitheme/models/uibackground.mjs +2 -0
  60. package/esm2022/lib/core/uitheme/models/uipadding.mjs +2 -0
  61. package/esm2022/lib/core/uitheme/models/uiradius.mjs +2 -0
  62. package/esm2022/lib/core/uitheme/models/uishadow.mjs +2 -0
  63. package/esm2022/lib/core/uitheme/models/uispacing.mjs +2 -0
  64. package/esm2022/lib/core/utils/url-parser.util.mjs +19 -0
  65. package/esm2022/lib/core/view-models/uiscreen.viewmodel.mjs +101 -0
  66. package/esm2022/lib/directives/uiview.directive.mjs +140 -0
  67. package/esm2022/lib/sdui-routing.module.mjs +28 -0
  68. package/esm2022/lib/sdui.component.mjs +51 -0
  69. package/esm2022/lib/sdui.module.mjs +102 -0
  70. package/esm2022/public-api.mjs +12 -0
  71. package/fesm2022/edm-sdui-sdui.mjs +2279 -0
  72. package/fesm2022/edm-sdui-sdui.mjs.map +1 -0
  73. package/index.d.ts +6 -0
  74. package/lib/components/navigation-controls/navigation-controls.component.d.ts +12 -0
  75. package/lib/components/navigation-controls/navigation-controls.component.d.ts.map +1 -0
  76. package/lib/components/uicomponent/button/button.component.d.ts +17 -0
  77. package/lib/components/uicomponent/button/button.component.d.ts.map +1 -0
  78. package/lib/components/uicomponent/column/column.component.d.ts +11 -0
  79. package/lib/components/uicomponent/column/column.component.d.ts.map +1 -0
  80. package/lib/components/uicomponent/image/image.component.d.ts +15 -0
  81. package/lib/components/uicomponent/image/image.component.d.ts.map +1 -0
  82. package/lib/components/uicomponent/label/label.component.d.ts +15 -0
  83. package/lib/components/uicomponent/label/label.component.d.ts.map +1 -0
  84. package/lib/components/uicomponent/row/row.component.d.ts +11 -0
  85. package/lib/components/uicomponent/row/row.component.d.ts.map +1 -0
  86. package/lib/components/uicomponent/row-divisor/row-divisor.component.d.ts +11 -0
  87. package/lib/components/uicomponent/row-divisor/row-divisor.component.d.ts.map +1 -0
  88. package/lib/components/uicomponent/search-bar/search-bar.component.d.ts +17 -0
  89. package/lib/components/uicomponent/search-bar/search-bar.component.d.ts.map +1 -0
  90. package/lib/components/uicomponent/space/space.component.d.ts +11 -0
  91. package/lib/components/uicomponent/space/space.component.d.ts.map +1 -0
  92. package/lib/components/uicomponent/tag/tag.component.d.ts +17 -0
  93. package/lib/components/uicomponent/tag/tag.component.d.ts.map +1 -0
  94. package/lib/components/uicomponent/uicomponent.component.d.ts +17 -0
  95. package/lib/components/uicomponent/uicomponent.component.d.ts.map +1 -0
  96. package/lib/components/uicomponent/zstack/zstack.component.d.ts +11 -0
  97. package/lib/components/uicomponent/zstack/zstack.component.d.ts.map +1 -0
  98. package/lib/components/uilayout/centered-content-layout/centered-content-layout.component.d.ts +10 -0
  99. package/lib/components/uilayout/centered-content-layout/centered-content-layout.component.d.ts.map +1 -0
  100. package/lib/components/uilayout/single-column-layout/single-column-layout.component.d.ts +10 -0
  101. package/lib/components/uilayout/single-column-layout/single-column-layout.component.d.ts.map +1 -0
  102. package/lib/components/uilayout/uinavigation/uinavigation.component.d.ts +8 -0
  103. package/lib/components/uilayout/uinavigation/uinavigation.component.d.ts.map +1 -0
  104. package/lib/components/uiscreen/uiscreen.component.d.ts +11 -0
  105. package/lib/components/uiscreen/uiscreen.component.d.ts.map +1 -0
  106. package/lib/core/services/ui-action.service.d.ts +11 -0
  107. package/lib/core/services/ui-action.service.d.ts.map +1 -0
  108. package/lib/core/services/uiscreen.service.d.ts +24 -0
  109. package/lib/core/services/uiscreen.service.d.ts.map +1 -0
  110. package/lib/core/tokens/sdui-config.token.d.ts +3 -0
  111. package/lib/core/tokens/sdui-config.token.d.ts.map +1 -0
  112. package/lib/core/uicomposition/enums/uicomponent-type.d.ts +20 -0
  113. package/lib/core/uicomposition/enums/uicomponent-type.d.ts.map +1 -0
  114. package/lib/core/uicomposition/enums/uiplatform-type.d.ts +5 -0
  115. package/lib/core/uicomposition/enums/uiplatform-type.d.ts.map +1 -0
  116. package/lib/core/uicomposition/enums/uiscene.d.ts +4 -0
  117. package/lib/core/uicomposition/enums/uiscene.d.ts.map +1 -0
  118. package/lib/core/uicomposition/enums/uiscreen-identifier.d.ts +5 -0
  119. package/lib/core/uicomposition/enums/uiscreen-identifier.d.ts.map +1 -0
  120. package/lib/core/uicomposition/mapping/component-mapping.d.ts +4 -0
  121. package/lib/core/uicomposition/mapping/component-mapping.d.ts.map +1 -0
  122. package/lib/core/uicomposition/models/uicentered-content-layout.d.ts +11 -0
  123. package/lib/core/uicomposition/models/uicentered-content-layout.d.ts.map +1 -0
  124. package/{src/lib/core/uicomposition/models/uicomponent.ts → lib/core/uicomposition/models/uicomponent.d.ts} +5 -5
  125. package/lib/core/uicomposition/models/uicomponent.d.ts.map +1 -0
  126. package/lib/core/uicomposition/models/uielement.d.ts +25 -0
  127. package/lib/core/uicomposition/models/uielement.d.ts.map +1 -0
  128. package/lib/core/uicomposition/models/uilayout.d.ts +4 -0
  129. package/lib/core/uicomposition/models/uilayout.d.ts.map +1 -0
  130. package/lib/core/uicomposition/models/uinavigation.d.ts +6 -0
  131. package/lib/core/uicomposition/models/uinavigation.d.ts.map +1 -0
  132. package/{src/lib/core/uicomposition/models/uiscreen.ts → lib/core/uicomposition/models/uiscreen.d.ts} +6 -6
  133. package/lib/core/uicomposition/models/uiscreen.d.ts.map +1 -0
  134. package/{src/lib/core/uicomposition/models/uisingle-column-layout.ts → lib/core/uicomposition/models/uisingle-column-layout.d.ts} +5 -5
  135. package/lib/core/uicomposition/models/uisingle-column-layout.d.ts.map +1 -0
  136. package/{src/lib/core/uicomposition/models/uiview.ts → lib/core/uicomposition/models/uiview.d.ts} +8 -9
  137. package/lib/core/uicomposition/models/uiview.d.ts.map +1 -0
  138. package/lib/core/uitheme/enums/uiaction-type.d.ts +10 -0
  139. package/lib/core/uitheme/enums/uiaction-type.d.ts.map +1 -0
  140. package/lib/core/uitheme/enums/uialignment-type.d.ts +6 -0
  141. package/lib/core/uitheme/enums/uialignment-type.d.ts.map +1 -0
  142. package/lib/core/uitheme/enums/uiaspect-type.d.ts +5 -0
  143. package/lib/core/uitheme/enums/uiaspect-type.d.ts.map +1 -0
  144. package/lib/core/uitheme/enums/uiasset.d.ts +354 -0
  145. package/lib/core/uitheme/enums/uiasset.d.ts.map +1 -0
  146. package/lib/core/uitheme/enums/uicolor.d.ts +130 -0
  147. package/lib/core/uitheme/enums/uicolor.d.ts.map +1 -0
  148. package/lib/core/uitheme/enums/uicontent-type.d.ts +9 -0
  149. package/lib/core/uitheme/enums/uicontent-type.d.ts.map +1 -0
  150. package/lib/core/uitheme/enums/uipadding-level.d.ts +11 -0
  151. package/lib/core/uitheme/enums/uipadding-level.d.ts.map +1 -0
  152. package/lib/core/uitheme/enums/uipresentation-style.d.ts +6 -0
  153. package/lib/core/uitheme/enums/uipresentation-style.d.ts.map +1 -0
  154. package/lib/core/uitheme/enums/uiradius-level.d.ts +9 -0
  155. package/lib/core/uitheme/enums/uiradius-level.d.ts.map +1 -0
  156. package/lib/core/uitheme/enums/uishadow-blur-radius.d.ts +4 -0
  157. package/lib/core/uitheme/enums/uishadow-blur-radius.d.ts.map +1 -0
  158. package/lib/core/uitheme/enums/uishadow-offset.d.ts +4 -0
  159. package/lib/core/uitheme/enums/uishadow-offset.d.ts.map +1 -0
  160. package/lib/core/uitheme/enums/uisize.d.ts +12 -0
  161. package/lib/core/uitheme/enums/uisize.d.ts.map +1 -0
  162. package/lib/core/uitheme/enums/uispacing-level.d.ts +7 -0
  163. package/lib/core/uitheme/enums/uispacing-level.d.ts.map +1 -0
  164. package/lib/core/uitheme/enums/uitext-style.d.ts +14 -0
  165. package/lib/core/uitheme/enums/uitext-style.d.ts.map +1 -0
  166. package/lib/core/uitheme/mapping/alignment-mapping.d.ts +3 -0
  167. package/lib/core/uitheme/mapping/alignment-mapping.d.ts.map +1 -0
  168. package/lib/core/uitheme/mapping/asset-mapping.d.ts +3 -0
  169. package/lib/core/uitheme/mapping/asset-mapping.d.ts.map +1 -0
  170. package/lib/core/uitheme/mapping/color-mapping.d.ts +3 -0
  171. package/lib/core/uitheme/mapping/color-mapping.d.ts.map +1 -0
  172. package/lib/core/uitheme/mapping/pad-mapping.d.ts +3 -0
  173. package/lib/core/uitheme/mapping/pad-mapping.d.ts.map +1 -0
  174. package/lib/core/uitheme/mapping/radius-mapping.d.ts +3 -0
  175. package/lib/core/uitheme/mapping/radius-mapping.d.ts.map +1 -0
  176. package/lib/core/uitheme/mapping/size-mapping.d.ts +4 -0
  177. package/lib/core/uitheme/mapping/size-mapping.d.ts.map +1 -0
  178. package/lib/core/uitheme/mapping/space-mapping.d.ts +3 -0
  179. package/lib/core/uitheme/mapping/space-mapping.d.ts.map +1 -0
  180. package/lib/core/uitheme/mapping/text-style-mapping.d.ts +3 -0
  181. package/lib/core/uitheme/mapping/text-style-mapping.d.ts.map +1 -0
  182. package/lib/core/uitheme/models/uiaction.d.ts +10 -0
  183. package/lib/core/uitheme/models/uiaction.d.ts.map +1 -0
  184. package/{src/lib/core/uitheme/models/uialignment.ts → lib/core/uitheme/models/uialignment.d.ts} +2 -2
  185. package/lib/core/uitheme/models/uialignment.d.ts.map +1 -0
  186. package/{src/lib/core/uitheme/models/uibackground.ts → lib/core/uitheme/models/uibackground.d.ts} +2 -2
  187. package/lib/core/uitheme/models/uibackground.d.ts.map +1 -0
  188. package/lib/core/uitheme/models/uipadding.d.ts +8 -0
  189. package/lib/core/uitheme/models/uipadding.d.ts.map +1 -0
  190. package/lib/core/uitheme/models/uiradius.d.ts +8 -0
  191. package/lib/core/uitheme/models/uiradius.d.ts.map +1 -0
  192. package/{src/lib/core/uitheme/models/uishadow.ts → lib/core/uitheme/models/uishadow.d.ts} +6 -6
  193. package/lib/core/uitheme/models/uishadow.d.ts.map +1 -0
  194. package/{src/lib/core/uitheme/models/uispacing.ts → lib/core/uitheme/models/uispacing.d.ts} +2 -2
  195. package/lib/core/uitheme/models/uispacing.d.ts.map +1 -0
  196. package/lib/core/utils/url-parser.util.d.ts +3 -0
  197. package/lib/core/utils/url-parser.util.d.ts.map +1 -0
  198. package/lib/core/view-models/uiscreen.viewmodel.d.ts +40 -0
  199. package/lib/core/view-models/uiscreen.viewmodel.d.ts.map +1 -0
  200. package/lib/directives/uiview.directive.d.ts +29 -0
  201. package/lib/directives/uiview.directive.d.ts.map +1 -0
  202. package/lib/sdui-routing.module.d.ts +10 -0
  203. package/lib/sdui-routing.module.d.ts.map +1 -0
  204. package/lib/sdui.component.d.ts +17 -0
  205. package/lib/sdui.component.d.ts.map +1 -0
  206. package/lib/sdui.module.d.ts +35 -0
  207. package/lib/sdui.module.d.ts.map +1 -0
  208. package/package.json +20 -16
  209. package/public-api.d.ts +5 -0
  210. package/public-api.d.ts.map +1 -0
  211. package/ng-package.json +0 -9
  212. package/src/index.ts +0 -1
  213. package/src/lib/components/navigation-controls/navigation-controls.component.html +0 -9
  214. package/src/lib/components/navigation-controls/navigation-controls.component.scss +0 -35
  215. package/src/lib/components/navigation-controls/navigation-controls.component.ts +0 -27
  216. package/src/lib/components/uicomponent/button/button.component.html +0 -4
  217. package/src/lib/components/uicomponent/button/button.component.scss +0 -11
  218. package/src/lib/components/uicomponent/button/button.component.ts +0 -64
  219. package/src/lib/components/uicomponent/column/column.component.html +0 -7
  220. package/src/lib/components/uicomponent/column/column.component.scss +0 -9
  221. package/src/lib/components/uicomponent/column/column.component.ts +0 -16
  222. package/src/lib/components/uicomponent/image/image.component.html +0 -1
  223. package/src/lib/components/uicomponent/image/image.component.scss +0 -3
  224. package/src/lib/components/uicomponent/image/image.component.ts +0 -69
  225. package/src/lib/components/uicomponent/label/label.component.html +0 -3
  226. package/src/lib/components/uicomponent/label/label.component.scss +0 -3
  227. package/src/lib/components/uicomponent/label/label.component.ts +0 -66
  228. package/src/lib/components/uicomponent/row/row.component.html +0 -7
  229. package/src/lib/components/uicomponent/row/row.component.scss +0 -8
  230. package/src/lib/components/uicomponent/row/row.component.ts +0 -16
  231. package/src/lib/components/uicomponent/row-divisor/row-divisor.component.html +0 -5
  232. package/src/lib/components/uicomponent/row-divisor/row-divisor.component.scss +0 -8
  233. package/src/lib/components/uicomponent/row-divisor/row-divisor.component.ts +0 -16
  234. package/src/lib/components/uicomponent/search-bar/search-bar.component.html +0 -7
  235. package/src/lib/components/uicomponent/search-bar/search-bar.component.scss +0 -7
  236. package/src/lib/components/uicomponent/search-bar/search-bar.component.ts +0 -129
  237. package/src/lib/components/uicomponent/space/space.component.html +0 -1
  238. package/src/lib/components/uicomponent/space/space.component.scss +0 -10
  239. package/src/lib/components/uicomponent/space/space.component.ts +0 -16
  240. package/src/lib/components/uicomponent/tag/tag.component.html +0 -3
  241. package/src/lib/components/uicomponent/tag/tag.component.scss +0 -7
  242. package/src/lib/components/uicomponent/tag/tag.component.ts +0 -54
  243. package/src/lib/components/uicomponent/uicomponent.component.html +0 -5
  244. package/src/lib/components/uicomponent/uicomponent.component.scss +0 -3
  245. package/src/lib/components/uicomponent/uicomponent.component.ts +0 -53
  246. package/src/lib/components/uicomponent/zstack/zstack.component.html +0 -6
  247. package/src/lib/components/uicomponent/zstack/zstack.component.scss +0 -12
  248. package/src/lib/components/uicomponent/zstack/zstack.component.ts +0 -16
  249. package/src/lib/components/uilayout/centered-content-layout/centered-content-layout.component.html +0 -20
  250. package/src/lib/components/uilayout/centered-content-layout/centered-content-layout.component.scss +0 -36
  251. package/src/lib/components/uilayout/centered-content-layout/centered-content-layout.component.ts +0 -21
  252. package/src/lib/components/uilayout/single-column-layout/single-column-layout.component.html +0 -22
  253. package/src/lib/components/uilayout/single-column-layout/single-column-layout.component.scss +0 -37
  254. package/src/lib/components/uilayout/single-column-layout/single-column-layout.component.ts +0 -27
  255. package/src/lib/components/uilayout/uinavigation/uinavigation.component.html +0 -8
  256. package/src/lib/components/uilayout/uinavigation/uinavigation.component.scss +0 -4
  257. package/src/lib/components/uilayout/uinavigation/uinavigation.component.ts +0 -12
  258. package/src/lib/components/uiscreen/uiscreen.component.html +0 -29
  259. package/src/lib/components/uiscreen/uiscreen.component.scss +0 -12
  260. package/src/lib/components/uiscreen/uiscreen.component.ts +0 -15
  261. package/src/lib/core/interfaces/sdui-config.interface.ts +0 -3
  262. package/src/lib/core/services/navigation.service.ts +0 -25
  263. package/src/lib/core/services/sdui-config.service.ts +0 -19
  264. package/src/lib/core/services/ui-action.service.ts +0 -36
  265. package/src/lib/core/services/uiscreen.service.ts +0 -185
  266. package/src/lib/core/tokens/sdui-config.token.ts +0 -3
  267. package/src/lib/core/uicomposition/enums/uicomponent-type.ts +0 -32
  268. package/src/lib/core/uicomposition/enums/uiplatform-type.ts +0 -4
  269. package/src/lib/core/uicomposition/enums/uiscene.ts +0 -3
  270. package/src/lib/core/uicomposition/enums/uiscreen-identifier.ts +0 -4
  271. package/src/lib/core/uicomposition/mapping/component-mapping.ts +0 -90
  272. package/src/lib/core/uicomposition/models/uicentered-content-layout.ts +0 -11
  273. package/src/lib/core/uicomposition/models/uielement.ts +0 -25
  274. package/src/lib/core/uicomposition/models/uilayout.ts +0 -4
  275. package/src/lib/core/uicomposition/models/uinavigation.ts +0 -6
  276. package/src/lib/core/uitheme/enums/uiaction-type.ts +0 -14
  277. package/src/lib/core/uitheme/enums/uialignment-type.ts +0 -5
  278. package/src/lib/core/uitheme/enums/uiaspect-type.ts +0 -4
  279. package/src/lib/core/uitheme/enums/uiasset.ts +0 -361
  280. package/src/lib/core/uitheme/enums/uicolor.ts +0 -129
  281. package/src/lib/core/uitheme/enums/uicontent-type.ts +0 -8
  282. package/src/lib/core/uitheme/enums/uipadding-level.ts +0 -10
  283. package/src/lib/core/uitheme/enums/uipresentation-style.ts +0 -5
  284. package/src/lib/core/uitheme/enums/uiradius-level.ts +0 -8
  285. package/src/lib/core/uitheme/enums/uishadow-blur-radius.ts +0 -3
  286. package/src/lib/core/uitheme/enums/uishadow-offset.ts +0 -3
  287. package/src/lib/core/uitheme/enums/uisize.ts +0 -12
  288. package/src/lib/core/uitheme/enums/uispacing-level.ts +0 -6
  289. package/src/lib/core/uitheme/enums/uitext-style.ts +0 -13
  290. package/src/lib/core/uitheme/mapping/alignment-mapping.ts +0 -7
  291. package/src/lib/core/uitheme/mapping/asset-mapping.ts +0 -363
  292. package/src/lib/core/uitheme/mapping/color-mapping.ts +0 -131
  293. package/src/lib/core/uitheme/mapping/pad-mapping.ts +0 -12
  294. package/src/lib/core/uitheme/mapping/radius-mapping.ts +0 -10
  295. package/src/lib/core/uitheme/mapping/size-mapping.ts +0 -25
  296. package/src/lib/core/uitheme/mapping/space-mapping.ts +0 -8
  297. package/src/lib/core/uitheme/mapping/text-style-mapping.ts +0 -15
  298. package/src/lib/core/uitheme/models/uiaction.ts +0 -10
  299. package/src/lib/core/uitheme/models/uipadding.ts +0 -8
  300. package/src/lib/core/uitheme/models/uiradius.ts +0 -8
  301. package/src/lib/core/uitheme/models/uiview.ts +0 -0
  302. package/src/lib/core/utils/url-parser.util.ts +0 -24
  303. package/src/lib/core/view-models/uiscreen.viewmodel.ts +0 -115
  304. package/src/lib/directives/uiview.directive.ts +0 -207
  305. package/src/lib/sdui-routing.module.ts +0 -22
  306. package/src/lib/sdui.component.html +0 -3
  307. package/src/lib/sdui.component.scss +0 -11
  308. package/src/lib/sdui.component.ts +0 -65
  309. package/src/lib/sdui.module.ts +0 -84
  310. package/src/public-api.ts +0 -16
  311. package/tsconfig.lib.json +0 -16
  312. package/tsconfig.spec.json +0 -12
@@ -0,0 +1,354 @@
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
+ }
354
+ //# sourceMappingURL=uiasset.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"uiasset.d.ts","sourceRoot":"","sources":["../../../../../../../libs/sdui/src/lib/core/uitheme/enums/uiasset.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,130 @@
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
+ }
130
+ //# sourceMappingURL=uicolor.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"uicolor.d.ts","sourceRoot":"","sources":["../../../../../../../libs/sdui/src/lib/core/uitheme/enums/uicolor.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,9 @@
1
+ export declare enum UIContentType {
2
+ VIDEO = "video",
3
+ AUDIO = "audio",
4
+ FILE = "file",
5
+ QUIZ = "quiz",
6
+ LINK = "link",
7
+ HTML = "html"
8
+ }
9
+ //# sourceMappingURL=uicontent-type.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"uicontent-type.d.ts","sourceRoot":"","sources":["../../../../../../../libs/sdui/src/lib/core/uitheme/enums/uicontent-type.ts"],"names":[],"mappings":"AAAA,oBAAY,aAAa;IACvB,KAAK,UAAU;IACf,KAAK,UAAU;IACf,IAAI,SAAS;IACb,IAAI,SAAS;IACb,IAAI,SAAS;IACb,IAAI,SAAS;CACd"}
@@ -0,0 +1,11 @@
1
+ export declare enum UIPaddingLevel {
2
+ P1 = "p1",// 4px
3
+ P2 = "p2",// 8px
4
+ P3 = "p3",// 16px
5
+ P4 = "p4",// 24px
6
+ P5 = "p5",// 32px
7
+ P6 = "p6",// 40px
8
+ P7 = "p7",// 48px
9
+ P8 = "p8"
10
+ }
11
+ //# sourceMappingURL=uipadding-level.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"uipadding-level.d.ts","sourceRoot":"","sources":["../../../../../../../libs/sdui/src/lib/core/uitheme/enums/uipadding-level.ts"],"names":[],"mappings":"AAAA,oBAAY,cAAc;IACxB,EAAE,OAAO,CAAE,MAAM;IACjB,EAAE,OAAO,CAAE,MAAM;IACjB,EAAE,OAAO,CAAE,OAAO;IAClB,EAAE,OAAO,CAAE,OAAO;IAClB,EAAE,OAAO,CAAE,OAAO;IAClB,EAAE,OAAO,CAAE,OAAO;IAClB,EAAE,OAAO,CAAE,OAAO;IAClB,EAAE,OAAO;CACV"}
@@ -0,0 +1,6 @@
1
+ export declare enum UIPresentationStyle {
2
+ PUSH = "push",
3
+ POPUP = "popup",
4
+ POPUP_FULL = "popup_full"
5
+ }
6
+ //# sourceMappingURL=uipresentation-style.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"uipresentation-style.d.ts","sourceRoot":"","sources":["../../../../../../../libs/sdui/src/lib/core/uitheme/enums/uipresentation-style.ts"],"names":[],"mappings":"AAAA,oBAAY,mBAAmB;IAC7B,IAAI,SAAS;IACb,KAAK,UAAU;IACf,UAAU,eAAe;CAC1B"}
@@ -0,0 +1,9 @@
1
+ export declare enum UIRadiusLevel {
2
+ R1 = "r1",// 3px
3
+ R2 = "r2",// 5px
4
+ R3 = "r3",// 8px
5
+ R4 = "r4",// 10px
6
+ R5 = "r5",// 12px
7
+ R50 = "r50"
8
+ }
9
+ //# sourceMappingURL=uiradius-level.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"uiradius-level.d.ts","sourceRoot":"","sources":["../../../../../../../libs/sdui/src/lib/core/uitheme/enums/uiradius-level.ts"],"names":[],"mappings":"AAAA,oBAAY,aAAa;IACvB,EAAE,OAAO,CAAE,MAAM;IACjB,EAAE,OAAO,CAAE,MAAM;IACjB,EAAE,OAAO,CAAE,MAAM;IACjB,EAAE,OAAO,CAAE,OAAO;IAClB,EAAE,OAAO,CAAE,OAAO;IAClB,GAAG,QAAQ;CACZ"}
@@ -0,0 +1,4 @@
1
+ export declare enum UIShadowBlurRadius {
2
+ B1 = "b1"
3
+ }
4
+ //# sourceMappingURL=uishadow-blur-radius.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"uishadow-blur-radius.d.ts","sourceRoot":"","sources":["../../../../../../../libs/sdui/src/lib/core/uitheme/enums/uishadow-blur-radius.ts"],"names":[],"mappings":"AAAA,oBAAY,kBAAkB;IAC5B,EAAE,OAAO;CACV"}
@@ -0,0 +1,4 @@
1
+ export declare enum UIShadowOffset {
2
+ S1 = "s1"
3
+ }
4
+ //# sourceMappingURL=uishadow-offset.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"uishadow-offset.d.ts","sourceRoot":"","sources":["../../../../../../../libs/sdui/src/lib/core/uitheme/enums/uishadow-offset.ts"],"names":[],"mappings":"AAAA,oBAAY,cAAc;IACxB,EAAE,OAAO;CACV"}
@@ -0,0 +1,12 @@
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
+ }
12
+ //# sourceMappingURL=uisize.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"uisize.d.ts","sourceRoot":"","sources":["../../../../../../../libs/sdui/src/lib/core/uitheme/enums/uisize.ts"],"names":[],"mappings":"AAAA,oBAAY,MAAM;IAChB,OAAO,YAAY,CAAE,SAAS;IAE9B,OAAO,YAAY,CAAE,QAAQ;IAC7B,OAAO,YAAY,CAAE,QAAQ;IAC7B,OAAO,YAAY,CAAE,QAAQ;IAC7B,OAAO,YAAY,CAAE,QAAQ;IAC7B,OAAO,YAAY,CAAE,QAAQ;IAC7B,OAAO,YAAY,CAAE,QAAQ;IAC7B,OAAO,YAAY,CAAE,QAAQ;IAC7B,OAAO,YAAY;CACpB"}
@@ -0,0 +1,7 @@
1
+ export declare enum UISpacingLevel {
2
+ S1 = "s1",// 4px
3
+ S2 = "s2",// 8px
4
+ S3 = "s3",// 16px
5
+ S4 = "s4"
6
+ }
7
+ //# sourceMappingURL=uispacing-level.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"uispacing-level.d.ts","sourceRoot":"","sources":["../../../../../../../libs/sdui/src/lib/core/uitheme/enums/uispacing-level.ts"],"names":[],"mappings":"AAAA,oBAAY,cAAc;IACxB,EAAE,OAAO,CAAE,MAAM;IACjB,EAAE,OAAO,CAAE,MAAM;IACjB,EAAE,OAAO,CAAE,OAAO;IAClB,EAAE,OAAO;CACV"}
@@ -0,0 +1,14 @@
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
+ }
14
+ //# sourceMappingURL=uitext-style.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"uitext-style.d.ts","sourceRoot":"","sources":["../../../../../../../libs/sdui/src/lib/core/uitheme/enums/uitext-style.ts"],"names":[],"mappings":"AAAA,oBAAY,WAAW;IACrB,WAAW,gBAAgB;IAC3B,OAAO,YAAY;IACnB,OAAO,YAAY;IACnB,OAAO,YAAY;IACnB,OAAO,YAAY;IACnB,QAAQ,aAAa;IACrB,WAAW,gBAAgB;IAC3B,IAAI,SAAS;IACb,SAAS,cAAc;IACvB,SAAS,cAAc;IACvB,QAAQ,aAAa;CACtB"}
@@ -0,0 +1,3 @@
1
+ import { UIAlignmentType } from '../enums/uialignment-type';
2
+ export declare const alignmentMapping: Record<UIAlignmentType, string>;
3
+ //# sourceMappingURL=alignment-mapping.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"alignment-mapping.d.ts","sourceRoot":"","sources":["../../../../../../../libs/sdui/src/lib/core/uitheme/mapping/alignment-mapping.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,2BAA2B,CAAC;AAE5D,eAAO,MAAM,gBAAgB,EAAE,MAAM,CAAC,eAAe,EAAE,MAAM,CAI5D,CAAC"}
@@ -0,0 +1,3 @@
1
+ import { UIAsset } from '../enums/uiasset';
2
+ export declare const assetMapping: Record<UIAsset, string>;
3
+ //# sourceMappingURL=asset-mapping.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"asset-mapping.d.ts","sourceRoot":"","sources":["../../../../../../../libs/sdui/src/lib/core/uitheme/mapping/asset-mapping.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,kBAAkB,CAAC;AAE3C,eAAO,MAAM,YAAY,EAAE,MAAM,CAAC,OAAO,EAAE,MAAM,CAwWhD,CAAC"}