@seamly/web-ui 20.2.0-alpha.4 → 20.3.1

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 (105) hide show
  1. package/build/dist/lib/deprecated-view.css +1 -1
  2. package/build/dist/lib/index.debug.js +274 -264
  3. package/build/dist/lib/index.debug.min.js +1 -1
  4. package/build/dist/lib/index.debug.min.js.LICENSE.txt +64 -60
  5. package/build/dist/lib/index.js +4490 -3619
  6. package/build/dist/lib/index.min.js +1 -1
  7. package/build/dist/lib/index.min.js.LICENSE.txt +2 -2
  8. package/build/dist/lib/standalone.js +11932 -9346
  9. package/build/dist/lib/standalone.min.js +1 -1
  10. package/build/dist/lib/standalone.min.js.LICENSE.txt +1 -1
  11. package/build/dist/lib/style-guide.js +7400 -7247
  12. package/build/dist/lib/style-guide.min.js +1 -1
  13. package/build/dist/lib/styles.css +1 -1
  14. package/package.json +15 -14
  15. package/src/.DS_Store +0 -0
  16. package/src/javascripts/api/index.js +5 -4
  17. package/src/javascripts/domains/app/actions.js +22 -10
  18. package/src/javascripts/domains/config/reducer.js +2 -2
  19. package/src/javascripts/domains/forms/reducer.js +1 -1
  20. package/src/javascripts/domains/i18n/reducer.js +1 -1
  21. package/src/javascripts/domains/interrupt/reducer.js +1 -1
  22. package/src/javascripts/domains/translations/components/chat-status.js +10 -9
  23. package/src/javascripts/domains/translations/components/options-button.js +8 -3
  24. package/src/javascripts/domains/translations/components/options-dialog/form.js +6 -5
  25. package/src/javascripts/domains/translations/components/options-dialog/index.js +5 -2
  26. package/src/javascripts/domains/translations/hooks.js +15 -1
  27. package/src/javascripts/domains/translations/middleware.js +5 -2
  28. package/src/javascripts/domains/translations/reducer.js +2 -2
  29. package/src/javascripts/domains/visibility/actions.js +1 -1
  30. package/src/javascripts/index.js +1 -0
  31. package/src/javascripts/lib/debug.js +1 -0
  32. package/src/javascripts/lib/external-api/index.js +29 -4
  33. package/src/javascripts/style-guide/components/app.js +1 -1
  34. package/src/javascripts/style-guide/components/static-core.js +1 -4
  35. package/src/javascripts/ui/components/conversation/conversation.js +2 -2
  36. package/src/javascripts/ui/components/conversation/event/card-component.js +4 -1
  37. package/src/javascripts/ui/components/conversation/event/carousel-component/index.js +1 -1
  38. package/src/javascripts/ui/components/conversation/event/conversation-suggestions.js +18 -10
  39. package/src/javascripts/ui/components/conversation/event/cta.js +1 -1
  40. package/src/javascripts/ui/components/conversation/event/divider/variants/new-translation.js +4 -9
  41. package/src/javascripts/ui/components/conversation/event/image.js +1 -1
  42. package/src/javascripts/ui/components/conversation/event/text.js +2 -2
  43. package/src/javascripts/ui/components/conversation/loader.js +1 -1
  44. package/src/javascripts/ui/components/conversation/message-container.js +1 -1
  45. package/src/javascripts/ui/components/core/seamly-activity-monitor.js +1 -1
  46. package/src/javascripts/ui/components/core/seamly-core.js +2 -2
  47. package/src/javascripts/ui/components/core/seamly-file-upload.js +1 -1
  48. package/src/javascripts/ui/components/core/seamly-instance-functions-loader.js +6 -2
  49. package/src/javascripts/ui/components/core/seamly-live-region.js +2 -2
  50. package/src/javascripts/ui/components/entry/entry-container.js +2 -2
  51. package/src/javascripts/ui/components/entry/text-entry/hooks.js +1 -4
  52. package/src/javascripts/ui/components/entry/text-entry/text-entry-form.js +1 -1
  53. package/src/javascripts/ui/components/form-controls/select.js +1 -1
  54. package/src/javascripts/ui/components/layout/agent-info.js +1 -1
  55. package/src/javascripts/ui/components/layout/header.js +1 -1
  56. package/src/javascripts/ui/components/options/options-button.js +1 -1
  57. package/src/javascripts/ui/components/options/options.js +1 -1
  58. package/src/javascripts/ui/components/options/transcript/index.js +1 -1
  59. package/src/javascripts/ui/components/suggestions/suggestions-item.js +1 -1
  60. package/src/javascripts/ui/components/view/index.js +2 -2
  61. package/src/javascripts/ui/components/warnings/resume-conversation-prompt.js +1 -1
  62. package/src/javascripts/ui/components/widgets/lightbox.js +1 -1
  63. package/src/javascripts/ui/hooks/file-upload-hooks.js +2 -3
  64. package/src/javascripts/ui/hooks/focus-helper-hooks.js +2 -2
  65. package/src/javascripts/ui/hooks/seamly-entry-hooks.js +1 -1
  66. package/src/javascripts/ui/hooks/seamly-option-hooks.js +1 -1
  67. package/src/javascripts/ui/hooks/use-seamly-chat.js +2 -2
  68. package/src/javascripts/ui/hooks/use-seamly-commands.js +7 -7
  69. package/src/javascripts/ui/hooks/use-seamly-idle-detach-countdown.js +4 -4
  70. package/src/javascripts/ui/hooks/use-seamly-resume-conversation-prompt.js +2 -2
  71. package/src/javascripts/ui/hooks/use-single-file-upload.js +1 -1
  72. package/src/javascripts/ui/utils/general-utils.js +1 -1
  73. package/src/javascripts/ui/utils/seamly-utils.js +1 -0
  74. package/src/stylesheets/1-settings/_animations.scss +1 -1
  75. package/src/stylesheets/1-settings/_config.scss +17 -2
  76. package/src/stylesheets/2-tools/_functions.scss +4 -4
  77. package/src/stylesheets/2-tools/_mixins.scss +16 -14
  78. package/src/stylesheets/3-chat/_chat.scss +1 -1
  79. package/src/stylesheets/5-components/_choice-prompt.scss +1 -1
  80. package/src/stylesheets/5-components/_collapse-button.scss +1 -1
  81. package/src/stylesheets/5-components/_input.scss +1 -1
  82. package/src/stylesheets/5-components/_loader.scss +2 -2
  83. package/src/stylesheets/5-components/_message-carousel.scss +1 -1
  84. package/src/stylesheets/5-components/_message-count.scss +1 -1
  85. package/src/stylesheets/5-components/_message.scss +1 -2
  86. package/src/stylesheets/5-components/_modal.scss +1 -1
  87. package/src/stylesheets/5-components/_options.scss +3 -3
  88. package/src/stylesheets/5-components/_suggestions.scss +4 -5
  89. package/src/stylesheets/5-components/_upload.scss +1 -1
  90. package/src/stylesheets/7-deprecated/1-settings/_animations.scss +1 -1
  91. package/src/stylesheets/7-deprecated/1-settings/_config.scss +10 -7
  92. package/src/stylesheets/7-deprecated/2-tools/_functions.scss +2 -2
  93. package/src/stylesheets/7-deprecated/2-tools/_mixins.scss +6 -4
  94. package/src/stylesheets/7-deprecated/3-app/_app.scss +2 -2
  95. package/src/stylesheets/7-deprecated/4-base/_formelements.scss +1 -0
  96. package/src/stylesheets/7-deprecated/5-components/_chat-status.scss +1 -1
  97. package/src/stylesheets/7-deprecated/5-components/_collapse-button.scss +1 -1
  98. package/src/stylesheets/7-deprecated/5-components/_disclaimer.scss +1 -1
  99. package/src/stylesheets/7-deprecated/5-components/_input.scss +2 -1
  100. package/src/stylesheets/7-deprecated/5-components/_loader.scss +2 -2
  101. package/src/stylesheets/7-deprecated/5-components/_message-count.scss +1 -1
  102. package/src/stylesheets/7-deprecated/5-components/_message.scss +3 -4
  103. package/src/stylesheets/7-deprecated/5-components/_modal.scss +1 -1
  104. package/src/stylesheets/7-deprecated/5-components/_options.scss +2 -2
  105. package/src/stylesheets/7-deprecated/5-components/_upload.scss +1 -1
@@ -4,11 +4,11 @@
4
4
  */
5
5
 
6
6
  /*!
7
- * focus-trap 6.7.1
7
+ * focus-trap 6.9.4
8
8
  * @license MIT, https://github.com/focus-trap/focus-trap/blob/master/LICENSE
9
9
  */
10
10
 
11
11
  /*!
12
- * tabbable 5.2.1
12
+ * tabbable 5.3.3
13
13
  * @license MIT, https://github.com/focus-trap/tabbable/blob/master/LICENSE
14
14
  */