@bravura/ui 3.8.1 → 5.0.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 (276) hide show
  1. package/CHANGELOG.md +585 -565
  2. package/LICENSE +6 -6
  3. package/README.md +3 -1
  4. package/alert/alert-container.component.d.ts +1 -1
  5. package/alert/alert-message.component.d.ts +1 -1
  6. package/behavior/await.directive.d.ts +1 -1
  7. package/behavior/observe-content-class.directive.d.ts +1 -1
  8. package/behavior/sizing.directive.d.ts +1 -1
  9. package/clip-note/clip-note.directive.d.ts +1 -1
  10. package/currency-input/currency-input.directive.d.ts +1 -1
  11. package/decimal-input/decimal-input.directive.d.ts +1 -1
  12. package/discrete-input/discrete-input.component.d.ts +1 -1
  13. package/esm2022/alert/alert-container.component.mjs +207 -0
  14. package/esm2022/alert/alert-message.component.mjs +101 -0
  15. package/esm2022/alert/alert.module.mjs +22 -0
  16. package/{esm2020 → esm2022}/alert/public-api.mjs +1 -1
  17. package/esm2022/alert/testing/test-api.mjs +44 -0
  18. package/esm2022/behavior/await.directive.mjs +133 -0
  19. package/esm2022/behavior/behavior.module.mjs +37 -0
  20. package/esm2022/behavior/observe-content-class.directive.mjs +63 -0
  21. package/{esm2020 → esm2022}/behavior/public-api.mjs +1 -1
  22. package/esm2022/behavior/sizing-monitor.directive.mjs +31 -0
  23. package/esm2022/behavior/sizing.directive.mjs +256 -0
  24. package/esm2022/clip-note/clip-note.component.mjs +216 -0
  25. package/esm2022/clip-note/clip-note.directive.mjs +141 -0
  26. package/esm2022/clip-note/clip-note.module.mjs +32 -0
  27. package/{esm2020 → esm2022}/clip-note/public-api.mjs +1 -1
  28. package/{esm2020 → esm2022}/common/common-utils.mjs +1 -1
  29. package/esm2022/common/common.module.mjs +53 -0
  30. package/{esm2020 → esm2022}/common/public-api.mjs +1 -1
  31. package/esm2022/currency-input/currency-input.directive.mjs +276 -0
  32. package/esm2022/currency-input/currency-input.module.mjs +19 -0
  33. package/{esm2020 → esm2022}/currency-input/public-api.mjs +1 -1
  34. package/esm2022/decimal-input/decimal-input.directive.mjs +122 -0
  35. package/{esm2020 → esm2022}/decimal-input/decimal-input.module.mjs +5 -5
  36. package/esm2022/discrete-input/discrete-input.component.mjs +337 -0
  37. package/esm2022/discrete-input/discrete-input.module.mjs +21 -0
  38. package/{esm2020 → esm2022}/discrete-input/public-api.mjs +1 -1
  39. package/esm2022/file-upload/file-upload.component.mjs +400 -0
  40. package/esm2022/file-upload/file-upload.module.mjs +44 -0
  41. package/esm2022/file-upload/file-upload.service.mjs +29 -0
  42. package/{esm2020 → esm2022}/file-upload/public-api.mjs +1 -1
  43. package/esm2022/form-field/form-field.component.mjs +82 -0
  44. package/esm2022/form-field/form-field.module.mjs +33 -0
  45. package/{esm2020 → esm2022}/form-field/public-api.mjs +1 -1
  46. package/esm2022/icon-font/icon-font.module.mjs +22 -0
  47. package/esm2022/icon-font/icon.directive.mjs +102 -0
  48. package/{esm2020 → esm2022}/icon-font/public-api.mjs +1 -1
  49. package/esm2022/icon-font/utilities.mjs +51 -0
  50. package/esm2022/panel/panel-section.component.mjs +41 -0
  51. package/esm2022/panel/panel.component.mjs +87 -0
  52. package/esm2022/panel/panel.module.mjs +23 -0
  53. package/{esm2020 → esm2022}/panel/public-api.mjs +1 -1
  54. package/esm2022/panel/tinted.directive.mjs +60 -0
  55. package/esm2022/phone-number/phone-number.directive.mjs +188 -0
  56. package/{esm2020 → esm2022}/phone-number/phone-number.module.mjs +5 -5
  57. package/esm2022/phone-number/phone-number.pipe.mjs +47 -0
  58. package/esm2022/phone-number/phone-number.validator.mjs +64 -0
  59. package/{esm2020 → esm2022}/phone-number/public-api.mjs +1 -1
  60. package/{esm2020 → esm2022}/public-api.mjs +1 -1
  61. package/esm2022/radio-panel/radio-panel-item.component.mjs +93 -0
  62. package/esm2022/radio-panel/radio-panel.component.mjs +81 -0
  63. package/{esm2020 → esm2022}/radio-panel/radio-panel.module.mjs +5 -5
  64. package/esm2022/radio-panel/testing/test-api.mjs +46 -0
  65. package/{esm2020 → esm2022}/selection-panel/public-api.mjs +1 -1
  66. package/esm2022/selection-panel/selection-panel-item.component.mjs +166 -0
  67. package/esm2022/selection-panel/selection-panel.directive.mjs +119 -0
  68. package/esm2022/selection-panel/selection-panel.module.mjs +23 -0
  69. package/{esm2020 → esm2022}/skeletons/public-api.mjs +1 -1
  70. package/esm2022/skeletons/skeleton-loader-presets.directive.mjs +83 -0
  71. package/esm2022/skeletons/skeleton-loader.component.mjs +76 -0
  72. package/esm2022/skeletons/skeletons.module.mjs +35 -0
  73. package/{esm2020 → esm2022}/stepper/public-api.mjs +1 -1
  74. package/{esm2020 → esm2022}/stepper/stepper-animation.mjs +1 -1
  75. package/esm2022/stepper/stepper.component.mjs +176 -0
  76. package/esm2022/stepper/stepper.module.mjs +52 -0
  77. package/{esm2020 → esm2022}/tooltip/public-api.mjs +1 -1
  78. package/esm2022/tooltip/tooltip.component.mjs +63 -0
  79. package/esm2022/tooltip/tooltip.directive.mjs +148 -0
  80. package/esm2022/tooltip/tooltip.module.mjs +25 -0
  81. package/{fesm2020 → fesm2022}/bravura-ui-alert-testing.mjs +2 -2
  82. package/fesm2022/bravura-ui-alert-testing.mjs.map +1 -0
  83. package/fesm2022/bravura-ui-alert.mjs +327 -0
  84. package/fesm2022/bravura-ui-alert.mjs.map +1 -0
  85. package/{fesm2020 → fesm2022}/bravura-ui-behavior.mjs +45 -45
  86. package/fesm2022/bravura-ui-behavior.mjs.map +1 -0
  87. package/{fesm2020 → fesm2022}/bravura-ui-clip-note.mjs +70 -70
  88. package/fesm2022/bravura-ui-clip-note.mjs.map +1 -0
  89. package/{fesm2020 → fesm2022}/bravura-ui-common.mjs +6 -6
  90. package/fesm2022/bravura-ui-common.mjs.map +1 -0
  91. package/{fesm2020 → fesm2022}/bravura-ui-currency-input.mjs +11 -11
  92. package/fesm2022/bravura-ui-currency-input.mjs.map +1 -0
  93. package/{fesm2020 → fesm2022}/bravura-ui-decimal-input.mjs +12 -12
  94. package/fesm2022/bravura-ui-decimal-input.mjs.map +1 -0
  95. package/{fesm2020 → fesm2022}/bravura-ui-discrete-input.mjs +48 -48
  96. package/fesm2022/bravura-ui-discrete-input.mjs.map +1 -0
  97. package/fesm2022/bravura-ui-file-upload.mjs +474 -0
  98. package/fesm2022/bravura-ui-file-upload.mjs.map +1 -0
  99. package/{fesm2020 → fesm2022}/bravura-ui-form-field.mjs +19 -19
  100. package/fesm2022/bravura-ui-form-field.mjs.map +1 -0
  101. package/{fesm2020 → fesm2022}/bravura-ui-icon-font.mjs +8 -8
  102. package/fesm2022/bravura-ui-icon-font.mjs.map +1 -0
  103. package/fesm2022/bravura-ui-panel.mjs +206 -0
  104. package/fesm2022/bravura-ui-panel.mjs.map +1 -0
  105. package/{fesm2020 → fesm2022}/bravura-ui-phone-number.mjs +30 -30
  106. package/fesm2022/bravura-ui-phone-number.mjs.map +1 -0
  107. package/{fesm2020 → fesm2022}/bravura-ui-radio-panel-testing.mjs +5 -6
  108. package/fesm2022/bravura-ui-radio-panel-testing.mjs.map +1 -0
  109. package/{fesm2020 → fesm2022}/bravura-ui-radio-panel.mjs +32 -32
  110. package/fesm2022/bravura-ui-radio-panel.mjs.map +1 -0
  111. package/fesm2022/bravura-ui-selection-panel.mjs +306 -0
  112. package/fesm2022/bravura-ui-selection-panel.mjs.map +1 -0
  113. package/{fesm2020 → fesm2022}/bravura-ui-skeletons.mjs +43 -43
  114. package/fesm2022/bravura-ui-skeletons.mjs.map +1 -0
  115. package/fesm2022/bravura-ui-stepper.mjs +251 -0
  116. package/fesm2022/bravura-ui-stepper.mjs.map +1 -0
  117. package/{fesm2020 → fesm2022}/bravura-ui-tooltip.mjs +32 -24
  118. package/fesm2022/bravura-ui-tooltip.mjs.map +1 -0
  119. package/fesm2022/bravura-ui.mjs.map +1 -0
  120. package/file-upload/file-upload.component.d.ts +1 -1
  121. package/form-field/form-field.component.d.ts +1 -1
  122. package/icon-font/icon.directive.d.ts +1 -1
  123. package/package.json +88 -132
  124. package/panel/panel.component.d.ts +1 -1
  125. package/panel/tinted.directive.d.ts +1 -1
  126. package/phone-number/phone-number.directive.d.ts +1 -1
  127. package/phone-number/phone-number.validator.d.ts +2 -2
  128. package/radio-panel/radio-panel-item.component.d.ts +1 -1
  129. package/radio-panel/radio-panel.component.d.ts +1 -1
  130. package/radio-panel/testing/test-api.d.ts +2 -3
  131. package/selection-panel/selection-panel-item.component.d.ts +1 -1
  132. package/selection-panel/selection-panel.directive.d.ts +1 -1
  133. package/skeletons/skeleton-loader-presets.directive.d.ts +3 -3
  134. package/stepper/stepper.component.d.ts +1 -1
  135. package/theme/_bui-card.scss +56 -56
  136. package/theme/_ui-theme.scss +3 -3
  137. package/theme/global-style-by-bootstrap.scss +3 -3
  138. package/theme/global-style-by-tailwind.scss +3 -3
  139. package/theme/scrollbar.scss +40 -40
  140. package/tooltip/tooltip.component.d.ts +2 -0
  141. package/tooltip/tooltip.directive.d.ts +3 -5
  142. package/esm2020/alert/alert-container.component.mjs +0 -207
  143. package/esm2020/alert/alert-message.component.mjs +0 -102
  144. package/esm2020/alert/alert.module.mjs +0 -22
  145. package/esm2020/alert/testing/test-api.mjs +0 -44
  146. package/esm2020/behavior/await.directive.mjs +0 -133
  147. package/esm2020/behavior/behavior.module.mjs +0 -37
  148. package/esm2020/behavior/observe-content-class.directive.mjs +0 -63
  149. package/esm2020/behavior/sizing-monitor.directive.mjs +0 -31
  150. package/esm2020/behavior/sizing.directive.mjs +0 -256
  151. package/esm2020/clip-note/clip-note.component.mjs +0 -216
  152. package/esm2020/clip-note/clip-note.directive.mjs +0 -141
  153. package/esm2020/clip-note/clip-note.module.mjs +0 -32
  154. package/esm2020/common/common.module.mjs +0 -53
  155. package/esm2020/currency-input/currency-input.directive.mjs +0 -276
  156. package/esm2020/currency-input/currency-input.module.mjs +0 -19
  157. package/esm2020/decimal-input/decimal-input.directive.mjs +0 -122
  158. package/esm2020/discrete-input/discrete-input.component.mjs +0 -337
  159. package/esm2020/discrete-input/discrete-input.module.mjs +0 -21
  160. package/esm2020/file-upload/file-upload.component.mjs +0 -400
  161. package/esm2020/file-upload/file-upload.module.mjs +0 -44
  162. package/esm2020/file-upload/file-upload.service.mjs +0 -29
  163. package/esm2020/form-field/form-field.component.mjs +0 -82
  164. package/esm2020/form-field/form-field.module.mjs +0 -33
  165. package/esm2020/icon-font/icon-font.module.mjs +0 -22
  166. package/esm2020/icon-font/icon.directive.mjs +0 -102
  167. package/esm2020/icon-font/utilities.mjs +0 -51
  168. package/esm2020/panel/panel-section.component.mjs +0 -41
  169. package/esm2020/panel/panel.component.mjs +0 -87
  170. package/esm2020/panel/panel.module.mjs +0 -23
  171. package/esm2020/panel/tinted.directive.mjs +0 -60
  172. package/esm2020/phone-number/phone-number.directive.mjs +0 -188
  173. package/esm2020/phone-number/phone-number.pipe.mjs +0 -47
  174. package/esm2020/phone-number/phone-number.validator.mjs +0 -64
  175. package/esm2020/radio-panel/radio-panel-item.component.mjs +0 -93
  176. package/esm2020/radio-panel/radio-panel.component.mjs +0 -81
  177. package/esm2020/radio-panel/testing/test-api.mjs +0 -47
  178. package/esm2020/selection-panel/selection-panel-item.component.mjs +0 -166
  179. package/esm2020/selection-panel/selection-panel.directive.mjs +0 -119
  180. package/esm2020/selection-panel/selection-panel.module.mjs +0 -23
  181. package/esm2020/skeletons/skeleton-loader-presets.directive.mjs +0 -83
  182. package/esm2020/skeletons/skeleton-loader.component.mjs +0 -76
  183. package/esm2020/skeletons/skeletons.module.mjs +0 -35
  184. package/esm2020/stepper/stepper.component.mjs +0 -176
  185. package/esm2020/stepper/stepper.module.mjs +0 -52
  186. package/esm2020/tooltip/tooltip.component.mjs +0 -54
  187. package/esm2020/tooltip/tooltip.directive.mjs +0 -149
  188. package/esm2020/tooltip/tooltip.module.mjs +0 -25
  189. package/fesm2015/bravura-ui-alert-testing.mjs +0 -64
  190. package/fesm2015/bravura-ui-alert-testing.mjs.map +0 -1
  191. package/fesm2015/bravura-ui-alert.mjs +0 -340
  192. package/fesm2015/bravura-ui-alert.mjs.map +0 -1
  193. package/fesm2015/bravura-ui-behavior.mjs +0 -515
  194. package/fesm2015/bravura-ui-behavior.mjs.map +0 -1
  195. package/fesm2015/bravura-ui-clip-note.mjs +0 -393
  196. package/fesm2015/bravura-ui-clip-note.mjs.map +0 -1
  197. package/fesm2015/bravura-ui-common.mjs +0 -96
  198. package/fesm2015/bravura-ui-common.mjs.map +0 -1
  199. package/fesm2015/bravura-ui-currency-input.mjs +0 -300
  200. package/fesm2015/bravura-ui-currency-input.mjs.map +0 -1
  201. package/fesm2015/bravura-ui-decimal-input.mjs +0 -145
  202. package/fesm2015/bravura-ui-decimal-input.mjs.map +0 -1
  203. package/fesm2015/bravura-ui-discrete-input.mjs +0 -365
  204. package/fesm2015/bravura-ui-discrete-input.mjs.map +0 -1
  205. package/fesm2015/bravura-ui-file-upload.mjs +0 -478
  206. package/fesm2015/bravura-ui-file-upload.mjs.map +0 -1
  207. package/fesm2015/bravura-ui-form-field.mjs +0 -120
  208. package/fesm2015/bravura-ui-form-field.mjs.map +0 -1
  209. package/fesm2015/bravura-ui-icon-font.mjs +0 -178
  210. package/fesm2015/bravura-ui-icon-font.mjs.map +0 -1
  211. package/fesm2015/bravura-ui-panel.mjs +0 -210
  212. package/fesm2015/bravura-ui-panel.mjs.map +0 -1
  213. package/fesm2015/bravura-ui-phone-number.mjs +0 -327
  214. package/fesm2015/bravura-ui-phone-number.mjs.map +0 -1
  215. package/fesm2015/bravura-ui-radio-panel-testing.mjs +0 -63
  216. package/fesm2015/bravura-ui-radio-panel-testing.mjs.map +0 -1
  217. package/fesm2015/bravura-ui-radio-panel.mjs +0 -200
  218. package/fesm2015/bravura-ui-radio-panel.mjs.map +0 -1
  219. package/fesm2015/bravura-ui-selection-panel.mjs +0 -311
  220. package/fesm2015/bravura-ui-selection-panel.mjs.map +0 -1
  221. package/fesm2015/bravura-ui-skeletons.mjs +0 -195
  222. package/fesm2015/bravura-ui-skeletons.mjs.map +0 -1
  223. package/fesm2015/bravura-ui-stepper.mjs +0 -253
  224. package/fesm2015/bravura-ui-stepper.mjs.map +0 -1
  225. package/fesm2015/bravura-ui-tooltip.mjs +0 -229
  226. package/fesm2015/bravura-ui-tooltip.mjs.map +0 -1
  227. package/fesm2015/bravura-ui.mjs.map +0 -1
  228. package/fesm2020/bravura-ui-alert-testing.mjs.map +0 -1
  229. package/fesm2020/bravura-ui-alert.mjs +0 -328
  230. package/fesm2020/bravura-ui-alert.mjs.map +0 -1
  231. package/fesm2020/bravura-ui-behavior.mjs.map +0 -1
  232. package/fesm2020/bravura-ui-clip-note.mjs.map +0 -1
  233. package/fesm2020/bravura-ui-common.mjs.map +0 -1
  234. package/fesm2020/bravura-ui-currency-input.mjs.map +0 -1
  235. package/fesm2020/bravura-ui-decimal-input.mjs.map +0 -1
  236. package/fesm2020/bravura-ui-discrete-input.mjs.map +0 -1
  237. package/fesm2020/bravura-ui-file-upload.mjs +0 -474
  238. package/fesm2020/bravura-ui-file-upload.mjs.map +0 -1
  239. package/fesm2020/bravura-ui-form-field.mjs.map +0 -1
  240. package/fesm2020/bravura-ui-icon-font.mjs.map +0 -1
  241. package/fesm2020/bravura-ui-panel.mjs +0 -206
  242. package/fesm2020/bravura-ui-panel.mjs.map +0 -1
  243. package/fesm2020/bravura-ui-phone-number.mjs.map +0 -1
  244. package/fesm2020/bravura-ui-radio-panel-testing.mjs.map +0 -1
  245. package/fesm2020/bravura-ui-radio-panel.mjs.map +0 -1
  246. package/fesm2020/bravura-ui-selection-panel.mjs +0 -306
  247. package/fesm2020/bravura-ui-selection-panel.mjs.map +0 -1
  248. package/fesm2020/bravura-ui-skeletons.mjs.map +0 -1
  249. package/fesm2020/bravura-ui-stepper.mjs +0 -251
  250. package/fesm2020/bravura-ui-stepper.mjs.map +0 -1
  251. package/fesm2020/bravura-ui-tooltip.mjs.map +0 -1
  252. package/fesm2020/bravura-ui.mjs +0 -8
  253. package/fesm2020/bravura-ui.mjs.map +0 -1
  254. /package/{esm2020 → esm2022}/alert/bravura-ui-alert.mjs +0 -0
  255. /package/{esm2020 → esm2022}/alert/testing/bravura-ui-alert-testing.mjs +0 -0
  256. /package/{esm2020 → esm2022}/behavior/bravura-ui-behavior.mjs +0 -0
  257. /package/{esm2020 → esm2022}/bravura-ui.mjs +0 -0
  258. /package/{esm2020 → esm2022}/clip-note/bravura-ui-clip-note.mjs +0 -0
  259. /package/{esm2020 → esm2022}/common/bravura-ui-common.mjs +0 -0
  260. /package/{esm2020 → esm2022}/currency-input/bravura-ui-currency-input.mjs +0 -0
  261. /package/{esm2020 → esm2022}/decimal-input/bravura-ui-decimal-input.mjs +0 -0
  262. /package/{esm2020 → esm2022}/decimal-input/public-api.mjs +0 -0
  263. /package/{esm2020 → esm2022}/discrete-input/bravura-ui-discrete-input.mjs +0 -0
  264. /package/{esm2020 → esm2022}/file-upload/bravura-ui-file-upload.mjs +0 -0
  265. /package/{esm2020 → esm2022}/form-field/bravura-ui-form-field.mjs +0 -0
  266. /package/{esm2020 → esm2022}/icon-font/bravura-ui-icon-font.mjs +0 -0
  267. /package/{esm2020 → esm2022}/panel/bravura-ui-panel.mjs +0 -0
  268. /package/{esm2020 → esm2022}/phone-number/bravura-ui-phone-number.mjs +0 -0
  269. /package/{esm2020 → esm2022}/radio-panel/bravura-ui-radio-panel.mjs +0 -0
  270. /package/{esm2020 → esm2022}/radio-panel/public-api.mjs +0 -0
  271. /package/{esm2020 → esm2022}/radio-panel/testing/bravura-ui-radio-panel-testing.mjs +0 -0
  272. /package/{esm2020 → esm2022}/selection-panel/bravura-ui-selection-panel.mjs +0 -0
  273. /package/{esm2020 → esm2022}/skeletons/bravura-ui-skeletons.mjs +0 -0
  274. /package/{esm2020 → esm2022}/stepper/bravura-ui-stepper.mjs +0 -0
  275. /package/{esm2020 → esm2022}/tooltip/bravura-ui-tooltip.mjs +0 -0
  276. /package/{fesm2015 → fesm2022}/bravura-ui.mjs +0 -0
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": "3.8.1",
4
+ "version": "5.0.0",
5
5
  "keywords": [
6
6
  "Angular",
7
7
  "Angular Material",
@@ -9,25 +9,21 @@
9
9
  ],
10
10
  "author": "Bravura Solutions",
11
11
  "peerDependencies": {
12
- "@angular/cdk": "^15.0.4 || ^16.1.0",
13
- "@angular/common": "^15.1.0 || ^16.1.0",
14
- "@angular/compiler": "^15.1.0 || ^16.1.0",
15
- "@angular/core": "^15.1.0 || ^16.1.0",
16
- "@angular/forms": "^15.1.0 || ^16.1.0",
17
- "@angular/material": "^15.0.4 || ^16.1.0",
12
+ "@angular/cdk": "^18.2.2",
13
+ "@angular/common": "^18.2.2",
14
+ "@angular/compiler": "^18.2.2",
15
+ "@angular/core": "^18.2.2",
16
+ "@angular/forms": "^18.2.2",
17
+ "@angular/material": "^18.2.2",
18
18
  "@ngneat/content-loader": "^7.0.0",
19
- "intl-tel-input": "^17.0.16 || ^18.1.6",
20
- "rxjs": "~7.5.0 || ~7.8.0"
19
+ "intl-tel-input": "^18.1.6",
20
+ "rxjs": "~7.8.0"
21
21
  },
22
22
  "dependencies": {
23
23
  "tslib": "^2.4.0"
24
24
  },
25
25
  "license": "ISC",
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",
26
+ "module": "fesm2022/bravura-ui.mjs",
31
27
  "typings": "index.d.ts",
32
28
  "exports": {
33
29
  "./package.json": {
@@ -35,163 +31,123 @@
35
31
  },
36
32
  ".": {
37
33
  "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
- "./alert/testing": {
53
- "types": "./alert/testing/index.d.ts",
54
- "esm2020": "./esm2020/alert/testing/bravura-ui-alert-testing.mjs",
55
- "es2020": "./fesm2020/bravura-ui-alert-testing.mjs",
56
- "es2015": "./fesm2015/bravura-ui-alert-testing.mjs",
57
- "node": "./fesm2015/bravura-ui-alert-testing.mjs",
58
- "default": "./fesm2020/bravura-ui-alert-testing.mjs"
34
+ "esm2022": "./esm2022/bravura-ui.mjs",
35
+ "esm": "./esm2022/bravura-ui.mjs",
36
+ "default": "./fesm2022/bravura-ui.mjs"
59
37
  },
60
38
  "./behavior": {
61
39
  "types": "./behavior/index.d.ts",
62
- "esm2020": "./esm2020/behavior/bravura-ui-behavior.mjs",
63
- "es2020": "./fesm2020/bravura-ui-behavior.mjs",
64
- "es2015": "./fesm2015/bravura-ui-behavior.mjs",
65
- "node": "./fesm2015/bravura-ui-behavior.mjs",
66
- "default": "./fesm2020/bravura-ui-behavior.mjs"
40
+ "esm2022": "./esm2022/behavior/bravura-ui-behavior.mjs",
41
+ "esm": "./esm2022/behavior/bravura-ui-behavior.mjs",
42
+ "default": "./fesm2022/bravura-ui-behavior.mjs"
43
+ },
44
+ "./alert": {
45
+ "types": "./alert/index.d.ts",
46
+ "esm2022": "./esm2022/alert/bravura-ui-alert.mjs",
47
+ "esm": "./esm2022/alert/bravura-ui-alert.mjs",
48
+ "default": "./fesm2022/bravura-ui-alert.mjs"
67
49
  },
68
50
  "./clip-note": {
69
51
  "types": "./clip-note/index.d.ts",
70
- "esm2020": "./esm2020/clip-note/bravura-ui-clip-note.mjs",
71
- "es2020": "./fesm2020/bravura-ui-clip-note.mjs",
72
- "es2015": "./fesm2015/bravura-ui-clip-note.mjs",
73
- "node": "./fesm2015/bravura-ui-clip-note.mjs",
74
- "default": "./fesm2020/bravura-ui-clip-note.mjs"
75
- },
76
- "./common": {
77
- "types": "./common/index.d.ts",
78
- "esm2020": "./esm2020/common/bravura-ui-common.mjs",
79
- "es2020": "./fesm2020/bravura-ui-common.mjs",
80
- "es2015": "./fesm2015/bravura-ui-common.mjs",
81
- "node": "./fesm2015/bravura-ui-common.mjs",
82
- "default": "./fesm2020/bravura-ui-common.mjs"
52
+ "esm2022": "./esm2022/clip-note/bravura-ui-clip-note.mjs",
53
+ "esm": "./esm2022/clip-note/bravura-ui-clip-note.mjs",
54
+ "default": "./fesm2022/bravura-ui-clip-note.mjs"
83
55
  },
84
56
  "./currency-input": {
85
57
  "types": "./currency-input/index.d.ts",
86
- "esm2020": "./esm2020/currency-input/bravura-ui-currency-input.mjs",
87
- "es2020": "./fesm2020/bravura-ui-currency-input.mjs",
88
- "es2015": "./fesm2015/bravura-ui-currency-input.mjs",
89
- "node": "./fesm2015/bravura-ui-currency-input.mjs",
90
- "default": "./fesm2020/bravura-ui-currency-input.mjs"
58
+ "esm2022": "./esm2022/currency-input/bravura-ui-currency-input.mjs",
59
+ "esm": "./esm2022/currency-input/bravura-ui-currency-input.mjs",
60
+ "default": "./fesm2022/bravura-ui-currency-input.mjs"
61
+ },
62
+ "./common": {
63
+ "types": "./common/index.d.ts",
64
+ "esm2022": "./esm2022/common/bravura-ui-common.mjs",
65
+ "esm": "./esm2022/common/bravura-ui-common.mjs",
66
+ "default": "./fesm2022/bravura-ui-common.mjs"
91
67
  },
92
68
  "./decimal-input": {
93
69
  "types": "./decimal-input/index.d.ts",
94
- "esm2020": "./esm2020/decimal-input/bravura-ui-decimal-input.mjs",
95
- "es2020": "./fesm2020/bravura-ui-decimal-input.mjs",
96
- "es2015": "./fesm2015/bravura-ui-decimal-input.mjs",
97
- "node": "./fesm2015/bravura-ui-decimal-input.mjs",
98
- "default": "./fesm2020/bravura-ui-decimal-input.mjs"
70
+ "esm2022": "./esm2022/decimal-input/bravura-ui-decimal-input.mjs",
71
+ "esm": "./esm2022/decimal-input/bravura-ui-decimal-input.mjs",
72
+ "default": "./fesm2022/bravura-ui-decimal-input.mjs"
99
73
  },
100
74
  "./discrete-input": {
101
75
  "types": "./discrete-input/index.d.ts",
102
- "esm2020": "./esm2020/discrete-input/bravura-ui-discrete-input.mjs",
103
- "es2020": "./fesm2020/bravura-ui-discrete-input.mjs",
104
- "es2015": "./fesm2015/bravura-ui-discrete-input.mjs",
105
- "node": "./fesm2015/bravura-ui-discrete-input.mjs",
106
- "default": "./fesm2020/bravura-ui-discrete-input.mjs"
76
+ "esm2022": "./esm2022/discrete-input/bravura-ui-discrete-input.mjs",
77
+ "esm": "./esm2022/discrete-input/bravura-ui-discrete-input.mjs",
78
+ "default": "./fesm2022/bravura-ui-discrete-input.mjs"
107
79
  },
108
80
  "./file-upload": {
109
81
  "types": "./file-upload/index.d.ts",
110
- "esm2020": "./esm2020/file-upload/bravura-ui-file-upload.mjs",
111
- "es2020": "./fesm2020/bravura-ui-file-upload.mjs",
112
- "es2015": "./fesm2015/bravura-ui-file-upload.mjs",
113
- "node": "./fesm2015/bravura-ui-file-upload.mjs",
114
- "default": "./fesm2020/bravura-ui-file-upload.mjs"
82
+ "esm2022": "./esm2022/file-upload/bravura-ui-file-upload.mjs",
83
+ "esm": "./esm2022/file-upload/bravura-ui-file-upload.mjs",
84
+ "default": "./fesm2022/bravura-ui-file-upload.mjs"
115
85
  },
116
86
  "./form-field": {
117
87
  "types": "./form-field/index.d.ts",
118
- "esm2020": "./esm2020/form-field/bravura-ui-form-field.mjs",
119
- "es2020": "./fesm2020/bravura-ui-form-field.mjs",
120
- "es2015": "./fesm2015/bravura-ui-form-field.mjs",
121
- "node": "./fesm2015/bravura-ui-form-field.mjs",
122
- "default": "./fesm2020/bravura-ui-form-field.mjs"
88
+ "esm2022": "./esm2022/form-field/bravura-ui-form-field.mjs",
89
+ "esm": "./esm2022/form-field/bravura-ui-form-field.mjs",
90
+ "default": "./fesm2022/bravura-ui-form-field.mjs"
123
91
  },
124
92
  "./icon-font": {
125
93
  "types": "./icon-font/index.d.ts",
126
- "esm2020": "./esm2020/icon-font/bravura-ui-icon-font.mjs",
127
- "es2020": "./fesm2020/bravura-ui-icon-font.mjs",
128
- "es2015": "./fesm2015/bravura-ui-icon-font.mjs",
129
- "node": "./fesm2015/bravura-ui-icon-font.mjs",
130
- "default": "./fesm2020/bravura-ui-icon-font.mjs"
94
+ "esm2022": "./esm2022/icon-font/bravura-ui-icon-font.mjs",
95
+ "esm": "./esm2022/icon-font/bravura-ui-icon-font.mjs",
96
+ "default": "./fesm2022/bravura-ui-icon-font.mjs"
131
97
  },
132
- "./panel": {
133
- "types": "./panel/index.d.ts",
134
- "esm2020": "./esm2020/panel/bravura-ui-panel.mjs",
135
- "es2020": "./fesm2020/bravura-ui-panel.mjs",
136
- "es2015": "./fesm2015/bravura-ui-panel.mjs",
137
- "node": "./fesm2015/bravura-ui-panel.mjs",
138
- "default": "./fesm2020/bravura-ui-panel.mjs"
98
+ "./radio-panel": {
99
+ "types": "./radio-panel/index.d.ts",
100
+ "esm2022": "./esm2022/radio-panel/bravura-ui-radio-panel.mjs",
101
+ "esm": "./esm2022/radio-panel/bravura-ui-radio-panel.mjs",
102
+ "default": "./fesm2022/bravura-ui-radio-panel.mjs"
139
103
  },
140
104
  "./phone-number": {
141
105
  "types": "./phone-number/index.d.ts",
142
- "esm2020": "./esm2020/phone-number/bravura-ui-phone-number.mjs",
143
- "es2020": "./fesm2020/bravura-ui-phone-number.mjs",
144
- "es2015": "./fesm2015/bravura-ui-phone-number.mjs",
145
- "node": "./fesm2015/bravura-ui-phone-number.mjs",
146
- "default": "./fesm2020/bravura-ui-phone-number.mjs"
106
+ "esm2022": "./esm2022/phone-number/bravura-ui-phone-number.mjs",
107
+ "esm": "./esm2022/phone-number/bravura-ui-phone-number.mjs",
108
+ "default": "./fesm2022/bravura-ui-phone-number.mjs"
147
109
  },
148
- "./radio-panel": {
149
- "types": "./radio-panel/index.d.ts",
150
- "esm2020": "./esm2020/radio-panel/bravura-ui-radio-panel.mjs",
151
- "es2020": "./fesm2020/bravura-ui-radio-panel.mjs",
152
- "es2015": "./fesm2015/bravura-ui-radio-panel.mjs",
153
- "node": "./fesm2015/bravura-ui-radio-panel.mjs",
154
- "default": "./fesm2020/bravura-ui-radio-panel.mjs"
110
+ "./panel": {
111
+ "types": "./panel/index.d.ts",
112
+ "esm2022": "./esm2022/panel/bravura-ui-panel.mjs",
113
+ "esm": "./esm2022/panel/bravura-ui-panel.mjs",
114
+ "default": "./fesm2022/bravura-ui-panel.mjs"
155
115
  },
156
- "./radio-panel/testing": {
157
- "types": "./radio-panel/testing/index.d.ts",
158
- "esm2020": "./esm2020/radio-panel/testing/bravura-ui-radio-panel-testing.mjs",
159
- "es2020": "./fesm2020/bravura-ui-radio-panel-testing.mjs",
160
- "es2015": "./fesm2015/bravura-ui-radio-panel-testing.mjs",
161
- "node": "./fesm2015/bravura-ui-radio-panel-testing.mjs",
162
- "default": "./fesm2020/bravura-ui-radio-panel-testing.mjs"
116
+ "./stepper": {
117
+ "types": "./stepper/index.d.ts",
118
+ "esm2022": "./esm2022/stepper/bravura-ui-stepper.mjs",
119
+ "esm": "./esm2022/stepper/bravura-ui-stepper.mjs",
120
+ "default": "./fesm2022/bravura-ui-stepper.mjs"
163
121
  },
164
122
  "./selection-panel": {
165
123
  "types": "./selection-panel/index.d.ts",
166
- "esm2020": "./esm2020/selection-panel/bravura-ui-selection-panel.mjs",
167
- "es2020": "./fesm2020/bravura-ui-selection-panel.mjs",
168
- "es2015": "./fesm2015/bravura-ui-selection-panel.mjs",
169
- "node": "./fesm2015/bravura-ui-selection-panel.mjs",
170
- "default": "./fesm2020/bravura-ui-selection-panel.mjs"
124
+ "esm2022": "./esm2022/selection-panel/bravura-ui-selection-panel.mjs",
125
+ "esm": "./esm2022/selection-panel/bravura-ui-selection-panel.mjs",
126
+ "default": "./fesm2022/bravura-ui-selection-panel.mjs"
171
127
  },
172
128
  "./skeletons": {
173
129
  "types": "./skeletons/index.d.ts",
174
- "esm2020": "./esm2020/skeletons/bravura-ui-skeletons.mjs",
175
- "es2020": "./fesm2020/bravura-ui-skeletons.mjs",
176
- "es2015": "./fesm2015/bravura-ui-skeletons.mjs",
177
- "node": "./fesm2015/bravura-ui-skeletons.mjs",
178
- "default": "./fesm2020/bravura-ui-skeletons.mjs"
179
- },
180
- "./stepper": {
181
- "types": "./stepper/index.d.ts",
182
- "esm2020": "./esm2020/stepper/bravura-ui-stepper.mjs",
183
- "es2020": "./fesm2020/bravura-ui-stepper.mjs",
184
- "es2015": "./fesm2015/bravura-ui-stepper.mjs",
185
- "node": "./fesm2015/bravura-ui-stepper.mjs",
186
- "default": "./fesm2020/bravura-ui-stepper.mjs"
130
+ "esm2022": "./esm2022/skeletons/bravura-ui-skeletons.mjs",
131
+ "esm": "./esm2022/skeletons/bravura-ui-skeletons.mjs",
132
+ "default": "./fesm2022/bravura-ui-skeletons.mjs"
187
133
  },
188
134
  "./tooltip": {
189
135
  "types": "./tooltip/index.d.ts",
190
- "esm2020": "./esm2020/tooltip/bravura-ui-tooltip.mjs",
191
- "es2020": "./fesm2020/bravura-ui-tooltip.mjs",
192
- "es2015": "./fesm2015/bravura-ui-tooltip.mjs",
193
- "node": "./fesm2015/bravura-ui-tooltip.mjs",
194
- "default": "./fesm2020/bravura-ui-tooltip.mjs"
136
+ "esm2022": "./esm2022/tooltip/bravura-ui-tooltip.mjs",
137
+ "esm": "./esm2022/tooltip/bravura-ui-tooltip.mjs",
138
+ "default": "./fesm2022/bravura-ui-tooltip.mjs"
139
+ },
140
+ "./radio-panel/testing": {
141
+ "types": "./radio-panel/testing/index.d.ts",
142
+ "esm2022": "./esm2022/radio-panel/testing/bravura-ui-radio-panel-testing.mjs",
143
+ "esm": "./esm2022/radio-panel/testing/bravura-ui-radio-panel-testing.mjs",
144
+ "default": "./fesm2022/bravura-ui-radio-panel-testing.mjs"
145
+ },
146
+ "./alert/testing": {
147
+ "types": "./alert/testing/index.d.ts",
148
+ "esm2022": "./esm2022/alert/testing/bravura-ui-alert-testing.mjs",
149
+ "esm": "./esm2022/alert/testing/bravura-ui-alert-testing.mjs",
150
+ "default": "./fesm2022/bravura-ui-alert-testing.mjs"
195
151
  }
196
152
  },
197
153
  "sideEffects": false
@@ -56,5 +56,5 @@ export declare class PanelComponent implements OnInit {
56
56
  /** @ignore */
57
57
  _resized(width: number): void;
58
58
  static ɵfac: i0.ɵɵFactoryDeclaration<PanelComponent, [null, { host: true; }]>;
59
- static ɵcmp: i0.ɵɵComponentDeclaration<PanelComponent, "bui-panel", never, { "backdropClass": "backdropClass"; "cardClass": "cardClass"; "color": "color"; "appearance": "appearance"; "breakpoint": "breakpoint"; }, {}, never, ["*"], false, never>;
59
+ static ɵcmp: i0.ɵɵComponentDeclaration<PanelComponent, "bui-panel", never, { "backdropClass": { "alias": "backdropClass"; "required": false; }; "cardClass": { "alias": "cardClass"; "required": false; }; "color": { "alias": "color"; "required": false; }; "appearance": { "alias": "appearance"; "required": false; }; "breakpoint": { "alias": "breakpoint"; "required": false; }; }, {}, never, ["*"], false, never>;
60
60
  }
@@ -22,5 +22,5 @@ export declare class TintedDirective implements OnInit, OnDestroy {
22
22
  ngOnDestroy(): void;
23
23
  private generateStyle;
24
24
  static ɵfac: i0.ɵɵFactoryDeclaration<TintedDirective, never>;
25
- static ɵdir: i0.ɵɵDirectiveDeclaration<TintedDirective, "[buiTinted], bui-panel", ["buiTinted"], { "color": "buiTinted"; }, {}, never, never, false, never>;
25
+ static ɵdir: i0.ɵɵDirectiveDeclaration<TintedDirective, "[buiTinted], bui-panel", ["buiTinted"], { "color": { "alias": "buiTinted"; "required": false; }; }, {}, never, never, false, never>;
26
26
  }
@@ -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, never, false, never>;
65
+ static ɵdir: i0.ɵɵDirectiveDeclaration<PhoneNumberDirective, "[buiTelInput], input([type=tel])[ngModel], input([type=tel])[formControlName], input([type=tel])[formControl]", never, { "telType": { "alias": "telType"; "required": false; }; "telDropdown": { "alias": "telDropdown"; "required": false; }; }, { "telCountryChange": "telCountryChange"; }, never, never, false, never>;
66
66
  }
@@ -12,7 +12,7 @@ export declare const PHONE_VALIDATOR: StaticProvider;
12
12
  /**
13
13
  * @internal
14
14
  */
15
- export declare type TEL_TYPE = 'MOBILE' | 'FIXED_LINE_OR_MOBILE' | 'FIXED_LINE';
15
+ export type TEL_TYPE = 'MOBILE' | 'FIXED_LINE_OR_MOBILE' | 'FIXED_LINE';
16
16
  /**
17
17
  * @internal
18
18
  */
@@ -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, never, false, never>;
30
+ static ɵdir: i0.ɵɵDirectiveDeclaration<PhoneNumberValidator, "[buiTelInput], input([type=tel])[ngModel], input([type=tel])[formControlName], input([type=tel])[formControl]", never, { "telType": { "alias": "telType"; "required": false; }; }, {}, never, never, false, never>;
31
31
  }
@@ -18,5 +18,5 @@ export declare class RadioPanelItemComponent extends MatRadioButton {
18
18
  contentOnSelect: TemplateRef<any>;
19
19
  constructor(radioGroup: MatRadioGroup, elementRef: ElementRef, _changeDetector: ChangeDetectorRef, _focusMonitor: FocusMonitor, _radioDispatcher: UniqueSelectionDispatcher, animationMode?: string, _providerOverride?: MatRadioDefaultOptions, tabIndex?: string);
20
20
  static ɵfac: i0.ɵɵFactoryDeclaration<RadioPanelItemComponent, [{ optional: true; }, null, null, null, null, { optional: true; }, { optional: true; }, { attribute: "tabindex"; }]>;
21
- static ɵcmp: i0.ɵɵComponentDeclaration<RadioPanelItemComponent, "bui-radio-panel-item", ["matRadioButton"], { "disableRipple": "disableRipple"; "tabIndex": "tabIndex"; "title": "title"; "_tickPosition": "_tickPosition"; "tickPosition": "tickPosition"; }, {}, ["contentOnSelect"], ["[buiRadioItemHeadingEnd]", "*"], false, never>;
21
+ static ɵcmp: i0.ɵɵComponentDeclaration<RadioPanelItemComponent, "bui-radio-panel-item", ["matRadioButton"], { "disableRipple": { "alias": "disableRipple"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "title": { "alias": "title"; "required": false; }; "_tickPosition": { "alias": "_tickPosition"; "required": false; }; "tickPosition": { "alias": "tickPosition"; "required": false; }; }, {}, ["contentOnSelect"], ["[buiRadioItemHeadingEnd]", "*"], false, never>;
22
22
  }
@@ -34,5 +34,5 @@ export declare class RadioPanelComponent extends MatRadioGroup implements OnChan
34
34
  /** @ignore */
35
35
  ngOnChanges(changes: SimpleChanges): void;
36
36
  static ɵfac: i0.ɵɵFactoryDeclaration<RadioPanelComponent, never>;
37
- static ɵcmp: i0.ɵɵComponentDeclaration<RadioPanelComponent, "bui-radio-panel", ["buiRadioPanel"], { "panelWidth": "panelWidth"; "direction": "direction"; "color": "color"; "tickPosition": "tickPosition"; }, {}, ["_radios"], ["*"], false, never>;
37
+ static ɵcmp: i0.ɵɵComponentDeclaration<RadioPanelComponent, "bui-radio-panel", ["buiRadioPanel"], { "panelWidth": { "alias": "panelWidth"; "required": false; }; "direction": { "alias": "direction"; "required": false; }; "color": { "alias": "color"; "required": false; }; "tickPosition": { "alias": "tickPosition"; "required": false; }; }, {}, ["_radios"], ["*"], false, never>;
38
38
  }
@@ -1,5 +1,5 @@
1
1
  import { ComponentHarnessConstructor, HarnessPredicate } from '@angular/cdk/testing';
2
- import { MatRadioButtonHarness, RadioButtonHarnessFilters, _MatRadioGroupHarnessBase } from '@angular/material/radio/testing';
2
+ import { MatRadioButtonHarness, MatRadioGroupHarness, RadioButtonHarnessFilters } from '@angular/material/radio/testing';
3
3
  export interface RadioPanelItemHarnessFilters extends RadioButtonHarnessFilters {
4
4
  value?: string | RegExp;
5
5
  }
@@ -19,10 +19,9 @@ export declare class RadioPanelItemHarness extends MatRadioButtonHarness {
19
19
  getLabelCssValue(prop: string): Promise<string>;
20
20
  getBorderColor(): Promise<string>;
21
21
  }
22
- export declare class RadioPanelHarness extends _MatRadioGroupHarnessBase<typeof RadioPanelItemHarness, RadioPanelItemHarness, RadioButtonHarnessFilters> {
22
+ export declare class RadioPanelHarness extends MatRadioGroupHarness {
23
23
  /** The selector for the host element of a `MatRadioGroup` instance. */
24
24
  static hostSelector: string;
25
- protected _buttonClass: typeof RadioPanelItemHarness;
26
25
  getItem: (filters: RadioPanelItemHarnessFilters) => Promise<RadioPanelItemHarness>;
27
26
  getFlexDir(): Promise<string>;
28
27
  }
@@ -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]", "*"], false, never>;
76
+ static ɵcmp: i0.ɵɵComponentDeclaration<SelectionPanelItemComponent, "bui-selection-panel-item", never, { "title": { "alias": "title"; "required": false; }; "shadedHeader": { "alias": "shadedHeader"; "required": false; }; "selectable": { "alias": "selectable"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "value": { "alias": "value"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; "color": { "alias": "color"; "required": false; }; }, {}, never, ["[buiSelectionItemHeadingEnd]", "[buiSelectionItemSubtitle]", "*"], false, never>;
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"], never, false, never>;
66
+ static ɵdir: i0.ɵɵDirectiveDeclaration<SelectionPanelDirective, "bui-selection-panel", ["buiSelectionPanel"], { "color": { "alias": "color"; "required": false; }; "selectByHeader": { "alias": "selectByHeader"; "required": false; }; }, {}, ["_items"], never, false, never>;
67
67
  }
@@ -1,11 +1,11 @@
1
1
  import { AfterViewChecked, ElementRef, InjectionToken } from '@angular/core';
2
2
  import { SkeletonLoaderComponent } from './skeleton-loader.component';
3
3
  import * as i0 from "@angular/core";
4
- export declare type SkeletonPreset = {
4
+ export type SkeletonPreset = {
5
5
  viewBox: string;
6
6
  content: string;
7
7
  };
8
- export declare type SkeletonPresets = {
8
+ export type SkeletonPresets = {
9
9
  [key: string]: SkeletonPreset;
10
10
  };
11
11
  export declare const SKELETON_PRESETS: InjectionToken<SkeletonPresets>;
@@ -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, never, false, never>;
22
+ static ɵdir: i0.ɵɵDirectiveDeclaration<SkeletonLoaderPresetsDirective, "bui-skeleton[preset]", never, { "preset": { "alias": "preset"; "required": false; }; }, {}, never, never, false, never>;
23
23
  }
@@ -70,5 +70,5 @@ export declare class StepperComponent extends CdkStepper implements AfterContent
70
70
  /** @ignore */
71
71
  _startStepTransition(): void;
72
72
  static ɵfac: i0.ɵɵFactoryDeclaration<StepperComponent, [{ optional: true; }, null, null, null, { self: true; }, { optional: true; skipSelf: true; }]>;
73
- 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, never>;
73
+ static ɵcmp: i0.ɵɵComponentDeclaration<StepperComponent, "bui-stepper, [buiStepper]", ["buiStepper", "matStepper", "matVerticalStepper", "matHorizontalStepper"], { "selectedIndex": { "alias": "selectedIndex"; "required": false; }; "disableRipple": { "alias": "disableRipple"; "required": false; }; "color": { "alias": "color"; "required": false; }; "indicatorFormatter": { "alias": "indicatorFormatter"; "required": false; }; "nextStepLabelPrefix": { "alias": "nextStepLabelPrefix"; "required": false; }; }, { "animationDone": "animationDone"; }, ["_steps", "_icons"], never, false, never>;
74
74
  }
@@ -1,56 +1,56 @@
1
- @use 'sass:map';
2
-
3
- @mixin bui-card($color-config) {
4
- $bui-card-header-text-color: var(--bui-card-header-text-color, #19315b);
5
- $bui-card-header-background-color: var(--bui-card-header-background-color, #fafafa);
6
-
7
- @if map.get($color-config, 'is-dark') {
8
- $bui-card-header-text-color: var(--bui-card-header-text-color-dark-theme, white);
9
- $bui-card-header-background-color: var(--bui-card-header-background-color-dark-theme, inherit);
10
- }
11
-
12
- .bui-card-flat.mat-mdc-card,
13
- .bui-card-shaded.mat-mdc-card {
14
- border-radius: 4px;
15
- display: flex;
16
- flex-direction: column;
17
-
18
- .mat-mdc-card-header {
19
- padding: 16px;
20
-
21
- .mat-mdc-card-title {
22
- font-size: 16px;
23
- color: $bui-card-header-text-color;
24
- margin-bottom: 0;
25
- }
26
-
27
- .mat-mdc-card-title + .mat-mdc-card-subtitle {
28
- margin-top: 0;
29
- margin-bottom: 0;
30
- }
31
- }
32
-
33
- .mat-mdc-card-content {
34
- flex: 1;
35
- }
36
-
37
- .mat-mdc-card-header + .mat-mdc-card-content {
38
- padding-top: 16px;
39
- }
40
- }
41
-
42
- .bui-card-flat.mat-mdc-card {
43
- box-shadow: none;
44
- border: 1px solid #e0e0e0;
45
-
46
- .mat-mdc-card-header {
47
- border-bottom: 1px solid #e0e0e0;
48
- }
49
- }
50
-
51
- .bui-card-shaded.mat-mdc-card {
52
- .mat-mdc-card-header {
53
- background: $bui-card-header-background-color;
54
- }
55
- }
56
- }
1
+ @use 'sass:map';
2
+
3
+ @mixin bui-card($color-config) {
4
+ $bui-card-header-text-color: var(--bui-card-header-text-color, #19315b);
5
+ $bui-card-header-background-color: var(--bui-card-header-background-color, #fafafa);
6
+
7
+ @if map.get($color-config, 'is-dark') {
8
+ $bui-card-header-text-color: var(--bui-card-header-text-color-dark-theme, white);
9
+ $bui-card-header-background-color: var(--bui-card-header-background-color-dark-theme, inherit);
10
+ }
11
+
12
+ .bui-card-flat.mat-mdc-card,
13
+ .bui-card-shaded.mat-mdc-card {
14
+ border-radius: 4px;
15
+ display: flex;
16
+ flex-direction: column;
17
+
18
+ .mat-mdc-card-header {
19
+ padding: 16px;
20
+
21
+ .mat-mdc-card-title {
22
+ font-size: 16px;
23
+ color: $bui-card-header-text-color;
24
+ margin-bottom: 0;
25
+ }
26
+
27
+ .mat-mdc-card-title + .mat-mdc-card-subtitle {
28
+ margin-top: 0;
29
+ margin-bottom: 0;
30
+ }
31
+ }
32
+
33
+ .mat-mdc-card-content {
34
+ flex: 1;
35
+ }
36
+
37
+ .mat-mdc-card-header + .mat-mdc-card-content {
38
+ padding-top: 16px;
39
+ }
40
+ }
41
+
42
+ .bui-card-flat.mat-mdc-card {
43
+ box-shadow: none;
44
+ border: 1px solid #e0e0e0;
45
+
46
+ .mat-mdc-card-header {
47
+ border-bottom: 1px solid #e0e0e0;
48
+ }
49
+ }
50
+
51
+ .bui-card-shaded.mat-mdc-card {
52
+ .mat-mdc-card-header {
53
+ background: $bui-card-header-background-color;
54
+ }
55
+ }
56
+ }
@@ -39,12 +39,12 @@ $mat-background-extract: (
39
39
  transition: $border-color-transition;
40
40
  }
41
41
 
42
- $color-config: mat.get-color-config($theme);
42
+ $color-config: mat.m2-get-color-config($theme);
43
43
  @if $color-config != null {
44
44
  @include card.bui-card($color-config);
45
45
  @each $p in (primary, accent, warn) {
46
46
  $primary-palette: map.get($color-config, $p);
47
- $c: mat.get-color-from-palette($primary-palette, text);
47
+ $c: mat.m2-get-color-from-palette($primary-palette, text);
48
48
  @include apply-color($p, $c, $border-color-transition);
49
49
  }
50
50
 
@@ -64,7 +64,7 @@ $mat-background-extract: (
64
64
  .bui-host {
65
65
  @each $p in (primary, accent, warn) {
66
66
  $primary-palette: map.get($color-config, $p);
67
- $c: mat.get-color-from-palette($primary-palette, text);
67
+ $c: mat.m2-get-color-from-palette($primary-palette, text);
68
68
  --bui-color-#{$p}: #{$c};
69
69
  }
70
70
 
@@ -1,3 +1,3 @@
1
- body {
2
- box-sizing: border-box;
3
- }
1
+ body {
2
+ box-sizing: border-box;
3
+ }
@@ -1,3 +1,3 @@
1
- body {
2
- box-sizing: border-box;
3
- }
1
+ body {
2
+ box-sizing: border-box;
3
+ }