@ember-eui/core 4.3.0 → 5.0.0-alpha.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (635) hide show
  1. package/addon/components/common.ts +1 -0
  2. package/addon/components/eui-accordion/index.hbs +106 -85
  3. package/addon/components/eui-accordion/index.ts +58 -19
  4. package/addon/components/eui-auto-sizer/index.hbs +3 -0
  5. package/addon/components/eui-auto-sizer/index.ts +175 -0
  6. package/addon/components/eui-avatar/index.hbs +7 -3
  7. package/addon/components/eui-badge/index.hbs +9 -3
  8. package/addon/components/eui-beta-badge/index.hbs +171 -19
  9. package/addon/components/eui-bottom-bar/index.hbs +43 -12
  10. package/addon/components/eui-bottom-bar/index.ts +75 -32
  11. package/addon/components/eui-breadcrumbs/index.hbs +98 -0
  12. package/addon/components/eui-breadcrumbs/index.ts +194 -0
  13. package/addon/components/eui-button/index.hbs +4 -4
  14. package/addon/components/eui-button-content/index.hbs +6 -2
  15. package/addon/components/eui-button-empty/index.hbs +60 -52
  16. package/addon/components/eui-button-icon/index.hbs +17 -3
  17. package/addon/components/eui-call-out/index.hbs +1 -0
  18. package/addon/components/eui-card/index.hbs +61 -47
  19. package/addon/components/eui-card/index.ts +27 -0
  20. package/addon/components/{eui-card/eui-card-select → eui-card-select}/index.hbs +2 -5
  21. package/addon/components/eui-card-select/index.ts +35 -0
  22. package/addon/components/eui-checkable-card/index.hbs +17 -11
  23. package/addon/components/eui-checkbox/index.hbs +11 -5
  24. package/addon/components/eui-checkbox/index.ts +15 -0
  25. package/addon/components/eui-code/index.hbs +14 -8
  26. package/addon/components/eui-code/index.ts +73 -0
  27. package/addon/components/eui-code-block/controls/index.hbs +26 -0
  28. package/addon/components/eui-code-block/full-screen-display/index.hbs +12 -0
  29. package/addon/components/eui-code-block/index.hbs +144 -9
  30. package/addon/components/eui-code-block/index.ts +290 -0
  31. package/addon/components/eui-code-block/virtualized/index.hbs +30 -0
  32. package/addon/components/eui-code-block/virtualized/index.ts +22 -0
  33. package/addon/components/eui-collapsible-nav/index.hbs +35 -44
  34. package/addon/components/eui-collapsible-nav/index.ts +161 -0
  35. package/addon/components/eui-collapsible-nav-group/index.hbs +114 -66
  36. package/addon/components/eui-combo-box/group/index.hbs +3 -3
  37. package/addon/components/eui-combo-box/index.hbs +8 -5
  38. package/addon/components/eui-combo-box/index.ts +89 -4
  39. package/addon/components/eui-combo-box/options/index.hbs +14 -2
  40. package/addon/components/eui-combo-box/options/index.js +22 -9
  41. package/addon/components/eui-combo-box/trigger/index.hbs +3 -1
  42. package/addon/components/eui-confirm-modal/index.hbs +1 -1
  43. package/addon/components/eui-copy/index.hbs +1 -4
  44. package/addon/components/eui-described-form-group/index.hbs +3 -2
  45. package/addon/components/eui-description-list/index.hbs +23 -0
  46. package/addon/components/eui-description-list-description/index.hbs +3 -0
  47. package/addon/components/eui-description-list-title/index.hbs +3 -0
  48. package/addon/components/eui-dual-range/index.hbs +30 -18
  49. package/addon/components/eui-dual-range/index.ts +36 -10
  50. package/addon/components/eui-empty-prompt/index.hbs +83 -0
  51. package/addon/components/eui-field-number/index.hbs +3 -3
  52. package/addon/components/eui-field-number/types.ts +4 -1
  53. package/addon/components/eui-field-search/index.hbs +2 -1
  54. package/addon/components/eui-field-text/index.hbs +3 -1
  55. package/addon/components/eui-file-picker/index.hbs +15 -11
  56. package/addon/components/eui-file-picker/index.ts +26 -8
  57. package/addon/components/eui-flyout/index.hbs +130 -43
  58. package/addon/components/eui-flyout/index.ts +233 -0
  59. package/addon/components/eui-flyout-body/index.hbs +21 -7
  60. package/addon/components/eui-form-control-layout-custom-icon/types.ts +3 -1
  61. package/addon/components/eui-form-control-layout-icons/types.ts +4 -1
  62. package/addon/components/eui-form-label/index.hbs +1 -1
  63. package/addon/components/eui-form-row/index.hbs +13 -9
  64. package/addon/components/eui-global-toast-list/index.ts +5 -6
  65. package/addon/components/eui-header/index.hbs +18 -3
  66. package/addon/{modifiers/fixed-header.ts → components/eui-header/index.ts} +10 -1
  67. package/addon/components/eui-header-alert/index.hbs +25 -0
  68. package/addon/components/eui-header-breadcrumbs/index.hbs +7 -0
  69. package/addon/components/eui-header-links/index.hbs +41 -0
  70. package/addon/components/eui-header-links/index.ts +14 -0
  71. package/addon/components/eui-header-section-item-button/index.hbs +30 -12
  72. package/addon/components/eui-header-section-item-button/index.ts +131 -0
  73. package/addon/components/eui-health/index.hbs +15 -13
  74. package/addon/components/eui-hide-for/index.hbs +3 -0
  75. package/addon/components/eui-hide-for/index.ts +33 -0
  76. package/addon/components/eui-icon/index.hbs +6 -3
  77. package/addon/components/eui-icon/index.ts +4 -0
  78. package/addon/components/eui-image/index.hbs +63 -25
  79. package/addon/components/eui-image/index.ts +7 -2
  80. package/addon/components/eui-input-popover/index.ts +6 -4
  81. package/addon/components/eui-key-pad-menu/index.hbs +16 -0
  82. package/addon/components/eui-key-pad-menu/key/index.hbs +1 -0
  83. package/addon/components/eui-key-pad-menu-item/index.hbs +66 -0
  84. package/addon/components/eui-key-pad-menu-item/index.ts +11 -0
  85. package/addon/components/eui-link/index.hbs +50 -0
  86. package/addon/components/eui-list-group-item/index.hbs +10 -2
  87. package/addon/components/eui-loading-logo/index.hbs +14 -0
  88. package/addon/components/eui-markdown-editor/index.hbs +4 -1
  89. package/addon/components/eui-markdown-editor/index.ts +54 -0
  90. package/addon/components/eui-markdown-editor-footer/index.hbs +39 -40
  91. package/addon/components/eui-markdown-format/index.ts +1 -1
  92. package/addon/components/eui-markdown-format/markdown-code/index.hbs +2 -2
  93. package/addon/components/eui-markdown-format/markdown-code-block/index.hbs +1 -0
  94. package/addon/components/eui-modal/index.hbs +28 -24
  95. package/addon/components/eui-overlay-mask/index.hbs +4 -4
  96. package/addon/components/eui-overlay-mask/index.ts +14 -1
  97. package/addon/components/eui-page/index.hbs +3 -6
  98. package/addon/components/eui-page-body/index.hbs +47 -15
  99. package/addon/components/eui-page-content/index.hbs +6 -8
  100. package/addon/components/eui-page-content-body/index.hbs +13 -1
  101. package/addon/components/eui-page-content-header/index.hbs +6 -0
  102. package/addon/components/eui-page-header/index.hbs +31 -6
  103. package/addon/components/eui-page-header-content/index.hbs +219 -0
  104. package/addon/components/eui-page-header-content/index.ts +49 -0
  105. package/addon/components/eui-page-side-bar/index.hbs +8 -1
  106. package/addon/components/eui-page-template/index.hbs +417 -0
  107. package/addon/components/eui-page-template/index.ts +89 -0
  108. package/addon/components/eui-panel/index.hbs +58 -12
  109. package/addon/components/eui-popover/index.hbs +8 -4
  110. package/addon/components/eui-popover/index.ts +28 -12
  111. package/addon/components/eui-portal/index.ts +2 -1
  112. package/addon/components/eui-progress/index.hbs +16 -13
  113. package/addon/components/eui-radio/index.hbs +9 -3
  114. package/addon/components/eui-range/index.hbs +33 -11
  115. package/addon/components/eui-range/index.ts +7 -4
  116. package/addon/components/eui-range-input/index.hbs +37 -31
  117. package/addon/components/eui-range-input/types.ts +2 -1
  118. package/addon/components/eui-range-levels/index.hbs +3 -3
  119. package/addon/components/eui-range-levels/index.ts +14 -3
  120. package/addon/components/eui-range-ticks/index.hbs +2 -2
  121. package/addon/components/eui-range-track/index.hbs +10 -2
  122. package/addon/components/eui-range-track/index.ts +23 -6
  123. package/addon/components/eui-show-for/index.hbs +3 -0
  124. package/addon/components/eui-show-for/index.ts +79 -0
  125. package/addon/components/eui-side-nav/index.hbs +161 -36
  126. package/addon/components/eui-side-nav/index.ts +28 -0
  127. package/addon/components/eui-side-nav-item/button/index.hbs +26 -14
  128. package/addon/components/eui-side-nav-item/index.hbs +52 -25
  129. package/addon/components/eui-split-panel/inner/index.hbs +11 -0
  130. package/addon/components/eui-split-panel/outer/index.hbs +27 -0
  131. package/addon/components/eui-split-panel/outer/index.ts +37 -0
  132. package/addon/components/eui-step/eui-step-number/index.hbs +21 -4
  133. package/addon/components/eui-steps/index.hbs +7 -1
  134. package/addon/components/eui-tab/index.hbs +60 -46
  135. package/addon/components/eui-tab/index.ts +23 -0
  136. package/addon/components/eui-tabs/index.hbs +6 -9
  137. package/addon/components/eui-tool-tip/index.hbs +6 -7
  138. package/addon/components/eui-tool-tip/index.ts +27 -11
  139. package/addon/helpers/arg-or-default.ts +4 -1
  140. package/addon/helpers/class-names.ts +2 -0
  141. package/addon/helpers/eui-palette.ts +4 -1
  142. package/addon/helpers/get-range-tick.ts +53 -8
  143. package/addon/helpers/get-tab-id.ts +8 -2
  144. package/addon/helpers/hex-to-rgb.ts +4 -1
  145. package/addon/helpers/inline-styles.ts +10 -3
  146. package/addon/helpers/is-within-number.ts +4 -1
  147. package/addon/helpers/starts-with.ts +3 -1
  148. package/addon/helpers/unique-id.ts +4 -1
  149. package/addon/initializers/eui-config.ts +12 -0
  150. package/addon/modifiers/mutation-observer.ts +4 -1
  151. package/addon/modifiers/outside-click-detector.ts +4 -4
  152. package/addon/styles/ember-eui.css +2 -10
  153. package/addon/utils/accesibility/cascading-menu-keys.ts +8 -1
  154. package/addon/utils/breakpoint.ts +114 -0
  155. package/addon/utils/code/utils.ts +304 -0
  156. package/addon/utils/color/color_palette.ts +3 -3
  157. package/addon/utils/color/eui_palettes.ts +23 -6
  158. package/addon/utils/css-mappings/eui-avatar.ts +51 -9
  159. package/addon/utils/css-mappings/eui-badge.ts +6 -2
  160. package/addon/utils/css-mappings/eui-beta-badge.ts +22 -0
  161. package/addon/utils/css-mappings/eui-bottom-bar.ts +8 -1
  162. package/addon/utils/css-mappings/eui-button-empty.ts +4 -4
  163. package/addon/utils/css-mappings/eui-button-icon.ts +19 -6
  164. package/addon/utils/css-mappings/eui-button.ts +2 -1
  165. package/addon/utils/css-mappings/eui-card-select.ts +1 -11
  166. package/addon/utils/css-mappings/eui-card.ts +1 -18
  167. package/addon/utils/css-mappings/{eui-code-block-impl.ts → eui-code-block.ts} +0 -0
  168. package/addon/utils/css-mappings/eui-description-list.ts +29 -0
  169. package/addon/utils/css-mappings/eui-empty-prompt.ts +17 -0
  170. package/addon/utils/css-mappings/eui-flyout.ts +21 -1
  171. package/addon/utils/css-mappings/eui-header-links.ts +27 -0
  172. package/addon/utils/css-mappings/eui-health.ts +17 -0
  173. package/addon/utils/css-mappings/eui-icon.ts +93 -70
  174. package/addon/utils/css-mappings/eui-image.ts +17 -2
  175. package/addon/utils/css-mappings/eui-link.ts +21 -0
  176. package/addon/utils/css-mappings/eui-list-group.ts +5 -1
  177. package/addon/utils/css-mappings/eui-modal.ts +5 -1
  178. package/addon/utils/css-mappings/eui-page-body.ts +25 -0
  179. package/addon/utils/css-mappings/eui-page-content-body.ts +17 -0
  180. package/addon/utils/css-mappings/eui-page-content.ts +7 -1
  181. package/addon/utils/css-mappings/eui-page-header.ts +17 -0
  182. package/addon/utils/css-mappings/eui-page-side-bar.ts +17 -0
  183. package/addon/utils/css-mappings/eui-panel.ts +1 -0
  184. package/addon/utils/css-mappings/eui-progress-data.ts +0 -1
  185. package/addon/utils/css-mappings/eui-progress.ts +0 -2
  186. package/addon/utils/css-mappings/eui-range-levels.ts +22 -4
  187. package/addon/utils/css-mappings/eui-tabs.ts +3 -1
  188. package/addon/utils/css-mappings/eui-text-color.ts +3 -2
  189. package/addon/utils/css-mappings/index.ts +23 -3
  190. package/addon/utils/detect-element-resize.js +248 -0
  191. package/addon/utils/markdown/markdown-types.ts +10 -11
  192. package/addon/utils/markdown/plugins/markdown-add-components/index.ts +1 -0
  193. package/addon/utils/markdown/plugins/{markdown-add-components.ts → markdown-add-components/processor.ts} +14 -7
  194. package/addon/utils/markdown/plugins/markdown-checkbox/index.ts +9 -0
  195. package/addon/utils/markdown/plugins/{markdown-checkbox.ts → markdown-checkbox/parser.ts} +3 -5
  196. package/addon/utils/markdown/plugins/markdown-default-plugins/index.ts +12 -0
  197. package/addon/utils/markdown/plugins/{markdown-default-plugins.ts → markdown-default-plugins/parsing-plugins.ts} +13 -25
  198. package/addon/utils/markdown/plugins/markdown-default-plugins/plugins.ts +32 -0
  199. package/addon/utils/markdown/plugins/markdown-default-plugins/processing-plugins.ts +67 -0
  200. package/addon/utils/markdown/plugins/markdown-default-plugins/ui-plugins.ts +27 -0
  201. package/addon/utils/markdown/plugins/markdown-tooltip/index.ts +2 -0
  202. package/addon/utils/markdown/plugins/{markdown-tooltip.ts → markdown-tooltip/parser.ts} +3 -23
  203. package/addon/utils/markdown/plugins/markdown-tooltip/plugin.ts +17 -0
  204. package/addon/utils/markdown/plugins/to-dom.ts +3 -1
  205. package/addon/utils/markdown/remark/remark-prismjs.ts +41 -0
  206. package/addon/utils/popover/index.ts +87 -35
  207. package/addon/utils/range/index.ts +1 -0
  208. package/addon/utils/transition.ts +10 -3
  209. package/addon/version.ts +6 -0
  210. package/app/components/eui-auto-sizer/index.js +1 -0
  211. package/app/components/eui-avatar/index.js +1 -1
  212. package/app/components/eui-badge-group/badge-group-item/index.js +1 -1
  213. package/app/components/eui-badge-group/index.js +1 -1
  214. package/app/components/eui-breadcrumbs/index.js +1 -0
  215. package/app/components/eui-button-icon/index.js +1 -1
  216. package/app/components/eui-card-select/index.js +1 -0
  217. package/app/components/{eui-code-block-impl → eui-code-block/controls}/index.js +1 -1
  218. package/app/components/{eui-code-block-impl/code-block-controls → eui-code-block/full-screen-display}/index.js +1 -1
  219. package/app/components/eui-code-block/virtualized/index.js +1 -0
  220. package/app/components/eui-combo-box/create-option/index.js +1 -1
  221. package/app/components/eui-comment/eui-comment-timeline/index.js +1 -1
  222. package/app/components/eui-comment/index.js +1 -1
  223. package/app/components/eui-description-list/index.js +1 -0
  224. package/app/components/eui-description-list-description/index.js +1 -0
  225. package/app/components/eui-description-list-title/index.js +1 -0
  226. package/app/components/eui-dual-range/index.js +1 -1
  227. package/app/components/eui-empty-prompt/index.js +1 -0
  228. package/app/components/eui-field-number/index.js +1 -1
  229. package/app/components/eui-field-password/index.js +1 -1
  230. package/app/components/eui-field-search/index.js +1 -1
  231. package/app/components/eui-field-text/index.js +1 -1
  232. package/app/components/eui-file-picker/index.js +1 -1
  233. package/app/components/eui-form/index.js +1 -1
  234. package/app/components/eui-form-control-layout/index.js +1 -1
  235. package/app/components/eui-form-control-layout-clear-button/index.js +1 -1
  236. package/app/components/eui-form-control-layout-custom-icon/index.js +1 -1
  237. package/app/components/eui-form-control-layout-delimited/index.js +1 -1
  238. package/app/components/eui-form-control-layout-icons/index.js +1 -1
  239. package/app/components/eui-form-error-text/index.js +1 -1
  240. package/app/components/eui-form-fieldset/index.js +1 -1
  241. package/app/components/eui-form-help-text/index.js +1 -1
  242. package/app/components/eui-form-label/index.js +1 -1
  243. package/app/components/eui-form-legend/index.js +1 -1
  244. package/app/components/eui-form-row/index.js +1 -1
  245. package/app/components/eui-header-alert/index.js +1 -0
  246. package/app/components/eui-header-breadcrumbs/index.js +1 -0
  247. package/app/components/eui-header-links/index.js +1 -0
  248. package/app/components/eui-hide-for/index.js +1 -0
  249. package/app/components/eui-image.js +1 -1
  250. package/app/components/eui-key-pad-menu/index.js +1 -0
  251. package/app/components/eui-key-pad-menu/key/index.js +1 -0
  252. package/app/components/eui-key-pad-menu-item/index.js +1 -0
  253. package/app/components/eui-link/index.js +1 -0
  254. package/app/components/eui-list-group/index.js +1 -1
  255. package/app/components/eui-list-group-item/index.js +1 -1
  256. package/app/components/eui-loading-logo/index.js +1 -0
  257. package/app/components/eui-overlay-mask.js +1 -1
  258. package/app/components/eui-page/index.js +1 -1
  259. package/app/components/eui-page-body/index.js +1 -1
  260. package/app/components/eui-page-content/index.js +1 -1
  261. package/app/components/eui-page-content-body/index.js +1 -1
  262. package/app/components/eui-page-content-header/index.js +1 -1
  263. package/app/components/eui-page-content-header-section/index.js +1 -1
  264. package/app/components/eui-page-header/index.js +1 -1
  265. package/app/components/eui-page-header-content/index.js +1 -0
  266. package/app/components/eui-page-header-section/index.js +1 -1
  267. package/app/components/eui-page-template/index.js +1 -0
  268. package/app/components/eui-panel/index.js +1 -1
  269. package/app/components/eui-popover/index.js +1 -1
  270. package/app/components/eui-popover-footer/index.js +1 -1
  271. package/app/components/eui-popover-title/index.js +1 -1
  272. package/app/components/eui-portal/index.js +1 -1
  273. package/app/components/eui-progress/index.js +1 -1
  274. package/app/components/eui-radio/index.js +1 -1
  275. package/app/components/eui-radio-group/index.js +1 -1
  276. package/app/components/eui-range/index.js +1 -1
  277. package/app/components/eui-range-highlight/index.js +1 -1
  278. package/app/components/eui-range-input/index.js +1 -1
  279. package/app/components/eui-range-label/index.js +1 -1
  280. package/app/components/eui-range-levels/index.js +1 -1
  281. package/app/components/eui-range-slider/index.js +1 -1
  282. package/app/components/eui-range-thumb/index.js +1 -1
  283. package/app/components/eui-range-ticks/index.js +1 -1
  284. package/app/components/eui-range-tooltip/index.js +1 -1
  285. package/app/components/eui-range-track/index.js +1 -1
  286. package/app/components/eui-range-wrapper/index.js +1 -1
  287. package/app/components/eui-select/index.js +1 -1
  288. package/app/components/eui-show-for/index.js +1 -0
  289. package/app/components/eui-side-nav/index.js +1 -1
  290. package/app/components/eui-side-nav-item/button/index.js +1 -1
  291. package/app/components/eui-side-nav-item/index.js +1 -1
  292. package/app/components/eui-spacer/index.js +1 -1
  293. package/app/components/eui-split-panel/inner/index.js +1 -0
  294. package/app/components/eui-split-panel/outer/index.js +1 -0
  295. package/app/components/eui-switch/index.js +1 -1
  296. package/app/components/eui-tab/index.js +1 -1
  297. package/app/components/eui-tabs/index.js +1 -1
  298. package/app/components/eui-text/index.js +1 -1
  299. package/app/components/eui-text-align/index.js +1 -1
  300. package/app/components/eui-text-area/index.js +1 -1
  301. package/app/components/eui-text-color/index.js +1 -1
  302. package/app/components/eui-title/index.js +1 -1
  303. package/app/components/eui-tool-tip/index.js +1 -1
  304. package/app/components/eui-tool-tip-popover/index.js +1 -1
  305. package/app/helpers/eui-palette.js +1 -1
  306. package/app/helpers/hex-to-rgb.js +1 -1
  307. package/app/initializers/eui-config.js +1 -0
  308. package/app/utils/copy-to-clipboard.js +1 -0
  309. package/docs/display/avatar-demo/demo1.md +43 -49
  310. package/docs/display/avatar-demo/demo2.md +42 -0
  311. package/docs/display/avatar-demo/demo3.md +33 -0
  312. package/docs/display/avatar-demo/demo4.md +53 -0
  313. package/docs/display/avatar-demo/demo5.md +38 -0
  314. package/docs/display/avatar.md +1 -1
  315. package/docs/display/badge-demo/demo1.md +78 -137
  316. package/docs/display/badge-demo/demo2.md +32 -0
  317. package/docs/display/badge-demo/demo3.md +70 -0
  318. package/docs/display/badge-demo/demo4.md +27 -0
  319. package/docs/display/badge-demo/demo5.md +31 -0
  320. package/docs/display/badge-demo/demo6.md +59 -0
  321. package/docs/display/badge-demo/demo7.md +97 -0
  322. package/docs/display/badge-demo/demo8.md +19 -0
  323. package/docs/display/badge.md +1 -1
  324. package/docs/display/callout-demo/demo1.md +29 -81
  325. package/docs/display/callout-demo/demo2.md +28 -0
  326. package/docs/display/callout-demo/demo3.md +29 -0
  327. package/docs/display/callout-demo/demo4.md +26 -0
  328. package/docs/display/callout.md +9 -1
  329. package/docs/display/card/basic-card-demo/demo1.md +22 -316
  330. package/docs/display/card/basic-card.md +9 -1
  331. package/docs/display/card/beta-badge-demo/demo1.md +47 -0
  332. package/docs/display/card/beta-badge.md +9 -0
  333. package/docs/display/card/checkable-demo/demo1.md +20 -94
  334. package/docs/display/card/checkable-demo/demo2.md +63 -0
  335. package/docs/display/card/checkable.md +9 -1
  336. package/docs/display/card/custom-children-demo/demo1.md +93 -0
  337. package/docs/display/card/custom-children.md +9 -0
  338. package/docs/display/card/footer-demo/demo1.md +77 -0
  339. package/docs/display/card/footer.md +9 -0
  340. package/docs/display/card/images-demo/demo1.md +57 -0
  341. package/docs/display/card/images.md +9 -0
  342. package/docs/display/card/layout-demo/demo1.md +40 -0
  343. package/docs/display/card/layout.md +9 -0
  344. package/docs/display/card/selectable-demo/demo1.md +60 -53
  345. package/docs/display/card/selectable.md +9 -1
  346. package/docs/display/comment-list.md +1 -1
  347. package/docs/display/description-list-demo/demo1.md +53 -0
  348. package/docs/display/description-list-demo/demo2.md +43 -0
  349. package/docs/display/description-list-demo/demo3.md +58 -0
  350. package/docs/display/description-list-demo/demo4.md +42 -0
  351. package/docs/display/description-list-demo/demo5.md +62 -0
  352. package/docs/display/description-list-demo/demo6.md +46 -0
  353. package/docs/display/description-list.md +1 -0
  354. package/docs/display/empty-prompt-demo/demo1.md +25 -0
  355. package/docs/display/empty-prompt-demo/demo2.md +16 -0
  356. package/docs/display/empty-prompt-demo/demo3.md +67 -0
  357. package/docs/display/empty-prompt-demo/demo4.md +21 -0
  358. package/docs/display/empty-prompt-demo/demo5.md +33 -0
  359. package/docs/display/empty-prompt-demo/demo6.md +43 -0
  360. package/docs/display/empty-prompt-demo/demo7.md +162 -0
  361. package/docs/display/empty-prompt-demo/demo8.md +57 -0
  362. package/docs/display/empty-prompt.md +1 -0
  363. package/docs/display/health-demo/demo1.md +11 -8
  364. package/docs/display/health-demo/demo2.md +31 -0
  365. package/docs/display/health.md +9 -1
  366. package/docs/display/icons-demo/demo1.md +270 -57
  367. package/docs/display/icons-demo/demo2.md +76 -0
  368. package/docs/display/icons-demo/demo3.md +76 -0
  369. package/docs/display/icons-demo/demo4.md +104 -0
  370. package/docs/display/icons-demo/demo5.md +64 -0
  371. package/docs/display/icons-demo/demo6.md +63 -0
  372. package/docs/display/icons-demo/demo7.md +101 -0
  373. package/docs/display/icons-demo/demo8.md +47 -0
  374. package/docs/display/icons.md +1 -1
  375. package/docs/display/image-demo/demo1.md +15 -50
  376. package/docs/display/image-demo/demo2.md +35 -0
  377. package/docs/display/image-demo/demo3.md +75 -0
  378. package/docs/display/image-demo/demo4.md +80 -0
  379. package/docs/display/image.md +9 -1
  380. package/docs/display/list-group.md +1 -1
  381. package/docs/display/loading/logo-demo/demo1.md +15 -0
  382. package/docs/display/loading/logo.md +1 -0
  383. package/docs/display/progress-demo/demo1.md +10 -5
  384. package/docs/display/progress-demo/demo2.md +11 -26
  385. package/docs/display/progress-demo/demo3.md +27 -0
  386. package/docs/display/progress-demo/demo4.md +77 -0
  387. package/docs/display/progress.md +1 -1
  388. package/docs/display/stat-demo/demo1.md +0 -118
  389. package/docs/display/stat-demo/demo2.md +24 -22
  390. package/docs/display/stat-demo/demo3.md +39 -0
  391. package/docs/display/stat-demo/demo4.md +50 -0
  392. package/docs/display/stat-demo/demo5.md +25 -0
  393. package/docs/display/stat-demo/demo6.md +40 -0
  394. package/docs/display/stat-demo/demo7.md +84 -0
  395. package/docs/display/stat.md +8 -1
  396. package/docs/display/text-demo/demo1.md +79 -130
  397. package/docs/display/text-demo/demo2.md +71 -0
  398. package/docs/display/text-demo/demo3.md +39 -0
  399. package/docs/display/text.md +12 -1
  400. package/docs/display/title-demo/demo1.md +50 -26
  401. package/docs/display/title.md +1 -1
  402. package/docs/display/tool-tip-demo/demo1.md +26 -71
  403. package/docs/display/tool-tip-demo/demo2.md +33 -30
  404. package/docs/display/tool-tip-demo/demo3.md +50 -0
  405. package/docs/display/tool-tip-demo/demo4.md +74 -0
  406. package/docs/display/tool-tip.md +11 -1
  407. package/docs/editors/code/code-block-demo/demo1.md +21 -40
  408. package/docs/editors/code/code-block-demo/demo2.md +35 -0
  409. package/docs/editors/code/code-block-demo/demo3.md +43 -0
  410. package/docs/editors/code/code-block-demo/demo4.md +28 -0
  411. package/docs/editors/code/code-block-demo/demo5.md +42 -0
  412. package/docs/editors/code/code-block-demo/demo6.md +42 -0
  413. package/docs/editors/code/code-block-demo/demo7.md +853 -0
  414. package/docs/editors/code/code-block-demo/demo8.md +855 -0
  415. package/docs/editors/code/code-block.md +21 -1
  416. package/docs/editors/code/inline-demo/demo1.md +6 -3
  417. package/docs/editors/code/inline.md +1 -1
  418. package/docs/editors/markdown-editor/base-editor-demo/demo1.md +9 -28
  419. package/docs/editors/markdown-editor/base-editor.md +1 -1
  420. package/docs/forms/form-controls/checkbox/demo/demo1.md +49 -0
  421. package/docs/forms/form-controls/checkbox/index.md +26 -0
  422. package/docs/forms/form-controls/{checkbox-group-demo → checkbox-group/demo}/demo1.md +4 -13
  423. package/docs/forms/form-controls/checkbox-group/index.md +27 -0
  424. package/docs/forms/form-controls/{combo-box-demo → combo-box/demo}/demo1.md +8 -2
  425. package/docs/forms/form-controls/{combo-box-demo → combo-box/demo}/demo2.md +10 -8
  426. package/docs/forms/form-controls/combo-box/demo/demo3.md +60 -0
  427. package/docs/forms/form-controls/{combo-box-demo/demo3.md → combo-box/demo/demo4.md} +17 -14
  428. package/docs/forms/form-controls/combo-box/demo/demo5.md +151 -0
  429. package/docs/forms/form-controls/combo-box/index.md +6 -0
  430. package/docs/forms/form-controls/file-picker/demo/demo1.md +29 -0
  431. package/docs/forms/form-controls/file-picker/demo/demo2.md +44 -0
  432. package/docs/forms/form-controls/file-picker/demo/demo3.md +45 -0
  433. package/docs/forms/form-controls/file-picker/demo/demo4.md +63 -0
  434. package/docs/forms/form-controls/file-picker/index.md +22 -0
  435. package/docs/forms/form-controls/{form-control-layout-demo → form-control-layout/demo}/demo1.md +0 -0
  436. package/docs/forms/form-controls/form-control-layout/index.md +30 -0
  437. package/docs/forms/form-controls/{form-control-layout-delimited-demo → form-control-layout-delimited/demo}/demo1.md +41 -37
  438. package/docs/forms/form-controls/form-control-layout-delimited/index.md +24 -0
  439. package/docs/forms/form-controls/number-field/demo/demo1.md +20 -0
  440. package/docs/forms/form-controls/{number-field-demo/demo1.md → number-field/demo/demo2.md} +23 -11
  441. package/docs/forms/form-controls/number-field/index.md +12 -0
  442. package/docs/forms/form-controls/password-field/demo/demo1.md +19 -0
  443. package/docs/forms/form-controls/{password-field-demo/demo1.md → password-field/demo/demo2.md} +12 -8
  444. package/docs/forms/form-controls/password-field/index.md +19 -0
  445. package/docs/forms/form-controls/radio/demo/demo1.md +43 -0
  446. package/docs/forms/form-controls/radio/index.md +24 -0
  447. package/docs/forms/form-controls/radio-group/demo/demo1.md +50 -0
  448. package/docs/forms/form-controls/radio-group/index.md +18 -0
  449. package/docs/forms/form-controls/range/demo/demo1.md +96 -0
  450. package/docs/forms/form-controls/range/demo/demo2.md +62 -0
  451. package/docs/forms/form-controls/{range-demo → range/demo}/demo3.md +10 -12
  452. package/docs/forms/form-controls/{range-demo → range/demo}/demo4.md +16 -18
  453. package/docs/forms/form-controls/{range-demo → range/demo}/demo5.md +18 -20
  454. package/docs/forms/form-controls/range/demo/demo6.md +57 -0
  455. package/docs/forms/form-controls/range/demo/demo7.md +350 -0
  456. package/docs/forms/form-controls/range/index.md +18 -0
  457. package/docs/forms/form-controls/search-field/demo/demo1.md +29 -0
  458. package/docs/forms/form-controls/search-field/index.md +14 -0
  459. package/docs/forms/form-controls/select/demo/demo1.md +29 -0
  460. package/docs/forms/form-controls/select/demo/demo2.md +44 -0
  461. package/docs/forms/form-controls/{select-demo/demo1.md → select/demo/demo3.md} +20 -10
  462. package/docs/forms/form-controls/select/index.md +19 -0
  463. package/docs/forms/form-controls/{switch-demo → switch/demo}/demo1.md +10 -10
  464. package/docs/forms/form-controls/switch/index.md +13 -0
  465. package/docs/forms/form-controls/text-field/demo/demo1.md +35 -0
  466. package/docs/forms/form-controls/text-field/demo/demo2.md +40 -0
  467. package/docs/forms/form-controls/{text-field-demo/demo2.md → text-field/demo/demo3.md} +14 -17
  468. package/docs/forms/form-controls/{text-field-demo/demo1.md → text-field/demo/demo4.md} +18 -32
  469. package/docs/forms/form-controls/text-field/index.md +14 -0
  470. package/docs/forms/form-controls/textarea/demo/demo1.md +21 -0
  471. package/docs/forms/form-controls/textarea/demo/demo2.md +24 -0
  472. package/docs/forms/form-controls/textarea/index.md +13 -0
  473. package/docs/forms/form-layouts/described-form-groups-demo/demo1.md +13 -4
  474. package/docs/forms/form-layouts/described-form-groups.md +1 -1
  475. package/docs/layout/accordion-demo/demo1.md +21 -102
  476. package/docs/layout/accordion-demo/demo2.md +76 -0
  477. package/docs/layout/accordion-demo/demo3.md +25 -0
  478. package/docs/layout/accordion-demo/demo4.md +26 -0
  479. package/docs/layout/accordion-demo/demo5.md +65 -0
  480. package/docs/layout/accordion-demo/demo6.md +78 -0
  481. package/docs/layout/accordion-demo/demo7.md +66 -0
  482. package/docs/layout/accordion-demo/demo8.md +64 -0
  483. package/docs/layout/accordion-demo/demo9.md +114 -0
  484. package/docs/layout/accordion.md +39 -9
  485. package/docs/layout/bottom-bar-demo/demo1.md +32 -49
  486. package/docs/layout/bottom-bar-demo/demo2.md +54 -0
  487. package/docs/layout/bottom-bar-demo/demo3.md +81 -0
  488. package/docs/layout/bottom-bar.md +1 -1
  489. package/docs/layout/flex.md +1 -1
  490. package/docs/layout/flyout-demo/demo1.md +19 -11
  491. package/docs/layout/flyout-demo/demo2.md +43 -28
  492. package/docs/layout/flyout-demo/demo3.md +99 -0
  493. package/docs/layout/flyout-demo/demo4.md +115 -0
  494. package/docs/layout/flyout-demo/demo5.md +59 -0
  495. package/docs/layout/flyout-demo/demo6.md +57 -0
  496. package/docs/layout/flyout-demo/demo7.md +51 -0
  497. package/docs/layout/flyout.md +1 -1
  498. package/docs/layout/header-demo/demo1.md +284 -35
  499. package/docs/layout/header-demo/demo2.md +42 -0
  500. package/docs/layout/header-demo/demo3.md +48 -0
  501. package/docs/layout/header-demo/demo4.md +57 -0
  502. package/docs/layout/header-demo/demo5.md +232 -0
  503. package/docs/layout/header-demo/demo6.md +85 -0
  504. package/docs/layout/header-demo/demo7.md +94 -0
  505. package/docs/layout/header.md +1 -1
  506. package/docs/layout/horizontal-rule.md +1 -1
  507. package/docs/layout/modal-demo/demo1.md +64 -167
  508. package/docs/layout/modal-demo/demo2.md +126 -0
  509. package/docs/layout/modal-demo/demo3.md +55 -0
  510. package/docs/layout/modal-demo/demo4.md +65 -0
  511. package/docs/layout/modal-demo/demo5.md +96 -0
  512. package/docs/layout/modal.md +1 -1
  513. package/docs/layout/page-demo/demo1.md +96 -3
  514. package/docs/layout/page-demo/demo10.md +42 -0
  515. package/docs/layout/page-demo/demo2.md +46 -0
  516. package/docs/layout/page-demo/demo3.md +50 -0
  517. package/docs/layout/page-demo/demo4.md +38 -0
  518. package/docs/layout/page-demo/demo5.md +30 -0
  519. package/docs/layout/page-demo/demo6.md +51 -0
  520. package/docs/layout/page-demo/demo7.md +59 -0
  521. package/docs/layout/page-demo/demo8.md +19 -0
  522. package/docs/layout/page-demo/demo9.md +29 -0
  523. package/docs/layout/page.md +1 -1
  524. package/docs/layout/panel-demo/demo1.md +28 -19
  525. package/docs/layout/panel-demo/demo2.md +22 -0
  526. package/docs/layout/panel-demo/demo3.md +27 -0
  527. package/docs/layout/panel-demo/demo4.md +46 -0
  528. package/docs/layout/panel-demo/demo5.md +81 -0
  529. package/docs/layout/panel.md +7 -1
  530. package/docs/layout/popover-demo/demo1.md +42 -300
  531. package/docs/layout/popover-demo/demo10.md +72 -0
  532. package/docs/layout/popover-demo/demo2.md +306 -96
  533. package/docs/layout/popover-demo/demo3.md +20 -12
  534. package/docs/layout/popover-demo/demo4.md +118 -0
  535. package/docs/layout/popover-demo/demo5.md +252 -0
  536. package/docs/layout/popover-demo/demo6.md +44 -0
  537. package/docs/layout/popover-demo/demo7.md +44 -0
  538. package/docs/layout/popover-demo/demo8.md +50 -0
  539. package/docs/layout/popover-demo/demo9.md +80 -0
  540. package/docs/layout/popover.md +1 -1
  541. package/docs/navigation/breadcrumbs-demo/demo1.md +77 -0
  542. package/docs/navigation/breadcrumbs-demo/demo2.md +61 -0
  543. package/docs/navigation/breadcrumbs-demo/demo3.md +61 -0
  544. package/docs/navigation/breadcrumbs-demo/demo4.md +61 -0
  545. package/docs/navigation/breadcrumbs-demo/demo5.md +61 -0
  546. package/docs/navigation/breadcrumbs-demo/demo6.md +61 -0
  547. package/docs/navigation/breadcrumbs.md +1 -0
  548. package/docs/navigation/button-demo/demo1.md +210 -158
  549. package/docs/navigation/button.md +1 -1
  550. package/docs/navigation/collapsible-nav-demo/demo1.md +21 -44
  551. package/docs/navigation/collapsible-nav-demo/demo2.md +108 -0
  552. package/docs/navigation/collapsible-nav.md +1 -1
  553. package/docs/navigation/key-pad-menu-demo/demo1.md +77 -0
  554. package/docs/navigation/key-pad-menu-demo/demo2.md +102 -0
  555. package/docs/navigation/key-pad-menu-demo/demo3.md +54 -0
  556. package/docs/navigation/key-pad-menu-demo/demo4.md +71 -0
  557. package/docs/navigation/key-pad-menu-demo/demo5.md +65 -0
  558. package/docs/navigation/key-pad-menu.md +1 -0
  559. package/docs/navigation/link-demo/demo1.md +44 -0
  560. package/docs/navigation/link-demo/demo2.md +41 -0
  561. package/docs/navigation/link-demo/demo3.md +45 -0
  562. package/docs/navigation/link-demo/demo4.md +61 -0
  563. package/docs/navigation/link.md +1 -0
  564. package/docs/navigation/side-nav-demo/demo1.md +34 -18
  565. package/docs/navigation/side-nav.md +1 -1
  566. package/docs/navigation/steps-demo/demo1.md +16 -18
  567. package/docs/navigation/steps-demo/demo2.md +18 -21
  568. package/docs/navigation/steps-demo/demo3.md +12 -10
  569. package/docs/navigation/steps-demo/demo4.md +84 -0
  570. package/docs/navigation/steps-demo/demo5.md +29 -0
  571. package/docs/navigation/steps.md +1 -1
  572. package/docs/navigation/tabs-demo/demo1.md +38 -111
  573. package/docs/navigation/tabs-demo/demo2.md +56 -0
  574. package/docs/navigation/tabs-demo/demo3.md +79 -0
  575. package/docs/navigation/tabs-demo/demo4.md +102 -0
  576. package/docs/navigation/tabs.md +1 -1
  577. package/docs/utilities/auto-sizer-demo/demo1.md +34 -0
  578. package/docs/utilities/auto-sizer.md +1 -0
  579. package/docs/utilities/copy-demo/demo1.md +37 -0
  580. package/docs/utilities/copy-demo/demo2.md +70 -0
  581. package/docs/utilities/copy.md +1 -0
  582. package/docs/utilities/mutation-observer.md +1 -1
  583. package/docs/utilities/outside-click-detector.md +1 -1
  584. package/docs/utilities/overlay-mask.md +1 -1
  585. package/docs/utilities/portal.md +1 -1
  586. package/docs/utilities/resize-observer.md +1 -1
  587. package/docs/utilities/responsive-demo/demo1.md +108 -0
  588. package/docs/utilities/responsive.md +1 -0
  589. package/index.js +8 -3
  590. package/package.json +13 -7
  591. package/CHANGELOG.md +0 -1340
  592. package/addon/components/eui-code-block-impl/code-block-controls/index.hbs +0 -33
  593. package/addon/components/eui-code-block-impl/index.hbs +0 -111
  594. package/addon/components/eui-code-block-impl/index.ts +0 -121
  595. package/addon/components/eui-flyout-body/banner/index.hbs +0 -3
  596. package/addon/components/eui-flyout-body/content/index.hbs +0 -3
  597. package/addon/helpers/create-event.ts +0 -30
  598. package/addon/modifiers/focus-tab.ts +0 -19
  599. package/addon/modifiers/get-cursor-node.ts +0 -54
  600. package/addon/modifiers/invalidate-indeterminate.ts +0 -10
  601. package/addon/modifiers/on-event-simulate-event.ts +0 -32
  602. package/app/components/eui-card/eui-card-select/index.js +0 -1
  603. package/app/components/eui-flyout-body/banner/index.js +0 -1
  604. package/app/components/eui-flyout-body/content/index.js +0 -1
  605. package/app/helpers/create-event.js +0 -1
  606. package/app/modifiers/fixed-header.js +0 -1
  607. package/app/modifiers/focus-tab.js +0 -1
  608. package/app/modifiers/get-cursor-node.js +0 -1
  609. package/app/modifiers/invalidate-indeterminate.js +0 -1
  610. package/app/modifiers/on-event-simulate-event.js +0 -1
  611. package/docs/forms/form-controls/checkbox-demo/demo1.md +0 -40
  612. package/docs/forms/form-controls/checkbox-group.md +0 -1
  613. package/docs/forms/form-controls/checkbox.md +0 -1
  614. package/docs/forms/form-controls/combo-box.md +0 -1
  615. package/docs/forms/form-controls/file-picker-demo/demo1.md +0 -28
  616. package/docs/forms/form-controls/file-picker.md +0 -1
  617. package/docs/forms/form-controls/form-control-layout-delimited.md +0 -1
  618. package/docs/forms/form-controls/form-control-layout.md +0 -1
  619. package/docs/forms/form-controls/number-field.md +0 -1
  620. package/docs/forms/form-controls/password-field.md +0 -1
  621. package/docs/forms/form-controls/radio-demo/demo1.md +0 -39
  622. package/docs/forms/form-controls/radio-group-demo/demo1.md +0 -60
  623. package/docs/forms/form-controls/radio-group.md +0 -1
  624. package/docs/forms/form-controls/radio.md +0 -1
  625. package/docs/forms/form-controls/range-demo/demo1.md +0 -61
  626. package/docs/forms/form-controls/range-demo/demo2.md +0 -59
  627. package/docs/forms/form-controls/range-demo/demo6.md +0 -59
  628. package/docs/forms/form-controls/range.md +0 -1
  629. package/docs/forms/form-controls/search-field-demo/demo1.md +0 -31
  630. package/docs/forms/form-controls/search-field.md +0 -1
  631. package/docs/forms/form-controls/select.md +0 -1
  632. package/docs/forms/form-controls/switch.md +0 -1
  633. package/docs/forms/form-controls/text-field.md +0 -1
  634. package/docs/forms/form-controls/textarea-demo/demo1.md +0 -36
  635. package/docs/forms/form-controls/textarea.md +0 -1
package/CHANGELOG.md DELETED
@@ -1,1340 +0,0 @@
1
- # Ember Eui Changelog
2
-
3
- ### Master
4
-
5
- ### 4.3.0
6
- 🚀 Enhancements
7
- `@ember-eui/flatpickr`
8
- - New addon plug in, @ember-eui/flatpickr!
9
-
10
- ### 4.2.6
11
- 🐛 Bug / Fixes
12
- `@ember-eui/core`
13
- - `<EuiComboBox />` fix css and html issues for amsterdam theme
14
- - `{{use-state}}` schedule changes for afterRender
15
-
16
- ### 4.2.5
17
- 🐛 Bug / Fixes
18
- `@ember-eui/core`
19
- - `<EuiIcon />` for now use @iconClasses to pass down classes when using svg-jar
20
-
21
- ### 4.2.4
22
- 🐛 Bug / Fixes
23
- `@ember-eui/core`
24
- - `<EuiIcon />` Drop wrapping svg div, add futurist css override
25
- ### 4.2.3
26
- 🐛 Bug / Fixes
27
- `@ember-eui/core`
28
- - Cherry pick 1.6.x fix commit hash https://github.com/prysmex/ember-eui/commit/c4b8a4a259f6b86c2be516fd7427f5e48b28cecd
29
- - Use next for updating the attachTo for `<EuiToolTip />`
30
-
31
- ### 4.2.2
32
- 🐛 Bug / Fixes
33
- `@ember-eui/core`
34
- - fix typing issues
35
-
36
- ### 4.2.1
37
- 🐛 Bug / Fixes
38
- `@ember-eui/core`
39
- - fix markdown editor components
40
-
41
- ### 4.2.0
42
- 🚀 Enhancements
43
- `@ember-eui/core`
44
- - Remove blueprint, inspired by https://github.com/mikkopaderes/ember-cloud-firestore-adapter README.md we should teach users to install peerDependencies manually, which is now required.
45
- - Update docs for this change.
46
-
47
- 🐛 Bug / Fixes
48
- `@ember-eui/core`
49
- - fix markdown editor icons
50
-
51
- ### 4.1.1
52
- 🐛 Bug / Fixes
53
- `@ember-eui/core`
54
- - fix typo in package json defaultBlueprint
55
-
56
- ### 4.1.0
57
- 🐛 Bug / Fixes
58
- `@ember-eui/core`
59
- - @html-next/vertical-collection depend on npm released version 3.0.0-1
60
-
61
- 🚀 Enhancements
62
- `@ember-eui/*`
63
- bump @embroider 1.3.0 regenerating yarn.lock, this finally enables staticComponents flag!
64
-
65
- ### 4.0.9
66
- 🐛 Bug / Fixes
67
- `@ember-eui/core`
68
- - `<EuiIcon>` added hardcoded styling meanwhile we add back svgs to hbs components
69
-
70
- ### 4.0.8
71
- 🐛 Bug / Fixes
72
- `@ember-eui/pikaday`
73
- - Make component much more flexible for easier extending or composition
74
-
75
- ### 4.0.7
76
- 🐛 Bug / Fixes
77
- `@ember-eui/core`
78
- - Since we are no longer exposing sass files, there's no use for this file anymore
79
-
80
- ### 4.0.6
81
- 🐛 Bug / Fixes
82
- `@ember-eui/core`
83
- - Fix named blocks version
84
-
85
- ### 4.0.5
86
- 🐛 Bug / Fixes
87
- `@ember-eui/core`
88
- - Add ember-named-blocks-polyfill back
89
-
90
- ### 4.0.4
91
- 🐛 Bug / Fixes
92
- `@ember-eui/core`
93
- - Fixes some dependencies issues with 4.x breakings
94
- - Adds a blueprint to install ember-focus-trap in host
95
- - Fixes `<EuiPikaday />`
96
-
97
- ### 4.0.0
98
- 💥 Breaking change
99
- `@ember-eui/*`
100
- - Your application must depend on `ember-auto-import` > v2.0.0, please refer to the [migration guides](https://github.com/ef4/ember-auto-import/blob/main/docs/upgrade-guide-2.0.md)
101
-
102
- 🚀 Enhancements
103
- `@ember-eui/*`
104
- - ember v4.1.0 support!
105
-
106
- 🏠 Internal
107
- `@ember-eui/*`
108
- - `ember-cli-update` on all packages for ember >v4.1.0
109
- - Update ember-cli-typescript
110
- - Update docs dependencies for ember 4 support
111
-
112
- ### 3.1.0
113
- 🚀 Enhancements
114
- `@ember-eui/*`
115
- - Embroider ready, in order to use staticComponents you need to have `@embroider` > 1.2.0
116
-
117
- 🐛 Bug / Fixes
118
- `@ember-eui/core`
119
- - `<EuiMarkdownFormat />` and `<EuiMarkdownEditor />` styling bugs and double render issues fixed
120
-
121
- ### 3.0.2
122
- `@ember-eui/core`
123
- 🐛 Bug / Fixes
124
- - Fix `<EuiMarkdownEditor />` icons compatibility with ember-source < 3.27
125
-
126
- ### 3.0.1
127
- `@ember-eui/core`
128
- 🚀 Enhancements
129
- - No longer need to add icons from public icons in ember-eui/core
130
-
131
- ### 3.0.0
132
- 💥 Breaking change
133
- `@ember-eui/*`
134
- - Drops support for ember-source < v3.20.0
135
- - Drops support for node 10
136
- - Drops support for importing sass, elastic eui is migrating to emotion, so its better we just focus on that instead of sass, so we no longer dynamically import template only components for now, this could possibly be achieved later post embroider
137
-
138
- 🏠 Internal
139
- `@ember-eui/*`
140
- - `ember-cli-update --to=3.28.0` on all packages
141
- - Update ember-cli-typescript
142
- - Remove some deprecations like new imports paths and helpers usage and `#with` helper
143
-
144
- ### 2.0.0
145
- 💥 Breaking change
146
- `@ember-eui/core`
147
- - Deprecate `ember-svg-jar` `hbs` strategy for now, just use stock `ember-svg-jar`
148
-
149
- ### 1.6.10
150
- 🐛 Bug / Fixes
151
- `@ember-eui/core`
152
- - `<EuiComboBox />` fixes to `onCreateOption`
153
- ### 1.6.7
154
- 🐛 Bug / Fixes
155
- `@ember-eui/core`
156
- - `<EuiComboBox />` Call `onChange` after `onCreateOption` is triggered
157
- ### 1.6.5
158
- 🐛 Bug / Fixes
159
- `@ember-eui/core`
160
- - `<EuiComboBox />` hide clear button when disabled
161
- - `<EuiComboBox />` close options dropdown after creating option
162
-
163
- ### 1.6.3
164
- 🐛 Bug / Fixes
165
- `@ember-eui/core`
166
- - Fix inline-styling weird bug
167
-
168
- ### 1.6.2
169
- 🐛 Bug / Fixes
170
- `@ember-eui/validated-form`
171
- - Bubble the change correctly from `<Form.FieldMarkdownEditor />`
172
- ### 1.6.1
173
- 🐛 Bug / Fixes
174
- `@ember-eui/core`
175
- - Add default yield block for `<EuiStat />`
176
-
177
- ### 1.6.0
178
- 🚀 Enhancements
179
- `@ember-eui/core`
180
- - `<EuiStat/>` component!
181
- ### 1.5.0
182
- 🚀 Enhancements
183
- `@ember-eui/validated-form`
184
- - Allow providing an markdown-editor componet for easier composability
185
-
186
- ### 1.4.0
187
- 🚀 Enhancements
188
- - Easier extending of processing plugins, add demo
189
-
190
- ### 1.3.5
191
- 🐛 Bug / Fixes
192
- - Urls for markdown editor icons
193
-
194
- ### 1.3.4
195
- 🐛 Bug / Fixes
196
- - Fix docs related to ember-svg-jar and netlify demo
197
-
198
- ### 1.3.0 - 1.3.3
199
- 🐛 Bug / Fixes
200
- - Ts bugs
201
-
202
- ### 1.3.0
203
- 🚀 Enhancements
204
- `@ember-eui/core`
205
- - `<EuiMarkdownEditor />` `<EuiMarkdownFormat />` `<EuiCode />` `<EuiCopy />` `<EuiCodeBlock />`
206
-
207
- `@ember-eui/validated-form`
208
- - `<Form.FieldMarkdownEditor />`
209
-
210
-
211
- ### 1.2.6
212
- 🐛 Bug / Fixes
213
- - Update ember-svg-jar dependency
214
-
215
- ### 1.2.5
216
- 🐛 Bug / Fixes
217
- `@ember-eui/core`
218
- - Fix `<EuiComboBox/>` isClereable
219
-
220
- ### 1.2.4
221
- 🏠 Internal
222
- `@ember-eui/changeset-form`,`@ember-eui/validated-form`
223
- - Pass down isCleareable to <EuiComboBox /> wrapped components
224
-
225
- ### 1.2.3
226
- 🚀 Enhancements
227
- `@ember-eui/core`
228
- - add errorMessage for validatable-control for i18n or so
229
-
230
- 🏠 Internal
231
- `@ember-eui/core`
232
- - update ember-power-select in order to be able to pass attributes to trigger
233
-
234
- ### 1.2.2
235
- 🐛 Bug / Fixes
236
- `@ember-eui/core`
237
- - add styling for fake input
238
-
239
- ### 1.2.1
240
- 🐛 Bug / Fixes
241
- `@ember-eui/core`
242
- - add tabindex to fake input for `<EuiComboBox />`
243
-
244
- ### 1.2.0
245
- 🚀 Enhancements
246
- `@ember-eui/core`
247
- - add fake input for html form validation to combobox
248
-
249
-
250
- ### 1.1.0
251
- 🚀 Enhancements
252
- `@ember-eui/core`
253
- - Pass down isInvalid to `<EuiComboBox>` `<EuiRangeField>`
254
-
255
- `@ember-eui/pikaday`
256
- - Pass down isInvalid to `<EuiPikaday>`
257
-
258
- ### 1.0.8
259
- 🚀 Enhancements
260
- `@ember-eui/validated-form`
261
- - use this instead of args in template so host can customize for fields
262
-
263
- `@ember-eui/changeset-form`
264
- - use this instead of args in template so host can customize for fields
265
- ### 1.0.7
266
- 🚀 Enhancements
267
- `@ember-eui/validated-form`
268
- - add rowExtra for easier customization
269
-
270
- `@ember-eui/changeset-form`
271
- - add rowExtra for easier customization
272
-
273
- ### 1.0.6
274
- 🐛 Bug / Fixes
275
- `@ember-eui/core`
276
- - fix nested accordions not hiding child content properly by `@mtrunt`
277
-
278
- 📝 Documentation
279
- - docs for described form
280
-
281
- ### 1.0.5
282
- 🐛 Bug / Fixes
283
- `@ember-eui/validated-form`
284
- - fix isDestroying, isDestroyed for validated form
285
-
286
- ### 1.0.4
287
- 🐛 Bug / Fixes
288
- `@ember-eui/core`
289
- - Pass @disable to `<EuiTab>`
290
-
291
- ### 1.0.3
292
- 🐛 Bug / Fixes
293
- `@ember-eui/validated-form`
294
- - fix initially building error messages
295
-
296
- ### 1.0.2
297
- 🐛 Bug / Fixes
298
- `@ember-eui/core`
299
- - guard @onClose for pill close button on ComboBox
300
-
301
- ### 1.0.1
302
- 🐛 Bug / Fixes
303
- `@ember-eui/validated-form`
304
- - do not bubble single values for singleSelection, embrace arrays
305
- `@ember-eui/changeset-form`
306
- - do not bubble single values for singleSelection, embrace arrays
307
-
308
- ### 1.0.0
309
- 💥 Breaking
310
- `@ember-eui/core`
311
- - drop to-array casting for eui-combo-box to match elastic ui API
312
-
313
- ### 0.8.0
314
- 🚀 Enhancements
315
- `@ember-eui/core`
316
- - Ease of usage for title block in `<EuiCard />`
317
-
318
- ### 0.7.17
319
- 🐛 Bug / Fixes
320
- `@ember-eui/validated-form`
321
- - Adds @placeholder and @dropdownClass
322
- `@ember-eui/changeset-form`
323
- - Adds @placeholder and @dropdownClass
324
-
325
- ### 0.7.15
326
- 🐛 Bug / Fixes
327
- `@ember-eui/validated-form`
328
- - Adds ember-cached-decorator-polyfill
329
- ### 0.7.14
330
-
331
- 🐛 Bug / Fixes
332
- `@ember-eui/core`
333
- - Guard to-initials helper for name and initials undefined
334
- - Enable `<EuiRangeTrack />` assertions
335
-
336
- ### 0.7.13
337
-
338
- 🚀 Enhancements
339
- `@ember-eui/core`
340
- - Add min, max, prependValue, value, appendValue to <EuiRange/>, <EuiDualRange /> for usage in
341
- Validated and Changeset Forms addons
342
-
343
- ### 0.7.12
344
-
345
- 🚀 Enhancements
346
- `@ember-eui/core`
347
- - Allow to custormize labels and values for `<EuiRange />`
348
-
349
- ### 0.7.11
350
-
351
- 🐛 Bug / Fixes
352
- `@ember-eui/core`
353
- - Use `ember-set-helper` for `<EuiModal />`
354
- - Bump `ember-power-select`
355
-
356
- ### 0.7.10
357
-
358
- 🐛 Bug / Fixes
359
- `@ember-eui/core`
360
- - Bump `ember-cli-babel`
361
-
362
- ### 0.7.9
363
-
364
- 🐛 Bug / Fixes
365
- `@ember-eui/*`
366
- - Move `ember-cli-resolve-asset` from dependencies to devDependencies.
367
-
368
- ### 0.7.8
369
-
370
- 🚀 Enhancements
371
- `@ember-eui/core`
372
- - Add `@target` to `<EuiButton />`
373
-
374
- ### 0.7.7
375
-
376
- 🐛 Bug / Fixes
377
- `@ember-eui/core`
378
- - Remove unused modifier function from `<EuiComboBox>` trigger component
379
-
380
- ### 0.7.6
381
-
382
- 🐛 Bug / Fixes
383
- `@ember-eui/core`
384
- - Remove partial ability to place blocks for `<EuiComboBox />` for now
385
- ### 0.7.5
386
-
387
- 🚀 Enhancements
388
- `@ember-eui/*`
389
- - Add partial ability to place blocks for `<EuiComboBox />`
390
- ### 0.7.4
391
-
392
- 🏠 Internal
393
- `@ember-eui/*`
394
- - Update package.json to ember-svg-jar github:betocantu93/ember-svg-jar#add-bundle-flag
395
-
396
- ### 0.7.3
397
-
398
- 🏠 Internal
399
- `@ember-eui/core`
400
- - Update ember-element-helper
401
-
402
- ### 0.7.2
403
-
404
- 🐛 Bug / Fixes
405
- `@ember-eui/*`
406
- - Fix resolving assets using optional resolve-asset
407
-
408
- `@ember-eui/core`
409
- - `<EuiComboBox />` Fix placeholder styling
410
- - `<EuiFieldNumber />` Pass @step argument
411
-
412
-
413
- ### 0.7.1
414
-
415
- 🐛 Bug / Fixes
416
-
417
- - Update package.json to ember-svg-jar github:betocantu93/ember-svg-jar#only-resolve-asset-interface
418
-
419
- ### 0.7.0
420
- 🚀 Enhancements
421
- `@ember-eui/*`
422
- - Pin volta node 12
423
- - Update ember-svg-jar fork
424
-
425
- ### 0.6.18
426
- 🚀 Enhancements
427
- `@ember-eui/core`
428
- - Add `@className` to `<EuiCheckbox />`
429
-
430
- 🐛 Bug / Fixes
431
- `@ember-eui/core`
432
- - fix: Fix condition in on-event-simulate-event modifier
433
-
434
- `@ember-eui/validated-form`
435
- - Add `@searchMessage` to `<FieldComboBox />`
436
-
437
- ### 0.6.17
438
- 🐛 Bug / Fixes
439
- `@ember-eui/validated-form`
440
- - Add `@search` to `<FieldComboBox />`
441
-
442
- ### 0.6.16
443
- 🚀 Enhancements
444
- `@ember-eui/core`
445
- - Add `@triggerClassName` to `<EuiAccordion />`
446
-
447
- ### 0.6.15
448
- 🚀 Enhancements
449
- `@ember-eui/core`
450
- - Add MouseEvent type in create-event helper
451
-
452
- 🐛 Bug / Fixes
453
- `@ember-eui/core`
454
- - fix: Prevent recursion on events that bubble in on-event-simulate-event modifier
455
-
456
- ### 0.6.14
457
- 🐛 Bug / Fixes
458
- `@ember-eui/core`
459
- - fix: piquito for `<EuiPopover />`
460
-
461
- ### 0.6.13
462
- 🐛 Bug / Fixes
463
- `@ember-eui/core`
464
- - fix: piquito for `<EuiPopover />`
465
-
466
- ### 0.6.12
467
- 🐛 Bug / Fixes
468
- `@ember-eui/core`
469
- - fix: add panelClasses to `<EuiPopover />`
470
-
471
- ### 0.6.11
472
- 🐛 Bug / Fixes
473
- `@ember-eui/core`
474
- - fix: Add disabled as arg to `<EuiCheckbox />`
475
-
476
- `@ember-eui/pikaday`
477
- - fix: Add disabled arg to `<EuiPikaday />`
478
-
479
- ### 0.6.10
480
- 🐛 Bug / Fixes
481
- - fix: Don't use changeset for `@ember-eui/validated-form`
482
-
483
- ### 0.6.9
484
- 🐛 Bug / Fixes
485
- - fix: Pass down `@renderInPlace` to `<ValidatedForm />`
486
-
487
- ### 0.6.8
488
- 🐛 Bug / Fixes
489
- -re-release
490
- ### 0.6.7
491
- 🐛 Bug / Fixes
492
- `@ember-eui/core`
493
- - fix: `{{to-array}}` now unwraps proxies
494
-
495
- ### 0.6.6
496
- 🐛 Bug / Fixes
497
- `@ember-eui/core`
498
- - fix: `<EuiComboBox />` fix isDisabled class
499
-
500
- ### 0.6.5
501
- 🐛 Bug / Fixes
502
- `@ember-eui/validated-form`
503
- - fix: ensure using to .toArray() before splatting
504
-
505
- ### 0.6.4
506
- 🐛 Bug / Fixes
507
- - Use `this` in order to be able to override or extend in consuming apps
508
- - `@ember-eui/core` `<EuiComboBox />` Fix spacing for default `@customOptionLabel`
509
-
510
- ### 0.6.3
511
- 🐛 Bug / Fixes
512
- - General `@disabled` argument standarization across packages.
513
- - `@ember-eui/validated-form` Fix double rendering issues
514
-
515
- ### 0.6.2
516
- 🚀 Enhancements
517
- - `@ember-eui/core` `<EuiComboBox />` now supports @customOptionText
518
-
519
- ### 0.6.1
520
- 🚀 Enhancements
521
- - `@ember-eui/core` `<EuiComboBox />` now supports onCreateOption, to build tag-like experience
522
-
523
- ### 0.6.0
524
- 🏠 Internal
525
- - Updat `ember-set-helper`
526
-
527
- ### 0.5.14
528
- 🐛 Bug / Fixes
529
- - `@ember-eui/validated-form` i18n fixes
530
-
531
- ### 0.5.13
532
- 🚀 Enhancements
533
- - `@ember-eui/validated-form` use `validators/messages` to allow i18n
534
-
535
- 🐛 Bug / Fixes
536
- - Fixes an issue were collapsible nav was removing the class while other was still rendered
537
-
538
- ### 0.5.12
539
- 🐛 Bug / Fixes
540
- - `@ember-eui/validated-form` reverted this.isInvalid for validated-form, it causes rendering issues
541
-
542
- ### 0.5.11
543
- 🐛 Bug / Fixes
544
- - Update `<EuiForm />` `@error` was always showing
545
-
546
- ### 0.5.10
547
- 🚀 Enhancements
548
- - `@ember-eui/validated-form` `@isInvalid`, `@invalidCallout` to `<EuiForm />`
549
-
550
- ### 0.5.9
551
- 🚀 Enhancements
552
- - `@ember-eui/validated-form` `@error`, `@errorTitle` to `<EuiForm />` and pass down `@isDisabled` to all components
553
-
554
- ### 0.5.8
555
- 🚀 Enhancements
556
- - `@ember-eui/validated-form` adds `<EuiSwitch />`
557
-
558
- ### 0.5.7
559
- 🐛 Bug / Fixes
560
- - Update `ember-changset-validations` fork to use `#dont-mutate` branch for `ember-validators`
561
-
562
- ### 0.5.6
563
- 🐛 Bug / Fixes
564
- - Remove typo
565
-
566
- ### 0.5.5
567
- 🐛 Bug / Fixes
568
- - `@ember-eui/validated-form` use ember-validators fork to stop mutation for date and format validators
569
-
570
- ### 0.5.4
571
- 🚀 Enhancements
572
- - `@ember-eui/validated-form` allow extensability of validations
573
-
574
- ### 0.5.3
575
- 🐛 Bug / Fixes
576
- - Adds formId to form, and pass down fullScreen
577
-
578
- ### 0.5.1...0.5.2
579
- 🏠 Internal
580
- - Re release
581
-
582
- ### 0.5.0
583
-
584
- 🚀 Enhancements
585
- - `@ember-eui/validated-form` package, to simplier form validations.
586
-
587
- 🐛 Bug / Fixes
588
- - `<EuiPopovers/>` Fix blurry popovers on Chrome due to will-change prop
589
-
590
- ### 0.4.6
591
-
592
- 🚀 Enhancements
593
- - `Splattributes` to pikaday
594
-
595
- ### 0.4.5
596
-
597
- 🚀 Enhancements
598
- - Bumps ember-changeset spike
599
-
600
- ### 0.4.4
601
-
602
- 🚀 Enhancements
603
- - Bumps ember-power-select
604
-
605
-
606
- ### 0.4.3
607
-
608
- 🚀 Enhancements
609
- - Bumps ember-changeset with a bugfix for safetely getting target props
610
-
611
- ### 0.4.2
612
-
613
- 🐛 Bug / Fixes
614
- - Removes console.log
615
-
616
- ### 0.4.1
617
-
618
- 🐛 Bug / Fixes
619
- - Exports `chageset-form/eui-changeset-form/fields/field-base.js`
620
-
621
- ### 0.4.0
622
-
623
- 🚀 Enhancements
624
- - Made `<EuiChangesetForm::Fields::FieldComboBox />` more manual but more flexible, now you have to passdown `@selectedOptions` and `@onChange`
625
-
626
- ### 0.3.4
627
-
628
- 🐛 Bug / Fixes
629
- - Remove hardcoded @searchEnabled from `<EuiComboBox />`
630
-
631
- ### 0.3.3
632
-
633
- 🐛 Bug / Fixes
634
- - Remove default searchField from `<EuiChangesetForm::Fields::FieldComboBox />`
635
-
636
- ### 0.3.2
637
-
638
- 🐛 Bug / Fixes
639
- - Pass down @rows to `<EuiChangesetForm::Fields::FieldTextArea />`
640
-
641
- ### 0.3.1
642
-
643
- 🐛 Bug / Fixes
644
- - Change name of generated components file for imports.
645
-
646
- ### 0.3.0
647
-
648
- 🚀 Enhancements
649
- - Adds ability to use `<EuiIcon />` inside `<EuiAvatar />`, the downside is an small override on the css, this should be removed later on when we have time to bump elastic-eui styles.
650
-
651
- ### 0.2.8
652
-
653
- 🐛 Bug / Fixes
654
- - `<EuiChangesetForm::Fields::FieldComboBox />` now sets string for singleSelection instead of array of 1 position
655
-
656
- ### 0.2.7
657
-
658
- 🚀 Enhancements
659
- - Fixes performance issues and bugs around ember-changeset, we currently depend on a PR [ember-changeset](https://github.com/poteto/ember-changeset/pull/586)
660
-
661
- 🐛 Bug / Fixes
662
- - Adds `ember-composable-helpers` to dependencies
663
- - renamed `@onInput` to `@onChange` for `<EuiChangesetForm::Fields::FieldRangeSlider />`
664
-
665
- ### 0.2.6
666
-
667
- 🚀 Enhancements
668
- - Adds `toArray` for changeset-form checkbox group
669
-
670
- ### 0.2.5
671
-
672
- 🚀 Enhancements
673
- - `@valueKey` and `@labelKey` for `<EuiCheckboxGroup />` and `<EuiRadioGroup />` so you don't have to map to { id, value }
674
-
675
- ### 0.2.4
676
-
677
- 🚀 Enhancements
678
- - Moves splattributes to the wrapped field for changeset-form
679
-
680
- ### 0.2.3
681
-
682
- 🐛 Bug / Fixes
683
- - Add `<EuiFormRow />` to changeset-form/fields/switch
684
-
685
- ### 0.2.2
686
-
687
- 🐛 Bug / Fixes
688
- - Typo in ChangesetForm NumberField => FieldNumber
689
-
690
- ### 0.2.1
691
-
692
- 🐛 Bug / Fixes
693
- - Bugfixes in `<EuiFlexGrid />` and `<EuiPage />`
694
-
695
- ### 0.2.0
696
-
697
- 🚀 Enhancements
698
- - Changeset Form Components
699
- - `<EuiComboBox />` Added to changeset-form package
700
-
701
-
702
- ### 0.1.29
703
-
704
- 🚀 Enhancements
705
- - `<EuiComboBox />` first iteration
706
-
707
- ### 0.1.28
708
-
709
- 🐛 Bug / Fixes
710
- - Remove html type attribute from `<EuiTextArea />` underlaying `<textarea>`
711
-
712
- ### 0.1.27
713
-
714
- 🚀 Enhancements
715
- - Block for `<EuiBetaBadge />`
716
-
717
- ### 0.1.26
718
-
719
- 🐛 Bug / Fixes
720
- - Add optional helper on "onClose" toasts actions
721
- - Fix deploys
722
-
723
- ### 0.1.24
724
-
725
- 🐛 Bug / Fixes
726
- - Optional chaining for changeset access in changeset-form base field
727
-
728
- ### 0.1.23
729
-
730
- 🚀 Enhancements
731
- - `<EuiCard />` don't show description markup if there's no description block or arg
732
-
733
- ### 0.1.22
734
-
735
- 🐛 Bug / Fixes
736
- - Updates internal `this.value` if `@value` changes for `<EuiFieldSearch />`
737
-
738
- ### 0.1.21
739
-
740
- 🐛 Bug / Fixes
741
- - Fix `arg-or-default` for id on `<EuiChangesetForm />`
742
-
743
- ### 0.1.20
744
-
745
- 🚀 Enhancements
746
-
747
- - Adds id to the `<EuiChangesetForm />` and all the underlaying components
748
-
749
- ### 0.1.19
750
-
751
- 🐛 Bug / Fixes
752
- - Adds splattributes to `<EuiChangesetForm />`
753
-
754
- ### 0.1.18
755
-
756
- 🐛 Bug / Fixes
757
- - Guards for name.length `<EuiAvatar />`
758
-
759
- ### 0.1.16
760
-
761
- 🐛 Bug / Fixes
762
- - Adds `@value` to input when controlOnly is `true`
763
- - Adds placeholder and autofocus to changeset fields
764
-
765
- ### 0.1.15
766
-
767
- 🐛 Bug / Fixes
768
- - `<EuiGlobalToastList />` Remove padding when empty as expected
769
- - `<EuiChangesetForm />` Rename all fields names for consistency
770
- - - Ej. `<Form.PasswordField />` to `<Form.FieldPassword />`
771
-
772
- ### 0.1.13
773
-
774
- 🚀 Enhancements
775
-
776
- Addons
777
- - `@ember-eui/pikaday`
778
-
779
- ### 0.1.12
780
-
781
- 🚀 Enhancements
782
- - expose hasSubmitted for changeset-form
783
-
784
- Components
785
-
786
- - `<EuiToast>`
787
- - `<EuiGlobalToastList>`
788
-
789
- Services
790
-
791
- - `EuiToasterService`
792
-
793
- ### 0.1.11
794
-
795
- 🐛 Bug / Fixes
796
- - `<EuiCard />` `<:icon>` block fixes
797
-
798
- ### 0.1.10
799
-
800
- 🐛 Bug / Fixes
801
- - Add ember-set-body-class to @ember-eui/core `dependencies`
802
- ### 0.1.9
803
-
804
- 🐛 Bug / Fixes
805
- - EuiOverlayMask bugfixes
806
- ### 0.1.7
807
-
808
- 📝 Documentation
809
- - Minor fixes
810
- ### 0.1.6
811
-
812
- 📝 Documentation
813
- - Revamp/extract docs to include changeset-form addon, we no longer use the dummy app, instead use site.
814
-
815
- ### 0.1.5
816
-
817
- 🚀 Enhancements
818
-
819
- - Added `<:icon>` named block to `<EuiCard />`
820
-
821
- ### 0.1.4
822
-
823
- 🐛 Bug / Fixes
824
-
825
- - Fixes lots of named blocks issues with wrapped fields
826
-
827
- 🚀 Enhancements
828
-
829
- - Added `<:title>` and `<:description>` named block to `<EuiCard />`
830
-
831
- Components
832
-
833
- - `<EuiChangesetForm::Fields::DualRangeSliderField>`
834
-
835
- ### 0.1.1
836
-
837
- `Breaking`: moved project to monorepo. Now you should install from `@ember-eui/core`
838
-
839
- 🚀 Enhancements
840
-
841
- Components
842
-
843
- - `<EuiCheckableCard>`
844
-
845
- Packages
846
- - Added `changeset-form` inspired by [@frontile/changeset-form](https://github.com/josemarluedke/frontile/tree/master/packages/changeset-form)
847
-
848
-
849
- ### 0.0.57
850
-
851
- 🐛 Bug / Fixes
852
-
853
- - Move `ember-style-modifier` to deps
854
-
855
- ### 0.0.56
856
-
857
- 🚀 Enhancements
858
-
859
- Components
860
-
861
- - `<EuiToolTip>`
862
- - `<EuiToolTipPopover>`
863
- - `<EuiIconTip>`
864
-
865
- Dependencies
866
-
867
- - - `ember-set-body-class`
868
-
869
- 🐛 Bug / Fixes
870
-
871
- - Remove a few console logs
872
- - Rename a few classes
873
- - Use ts for every component
874
-
875
- ### 0.0.55
876
-
877
- 🚀 Enhancements
878
-
879
- Components
880
-
881
- - `<EuiRangeHighlight>`
882
- - `<EuiRangeInput>`
883
- - `<EuiRangeLabel>`
884
- - `<EuiRangeLevels>`
885
- - `<EuiRangeSlider>`
886
- - `<EuiRangeThumb>`
887
- - `<EuiRangeTicks>`
888
- - `<EuiRangeTooltip>`
889
- - `<EuiRangeTrack>`
890
- - `<EuiRangeWrapper>`
891
- - `<EuiRange>`
892
- - `<EuiDualRange>`
893
-
894
- Modifiers
895
-
896
- Convert all to Typescript.
897
-
898
- - `{{resize-observer}}`
899
- - `{{simple-style}}`
900
- - `{{on-event-simulate-event}}`
901
-
902
- Helpers
903
-
904
- - `{{cast-to}}`
905
- - `{{create-event}}`
906
- - `{{get-range-tick}}`
907
-
908
- New deps
909
-
910
- - `ember-style-modifier`
911
- - `lodash-es`
912
-
913
- - `<EuiPage>` Support paddingSize prop
914
-
915
- 🐛 Bug / Fixes
916
-
917
- - `<EuiBottomBar>` Use EuiPortal
918
-
919
- ### 0.0.54
920
-
921
- 🚀 Enhancements
922
-
923
- Components
924
-
925
- - `<EuiPopover>`
926
- - `<EuiPopoverFooter>`
927
- - `<EuiPopoverTitle>`
928
- - `<Portal>`
929
-
930
- Modifiers
931
-
932
- - `{{outside-click-detector}}`
933
- - `{{mutation-observer}}`
934
-
935
- 🐛 Bug / Fixes
936
-
937
- - `<EuiListGroupItem>` Fix DOM structure and styles
938
- - `{{screen-reader-only}}` bugfixes
939
-
940
- ### 0.0.53
941
-
942
- 🐛 Bug / Fixes
943
-
944
- - Fix Search field demo
945
-
946
- ### 0.0.52
947
-
948
- 🚀 Enhancements
949
-
950
- - `<EuiBottomBar>`
951
- - `<EuiFieldSearch>`
952
- - `<EuiFilePicker>`
953
-
954
- ### 0.0.51
955
-
956
- 🚀 Enhancements
957
-
958
- Components
959
-
960
- - `<EuiCheckbox>`
961
- - `<EuiCheckboxGroup>`
962
- - `<EuiFieldNumber>`
963
- - `<EuiFieldPassword>`
964
- - `<EuiFieldText>`
965
- - `<EuiFormControlLayoutClearButton>`
966
- - `<EuiFormControlLayoutClearCustomIcon>`
967
- - `<EuiFormControlLayoutDelimited>`
968
- - `<EuiFormControlLayoutIcons>`
969
- - `<EuiFormControlLayout>`
970
- - `<EuiFormErrorText>`
971
- - `<EuiFormFielset>`
972
- - `<EuiFormHelpText>`
973
- - `<EuiFormLegend>`
974
- - `<EuiFormRow>`
975
- - `<EuiForm>`
976
- - `<EuiRadioGroup>`
977
- - `<EuiRadio>`
978
- - `<EuiSelect>`
979
- - `<EuiSwitch>`
980
- - `<EuiTextArea>`
981
- - `<EuiTextArea>`
982
-
983
- Helpers
984
-
985
- - `{{nullish}}`
986
- - `{{starts-with}}`
987
-
988
- Modifiers
989
-
990
- - `{{invalidate-indeterminate}}`
991
- - `{{screen-reader-only}}`
992
- - `{{validatable-control}}`
993
-
994
- 🐛 Bug / Fixes
995
-
996
- - `<EuiText>` `@grow` defaults to true
997
- - `<EuiCard>` selectable bugfixes
998
- - Prevent inline style of maxWidth as undefined on modal
999
- - Fix EuiCollapsibleNavGroup title styling
1000
-
1001
- 🏠 Internal
1002
-
1003
- - Refactor `class-names` helper for more clarity and perceived performance(?)
1004
-
1005
- ### 0.0.50
1006
-
1007
- 🚀 Enhancements
1008
-
1009
- - `<EuiListGroup>`
1010
- - `<EuiListGroupItem/>`
1011
-
1012
- ### 0.0.49
1013
-
1014
- 🚀 Enhancements
1015
-
1016
- - `<EuiFlyout>`
1017
- - `<EuiCommentList/>`
1018
-
1019
- ### 0.0.48
1020
-
1021
- 🐛 Bug / Fixes
1022
-
1023
- - Update package.json to ember-svg-jar github:betocantu93/ember-svg-jar#ember-eui-hbs
1024
-
1025
- ### 0.0.47
1026
-
1027
- 🐛 Bug / Fixes
1028
-
1029
- - Fix default `focus-trap`
1030
-
1031
- ### 0.0.46
1032
-
1033
- 🚀 Enhancements
1034
-
1035
- - Add `@iconClasses` to buttons
1036
-
1037
- ### 0.0.45
1038
-
1039
- 🚀 Enhancements
1040
-
1041
- - Add `{{yield}}` to `<EuiButtonIcon>` useful for stuff like adding tooltips or so
1042
-
1043
- ### 0.0.44
1044
-
1045
- 🐛 Bug / Fixes
1046
-
1047
- - Add missing `{{yield}}` to `<EuiHeaderLink />`
1048
-
1049
- 🚀 Enhancements
1050
-
1051
- - Allow defaulting to always use `<Svg/>` component from `ember-svg-jar`, you can still override with `@useSvg={{false}}` to render an icon as img
1052
-
1053
- ```ts
1054
- config['@ember-eui/core']['eui-icon'].useSvg;
1055
- ```
1056
-
1057
- ### 0.0.43
1058
-
1059
- 🐛 Bug / Fixes
1060
-
1061
- - Add missing `{{on "clicks"}}` for `<EuiButton />` around the codebase
1062
-
1063
- ### 0.0.42
1064
-
1065
- 🚀 Enhancements
1066
-
1067
- - Use `{{on "click"}}` instead of `@onClick` for `<EuiButton />` `<EuiButtonEmpty/>` `<EuiButtonIcon />`
1068
-
1069
- ### 0.0.41
1070
-
1071
- 🐛 Bug / Fixes
1072
-
1073
- - Add missing colors to `<EuiButtonEmpty />`
1074
-
1075
- ### 0.0.40
1076
-
1077
- 🚀 Enhancements
1078
-
1079
- - `<EuiTabs />`
1080
- - `<EuiTabbedContent />`
1081
- - Husky for prettier
1082
-
1083
- ### 0.0.39
1084
-
1085
- 🚀 Enhancements
1086
-
1087
- - `<EuiSteps />`
1088
-
1089
- ### 0.0.38
1090
-
1091
- 🚀 Enhancements
1092
-
1093
- - `<EuiProgress />`
1094
-
1095
- ### 0.0.37
1096
-
1097
- 🚀 Enhancements
1098
-
1099
- - `<EuiLoadingContent />`
1100
- - Allow @useSvg to force `<EuiIcon/>` to use `<Svg>` from ember-svg-jar
1101
-
1102
- ### 0.0.36
1103
-
1104
- 🚀 Enhancements
1105
-
1106
- - Accept `@type` for `<EuiButton />` to avoid a bug with merging `...attributes`
1107
-
1108
- ### 0.0.35
1109
-
1110
- 🐛 Bug / Fixes
1111
-
1112
- - Change onClick to `@onClick` in most clickable components
1113
-
1114
- ### 0.0.34
1115
-
1116
- 🏠 Internal
1117
-
1118
- - Added netlify link for opensource
1119
-
1120
- ### 0.0.33
1121
-
1122
- 🏠 Internal
1123
-
1124
- - Locks @elastic/eui version to 31.0.0
1125
- - Updates icon mappings
1126
-
1127
- ### 0.0.32
1128
-
1129
- 🚀 Enhancements
1130
-
1131
- - Docfy docs
1132
- - EuiCollapsibleNav
1133
-
1134
- ### 0.0.31
1135
-
1136
- 🚀 Enhancements
1137
-
1138
- - Customize focusTrapOptions for `focus-trap` helper inside <EuiModal />
1139
-
1140
- ### 0.0.30
1141
-
1142
- 🏠 Internal
1143
-
1144
- - Bump ember-svg-jar
1145
-
1146
- ### 0.0.29
1147
-
1148
- - Fix inline-styles and <EuiModal /> type with restrictWidth, should be maxWidth
1149
-
1150
- ### 0.0.28
1151
-
1152
- - Add ember-in-element-polyfill
1153
-
1154
- ### 0.0.27
1155
-
1156
- - Move `ember-keyboard` and `ember-focus-trap` from devDependencies to dependencies
1157
-
1158
- ### 0.0.26
1159
-
1160
- - Rename <Text /> component to <TextBlock>
1161
-
1162
- ### 0.0.25
1163
-
1164
- - Updates to elastic ui to 31.0.0
1165
-
1166
- ### 0.0.24
1167
-
1168
- 🚀 Enhancements
1169
-
1170
- - EuiModal
1171
-
1172
- ### 0.0.23
1173
-
1174
- 🚀 Enhancements
1175
-
1176
- - EuiCallOut may now receive named blocks <:title> </:title> <:body> <:/body>
1177
-
1178
- 🏠 Internal
1179
-
1180
- - Installed ember-named-blocks-polyfill
1181
-
1182
- ### 0.0.22
1183
-
1184
- 🐛 Bug / Fixes
1185
-
1186
- - Renames EuiCallout to EuiCallOut
1187
-
1188
- ### 0.0.21
1189
-
1190
- 🐛 Bug / Fixes
1191
-
1192
- - Fixes a few missing props for EuiPage, EuiPageBody, EuiPanel and EuiCard
1193
- - Fixes EuiHorizontalRule not receiving splattributes
1194
-
1195
- ### 0.0.20
1196
-
1197
- 🚀 Enhancements
1198
-
1199
- - EuiHr
1200
-
1201
- 🐛 Bug / Fixes
1202
-
1203
- - Fix EuiImage close Icon
1204
-
1205
- ### 0.0.19
1206
-
1207
- 🚀 Enhancements
1208
-
1209
- - Performance for EuiText, EuiColor, EuiCallout, EuiPage, EuiFlexItem and more, reducing usage of element helper
1210
- - Text hack to avoid using element helper for simple text dom nodes
1211
- - EuiCard
1212
-
1213
- 🏠 Internal
1214
-
1215
- - Update ember-svg-jar fork
1216
- - Update @elastic/eui to 30.3.0
1217
-
1218
- ### 0.0.18
1219
-
1220
- 🚀 Enhancements
1221
-
1222
- - EuiFlexGroup
1223
- - EuiFlexGrid
1224
- - EuiFlexItem
1225
-
1226
- ### 0.0.17
1227
-
1228
- 🏠 Internal
1229
-
1230
- - Fixes netlify redirects
1231
-
1232
- ### 0.0.16
1233
-
1234
- 🚀 Enhancements
1235
-
1236
- - EuiBadge
1237
- - Use empty icon svg as placeholder while downloading the desired one
1238
- - Adds @victor-aguilars to contributors
1239
-
1240
- 🏠 Internal
1241
-
1242
- - Update ember-svg-jar fork
1243
-
1244
- 🐛 Bug / Fixes
1245
-
1246
- - Add accordion to demo
1247
-
1248
- ### 0.0.15
1249
-
1250
- 🚀 Enhancements
1251
-
1252
- - EuiSideNav
1253
- - EuiAvatar
1254
-
1255
- ### 0.0.14
1256
-
1257
- 🚀 Enhancements
1258
-
1259
- - EuiCallout
1260
-
1261
- ### 0.0.13
1262
-
1263
- 🚀 Enhancements
1264
-
1265
- - Updates ember-svg-jar dependency and loads all svgs on demand.
1266
-
1267
- ### 0.0.12
1268
-
1269
- 🏠 Internal
1270
-
1271
- - Let apps define svgPath in environment.js
1272
- ```ts
1273
- `@ember-eui/core`: {
1274
- svgPath: 'svg/assets'
1275
- }
1276
- ```
1277
- This assumes that you setup ember-svg-jar with the prefix `svg/` (which is the default one)
1278
-
1279
- 🐛 Bug / Fixes
1280
-
1281
- - Fixed EuiIcon camelCase svgs
1282
-
1283
- ### 0.0.11
1284
-
1285
- 🚀 Enhancements
1286
-
1287
- - EuiIcon
1288
- - EuiAccordion
1289
- - EuiPage
1290
- - EuiTitle
1291
- - EuiText
1292
- - EuiImage
1293
- - EuiSpinner
1294
- - EuiOverlayMask
1295
-
1296
- 🏠 Internal
1297
-
1298
- - Update class-names helper to always concat
1299
-
1300
- ### 0.0.7
1301
-
1302
- Update license and add a short description to the readme
1303
-
1304
- ### 0.0.6
1305
-
1306
- Support importing only compiled css
1307
-
1308
- ```ts
1309
- "@ember-eui/core": {
1310
- "theme": "amsterdam_dark",
1311
- "useCompiledCss": true
1312
- }
1313
- ```
1314
-
1315
- ### 0.0.5
1316
-
1317
- Add ember-cli-sass and app.scss blueprint
1318
-
1319
- ### 0.0.4
1320
-
1321
- Expose scss files so you can now use eui sass variables
1322
-
1323
- ### 0.0.3
1324
-
1325
- Delete blueprint for now
1326
-
1327
- ### 0.0.2
1328
-
1329
- Fix changelog location
1330
-
1331
- ### 0.0.1
1332
-
1333
- Support importing custom themes
1334
-
1335
- ```ts
1336
- "@ember-eui/core": {
1337
- "theme": "light"
1338
- }
1339
-
1340
- ```