@seamly/web-ui 20.0.0-beta.3 → 20.0.0-beta.6
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.
- package/build/dist/lib/components.js +1 -1
- package/build/dist/lib/components.min.js +1 -1
- package/build/dist/lib/deprecated-view.css +1 -0
- package/build/dist/lib/deprecated-view.js +1 -0
- package/build/dist/lib/index.debug.js +80 -57
- package/build/dist/lib/index.debug.min.js +1 -1
- package/build/dist/lib/index.debug.min.js.LICENSE.txt +20 -12
- package/build/dist/lib/index.js +14645 -14065
- package/build/dist/lib/index.min.js +1 -1
- package/build/dist/lib/index.min.js.LICENSE.txt +5 -0
- package/build/dist/lib/standalone.js +19725 -19707
- package/build/dist/lib/standalone.min.js +1 -1
- package/build/dist/lib/style-guide.js +86 -27
- package/build/dist/lib/style-guide.min.js +1 -1
- package/build/dist/lib/styles-default-implementation.css +1 -0
- package/build/dist/lib/styles-default-implementation.js +1 -0
- package/build/dist/lib/styles.css +1 -1
- package/package.json +8 -7
- package/src/javascripts/api/index.js +19 -10
- package/src/javascripts/api/producer.js +5 -3
- package/src/javascripts/domains/translations/components/options-button.js +1 -1
- package/src/javascripts/index.js +2 -2
- package/src/javascripts/lib/engine/index.js +2 -1
- package/src/javascripts/lib/parse-body.js +1 -1
- package/src/javascripts/package/components.js +1 -1
- package/src/javascripts/style-guide/components/view.js +1 -0
- package/src/javascripts/style-guide/states.js +67 -6
- package/src/javascripts/style-guide/style-guide-engine.js +1 -0
- package/src/javascripts/ui/components/app-options/index.js +9 -3
- package/src/javascripts/ui/components/conversation/conversation.js +1 -1
- package/src/javascripts/ui/components/conversation/event/carousel-message/index.js +3 -1
- package/src/javascripts/ui/components/conversation/event/conversation-suggestions.js +12 -3
- package/src/javascripts/ui/components/conversation/event/hooks/use-text-rendering.js +35 -0
- package/src/javascripts/ui/components/conversation/event/participant.js +5 -2
- package/src/javascripts/ui/components/conversation/event/splash.js +2 -1
- package/src/javascripts/ui/components/conversation/event/text.js +2 -1
- package/src/javascripts/ui/components/entry/{toggle-button.js → deprecated-toggle-button.js} +0 -0
- package/src/javascripts/ui/components/entry/entry-container.js +1 -1
- package/src/javascripts/ui/components/layout/chat-frame.js +1 -1
- package/src/javascripts/ui/components/layout/{app-frame.js → chat.js} +10 -41
- package/src/javascripts/ui/components/layout/deprecated-app-frame.js +1 -8
- package/src/javascripts/ui/components/layout/header.js +1 -1
- package/src/javascripts/ui/components/layout/pre-chat-messages.js +2 -8
- package/src/javascripts/ui/components/options/options-button.js +2 -2
- package/src/javascripts/ui/components/suggestions/index.js +2 -3
- package/src/javascripts/ui/components/suggestions/suggestions-list.js +1 -1
- package/src/javascripts/ui/components/view/app-view.js +3 -3
- package/src/javascripts/ui/components/view/deprecated-view.js +2 -2
- package/src/javascripts/ui/components/view/index.js +61 -5
- package/src/javascripts/ui/components/view/inline-view.js +15 -4
- package/src/javascripts/ui/components/view/window-view/index.js +5 -5
- package/src/stylesheets/1-settings/_config.scss +6 -6
- package/src/stylesheets/{3-app/_app.scss → 3-chat/_chat.scss} +22 -35
- package/src/stylesheets/5-components/_chat-status.scss +1 -5
- package/src/stylesheets/5-components/_conversation.scss +3 -3
- package/src/stylesheets/5-components/_disclaimer.scss +2 -6
- package/src/stylesheets/5-components/_interrupt.scss +21 -2
- package/src/stylesheets/5-components/_message-body.scss +23 -1
- package/src/stylesheets/5-components/_message-count.scss +1 -0
- package/src/stylesheets/5-components/_message.scss +4 -0
- package/src/stylesheets/5-components/_modal.scss +2 -2
- package/src/stylesheets/5-components/_options.scss +6 -14
- package/src/stylesheets/5-components/_pre-chat-messages.scss +24 -17
- package/src/stylesheets/5-components/_suggestions.scss +6 -6
- package/src/stylesheets/5-components/_unstarted.scss +22 -36
- package/src/stylesheets/6-default-implementation/_hover.scss +153 -0
- package/src/stylesheets/{6-webui-only → 6-default-implementation}/_scrollbar.scss +1 -1
- package/src/stylesheets/7-deprecated/3-app/_app.scss +8 -8
- package/src/stylesheets/7-deprecated/5-components/_message.scss +1 -1
- package/src/stylesheets/7-deprecated/5-components/_modal.scss +1 -1
- package/src/stylesheets/7-deprecated/5-components/_options.scss +8 -8
- package/src/stylesheets/style-guide.scss +1 -1
- package/src/stylesheets/styles-default-implementation.scss +3 -0
- package/src/stylesheets/styles.scss +8 -9
- package/webpack/config.package.js +9 -1
- package/webpack/defaults.js +3 -6
- package/src/javascripts/ui/components/layout/modal-wrapper.js +0 -0
- package/src/stylesheets/6-webui-only/_hover.scss +0 -151
- 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
|
\*******************************************/
|
|
@@ -130,6 +126,10 @@
|
|
|
130
126
|
!*** ./src/javascripts/lib/parse-body.js ***!
|
|
131
127
|
\*******************************************/
|
|
132
128
|
|
|
129
|
+
/*!********************************************!*\
|
|
130
|
+
!*** ./node_modules/mustache/mustache.mjs ***!
|
|
131
|
+
\********************************************/
|
|
132
|
+
|
|
133
133
|
/*!********************************************!*\
|
|
134
134
|
!*** ./node_modules/side-channel/index.js ***!
|
|
135
135
|
\********************************************/
|
|
@@ -186,6 +186,10 @@
|
|
|
186
186
|
!*** ./src/javascripts/domains/app/utils.js ***!
|
|
187
187
|
\**********************************************/
|
|
188
188
|
|
|
189
|
+
/*!***********************************************!*\
|
|
190
|
+
!*** ./node_modules/marked/lib/marked.esm.js ***!
|
|
191
|
+
\***********************************************/
|
|
192
|
+
|
|
189
193
|
/*!***********************************************!*\
|
|
190
194
|
!*** ./node_modules/superagent/lib/client.js ***!
|
|
191
195
|
\***********************************************/
|
|
@@ -458,6 +462,10 @@
|
|
|
458
462
|
!*** ./src/javascripts/domains/interrupt/reducer.js ***!
|
|
459
463
|
\******************************************************/
|
|
460
464
|
|
|
465
|
+
/*!******************************************************!*\
|
|
466
|
+
!*** ./src/javascripts/ui/components/layout/chat.js ***!
|
|
467
|
+
\******************************************************/
|
|
468
|
+
|
|
461
469
|
/*!******************************************************!*\
|
|
462
470
|
!*** ./src/javascripts/ui/components/layout/icon.js ***!
|
|
463
471
|
\******************************************************/
|
|
@@ -598,10 +606,6 @@
|
|
|
598
606
|
!*** ./src/javascripts/ui/components/core/seamly-core.js ***!
|
|
599
607
|
\***********************************************************/
|
|
600
608
|
|
|
601
|
-
/*!***********************************************************!*\
|
|
602
|
-
!*** ./src/javascripts/ui/components/layout/app-frame.js ***!
|
|
603
|
-
\***********************************************************/
|
|
604
|
-
|
|
605
609
|
/*!***********************************************************!*\
|
|
606
610
|
!*** ./src/javascripts/ui/components/layout/interrupt.js ***!
|
|
607
611
|
\***********************************************************/
|
|
@@ -678,10 +682,6 @@
|
|
|
678
682
|
!*** ./src/javascripts/ui/components/conversation/loader.js ***!
|
|
679
683
|
\**************************************************************/
|
|
680
684
|
|
|
681
|
-
/*!**************************************************************!*\
|
|
682
|
-
!*** ./src/javascripts/ui/components/entry/toggle-button.js ***!
|
|
683
|
-
\**************************************************************/
|
|
684
|
-
|
|
685
685
|
/*!**************************************************************!*\
|
|
686
686
|
!*** ./src/javascripts/ui/components/entry/upload-toggle.js ***!
|
|
687
687
|
\**************************************************************/
|
|
@@ -914,6 +914,10 @@
|
|
|
914
914
|
!*** ./src/javascripts/ui/components/conversation/message-container.js ***!
|
|
915
915
|
\*************************************************************************/
|
|
916
916
|
|
|
917
|
+
/*!*************************************************************************!*\
|
|
918
|
+
!*** ./src/javascripts/ui/components/entry/deprecated-toggle-button.js ***!
|
|
919
|
+
\*************************************************************************/
|
|
920
|
+
|
|
917
921
|
/*!**************************************************************************!*\
|
|
918
922
|
!*** ./node_modules/raw-loader/dist/cjs.js!./src/icons/icon_close-8.svg ***!
|
|
919
923
|
\**************************************************************************/
|
|
@@ -1098,6 +1102,10 @@
|
|
|
1098
1102
|
!*** ./src/javascripts/ui/components/conversation/event/hooks/use-formatted-date.js ***!
|
|
1099
1103
|
\**************************************************************************************/
|
|
1100
1104
|
|
|
1105
|
+
/*!**************************************************************************************!*\
|
|
1106
|
+
!*** ./src/javascripts/ui/components/conversation/event/hooks/use-text-rendering.js ***!
|
|
1107
|
+
\**************************************************************************************/
|
|
1108
|
+
|
|
1101
1109
|
/*!*********************************************************************************************!*\
|
|
1102
1110
|
!*** ./src/javascripts/ui/components/conversation/event/divider/variants/time-indicator.js ***!
|
|
1103
1111
|
\*********************************************************************************************/
|