@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,15 @@
1
+ import { AfterViewInit, ElementRef, OnInit, Renderer2 } from '@angular/core';
2
+ import { UIComponent } from '../../../core/uicomposition/models/uicomponent';
3
+ import * as i0 from "@angular/core";
4
+ export declare class ImageComponent implements OnInit, AfterViewInit {
5
+ uiComponent: UIComponent;
6
+ private renderer;
7
+ imgElementRef: ElementRef<HTMLImageElement>;
8
+ constructor(uiComponent: UIComponent, renderer: Renderer2);
9
+ ngOnInit(): void;
10
+ ngAfterViewInit(): void;
11
+ private applyElement;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<ImageComponent, never>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<ImageComponent, "edm-sdui-image", never, {}, {}, never, never, false, never>;
14
+ }
15
+ //# sourceMappingURL=image.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"image.component.d.ts","sourceRoot":"","sources":["../../../../../../../libs/sdui/src/lib/components/uicomponent/image/image.component.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,aAAa,EAEb,UAAU,EAEV,MAAM,EACN,SAAS,EAEV,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,WAAW,EAAE,MAAM,gDAAgD,CAAC;;AAQ7E,qBAMa,cAAe,YAAW,MAAM,EAAE,aAAa;IAI1B,WAAW,EAAE,WAAW;IACtD,OAAO,CAAC,QAAQ;IAJO,aAAa,EAAG,UAAU,CAAC,gBAAgB,CAAC,CAAC;gBAGtC,WAAW,EAAE,WAAW,EAC9C,QAAQ,EAAE,SAAS;IAG7B,QAAQ,IAAI,IAAI;IAIhB,eAAe,IAAI,IAAI;IAMvB,OAAO,CAAC,YAAY;yCAlBT,cAAc;2CAAd,cAAc;CA6C1B"}
@@ -0,0 +1,15 @@
1
+ import { AfterViewInit, ElementRef, OnInit, Renderer2 } from '@angular/core';
2
+ import { UIComponent } from '../../../core/uicomposition/models/uicomponent';
3
+ import * as i0 from "@angular/core";
4
+ export declare class LabelComponent implements OnInit, AfterViewInit {
5
+ uiComponent: UIComponent;
6
+ private renderer;
7
+ spanElementRef: ElementRef<HTMLImageElement>;
8
+ constructor(uiComponent: UIComponent, renderer: Renderer2);
9
+ ngOnInit(): void;
10
+ ngAfterViewInit(): void;
11
+ private applyElement;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<LabelComponent, never>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<LabelComponent, "edm-sdui-label", never, {}, {}, never, never, false, never>;
14
+ }
15
+ //# sourceMappingURL=label.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"label.component.d.ts","sourceRoot":"","sources":["../../../../../../../libs/sdui/src/lib/components/uicomponent/label/label.component.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,aAAa,EAEb,UAAU,EAEV,MAAM,EACN,SAAS,EAEV,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,WAAW,EAAE,MAAM,gDAAgD,CAAC;;AAK7E,qBAMa,cAAe,YAAW,MAAM,EAAE,aAAa;IAI1B,WAAW,EAAE,WAAW;IACtD,OAAO,CAAC,QAAQ;IAJQ,cAAc,EAAG,UAAU,CAAC,gBAAgB,CAAC,CAAC;gBAGxC,WAAW,EAAE,WAAW,EAC9C,QAAQ,EAAE,SAAS;IAG7B,QAAQ,IAAI,IAAI;IAIhB,eAAe,IAAI,IAAI;IAMvB,OAAO,CAAC,YAAY;yCAlBT,cAAc;2CAAd,cAAc;CA6C1B"}
@@ -0,0 +1,11 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { UIComponent } from '../../../core/uicomposition/models/uicomponent';
3
+ import * as i0 from "@angular/core";
4
+ export declare class RowComponent implements OnInit {
5
+ uiComponent: UIComponent;
6
+ constructor(uiComponent: UIComponent);
7
+ ngOnInit(): void;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<RowComponent, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<RowComponent, "edm-sdui-row", never, {}, {}, never, never, false, never>;
10
+ }
11
+ //# sourceMappingURL=row.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"row.component.d.ts","sourceRoot":"","sources":["../../../../../../../libs/sdui/src/lib/components/uicomponent/row/row.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAqB,MAAM,EAAE,MAAM,eAAe,CAAC;AAC1D,OAAO,EAAE,WAAW,EAAE,MAAM,gDAAgD,CAAC;;AAE7E,qBAMa,YAAa,YAAW,MAAM;IACC,WAAW,EAAE,WAAW;gBAAxB,WAAW,EAAE,WAAW;IAElE,QAAQ,IAAI,IAAI;yCAHL,YAAY;2CAAZ,YAAY;CAMxB"}
@@ -0,0 +1,11 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { UIComponent } from '../../../core/uicomposition/models/uicomponent';
3
+ import * as i0 from "@angular/core";
4
+ export declare class RowDivisorComponent implements OnInit {
5
+ uiComponent: UIComponent;
6
+ constructor(uiComponent: UIComponent);
7
+ ngOnInit(): void;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<RowDivisorComponent, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<RowDivisorComponent, "edm-sdui-row-divisor", never, {}, {}, never, never, false, never>;
10
+ }
11
+ //# sourceMappingURL=row-divisor.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"row-divisor.component.d.ts","sourceRoot":"","sources":["../../../../../../../libs/sdui/src/lib/components/uicomponent/row-divisor/row-divisor.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAqB,MAAM,EAAE,MAAM,eAAe,CAAC;AAC1D,OAAO,EAAE,WAAW,EAAE,MAAM,gDAAgD,CAAC;;AAE7E,qBAMa,mBAAoB,YAAW,MAAM;IACN,WAAW,EAAE,WAAW;gBAAxB,WAAW,EAAE,WAAW;IAElE,QAAQ,IAAI,IAAI;yCAHL,mBAAmB;2CAAnB,mBAAmB;CAM/B"}
@@ -0,0 +1,17 @@
1
+ import { AfterViewInit, ElementRef, OnInit, Renderer2 } from '@angular/core';
2
+ import { UIComponent } from '../../../core/uicomposition/models/uicomponent';
3
+ import { UIActionService } from '../../../core/services/ui-action.service';
4
+ import * as i0 from "@angular/core";
5
+ export declare class SearchBarComponent implements OnInit, AfterViewInit {
6
+ private actionService;
7
+ uiComponent: UIComponent;
8
+ private renderer;
9
+ inputElementRef: ElementRef<HTMLInputElement>;
10
+ constructor(actionService: UIActionService, uiComponent: UIComponent, renderer: Renderer2);
11
+ ngOnInit(): void;
12
+ ngAfterViewInit(): void;
13
+ private applyElement;
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<SearchBarComponent, never>;
15
+ static ɵcmp: i0.ɵɵComponentDeclaration<SearchBarComponent, "edm-sdui-search-bar", never, {}, {}, never, never, false, never>;
16
+ }
17
+ //# sourceMappingURL=search-bar.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"search-bar.component.d.ts","sourceRoot":"","sources":["../../../../../../../libs/sdui/src/lib/components/uicomponent/search-bar/search-bar.component.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,aAAa,EAEb,UAAU,EAEV,MAAM,EACN,SAAS,EAEV,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,WAAW,EAAE,MAAM,gDAAgD,CAAC;AAI7E,OAAO,EAAE,eAAe,EAAE,MAAM,0CAA0C,CAAC;;AAE3E,qBAMa,kBAAmB,YAAW,MAAM,EAAE,aAAa;IAI5D,OAAO,CAAC,aAAa;IACS,WAAW,EAAE,WAAW;IACtD,OAAO,CAAC,QAAQ;IALS,eAAe,EAAG,UAAU,CAAC,gBAAgB,CAAC,CAAC;gBAGhE,aAAa,EAAE,eAAe,EACR,WAAW,EAAE,WAAW,EAC9C,QAAQ,EAAE,SAAS;IAG7B,QAAQ,IAAI,IAAI;IAIhB,eAAe,IAAI,IAAI;IAyDvB,OAAO,CAAC,YAAY;yCAtET,kBAAkB;2CAAlB,kBAAkB;CA2G9B"}
@@ -0,0 +1,11 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { UIComponent } from '../../../core/uicomposition/models/uicomponent';
3
+ import * as i0 from "@angular/core";
4
+ export declare class SpaceComponent implements OnInit {
5
+ uiComponent: UIComponent;
6
+ constructor(uiComponent: UIComponent);
7
+ ngOnInit(): void;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<SpaceComponent, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<SpaceComponent, "edm-sdui-space", never, {}, {}, never, never, false, never>;
10
+ }
11
+ //# sourceMappingURL=space.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"space.component.d.ts","sourceRoot":"","sources":["../../../../../../../libs/sdui/src/lib/components/uicomponent/space/space.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAA4B,MAAM,EAAE,MAAM,eAAe,CAAC;AACjE,OAAO,EAAE,WAAW,EAAE,MAAM,gDAAgD,CAAC;;AAE7E,qBAMa,cAAe,YAAW,MAAM;IACD,WAAW,EAAE,WAAW;gBAAxB,WAAW,EAAE,WAAW;IAElE,QAAQ,IAAI,IAAI;yCAHL,cAAc;2CAAd,cAAc;CAM1B"}
@@ -0,0 +1,17 @@
1
+ import { AfterViewInit, ElementRef, OnInit, Renderer2 } from "@angular/core";
2
+ import { UIComponent } from "../../../core/uicomposition/models/uicomponent";
3
+ import * as i0 from "@angular/core";
4
+ export declare class TagComponent implements OnInit, AfterViewInit {
5
+ uiComponent: UIComponent;
6
+ private renderer;
7
+ tagElementRef: ElementRef<HTMLImageElement>;
8
+ tagNameElementRef: ElementRef<HTMLImageElement>;
9
+ constructor(uiComponent: UIComponent, renderer: Renderer2);
10
+ ngOnInit(): void;
11
+ ngAfterViewInit(): void;
12
+ private applyElement;
13
+ private applyLabelElement;
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<TagComponent, never>;
15
+ static ɵcmp: i0.ɵɵComponentDeclaration<TagComponent, "ng-component", never, {}, {}, never, never, false, never>;
16
+ }
17
+ //# sourceMappingURL=tag.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"tag.component.d.ts","sourceRoot":"","sources":["../../../../../../../libs/sdui/src/lib/components/uicomponent/tag/tag.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAa,UAAU,EAAU,MAAM,EAAE,SAAS,EAAa,MAAM,eAAe,CAAC;AAC3G,OAAO,EAAE,WAAW,EAAE,MAAM,gDAAgD,CAAC;;AAK7E,qBAKa,YAAa,YAAW,MAAM,EAAE,aAAa;IAKxB,WAAW,EAAE,WAAW;IACtD,OAAO,CAAC,QAAQ;IALS,aAAa,EAAG,UAAU,CAAC,gBAAgB,CAAC,CAAC;IACzC,iBAAiB,EAAG,UAAU,CAAC,gBAAgB,CAAC,CAAC;gBAGhD,WAAW,EAAE,WAAW,EAC9C,QAAQ,EAAE,SAAS;IAG3B,QAAQ,IAAI,IAAI;IAIhB,eAAe,IAAI,IAAI;IAUvB,OAAO,CAAC,YAAY;IAIpB,OAAO,CAAC,iBAAiB;yCA3BhB,YAAY;2CAAZ,YAAY;CA0CxB"}
@@ -0,0 +1,17 @@
1
+ import { ChangeDetectorRef, Injector, OnChanges, OnInit, SimpleChanges, Type } from '@angular/core';
2
+ import { UIComponent } from '../../core/uicomposition/models/uicomponent';
3
+ import * as i0 from "@angular/core";
4
+ export declare class UIComponentComponent implements OnInit, OnChanges {
5
+ private injector;
6
+ private cdr;
7
+ uiComponent?: UIComponent;
8
+ componentToRender?: Type<any>;
9
+ componentInjector: Injector;
10
+ constructor(injector: Injector, cdr: ChangeDetectorRef);
11
+ ngOnInit(): void;
12
+ ngOnChanges(changes: SimpleChanges): void;
13
+ private initializeComponent;
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<UIComponentComponent, never>;
15
+ static ɵcmp: i0.ɵɵComponentDeclaration<UIComponentComponent, "edm-sdui-component", never, { "uiComponent": { "alias": "uiComponent"; "required": false; }; }, {}, never, never, false, never>;
16
+ }
17
+ //# sourceMappingURL=uicomponent.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"uicomponent.component.d.ts","sourceRoot":"","sources":["../../../../../../libs/sdui/src/lib/components/uicomponent/uicomponent.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,iBAAiB,EAEjB,QAAQ,EAER,SAAS,EACT,MAAM,EACN,aAAa,EACb,IAAI,EACL,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,WAAW,EAAE,MAAM,6CAA6C,CAAC;;AAG1E,qBAMa,oBAAqB,YAAW,MAAM,EAAE,SAAS;IAKhD,OAAO,CAAC,QAAQ;IAAY,OAAO,CAAC,GAAG;IAJ1C,WAAW,CAAC,EAAE,WAAW,CAAC;IACnC,iBAAiB,CAAC,EAAE,IAAI,CAAC,GAAG,CAAC,CAAC;IAC9B,iBAAiB,EAAG,QAAQ,CAAC;gBAET,QAAQ,EAAE,QAAQ,EAAU,GAAG,EAAE,iBAAiB;IAEtE,QAAQ,IAAI,IAAI;IAIhB,WAAW,CAAC,OAAO,EAAE,aAAa,GAAG,IAAI;IAMzC,OAAO,CAAC,mBAAmB;yCAjBhB,oBAAoB;2CAApB,oBAAoB;CAgChC"}
@@ -0,0 +1,11 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { UIComponent } from '../../../core/uicomposition/models/uicomponent';
3
+ import * as i0 from "@angular/core";
4
+ export declare class ZStackComponent implements OnInit {
5
+ uiComponent: UIComponent;
6
+ constructor(uiComponent: UIComponent);
7
+ ngOnInit(): void;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<ZStackComponent, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<ZStackComponent, "edm-sdui-zstack", never, {}, {}, never, never, false, never>;
10
+ }
11
+ //# sourceMappingURL=zstack.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"zstack.component.d.ts","sourceRoot":"","sources":["../../../../../../../libs/sdui/src/lib/components/uicomponent/zstack/zstack.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAqB,MAAM,EAAE,MAAM,eAAe,CAAC;AAC1D,OAAO,EAAE,WAAW,EAAE,MAAM,gDAAgD,CAAC;;AAE7E,qBAMa,eAAgB,YAAW,MAAM;IACF,WAAW,EAAE,WAAW;gBAAxB,WAAW,EAAE,WAAW;IAElE,QAAQ,IAAI,IAAI;yCAHL,eAAe;2CAAf,eAAe;CAM3B"}
@@ -0,0 +1,10 @@
1
+ import { OnChanges, SimpleChanges } from '@angular/core';
2
+ import { UICenteredContentLayout } from '../../../core/uicomposition/models/uicentered-content-layout';
3
+ import * as i0 from "@angular/core";
4
+ export declare class CenteredContentLayoutComponent implements OnChanges {
5
+ uiLayout?: UICenteredContentLayout;
6
+ ngOnChanges(changes: SimpleChanges): void;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<CenteredContentLayoutComponent, never>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<CenteredContentLayoutComponent, "edm-sdui-centered-content-layout", never, { "uiLayout": { "alias": "uiLayout"; "required": false; }; }, {}, never, never, false, never>;
9
+ }
10
+ //# sourceMappingURL=centered-content-layout.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"centered-content-layout.component.d.ts","sourceRoot":"","sources":["../../../../../../../libs/sdui/src/lib/components/uilayout/centered-content-layout/centered-content-layout.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAoB,SAAS,EAAE,aAAa,EAAE,MAAM,eAAe,CAAC;AAC3E,OAAO,EAAE,uBAAuB,EAAE,MAAM,8DAA8D,CAAC;;AAEvG,qBAMa,8BAA+B,YAAW,SAAS;IACrD,QAAQ,CAAC,EAAE,uBAAuB,CAAC;IAE5C,WAAW,CAAC,OAAO,EAAE,aAAa,GAAG,IAAI;yCAH9B,8BAA8B;2CAA9B,8BAA8B;CAW1C"}
@@ -0,0 +1,10 @@
1
+ import { OnChanges, SimpleChanges } from '@angular/core';
2
+ import { UISingleColumnLayout } from '../../../core/uicomposition/models/uisingle-column-layout';
3
+ import * as i0 from "@angular/core";
4
+ export declare class SingleColumnLayoutComponent implements OnChanges {
5
+ uiLayout?: UISingleColumnLayout;
6
+ ngOnChanges(changes: SimpleChanges): void;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<SingleColumnLayoutComponent, never>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<SingleColumnLayoutComponent, "edm-sdui-single-column-layout", never, { "uiLayout": { "alias": "uiLayout"; "required": false; }; }, {}, never, never, false, never>;
9
+ }
10
+ //# sourceMappingURL=single-column-layout.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"single-column-layout.component.d.ts","sourceRoot":"","sources":["../../../../../../../libs/sdui/src/lib/components/uilayout/single-column-layout/single-column-layout.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAIL,SAAS,EACT,aAAa,EACd,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,oBAAoB,EAAE,MAAM,2DAA2D,CAAC;;AAEjG,qBAMa,2BAA4B,YAAW,SAAS;IAClD,QAAQ,CAAC,EAAE,oBAAoB,CAAC;IAEzC,WAAW,CAAC,OAAO,EAAE,aAAa,GAAG,IAAI;yCAH9B,2BAA2B;2CAA3B,2BAA2B;CAWvC"}
@@ -0,0 +1,8 @@
1
+ import { UINavigation } from '../../../core/uicomposition/models/uinavigation';
2
+ import * as i0 from "@angular/core";
3
+ export declare class UINavigationComponent {
4
+ uiNavigation?: UINavigation;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<UINavigationComponent, never>;
6
+ static ɵcmp: i0.ɵɵComponentDeclaration<UINavigationComponent, "edm-sdui-navigation", never, { "uiNavigation": { "alias": "uiNavigation"; "required": false; }; }, {}, never, never, false, never>;
7
+ }
8
+ //# sourceMappingURL=uinavigation.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"uinavigation.component.d.ts","sourceRoot":"","sources":["../../../../../../../libs/sdui/src/lib/components/uilayout/uinavigation/uinavigation.component.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,YAAY,EAAE,MAAM,iDAAiD,CAAC;;AAE/E,qBAMa,qBAAqB;IACvB,YAAY,CAAC,EAAE,YAAY,CAAC;yCAD1B,qBAAqB;2CAArB,qBAAqB;CAEjC"}
@@ -0,0 +1,11 @@
1
+ import { UIScreenViewModel } from '../../core/view-models/uiscreen.viewmodel';
2
+ import { UIScreenIdentifier } from '../../core/uicomposition/enums/uiscreen-identifier';
3
+ import * as i0 from "@angular/core";
4
+ export declare class UIScreenComponent {
5
+ viewModel: UIScreenViewModel;
6
+ readonly UIScreenIdentifier: typeof UIScreenIdentifier;
7
+ constructor(viewModel: UIScreenViewModel);
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<UIScreenComponent, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<UIScreenComponent, "edm-sdui-uiscreen", never, {}, {}, never, never, false, never>;
10
+ }
11
+ //# sourceMappingURL=uiscreen.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"uiscreen.component.d.ts","sourceRoot":"","sources":["../../../../../../libs/sdui/src/lib/components/uiscreen/uiscreen.component.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,iBAAiB,EAAE,MAAM,2CAA2C,CAAC;AAC9E,OAAO,EAAE,kBAAkB,EAAE,MAAM,oDAAoD,CAAC;;AAExF,qBAMa,iBAAiB;IAGT,SAAS,EAAE,iBAAiB;IAF/C,QAAQ,CAAC,kBAAkB,4BAAsB;gBAE9B,SAAS,EAAE,iBAAiB;yCAHpC,iBAAiB;2CAAjB,iBAAiB;CAI7B"}
@@ -0,0 +1,11 @@
1
+ import { Router } from '@angular/router';
2
+ import { UIAction } from '../uitheme/models/uiaction';
3
+ import * as i0 from "@angular/core";
4
+ export declare class UIActionService {
5
+ private router;
6
+ constructor(router: Router);
7
+ execute(action: UIAction): void;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<UIActionService, never>;
9
+ static ɵprov: i0.ɵɵInjectableDeclaration<UIActionService>;
10
+ }
11
+ //# sourceMappingURL=ui-action.service.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ui-action.service.d.ts","sourceRoot":"","sources":["../../../../../../libs/sdui/src/lib/core/services/ui-action.service.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,MAAM,EAAE,MAAM,iBAAiB,CAAC;AAEzC,OAAO,EAAE,QAAQ,EAAE,MAAM,4BAA4B,CAAC;;AAItD,qBACa,eAAe;IACd,OAAO,CAAC,MAAM;gBAAN,MAAM,EAAE,MAAM;IAElC,OAAO,CAAC,MAAM,EAAE,QAAQ,GAAG,IAAI;yCAHpB,eAAe;6CAAf,eAAe;CA2B3B"}
@@ -0,0 +1,24 @@
1
+ import { Observable } from 'rxjs';
2
+ import { HttpClient } from '@angular/common/http';
3
+ import { UIScreen } from '../uicomposition/models/uiscreen';
4
+ import * as i0 from "@angular/core";
5
+ export declare class UIScreenService {
6
+ private http;
7
+ private baseUrl;
8
+ constructor(http: HttpClient, baseUrl?: string);
9
+ getUIScreen(url: string): Observable<UIScreen>;
10
+ private mapToUIScreen;
11
+ private getLayout;
12
+ private mapToSingleColumnLayout;
13
+ private mapToCenteredContentLayout;
14
+ private mapToUINavigation;
15
+ private mapToUIComponent;
16
+ private mapToUIElement;
17
+ private mapToUIView;
18
+ private mapBackground;
19
+ private mapAction;
20
+ private mapRadius;
21
+ static ɵfac: i0.ɵɵFactoryDeclaration<UIScreenService, [null, { optional: true; }]>;
22
+ static ɵprov: i0.ɵɵInjectableDeclaration<UIScreenService>;
23
+ }
24
+ //# sourceMappingURL=uiscreen.service.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"uiscreen.service.d.ts","sourceRoot":"","sources":["../../../../../../libs/sdui/src/lib/core/services/uiscreen.service.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAO,MAAM,MAAM,CAAC;AACvC,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAC;AAClD,OAAO,EAAE,QAAQ,EAAE,MAAM,kCAAkC,CAAC;;AA2B5D,qBAGa,eAAe;IAExB,OAAO,CAAC,IAAI;IACuB,OAAO,CAAC,OAAO;gBAD1C,IAAI,EAAE,UAAU,EACmB,OAAO,GAAE,MAAW;IAGjE,WAAW,CAAC,GAAG,EAAE,MAAM,GAAG,UAAU,CAAC,QAAQ,CAAC;IAQ9C,OAAO,CAAC,aAAa;IAgBrB,OAAO,CAAC,SAAS;IAgBjB,OAAO,CAAC,uBAAuB;IAW/B,OAAO,CAAC,0BAA0B;IAclC,OAAO,CAAC,iBAAiB;IASzB,OAAO,CAAC,gBAAgB;IAUxB,OAAO,CAAC,cAAc;IAqBtB,OAAO,CAAC,WAAW;IAgBnB,OAAO,CAAC,aAAa;IAMrB,OAAO,CAAC,SAAS;IAQjB,OAAO,CAAC,SAAS;yCA7IN,eAAe;6CAAf,eAAe;CAuJ3B"}
@@ -0,0 +1,3 @@
1
+ import { InjectionToken } from '@angular/core';
2
+ export declare const SDUI_BASE_URL: InjectionToken<string>;
3
+ //# sourceMappingURL=sdui-config.token.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"sdui-config.token.d.ts","sourceRoot":"","sources":["../../../../../../libs/sdui/src/lib/core/tokens/sdui-config.token.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,eAAe,CAAC;AAE/C,eAAO,MAAM,aAAa,wBAA8C,CAAC"}
@@ -0,0 +1,20 @@
1
+ export declare enum UIComponentType {
2
+ ROW = "ROW",
3
+ ROW_DIVISOR = "ROW_DIVISOR",
4
+ COLUMN = "COLUMN",
5
+ Z_STACK = "Z_STACK",
6
+ BUTTON = "BUTTON",
7
+ LABEL = "LABEL",
8
+ IMAGE = "IMAGE",
9
+ SPACE = "SPACE",
10
+ VIDEO_PLAYER_HLS = "VIDEO_PLAYER_HLS",
11
+ VIDEO_PLAYER_WEB = "VIDEO_PLAYER_WEB",
12
+ MEDIA_TYPE = "MEDIA_TYPE",
13
+ MEDIA_CONTENT = "MEDIA_CONTENT",
14
+ SEARCH_BAR = "SEARCH_BAR",
15
+ SEARCH_BAR_DISMISS = "SEARCH_BAR_DISMISS",
16
+ PICKER = "PICKER",
17
+ PICKER_ITEM = "PICKER_ITEM",
18
+ TAG = "TAG"
19
+ }
20
+ //# sourceMappingURL=uicomponent-type.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"uicomponent-type.d.ts","sourceRoot":"","sources":["../../../../../../../libs/sdui/src/lib/core/uicomposition/enums/uicomponent-type.ts"],"names":[],"mappings":"AAAA,oBAAY,eAAe;IAEzB,GAAG,QAAQ;IACX,WAAW,gBAAgB;IAC3B,MAAM,WAAW;IACjB,OAAO,YAAY;IAGnB,MAAM,WAAW;IACjB,KAAK,UAAU;IACf,KAAK,UAAU;IACf,KAAK,UAAU;IAGf,gBAAgB,qBAAqB;IACrC,gBAAgB,qBAAqB;IAGrC,UAAU,eAAe;IACzB,aAAa,kBAAkB;IAG/B,UAAU,eAAe;IACzB,kBAAkB,uBAAuB;IAGzC,MAAM,WAAW;IACjB,WAAW,gBAAgB;IAG3B,GAAG,QAAQ;CACZ"}
@@ -0,0 +1,5 @@
1
+ export declare enum UIPlatformType {
2
+ iOS = "iOS",
3
+ Android = "Android"
4
+ }
5
+ //# sourceMappingURL=uiplatform-type.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"uiplatform-type.d.ts","sourceRoot":"","sources":["../../../../../../../libs/sdui/src/lib/core/uicomposition/enums/uiplatform-type.ts"],"names":[],"mappings":"AAAA,oBAAY,cAAc;IACxB,GAAG,QAAQ;IACX,OAAO,YAAY;CACpB"}
@@ -0,0 +1,4 @@
1
+ export declare enum UIScene {
2
+ ACTIVITY_LIST = "ACTIVITY_LIST"
3
+ }
4
+ //# sourceMappingURL=uiscene.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"uiscene.d.ts","sourceRoot":"","sources":["../../../../../../../libs/sdui/src/lib/core/uicomposition/enums/uiscene.ts"],"names":[],"mappings":"AAAA,oBAAY,OAAO;IACjB,aAAa,kBAAkB;CAChC"}
@@ -0,0 +1,5 @@
1
+ export declare enum UIScreenIdentifier {
2
+ SINGLE_COLUMN = "SINGLE_COLUMN",
3
+ CENTERED_CONTENT = "CENTERED_CONTENT"
4
+ }
5
+ //# sourceMappingURL=uiscreen-identifier.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"uiscreen-identifier.d.ts","sourceRoot":"","sources":["../../../../../../../libs/sdui/src/lib/core/uicomposition/enums/uiscreen-identifier.ts"],"names":[],"mappings":"AAAA,oBAAY,kBAAkB;IAC5B,aAAa,kBAAkB;IAC/B,gBAAgB,qBAAqB;CACtC"}
@@ -0,0 +1,4 @@
1
+ import { Type } from '@angular/core';
2
+ import { UIComponentType } from '../enums/uicomponent-type';
3
+ export declare const componentMapping: Record<UIComponentType, () => Promise<Type<any>>>;
4
+ //# sourceMappingURL=component-mapping.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"component-mapping.d.ts","sourceRoot":"","sources":["../../../../../../../libs/sdui/src/lib/core/uicomposition/mapping/component-mapping.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,eAAe,CAAC;AACrC,OAAO,EAAE,eAAe,EAAE,MAAM,2BAA2B,CAAC;AAE5D,eAAO,MAAM,gBAAgB,EAAE,MAAM,CACnC,eAAe,EACf,MAAM,OAAO,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAoFzB,CAAC"}
@@ -0,0 +1,11 @@
1
+ import { UIComponent } from './uicomponent';
2
+ import { UILayout } from './uilayout';
3
+ import { UINavigation } from './uinavigation';
4
+ export interface UICenteredContentLayout extends UILayout {
5
+ nav?: UINavigation | null;
6
+ backgroundComponent?: UIComponent | null;
7
+ header?: UIComponent | null;
8
+ centered?: UIComponent | null;
9
+ footer?: UIComponent | null;
10
+ }
11
+ //# sourceMappingURL=uicentered-content-layout.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"uicentered-content-layout.d.ts","sourceRoot":"","sources":["../../../../../../../libs/sdui/src/lib/core/uicomposition/models/uicentered-content-layout.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAC5C,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AACtC,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAE9C,MAAM,WAAW,uBAAwB,SAAQ,QAAQ;IACvD,GAAG,CAAC,EAAE,YAAY,GAAG,IAAI,CAAC;IAC1B,mBAAmB,CAAC,EAAE,WAAW,GAAG,IAAI,CAAC;IACzC,MAAM,CAAC,EAAE,WAAW,GAAG,IAAI,CAAC;IAC5B,QAAQ,CAAC,EAAE,WAAW,GAAG,IAAI,CAAC;IAC9B,MAAM,CAAC,EAAE,WAAW,GAAG,IAAI,CAAC;CAC7B"}
@@ -1,10 +1,10 @@
1
1
  import { UIComponentType } from '../enums/uicomponent-type';
2
2
  import { UIPlatformType } from '../enums/uiplatform-type';
3
3
  import { UIElement } from './uielement';
4
-
5
4
  export interface UIComponent {
6
- type: UIComponentType;
7
- components?: UIComponent[] | null;
8
- element?: UIElement | null;
9
- excludedPlatforms?: UIPlatformType[] | null;
5
+ type: UIComponentType;
6
+ components?: UIComponent[] | null;
7
+ element?: UIElement | null;
8
+ excludedPlatforms?: UIPlatformType[] | null;
10
9
  }
10
+ //# sourceMappingURL=uicomponent.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"uicomponent.d.ts","sourceRoot":"","sources":["../../../../../../../libs/sdui/src/lib/core/uicomposition/models/uicomponent.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,2BAA2B,CAAC;AAC5D,OAAO,EAAE,cAAc,EAAE,MAAM,0BAA0B,CAAC;AAC1D,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAExC,MAAM,WAAW,WAAW;IAC1B,IAAI,EAAE,eAAe,CAAC;IACtB,UAAU,CAAC,EAAE,WAAW,EAAE,GAAG,IAAI,CAAC;IAClC,OAAO,CAAC,EAAE,SAAS,GAAG,IAAI,CAAC;IAC3B,iBAAiB,CAAC,EAAE,cAAc,EAAE,GAAG,IAAI,CAAC;CAC7C"}
@@ -0,0 +1,25 @@
1
+ import { UIAspectType } from '../../uitheme/enums/uiaspect-type';
2
+ import { UIAsset } from '../../uitheme/enums/uiasset';
3
+ import { UIColor } from '../../uitheme/enums/uicolor';
4
+ import { UIContentType } from '../../uitheme/enums/uicontent-type';
5
+ import { UISize } from '../../uitheme/enums/uisize';
6
+ import { UITextStyle } from '../../uitheme/enums/uitext-style';
7
+ import { UIView } from './uiview';
8
+ export interface UIElement extends UIView {
9
+ label?: string | null;
10
+ textColor?: UIColor | null;
11
+ textStyle?: UITextStyle | null;
12
+ maxLines?: number | null;
13
+ asset?: UIAsset | null;
14
+ url?: string | null;
15
+ enabled?: boolean | null;
16
+ size?: UISize | null;
17
+ opacity?: number | null;
18
+ contentType?: UIContentType | null;
19
+ aspect?: UIAspectType | null;
20
+ grow?: number | null;
21
+ placeholder?: string | null;
22
+ placeholderTextColor?: UIColor | null;
23
+ placeholderTextStyle?: UITextStyle | null;
24
+ }
25
+ //# sourceMappingURL=uielement.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"uielement.d.ts","sourceRoot":"","sources":["../../../../../../../libs/sdui/src/lib/core/uicomposition/models/uielement.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,mCAAmC,CAAC;AACjE,OAAO,EAAE,OAAO,EAAE,MAAM,6BAA6B,CAAC;AACtD,OAAO,EAAE,OAAO,EAAE,MAAM,6BAA6B,CAAC;AACtD,OAAO,EAAE,aAAa,EAAE,MAAM,oCAAoC,CAAC;AACnE,OAAO,EAAE,MAAM,EAAE,MAAM,4BAA4B,CAAC;AACpD,OAAO,EAAE,WAAW,EAAE,MAAM,kCAAkC,CAAC;AAC/D,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAElC,MAAM,WAAW,SAAU,SAAQ,MAAM;IACvC,KAAK,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACtB,SAAS,CAAC,EAAE,OAAO,GAAG,IAAI,CAAC;IAC3B,SAAS,CAAC,EAAE,WAAW,GAAG,IAAI,CAAC;IAC/B,QAAQ,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACzB,KAAK,CAAC,EAAE,OAAO,GAAG,IAAI,CAAC;IACvB,GAAG,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACpB,OAAO,CAAC,EAAE,OAAO,GAAG,IAAI,CAAC;IACzB,IAAI,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrB,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB,WAAW,CAAC,EAAE,aAAa,GAAG,IAAI,CAAC;IACnC,MAAM,CAAC,EAAE,YAAY,GAAG,IAAI,CAAC;IAC7B,IAAI,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrB,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC5B,oBAAoB,CAAC,EAAE,OAAO,GAAG,IAAI,CAAC;IACtC,oBAAoB,CAAC,EAAE,WAAW,GAAG,IAAI,CAAC;CAC3C"}
@@ -0,0 +1,4 @@
1
+ import { UIView } from './uiview';
2
+ export interface UILayout extends UIView {
3
+ }
4
+ //# sourceMappingURL=uilayout.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"uilayout.d.ts","sourceRoot":"","sources":["../../../../../../../libs/sdui/src/lib/core/uicomposition/models/uilayout.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAGlC,MAAM,WAAW,QAAS,SAAQ,MAAM;CAAG"}
@@ -0,0 +1,6 @@
1
+ import { UIComponent } from './uicomponent';
2
+ export interface UINavigation {
3
+ title?: string | null;
4
+ titleComponent?: UIComponent | null;
5
+ }
6
+ //# sourceMappingURL=uinavigation.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"uinavigation.d.ts","sourceRoot":"","sources":["../../../../../../../libs/sdui/src/lib/core/uicomposition/models/uinavigation.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAE5C,MAAM,WAAW,YAAY;IAC3B,KAAK,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACtB,cAAc,CAAC,EAAE,WAAW,GAAG,IAAI,CAAC;CACrC"}
@@ -4,11 +4,11 @@ import { UIScene } from '../enums/uiscene';
4
4
  import { UIScreenIdentifier } from '../enums/uiscreen-identifier';
5
5
  import { UILayout } from './uilayout';
6
6
  import { UIView } from './uiview';
7
-
8
7
  export interface UIScreen extends UIView {
9
- identifier: UIScreenIdentifier;
10
- content: UILayout;
11
- scene?: UIScene | null;
12
- padding?: UIPadding | null;
13
- background?: UIBackground | null;
8
+ identifier: UIScreenIdentifier;
9
+ content: UILayout;
10
+ scene?: UIScene | null;
11
+ padding?: UIPadding | null;
12
+ background?: UIBackground | null;
14
13
  }
14
+ //# sourceMappingURL=uiscreen.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"uiscreen.d.ts","sourceRoot":"","sources":["../../../../../../../libs/sdui/src/lib/core/uicomposition/models/uiscreen.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,mCAAmC,CAAC;AACjE,OAAO,EAAE,SAAS,EAAE,MAAM,gCAAgC,CAAC;AAC3D,OAAO,EAAE,OAAO,EAAE,MAAM,kBAAkB,CAAC;AAC3C,OAAO,EAAE,kBAAkB,EAAE,MAAM,8BAA8B,CAAC;AAClE,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AACtC,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAElC,MAAM,WAAW,QAAS,SAAQ,MAAM;IACtC,UAAU,EAAE,kBAAkB,CAAC;IAC/B,OAAO,EAAE,QAAQ,CAAC;IAClB,KAAK,CAAC,EAAE,OAAO,GAAG,IAAI,CAAC;IACvB,OAAO,CAAC,EAAE,SAAS,GAAG,IAAI,CAAC;IAC3B,UAAU,CAAC,EAAE,YAAY,GAAG,IAAI,CAAC;CAClC"}
@@ -1,10 +1,10 @@
1
1
  import { UIComponent } from './uicomponent';
2
2
  import { UILayout } from './uilayout';
3
3
  import { UINavigation } from './uinavigation';
4
-
5
4
  export interface UISingleColumnLayout extends UILayout {
6
- nav?: UINavigation | null;
7
- header?: UIComponent | null;
8
- main?: UIComponent | null;
9
- footer?: UIComponent | null;
5
+ nav?: UINavigation | null;
6
+ header?: UIComponent | null;
7
+ main?: UIComponent | null;
8
+ footer?: UIComponent | null;
10
9
  }
10
+ //# sourceMappingURL=uisingle-column-layout.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"uisingle-column-layout.d.ts","sourceRoot":"","sources":["../../../../../../../libs/sdui/src/lib/core/uicomposition/models/uisingle-column-layout.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAC5C,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AACtC,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAE9C,MAAM,WAAW,oBAAqB,SAAQ,QAAQ;IACpD,GAAG,CAAC,EAAE,YAAY,GAAG,IAAI,CAAC;IAC1B,MAAM,CAAC,EAAE,WAAW,GAAG,IAAI,CAAC;IAC5B,IAAI,CAAC,EAAE,WAAW,GAAG,IAAI,CAAC;IAC1B,MAAM,CAAC,EAAE,WAAW,GAAG,IAAI,CAAC;CAC7B"}
@@ -5,14 +5,13 @@ import { UIPadding } from '../../uitheme/models/uipadding';
5
5
  import { UIRadius } from '../../uitheme/models/uiradius';
6
6
  import { UIShadow } from '../../uitheme/models/uishadow';
7
7
  import { UISpacing } from '../../uitheme/models/uispacing';
8
-
9
- // interface ABSTRATA - não deve existir objetos dela!
10
8
  export interface UIView {
11
- padding?: UIPadding | null;
12
- background?: UIBackground | null;
13
- action?: UIAction | null;
14
- alignment?: UIAlignment | null;
15
- shadow?: UIShadow | null;
16
- radius?: UIRadius | null;
17
- spacing?: UISpacing | null;
9
+ padding?: UIPadding | null;
10
+ background?: UIBackground | null;
11
+ action?: UIAction | null;
12
+ alignment?: UIAlignment | null;
13
+ shadow?: UIShadow | null;
14
+ radius?: UIRadius | null;
15
+ spacing?: UISpacing | null;
18
16
  }
17
+ //# sourceMappingURL=uiview.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"uiview.d.ts","sourceRoot":"","sources":["../../../../../../../libs/sdui/src/lib/core/uicomposition/models/uiview.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AACzD,OAAO,EAAE,WAAW,EAAE,MAAM,kCAAkC,CAAC;AAC/D,OAAO,EAAE,YAAY,EAAE,MAAM,mCAAmC,CAAC;AACjE,OAAO,EAAE,SAAS,EAAE,MAAM,gCAAgC,CAAC;AAC3D,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AACzD,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AACzD,OAAO,EAAE,SAAS,EAAE,MAAM,gCAAgC,CAAC;AAG3D,MAAM,WAAW,MAAM;IACrB,OAAO,CAAC,EAAE,SAAS,GAAG,IAAI,CAAC;IAC3B,UAAU,CAAC,EAAE,YAAY,GAAG,IAAI,CAAC;IACjC,MAAM,CAAC,EAAE,QAAQ,GAAG,IAAI,CAAC;IACzB,SAAS,CAAC,EAAE,WAAW,GAAG,IAAI,CAAC;IAC/B,MAAM,CAAC,EAAE,QAAQ,GAAG,IAAI,CAAC;IACzB,MAAM,CAAC,EAAE,QAAQ,GAAG,IAAI,CAAC;IACzB,OAAO,CAAC,EAAE,SAAS,GAAG,IAAI,CAAC;CAC5B"}
@@ -0,0 +1,10 @@
1
+ export declare enum UIActionType {
2
+ INTERNAL_URL = "INTERNAL_URL",
3
+ RELOAD_INTERNAL_URL = "RELOAD_INTERNAL_URL",
4
+ DISMISS_TO_SCENE = "DISMISS_TO_SCENE",
5
+ PAYWALL = "PAYWALL",
6
+ REGISTER = "REGISTER",
7
+ HTML = "HTML",
8
+ FILE = "FILE"
9
+ }
10
+ //# sourceMappingURL=uiaction-type.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"uiaction-type.d.ts","sourceRoot":"","sources":["../../../../../../../libs/sdui/src/lib/core/uitheme/enums/uiaction-type.ts"],"names":[],"mappings":"AAAA,oBAAY,YAAY;IAEtB,YAAY,iBAAiB;IAC7B,mBAAmB,wBAAwB;IAC3C,gBAAgB,qBAAqB;IAGrC,OAAO,YAAY;IACnB,QAAQ,aAAa;IAGrB,IAAI,SAAS;IACb,IAAI,SAAS;CACd"}
@@ -0,0 +1,6 @@
1
+ export declare enum UIAlignmentType {
2
+ START = "start",
3
+ CENTER = "center",
4
+ END = "end"
5
+ }
6
+ //# sourceMappingURL=uialignment-type.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"uialignment-type.d.ts","sourceRoot":"","sources":["../../../../../../../libs/sdui/src/lib/core/uitheme/enums/uialignment-type.ts"],"names":[],"mappings":"AAAA,oBAAY,eAAe;IACzB,KAAK,UAAU;IACf,MAAM,WAAW;IACjB,GAAG,QAAQ;CACZ"}
@@ -0,0 +1,5 @@
1
+ export declare enum UIAspectType {
2
+ FILL = "fill",
3
+ FIT = "fit"
4
+ }
5
+ //# sourceMappingURL=uiaspect-type.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"uiaspect-type.d.ts","sourceRoot":"","sources":["../../../../../../../libs/sdui/src/lib/core/uitheme/enums/uiaspect-type.ts"],"names":[],"mappings":"AAAA,oBAAY,YAAY;IACtB,IAAI,SAAS;IACb,GAAG,QAAQ;CACZ"}