@nyaruka/temba-components 0.16.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 (91) hide show
  1. package/CHANGELOG.md +29 -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 +132 -139
  15. package/out-tsc/src/contacts/ContactHistory.js.map +1 -1
  16. package/out-tsc/src/contacts/events.js +110 -47
  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 +32 -17
  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/select/Select.js +23 -5
  30. package/out-tsc/src/select/Select.js.map +1 -1
  31. package/out-tsc/src/tip/Tip.js +6 -0
  32. package/out-tsc/src/tip/Tip.js.map +1 -1
  33. package/out-tsc/src/vectoricon/VectorIcon.js +17 -5
  34. package/out-tsc/src/vectoricon/VectorIcon.js.map +1 -1
  35. package/out-tsc/test/temba-contact-history.test.js +2 -2
  36. package/out-tsc/test/temba-contact-history.test.js.map +1 -1
  37. package/package.json +1 -1
  38. package/screenshots/truth/contacts/history-expanded.png +0 -0
  39. package/screenshots/truth/contacts/history.png +0 -0
  40. package/screenshots/truth/list/items-selected.png +0 -0
  41. package/screenshots/truth/list/items-updated.png +0 -0
  42. package/screenshots/truth/list/items.png +0 -0
  43. package/screenshots/truth/modax/simple.png +0 -0
  44. package/screenshots/truth/options/block.png +0 -0
  45. package/screenshots/truth/select/disabled-multi-selection.png +0 -0
  46. package/screenshots/truth/select/disabled-selection.png +0 -0
  47. package/screenshots/truth/select/disabled.png +0 -0
  48. package/screenshots/truth/select/embedded.png +0 -0
  49. package/screenshots/truth/select/expression-selected.png +0 -0
  50. package/screenshots/truth/select/expressions.png +0 -0
  51. package/screenshots/truth/select/functions.png +0 -0
  52. package/screenshots/truth/select/local-options.png +0 -0
  53. package/screenshots/truth/select/remote-options.png +0 -0
  54. package/screenshots/truth/select/search-enabled.png +0 -0
  55. package/screenshots/truth/select/search-multi-no-matches.png +0 -0
  56. package/screenshots/truth/select/search-selected-focus.png +0 -0
  57. package/screenshots/truth/select/search-selected.png +0 -0
  58. package/screenshots/truth/select/search-with-selected.png +0 -0
  59. package/screenshots/truth/select/searching.png +0 -0
  60. package/screenshots/truth/select/selected-multi.png +0 -0
  61. package/screenshots/truth/select/selected-single.png +0 -0
  62. package/screenshots/truth/select/with-placeholder.png +0 -0
  63. package/screenshots/truth/select/without-placeholder.png +0 -0
  64. package/screenshots/truth/textinput/date-form.png +0 -0
  65. package/screenshots/truth/textinput/input-disabled.png +0 -0
  66. package/screenshots/truth/textinput/input-form.png +0 -0
  67. package/screenshots/truth/textinput/input-placeholder.png +0 -0
  68. package/screenshots/truth/textinput/input-updated.png +0 -0
  69. package/screenshots/truth/textinput/input.png +0 -0
  70. package/screenshots/truth/textinput/textarea.png +0 -0
  71. package/screenshots/truth/tip/bottom.png +0 -0
  72. package/screenshots/truth/tip/left.png +0 -0
  73. package/screenshots/truth/tip/right.png +0 -0
  74. package/screenshots/truth/tip/top.png +0 -0
  75. package/src/button/Button.ts +1 -0
  76. package/src/contacts/ContactChat.ts +93 -33
  77. package/src/contacts/ContactDetails.ts +23 -23
  78. package/src/contacts/ContactHistory.ts +157 -160
  79. package/src/contacts/events.ts +117 -48
  80. package/src/interfaces.ts +3 -0
  81. package/src/list/ContactList.ts +39 -20
  82. package/src/list/TembaList.ts +13 -4
  83. package/src/list/TembaMenu.ts +7 -2
  84. package/src/loading/Loading.ts +8 -1
  85. package/src/options/Options.ts +14 -2
  86. package/src/select/Select.ts +28 -6
  87. package/src/tip/Tip.ts +6 -0
  88. package/src/vectoricon/VectorIcon.ts +17 -5
  89. package/test/temba-contact-history.test.ts +2 -2
  90. package/test-assets/style.css +4 -1
  91. package/dist/228cf25e.js +0 -1
package/CHANGELOG.md CHANGED
@@ -4,6 +4,35 @@ 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
+
16
+ #### [v0.17.0](https://github.com/nyaruka/temba-components/compare/v0.16.2...v0.17.0)
17
+
18
+ > 24 September 2021
19
+
20
+ - Add basic media support to contact history [`#132`](https://github.com/nyaruka/temba-components/pull/132)
21
+
22
+ #### [v0.16.2](https://github.com/nyaruka/temba-components/compare/v0.16.1...v0.16.2)
23
+
24
+ > 24 September 2021
25
+
26
+ - Render cleared fields properly [`#131`](https://github.com/nyaruka/temba-components/pull/131)
27
+
28
+ #### [v0.16.1](https://github.com/nyaruka/temba-components/compare/v0.16.0...v0.16.1)
29
+
30
+ > 15 September 2021
31
+
32
+ - Topics instead of subjects in ticket ui [`#129`](https://github.com/nyaruka/temba-components/pull/129)
33
+ - Bump jszip from 3.6.0 to 3.7.1 [`#121`](https://github.com/nyaruka/temba-components/pull/121)
34
+ - Bump path-parse from 1.0.6 to 1.0.7 [`#117`](https://github.com/nyaruka/temba-components/pull/117)
35
+
7
36
  #### [v0.16.0](https://github.com/nyaruka/temba-components/compare/v0.15.4...v0.16.0)
8
37
 
9
38
  > 14 September 2021