@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
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@bravura/ui",
3
3
  "description": "Bravura UI Components for Angular applications",
4
- "version": "1.21.10",
4
+ "version": "2.1.0",
5
5
  "keywords": [
6
6
  "Angular",
7
7
  "Angular Material",
@@ -9,23 +9,166 @@
9
9
  ],
10
10
  "author": "Bravura Solutions",
11
11
  "peerDependencies": {
12
- "@angular/common": "^12.2.0 || ^13.3.7",
13
- "@angular/core": "^12.2.0 || ^13.3.7",
14
- "@angular/compiler": "^12.2.0 || ^13.3.7",
15
- "@angular/forms": "^12.2.0 || ^13.3.7",
16
- "@angular/material": "^12.2.0 || ^13.3.7",
17
- "@angular/cdk": "^12.2.0 || ^13.3.7",
18
- "intl-tel-input": "^17.0.16"
12
+ "@angular/common": "^14.1.0",
13
+ "@angular/core": "^14.1.0",
14
+ "@angular/compiler": "^14.1.0",
15
+ "@angular/forms": "^14.1.0",
16
+ "@angular/material": "^14.1.0",
17
+ "@angular/cdk": "^14.1.0",
18
+ "@ngneat/content-loader": "^7.0.0",
19
+ "intl-tel-input": "^17.0.16",
20
+ "rxjs": "~7.5.0"
19
21
  },
20
22
  "dependencies": {
21
23
  "tslib": "^2.3.0"
22
24
  },
23
25
  "license": "ISC",
24
- "main": "bundles/bravura-ui.umd.js",
25
- "module": "fesm2015/bravura-ui.js",
26
- "es2015": "fesm2015/bravura-ui.js",
27
- "esm2015": "esm2015/bravura-ui.js",
28
- "fesm2015": "fesm2015/bravura-ui.js",
29
- "typings": "bravura-ui.d.ts",
26
+ "module": "fesm2015/bravura-ui.mjs",
27
+ "es2020": "fesm2020/bravura-ui.mjs",
28
+ "esm2020": "esm2020/bravura-ui.mjs",
29
+ "fesm2020": "fesm2020/bravura-ui.mjs",
30
+ "fesm2015": "fesm2015/bravura-ui.mjs",
31
+ "typings": "index.d.ts",
32
+ "exports": {
33
+ "./package.json": {
34
+ "default": "./package.json"
35
+ },
36
+ ".": {
37
+ "types": "./index.d.ts",
38
+ "esm2020": "./esm2020/bravura-ui.mjs",
39
+ "es2020": "./fesm2020/bravura-ui.mjs",
40
+ "es2015": "./fesm2015/bravura-ui.mjs",
41
+ "node": "./fesm2015/bravura-ui.mjs",
42
+ "default": "./fesm2020/bravura-ui.mjs"
43
+ },
44
+ "./alert": {
45
+ "types": "./alert/index.d.ts",
46
+ "esm2020": "./esm2020/alert/bravura-ui-alert.mjs",
47
+ "es2020": "./fesm2020/bravura-ui-alert.mjs",
48
+ "es2015": "./fesm2015/bravura-ui-alert.mjs",
49
+ "node": "./fesm2015/bravura-ui-alert.mjs",
50
+ "default": "./fesm2020/bravura-ui-alert.mjs"
51
+ },
52
+ "./behavior": {
53
+ "types": "./behavior/index.d.ts",
54
+ "esm2020": "./esm2020/behavior/bravura-ui-behavior.mjs",
55
+ "es2020": "./fesm2020/bravura-ui-behavior.mjs",
56
+ "es2015": "./fesm2015/bravura-ui-behavior.mjs",
57
+ "node": "./fesm2015/bravura-ui-behavior.mjs",
58
+ "default": "./fesm2020/bravura-ui-behavior.mjs"
59
+ },
60
+ "./common": {
61
+ "types": "./common/index.d.ts",
62
+ "esm2020": "./esm2020/common/bravura-ui-common.mjs",
63
+ "es2020": "./fesm2020/bravura-ui-common.mjs",
64
+ "es2015": "./fesm2015/bravura-ui-common.mjs",
65
+ "node": "./fesm2015/bravura-ui-common.mjs",
66
+ "default": "./fesm2020/bravura-ui-common.mjs"
67
+ },
68
+ "./currency-input": {
69
+ "types": "./currency-input/index.d.ts",
70
+ "esm2020": "./esm2020/currency-input/bravura-ui-currency-input.mjs",
71
+ "es2020": "./fesm2020/bravura-ui-currency-input.mjs",
72
+ "es2015": "./fesm2015/bravura-ui-currency-input.mjs",
73
+ "node": "./fesm2015/bravura-ui-currency-input.mjs",
74
+ "default": "./fesm2020/bravura-ui-currency-input.mjs"
75
+ },
76
+ "./decimal-input": {
77
+ "types": "./decimal-input/index.d.ts",
78
+ "esm2020": "./esm2020/decimal-input/bravura-ui-decimal-input.mjs",
79
+ "es2020": "./fesm2020/bravura-ui-decimal-input.mjs",
80
+ "es2015": "./fesm2015/bravura-ui-decimal-input.mjs",
81
+ "node": "./fesm2015/bravura-ui-decimal-input.mjs",
82
+ "default": "./fesm2020/bravura-ui-decimal-input.mjs"
83
+ },
84
+ "./discrete-input": {
85
+ "types": "./discrete-input/index.d.ts",
86
+ "esm2020": "./esm2020/discrete-input/bravura-ui-discrete-input.mjs",
87
+ "es2020": "./fesm2020/bravura-ui-discrete-input.mjs",
88
+ "es2015": "./fesm2015/bravura-ui-discrete-input.mjs",
89
+ "node": "./fesm2015/bravura-ui-discrete-input.mjs",
90
+ "default": "./fesm2020/bravura-ui-discrete-input.mjs"
91
+ },
92
+ "./file-upload": {
93
+ "types": "./file-upload/index.d.ts",
94
+ "esm2020": "./esm2020/file-upload/bravura-ui-file-upload.mjs",
95
+ "es2020": "./fesm2020/bravura-ui-file-upload.mjs",
96
+ "es2015": "./fesm2015/bravura-ui-file-upload.mjs",
97
+ "node": "./fesm2015/bravura-ui-file-upload.mjs",
98
+ "default": "./fesm2020/bravura-ui-file-upload.mjs"
99
+ },
100
+ "./form-field": {
101
+ "types": "./form-field/index.d.ts",
102
+ "esm2020": "./esm2020/form-field/bravura-ui-form-field.mjs",
103
+ "es2020": "./fesm2020/bravura-ui-form-field.mjs",
104
+ "es2015": "./fesm2015/bravura-ui-form-field.mjs",
105
+ "node": "./fesm2015/bravura-ui-form-field.mjs",
106
+ "default": "./fesm2020/bravura-ui-form-field.mjs"
107
+ },
108
+ "./icon-font": {
109
+ "types": "./icon-font/index.d.ts",
110
+ "esm2020": "./esm2020/icon-font/bravura-ui-icon-font.mjs",
111
+ "es2020": "./fesm2020/bravura-ui-icon-font.mjs",
112
+ "es2015": "./fesm2015/bravura-ui-icon-font.mjs",
113
+ "node": "./fesm2015/bravura-ui-icon-font.mjs",
114
+ "default": "./fesm2020/bravura-ui-icon-font.mjs"
115
+ },
116
+ "./panel": {
117
+ "types": "./panel/index.d.ts",
118
+ "esm2020": "./esm2020/panel/bravura-ui-panel.mjs",
119
+ "es2020": "./fesm2020/bravura-ui-panel.mjs",
120
+ "es2015": "./fesm2015/bravura-ui-panel.mjs",
121
+ "node": "./fesm2015/bravura-ui-panel.mjs",
122
+ "default": "./fesm2020/bravura-ui-panel.mjs"
123
+ },
124
+ "./phone-number": {
125
+ "types": "./phone-number/index.d.ts",
126
+ "esm2020": "./esm2020/phone-number/bravura-ui-phone-number.mjs",
127
+ "es2020": "./fesm2020/bravura-ui-phone-number.mjs",
128
+ "es2015": "./fesm2015/bravura-ui-phone-number.mjs",
129
+ "node": "./fesm2015/bravura-ui-phone-number.mjs",
130
+ "default": "./fesm2020/bravura-ui-phone-number.mjs"
131
+ },
132
+ "./radio-panel": {
133
+ "types": "./radio-panel/index.d.ts",
134
+ "esm2020": "./esm2020/radio-panel/bravura-ui-radio-panel.mjs",
135
+ "es2020": "./fesm2020/bravura-ui-radio-panel.mjs",
136
+ "es2015": "./fesm2015/bravura-ui-radio-panel.mjs",
137
+ "node": "./fesm2015/bravura-ui-radio-panel.mjs",
138
+ "default": "./fesm2020/bravura-ui-radio-panel.mjs"
139
+ },
140
+ "./selection-panel": {
141
+ "types": "./selection-panel/index.d.ts",
142
+ "esm2020": "./esm2020/selection-panel/bravura-ui-selection-panel.mjs",
143
+ "es2020": "./fesm2020/bravura-ui-selection-panel.mjs",
144
+ "es2015": "./fesm2015/bravura-ui-selection-panel.mjs",
145
+ "node": "./fesm2015/bravura-ui-selection-panel.mjs",
146
+ "default": "./fesm2020/bravura-ui-selection-panel.mjs"
147
+ },
148
+ "./skeletons": {
149
+ "types": "./skeletons/index.d.ts",
150
+ "esm2020": "./esm2020/skeletons/bravura-ui-skeletons.mjs",
151
+ "es2020": "./fesm2020/bravura-ui-skeletons.mjs",
152
+ "es2015": "./fesm2015/bravura-ui-skeletons.mjs",
153
+ "node": "./fesm2015/bravura-ui-skeletons.mjs",
154
+ "default": "./fesm2020/bravura-ui-skeletons.mjs"
155
+ },
156
+ "./stepper": {
157
+ "types": "./stepper/index.d.ts",
158
+ "esm2020": "./esm2020/stepper/bravura-ui-stepper.mjs",
159
+ "es2020": "./fesm2020/bravura-ui-stepper.mjs",
160
+ "es2015": "./fesm2015/bravura-ui-stepper.mjs",
161
+ "node": "./fesm2015/bravura-ui-stepper.mjs",
162
+ "default": "./fesm2020/bravura-ui-stepper.mjs"
163
+ },
164
+ "./tooltip": {
165
+ "types": "./tooltip/index.d.ts",
166
+ "esm2020": "./esm2020/tooltip/bravura-ui-tooltip.mjs",
167
+ "es2020": "./fesm2020/bravura-ui-tooltip.mjs",
168
+ "es2015": "./fesm2015/bravura-ui-tooltip.mjs",
169
+ "node": "./fesm2015/bravura-ui-tooltip.mjs",
170
+ "default": "./fesm2020/bravura-ui-tooltip.mjs"
171
+ }
172
+ },
30
173
  "sideEffects": false
31
174
  }
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ /// <amd-module name="@bravura/ui/panel" />
5
+ export * from './public-api';
@@ -0,0 +1,46 @@
1
+ import { ChangeDetectorRef, OnInit } from '@angular/core';
2
+ import { ThemePalette } from '@angular/material/core';
3
+ import * as i0 from "@angular/core";
4
+ /**
5
+ * A `bui-panel` consists of a `mat-card` and a tinted backdrop.
6
+ *
7
+ * Unlike `mat-card`, `bui-panel` has a flat appearance by default and a transparent background.
8
+ * The backdrop is nearly transparent, blending the theme palette `color`
9
+ * and the effective background color of the DOM ancestors.
10
+ *
11
+ * `bui-panel` supports all the content child directives of `mat-card`.
12
+ *
13
+ */
14
+ export declare class PanelComponent implements OnInit {
15
+ private _cd;
16
+ /**
17
+ * Additional style classes on the tinted backdrop element.
18
+ */
19
+ backdropClass?: string;
20
+ /**
21
+ * Additional style classes on the `<mat-card>` element.
22
+ */
23
+ cardClass?: string;
24
+ /**
25
+ * This property defines the background (shaded) and border colors of the panel
26
+ */
27
+ get color(): ThemePalette;
28
+ set color(value: ThemePalette);
29
+ /**
30
+ * In contrast to using a `mat-card` alone, a `bui-panel` does not have a elevated appearance by default.
31
+ *
32
+ * This property can change the default appearance to
33
+ *
34
+ * * `raised` - the original `mat-card` default
35
+ * * `outline` - a `mat-card` with borders
36
+ * * `flat` - no border or elevation
37
+ */
38
+ get appearance(): 'outlined' | 'raised' | 'flat';
39
+ set appearance(value: 'outlined' | 'raised' | 'flat');
40
+ private _color;
41
+ private _appearance;
42
+ constructor(_cd: ChangeDetectorRef);
43
+ ngOnInit(): void;
44
+ static ɵfac: i0.ɵɵFactoryDeclaration<PanelComponent, never>;
45
+ static ɵcmp: i0.ɵɵComponentDeclaration<PanelComponent, "bui-panel", never, { "backdropClass": "backdropClass"; "cardClass": "cardClass"; "color": "color"; "appearance": "appearance"; }, {}, never, ["*"], false>;
46
+ }
@@ -0,0 +1,11 @@
1
+ import { PanelComponent } from './panel.component';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "./panel.component";
4
+ import * as i2 from "@angular/common";
5
+ import * as i3 from "@angular/material/card";
6
+ export declare class PanelModule {
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<PanelModule, never>;
8
+ static ɵmod: i0.ɵɵNgModuleDeclaration<PanelModule, [typeof i1.PanelComponent], [typeof i2.CommonModule, typeof i3.MatCardModule], [typeof i3.MatCardModule, typeof i1.PanelComponent]>;
9
+ static ɵinj: i0.ɵɵInjectorDeclaration<PanelModule>;
10
+ }
11
+ export { PanelComponent };
@@ -0,0 +1 @@
1
+ export * from './panel.module';
@@ -62,5 +62,5 @@ export declare class PhoneNumberDirective implements OnInit, OnChanges, OnDestro
62
62
  private initElement;
63
63
  private _patchValueByState;
64
64
  static ɵfac: i0.ɵɵFactoryDeclaration<PhoneNumberDirective, [null, { optional: true; }, { optional: true; }, { optional: true; }, null, null, { optional: true; }]>;
65
- static ɵdir: i0.ɵɵDirectiveDeclaration<PhoneNumberDirective, "[buiTelInput], input([type=tel])[ngModel], input([type=tel])[formControlName], input([type=tel])[formControl]", never, { "telType": "telType"; "telDropdown": "telDropdown"; }, { "telCountryChange": "telCountryChange"; }, never>;
65
+ static ɵdir: i0.ɵɵDirectiveDeclaration<PhoneNumberDirective, "[buiTelInput], input([type=tel])[ngModel], input([type=tel])[formControlName], input([type=tel])[formControl]", never, { "telType": "telType"; "telDropdown": "telDropdown"; }, { "telCountryChange": "telCountryChange"; }, never, never, false>;
66
66
  }
@@ -8,6 +8,6 @@ export declare class PhoneNumberPipe implements PipeTransform {
8
8
  constructor(_locale: string);
9
9
  transform(value: any, mode?: string, renderLink?: boolean): string;
10
10
  static ɵfac: i0.ɵɵFactoryDeclaration<PhoneNumberPipe, never>;
11
- static ɵpipe: i0.ɵɵPipeDeclaration<PhoneNumberPipe, "buiPhone">;
11
+ static ɵpipe: i0.ɵɵPipeDeclaration<PhoneNumberPipe, "buiPhone", false>;
12
12
  }
13
13
  export declare function getCountryCodeFromLocale(locale: string): string;
@@ -27,5 +27,5 @@ export declare class PhoneNumberValidator implements Validator {
27
27
  [key: string]: any;
28
28
  } | null;
29
29
  static ɵfac: i0.ɵɵFactoryDeclaration<PhoneNumberValidator, never>;
30
- static ɵdir: i0.ɵɵDirectiveDeclaration<PhoneNumberValidator, "[buiTelInput], input([type=tel])[ngModel], input([type=tel])[formControlName], input([type=tel])[formControl]", never, { "telType": "telType"; }, {}, never>;
30
+ static ɵdir: i0.ɵɵDirectiveDeclaration<PhoneNumberValidator, "[buiTelInput], input([type=tel])[ngModel], input([type=tel])[formControlName], input([type=tel])[formControl]", never, { "telType": "telType"; }, {}, never, never, false>;
31
31
  }
@@ -19,5 +19,5 @@ export declare class RadioPanelItemComponent extends MatRadioButton {
19
19
  contentOnSelect: TemplateRef<any>;
20
20
  constructor(radioGroup: MatRadioGroup, elementRef: ElementRef, _changeDetector: ChangeDetectorRef, _focusMonitor: FocusMonitor, _radioDispatcher: UniqueSelectionDispatcher, animationMode?: string, _providerOverride?: MatRadioDefaultOptions, tabIndex?: string);
21
21
  static ɵfac: i0.ɵɵFactoryDeclaration<RadioPanelItemComponent, [{ optional: true; }, null, null, null, null, { optional: true; }, { optional: true; }, { attribute: "tabindex"; }]>;
22
- static ɵcmp: i0.ɵɵComponentDeclaration<RadioPanelItemComponent, "bui-radio-panel-item", ["matRadioButton"], { "disableRipple": "disableRipple"; "tabIndex": "tabIndex"; "title": "title"; "_tickPosition": "_tickPosition"; "tickPosition": "tickPosition"; }, {}, ["contentOnSelect"], ["[buiRadioItemHeadingEnd]", "*"]>;
22
+ static ɵcmp: i0.ɵɵComponentDeclaration<RadioPanelItemComponent, "bui-radio-panel-item", ["matRadioButton"], { "disableRipple": "disableRipple"; "tabIndex": "tabIndex"; "title": "title"; "_tickPosition": "_tickPosition"; "tickPosition": "tickPosition"; }, {}, ["contentOnSelect"], ["[buiRadioItemHeadingEnd]", "*"], false>;
23
23
  }
@@ -33,5 +33,5 @@ export declare class RadioPanelComponent extends MatRadioGroup implements OnChan
33
33
  ngAfterContentInit(): void;
34
34
  private _updatePanelWidth;
35
35
  static ɵfac: i0.ɵɵFactoryDeclaration<RadioPanelComponent, never>;
36
- static ɵcmp: i0.ɵɵComponentDeclaration<RadioPanelComponent, "bui-radio-panel", ["buiRadioPanel"], { "panelWidth": "panelWidth"; "direction": "direction"; "color": "color"; "tickPosition": "tickPosition"; }, {}, ["_radios"], ["*"]>;
36
+ static ɵcmp: i0.ɵɵComponentDeclaration<RadioPanelComponent, "bui-radio-panel", ["buiRadioPanel"], { "panelWidth": "panelWidth"; "direction": "direction"; "color": "color"; "tickPosition": "tickPosition"; }, {}, ["_radios"], ["*"], false>;
37
37
  }
@@ -73,5 +73,5 @@ export declare class SelectionPanelItemComponent implements AfterContentInit {
73
73
  private _setDisabled;
74
74
  private _setChecked;
75
75
  static ɵfac: i0.ɵɵFactoryDeclaration<SelectionPanelItemComponent, never>;
76
- static ɵcmp: i0.ɵɵComponentDeclaration<SelectionPanelItemComponent, "bui-selection-panel-item", never, { "title": "title"; "shadedHeader": "shadedHeader"; "selectable": "selectable"; "disabled": "disabled"; "value": "value"; "checked": "checked"; "color": "color"; }, {}, never, ["[buiSelectionItemHeadingEnd]", "[buiSelectionItemSubtitle]", "*"]>;
76
+ static ɵcmp: i0.ɵɵComponentDeclaration<SelectionPanelItemComponent, "bui-selection-panel-item", never, { "title": "title"; "shadedHeader": "shadedHeader"; "selectable": "selectable"; "disabled": "disabled"; "value": "value"; "checked": "checked"; "color": "color"; }, {}, never, ["[buiSelectionItemHeadingEnd]", "[buiSelectionItemSubtitle]", "*"], false>;
77
77
  }
@@ -63,5 +63,5 @@ export declare class SelectionPanelDirective implements ControlValueAccessor, Se
63
63
  /** @ignore */
64
64
  ngOnChanges(changes: SimpleChanges): void;
65
65
  static ɵfac: i0.ɵɵFactoryDeclaration<SelectionPanelDirective, never>;
66
- static ɵdir: i0.ɵɵDirectiveDeclaration<SelectionPanelDirective, "bui-selection-panel", ["buiSelectionPanel"], { "color": "color"; "selectByHeader": "selectByHeader"; }, {}, ["_items"]>;
66
+ static ɵdir: i0.ɵɵDirectiveDeclaration<SelectionPanelDirective, "bui-selection-panel", ["buiSelectionPanel"], { "color": "color"; "selectByHeader": "selectByHeader"; }, {}, ["_items"], never, false>;
67
67
  }
@@ -19,5 +19,5 @@ export declare class SkeletonLoaderPresetsDirective implements AfterViewChecked
19
19
  constructor(_skeletonComponent: SkeletonLoaderComponent, _elementRef: ElementRef<HTMLElement>, _presetList: SkeletonPresets[]);
20
20
  ngAfterViewChecked(): void;
21
21
  static ɵfac: i0.ɵɵFactoryDeclaration<SkeletonLoaderPresetsDirective, [{ host: true; }, null, null]>;
22
- static ɵdir: i0.ɵɵDirectiveDeclaration<SkeletonLoaderPresetsDirective, "bui-skeleton[preset]", never, { "preset": "preset"; }, {}, never>;
22
+ static ɵdir: i0.ɵɵDirectiveDeclaration<SkeletonLoaderPresetsDirective, "bui-skeleton[preset]", never, { "preset": "preset"; }, {}, never, never, false>;
23
23
  }
@@ -40,5 +40,5 @@ export declare class SkeletonLoaderComponent extends ContentLoaderComponent impl
40
40
  ngOnDestroy(): void;
41
41
  ngOnChanges(changes: SimpleChanges): void;
42
42
  static ɵfac: i0.ɵɵFactoryDeclaration<SkeletonLoaderComponent, never>;
43
- static ɵcmp: i0.ɵɵComponentDeclaration<SkeletonLoaderComponent, "bui-skeleton", never, {}, {}, never, never>;
43
+ static ɵcmp: i0.ɵɵComponentDeclaration<SkeletonLoaderComponent, "bui-skeleton", never, {}, {}, never, never, false>;
44
44
  }
File without changes
@@ -66,5 +66,5 @@ export declare class StepperComponent extends CdkStepper implements AfterContent
66
66
  /** @ignore */
67
67
  _widthChanged(w: number): void;
68
68
  static ɵfac: i0.ɵɵFactoryDeclaration<StepperComponent, [{ optional: true; }, null, null, null, { self: true; }, { optional: true; skipSelf: true; }]>;
69
- static ɵcmp: i0.ɵɵComponentDeclaration<StepperComponent, "bui-stepper, [buiStepper]", ["buiStepper", "matStepper", "matVerticalStepper", "matHorizontalStepper"], { "selectedIndex": "selectedIndex"; "disableRipple": "disableRipple"; "color": "color"; "indicatorFormatter": "indicatorFormatter"; "nextStepLabelPrefix": "nextStepLabelPrefix"; }, { "animationDone": "animationDone"; }, ["_steps", "_icons"], never>;
69
+ static ɵcmp: i0.ɵɵComponentDeclaration<StepperComponent, "bui-stepper, [buiStepper]", ["buiStepper", "matStepper", "matVerticalStepper", "matHorizontalStepper"], { "selectedIndex": "selectedIndex"; "disableRipple": "disableRipple"; "color": "color"; "indicatorFormatter": "indicatorFormatter"; "nextStepLabelPrefix": "nextStepLabelPrefix"; }, { "animationDone": "animationDone"; }, ["_steps", "_icons"], never, false>;
70
70
  }
@@ -1,5 +1,5 @@
1
1
  @use 'sass:map';
2
- @use 'node_modules/@angular/material' as mat;
2
+ @use '@angular/material' as mat;
3
3
 
4
4
  $default-border-color-transition: border-color 100ms cubic-bezier(0.55, 0, 0.55, 0.2);
5
5
  $mat-foreground-extract: (
File without changes
@@ -21,6 +21,6 @@ export declare class TooltipComponent extends MatTooltipComponent {
21
21
  show(delay: number): void;
22
22
  get _self(): any;
23
23
  static ɵfac: i0.ɵɵFactoryDeclaration<TooltipComponent, never>;
24
- static ɵcmp: i0.ɵɵComponentDeclaration<TooltipComponent, "bui-tooltip-component", never, {}, {}, never, never>;
24
+ static ɵcmp: i0.ɵɵComponentDeclaration<TooltipComponent, "bui-tooltip-component", never, {}, {}, never, never, false>;
25
25
  }
26
26
  export {};
@@ -37,5 +37,5 @@ export declare class TooltipDirective extends _MatTooltipBase<TooltipComponent>
37
37
  /** @ignore */
38
38
  clicked(): void;
39
39
  static ɵfac: i0.ɵɵFactoryDeclaration<TooltipDirective, [null, null, null, null, null, null, null, null, null, { optional: true; }, { optional: true; }, null]>;
40
- static ɵdir: i0.ɵɵDirectiveDeclaration<TooltipDirective, "[buiTooltip]", ["buiTooltip"], { "buiTooltipPosition": "buiTooltipPosition"; "buiTooltipDisabled": "buiTooltipDisabled"; "buiTooltip": "buiTooltip"; "buiTooltipClass": "buiTooltipClass"; }, {}, never>;
40
+ static ɵdir: i0.ɵɵDirectiveDeclaration<TooltipDirective, "[buiTooltip]", ["buiTooltip"], { "buiTooltipPosition": "buiTooltipPosition"; "buiTooltipDisabled": "buiTooltipDisabled"; "buiTooltip": "buiTooltip"; "buiTooltipClass": "buiTooltipClass"; }, {}, never, never, false>;
41
41
  }
@@ -1,10 +0,0 @@
1
- {
2
- "main": "../bundles/bravura-ui-alert.umd.js",
3
- "module": "../fesm2015/bravura-ui-alert.js",
4
- "es2015": "../fesm2015/bravura-ui-alert.js",
5
- "esm2015": "../esm2015/alert/bravura-ui-alert.js",
6
- "fesm2015": "../fesm2015/bravura-ui-alert.js",
7
- "typings": "bravura-ui-alert.d.ts",
8
- "sideEffects": false,
9
- "name": "@bravura/ui/alert"
10
- }
@@ -1,10 +0,0 @@
1
- {
2
- "main": "../bundles/bravura-ui-behavior.umd.js",
3
- "module": "../fesm2015/bravura-ui-behavior.js",
4
- "es2015": "../fesm2015/bravura-ui-behavior.js",
5
- "esm2015": "../esm2015/behavior/bravura-ui-behavior.js",
6
- "fesm2015": "../fesm2015/bravura-ui-behavior.js",
7
- "typings": "bravura-ui-behavior.d.ts",
8
- "sideEffects": false,
9
- "name": "@bravura/ui/behavior"
10
- }