@bravura/ui 1.21.10 → 2.1.0

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 (287) hide show
  1. package/CHANGELOG.md +25 -5
  2. package/README.md +1 -2
  3. package/alert/alert-container.component.d.ts +1 -1
  4. package/alert/alert-message.component.d.ts +1 -1
  5. package/alert/{bravura-ui-alert.d.ts → index.d.ts} +0 -0
  6. package/behavior/await.directive.d.ts +1 -1
  7. package/behavior/{bravura-ui-behavior.d.ts → index.d.ts} +0 -0
  8. package/behavior/sizing-monitor.directive.d.ts +1 -1
  9. package/behavior/sizing.directive.d.ts +1 -1
  10. package/common/{bravura-ui-common.d.ts → index.d.ts} +0 -0
  11. package/currency-input/currency-input.directive.d.ts +1 -1
  12. package/currency-input/{bravura-ui-currency-input.d.ts → index.d.ts} +0 -0
  13. package/decimal-input/decimal-input.directive.d.ts +1 -1
  14. package/decimal-input/{bravura-ui-decimal-input.d.ts → index.d.ts} +0 -0
  15. package/discrete-input/discrete-input.component.d.ts +6 -5
  16. package/discrete-input/{bravura-ui-discrete-input.d.ts → index.d.ts} +0 -0
  17. package/esm2020/alert/alert-container.component.mjs +201 -0
  18. package/esm2020/alert/alert-message.component.mjs +92 -0
  19. package/esm2020/alert/alert.module.mjs +22 -0
  20. package/{esm2015/alert/bravura-ui-alert.js → esm2020/alert/bravura-ui-alert.mjs} +0 -0
  21. package/{esm2015/alert/public-api.js → esm2020/alert/public-api.mjs} +0 -0
  22. package/{esm2015/behavior/await.directive.js → esm2020/behavior/await.directive.mjs} +4 -4
  23. package/esm2020/behavior/behavior.module.mjs +25 -0
  24. package/{esm2015/behavior/bravura-ui-behavior.js → esm2020/behavior/bravura-ui-behavior.mjs} +0 -0
  25. package/{esm2015/behavior/public-api.js → esm2020/behavior/public-api.mjs} +0 -0
  26. package/{esm2015/behavior/sizing-monitor.directive.js → esm2020/behavior/sizing-monitor.directive.mjs} +4 -4
  27. package/{esm2015/behavior/sizing.directive.js → esm2020/behavior/sizing.directive.mjs} +4 -4
  28. package/{esm2015/bravura-ui.js → esm2020/bravura-ui.mjs} +0 -0
  29. package/{esm2015/common/bravura-ui-common.js → esm2020/common/bravura-ui-common.mjs} +0 -0
  30. package/{esm2015/common/common-utils.js → esm2020/common/common-utils.mjs} +0 -0
  31. package/esm2020/common/common.module.mjs +52 -0
  32. package/{esm2015/common/public-api.js → esm2020/common/public-api.mjs} +0 -0
  33. package/{esm2015/currency-input/bravura-ui-currency-input.js → esm2020/currency-input/bravura-ui-currency-input.mjs} +0 -0
  34. package/esm2020/currency-input/currency-input.directive.mjs +279 -0
  35. package/esm2020/currency-input/currency-input.module.mjs +19 -0
  36. package/{esm2015/currency-input/public-api.js → esm2020/currency-input/public-api.mjs} +0 -0
  37. package/{esm2015/decimal-input/bravura-ui-decimal-input.js → esm2020/decimal-input/bravura-ui-decimal-input.mjs} +0 -0
  38. package/{esm2015/decimal-input/decimal-input.directive.js → esm2020/decimal-input/decimal-input.directive.mjs} +4 -4
  39. package/esm2020/decimal-input/decimal-input.module.mjs +19 -0
  40. package/{esm2015/decimal-input/public-api.js → esm2020/decimal-input/public-api.mjs} +0 -0
  41. package/{esm2015/discrete-input/bravura-ui-discrete-input.js → esm2020/discrete-input/bravura-ui-discrete-input.mjs} +0 -0
  42. package/esm2020/discrete-input/discrete-input.component.mjs +326 -0
  43. package/esm2020/discrete-input/discrete-input.module.mjs +21 -0
  44. package/{esm2015/discrete-input/public-api.js → esm2020/discrete-input/public-api.mjs} +0 -0
  45. package/{esm2015/file-upload/bravura-ui-file-upload.js → esm2020/file-upload/bravura-ui-file-upload.mjs} +0 -0
  46. package/esm2020/file-upload/file-upload.component.mjs +356 -0
  47. package/{esm2015/file-upload/file-upload.module.js → esm2020/file-upload/file-upload.module.mjs} +11 -13
  48. package/{esm2015/file-upload/file-upload.service.js → esm2020/file-upload/file-upload.service.mjs} +4 -4
  49. package/{esm2015/file-upload/public-api.js → esm2020/file-upload/public-api.mjs} +0 -0
  50. package/{esm2015/form-field/bravura-ui-form-field.js → esm2020/form-field/bravura-ui-form-field.mjs} +0 -0
  51. package/esm2020/form-field/form-field.component.mjs +96 -0
  52. package/esm2020/form-field/form-field.module.mjs +20 -0
  53. package/{esm2015/form-field/public-api.js → esm2020/form-field/public-api.mjs} +0 -0
  54. package/{esm2015/icon-font/bravura-ui-icon-font.js → esm2020/icon-font/bravura-ui-icon-font.mjs} +0 -0
  55. package/esm2020/icon-font/icon-font.module.mjs +22 -0
  56. package/{esm2015/icon-font/icon.directive.js → esm2020/icon-font/icon.directive.mjs} +4 -4
  57. package/{esm2015/icon-font/public-api.js → esm2020/icon-font/public-api.mjs} +0 -0
  58. package/{esm2015/icon-font/utilities.js → esm2020/icon-font/utilities.mjs} +0 -0
  59. package/esm2020/panel/bravura-ui-panel.mjs +5 -0
  60. package/esm2020/panel/panel.component.mjs +64 -0
  61. package/esm2020/panel/panel.module.mjs +20 -0
  62. package/esm2020/panel/public-api.mjs +2 -0
  63. package/{esm2015/phone-number/bravura-ui-phone-number.js → esm2020/phone-number/bravura-ui-phone-number.mjs} +0 -0
  64. package/esm2020/phone-number/phone-number.directive.mjs +187 -0
  65. package/esm2020/phone-number/phone-number.module.mjs +24 -0
  66. package/{esm2015/phone-number/phone-number.pipe.js → esm2020/phone-number/phone-number.pipe.mjs} +4 -4
  67. package/{esm2015/phone-number/phone-number.validator.js → esm2020/phone-number/phone-number.validator.mjs} +4 -4
  68. package/{esm2015/phone-number/public-api.js → esm2020/phone-number/public-api.mjs} +0 -0
  69. package/{esm2015/public-api.js → esm2020/public-api.mjs} +0 -0
  70. package/{esm2015/radio-panel/bravura-ui-radio-panel.js → esm2020/radio-panel/bravura-ui-radio-panel.mjs} +0 -0
  71. package/{esm2015/radio-panel/public-api.js → esm2020/radio-panel/public-api.mjs} +0 -0
  72. package/esm2020/radio-panel/radio-panel-item.component.mjs +97 -0
  73. package/esm2020/radio-panel/radio-panel.component.mjs +89 -0
  74. package/esm2020/radio-panel/radio-panel.module.mjs +25 -0
  75. package/{esm2015/selection-panel/bravura-ui-selection-panel.js → esm2020/selection-panel/bravura-ui-selection-panel.mjs} +0 -0
  76. package/{esm2015/selection-panel/public-api.js → esm2020/selection-panel/public-api.mjs} +0 -0
  77. package/esm2020/selection-panel/selection-panel-item.component.mjs +166 -0
  78. package/esm2020/selection-panel/selection-panel.directive.mjs +119 -0
  79. package/esm2020/selection-panel/selection-panel.module.mjs +23 -0
  80. package/{esm2015/skeletons/bravura-ui-skeletons.js → esm2020/skeletons/bravura-ui-skeletons.mjs} +0 -0
  81. package/{esm2015/skeletons/public-api.js → esm2020/skeletons/public-api.mjs} +0 -0
  82. package/esm2020/skeletons/skeleton-loader-presets.directive.mjs +83 -0
  83. package/{esm2015/skeletons/skeleton-loader.component.js → esm2020/skeletons/skeleton-loader.component.mjs} +4 -4
  84. package/esm2020/skeletons/skeletons.module.mjs +35 -0
  85. package/{esm2015/stepper/bravura-ui-stepper.js → esm2020/stepper/bravura-ui-stepper.mjs} +0 -0
  86. package/{esm2015/stepper/public-api.js → esm2020/stepper/public-api.mjs} +0 -0
  87. package/esm2020/stepper/stepper-animation.mjs +23 -0
  88. package/esm2020/stepper/stepper.component.mjs +166 -0
  89. package/{esm2015/stepper/stepper.module.js → esm2020/stepper/stepper.module.mjs} +13 -15
  90. package/{esm2015/tooltip/bravura-ui-tooltip.js → esm2020/tooltip/bravura-ui-tooltip.mjs} +0 -0
  91. package/{esm2015/tooltip/public-api.js → esm2020/tooltip/public-api.mjs} +0 -0
  92. package/esm2020/tooltip/tooltip.component.mjs +51 -0
  93. package/{esm2015/tooltip/tooltip.directive.js → esm2020/tooltip/tooltip.directive.mjs} +4 -4
  94. package/esm2020/tooltip/tooltip.module.mjs +25 -0
  95. package/fesm2015/bravura-ui-alert.mjs +324 -0
  96. package/fesm2015/bravura-ui-alert.mjs.map +1 -0
  97. package/fesm2015/bravura-ui-behavior.mjs +407 -0
  98. package/fesm2015/bravura-ui-behavior.mjs.map +1 -0
  99. package/fesm2015/bravura-ui-common.mjs +74 -0
  100. package/fesm2015/bravura-ui-common.mjs.map +1 -0
  101. package/fesm2015/bravura-ui-currency-input.mjs +303 -0
  102. package/fesm2015/bravura-ui-currency-input.mjs.map +1 -0
  103. package/fesm2015/bravura-ui-decimal-input.mjs +149 -0
  104. package/fesm2015/bravura-ui-decimal-input.mjs.map +1 -0
  105. package/fesm2015/bravura-ui-discrete-input.mjs +354 -0
  106. package/fesm2015/bravura-ui-discrete-input.mjs.map +1 -0
  107. package/fesm2015/bravura-ui-file-upload.mjs +434 -0
  108. package/fesm2015/bravura-ui-file-upload.mjs.map +1 -0
  109. package/fesm2015/{bravura-ui-form-field.js → bravura-ui-form-field.mjs} +12 -23
  110. package/fesm2015/bravura-ui-form-field.mjs.map +1 -0
  111. package/fesm2015/{bravura-ui-icon-font.js → bravura-ui-icon-font.mjs} +8 -8
  112. package/fesm2015/bravura-ui-icon-font.mjs.map +1 -0
  113. package/fesm2015/bravura-ui-panel.mjs +87 -0
  114. package/fesm2015/bravura-ui-panel.mjs.map +1 -0
  115. package/fesm2015/{bravura-ui-phone-number.js → bravura-ui-phone-number.mjs} +34 -30
  116. package/fesm2015/bravura-ui-phone-number.mjs.map +1 -0
  117. package/fesm2015/bravura-ui-radio-panel.mjs +212 -0
  118. package/fesm2015/bravura-ui-radio-panel.mjs.map +1 -0
  119. package/fesm2015/{bravura-ui-selection-panel.js → bravura-ui-selection-panel.mjs} +24 -28
  120. package/fesm2015/bravura-ui-selection-panel.mjs.map +1 -0
  121. package/fesm2015/bravura-ui-skeletons.mjs +195 -0
  122. package/fesm2015/bravura-ui-skeletons.mjs.map +1 -0
  123. package/fesm2015/bravura-ui-stepper.mjs +243 -0
  124. package/fesm2015/bravura-ui-stepper.mjs.map +1 -0
  125. package/fesm2015/bravura-ui-tooltip.mjs +195 -0
  126. package/fesm2015/bravura-ui-tooltip.mjs.map +1 -0
  127. package/fesm2015/{bravura-ui.js → bravura-ui.mjs} +1 -1
  128. package/fesm2015/bravura-ui.mjs.map +1 -0
  129. package/fesm2020/bravura-ui-alert.mjs +312 -0
  130. package/fesm2020/bravura-ui-alert.mjs.map +1 -0
  131. package/{fesm2015/bravura-ui-behavior.js → fesm2020/bravura-ui-behavior.mjs} +14 -14
  132. package/fesm2020/bravura-ui-behavior.mjs.map +1 -0
  133. package/{fesm2015/bravura-ui-common.js → fesm2020/bravura-ui-common.mjs} +7 -7
  134. package/fesm2020/bravura-ui-common.mjs.map +1 -0
  135. package/{fesm2015/bravura-ui-currency-input.js → fesm2020/bravura-ui-currency-input.mjs} +9 -10
  136. package/fesm2020/bravura-ui-currency-input.mjs.map +1 -0
  137. package/{fesm2015/bravura-ui-decimal-input.js → fesm2020/bravura-ui-decimal-input.mjs} +8 -8
  138. package/fesm2020/bravura-ui-decimal-input.mjs.map +1 -0
  139. package/{fesm2015/bravura-ui-discrete-input.js → fesm2020/bravura-ui-discrete-input.mjs} +18 -26
  140. package/fesm2020/bravura-ui-discrete-input.mjs.map +1 -0
  141. package/fesm2020/bravura-ui-file-upload.mjs +430 -0
  142. package/fesm2020/bravura-ui-file-upload.mjs.map +1 -0
  143. package/fesm2020/bravura-ui-form-field.mjs +119 -0
  144. package/fesm2020/bravura-ui-form-field.mjs.map +1 -0
  145. package/fesm2020/bravura-ui-icon-font.mjs +178 -0
  146. package/fesm2020/bravura-ui-icon-font.mjs.map +1 -0
  147. package/fesm2020/bravura-ui-panel.mjs +87 -0
  148. package/fesm2020/bravura-ui-panel.mjs.map +1 -0
  149. package/fesm2020/bravura-ui-phone-number.mjs +317 -0
  150. package/fesm2020/bravura-ui-phone-number.mjs.map +1 -0
  151. package/fesm2020/bravura-ui-radio-panel.mjs +209 -0
  152. package/fesm2020/bravura-ui-radio-panel.mjs.map +1 -0
  153. package/fesm2020/bravura-ui-selection-panel.mjs +306 -0
  154. package/fesm2020/bravura-ui-selection-panel.mjs.map +1 -0
  155. package/{fesm2015/bravura-ui-skeletons.js → fesm2020/bravura-ui-skeletons.mjs} +13 -13
  156. package/fesm2020/bravura-ui-skeletons.mjs.map +1 -0
  157. package/{fesm2015/bravura-ui-stepper.js → fesm2020/bravura-ui-stepper.mjs} +27 -44
  158. package/fesm2020/bravura-ui-stepper.mjs.map +1 -0
  159. package/{fesm2015/bravura-ui-tooltip.js → fesm2020/bravura-ui-tooltip.mjs} +13 -22
  160. package/fesm2020/bravura-ui-tooltip.mjs.map +1 -0
  161. package/fesm2020/bravura-ui.mjs +8 -0
  162. package/fesm2020/bravura-ui.mjs.map +1 -0
  163. package/file-upload/file-upload.component.d.ts +1 -1
  164. package/file-upload/{bravura-ui-file-upload.d.ts → index.d.ts} +0 -0
  165. package/form-field/form-field.component.d.ts +1 -1
  166. package/form-field/{bravura-ui-form-field.d.ts → index.d.ts} +0 -0
  167. package/icon-font/icon.directive.d.ts +1 -1
  168. package/icon-font/{bravura-ui-icon-font.d.ts → index.d.ts} +0 -0
  169. package/{bravura-ui.d.ts → index.d.ts} +0 -0
  170. package/package.json +157 -14
  171. package/panel/index.d.ts +5 -0
  172. package/panel/panel.component.d.ts +46 -0
  173. package/panel/panel.module.d.ts +11 -0
  174. package/panel/public-api.d.ts +1 -0
  175. package/phone-number/{bravura-ui-phone-number.d.ts → index.d.ts} +0 -0
  176. package/phone-number/phone-number.directive.d.ts +1 -1
  177. package/phone-number/phone-number.pipe.d.ts +1 -1
  178. package/phone-number/phone-number.validator.d.ts +1 -1
  179. package/radio-panel/{bravura-ui-radio-panel.d.ts → index.d.ts} +0 -0
  180. package/radio-panel/radio-panel-item.component.d.ts +1 -1
  181. package/radio-panel/radio-panel.component.d.ts +1 -1
  182. package/selection-panel/{bravura-ui-selection-panel.d.ts → index.d.ts} +0 -0
  183. package/selection-panel/selection-panel-item.component.d.ts +1 -1
  184. package/selection-panel/selection-panel.directive.d.ts +1 -1
  185. package/skeletons/{bravura-ui-skeletons.d.ts → index.d.ts} +0 -0
  186. package/skeletons/skeleton-loader-presets.directive.d.ts +1 -1
  187. package/skeletons/skeleton-loader.component.d.ts +1 -1
  188. package/stepper/{bravura-ui-stepper.d.ts → index.d.ts} +0 -0
  189. package/stepper/stepper.component.d.ts +1 -1
  190. package/theme/_ui-theme.scss +1 -1
  191. package/tooltip/{bravura-ui-tooltip.d.ts → index.d.ts} +0 -0
  192. package/tooltip/tooltip.component.d.ts +1 -1
  193. package/tooltip/tooltip.directive.d.ts +1 -1
  194. package/alert/package.json +0 -10
  195. package/behavior/package.json +0 -10
  196. package/bundles/bravura-ui-alert.umd.js +0 -745
  197. package/bundles/bravura-ui-alert.umd.js.map +0 -1
  198. package/bundles/bravura-ui-behavior.umd.js +0 -788
  199. package/bundles/bravura-ui-behavior.umd.js.map +0 -1
  200. package/bundles/bravura-ui-common.umd.js +0 -103
  201. package/bundles/bravura-ui-common.umd.js.map +0 -1
  202. package/bundles/bravura-ui-currency-input.umd.js +0 -335
  203. package/bundles/bravura-ui-currency-input.umd.js.map +0 -1
  204. package/bundles/bravura-ui-decimal-input.umd.js +0 -178
  205. package/bundles/bravura-ui-decimal-input.umd.js.map +0 -1
  206. package/bundles/bravura-ui-discrete-input.umd.js +0 -747
  207. package/bundles/bravura-ui-discrete-input.umd.js.map +0 -1
  208. package/bundles/bravura-ui-file-upload.umd.js +0 -845
  209. package/bundles/bravura-ui-file-upload.umd.js.map +0 -1
  210. package/bundles/bravura-ui-form-field.umd.js +0 -494
  211. package/bundles/bravura-ui-form-field.umd.js.map +0 -1
  212. package/bundles/bravura-ui-icon-font.umd.js +0 -539
  213. package/bundles/bravura-ui-icon-font.umd.js.map +0 -1
  214. package/bundles/bravura-ui-phone-number.umd.js +0 -690
  215. package/bundles/bravura-ui-phone-number.umd.js.map +0 -1
  216. package/bundles/bravura-ui-radio-panel.umd.js +0 -595
  217. package/bundles/bravura-ui-radio-panel.umd.js.map +0 -1
  218. package/bundles/bravura-ui-selection-panel.umd.js +0 -699
  219. package/bundles/bravura-ui-selection-panel.umd.js.map +0 -1
  220. package/bundles/bravura-ui-skeletons.umd.js +0 -525
  221. package/bundles/bravura-ui-skeletons.umd.js.map +0 -1
  222. package/bundles/bravura-ui-stepper.umd.js +0 -613
  223. package/bundles/bravura-ui-stepper.umd.js.map +0 -1
  224. package/bundles/bravura-ui-tooltip.umd.js +0 -586
  225. package/bundles/bravura-ui-tooltip.umd.js.map +0 -1
  226. package/bundles/bravura-ui.umd.js +0 -18
  227. package/bundles/bravura-ui.umd.js.map +0 -1
  228. package/common/package.json +0 -10
  229. package/currency-input/package.json +0 -10
  230. package/decimal-input/package.json +0 -10
  231. package/discrete-input/package.json +0 -10
  232. package/esm2015/alert/alert-container.component.js +0 -220
  233. package/esm2015/alert/alert-message.component.js +0 -98
  234. package/esm2015/alert/alert.module.js +0 -22
  235. package/esm2015/behavior/behavior.module.js +0 -25
  236. package/esm2015/common/common.module.js +0 -52
  237. package/esm2015/currency-input/currency-input.directive.js +0 -280
  238. package/esm2015/currency-input/currency-input.module.js +0 -19
  239. package/esm2015/decimal-input/decimal-input.module.js +0 -19
  240. package/esm2015/discrete-input/discrete-input.component.js +0 -334
  241. package/esm2015/discrete-input/discrete-input.module.js +0 -21
  242. package/esm2015/file-upload/file-upload.component.js +0 -367
  243. package/esm2015/form-field/form-field.component.js +0 -107
  244. package/esm2015/form-field/form-field.module.js +0 -20
  245. package/esm2015/icon-font/icon-font.module.js +0 -22
  246. package/esm2015/phone-number/phone-number.directive.js +0 -192
  247. package/esm2015/phone-number/phone-number.module.js +0 -24
  248. package/esm2015/radio-panel/radio-panel-item.component.js +0 -109
  249. package/esm2015/radio-panel/radio-panel.component.js +0 -98
  250. package/esm2015/radio-panel/radio-panel.module.js +0 -25
  251. package/esm2015/selection-panel/selection-panel-item.component.js +0 -174
  252. package/esm2015/selection-panel/selection-panel.directive.js +0 -120
  253. package/esm2015/selection-panel/selection-panel.module.js +0 -23
  254. package/esm2015/skeletons/skeleton-loader-presets.directive.js +0 -83
  255. package/esm2015/skeletons/skeletons.module.js +0 -35
  256. package/esm2015/stepper/stepper-animation.js +0 -23
  257. package/esm2015/stepper/stepper.component.js +0 -181
  258. package/esm2015/tooltip/tooltip.component.js +0 -59
  259. package/esm2015/tooltip/tooltip.module.js +0 -26
  260. package/fesm2015/bravura-ui-alert.js +0 -337
  261. package/fesm2015/bravura-ui-alert.js.map +0 -1
  262. package/fesm2015/bravura-ui-behavior.js.map +0 -1
  263. package/fesm2015/bravura-ui-common.js.map +0 -1
  264. package/fesm2015/bravura-ui-currency-input.js.map +0 -1
  265. package/fesm2015/bravura-ui-decimal-input.js.map +0 -1
  266. package/fesm2015/bravura-ui-discrete-input.js.map +0 -1
  267. package/fesm2015/bravura-ui-file-upload.js +0 -443
  268. package/fesm2015/bravura-ui-file-upload.js.map +0 -1
  269. package/fesm2015/bravura-ui-form-field.js.map +0 -1
  270. package/fesm2015/bravura-ui-icon-font.js.map +0 -1
  271. package/fesm2015/bravura-ui-phone-number.js.map +0 -1
  272. package/fesm2015/bravura-ui-radio-panel.js +0 -230
  273. package/fesm2015/bravura-ui-radio-panel.js.map +0 -1
  274. package/fesm2015/bravura-ui-selection-panel.js.map +0 -1
  275. package/fesm2015/bravura-ui-skeletons.js.map +0 -1
  276. package/fesm2015/bravura-ui-stepper.js.map +0 -1
  277. package/fesm2015/bravura-ui-tooltip.js.map +0 -1
  278. package/fesm2015/bravura-ui.js.map +0 -1
  279. package/file-upload/package.json +0 -10
  280. package/form-field/package.json +0 -10
  281. package/icon-font/package.json +0 -10
  282. package/phone-number/package.json +0 -10
  283. package/radio-panel/package.json +0 -10
  284. package/selection-panel/package.json +0 -10
  285. package/skeletons/package.json +0 -10
  286. package/stepper/package.json +0 -10
  287. package/tooltip/package.json +0 -10
@@ -1,595 +0,0 @@
1
- (function (global, factory) {
2
- typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('@angular/animations'), require('@angular/core'), require('@angular/material/radio'), require('@angular/platform-browser/animations'), require('@angular/cdk/a11y'), require('@angular/cdk/collections'), require('@angular/material/icon'), require('@angular/material/core'), require('@angular/common'), require('@angular/forms')) :
3
- typeof define === 'function' && define.amd ? define('@bravura/ui/radio-panel', ['exports', '@angular/animations', '@angular/core', '@angular/material/radio', '@angular/platform-browser/animations', '@angular/cdk/a11y', '@angular/cdk/collections', '@angular/material/icon', '@angular/material/core', '@angular/common', '@angular/forms'], factory) :
4
- (global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory((global.bravura = global.bravura || {}, global.bravura.ui = global.bravura.ui || {}, global.bravura.ui["radio-panel"] = {}), global.ng.animations, global.ng.core, global.ng.material.radio, global.ng.platformBrowser.animations, global.ng.cdk.a11y, global.ng.cdk.collections, global.ng.material.icon, global.ng.material.core, global.ng.common, global.ng.forms));
5
- })(this, (function (exports, animations$1, i0, i6, animations, i1, i2, i3, i4, i5, forms) { 'use strict';
6
-
7
- function _interopNamespace(e) {
8
- if (e && e.__esModule) return e;
9
- var n = Object.create(null);
10
- if (e) {
11
- Object.keys(e).forEach(function (k) {
12
- if (k !== 'default') {
13
- var d = Object.getOwnPropertyDescriptor(e, k);
14
- Object.defineProperty(n, k, d.get ? d : {
15
- enumerable: true,
16
- get: function () { return e[k]; }
17
- });
18
- }
19
- });
20
- }
21
- n["default"] = e;
22
- return Object.freeze(n);
23
- }
24
-
25
- var i0__namespace = /*#__PURE__*/_interopNamespace(i0);
26
- var i6__namespace = /*#__PURE__*/_interopNamespace(i6);
27
- var i1__namespace = /*#__PURE__*/_interopNamespace(i1);
28
- var i2__namespace = /*#__PURE__*/_interopNamespace(i2);
29
- var i3__namespace = /*#__PURE__*/_interopNamespace(i3);
30
- var i4__namespace = /*#__PURE__*/_interopNamespace(i4);
31
- var i5__namespace = /*#__PURE__*/_interopNamespace(i5);
32
-
33
- /******************************************************************************
34
- Copyright (c) Microsoft Corporation.
35
-
36
- Permission to use, copy, modify, and/or distribute this software for any
37
- purpose with or without fee is hereby granted.
38
-
39
- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
40
- REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
41
- AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
42
- INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
43
- LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
44
- OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
45
- PERFORMANCE OF THIS SOFTWARE.
46
- ***************************************************************************** */
47
- /* global Reflect, Promise */
48
- var extendStatics = function (d, b) {
49
- extendStatics = Object.setPrototypeOf ||
50
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
51
- function (d, b) { for (var p in b)
52
- if (Object.prototype.hasOwnProperty.call(b, p))
53
- d[p] = b[p]; };
54
- return extendStatics(d, b);
55
- };
56
- function __extends(d, b) {
57
- if (typeof b !== "function" && b !== null)
58
- throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
59
- extendStatics(d, b);
60
- function __() { this.constructor = d; }
61
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
62
- }
63
- var __assign = function () {
64
- __assign = Object.assign || function __assign(t) {
65
- for (var s, i = 1, n = arguments.length; i < n; i++) {
66
- s = arguments[i];
67
- for (var p in s)
68
- if (Object.prototype.hasOwnProperty.call(s, p))
69
- t[p] = s[p];
70
- }
71
- return t;
72
- };
73
- return __assign.apply(this, arguments);
74
- };
75
- function __rest(s, e) {
76
- var t = {};
77
- for (var p in s)
78
- if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
79
- t[p] = s[p];
80
- if (s != null && typeof Object.getOwnPropertySymbols === "function")
81
- for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
82
- if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
83
- t[p[i]] = s[p[i]];
84
- }
85
- return t;
86
- }
87
- function __decorate(decorators, target, key, desc) {
88
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
89
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
90
- r = Reflect.decorate(decorators, target, key, desc);
91
- else
92
- for (var i = decorators.length - 1; i >= 0; i--)
93
- if (d = decorators[i])
94
- r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
95
- return c > 3 && r && Object.defineProperty(target, key, r), r;
96
- }
97
- function __param(paramIndex, decorator) {
98
- return function (target, key) { decorator(target, key, paramIndex); };
99
- }
100
- function __metadata(metadataKey, metadataValue) {
101
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
102
- return Reflect.metadata(metadataKey, metadataValue);
103
- }
104
- function __awaiter(thisArg, _arguments, P, generator) {
105
- function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
106
- return new (P || (P = Promise))(function (resolve, reject) {
107
- function fulfilled(value) { try {
108
- step(generator.next(value));
109
- }
110
- catch (e) {
111
- reject(e);
112
- } }
113
- function rejected(value) { try {
114
- step(generator["throw"](value));
115
- }
116
- catch (e) {
117
- reject(e);
118
- } }
119
- function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
120
- step((generator = generator.apply(thisArg, _arguments || [])).next());
121
- });
122
- }
123
- function __generator(thisArg, body) {
124
- var _ = { label: 0, sent: function () { if (t[0] & 1)
125
- throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
126
- return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function () { return this; }), g;
127
- function verb(n) { return function (v) { return step([n, v]); }; }
128
- function step(op) {
129
- if (f)
130
- throw new TypeError("Generator is already executing.");
131
- while (_)
132
- try {
133
- if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done)
134
- return t;
135
- if (y = 0, t)
136
- op = [op[0] & 2, t.value];
137
- switch (op[0]) {
138
- case 0:
139
- case 1:
140
- t = op;
141
- break;
142
- case 4:
143
- _.label++;
144
- return { value: op[1], done: false };
145
- case 5:
146
- _.label++;
147
- y = op[1];
148
- op = [0];
149
- continue;
150
- case 7:
151
- op = _.ops.pop();
152
- _.trys.pop();
153
- continue;
154
- default:
155
- if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) {
156
- _ = 0;
157
- continue;
158
- }
159
- if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) {
160
- _.label = op[1];
161
- break;
162
- }
163
- if (op[0] === 6 && _.label < t[1]) {
164
- _.label = t[1];
165
- t = op;
166
- break;
167
- }
168
- if (t && _.label < t[2]) {
169
- _.label = t[2];
170
- _.ops.push(op);
171
- break;
172
- }
173
- if (t[2])
174
- _.ops.pop();
175
- _.trys.pop();
176
- continue;
177
- }
178
- op = body.call(thisArg, _);
179
- }
180
- catch (e) {
181
- op = [6, e];
182
- y = 0;
183
- }
184
- finally {
185
- f = t = 0;
186
- }
187
- if (op[0] & 5)
188
- throw op[1];
189
- return { value: op[0] ? op[1] : void 0, done: true };
190
- }
191
- }
192
- var __createBinding = Object.create ? (function (o, m, k, k2) {
193
- if (k2 === undefined)
194
- k2 = k;
195
- var desc = Object.getOwnPropertyDescriptor(m, k);
196
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
197
- desc = { enumerable: true, get: function () { return m[k]; } };
198
- }
199
- Object.defineProperty(o, k2, desc);
200
- }) : (function (o, m, k, k2) {
201
- if (k2 === undefined)
202
- k2 = k;
203
- o[k2] = m[k];
204
- });
205
- function __exportStar(m, o) {
206
- for (var p in m)
207
- if (p !== "default" && !Object.prototype.hasOwnProperty.call(o, p))
208
- __createBinding(o, m, p);
209
- }
210
- function __values(o) {
211
- var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0;
212
- if (m)
213
- return m.call(o);
214
- if (o && typeof o.length === "number")
215
- return {
216
- next: function () {
217
- if (o && i >= o.length)
218
- o = void 0;
219
- return { value: o && o[i++], done: !o };
220
- }
221
- };
222
- throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined.");
223
- }
224
- function __read(o, n) {
225
- var m = typeof Symbol === "function" && o[Symbol.iterator];
226
- if (!m)
227
- return o;
228
- var i = m.call(o), r, ar = [], e;
229
- try {
230
- while ((n === void 0 || n-- > 0) && !(r = i.next()).done)
231
- ar.push(r.value);
232
- }
233
- catch (error) {
234
- e = { error: error };
235
- }
236
- finally {
237
- try {
238
- if (r && !r.done && (m = i["return"]))
239
- m.call(i);
240
- }
241
- finally {
242
- if (e)
243
- throw e.error;
244
- }
245
- }
246
- return ar;
247
- }
248
- /** @deprecated */
249
- function __spread() {
250
- for (var ar = [], i = 0; i < arguments.length; i++)
251
- ar = ar.concat(__read(arguments[i]));
252
- return ar;
253
- }
254
- /** @deprecated */
255
- function __spreadArrays() {
256
- for (var s = 0, i = 0, il = arguments.length; i < il; i++)
257
- s += arguments[i].length;
258
- for (var r = Array(s), k = 0, i = 0; i < il; i++)
259
- for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)
260
- r[k] = a[j];
261
- return r;
262
- }
263
- function __spreadArray(to, from, pack) {
264
- if (pack || arguments.length === 2)
265
- for (var i = 0, l = from.length, ar; i < l; i++) {
266
- if (ar || !(i in from)) {
267
- if (!ar)
268
- ar = Array.prototype.slice.call(from, 0, i);
269
- ar[i] = from[i];
270
- }
271
- }
272
- return to.concat(ar || Array.prototype.slice.call(from));
273
- }
274
- function __await(v) {
275
- return this instanceof __await ? (this.v = v, this) : new __await(v);
276
- }
277
- function __asyncGenerator(thisArg, _arguments, generator) {
278
- if (!Symbol.asyncIterator)
279
- throw new TypeError("Symbol.asyncIterator is not defined.");
280
- var g = generator.apply(thisArg, _arguments || []), i, q = [];
281
- return i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i;
282
- function verb(n) { if (g[n])
283
- i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }
284
- function resume(n, v) { try {
285
- step(g[n](v));
286
- }
287
- catch (e) {
288
- settle(q[0][3], e);
289
- } }
290
- function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }
291
- function fulfill(value) { resume("next", value); }
292
- function reject(value) { resume("throw", value); }
293
- function settle(f, v) { if (f(v), q.shift(), q.length)
294
- resume(q[0][0], q[0][1]); }
295
- }
296
- function __asyncDelegator(o) {
297
- var i, p;
298
- return i = {}, verb("next"), verb("throw", function (e) { throw e; }), verb("return"), i[Symbol.iterator] = function () { return this; }, i;
299
- function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === "return" } : f ? f(v) : v; } : f; }
300
- }
301
- function __asyncValues(o) {
302
- if (!Symbol.asyncIterator)
303
- throw new TypeError("Symbol.asyncIterator is not defined.");
304
- var m = o[Symbol.asyncIterator], i;
305
- return m ? m.call(o) : (o = typeof __values === "function" ? __values(o) : o[Symbol.iterator](), i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i);
306
- function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }
307
- function settle(resolve, reject, d, v) { Promise.resolve(v).then(function (v) { resolve({ value: v, done: d }); }, reject); }
308
- }
309
- function __makeTemplateObject(cooked, raw) {
310
- if (Object.defineProperty) {
311
- Object.defineProperty(cooked, "raw", { value: raw });
312
- }
313
- else {
314
- cooked.raw = raw;
315
- }
316
- return cooked;
317
- }
318
- ;
319
- var __setModuleDefault = Object.create ? (function (o, v) {
320
- Object.defineProperty(o, "default", { enumerable: true, value: v });
321
- }) : function (o, v) {
322
- o["default"] = v;
323
- };
324
- function __importStar(mod) {
325
- if (mod && mod.__esModule)
326
- return mod;
327
- var result = {};
328
- if (mod != null)
329
- for (var k in mod)
330
- if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k))
331
- __createBinding(result, mod, k);
332
- __setModuleDefault(result, mod);
333
- return result;
334
- }
335
- function __importDefault(mod) {
336
- return (mod && mod.__esModule) ? mod : { default: mod };
337
- }
338
- function __classPrivateFieldGet(receiver, state, kind, f) {
339
- if (kind === "a" && !f)
340
- throw new TypeError("Private accessor was defined without a getter");
341
- if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver))
342
- throw new TypeError("Cannot read private member from an object whose class did not declare it");
343
- return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
344
- }
345
- function __classPrivateFieldSet(receiver, state, value, kind, f) {
346
- if (kind === "m")
347
- throw new TypeError("Private method is not writable");
348
- if (kind === "a" && !f)
349
- throw new TypeError("Private accessor was defined without a setter");
350
- if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver))
351
- throw new TypeError("Cannot write private member to an object whose class did not declare it");
352
- return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;
353
- }
354
- function __classPrivateFieldIn(state, receiver) {
355
- if (receiver === null || (typeof receiver !== "object" && typeof receiver !== "function"))
356
- throw new TypeError("Cannot use 'in' operator on non-object");
357
- return typeof state === "function" ? receiver === state : state.has(receiver);
358
- }
359
-
360
- /**
361
- * Use `bui-radio-panel-item` instead of `mat-radio-button` in a `bui-radio-panel` to display an option.
362
- */
363
- var RadioPanelItemComponent = /** @class */ (function (_super) {
364
- __extends(RadioPanelItemComponent, _super);
365
- function RadioPanelItemComponent(radioGroup, elementRef, _changeDetector, _focusMonitor, _radioDispatcher, animationMode, _providerOverride, tabIndex) {
366
- var _this = _super.call(this, radioGroup, elementRef, _changeDetector, _focusMonitor, _radioDispatcher, animationMode, _providerOverride, tabIndex) || this;
367
- /**
368
- * This will be displayed as the panel header
369
- */
370
- _this.title = '';
371
- _this.panelWidth = '280px';
372
- return _this;
373
- }
374
- Object.defineProperty(RadioPanelItemComponent.prototype, "tickPosition", {
375
- get: function () {
376
- var _a;
377
- return this._tickPosition || ((_a = this.radioGroup) === null || _a === void 0 ? void 0 : _a.tickPosition);
378
- },
379
- set: function (pos) {
380
- this._tickPosition = pos;
381
- },
382
- enumerable: false,
383
- configurable: true
384
- });
385
- return RadioPanelItemComponent;
386
- }(i6.MatRadioButton));
387
- RadioPanelItemComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: RadioPanelItemComponent, deps: [{ token: i6.MAT_RADIO_GROUP, optional: true }, { token: i0__namespace.ElementRef }, { token: i0__namespace.ChangeDetectorRef }, { token: i1__namespace.FocusMonitor }, { token: i2__namespace.UniqueSelectionDispatcher }, { token: animations.ANIMATION_MODULE_TYPE, optional: true }, { token: i6.MAT_RADIO_DEFAULT_OPTIONS, optional: true }, { token: 'tabindex', attribute: true }], target: i0__namespace.ɵɵFactoryTarget.Component });
388
- RadioPanelItemComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: RadioPanelItemComponent, selector: "bui-radio-panel-item", inputs: { disableRipple: "disableRipple", tabIndex: "tabIndex", title: "title", _tickPosition: "_tickPosition", tickPosition: "tickPosition" }, host: { listeners: { "focus": "_inputElement.nativeElement.focus()" }, properties: { "class.bui-radio-checked": "checked", "class.bui-disabled": "disabled", "class._mat-animation-noopable": "_noopAnimations", "class.mat-primary": "color === \"primary\"", "class.mat-accent": "color === \"accent\"", "class.mat-warn": "color === \"warn\"", "attr.tabindex": "null", "attr.id": "id", "attr.aria-label": "null", "attr.aria-labelledby": "null", "attr.aria-describedby": "null", "style.--panel-width": "this.panelWidth" }, classAttribute: "bui-radio-panel-item" }, queries: [{ propertyName: "contentOnSelect", first: true, predicate: ["contentOnSelect"], descendants: true }], exportAs: ["matRadioButton"], usesInheritance: true, ngImport: i0__namespace, template: "<label\n\tmatRipple\n\tmatRippleColor=\"rgba(128,128,128,.1)\"\n\t[matRippleDisabled]=\"disabled || checked\"\n\t[attr.for]=\"inputId\"\n\t#label\n\tclass=\"bui-radio-panel-item-label bui-border-{{ checked ? color : 'default' }}\"\n>\n\t<div class=\"bui-radio-panel-item-wrapper\" [class.bui-radio-tick-at-end]=\"tickPosition === 'end'\">\n\t\t<div class=\"bui-label-header\">\n\t\t\t<span class=\"bui-label-title\" [innerHTML]=\"title\"></span>\n\t\t\t<ng-content select=\"[buiRadioItemHeadingEnd]\"></ng-content>\n\t\t\t<span class=\"bui-radio-panel-item-circle\">\n\t\t\t\t<span\n\t\t\t\t\tclass=\"bui-persistent-ripple\"\n\t\t\t\t\tmatRipple\n\t\t\t\t\tmatRippleColor=\"rgba(128,128,128,.1)\"\n\t\t\t\t\t[matRippleCentered]=\"true\"\n\t\t\t\t\t[matRippleUnbounded]=\"true\"\n\t\t\t\t\t[matRippleTrigger]=\"label\"\n\t\t\t\t\t[matRippleRadius]=\"20\"\n\t\t\t\t\t*ngIf=\"!disabled\"\n\t\t\t\t></span>\n\t\t\t\t<mat-icon [color]=\"color\" *ngIf=\"checked\">check_circle</mat-icon>\n\t\t\t\t<mat-icon *ngIf=\"!checked\" class=\"bui-radio-panel-item-circle-unchecked\">radio_button_unchecked</mat-icon>\n\t\t\t</span>\n\t\t</div>\n\t\t<!-- The actual 'radio' part of the control. -->\n\t\t<span class=\"radio-container\">\n\t\t\t<input\n\t\t\t\t#input\n\t\t\t\tclass=\"mat-radio-input cdk-visually-hidden\"\n\t\t\t\ttype=\"radio\"\n\t\t\t\t[id]=\"inputId\"\n\t\t\t\t[checked]=\"checked\"\n\t\t\t\t[disabled]=\"disabled\"\n\t\t\t\t[tabIndex]=\"tabIndex\"\n\t\t\t\t[attr.name]=\"name\"\n\t\t\t\t[attr.value]=\"value\"\n\t\t\t\t[required]=\"required\"\n\t\t\t\t[attr.aria-label]=\"ariaLabel\"\n\t\t\t\t[attr.aria-labelledby]=\"ariaLabelledby\"\n\t\t\t\t[attr.aria-describedby]=\"ariaDescribedby\"\n\t\t\t\t(change)=\"_onInputInteraction($event)\"\n\t\t\t\t(click)=\"_onInputClick($event)\"\n\t\t\t/>\n\t\t</span>\n\n\t\t<div class=\"bui-label-content-gap\"></div>\n\t\t<!-- The label content for radio control. -->\n\t\t<div class=\"bui-label-content\">\n\t\t\t<ng-content></ng-content>\n\t\t</div>\n\t\t<div class=\"bui-label-content\" *ngIf=\"contentOnSelect && checked\" @slideInOut>\n\t\t\t<ng-container *ngTemplateOutlet=\"contentOnSelect\"></ng-container>\n\t\t</div>\n\t</div>\n</label>\n", styles: [":host .bui-ripple,:host .bui-persistent-ripple{position:absolute;top:0;right:0;bottom:0;left:0}:host .bui-radio-panel-item-overlay{background-color:#fff;opacity:0}:host .bui-radio-panel-item-circle{width:40px;height:40px}:host .bui-radio-panel-item-label{display:block;border-radius:5px;border:1px solid rgba(128,128,128,.2);padding:1px;position:relative;height:100%}:host .bui-radio-panel-item-label .bui-radio-panel-item-circle-unchecked{color:#80808066}:host .bui-radio-panel-item-wrapper.bui-radio-tick-at-end .bui-label-header{padding:calc(1rem - 10px) calc(1rem - 10px) 0 1rem;justify-content:space-between}:host .bui-radio-panel-item-wrapper:not(.bui-radio-tick-at-end) .bui-label-header{padding:calc(1rem - 10px) calc(1rem - 10px) 0 calc(1rem - 10px)}:host .bui-radio-panel-item-wrapper:not(.bui-radio-tick-at-end) .bui-radio-panel-item-circle{order:-1}:host .bui-label-header,:host .bui-radio-panel-item-circle{display:flex;align-items:center}:host .bui-label-header{margin-bottom:calc(1rem - 10px)}:host .bui-label-title{font-size:larger;font-weight:bold}:host .bui-radio-panel-item-circle{justify-content:center;position:relative}:host .bui-label-content:not(:empty){margin:0 1rem 1rem}:host .bui-label-content-gap{margin-top:calc(1rem - 10px)}@polyfill-unscoped-rule{content: \".bui-radio-panel-item-wrapper .bui-label-header [buiRadioItemHeadingEnd]\"; margin-left: auto;}:host(:not([hidden])){display:block}:host(:not(.bui-disabled)):not(.bui-radio-checked) .bui-radio-panel-item-label{cursor:pointer}:host(:not(.bui-disabled)) .bui-radio-panel-item-label:hover{border-width:2px;padding:0;border-color:#8080804d}:host(:not(.bui-disabled)).cdk-keyboard-focused .bui-persistent-ripple,:host(:not(.bui-disabled)).cdk-program-focused .bui-persistent-ripple{background-color:#80808033;border-radius:50%}:host-context(.radio-dir-row){--panel-width: 300px;margin-right:1rem;max-width:var(--panel-width);min-width:250px;margin-bottom:1rem}:host(.bui-disabled) .bui-radio-panel-item-wrapper>.bui-label-header,:host(.bui-disabled) .bui-radio-panel-item-wrapper>.bui-label-content{opacity:.5}:host-context(.radio-dir-row):not(:last-child){margin-right:1rem;margin-bottom:1rem}:host-context(.radio-dir-column):not(:last-child){margin-bottom:1rem}\n"], components: [{ type: i3__namespace.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }], directives: [{ type: i4__namespace.MatRipple, selector: "[mat-ripple], [matRipple]", inputs: ["matRippleRadius", "matRippleDisabled", "matRippleTrigger", "matRippleColor", "matRippleUnbounded", "matRippleCentered", "matRippleAnimation"], exportAs: ["matRipple"] }, { type: i5__namespace.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i5__namespace.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }], animations: [
389
- animations$1.trigger('slideInOut', [
390
- animations$1.state('void', animations$1.style({ height: '0px', overflow: 'hidden' })),
391
- animations$1.transition(':enter, :leave', animations$1.animate('.25s'))
392
- ])
393
- ], changeDetection: i0__namespace.ChangeDetectionStrategy.OnPush });
394
- i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: RadioPanelItemComponent, decorators: [{
395
- type: i0.Component,
396
- args: [{
397
- selector: 'bui-radio-panel-item',
398
- templateUrl: './radio-panel-item.component.html',
399
- styleUrls: ['./radio-panel-item.component.scss'],
400
- // tslint:disable-next-line: no-inputs-metadata-property
401
- inputs: ['disableRipple', 'tabIndex'],
402
- exportAs: 'matRadioButton',
403
- // tslint:disable-next-line: no-host-metadata-property
404
- host: {
405
- class: 'bui-radio-panel-item',
406
- '[class.bui-radio-checked]': 'checked',
407
- '[class.bui-disabled]': 'disabled',
408
- '[class._mat-animation-noopable]': '_noopAnimations',
409
- '[class.mat-primary]': 'color === "primary"',
410
- '[class.mat-accent]': 'color === "accent"',
411
- '[class.mat-warn]': 'color === "warn"',
412
- // Needs to be removed since it causes some a11y issues (see #21266).
413
- '[attr.tabindex]': 'null',
414
- '[attr.id]': 'id',
415
- '[attr.aria-label]': 'null',
416
- '[attr.aria-labelledby]': 'null',
417
- '[attr.aria-describedby]': 'null',
418
- // Note: under normal conditions focus shouldn't land on this element, however it may be
419
- // programmatically set, for example inside of a focus trap, in this case we want to forward
420
- // the focus to the native element.
421
- '(focus)': '_inputElement.nativeElement.focus()'
422
- },
423
- changeDetection: i0.ChangeDetectionStrategy.OnPush,
424
- animations: [
425
- animations$1.trigger('slideInOut', [
426
- animations$1.state('void', animations$1.style({ height: '0px', overflow: 'hidden' })),
427
- animations$1.transition(':enter, :leave', animations$1.animate('.25s'))
428
- ])
429
- ]
430
- }]
431
- }], ctorParameters: function () {
432
- return [{ type: i6__namespace.MatRadioGroup, decorators: [{
433
- type: i0.Optional
434
- }, {
435
- type: i0.Inject,
436
- args: [i6.MAT_RADIO_GROUP]
437
- }] }, { type: i0__namespace.ElementRef }, { type: i0__namespace.ChangeDetectorRef }, { type: i1__namespace.FocusMonitor }, { type: i2__namespace.UniqueSelectionDispatcher }, { type: undefined, decorators: [{
438
- type: i0.Optional
439
- }, {
440
- type: i0.Inject,
441
- args: [animations.ANIMATION_MODULE_TYPE]
442
- }] }, { type: undefined, decorators: [{
443
- type: i0.Optional
444
- }, {
445
- type: i0.Inject,
446
- args: [i6.MAT_RADIO_DEFAULT_OPTIONS]
447
- }] }, { type: undefined, decorators: [{
448
- type: i0.Attribute,
449
- args: ['tabindex']
450
- }] }];
451
- }, propDecorators: { title: [{
452
- type: i0.Input
453
- }], panelWidth: [{
454
- type: i0.HostBinding,
455
- args: ['style.--panel-width']
456
- }], _tickPosition: [{
457
- type: i0.Input
458
- }], tickPosition: [{
459
- type: i0.Input
460
- }],
461
- //@ts-ignore
462
- contentOnSelect: [{
463
- type: i0.ContentChild,
464
- args: ['contentOnSelect']
465
- }] } });
466
-
467
- /**
468
- * Radio panel is a [control value accessor](https://angular.io/api/forms/ControlValueAccessor)
469
- * that extends Angular Material's [radio group component](https://material.angular.io/components/radio/overview).
470
- * It inherits all the features of `MatRadioGroup`, and arranges the child items in panels,
471
- * with the `title` attributes rendered as captions. The check box icon and the borders will be displayed
472
- * in the color selected by the theme attribute `color`.
473
- *
474
- */
475
- var RadioPanelComponent = /** @class */ (function (_super) {
476
- __extends(RadioPanelComponent, _super);
477
- function RadioPanelComponent(cd) {
478
- var _this = _super.call(this, cd) || this;
479
- /**
480
- * @ignore
481
- */
482
- _this.classAttr = '';
483
- _this.panelWidth = 280;
484
- /** The flow direction of the radio panel items */
485
- _this.direction = 'row';
486
- /** The default position of the 'tick' icon relative to the title. */
487
- _this.tickPosition = 'start';
488
- return _this;
489
- }
490
- /** @ignore */
491
- RadioPanelComponent.prototype.ngOnChanges = function (changes) {
492
- if (['color', 'tickPosition'].some(function (p) { return changes[p]; }) && this._radios) {
493
- this._radios.forEach(function (item) { return item._markForCheck(); });
494
- }
495
- if (this.direction === 'row') {
496
- this.classAttr = 'bui-radio-panel bui-host radio-dir-row';
497
- }
498
- else {
499
- this.classAttr = 'bui-radio-panel bui-host radio-dir-column';
500
- }
501
- if (changes.panelWidth && this._radios) {
502
- this._updatePanelWidth();
503
- }
504
- };
505
- RadioPanelComponent.prototype.ngAfterContentInit = function () {
506
- this._updatePanelWidth();
507
- };
508
- RadioPanelComponent.prototype._updatePanelWidth = function () {
509
- var _this = this;
510
- this._radios.forEach(function (item) {
511
- item.panelWidth = _this.panelWidth + 'px';
512
- item._markForCheck();
513
- });
514
- };
515
- return RadioPanelComponent;
516
- }(i6.MatRadioGroup));
517
- RadioPanelComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: RadioPanelComponent, deps: [{ token: i0__namespace.ChangeDetectorRef }], target: i0__namespace.ɵɵFactoryTarget.Component });
518
- RadioPanelComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: RadioPanelComponent, selector: "bui-radio-panel", inputs: { panelWidth: "panelWidth", direction: "direction", color: "color", tickPosition: "tickPosition" }, host: { attributes: { "role": "radiogroup" }, properties: { "attr.class": "this.classAttr" }, classAttribute: "bui-radio-panel bui-host" }, providers: [
519
- {
520
- provide: forms.NG_VALUE_ACCESSOR,
521
- useExisting: i0.forwardRef(function () { return RadioPanelComponent; }),
522
- multi: true
523
- },
524
- { provide: i6.MAT_RADIO_GROUP, useExisting: i0.forwardRef(function () { return RadioPanelComponent; }) }
525
- ], queries: [{ propertyName: "_radios", predicate: RadioPanelItemComponent, descendants: true }], exportAs: ["buiRadioPanel"], usesInheritance: true, usesOnChanges: true, ngImport: i0__namespace, template: " <ng-content></ng-content> ", isInline: true, styles: [":host{display:flex}:host.radio-dir-row{flex-direction:row;flex-wrap:wrap}:host.radio-dir-column{flex-direction:column}\n"] });
526
- i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: RadioPanelComponent, decorators: [{
527
- type: i0.Component,
528
- args: [{
529
- // tslint:disable-next-line: directive-selector
530
- selector: 'bui-radio-panel',
531
- exportAs: 'buiRadioPanel',
532
- providers: [
533
- {
534
- provide: forms.NG_VALUE_ACCESSOR,
535
- useExisting: i0.forwardRef(function () { return RadioPanelComponent; }),
536
- multi: true
537
- },
538
- { provide: i6.MAT_RADIO_GROUP, useExisting: i0.forwardRef(function () { return RadioPanelComponent; }) }
539
- ],
540
- // tslint:disable-next-line: no-host-metadata-property
541
- host: {
542
- role: 'radiogroup',
543
- class: 'bui-radio-panel bui-host'
544
- },
545
- template: " <ng-content></ng-content> ",
546
- styleUrls: ['radio-panel.component.scss']
547
- }]
548
- }], ctorParameters: function () { return [{ type: i0__namespace.ChangeDetectorRef }]; }, propDecorators: { classAttr: [{
549
- type: i0.HostBinding,
550
- args: ['attr.class']
551
- }], panelWidth: [{
552
- type: i0.Input
553
- }], direction: [{
554
- type: i0.Input
555
- }], color: [{
556
- type: i0.Input
557
- }], tickPosition: [{
558
- type: i0.Input
559
- }], _radios: [{
560
- type: i0.ContentChildren,
561
- args: [RadioPanelItemComponent, { descendants: true }]
562
- }] } });
563
-
564
- /**
565
- * Import this NgModule for the radio panel component
566
- */
567
- var RadioPanelModule = /** @class */ (function () {
568
- function RadioPanelModule() {
569
- }
570
- return RadioPanelModule;
571
- }());
572
- RadioPanelModule.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: RadioPanelModule, deps: [], target: i0__namespace.ɵɵFactoryTarget.NgModule });
573
- RadioPanelModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: RadioPanelModule, declarations: [RadioPanelItemComponent, RadioPanelComponent], imports: [i5.CommonModule, i6.MatRadioModule, i4.MatRippleModule, i3.MatIconModule], exports: [RadioPanelItemComponent, RadioPanelComponent] });
574
- RadioPanelModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: RadioPanelModule, imports: [[i5.CommonModule, i6.MatRadioModule, i4.MatRippleModule, i3.MatIconModule]] });
575
- i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: RadioPanelModule, decorators: [{
576
- type: i0.NgModule,
577
- args: [{
578
- declarations: [RadioPanelItemComponent, RadioPanelComponent],
579
- imports: [i5.CommonModule, i6.MatRadioModule, i4.MatRippleModule, i3.MatIconModule],
580
- exports: [RadioPanelItemComponent, RadioPanelComponent]
581
- }]
582
- }] });
583
-
584
- /**
585
- * Generated bundle index. Do not edit.
586
- */
587
-
588
- exports.RadioPanelComponent = RadioPanelComponent;
589
- exports.RadioPanelItemComponent = RadioPanelItemComponent;
590
- exports.RadioPanelModule = RadioPanelModule;
591
-
592
- Object.defineProperty(exports, '__esModule', { value: true });
593
-
594
- }));
595
- //# sourceMappingURL=bravura-ui-radio-panel.umd.js.map