@seamly/web-ui 20.0.0-beta.2 → 20.0.0-beta.5

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/build/dist/lib/components.js +1 -1
  2. package/build/dist/lib/components.min.js +1 -1
  3. package/build/dist/lib/deprecated-view.css +1 -0
  4. package/build/dist/lib/deprecated-view.js +1 -0
  5. package/build/dist/lib/index.debug.js +95 -61
  6. package/build/dist/lib/index.debug.min.js +1 -1
  7. package/build/dist/lib/index.debug.min.js.LICENSE.txt +24 -12
  8. package/build/dist/lib/style-guide.js +305 -97
  9. package/build/dist/lib/style-guide.min.js +1 -1
  10. package/build/dist/lib/styles-default-implementation.css +1 -0
  11. package/build/dist/lib/styles-default-implementation.js +1 -0
  12. package/build/dist/lib/styles.css +1 -1
  13. package/package.json +8 -7
  14. package/src/.DS_Store +0 -0
  15. package/src/javascripts/api/index.js +19 -10
  16. package/src/javascripts/api/producer.js +5 -3
  17. package/src/javascripts/domains/translations/components/options-button.js +1 -1
  18. package/src/javascripts/index.js +2 -2
  19. package/src/javascripts/lib/engine/index.js +2 -1
  20. package/src/javascripts/lib/parse-body.js +1 -1
  21. package/src/javascripts/package/components.js +1 -1
  22. package/src/javascripts/style-guide/components/app.js +3 -3
  23. package/src/javascripts/style-guide/states.js +345 -69
  24. package/src/javascripts/style-guide/style-guide-engine.js +1 -0
  25. package/src/javascripts/ui/components/app-options/index.js +9 -3
  26. package/src/javascripts/ui/components/conversation/conversation.js +1 -1
  27. package/src/javascripts/ui/components/conversation/event/carousel-message/index.js +3 -1
  28. package/src/javascripts/ui/components/conversation/event/conversation-suggestions.js +12 -3
  29. package/src/javascripts/ui/components/conversation/event/hooks/use-text-rendering.js +35 -0
  30. package/src/javascripts/ui/components/conversation/event/participant.js +5 -2
  31. package/src/javascripts/ui/components/conversation/event/splash.js +2 -1
  32. package/src/javascripts/ui/components/conversation/event/text.js +2 -1
  33. package/src/javascripts/ui/components/entry/{toggle-button.js → deprecated-toggle-button.js} +0 -0
  34. package/src/javascripts/ui/components/entry/entry-container.js +1 -1
  35. package/src/javascripts/ui/components/faq/faq.js +162 -0
  36. package/src/javascripts/ui/components/layout/chat-frame.js +1 -1
  37. package/src/javascripts/ui/components/layout/chat.js +62 -0
  38. package/src/javascripts/ui/components/layout/{app-frame.js → deprecated-app-frame.js} +10 -24
  39. package/src/javascripts/ui/components/layout/header.js +1 -1
  40. package/src/javascripts/ui/components/layout/pre-chat-messages.js +2 -8
  41. package/src/javascripts/ui/components/options/options-button.js +2 -2
  42. package/src/javascripts/ui/components/suggestions/index.js +2 -3
  43. package/src/javascripts/ui/components/suggestions/suggestions-list.js +1 -1
  44. package/src/javascripts/ui/components/view/app-view.js +3 -3
  45. package/src/javascripts/ui/components/view/deprecated-view.js +6 -4
  46. package/src/javascripts/ui/components/view/index.js +61 -5
  47. package/src/javascripts/ui/components/view/inline-view.js +15 -4
  48. package/src/javascripts/ui/components/view/window-view/index.js +5 -5
  49. package/src/stylesheets/1-settings/_config.scss +6 -6
  50. package/src/stylesheets/{3-app/_app.scss → 3-chat/_chat.scss} +22 -35
  51. package/src/stylesheets/5-components/_chat-status.scss +1 -5
  52. package/src/stylesheets/5-components/_conversation.scss +3 -3
  53. package/src/stylesheets/5-components/_disclaimer.scss +2 -6
  54. package/src/stylesheets/5-components/_error.scss +20 -10
  55. package/src/stylesheets/5-components/_interrupt.scss +21 -2
  56. package/src/stylesheets/5-components/_message-body.scss +23 -1
  57. package/src/stylesheets/5-components/_message-count.scss +1 -0
  58. package/src/stylesheets/5-components/_message.scss +4 -0
  59. package/src/stylesheets/5-components/_modal.scss +2 -2
  60. package/src/stylesheets/5-components/_options.scss +6 -14
  61. package/src/stylesheets/5-components/_pre-chat-messages.scss +24 -17
  62. package/src/stylesheets/5-components/_suggestions.scss +6 -6
  63. package/src/stylesheets/5-components/_unstarted.scss +22 -36
  64. package/src/stylesheets/6-default-implementation/_hover.scss +153 -0
  65. package/src/stylesheets/{6-webui-only → 6-default-implementation}/_scrollbar.scss +1 -1
  66. package/src/stylesheets/7-deprecated/3-app/_app.scss +8 -8
  67. package/src/stylesheets/7-deprecated/5-components/_error.scss +19 -9
  68. package/src/stylesheets/7-deprecated/5-components/_input.scss +1 -1
  69. package/src/stylesheets/7-deprecated/5-components/_message.scss +1 -1
  70. package/src/stylesheets/7-deprecated/5-components/_modal.scss +1 -1
  71. package/src/stylesheets/7-deprecated/5-components/_options.scss +8 -10
  72. package/src/stylesheets/style-guide.scss +1 -1
  73. package/src/stylesheets/styles-default-implementation.scss +3 -0
  74. package/src/stylesheets/styles.scss +8 -9
  75. package/webpack/config.common.js +7 -1
  76. package/webpack/config.package.js +9 -1
  77. package/webpack/config.test.js +1 -0
  78. package/webpack/defaults.js +3 -6
  79. package/CHANGELOG.md +0 -625
  80. package/build/dist/lib/index.js +0 -25513
  81. package/build/dist/lib/index.min.js +0 -2
  82. package/build/dist/lib/index.min.js.LICENSE.txt +0 -9
  83. package/build/dist/lib/standalone.js +0 -34474
  84. package/build/dist/lib/standalone.min.js +0 -2
  85. package/build/dist/lib/standalone.min.js.LICENSE.txt +0 -4
  86. package/src/javascripts/ui/components/layout/modal-wrapper.js +0 -0
  87. package/src/stylesheets/6-webui-only/_hover.scss +0 -151
  88. package/src/stylesheets/styles-webui-only.scss +0 -3
@@ -114,10 +114,6 @@
114
114
  !*** ./node_modules/has-symbols/shams.js ***!
115
115
  \*******************************************/
116
116
 
117
- /*!*******************************************!*\
118
- !*** ./node_modules/marked/lib/marked.js ***!
119
- \*******************************************/
120
-
121
117
  /*!*******************************************!*\
122
118
  !*** ./node_modules/object-keys/index.js ***!
123
119
  \*******************************************/
@@ -186,6 +182,10 @@
186
182
  !*** ./src/javascripts/domains/app/utils.js ***!
187
183
  \**********************************************/
188
184
 
185
+ /*!***********************************************!*\
186
+ !*** ./node_modules/marked/lib/marked.esm.js ***!
187
+ \***********************************************/
188
+
189
189
  /*!***********************************************!*\
190
190
  !*** ./node_modules/superagent/lib/client.js ***!
191
191
  \***********************************************/
@@ -322,6 +322,10 @@
322
322
  !*** ./src/javascripts/domains/redux/context.js ***!
323
323
  \**************************************************/
324
324
 
325
+ /*!**************************************************!*\
326
+ !*** ./src/javascripts/ui/components/faq/faq.js ***!
327
+ \**************************************************/
328
+
325
329
  /*!**************************************************!*\
326
330
  !*** ./src/javascripts/ui/hooks/seamly-hooks.js ***!
327
331
  \**************************************************/
@@ -454,6 +458,10 @@
454
458
  !*** ./src/javascripts/domains/interrupt/reducer.js ***!
455
459
  \******************************************************/
456
460
 
461
+ /*!******************************************************!*\
462
+ !*** ./src/javascripts/ui/components/layout/chat.js ***!
463
+ \******************************************************/
464
+
457
465
  /*!******************************************************!*\
458
466
  !*** ./src/javascripts/ui/components/layout/icon.js ***!
459
467
  \******************************************************/
@@ -594,10 +602,6 @@
594
602
  !*** ./src/javascripts/ui/components/core/seamly-core.js ***!
595
603
  \***********************************************************/
596
604
 
597
- /*!***********************************************************!*\
598
- !*** ./src/javascripts/ui/components/layout/app-frame.js ***!
599
- \***********************************************************/
600
-
601
605
  /*!***********************************************************!*\
602
606
  !*** ./src/javascripts/ui/components/layout/interrupt.js ***!
603
607
  \***********************************************************/
@@ -674,10 +678,6 @@
674
678
  !*** ./src/javascripts/ui/components/conversation/loader.js ***!
675
679
  \**************************************************************/
676
680
 
677
- /*!**************************************************************!*\
678
- !*** ./src/javascripts/ui/components/entry/toggle-button.js ***!
679
- \**************************************************************/
680
-
681
681
  /*!**************************************************************!*\
682
682
  !*** ./src/javascripts/ui/components/entry/upload-toggle.js ***!
683
683
  \**************************************************************/
@@ -846,6 +846,10 @@
846
846
  !*** ./src/javascripts/ui/components/conversation/event-divider.js ***!
847
847
  \*********************************************************************/
848
848
 
849
+ /*!**********************************************************************!*\
850
+ !*** ./src/javascripts/ui/components/layout/deprecated-app-frame.js ***!
851
+ \**********************************************************************/
852
+
849
853
  /*!**********************************************************************!*\
850
854
  !*** ./src/javascripts/ui/hooks/use-seamly-idle-detach-countdown.js ***!
851
855
  \**********************************************************************/
@@ -906,6 +910,10 @@
906
910
  !*** ./src/javascripts/ui/components/conversation/message-container.js ***!
907
911
  \*************************************************************************/
908
912
 
913
+ /*!*************************************************************************!*\
914
+ !*** ./src/javascripts/ui/components/entry/deprecated-toggle-button.js ***!
915
+ \*************************************************************************/
916
+
909
917
  /*!**************************************************************************!*\
910
918
  !*** ./node_modules/raw-loader/dist/cjs.js!./src/icons/icon_close-8.svg ***!
911
919
  \**************************************************************************/
@@ -1090,6 +1098,10 @@
1090
1098
  !*** ./src/javascripts/ui/components/conversation/event/hooks/use-formatted-date.js ***!
1091
1099
  \**************************************************************************************/
1092
1100
 
1101
+ /*!**************************************************************************************!*\
1102
+ !*** ./src/javascripts/ui/components/conversation/event/hooks/use-text-rendering.js ***!
1103
+ \**************************************************************************************/
1104
+
1093
1105
  /*!*********************************************************************************************!*\
1094
1106
  !*** ./src/javascripts/ui/components/conversation/event/divider/variants/time-indicator.js ***!
1095
1107
  \*********************************************************************************************/