@nyaruka/temba-components 0.17.0 → 0.18.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 (88) hide show
  1. package/CHANGELOG.md +9 -0
  2. package/dist/a525ddb7.js +1 -0
  3. package/dist/index.js +1 -1
  4. package/dist/sw.js +1 -1
  5. package/dist/sw.js.map +1 -1
  6. package/dist/templates/components-body.html +1 -1
  7. package/dist/templates/components-head.html +1 -1
  8. package/out-tsc/src/button/Button.js +1 -0
  9. package/out-tsc/src/button/Button.js.map +1 -1
  10. package/out-tsc/src/contacts/ContactChat.js +81 -33
  11. package/out-tsc/src/contacts/ContactChat.js.map +1 -1
  12. package/out-tsc/src/contacts/ContactDetails.js +22 -22
  13. package/out-tsc/src/contacts/ContactDetails.js.map +1 -1
  14. package/out-tsc/src/contacts/ContactHistory.js +131 -138
  15. package/out-tsc/src/contacts/ContactHistory.js.map +1 -1
  16. package/out-tsc/src/contacts/events.js +55 -44
  17. package/out-tsc/src/contacts/events.js.map +1 -1
  18. package/out-tsc/src/interfaces.js.map +1 -1
  19. package/out-tsc/src/list/ContactList.js +1 -1
  20. package/out-tsc/src/list/ContactList.js.map +1 -1
  21. package/out-tsc/src/list/TembaList.js +10 -3
  22. package/out-tsc/src/list/TembaList.js.map +1 -1
  23. package/out-tsc/src/list/TembaMenu.js +7 -2
  24. package/out-tsc/src/list/TembaMenu.js.map +1 -1
  25. package/out-tsc/src/loading/Loading.js +9 -1
  26. package/out-tsc/src/loading/Loading.js.map +1 -1
  27. package/out-tsc/src/options/Options.js +14 -2
  28. package/out-tsc/src/options/Options.js.map +1 -1
  29. package/out-tsc/src/tip/Tip.js +6 -0
  30. package/out-tsc/src/tip/Tip.js.map +1 -1
  31. package/out-tsc/src/vectoricon/VectorIcon.js +17 -5
  32. package/out-tsc/src/vectoricon/VectorIcon.js.map +1 -1
  33. package/out-tsc/test/temba-contact-history.test.js +2 -2
  34. package/out-tsc/test/temba-contact-history.test.js.map +1 -1
  35. package/package.json +1 -1
  36. package/screenshots/truth/contacts/history-expanded.png +0 -0
  37. package/screenshots/truth/contacts/history.png +0 -0
  38. package/screenshots/truth/list/items-selected.png +0 -0
  39. package/screenshots/truth/list/items-updated.png +0 -0
  40. package/screenshots/truth/list/items.png +0 -0
  41. package/screenshots/truth/modax/simple.png +0 -0
  42. package/screenshots/truth/options/block.png +0 -0
  43. package/screenshots/truth/select/disabled-multi-selection.png +0 -0
  44. package/screenshots/truth/select/disabled-selection.png +0 -0
  45. package/screenshots/truth/select/disabled.png +0 -0
  46. package/screenshots/truth/select/embedded.png +0 -0
  47. package/screenshots/truth/select/expression-selected.png +0 -0
  48. package/screenshots/truth/select/expressions.png +0 -0
  49. package/screenshots/truth/select/functions.png +0 -0
  50. package/screenshots/truth/select/local-options.png +0 -0
  51. package/screenshots/truth/select/remote-options.png +0 -0
  52. package/screenshots/truth/select/search-enabled.png +0 -0
  53. package/screenshots/truth/select/search-multi-no-matches.png +0 -0
  54. package/screenshots/truth/select/search-selected-focus.png +0 -0
  55. package/screenshots/truth/select/search-selected.png +0 -0
  56. package/screenshots/truth/select/search-with-selected.png +0 -0
  57. package/screenshots/truth/select/searching.png +0 -0
  58. package/screenshots/truth/select/selected-multi.png +0 -0
  59. package/screenshots/truth/select/selected-single.png +0 -0
  60. package/screenshots/truth/select/with-placeholder.png +0 -0
  61. package/screenshots/truth/select/without-placeholder.png +0 -0
  62. package/screenshots/truth/textinput/date-form.png +0 -0
  63. package/screenshots/truth/textinput/input-disabled.png +0 -0
  64. package/screenshots/truth/textinput/input-form.png +0 -0
  65. package/screenshots/truth/textinput/input-placeholder.png +0 -0
  66. package/screenshots/truth/textinput/input-updated.png +0 -0
  67. package/screenshots/truth/textinput/input.png +0 -0
  68. package/screenshots/truth/textinput/textarea.png +0 -0
  69. package/screenshots/truth/tip/bottom.png +0 -0
  70. package/screenshots/truth/tip/left.png +0 -0
  71. package/screenshots/truth/tip/right.png +0 -0
  72. package/screenshots/truth/tip/top.png +0 -0
  73. package/src/button/Button.ts +1 -0
  74. package/src/contacts/ContactChat.ts +93 -33
  75. package/src/contacts/ContactDetails.ts +23 -23
  76. package/src/contacts/ContactHistory.ts +156 -159
  77. package/src/contacts/events.ts +59 -44
  78. package/src/interfaces.ts +1 -1
  79. package/src/list/ContactList.ts +1 -1
  80. package/src/list/TembaList.ts +13 -4
  81. package/src/list/TembaMenu.ts +7 -2
  82. package/src/loading/Loading.ts +8 -1
  83. package/src/options/Options.ts +14 -2
  84. package/src/tip/Tip.ts +6 -0
  85. package/src/vectoricon/VectorIcon.ts +17 -5
  86. package/test/temba-contact-history.test.ts +2 -2
  87. package/test-assets/style.css +4 -1
  88. package/dist/d59a9ae2.js +0 -1
package/CHANGELOG.md CHANGED
@@ -4,6 +4,15 @@ All notable changes to this project will be documented in this file. Dates are d
4
4
 
5
5
  Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
6
6
 
7
+ #### [v0.18.0](https://github.com/nyaruka/temba-components/compare/v0.17.0...v0.18.0)
8
+
9
+ > 4 October 2021
10
+
11
+ - ContactChat improvements [`#133`](https://github.com/nyaruka/temba-components/pull/133)
12
+ - * Modify scroll title positioning to work sans scrollbars [`caffc39`](https://github.com/nyaruka/temba-components/commit/caffc3964a1d9f9014cb9ead2b06a4f39834c002)
13
+ - Update tests [`c7e8875`](https://github.com/nyaruka/temba-components/commit/c7e88759eed3c5dfebc45ebe4702ff7aad7b3271)
14
+ - Remove prepush temp [`f609243`](https://github.com/nyaruka/temba-components/commit/f609243e7f808cbe00b86e079c9ff461a9f81b63)
15
+
7
16
  #### [v0.17.0](https://github.com/nyaruka/temba-components/compare/v0.16.2...v0.17.0)
8
17
 
9
18
  > 24 September 2021